diff --git a/Content.Client/Shuttles/UI/NavScreen.xaml b/Content.Client/Shuttles/UI/NavScreen.xaml index 769207ba7f7..8d080f8d613 100644 --- a/Content.Client/Shuttles/UI/NavScreen.xaml +++ b/Content.Client/Shuttles/UI/NavScreen.xaml @@ -30,6 +30,11 @@ HorizontalExpand="True" Margin="3" Name="ReadonlyDisplay"> + + (shuttle, out var metadata)) + { + var shipNameParts = metadata.EntityName.Split(' '); + var designation = shipNameParts[^1]; + if (designation[2] == '-') + { + NavDisplayLabel.Text = string.Join(' ', shipNameParts[..^1]); + ShuttleDesignation.Text = designation; + } + else + NavDisplayLabel.Text = metadata.EntityName; + } + // End Frontier - PR #1284 } private void OnIFFTogglePressed(BaseButton.ButtonEventArgs args) diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs index ee8d12ff465..685df3b6fed 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Commands.cs @@ -3,6 +3,7 @@ using Content.Server.Atmos.Components; using Content.Shared.Administration; using Content.Shared.Atmos; +using Content.Shared.Atmos.Components; using Robust.Shared.Console; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -104,44 +105,72 @@ private void FixGridAtmosCommand(IConsoleShell shell, string argstr, string[] ar continue; } - var transform = Transform(euid.Value); + // Force Invalidate & update air on all tiles + Entity grid = + new(euid.Value, gridAtmosphere, Comp(euid.Value), gridComp, Transform(euid.Value)); - foreach (var (indices, tileMain) in gridAtmosphere.Tiles) - { - var tile = tileMain.Air; - if (tile == null) - continue; + RebuildGridTiles(grid); - if (!_mapSystem.TryGetTile(gridComp, indices, out var gTile) || gTile.IsEmpty) - { - gridAtmosphere.Tiles.Remove(indices); + var query = GetEntityQuery(); + foreach (var (indices, tile) in gridAtmosphere.Tiles.ToArray()) + { + if (tile.Air is not {Immutable: false} air) continue; - } - if (tile.Immutable && !IsTileSpace(euid, transform.MapUid, indices)) - { - tile = new GasMixture(tile.Volume) { Temperature = tile.Temperature }; - tileMain.Air = tile; - } - - tile.Clear(); + air.Clear(); var mixtureId = 0; - foreach (var entUid in gridComp.GetAnchoredEntities(indices)) + var enumerator = _mapSystem.GetAnchoredEntitiesEnumerator(grid, grid, indices); + while (enumerator.MoveNext(out var entUid)) { - if (!TryComp(entUid, out AtmosFixMarkerComponent? afm)) - continue; - mixtureId = afm.Mode; - break; + if (query.TryComp(entUid, out var marker)) + mixtureId = marker.Mode; } - var mixture = mixtures[mixtureId]; - Merge(tile, mixture); - tile.Temperature = mixture.Temperature; - gridAtmosphere.InvalidatedCoords.Add(indices); + var mixture = mixtures[mixtureId]; + Merge(air, mixture); + air.Temperature = mixture.Temperature; } } } + /// + /// Clears & re-creates all references to s stored on a grid. + /// + private void RebuildGridTiles( + Entity ent) + { + foreach (var indices in ent.Comp1.Tiles.Keys) + { + InvalidateVisuals((ent, ent), indices); + } + + var atmos = ent.Comp1; + atmos.MapTiles.Clear(); + atmos.ActiveTiles.Clear(); + atmos.ExcitedGroups.Clear(); + atmos.HotspotTiles.Clear(); + atmos.SuperconductivityTiles.Clear(); + atmos.HighPressureDelta.Clear(); + atmos.CurrentRunTiles.Clear(); + atmos.CurrentRunExcitedGroups.Clear(); + atmos.InvalidatedCoords.Clear(); + atmos.CurrentRunInvalidatedTiles.Clear(); + atmos.PossiblyDisconnectedTiles.Clear(); + atmos.Tiles.Clear(); + + var volume = GetVolumeForTiles(ent); + TryComp(ent.Comp4.MapUid, out MapAtmosphereComponent? mapAtmos); + + var enumerator = _map.GetAllTilesEnumerator(ent, ent); + while (enumerator.MoveNext(out var tileRef)) + { + var tile = GetOrNewTile(ent, ent, tileRef.Value.GridIndices); + UpdateTileData(ent, mapAtmos, tile); + UpdateAdjacentTiles(ent, tile, activate: true); + UpdateTileAir(ent, tile, volume); + } + } + private CompletionResult FixGridAtmosCommandCompletions(IConsoleShell shell, string[] args) { MapId? playerMap = null; diff --git a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs index bd023e8574a..85b1a93e20f 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosphereSystem.Processing.cs @@ -30,13 +30,15 @@ public sealed partial class AtmosphereSystem private int _currentRunAtmosphereIndex; private bool _simulationPaused; - private TileAtmosphere GetOrNewTile(EntityUid owner, GridAtmosphereComponent atmosphere, Vector2i index) + private TileAtmosphere GetOrNewTile(EntityUid owner, GridAtmosphereComponent atmosphere, Vector2i index, bool invalidateNew = true) { var tile = atmosphere.Tiles.GetOrNew(index, out var existing); if (existing) return tile; - atmosphere.InvalidatedCoords.Add(index); + if (invalidateNew) + atmosphere.InvalidatedCoords.Add(index); + tile.GridIndex = owner; tile.GridIndices = index; return tile; @@ -68,7 +70,7 @@ private bool ProcessRevalidate(Entity(OnAccentGet); + } + + // converts left word when typed into the right word. For example typing you becomes ye. + public string Accentuate(string message, GoblinAccentComponent component) + { + var msg = message; + + msg = _replacement.ApplyReplacements(msg, "goblin"); + return msg; + } + + private void OnAccentGet(EntityUid uid, GoblinAccentComponent component, AccentGetEvent args) + { + args.Message = Accentuate(args.Message, component); + } +} diff --git a/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs b/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs index 6851d0fd434..d65c8f03311 100644 --- a/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs +++ b/Content.Server/_NF/GameRule/NfAdventureRuleSystem.cs @@ -222,7 +222,7 @@ private void OnStartup(RoundStartingEvent ev) if (_map.TryLoad(mapId, cove, out var depotUid6s, new MapLoadOptions { - Offset = _random.NextVector2(4650f, 6800f) + Offset = _random.NextVector2(10000f, 15000f) })) { if (_prototypeManager.TryIndex("Cove", out var stationProto)) diff --git a/Content.Server/_NF/Goblin/Components/GoblinComponent.cs b/Content.Server/_NF/Goblin/Components/GoblinComponent.cs new file mode 100644 index 00000000000..35533e98cc3 --- /dev/null +++ b/Content.Server/_NF/Goblin/Components/GoblinComponent.cs @@ -0,0 +1,7 @@ +namespace Content.Server._NF.Goblin.Components; + +[RegisterComponent] +public sealed partial class GoblinComponent : Component +{ + +} diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs index 83e09b1a6dd..9326bd98f94 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs @@ -1,4 +1,5 @@ using System.Diagnostics.CodeAnalysis; +using Content.Shared._NF.LoggingExtensions; using Content.Shared.ActionBlocker; using Content.Shared.Administration.Logs; using Content.Shared.Database; @@ -237,7 +238,12 @@ private void Insert(EntityUid uid, ItemSlot slot, EntityUid item, EntityUid? use // Logging if (inserted != null && inserted.Value && user != null) - _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(user.Value)} inserted {ToPrettyString(item)} into {slot.ContainerSlot?.ID + " slot of "}{ToPrettyString(uid)}"); + { + // Frontier modification: adds extra things to the log + var extraLogs = LoggingExtensions.GetExtraLogs(EntityManager, item); + + _adminLogger.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(user.Value)} inserted {ToPrettyString(item)}{extraLogs} into {slot.ContainerSlot?.ID + " slot of "}{ToPrettyString(uid)}"); + } _audioSystem.PlayPredicted(slot.InsertSound, uid, excludeUserAudio ? user : null); } diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs index 20e08b2767d..fabd8ff69f9 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Pickup.cs @@ -1,3 +1,4 @@ +using Content.Shared._NF.LoggingExtensions; using Content.Shared.Database; using Content.Shared.Hands.Components; using Content.Shared.Item; @@ -223,7 +224,10 @@ public virtual void DoPickup(EntityUid uid, Hand hand, EntityUid entity, HandsCo return; } - _adminLogger.Add(LogType.Pickup, LogImpact.Low, $"{ToPrettyString(uid):user} picked up {ToPrettyString(entity):entity}"); + // Frontier modification: adds extra things to the log + var extraLogs = LoggingExtensions.GetExtraLogs(EntityManager, entity); + + _adminLogger.Add(LogType.Pickup, LogImpact.Low, $"{ToPrettyString(uid):user} picked up {ToPrettyString(entity):entity}{extraLogs}"); Dirty(uid, hands); diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index 8d49ce31f0a..c48ee385ab6 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -1,5 +1,6 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; +using Content.Shared._NF.LoggingExtensions; using Content.Shared.ActionBlocker; using Content.Shared.Administration; using Content.Shared.Administration.Logs; @@ -419,7 +420,11 @@ public void InteractHand(EntityUid user, EntityUid target) // all interactions should only happen when in range / unobstructed, so no range check is needed var message = new InteractHandEvent(user, target); RaiseLocalEvent(target, message, true); - _adminLogger.Add(LogType.InteractHand, LogImpact.Low, $"{ToPrettyString(user):user} interacted with {ToPrettyString(target):target}"); + + // Frontier modification: adds extra things to the log + var extraLogs = LoggingExtensions.GetExtraLogs(EntityManager, target); + + _adminLogger.Add(LogType.InteractHand, LogImpact.Low, $"{ToPrettyString(user):user} interacted with {ToPrettyString(target):target}{extraLogs}"); DoContactInteraction(user, target, message); if (message.Handled) return; @@ -1047,7 +1052,12 @@ public void DroppedInteraction(EntityUid user, EntityUid item) var dropMsg = new DroppedEvent(user); RaiseLocalEvent(item, dropMsg, true); if (dropMsg.Handled) - _adminLogger.Add(LogType.Drop, LogImpact.Low, $"{ToPrettyString(user):user} dropped {ToPrettyString(item):entity}"); + { + // Frontier modification: adds extra things to the log + var extraLogs = LoggingExtensions.GetExtraLogs(EntityManager, item); + + _adminLogger.Add(LogType.Drop, LogImpact.Low, $"{ToPrettyString(user):user} dropped {ToPrettyString(item):entity}{extraLogs}"); + } // If the dropper is rotated then use their targetrelativerotation as the drop rotation var rotation = Angle.Zero; diff --git a/Content.Shared/_NF/LoggingExtensions/LoggingExtensions.cs b/Content.Shared/_NF/LoggingExtensions/LoggingExtensions.cs new file mode 100644 index 00000000000..1e234522ead --- /dev/null +++ b/Content.Shared/_NF/LoggingExtensions/LoggingExtensions.cs @@ -0,0 +1,19 @@ +using Content.Shared.Stacks; + +namespace Content.Shared._NF.LoggingExtensions; + +public static class LoggingExtensions +{ + public static string GetExtraLogs(EntityManager entityManager, EntityUid entity) + { + // Get details from the stack component to track amount of things in the stack. + if (entityManager.TryGetComponent(entity, out var stack)) + { + return $"(StackCount: {stack.Count.ToString()})"; + } + + // Add more logging things here when needed. + + return ""; + } +} diff --git a/Resources/Audio/_NF/Voice/Goblin/attributions.yml b/Resources/Audio/_NF/Voice/Goblin/attributions.yml new file mode 100644 index 00000000000..5da1cf34088 --- /dev/null +++ b/Resources/Audio/_NF/Voice/Goblin/attributions.yml @@ -0,0 +1,32 @@ +- files: ["goblin-cackle-01.ogg, goblin-cackle-02.ogg, goblin-cackle-03.ogg"] + license: "CC0-1.0" + copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (cropped) by erhardsteinhauer (discord/github)" + source: "https://freesound.org/people/SnowFightStudios/sounds/643664/" +- files: ["goblin-cackle-04.ogg"] + license: "CC0-1.0" + copyright: "Original file made by spookymodem (https://freesound.org/people/spookymodem/), edited (cropped) by erhardsteinhauer (discord/github)" + source: "https://freesound.org/people/spookymodem/sounds/202096/" +- files: ["goblin-cackle-05.ogg"] + license: "CC-BY-4.0" + copyright: "Original file made by Nanakisan (https://freesound.org/people/Nanakisan/)" + source: "https://freesound.org/people/Nanakisan/sounds/253532/" +- files: ["goblin-scream-01.ogg"] + license: "CC0-1.0" + copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (cropped) by erhardsteinhauer (discord/github)" + source: "https://freesound.org/people/SnowFightStudios/sounds/643655/" +- files: ["goblin-scream-02.ogg, goblin-scream-03.ogg, goblin-scream-04.ogg"] + license: "CC0-1.0" + copyright: "Original file made by Duisterwho (https://freesound.org/people/Duisterwho/), edited (cropped) by erhardsteinhauer (discord/github)" + source: "https://freesound.org/people/Duisterwho/sounds/643497/" +- files: ["goblin-cry-01.ogg, goblin-cry-02.ogg"] + license: "CC0-1.0" + copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (cropped) by erhardsteinhauer (discord/github)" + source: https://freesound.org/people/SnowFightStudios/sounds/643657/ +- files: ["goblin-chatter-01.ogg"] + license: "CC0-1.0" + copyright: "Original file made by Fenodyrie (https://freesound.org/people/Fenodyrie/)" + source: https://freesound.org/people/Fenodyrie/sounds/565923/ +- files: ["goblin-hiss-01.ogg"] + license: "CC-BY-4.0" + copyright: "Original file made by LittleRobotSoundFactory (https://freesound.org/people/LittleRobotSoundFactory/)" + source: https://freesound.org/people/LittleRobotSoundFactory/sounds/270389/ diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-01.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-01.ogg new file mode 100644 index 00000000000..74d3e2e0555 Binary files /dev/null and b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-01.ogg differ diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-02.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-02.ogg new file mode 100644 index 00000000000..42587638db5 Binary files /dev/null and b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-02.ogg differ diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-03.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-03.ogg new file mode 100644 index 00000000000..7db2a2f7bea Binary files /dev/null and b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-03.ogg differ diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-04.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-04.ogg new file mode 100644 index 00000000000..1b9d67543c7 Binary files /dev/null and b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-04.ogg differ diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-05.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-05.ogg new file mode 100644 index 00000000000..8d98dbda60d Binary files /dev/null and b/Resources/Audio/_NF/Voice/Goblin/goblin-cackle-05.ogg differ diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-chatter-01.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-chatter-01.ogg new file mode 100644 index 00000000000..4f236f781dc Binary files /dev/null and b/Resources/Audio/_NF/Voice/Goblin/goblin-chatter-01.ogg differ diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-cry-01.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-cry-01.ogg new file mode 100644 index 00000000000..a2fb7901674 Binary files /dev/null and b/Resources/Audio/_NF/Voice/Goblin/goblin-cry-01.ogg differ diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-cry-02.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-cry-02.ogg new file mode 100644 index 00000000000..a6e765ef487 Binary files /dev/null and b/Resources/Audio/_NF/Voice/Goblin/goblin-cry-02.ogg differ diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-hiss-01.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-hiss-01.ogg new file mode 100644 index 00000000000..563a6a8cb9a Binary files /dev/null and b/Resources/Audio/_NF/Voice/Goblin/goblin-hiss-01.ogg differ diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-scream-01.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-scream-01.ogg new file mode 100644 index 00000000000..d30730dd273 Binary files /dev/null and b/Resources/Audio/_NF/Voice/Goblin/goblin-scream-01.ogg differ diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-scream-02.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-scream-02.ogg new file mode 100644 index 00000000000..740e0d09733 Binary files /dev/null and b/Resources/Audio/_NF/Voice/Goblin/goblin-scream-02.ogg differ diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-scream-03.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-scream-03.ogg new file mode 100644 index 00000000000..84fe764d040 Binary files /dev/null and b/Resources/Audio/_NF/Voice/Goblin/goblin-scream-03.ogg differ diff --git a/Resources/Audio/_NF/Voice/Goblin/goblin-scream-04.ogg b/Resources/Audio/_NF/Voice/Goblin/goblin-scream-04.ogg new file mode 100644 index 00000000000..f55d83810a9 Binary files /dev/null and b/Resources/Audio/_NF/Voice/Goblin/goblin-scream-04.ogg differ diff --git a/Resources/Audio/_NF/Voice/Goblin/license.txt b/Resources/Audio/_NF/Voice/Goblin/license.txt new file mode 100644 index 00000000000..824f0bdbeda --- /dev/null +++ b/Resources/Audio/_NF/Voice/Goblin/license.txt @@ -0,0 +1,32 @@ +- files: ["goblin-cackle-01.ogg, goblin-cackle-02.ogg, goblin-cackle-03.ogg"] + license: "CC0-1.0" + copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (cropped) by erhardsteinhauer (discord/github)" + source: "https://freesound.org/people/SnowFightStudios/sounds/643664/" +- files: ["goblin-cackle-04.ogg"] + license: "CC0-1.0" + copyright: "Original file made by spookymodem (https://freesound.org/people/spookymodem/), edited (cropped) by erhardsteinhauer (discord/github)" + source: "https://freesound.org/people/spookymodem/sounds/202096/" +- files: ["goblin-cackle-05.ogg"] + license: "CC BY 4.0" + copyright: "Original file made by Nanakisan (https://freesound.org/people/Nanakisan/)" + source: "https://freesound.org/people/Nanakisan/sounds/253532/" +- files: ["goblin-scream-01.ogg"] + license: "CC0-1.0" + copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (cropped) by erhardsteinhauer (discord/github)" + source: "https://freesound.org/people/SnowFightStudios/sounds/643655/" +- files: ["goblin-scream-02.ogg, goblin-scream-03.ogg, goblin-scream-04.ogg"] + license: "CC0-1.0" + copyright: "Original file made by Duisterwho (https://freesound.org/people/Duisterwho/), edited (cropped) by erhardsteinhauer (discord/github)" + source: "https://freesound.org/people/Duisterwho/sounds/643497/" +- files: ["goblin-cry-01.ogg, goblin-cry-02.ogg"] + license: "CC0-1.0" + copyright: "Original file made by SnowFightStudios (https://freesound.org/people/SnowFightStudios/), edited (cropped) by erhardsteinhauer (discord/github)" + source: https://freesound.org/people/SnowFightStudios/sounds/643657/ +- files: ["goblin-chatter-01.ogg"] + license: "CC0-1.0" + copyright: "Original file made by Fenodyrie (https://freesound.org/people/Fenodyrie/)" + source: https://freesound.org/people/Fenodyrie/sounds/565923/ +- files: ["goblin-hiss-01.ogg"] + license: "CC BY 4.0" + copyright: "Original file made by LittleRobotSoundFactory (https://freesound.org/people/LittleRobotSoundFactory/)" + source: https://freesound.org/people/LittleRobotSoundFactory/sounds/270389/ diff --git a/Resources/Audio/_NF/Vulpikanin/bark.ogg b/Resources/Audio/_NF/Vulpikanin/bark.ogg deleted file mode 100644 index e0e77281d82..00000000000 Binary files a/Resources/Audio/_NF/Vulpikanin/bark.ogg and /dev/null differ diff --git a/Resources/Audio/_NF/Vulpikanin/growl1.ogg b/Resources/Audio/_NF/Vulpikanin/growl1.ogg deleted file mode 100644 index d5152d9c057..00000000000 Binary files a/Resources/Audio/_NF/Vulpikanin/growl1.ogg and /dev/null differ diff --git a/Resources/Audio/_NF/Vulpikanin/growl2.ogg b/Resources/Audio/_NF/Vulpikanin/growl2.ogg deleted file mode 100644 index 5c48053ac68..00000000000 Binary files a/Resources/Audio/_NF/Vulpikanin/growl2.ogg and /dev/null differ diff --git a/Resources/Audio/_NF/Vulpikanin/growl3.ogg b/Resources/Audio/_NF/Vulpikanin/growl3.ogg deleted file mode 100644 index bcacf2442f0..00000000000 Binary files a/Resources/Audio/_NF/Vulpikanin/growl3.ogg and /dev/null differ diff --git a/Resources/Audio/_NF/Vulpikanin/howl.ogg b/Resources/Audio/_NF/Vulpikanin/howl.ogg deleted file mode 100644 index 778fd6b2483..00000000000 Binary files a/Resources/Audio/_NF/Vulpikanin/howl.ogg and /dev/null differ diff --git a/Resources/Audio/_NF/Vulpikanin/scream1.ogg b/Resources/Audio/_NF/Vulpikanin/scream1.ogg deleted file mode 100644 index 8c5cf335a4a..00000000000 Binary files a/Resources/Audio/_NF/Vulpikanin/scream1.ogg and /dev/null differ diff --git a/Resources/Audio/_NF/Vulpikanin/scream2.ogg b/Resources/Audio/_NF/Vulpikanin/scream2.ogg deleted file mode 100644 index 0ff2ac25ce4..00000000000 Binary files a/Resources/Audio/_NF/Vulpikanin/scream2.ogg and /dev/null differ diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 17b12ad9aa4..bf867c28abd 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -4219,3 +4219,113 @@ Entries: message: Adds the Bocakillo, pirate ship. id: 4937 time: '2024-04-25T05:36:54.0000000+00:00' +- author: Kesiath + changes: + - type: Tweak + message: Temporarily restored Spacelaw books. + id: 4938 + time: '2024-04-26T04:16:05.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: Added storage compartment to Skeleton Bike. + - type: Tweak + message: It is possible to strap a duffel bag to ATV now. + - type: Tweak + message: ATV hull color is now randomized. + - type: Add + message: Added void-capable hoverbike. Buy one at cargo today! + - type: Add + message: Added void-capable hoverbikes for NFSD and Mail Carrier. + id: 4939 + time: '2024-04-26T04:32:41.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: >- + Mail carrier hoverbike flatpack that can be bought from vendomat. and + NFSD + - type: Add + message: >- + NFSD hoverbike flatpack that can be bought from uplink (utility + category). + - type: Remove + message: >- + Removed hoverbikes from cargo catalog. Will be added to expedition loot + pool at some point. + id: 4940 + time: '2024-04-26T16:58:44.0000000+00:00' +- author: Leander + changes: + - type: Tweak + message: Empress got a new coat of paint along with the microships. + id: 4941 + time: '2024-04-26T18:23:05.0000000+00:00' +- author: Gotimanga + changes: + - type: Tweak + message: 'Tweaked the NSF Wasp and changed it to the new NSFD colours ' + id: 4942 + time: '2024-04-26T20:49:17.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: Revamped ICR Chisel. + - type: Tweak + message: Enabled additional recipes in salvage techfab. + id: 4943 + time: '2024-04-26T21:27:00.0000000+00:00' +- author: Tych0theSynth + changes: + - type: Tweak + message: Reworked the NSF Interceptor and brought it up to date. + id: 4944 + time: '2024-04-26T22:05:51.0000000+00:00' +- author: GreaseMonk + changes: + - type: Tweak + message: Add more info about stack count to entity logs + id: 4945 + time: '2024-04-27T12:36:33.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Add + message: Added new species - Goblins. + - type: Add + message: Added new accent - Goblins Cant. + - type: Add + message: Added new decoration piece - Goblinkind Banner. + id: 4946 + time: '2024-04-27T14:58:41.0000000+00:00' +- author: ThatOneGoblin25 + changes: + - type: Fix + message: Knuckleverse can hire latejoins correctly. + id: 4947 + time: '2024-04-27T15:21:40.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: >- + Borgs can have laws that will force them to become goblin slayers due to + ion storms. Same for harpies. + id: 4948 + time: '2024-04-27T17:48:50.0000000+00:00' +- author: dvir01 + changes: + - type: Tweak + message: The pirates moved to a new base, McCove if you will. + id: 4949 + time: '2024-04-27T18:33:25.0000000+00:00' +- author: GingerAvalanche + changes: + - type: Add + message: Shuttle console display UI now shows ship name and designation + id: 4950 + time: '2024-04-27T19:07:30.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Fix + message: 'Fixes the plasteel recipe to be lore accurate: Plasteel = Plasma + Steel' + id: 4951 + time: '2024-04-27T23:46:34.0000000+00:00' diff --git a/Resources/Locale/en-US/_NF/accent/goblin_accent.ftl b/Resources/Locale/en-US/_NF/accent/goblin_accent.ftl new file mode 100644 index 00000000000..1a7848827fb --- /dev/null +++ b/Resources/Locale/en-US/_NF/accent/goblin_accent.ftl @@ -0,0 +1,737 @@ +# a mix of cockney and cant (rogue/vagabond slang) +# cockney: https://www.eastlondonhistory.co.uk/history-east-end-cockney/ (th -> f/v, tt -> ', er -> ah, -ing -> -in') +# cant: https://www.gutenberg.org/files/47018/47018-h/47018-h.htm + +accent-goblin-words-1 = a lot +accent-goblin-words-2 = airlock +accent-goblin-words-3 = airlocks +accent-goblin-words-4 = am +accent-goblin-words-5 = am not +accent-goblin-words-6 = an idea +accent-goblin-words-7 = antag +accent-goblin-words-8 = anything +accent-goblin-words-9 = are +accent-goblin-words-10 = are not +accent-goblin-words-11 = aren’t +accent-goblin-words-12 = arent +accent-goblin-words-13 = arrest +accent-goblin-words-14 = arrested +accent-goblin-words-15 = arresting +accent-goblin-words-16 = arrests +accent-goblin-words-17 = attack +accent-goblin-words-18 = attacked +accent-goblin-words-19 = attacking +accent-goblin-words-20 = attacks +accent-goblin-words-21 = bag +accent-goblin-words-22 = bags +accent-goblin-words-23 = bailiff +accent-goblin-words-24 = bailiffs +accent-goblin-words-25 = beat +accent-goblin-words-26 = beaten +accent-goblin-words-27 = beating +accent-goblin-words-28 = beats +accent-goblin-words-29 = beer +accent-goblin-words-30 = bocadillo +accent-goblin-words-31 = bolt +accent-goblin-words-32 = bolted +accent-goblin-words-33 = boot +accent-goblin-words-34 = boots +accent-goblin-words-35 = booze +accent-goblin-words-36 = bored +accent-goblin-words-37 = boring +accent-goblin-words-38 = bottle +accent-goblin-words-39 = bottles +accent-goblin-words-40 = boy +accent-goblin-words-41 = boys +accent-goblin-words-42 = brig +accent-goblin-words-43 = brother +accent-goblin-words-44 = brothers +accent-goblin-words-45 = bullshit +accent-goblin-words-46 = bullshitting +accent-goblin-words-47 = bus +accent-goblin-words-48 = captain +accent-goblin-words-49 = captains +accent-goblin-words-50 = cash +accent-goblin-words-51 = centcom +accent-goblin-words-52 = cheap +accent-goblin-words-53 = cheater +accent-goblin-words-54 = close +accent-goblin-words-55 = closed +accent-goblin-words-56 = closing +accent-goblin-words-57 = clothes +accent-goblin-words-58 = clown +accent-goblin-words-59 = clowns +accent-goblin-words-60 = command +accent-goblin-words-61 = corpse +accent-goblin-words-62 = crew +accent-goblin-words-63 = crewman +accent-goblin-words-64 = crewmember +accent-goblin-words-65 = crewmen +accent-goblin-words-66 = crime +accent-goblin-words-67 = crimes +accent-goblin-words-68 = crowbar +accent-goblin-words-69 = crowbars +accent-goblin-words-70 = cuff +accent-goblin-words-71 = cuffed +accent-goblin-words-72 = cuffing +accent-goblin-words-73 = cuffs +accent-goblin-words-74 = cut +accent-goblin-words-75 = cuts +accent-goblin-words-76 = cutting +accent-goblin-words-77 = dead +accent-goblin-words-78 = depot +accent-goblin-words-79 = depots +accent-goblin-words-80 = destroy +accent-goblin-words-81 = destroyed +accent-goblin-words-82 = destroying +accent-goblin-words-83 = diner +accent-goblin-words-84 = dock +accent-goblin-words-85 = docks +accent-goblin-words-86 = doctor +accent-goblin-words-87 = door +accent-goblin-words-88 = doors +accent-goblin-words-89 = drink +accent-goblin-words-90 = drinking +accent-goblin-words-91 = drinks +accent-goblin-words-92 = duffel +accent-goblin-words-93 = duffel bag +accent-goblin-words-94 = dwarf +accent-goblin-words-95 = dwarves +accent-goblin-words-96 = emitter +accent-goblin-words-97 = everything +accent-goblin-words-98 = experienced +accent-goblin-words-99 = fast +accent-goblin-words-100 = father +accent-goblin-words-101 = fathers +accent-goblin-words-102 = flies +accent-goblin-words-103 = fly +accent-goblin-words-104 = flying +accent-goblin-words-105 = follow +accent-goblin-words-106 = followed +accent-goblin-words-107 = following +accent-goblin-words-108 = follows +accent-goblin-words-109 = food +accent-goblin-words-110 = food ship +accent-goblin-words-111 = food ships +accent-goblin-words-112 = food shuttle +accent-goblin-words-113 = food shuttles +accent-goblin-words-114 = food truck +accent-goblin-words-115 = food trucks +accent-goblin-words-116 = fool +accent-goblin-words-117 = foolish +accent-goblin-words-118 = football +accent-goblin-words-119 = fucking +accent-goblin-words-120 = gave +accent-goblin-words-121 = give +accent-goblin-words-122 = gives +accent-goblin-words-123 = giving +accent-goblin-words-124 = going to +accent-goblin-words-125 = gonna +accent-goblin-words-126 = hammy +accent-goblin-words-127 = hamper +accent-goblin-words-128 = hampster +accent-goblin-words-129 = hampter +accent-goblin-words-130 = hamster +accent-goblin-words-131 = hand +accent-goblin-words-132 = handcuffs +accent-goblin-words-133 = harass +accent-goblin-words-134 = harasses +accent-goblin-words-135 = harassing +accent-goblin-words-136 = harassment +accent-goblin-words-137 = harbour +accent-goblin-words-138 = hard +accent-goblin-words-139 = has +accent-goblin-words-140 = has not +accent-goblin-words-141 = hasn’t +accent-goblin-words-142 = hasnt +accent-goblin-words-143 = have +accent-goblin-words-144 = have not +accent-goblin-words-145 = haven’t +accent-goblin-words-146 = havent +accent-goblin-words-147 = he +accent-goblin-words-148 = head +accent-goblin-words-149 = heal +accent-goblin-words-150 = healing +accent-goblin-words-151 = hear +accent-goblin-words-152 = heard +accent-goblin-words-153 = hearing +accent-goblin-words-154 = hears +accent-goblin-words-155 = heat +accent-goblin-words-156 = heaven +accent-goblin-words-157 = helix +accent-goblin-words-158 = hell +accent-goblin-words-159 = hellish +accent-goblin-words-160 = hello +accent-goblin-words-161 = helmet +accent-goblin-words-162 = her +accent-goblin-words-163 = heresy +accent-goblin-words-164 = heretical +accent-goblin-words-165 = hers +accent-goblin-words-166 = herself +accent-goblin-words-167 = hey +accent-goblin-words-168 = hi +accent-goblin-words-169 = hide +accent-goblin-words-170 = hideous +accent-goblin-words-171 = high +accent-goblin-words-172 = highly +accent-goblin-words-173 = him +accent-goblin-words-174 = himself +accent-goblin-words-175 = hint +accent-goblin-words-176 = hinting +accent-goblin-words-177 = hints +accent-goblin-words-178 = hire +accent-goblin-words-179 = hired +accent-goblin-words-180 = hires +accent-goblin-words-181 = hiring +accent-goblin-words-182 = his +accent-goblin-words-183 = hiss +accent-goblin-words-184 = hit +accent-goblin-words-185 = hold +accent-goblin-words-186 = holding +accent-goblin-words-187 = holly +accent-goblin-words-188 = honour +accent-goblin-words-189 = hope +accent-goblin-words-190 = horizon +accent-goblin-words-191 = horror +accent-goblin-words-192 = horrors +accent-goblin-words-193 = hose +accent-goblin-words-194 = hospital +accent-goblin-words-195 = hospitaller +accent-goblin-words-196 = hot +accent-goblin-words-197 = hothead +accent-goblin-words-198 = hotheaded +accent-goblin-words-199 = hotshot +accent-goblin-words-200 = how +accent-goblin-words-201 = however +accent-goblin-words-202 = human +accent-goblin-words-203 = humans +accent-goblin-words-204 = hurl +accent-goblin-words-205 = hurt +accent-goblin-words-206 = hurting +accent-goblin-words-207 = hush +accent-goblin-words-208 = ideas +accent-goblin-words-209 = idiot +accent-goblin-words-210 = in the know +accent-goblin-words-211 = in trouble +accent-goblin-words-212 = inexperienced +accent-goblin-words-213 = is +accent-goblin-words-214 = is not +accent-goblin-words-215 = isn’t +accent-goblin-words-216 = isnt +accent-goblin-words-217 = jailer +accent-goblin-words-218 = jailers +accent-goblin-words-219 = jest +accent-goblin-words-220 = jester +accent-goblin-words-221 = jesters +accent-goblin-words-222 = jests +accent-goblin-words-223 = kill +accent-goblin-words-224 = killed +accent-goblin-words-225 = killing +accent-goblin-words-226 = kills +accent-goblin-words-227 = know +accent-goblin-words-228 = knowing +accent-goblin-words-229 = knowledgeable +accent-goblin-words-230 = leg +accent-goblin-words-231 = legs +accent-goblin-words-232 = lemme +accent-goblin-words-233 = lie +accent-goblin-words-234 = lied +accent-goblin-words-235 = lies +accent-goblin-words-236 = little +accent-goblin-words-237 = look +accent-goblin-words-238 = looked +accent-goblin-words-239 = looking +accent-goblin-words-240 = looks +accent-goblin-words-241 = lying +accent-goblin-words-242 = man +accent-goblin-words-243 = McCargo +accent-goblin-words-244 = meat +accent-goblin-words-245 = medic +accent-goblin-words-246 = men +accent-goblin-words-247 = merc +accent-goblin-words-248 = mercenaries +accent-goblin-words-249 = mercenary +accent-goblin-words-250 = mercs +accent-goblin-words-251 = money +accent-goblin-words-252 = mother +accent-goblin-words-253 = mothers +accent-goblin-words-254 = mouth +accent-goblin-words-255 = moving +accent-goblin-words-256 = murder +accent-goblin-words-257 = murdered +accent-goblin-words-258 = murdering +accent-goblin-words-259 = myself +accent-goblin-words-260 = neat +accent-goblin-words-261 = neato +accent-goblin-words-262 = nfsd +accent-goblin-words-263 = nice +accent-goblin-words-264 = no sense +accent-goblin-words-265 = nonsense +accent-goblin-words-266 = nonsensical +accent-goblin-words-267 = nsfd +accent-goblin-words-268 = officer +accent-goblin-words-269 = paper +accent-goblin-words-270 = papers +accent-goblin-words-271 = pay +accent-goblin-words-272 = person +accent-goblin-words-273 = pilot +accent-goblin-words-274 = pirate +accent-goblin-words-275 = pirates +accent-goblin-words-276 = poor +accent-goblin-words-277 = prison +accent-goblin-words-278 = prowler +accent-goblin-words-279 = quickly +accent-goblin-words-280 = reporter +accent-goblin-words-281 = reporters +accent-goblin-words-282 = restaurant +accent-goblin-words-283 = rich +accent-goblin-words-284 = rob +accent-goblin-words-285 = robbed +accent-goblin-words-286 = run +accent-goblin-words-287 = saw +accent-goblin-words-288 = scientific +accent-goblin-words-289 = scientist +accent-goblin-words-290 = scientists +accent-goblin-words-291 = sec +accent-goblin-words-292 = seccie +accent-goblin-words-293 = security +accent-goblin-words-294 = see +accent-goblin-words-295 = seeing +accent-goblin-words-296 = seen +accent-goblin-words-297 = shit +accent-goblin-words-298 = shitter +accent-goblin-words-299 = shoe +accent-goblin-words-300 = shoes +accent-goblin-words-301 = shut up +accent-goblin-words-302 = shut your mouth +accent-goblin-words-303 = shuttle +accent-goblin-words-304 = shuttles +accent-goblin-words-305 = sleep +accent-goblin-words-306 = sleeping +accent-goblin-words-307 = slime +accent-goblin-words-308 = slimes +accent-goblin-words-309 = smart +accent-goblin-words-310 = smoke +accent-goblin-words-311 = smoked +accent-goblin-words-312 = smokes +accent-goblin-words-313 = smoking +accent-goblin-words-314 = soccer +accent-goblin-words-315 = something +accent-goblin-words-316 = speak +accent-goblin-words-317 = speaking +accent-goblin-words-318 = spesos +accent-goblin-words-319 = spoke +accent-goblin-words-320 = steal +accent-goblin-words-321 = stealing +accent-goblin-words-322 = stole +accent-goblin-words-323 = stolen +accent-goblin-words-324 = stop +accent-goblin-words-325 = stupid +accent-goblin-words-326 = syndi +accent-goblin-words-327 = syndicate +accent-goblin-words-328 = syndicates +accent-goblin-words-329 = syndie +accent-goblin-words-330 = syndies +accent-goblin-words-331 = syndis +accent-goblin-words-332 = take +accent-goblin-words-333 = takes +accent-goblin-words-334 = taking +accent-goblin-words-335 = talk +accent-goblin-words-336 = talking +accent-goblin-words-337 = talks +accent-goblin-words-338 = templar +accent-goblin-words-339 = theft +accent-goblin-words-340 = thief +accent-goblin-words-341 = thieving +accent-goblin-words-342 = thing +accent-goblin-words-343 = think +accent-goblin-words-344 = thinking +accent-goblin-words-345 = thought +accent-goblin-words-346 = thoughts +accent-goblin-words-347 = tobacco +accent-goblin-words-348 = took +accent-goblin-words-349 = trick +accent-goblin-words-350 = tricked +accent-goblin-words-351 = tricky +accent-goblin-words-352 = warden +accent-goblin-words-353 = wardens +accent-goblin-words-354 = watch +accent-goblin-words-355 = watched +accent-goblin-words-356 = watches +accent-goblin-words-357 = watching +accent-goblin-words-358 = water +accent-goblin-words-359 = whether +accent-goblin-words-360 = with +accent-goblin-words-361 = without +accent-goblin-words-362 = write +accent-goblin-words-363 = writes +accent-goblin-words-364 = writing +accent-goblin-words-365 = written +accent-goblin-words-366 = wrote + +accent-goblin-words-replace-1 = swag +accent-goblin-words-replace-2 = jiggah +accent-goblin-words-replace-3 = jiggahs +accent-goblin-words-replace-4 = be +accent-goblin-words-replace-5 = ain’t +accent-goblin-words-replace-6 = wrinkle +accent-goblin-words-replace-7 = cur +accent-goblin-words-replace-8 = anyfin’ +accent-goblin-words-replace-9 = be +accent-goblin-words-replace-10 = ain’t +accent-goblin-words-replace-11 = ain’t +accent-goblin-words-replace-12 = ain’t +accent-goblin-words-replace-13 = snaffle +accent-goblin-words-replace-14 = snaffled +accent-goblin-words-replace-15 = snafflin’ +accent-goblin-words-replace-16 = snaffles +accent-goblin-words-replace-17 = frummagemm +accent-goblin-words-replace-18 = frummagemmed +accent-goblin-words-replace-19 = frummagemmin' +accent-goblin-words-replace-20 = frummagemms +accent-goblin-words-replace-21 = poke +accent-goblin-words-replace-22 = pokes +accent-goblin-words-replace-23 = jiggah-dubbah +accent-goblin-words-replace-24 = jiggah-dubbahs +accent-goblin-words-replace-25 = slog +accent-goblin-words-replace-26 = slogged +accent-goblin-words-replace-27 = sloggin' +accent-goblin-words-replace-28 = slogs +accent-goblin-words-replace-29 = lush +accent-goblin-words-replace-30 = grubbin’-ken +accent-goblin-words-replace-31 = slour +accent-goblin-words-replace-32 = sloured +accent-goblin-words-replace-33 = stampah +accent-goblin-words-replace-34 = stampahs +accent-goblin-words-replace-35 = lush +accent-goblin-words-replace-36 = 'um-drummed +accent-goblin-words-replace-37 = 'um-drum +accent-goblin-words-replace-38 = bo’le +accent-goblin-words-replace-39 = bo’les +accent-goblin-words-replace-40 = article +accent-goblin-words-replace-41 = articles +accent-goblin-words-replace-42 = quod +accent-goblin-words-replace-43 = brovah +accent-goblin-words-replace-44 = brovahs +accent-goblin-words-replace-45 = fudge +accent-goblin-words-replace-46 = fudgin’ +accent-goblin-words-replace-47 = ra’lah +accent-goblin-words-replace-48 = bossman +accent-goblin-words-replace-49 = bossmen +accent-goblin-words-replace-50 = dimmocks +accent-goblin-words-replace-51 = tufts +accent-goblin-words-replace-52 = slop +accent-goblin-words-replace-53 = rook +accent-goblin-words-replace-54 = dub +accent-goblin-words-replace-55 = dubbed +accent-goblin-words-replace-56 = dubbin’ +accent-goblin-words-replace-57 = dunnage +accent-goblin-words-replace-58 = lark +accent-goblin-words-replace-59 = larks +accent-goblin-words-replace-60 = tufts +accent-goblin-words-replace-61 = croakah +accent-goblin-words-replace-62 = laggah +accent-goblin-words-replace-63 = jack tar +accent-goblin-words-replace-64 = laggah +accent-goblin-words-replace-65 = jack tars +accent-goblin-words-replace-66 = job +accent-goblin-words-replace-67 = jobs +accent-goblin-words-replace-68 = jilt +accent-goblin-words-replace-69 = jilts +accent-goblin-words-replace-70 = bracelet +accent-goblin-words-replace-71 = braceleted +accent-goblin-words-replace-72 = bracele’in’ +accent-goblin-words-replace-73 = bracelets +accent-goblin-words-replace-74 = chive +accent-goblin-words-replace-75 = chives +accent-goblin-words-replace-76 = chivin’ +accent-goblin-words-replace-77 = croakah +accent-goblin-words-replace-78 = fence +accent-goblin-words-replace-79 = fences +accent-goblin-words-replace-80 = coopah +accent-goblin-words-replace-81 = coopah'd +accent-goblin-words-replace-82 = coopin’ +accent-goblin-words-replace-83 = grubbin’-ken +accent-goblin-words-replace-84 = jiggah +accent-goblin-words-replace-85 = jiggahs +accent-goblin-words-replace-86 = crocus +accent-goblin-words-replace-87 = jiggah +accent-goblin-words-replace-88 = jiggahs +accent-goblin-words-replace-89 = bub +accent-goblin-words-replace-90 = bubbin’ +accent-goblin-words-replace-91 = bubs +accent-goblin-words-replace-92 = trap +accent-goblin-words-replace-93 = trap +accent-goblin-words-replace-94 = stunty +accent-goblin-words-replace-95 = stunties +accent-goblin-words-replace-96 = emi’ah +accent-goblin-words-replace-97 = everyfin’ +accent-goblin-words-replace-98 = baked +accent-goblin-words-replace-99 = dashin' +accent-goblin-words-replace-100 = favah +accent-goblin-words-replace-101 = favahs +accent-goblin-words-replace-102 = drags +accent-goblin-words-replace-103 = drag +accent-goblin-words-replace-104 = draggin’ +accent-goblin-words-replace-105 = dog +accent-goblin-words-replace-106 = dogged +accent-goblin-words-replace-107 = doggin’ +accent-goblin-words-replace-108 = dogs +accent-goblin-words-replace-109 = grub +accent-goblin-words-replace-110 = grubbin’-ken +accent-goblin-words-replace-111 = grubbin’-ken +accent-goblin-words-replace-112 = grubbin’-ken +accent-goblin-words-replace-113 = grubbin’-ken +accent-goblin-words-replace-114 = grubbin’-ken +accent-goblin-words-replace-115 = grubbin’-ken +accent-goblin-words-replace-116 = cake +accent-goblin-words-replace-117 = cranky +accent-goblin-words-replace-118 = soccer +accent-goblin-words-replace-119 = fuckin’ +accent-goblin-words-replace-120 = bunged +accent-goblin-words-replace-121 = bung +accent-goblin-words-replace-122 = bungs +accent-goblin-words-replace-123 = bungin’ +accent-goblin-words-replace-124 = goin' to +accent-goblin-words-replace-125 = goin' to +accent-goblin-words-replace-126 = li’le snack +accent-goblin-words-replace-127 = 'amper +accent-goblin-words-replace-128 = li’le snack +accent-goblin-words-replace-129 = li’le snack +accent-goblin-words-replace-130 = li’le snack +accent-goblin-words-replace-131 = 'and +accent-goblin-words-replace-132 = darbies +accent-goblin-words-replace-133 = 'arass +accent-goblin-words-replace-134 = 'arasses +accent-goblin-words-replace-135 = 'arassin’ +accent-goblin-words-replace-136 = 'arassment +accent-goblin-words-replace-137 = 'arbour +accent-goblin-words-replace-138 = 'ard +accent-goblin-words-replace-139 = 'as +accent-goblin-words-replace-140 = 'as not +accent-goblin-words-replace-141 = ain’t +accent-goblin-words-replace-142 = ain’t +accent-goblin-words-replace-143 = 'ave +accent-goblin-words-replace-144 = 'ave not +accent-goblin-words-replace-145 = ain’t +accent-goblin-words-replace-146 = ain’t +accent-goblin-words-replace-147 = 'e +accent-goblin-words-replace-148 = 'ead +accent-goblin-words-replace-149 = 'eal +accent-goblin-words-replace-150 = 'ealin’ +accent-goblin-words-replace-151 = 'ear +accent-goblin-words-replace-152 = 'eard +accent-goblin-words-replace-153 = 'earin’ +accent-goblin-words-replace-154 = 'ears +accent-goblin-words-replace-155 = 'eat +accent-goblin-words-replace-156 = 'eaven +accent-goblin-words-replace-157 = 'elix +accent-goblin-words-replace-158 = 'ell +accent-goblin-words-replace-159 = 'ellish +accent-goblin-words-replace-160 = 'ello +accent-goblin-words-replace-161 = 'elmet +accent-goblin-words-replace-162 = 'er +accent-goblin-words-replace-163 = 'eresy +accent-goblin-words-replace-164 = 'eretical +accent-goblin-words-replace-165 = 'ers +accent-goblin-words-replace-166 = 'erseuf +accent-goblin-words-replace-167 = oi +accent-goblin-words-replace-168 = oi +accent-goblin-words-replace-169 = 'ide +accent-goblin-words-replace-170 = 'ideous +accent-goblin-words-replace-171 = 'igh +accent-goblin-words-replace-172 = 'ighly +accent-goblin-words-replace-173 = 'im +accent-goblin-words-replace-174 = 'imseuf +accent-goblin-words-replace-175 = 'int +accent-goblin-words-replace-176 = 'intin’ +accent-goblin-words-replace-177 = 'ints +accent-goblin-words-replace-178 = 'ire +accent-goblin-words-replace-179 = 'ired +accent-goblin-words-replace-180 = 'ires +accent-goblin-words-replace-181 = 'irin’ +accent-goblin-words-replace-182 = 'is +accent-goblin-words-replace-183 = 'iss +accent-goblin-words-replace-184 = 'it +accent-goblin-words-replace-185 = 'old +accent-goblin-words-replace-186 = 'oldin’ +accent-goblin-words-replace-187 = 'olly +accent-goblin-words-replace-188 = 'onour +accent-goblin-words-replace-189 = 'ope +accent-goblin-words-replace-190 = 'orizon +accent-goblin-words-replace-191 = 'orror +accent-goblin-words-replace-192 = 'orrors +accent-goblin-words-replace-193 = 'ose +accent-goblin-words-replace-194 = 'ospital +accent-goblin-words-replace-195 = 'ospitaller +accent-goblin-words-replace-196 = 'ot +accent-goblin-words-replace-197 = 'ot'ead +accent-goblin-words-replace-198 = 'ot'eaded +accent-goblin-words-replace-199 = 'otshot +accent-goblin-words-replace-200 = 'aw +accent-goblin-words-replace-201 = 'owever +accent-goblin-words-replace-202 = 'uman +accent-goblin-words-replace-203 = 'umans +accent-goblin-words-replace-204 = 'url +accent-goblin-words-replace-205 = 'urt +accent-goblin-words-replace-206 = 'urtin’ +accent-goblin-words-replace-207 = 'ush +accent-goblin-words-replace-208 = wrinkles +accent-goblin-words-replace-209 = natural +accent-goblin-words-replace-210 = wide awake +accent-goblin-words-replace-211 = in for it +accent-goblin-words-replace-212 = half baked +accent-goblin-words-replace-213 = be +accent-goblin-words-replace-214 = ain’t +accent-goblin-words-replace-215 = ain’t +accent-goblin-words-replace-216 = ain’t +accent-goblin-words-replace-217 = jiggah-dubbah +accent-goblin-words-replace-218 = jiggah-dubbahs +accent-goblin-words-replace-219 = skit +accent-goblin-words-replace-220 = skit +accent-goblin-words-replace-221 = skits +accent-goblin-words-replace-222 = skits +accent-goblin-words-replace-223 = burke +accent-goblin-words-replace-224 = burked +accent-goblin-words-replace-225 = burkin’ +accent-goblin-words-replace-226 = burks +accent-goblin-words-replace-227 = savey +accent-goblin-words-replace-228 = savey +accent-goblin-words-replace-229 = wide awake +accent-goblin-words-replace-230 = stampe +accent-goblin-words-replace-231 = stampes +accent-goblin-words-replace-232 = let me +accent-goblin-words-replace-233 = flam +accent-goblin-words-replace-234 = flamed +accent-goblin-words-replace-235 = flams +accent-goblin-words-replace-236 = li’le +accent-goblin-words-replace-237 = ogle +accent-goblin-words-replace-238 = ogled +accent-goblin-words-replace-239 = oglin’ +accent-goblin-words-replace-240 = ogles +accent-goblin-words-replace-241 = flamin’ +accent-goblin-words-replace-242 = article +accent-goblin-words-replace-243 = grubbin’-ken +accent-goblin-words-replace-244 = prog +accent-goblin-words-replace-245 = crocus +accent-goblin-words-replace-246 = articles +accent-goblin-words-replace-247 = blade +accent-goblin-words-replace-248 = blades +accent-goblin-words-replace-249 = blade +accent-goblin-words-replace-250 = blades +accent-goblin-words-replace-251 = dimmocks +accent-goblin-words-replace-252 = movah +accent-goblin-words-replace-253 = movahs +accent-goblin-words-replace-254 = gob +accent-goblin-words-replace-255 = movin’ +accent-goblin-words-replace-256 = burke +accent-goblin-words-replace-257 = burked +accent-goblin-words-replace-258 = burkin’ +accent-goblin-words-replace-259 = meseuf +accent-goblin-words-replace-260 = dimbah +accent-goblin-words-replace-261 = dimbah +accent-goblin-words-replace-262 = coppahs +accent-goblin-words-replace-263 = rootah +accent-goblin-words-replace-264 = fudge +accent-goblin-words-replace-265 = fudge +accent-goblin-words-replace-266 = fudge +accent-goblin-words-replace-267 = coppahs +accent-goblin-words-replace-268 = coppah +accent-goblin-words-replace-269 = linendraper +accent-goblin-words-replace-270 = linendrapers +accent-goblin-words-replace-271 = bit +accent-goblin-words-replace-272 = bloke +accent-goblin-words-replace-273 = jarvey +accent-goblin-words-replace-274 = rampsman +accent-goblin-words-replace-275 = rampsmen +accent-goblin-words-replace-276 = quisby +accent-goblin-words-replace-277 = lock-up +accent-goblin-words-replace-278 = prowlah +accent-goblin-words-replace-279 = winkin’ +accent-goblin-words-replace-280 = penny-a-liner +accent-goblin-words-replace-281 = penny-a-liners +accent-goblin-words-replace-282 = grubbin’-ken +accent-goblin-words-replace-283 = flush +accent-goblin-words-replace-284 = fylche +accent-goblin-words-replace-285 = fylched +accent-goblin-words-replace-286 = pike +accent-goblin-words-replace-287 = staged +accent-goblin-words-replace-288 = rumgumptious +accent-goblin-words-replace-289 = gnostic +accent-goblin-words-replace-290 = gnostics +accent-goblin-words-replace-291 = coppah +accent-goblin-words-replace-292 = beak +accent-goblin-words-replace-293 = coppah +accent-goblin-words-replace-294 = stags +accent-goblin-words-replace-295 = staggin’ +accent-goblin-words-replace-296 = staged +accent-goblin-words-replace-297 = dung +accent-goblin-words-replace-298 = dungah +accent-goblin-words-replace-299 = stampah +accent-goblin-words-replace-300 = stampahs +accent-goblin-words-replace-301 = avast +accent-goblin-words-replace-302 = avast ya gob +accent-goblin-words-replace-303 = shu’le +accent-goblin-words-replace-304 = shu’les +accent-goblin-words-replace-305 = doss +accent-goblin-words-replace-306 = dossin’ +accent-goblin-words-replace-307 = ooze +accent-goblin-words-replace-308 = oozes +accent-goblin-words-replace-309 = dimbah-dambah +accent-goblin-words-replace-310 = blow a cloud +accent-goblin-words-replace-311 = blew a clowd +accent-goblin-words-replace-312 = blows a cloud +accent-goblin-words-replace-313 = blowin’ a cloud +accent-goblin-words-replace-314 = football +accent-goblin-words-replace-315 = somefin' +accent-goblin-words-replace-316 = pa'ah +accent-goblin-words-replace-317 = pa'ahin’ +accent-goblin-words-replace-318 = dimmocks +accent-goblin-words-replace-319 = pa'ed +accent-goblin-words-replace-320 = fylche +accent-goblin-words-replace-321 = fylchin’ +accent-goblin-words-replace-322 = fylched +accent-goblin-words-replace-323 = fylched +accent-goblin-words-replace-324 = avast +accent-goblin-words-replace-325 = duffah +accent-goblin-words-replace-326 = lobster +accent-goblin-words-replace-327 = lobster +accent-goblin-words-replace-328 = lobsters +accent-goblin-words-replace-329 = lobster +accent-goblin-words-replace-330 = lobsters +accent-goblin-words-replace-331 = lobsters +accent-goblin-words-replace-332 = knap +accent-goblin-words-replace-333 = knaps +accent-goblin-words-replace-334 = knappin' +accent-goblin-words-replace-335 = gab +accent-goblin-words-replace-336 = gabbin' +accent-goblin-words-replace-337 = gabs +accent-goblin-words-replace-338 = templah +accent-goblin-words-replace-339 = fylchin’ +accent-goblin-words-replace-340 = fylchah +accent-goblin-words-replace-341 = fylchin’ +accent-goblin-words-replace-342 = fin’ +accent-goblin-words-replace-343 = fink +accent-goblin-words-replace-344 = finkin’ +accent-goblin-words-replace-345 = fought +accent-goblin-words-replace-346 = foughts +accent-goblin-words-replace-347 = fogus +accent-goblin-words-replace-348 = knapped +accent-goblin-words-replace-349 = rig +accent-goblin-words-replace-350 = rigged +accent-goblin-words-replace-351 = riggy +accent-goblin-words-replace-352 = jiggah-dubbah +accent-goblin-words-replace-353 = jiggah-dubbahs +accent-goblin-words-replace-354 = tout +accent-goblin-words-replace-355 = touted +accent-goblin-words-replace-356 = touts +accent-goblin-words-replace-357 = toutin’ +accent-goblin-words-replace-358 = wo’ah +accent-goblin-words-replace-359 = wever +accent-goblin-words-replace-360 = wiv +accent-goblin-words-replace-361 = wivout +accent-goblin-words-replace-362 = screeve +accent-goblin-words-replace-363 = screeves +accent-goblin-words-replace-364 = screevin’ +accent-goblin-words-replace-365 = screeved +accent-goblin-words-replace-366 = screeved diff --git a/Resources/Locale/en-US/_NF/chat/managers/chat_manager.ftl b/Resources/Locale/en-US/_NF/chat/managers/chat_manager.ftl index ddc0bde87c5..897a4cb0375 100644 --- a/Resources/Locale/en-US/_NF/chat/managers/chat_manager.ftl +++ b/Resources/Locale/en-US/_NF/chat/managers/chat_manager.ftl @@ -16,3 +16,10 @@ chat-speech-verb-harpy-1 = chirps chat-speech-verb-harpy-2 = tweets chat-speech-verb-harpy-3 = caws chat-speech-verb-harpy-4 = trills + +chat-speech-verb-name-goblin = Goblin +chat-speech-verb-goblin-1 = jabbers +chat-speech-verb-goblin-2 = vokers +chat-speech-verb-goblin-3 = blurts out +chat-speech-verb-goblin-4 = patters +chat-speech-verb-goblin-5 = cuts diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-engineering.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-engineering.ftl deleted file mode 100644 index 89bdc6673df..00000000000 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-engineering.ftl +++ /dev/null @@ -1,8 +0,0 @@ -ent-EnginePortableGeneratorJrPacman = { ent-PortableGeneratorJrPacman } - .desc = { ent-PortableGeneratorJrPacman.desc } - -ent-EnginePortableGeneratorPacman = { ent-PortableGeneratorPacman } - .desc = { ent-PortableGeneratorPacman.desc } - -ent-EnginePortableGeneratorSuperPacman = { ent-PortableGeneratorSuperPacman } - .desc = { ent-PortableGeneratorSuperPacman.desc } diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-fun.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-fun.ftl deleted file mode 100644 index c93f16494c2..00000000000 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-fun.ftl +++ /dev/null @@ -1,17 +0,0 @@ -ent-FloorsFun = { ent-CrateFloorsFun } - .desc = { ent-CrateFloorsFun.desc } - -ent-FunPianoInstrument = { ent-PianoInstrument } - .desc = { ent-PianoInstrument.desc } - -ent-FunUprightPianoInstrument = { ent-UprightPianoInstrument } - .desc = { ent-UprightPianoInstrument.desc } - -ent-FunChurchOrganInstrument = { ent-ChurchOrganInstrument } - .desc = { ent-ChurchOrganInstrument.desc } - -ent-FunMinimoogInstrument = { ent-MinimoogInstrument } - .desc = { ent-MinimoogInstrument.desc } - -ent-FunDawInstrument = { ent-DawInstrument } - .desc = { ent-DawInstrument.desc } diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-livestock.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-livestock.ftl deleted file mode 100644 index e9808e9575a..00000000000 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-livestock.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-LivestockEmotionalSupport = { ent-CrateNPCEmotionalSupport } - .desc = { ent-CrateNPCEmotionalSupport.desc } \ No newline at end of file diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-materials.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-materials.ftl deleted file mode 100644 index 1ae00c2cfe2..00000000000 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-materials.ftl +++ /dev/null @@ -1,5 +0,0 @@ -ent-Materials = { ent-CrateMaterials } - .desc = { ent-CrateMaterials.desc } - -ent-MaterialUranium = { ent-CrateMaterialUranium } - .desc = { ent-CrateMaterialUranium.desc } diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-service.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-service.ftl deleted file mode 100644 index 5e27cb780d1..00000000000 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-service.ftl +++ /dev/null @@ -1,5 +0,0 @@ -ent-ServiceJanitorial2 = { ent-CrateServiceJanitorialSupplies2 } - .desc = { ent-CrateServiceJanitorialSupplies2.desc } - -ent-ServiceVehicleJanicart = { ent-CrateVehicleJanicart } - .desc = { ent-CrateVehicleJanicart.desc } diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-trade.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-trade.ftl deleted file mode 100644 index 3e9348a3542..00000000000 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-trade.ftl +++ /dev/null @@ -1,5 +0,0 @@ -ent-CrateTradeSecureNormal = { ent-CrateTradeSecureNormalFilled } - .desc = { ent-CrateTradeSecureNormalFilled.desc } - -ent-CrateTradeSecureHigh = { ent-CrateTradeSecureHighFilled } - .desc = { ent-CrateTradeSecureHighFilled.desc } diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-vending.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-vending.ftl deleted file mode 100644 index 97bf18849dc..00000000000 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/cargo/cargo-vending.ftl +++ /dev/null @@ -1,11 +0,0 @@ -ent-CrateVendingMachineRestockAstroVend = { ent-CrateVendingMachineRestockAstroVendFilled } - .desc = { ent-CrateVendingMachineRestockAstroVendFilled.desc } - -ent-CrateVendingMachineRestockAmmo = { ent-CrateVendingMachineRestockAmmoFilled } - .desc = { ent-CrateVendingMachineRestockAmmoFilled.desc } - -ent-CrateVendingMachineRestockFlatpackVend = { ent-CrateVendingMachineRestockFlatpackVendFilled } - .desc = { ent-CrateVendingMachineRestockFlatpackVendFilled.desc } - -ent-CrateVendingMachineRestockCuddlyCritterVend = { ent-CrateVendingMachineRestockCuddlyCritterVendFilled } - .desc = { ent-CrateVendingMachineRestockCuddlyCritterVendFilled.desc } \ No newline at end of file diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/engines-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/engines-crates.ftl deleted file mode 100644 index 73eddc68475..00000000000 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/engines-crates.ftl +++ /dev/null @@ -1,11 +0,0 @@ -ent-CrateThruster = thruster crate - .desc = A crate with a thruster that allows a shuttle to move. - -ent-CrateGyroscope = gyroscope crate - .desc = A crate with a gyroscope that increases the shuttle's potential angular rotation. - -ent-CrateSmallThruster = small thruster crate - .desc = A crate with a small thruster that allows a shuttle to move. - -ent-CrateSmallGyroscope = small gyroscope crate - .desc = A crate with a small gyroscope that increases the shuttle's potential angular rotation. diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/fun-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/fun-crates.ftl deleted file mode 100644 index 6a4fdfdff9a..00000000000 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/fun-crates.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-CrateFloorsFun = Fun floors tiles crate - .desc = A crate full of 30 random tiles, used for decoration. diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/livestock-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/livestock-crates.ftl deleted file mode 100644 index 1449cf9dcdb..00000000000 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/livestock-crates.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-CrateNPCEmotionalSupport = Emotional support pet crate - .desc = A crate containing a single emotional support pet. diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/materials-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/materials-crates.ftl deleted file mode 100644 index d3c8db05697..00000000000 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/materials-crates.ftl +++ /dev/null @@ -1,5 +0,0 @@ -ent-CrateMaterials = Materials crate - .desc = 1 sheet of glass, plastic, steel, plasma and plasteel. - -ent-CrateMaterialUranium = Uranium crate - .desc = 90 sheets of uranium. diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/science-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/science-crates.ftl deleted file mode 100644 index a5ce5ad007c..00000000000 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/science-crates.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-CrateScienceLabBundle = scientist lab kit - .desc = Contains a full kit to build your very own science lab. diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/service-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/service-crates.ftl deleted file mode 100644 index 588b424a201..00000000000 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/service-crates.ftl +++ /dev/null @@ -1,8 +0,0 @@ -ent-CrateServiceJanitorialSupplies2 = Janitorial supplies crate B - .desc = Fight back against dirt and grime with Nanotrasen's Janitorial Essentials(tm)! Contains two trash bag boxes, one box of wet floor signs and 2 spray cleaners. - -ent-CrateSpaceCleaner = Bulk space cleaner crate - .desc = For a large mess - -ent-CrateVehicleJanicart = Janicart crate - .desc = The janitor's trusty steed. diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/syndicate-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/syndicate-crates.ftl deleted file mode 100644 index f5f1fa138c3..00000000000 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/syndicate-crates.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-CrateSyndicateLightSurplusBundle = Syndicate light surplus crate - .desc = Contains 30 telecrystals worth of completely random Syndicate items. It can be useless junk or really good. diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/trade-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/trade-crates.ftl deleted file mode 100644 index 2afd39f7aa3..00000000000 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/trade-crates.ftl +++ /dev/null @@ -1,5 +0,0 @@ -ent-CrateTradeSecureNormalFilled = Cargo trading crate - .desc = Contains goods made in the Frontier sector, ready to be sold on a cargo depot for higher value. MAKE SURE THE CRATE IS INTACT. - -ent-CrateTradeSecureHighFilled = High value cargo trading crate - .desc = Contains high value goods made in the Frontier sector, ready to be sold on a cargo depot for higher value. MAKE SURE THE CRATE IS INTACT. diff --git a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl b/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl deleted file mode 100644 index cbdf5dd81e2..00000000000 --- a/Resources/Locale/en-US/_NF/prototypes/catalog/fills/crates/vending-crates.ftl +++ /dev/null @@ -1,26 +0,0 @@ -ent-CrateVendingMachineRestockAstroVendFilled = AstroVend restock crate - .desc = Contains two restock boxes for the AstroVend vending machine. - -ent-CrateVendingMachineRestockAmmoFilled = Liberation restock crate - .desc = Contains two restock boxes for the Liberation vending machine. - -ent-CrateVendingMachineRestockFlatpackVendFilled = FlatpackVend restock crate - .desc = Contains two restock boxes for a FlatpackVend vending machine. - -ent-CrateVendingMachineRestockCuddlyCritterVendFilled = CuddlyCritterVend restock crate - .desc = Contains two restock boxes for a CuddlyCritterVend vending machine. - -ent-CrateVendingMachineRestockChefvendFilled = ChefVend restock crate - .desc = Contains two restock boxes for a ChefVend vending machine. - -ent-CrateVendingMachineRestockCondimentStationFilled = Condiment Station restock crate - .desc = Contains two restock boxes for a condiment station. - -ent-CrateVendingMachineRestockLessLethalVendFilled = LessLethalVend restock crate - .desc = Contains two restock boxes for the LessLethalVend vending machine. - -ent-CrateVendingMachineRestockAutoTuneVendFilled = AutoTuneVend restock crate - .desc = Contains two restock boxes for the AutoTuneVend vending machine. - -ent-CrateVendingMachineRestockPottedPlantVendFilled = Plant-O-Matic restock crate - .desc = Contains two restock boxes for the Plant-O-Matic vending machine. diff --git a/Resources/Locale/en-US/_NF/prototypes/entities/shuttles/thrusters.ftl b/Resources/Locale/en-US/_NF/prototypes/entities/shuttles/thrusters.ftl deleted file mode 100644 index f1535b82c6a..00000000000 --- a/Resources/Locale/en-US/_NF/prototypes/entities/shuttles/thrusters.ftl +++ /dev/null @@ -1,5 +0,0 @@ -ent-SmallThruster = small thruster - .desc = { ent-BaseThruster.desc } - -ent-SmallGyroscope = small gyroscope - .desc = { ent-Gyroscope.desc } diff --git a/Resources/Locale/en-US/_NF/reagents/foods.ftl b/Resources/Locale/en-US/_NF/reagents/foods.ftl index c4e85782ce8..5cb08e3134b 100644 --- a/Resources/Locale/en-US/_NF/reagents/foods.ftl +++ b/Resources/Locale/en-US/_NF/reagents/foods.ftl @@ -1 +1 @@ -reagent-name-flaverol = Flaverol \ No newline at end of file +reagent-name-flaverol = Flaverol diff --git a/Resources/Locale/en-US/_NF/shuttles/console.ftl b/Resources/Locale/en-US/_NF/shuttles/console.ftl index d22ff4d3bea..ec0a1d12a2a 100644 --- a/Resources/Locale/en-US/_NF/shuttles/console.ftl +++ b/Resources/Locale/en-US/_NF/shuttles/console.ftl @@ -1 +1,2 @@ -shuttle-console-designation = Designation: \ No newline at end of file +shuttle-console-designation = Designation: +shuttle-console-designation-unknown = Unknown diff --git a/Resources/Locale/en-US/_NF/species/species.ftl b/Resources/Locale/en-US/_NF/species/species.ftl index d0343e3239c..534b88ec465 100644 --- a/Resources/Locale/en-US/_NF/species/species.ftl +++ b/Resources/Locale/en-US/_NF/species/species.ftl @@ -1,3 +1,4 @@ ## Species Names species-name-vulpkanin = Vulpkanin +species-name-goblin = Goblin diff --git a/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl b/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl index bf625e0977f..6d65758abd7 100644 --- a/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/_NF/store/uplink-catalog.ftl @@ -136,3 +136,5 @@ uplink-security-stingergrenade-box-name = Stinger Grenade Box uplink-security-stingergrenade-box-desc = A box containing 4 stinger grenades. uplink-security-breachingcharge-box-name = Breaching Charge Box uplink-security-breachingcharge-box-desc = A box containing 4 breaching charges. +uplink-security-hoverbike-name = NFSD Hoverbike Flatpack +uplink-security-hoverbike-desc = Flatpack containing NFSD issued turbine with bike handles. Keys already slotted in the ignition. Very safe. \ No newline at end of file diff --git a/Resources/Locale/en-US/_NF/traits/traits.ftl b/Resources/Locale/en-US/_NF/traits/traits.ftl index 5e645760129..569153d67fc 100644 --- a/Resources/Locale/en-US/_NF/traits/traits.ftl +++ b/Resources/Locale/en-US/_NF/traits/traits.ftl @@ -5,3 +5,6 @@ trait-stinky-examined = [color=lightblue]{CAPITALIZE(SUBJECT($target))} smells f trait-stinky-in-range-others = {$target} smells foul! trait-stinky-in-range-self = Something smells foul! + +trait-goblin-accent-name = Goblin Cant +trait-goblin-accent-desc = You speak in secret language many find annoying and not that secretive. \ No newline at end of file diff --git a/Resources/Locale/en-US/markings/goblin_markings.ftl b/Resources/Locale/en-US/markings/goblin_markings.ftl new file mode 100644 index 00000000000..3f5c96da32b --- /dev/null +++ b/Resources/Locale/en-US/markings/goblin_markings.ftl @@ -0,0 +1,15 @@ +# goblin ears +marking-GoblinEarsBasic = Basic Ears +marking-GoblinEarsBasicAlt = Basic Ears (Alt) +marking-GoblinEarsLong01 = Long Ears (tips down) +marking-GoblinEarsLong02 = Long Ears (tips up) + +# goblin noses +marking-GoblinNoseBasic = Basic Nose +marking-GoblinNoseLong = Long Nose +marking-GoblinNoseCrooked = Crooked Nose + +# goblin tusks +marking-GoblinTusksBasic = No Tusks +marking-GoblinTusksSmall = Small Tusks +marking-GoblinTusksBig = Long Tusks diff --git a/Resources/Maps/_NF/Outpost/frontier.yml b/Resources/Maps/_NF/Outpost/frontier.yml index 47262925f9f..5e0fa8b70ab 100644 --- a/Resources/Maps/_NF/Outpost/frontier.yml +++ b/Resources/Maps/_NF/Outpost/frontier.yml @@ -192,39 +192,39 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 2085: 3,40 - 2086: 4,40 + 2075: 3,40 + 2076: 4,40 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Arrows decals: - 2087: 3,37 - 2088: 4,37 + 2077: 3,37 + 2078: 4,37 - node: color: '#334E6DC8' id: ArrowsGreyscale decals: - 2010: 0,9 - 2011: 0,9 - 2012: 0,9 - 2013: 0,9 - 2045: -2,9 - 2046: -2,9 - 2047: -2,9 - 2048: -2,9 - 2049: -2,9 + 2000: 0,9 + 2001: 0,9 + 2002: 0,9 + 2003: 0,9 + 2035: -2,9 + 2036: -2,9 + 2037: -2,9 + 2038: -2,9 + 2039: -2,9 - node: angle: 3.141592653589793 rad color: '#334E6DC8' id: ArrowsGreyscale decals: - 2004: -2,12 - 2005: -2,12 - 2006: -2,12 - 2007: 0,12 - 2008: 0,12 - 2009: 0,12 + 1994: -2,12 + 1995: -2,12 + 1996: -2,12 + 1997: 0,12 + 1998: 0,12 + 1999: 0,12 - node: color: '#52B4E9FF' id: ArrowsGreyscale @@ -238,48 +238,52 @@ entities: color: '#52B4F3AD' id: ArrowsGreyscale decals: - 1555: 23,21 - 1556: 23,21 - 1557: 23,21 - 1558: 23,21 - 1559: 23,21 - 1560: 23,21 - 1561: 23,21 - 1562: 23,21 - 1563: 23,21 - 1564: 23,21 - 1567: 21,21 - 1568: 21,21 - 1569: 21,21 - 1570: 21,21 + 1545: 23,21 + 1546: 23,21 + 1547: 23,21 + 1548: 23,21 + 1549: 23,21 + 1550: 23,21 + 1551: 23,21 + 1552: 23,21 + 1553: 23,21 + 1554: 23,21 + 1557: 21,21 + 1558: 21,21 + 1559: 21,21 + 1560: 21,21 - node: zIndex: 180 angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Bot decals: - 2113: -1,45 - 2114: -1,44 - 2115: -1,43 - 2116: 5,43 - 2117: 5,44 - 2118: 5,45 - 2119: 2,48 + 2103: -1,45 + 2104: -1,44 + 2105: -1,43 + 2106: 5,43 + 2107: 5,44 + 2108: 5,45 + 2109: 2,48 + - node: + color: '#2E9935FF' + id: BotLeftGreyscale + decals: + 2777: 8,25 + 2778: 7,25 + 2779: 6,25 + 2780: 5,25 + 2781: 4,25 - node: color: '#52B4E996' id: BotLeftGreyscale decals: - 2480: 26,20 + 2470: 26,20 - node: color: '#52B4E9AE' id: BotLeftGreyscale decals: - 1503: 4,25 - 1504: 5,25 - 1505: 6,25 - 1506: 8,25 - 1553: 7,25 - 1554: 24,20 + 1544: 24,20 - node: color: '#52B4E9FF' id: BotLeftGreyscale @@ -307,120 +311,120 @@ entities: 332: 3,14 333: 3,12 334: 3,10 - 2452: -5,10 - 2453: -5,12 - 2454: -5,14 - 2455: -5,17 + 2442: -5,10 + 2443: -5,12 + 2444: -5,14 + 2445: -5,17 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 1349: -5,17 - 1350: -5,14 - 1351: -5,12 - 1352: -5,10 + 1348: -5,17 + 1349: -5,14 + 1350: -5,12 + 1351: -5,10 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: 335: -4,28 - 1993: 1,9 - 2489: 22,12 + 1983: 1,9 + 2479: 22,12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: 338: -6,28 - 2042: -3,9 - 2492: 19,12 + 2032: -3,9 + 2482: 19,12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: 337: -4,26 345: 22,9 - 1354: 1,12 + 1353: 1,12 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: 336: -6,26 346: 19,9 - 1353: -3,12 + 1352: -3,12 - node: color: '#FFFFFF81' id: BrickTileDarkInnerNe decals: - 1969: -3,12 - 1970: -3,12 - 1979: -1,12 - 1980: -1,12 + 1959: -3,12 + 1960: -3,12 + 1969: -1,12 + 1970: -1,12 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: 160: 4,14 283: 11,12 - 1995: 0,9 + 1985: 0,9 - node: color: '#FFFFFF81' id: BrickTileDarkInnerNw decals: - 1973: -1,12 - 1974: -1,12 - 1981: 1,12 - 1982: 1,12 + 1963: -1,12 + 1964: -1,12 + 1971: 1,12 + 1972: 1,12 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: 284: 16,12 - 2044: -2,9 + 2034: -2,9 - node: color: '#FFFFFF81' id: BrickTileDarkInnerSe decals: - 2030: -1,9 - 2031: -1,9 - 2032: -3,9 - 2033: -3,9 + 2020: -1,9 + 2021: -1,9 + 2022: -3,9 + 2023: -3,9 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: 159: 4,17 - 1358: 0,12 + 1357: 0,12 - node: color: '#FFFFFF81' id: BrickTileDarkInnerSw decals: - 2000: 1,9 - 2001: 1,9 - 2036: -1,9 - 2037: -1,9 + 1990: 1,9 + 1991: 1,9 + 2026: -1,9 + 2027: -1,9 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 1357: -2,12 + 1356: -2,12 - node: color: '#52B4E996' id: BrickTileDarkLineE decals: - 2460: -48,2 + 2450: -48,2 - node: color: '#FFFFFF81' id: BrickTileDarkLineE decals: - 1967: -3,13 - 1968: -3,13 - 1977: -1,13 - 1978: -1,13 - 2024: -3,8 - 2025: -3,8 - 2026: -1,8 - 2027: -1,8 + 1957: -3,13 + 1958: -3,13 + 1967: -1,13 + 1968: -1,13 + 2014: -3,8 + 2015: -3,8 + 2016: -1,8 + 2017: -1,8 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -430,28 +434,28 @@ entities: 287: 11,13 288: 11,14 341: -4,27 - 1355: 1,13 - 1994: 1,8 - 2017: -3,11 - 2018: -3,10 - 2458: -48,2 - 2459: -48,1 - 2487: 22,10 - 2488: 22,11 + 1354: 1,13 + 1984: 1,8 + 2007: -3,11 + 2008: -3,10 + 2448: -48,2 + 2449: -48,1 + 2477: 22,10 + 2478: 22,11 - node: color: '#FFFFFF81' id: BrickTileDarkLineN decals: - 1971: -2,12 - 1972: -2,12 - 1985: 0,12 - 1986: 0,12 - 1996: 0,9 - 1997: 0,9 - 2038: -1,9 - 2039: -1,9 - 2040: -2,9 - 2041: -2,9 + 1961: -2,12 + 1962: -2,12 + 1975: 0,12 + 1976: 0,12 + 1986: 0,9 + 1987: 0,9 + 2028: -1,9 + 2029: -1,9 + 2030: -2,9 + 2031: -2,9 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -472,22 +476,22 @@ entities: 282: 15,12 313: 7,16 339: -5,28 - 2490: 21,12 - 2491: 20,12 + 2480: 21,12 + 2481: 20,12 - node: color: '#FFFFFF81' id: BrickTileDarkLineS decals: - 1987: -2,12 - 1988: -2,12 - 1989: 0,12 - 1990: 0,12 - 1991: -1,12 - 1992: -1,12 - 2002: 0,9 - 2003: 0,9 - 2034: -2,9 - 2035: -2,9 + 1977: -2,12 + 1978: -2,12 + 1979: 0,12 + 1980: 0,12 + 1981: -1,12 + 1982: -1,12 + 1992: 0,9 + 1993: 0,9 + 2024: -2,9 + 2025: -2,9 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -511,14 +515,14 @@ entities: color: '#FFFFFF81' id: BrickTileDarkLineW decals: - 1975: -1,13 - 1976: -1,13 - 1983: 1,13 - 1984: 1,13 - 1998: 1,8 - 1999: 1,8 - 2028: -1,8 - 2029: -1,8 + 1965: -1,13 + 1966: -1,13 + 1973: 1,13 + 1974: 1,13 + 1988: 1,8 + 1989: 1,8 + 2018: -1,8 + 2019: -1,8 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -532,12 +536,12 @@ entities: 285: 16,13 286: 16,14 342: -6,27 - 1356: -3,13 - 2015: 1,11 - 2016: 1,10 - 2043: -3,8 - 2493: 19,11 - 2494: 19,10 + 1355: -3,13 + 2005: 1,11 + 2006: 1,10 + 2033: -3,8 + 2483: 19,11 + 2484: 19,10 - node: color: '#52B4E9FF' id: BrickTileSteelCornerNe @@ -547,23 +551,23 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 2630: 32,18 + 2620: 32,18 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 2607: 27,18 + 2597: 27,18 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 2643: 32,15 + 2633: 32,15 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 2608: 27,16 - 2644: 31,15 + 2598: 27,16 + 2634: 31,15 - node: color: '#FFFFFFFF' id: BrickTileSteelEndN @@ -573,19 +577,19 @@ entities: 383: 19,21 384: 25,21 385: 27,21 - 1565: 23,21 - 1566: 21,21 + 1555: 23,21 + 1556: 21,21 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 2645: 31,16 + 2635: 31,16 - node: color: '#52B4E996' id: BrickTileSteelLineE decals: - 2461: -48,2 - 2462: -48,1 + 2451: -48,2 + 2452: -48,1 - node: color: '#52B4E9FF' id: BrickTileSteelLineE @@ -599,10 +603,10 @@ entities: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 2022: 0,11 - 2023: 0,10 - 2631: 32,17 - 2642: 32,16 + 2012: 0,11 + 2013: 0,10 + 2621: 32,17 + 2632: 32,16 - node: color: '#52B4E9FF' id: BrickTileSteelLineN @@ -622,29 +626,29 @@ entities: color: '#FF5C5CFF' id: BrickTileSteelLineN decals: - 2699: 37,20 - 2700: 36,20 + 2655: 37,20 + 2656: 36,20 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 2610: 28,18 - 2611: 29,18 - 2612: 30,18 - 2632: 31,18 + 2600: 28,18 + 2601: 29,18 + 2602: 30,18 + 2622: 31,18 - node: color: '#FF5C5CFF' id: BrickTileSteelLineS decals: - 2701: 37,20 - 2702: 36,20 + 2657: 37,20 + 2658: 36,20 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 2613: 28,16 - 2614: 29,16 - 2615: 30,16 + 2603: 28,16 + 2604: 29,16 + 2605: 30,16 - node: color: '#52B4E9FF' id: BrickTileSteelLineW @@ -663,43 +667,42 @@ entities: id: BrickTileSteelLineW decals: 155: -3,42 - 2014: -2,10 - 2021: -2,11 - 2609: 27,17 + 2004: -2,10 + 2011: -2,11 + 2599: 27,17 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: 189: -48,18 686: -44,11 - 2675: 5,23 + 2794: 5,23 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: 187: -50,18 684: -46,11 - 2679: 3,23 + 2795: 3,23 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: 186: -48,17 679: -44,8 - 2676: 5,20 - 2678: 5,20 + 2802: 5,20 - node: color: '#A4610696' id: BrickTileWhiteCornerSw decals: - 2077: -3,36 + 2067: -3,36 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: 188: -50,17 681: -46,8 - 2677: 3,20 + 2803: 3,20 - node: color: '#52DFC4DB' id: BrickTileWhiteInnerNe @@ -746,20 +749,20 @@ entities: color: '#A4610696' id: BrickTileWhiteLineE decals: - 2090: 8,52 - 2091: 8,51 - 2092: 8,50 - 2093: 8,49 - 2094: 8,48 - 2095: 8,47 - 2096: 8,46 - 2097: 8,45 - 2098: 8,44 - 2099: 8,43 - 2100: 8,42 - 2101: 8,41 - 2102: 8,56 - 2103: 8,57 + 2080: 8,52 + 2081: 8,51 + 2082: 8,50 + 2083: 8,49 + 2084: 8,48 + 2085: 8,47 + 2086: 8,46 + 2087: 8,45 + 2088: 8,44 + 2089: 8,43 + 2090: 8,42 + 2091: 8,41 + 2092: 8,56 + 2093: 8,57 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -775,8 +778,8 @@ entities: decals: 687: -44,10 688: -44,9 - 2684: 5,21 - 2685: 5,22 + 2797: 5,22 + 2798: 5,21 - node: color: '#9FED5896' id: BrickTileWhiteLineN @@ -822,7 +825,7 @@ entities: decals: 191: -49,18 685: -45,11 - 2681: 4,23 + 2796: 4,23 - node: color: '#52B4E996' id: BrickTileWhiteLineS @@ -843,13 +846,13 @@ entities: color: '#A4610696' id: BrickTileWhiteLineS decals: - 2078: -2,36 - 2079: -1,36 - 2080: 0,36 - 2081: 1,36 - 2082: 2,36 - 2083: 3,36 - 2084: 4,36 + 2068: -2,36 + 2069: -1,36 + 2070: 0,36 + 2071: 1,36 + 2072: 2,36 + 2073: 3,36 + 2074: 4,36 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS @@ -873,7 +876,7 @@ entities: decals: 190: -49,17 680: -45,8 - 2680: 4,20 + 2801: 4,20 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -891,18 +894,18 @@ entities: id: BrickTileWhiteLineW decals: 156: -3,42 - 2072: -3,41 - 2073: -3,40 - 2074: -3,39 - 2075: -3,38 - 2076: -3,37 + 2062: -3,41 + 2063: -3,40 + 2064: -3,39 + 2065: -3,38 + 2066: -3,37 - node: zIndex: 180 color: '#A4610696' id: BrickTileWhiteLineW decals: - 2104: -3,47 - 2105: -3,46 + 2094: -3,47 + 2095: -3,46 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW @@ -921,8 +924,8 @@ entities: decals: 682: -46,9 683: -46,10 - 2682: 3,21 - 2683: 3,22 + 2799: 3,21 + 2800: 3,22 - node: color: '#9FED580F' id: CheckerNESW @@ -959,8 +962,8 @@ entities: color: '#FFFFFFFF' id: Delivery decals: - 2120: 1,48 - 2121: 3,48 + 2110: 1,48 + 2111: 3,48 - node: cleanable: True color: '#A4610696' @@ -1111,45 +1114,45 @@ entities: 537: -50,18 538: -48,18 539: -48,18 - 2408: 5,3 - 2409: 6,3 - 2410: 9,3 - 2411: 8,2 - 2412: 10,3 - 2413: 9,2 - 2414: 8,3 - 2415: 7,3 - 2416: 6,3 - 2417: 7,4 - 2418: 8,4 - 2419: 11,3 - 2420: 5,3 - 2421: -13,3 - 2422: -13,3 - 2423: -12,3 - 2424: -11,3 - 2425: -11,3 - 2426: -11,4 - 2427: -10,2 - 2428: -9,2 - 2429: -9,3 - 2430: -10,3 - 2431: -8,3 - 2432: -7,3 - 2433: -8,3 + 2398: 5,3 + 2399: 6,3 + 2400: 9,3 + 2401: 8,2 + 2402: 10,3 + 2403: 9,2 + 2404: 8,3 + 2405: 7,3 + 2406: 6,3 + 2407: 7,4 + 2408: 8,4 + 2409: 11,3 + 2410: 5,3 + 2411: -13,3 + 2412: -13,3 + 2413: -12,3 + 2414: -11,3 + 2415: -11,3 + 2416: -11,4 + 2417: -10,2 + 2418: -9,2 + 2419: -9,3 + 2420: -10,3 + 2421: -8,3 + 2422: -7,3 + 2423: -8,3 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 2538: 35,7 - 2717: 43,18 + 2528: 35,7 + 2673: 43,18 - node: color: '#FFFFFFFF' id: DirtHeavy decals: 571: -60,3 - 2020: -3,10 + 2010: -3,10 - node: cleanable: True color: '#FFFFFFFF' @@ -1350,310 +1353,310 @@ entities: 1314: 1,21 1331: -1,26 1332: -1,25 - 1344: -19,11 - 1381: -2,15 - 1382: -2,16 + 1343: -19,11 + 1380: -2,15 + 1381: -2,16 + 1382: -2,17 1383: -2,17 1384: -2,17 - 1385: -2,17 - 1386: 0,18 + 1385: 0,18 + 1394: -2,18 1395: -2,18 - 1396: -2,18 + 1402: -3,18 1403: -3,18 - 1404: -3,18 - 1424: -4,15 - 1425: -4,14 - 1432: -4,12 + 1423: -4,15 + 1424: -4,14 + 1431: -4,12 + 1432: -6,11 1433: -6,11 1434: -6,11 - 1435: -6,11 + 1455: -5,8 1456: -5,8 1457: -5,8 - 1458: -5,8 - 1459: 2,10 - 1460: 2,9 - 1461: 3,8 - 1507: 3,28 - 1508: 4,26 - 1509: 8,28 - 1510: 6,28 - 1511: 9,26 - 1512: 10,26 - 1513: 10,24 - 1514: 10,23 - 1515: 11,24 - 1516: 11,25 - 1517: 11,28 - 1552: 11,26 - 1571: 12,26 - 1572: 13,26 - 1573: 13,24 - 1574: 13,22 - 1575: 16,23 - 1576: 14,21 - 1577: 13,20 - 1578: 14,20 - 1579: 15,23 - 1580: 18,25 - 1581: 15,26 - 1582: 14,26 - 1583: 16,25 - 1584: 17,22 - 1585: 18,25 - 1586: 19,25 - 1587: 17,25 - 1588: 18,22 - 1589: 19,23 - 1590: 22,22 - 1591: 18,23 - 1592: 19,25 - 1593: 17,24 - 1594: 19,23 - 1595: 23,25 - 1596: 21,26 - 1597: 20,25 - 1598: 23,21 - 1599: 21,22 - 1600: 25,22 - 1601: 25,24 - 1602: 25,23 - 1603: 25,25 - 1604: 24,25 - 1605: 28,24 - 1606: 30,23 - 1607: 26,24 - 1608: 27,25 - 1609: 27,24 - 1610: 27,23 - 1611: 29,22 - 1612: 30,22 - 1613: 30,21 - 1614: 29,20 - 1615: 29,20 - 1616: 30,19 - 1617: 33,25 - 1618: 33,25 - 1619: 31,26 - 1743: 16,21 - 1744: 24,21 - 1745: 24,21 - 1746: 30,19 - 1758: 36,26 - 1759: 37,24 - 1760: 37,24 - 1788: 48,24 - 1789: 47,24 - 1790: 47,23 - 1791: 48,23 - 1792: 49,23 - 1793: 52,24 - 1794: 51,25 - 1795: 50,26 - 1796: 49,25 - 1797: 51,25 - 1798: 52,26 - 1799: 52,26 - 1800: 50,26 - 1801: 53,26 - 1802: 53,26 - 1803: 54,26 - 1856: 53,24 - 1888: 14,15 - 1889: 12,16 - 1890: 11,16 - 1891: 10,15 - 1892: 12,15 - 1893: 14,15 - 1894: 15,16 - 1895: 16,16 - 1896: 16,15 - 1897: 16,14 - 1898: 16,13 - 1899: 17,14 - 1900: 16,13 - 1901: 16,11 - 1902: 15,10 - 1903: 15,10 - 1904: 15,12 - 1905: 15,12 - 1906: 15,11 - 1907: 16,10 - 1908: 17,11 - 1909: 17,11 - 1910: 16,12 - 1911: 13,12 - 1912: 13,12 - 1945: -3,33 - 1946: -2,33 - 1947: -2,32 - 1948: -2,32 - 1949: -1,31 - 1950: 0,31 - 1951: 0,31 - 2390: 7,2 - 2391: 6,4 - 2392: 4,3 - 2393: 5,4 - 2394: 11,3 - 2395: 10,2 - 2434: -8,4 - 2435: -7,4 - 2464: -50,3 - 2465: -50,3 - 2466: -53,6 - 2467: -52,6 - 2520: 36,23 - 2521: 37,21 - 2522: 36,20 - 2529: 40,17 - 2530: 41,16 - 2531: 40,16 - 2532: 43,16 - 2533: 44,16 - 2534: 45,17 - 2535: 44,17 - 2536: 44,16 - 2539: 36,9 - 2545: 45,7 - 2546: 44,9 - 2547: 45,8 - 2548: 46,9 - 2549: 47,8 - 2550: 42,9 - 2551: 43,8 - 2552: 47,10 - 2553: 48,8 - 2554: 26,9 - 2562: 34,21 - 2563: 34,22 - 2564: 32,23 - 2565: 34,23 - 2566: 40,23 - 2567: 39,23 - 2568: 40,22 - 2569: 45,22 - 2570: 47,22 - 2571: 41,22 - 2572: 42,22 - 2573: 49,22 - 2574: 52,22 - 2575: 53,23 - 2576: 52,23 - 2577: 43,6 - 2578: 46,6 - 2579: 46,6 - 2580: 48,6 - 2581: 47,6 - 2582: 42,6 - 2583: 50,3 - 2584: 51,3 - 2585: 53,3 - 2586: 54,3 - 2587: 56,3 - 2588: 57,3 - 2589: 46,4 - 2590: 47,3 - 2591: 45,6 - 2592: 20,22 - 2616: 27,18 - 2617: 28,18 - 2618: 29,18 - 2619: 29,17 - 2620: 28,16 - 2621: 30,16 - 2622: 30,18 - 2648: 32,16 - 2649: 31,16 - 2650: 28,18 - 2651: 28,18 - 2718: 43,17 - 2719: 38,17 - 2738: 38,5 - 2739: 40,5 - 2775: 45,15 - 2776: 42,15 - 2777: 41,15 - 2778: 44,15 - 2779: 43,15 - 2780: 45,15 - 2781: 45,16 - 2782: 37,17 - 2783: 36,18 - 2784: 37,18 + 1458: 2,10 + 1459: 2,9 + 1460: 3,8 + 1502: 3,28 + 1503: 4,26 + 1504: 8,28 + 1505: 6,28 + 1506: 9,26 + 1507: 10,26 + 1508: 10,24 + 1509: 10,23 + 1510: 11,24 + 1511: 11,25 + 1512: 11,28 + 1543: 11,26 + 1561: 12,26 + 1562: 13,26 + 1563: 13,24 + 1564: 13,22 + 1565: 16,23 + 1566: 14,21 + 1567: 13,20 + 1568: 14,20 + 1569: 15,23 + 1570: 18,25 + 1571: 15,26 + 1572: 14,26 + 1573: 16,25 + 1574: 17,22 + 1575: 18,25 + 1576: 19,25 + 1577: 17,25 + 1578: 18,22 + 1579: 19,23 + 1580: 22,22 + 1581: 18,23 + 1582: 19,25 + 1583: 17,24 + 1584: 19,23 + 1585: 23,25 + 1586: 21,26 + 1587: 20,25 + 1588: 23,21 + 1589: 21,22 + 1590: 25,22 + 1591: 25,24 + 1592: 25,23 + 1593: 25,25 + 1594: 24,25 + 1595: 28,24 + 1596: 30,23 + 1597: 26,24 + 1598: 27,25 + 1599: 27,24 + 1600: 27,23 + 1601: 29,22 + 1602: 30,22 + 1603: 30,21 + 1604: 29,20 + 1605: 29,20 + 1606: 30,19 + 1607: 33,25 + 1608: 33,25 + 1609: 31,26 + 1733: 16,21 + 1734: 24,21 + 1735: 24,21 + 1736: 30,19 + 1748: 36,26 + 1749: 37,24 + 1750: 37,24 + 1778: 48,24 + 1779: 47,24 + 1780: 47,23 + 1781: 48,23 + 1782: 49,23 + 1783: 52,24 + 1784: 51,25 + 1785: 50,26 + 1786: 49,25 + 1787: 51,25 + 1788: 52,26 + 1789: 52,26 + 1790: 50,26 + 1791: 53,26 + 1792: 53,26 + 1793: 54,26 + 1846: 53,24 + 1878: 14,15 + 1879: 12,16 + 1880: 11,16 + 1881: 10,15 + 1882: 12,15 + 1883: 14,15 + 1884: 15,16 + 1885: 16,16 + 1886: 16,15 + 1887: 16,14 + 1888: 16,13 + 1889: 17,14 + 1890: 16,13 + 1891: 16,11 + 1892: 15,10 + 1893: 15,10 + 1894: 15,12 + 1895: 15,12 + 1896: 15,11 + 1897: 16,10 + 1898: 17,11 + 1899: 17,11 + 1900: 16,12 + 1901: 13,12 + 1902: 13,12 + 1935: -3,33 + 1936: -2,33 + 1937: -2,32 + 1938: -2,32 + 1939: -1,31 + 1940: 0,31 + 1941: 0,31 + 2380: 7,2 + 2381: 6,4 + 2382: 4,3 + 2383: 5,4 + 2384: 11,3 + 2385: 10,2 + 2424: -8,4 + 2425: -7,4 + 2454: -50,3 + 2455: -50,3 + 2456: -53,6 + 2457: -52,6 + 2510: 36,23 + 2511: 37,21 + 2512: 36,20 + 2519: 40,17 + 2520: 41,16 + 2521: 40,16 + 2522: 43,16 + 2523: 44,16 + 2524: 45,17 + 2525: 44,17 + 2526: 44,16 + 2529: 36,9 + 2535: 45,7 + 2536: 44,9 + 2537: 45,8 + 2538: 46,9 + 2539: 47,8 + 2540: 42,9 + 2541: 43,8 + 2542: 47,10 + 2543: 48,8 + 2544: 26,9 + 2552: 34,21 + 2553: 34,22 + 2554: 32,23 + 2555: 34,23 + 2556: 40,23 + 2557: 39,23 + 2558: 40,22 + 2559: 45,22 + 2560: 47,22 + 2561: 41,22 + 2562: 42,22 + 2563: 49,22 + 2564: 52,22 + 2565: 53,23 + 2566: 52,23 + 2567: 43,6 + 2568: 46,6 + 2569: 46,6 + 2570: 48,6 + 2571: 47,6 + 2572: 42,6 + 2573: 50,3 + 2574: 51,3 + 2575: 53,3 + 2576: 54,3 + 2577: 56,3 + 2578: 57,3 + 2579: 46,4 + 2580: 47,3 + 2581: 45,6 + 2582: 20,22 + 2606: 27,18 + 2607: 28,18 + 2608: 29,18 + 2609: 29,17 + 2610: 28,16 + 2611: 30,16 + 2612: 30,18 + 2638: 32,16 + 2639: 31,16 + 2640: 28,18 + 2641: 28,18 + 2674: 43,17 + 2675: 38,17 + 2694: 38,5 + 2695: 40,5 + 2731: 45,15 + 2732: 42,15 + 2733: 41,15 + 2734: 44,15 + 2735: 43,15 + 2736: 45,15 + 2737: 45,16 + 2738: 37,17 + 2739: 36,18 + 2740: 37,18 - node: cleanable: True zIndex: 180 color: '#FFFFFFFF' id: DirtHeavy decals: - 2203: 5,48 - 2204: 5,49 - 2205: 4,49 - 2206: 5,51 - 2207: 5,53 - 2208: 5,54 - 2209: 5,55 - 2210: 6,55 - 2211: 7,57 - 2212: 6,54 - 2213: 6,54 - 2214: 8,55 - 2215: 7,50 - 2216: 8,50 - 2217: 3,50 - 2218: 2,47 - 2219: -2,45 - 2220: 4,47 - 2221: 8,45 - 2222: 7,46 - 2223: 7,43 - 2224: 8,42 - 2225: 4,41 - 2226: 2,39 - 2227: 0,39 - 2228: -1,39 - 2229: -1,38 - 2277: 8,51 - 2291: 10,53 - 2292: 10,53 - 2293: 11,55 - 2294: 11,55 - 2295: -6,44 - 2296: -6,45 - 2297: -5,44 - 2298: -6,43 - 2299: -5,43 - 2300: -5,43 - 2301: 0,40 - 2302: 4,40 - 2303: -34,8 - 2304: -33,7 - 2305: -32,8 - 2306: -33,10 - 2307: -33,10 - 2308: -34,10 - 2309: -32,11 - 2310: -36,12 - 2311: -35,11 - 2312: -39,11 - 2313: -40,12 - 2340: -53,18 - 2341: -53,16 - 2342: -52,15 - 2343: -52,14 - 2344: -51,15 - 2361: -49,5 - 2362: -49,5 - 2363: -56,2 - 2364: -46,4 - 2365: -42,3 - 2366: -42,3 + 2193: 5,48 + 2194: 5,49 + 2195: 4,49 + 2196: 5,51 + 2197: 5,53 + 2198: 5,54 + 2199: 5,55 + 2200: 6,55 + 2201: 7,57 + 2202: 6,54 + 2203: 6,54 + 2204: 8,55 + 2205: 7,50 + 2206: 8,50 + 2207: 3,50 + 2208: 2,47 + 2209: -2,45 + 2210: 4,47 + 2211: 8,45 + 2212: 7,46 + 2213: 7,43 + 2214: 8,42 + 2215: 4,41 + 2216: 2,39 + 2217: 0,39 + 2218: -1,39 + 2219: -1,38 + 2267: 8,51 + 2281: 10,53 + 2282: 10,53 + 2283: 11,55 + 2284: 11,55 + 2285: -6,44 + 2286: -6,45 + 2287: -5,44 + 2288: -6,43 + 2289: -5,43 + 2290: -5,43 + 2291: 0,40 + 2292: 4,40 + 2293: -34,8 + 2294: -33,7 + 2295: -32,8 + 2296: -33,10 + 2297: -33,10 + 2298: -34,10 + 2299: -32,11 + 2300: -36,12 + 2301: -35,11 + 2302: -39,11 + 2303: -40,12 + 2330: -53,18 + 2331: -53,16 + 2332: -52,15 + 2333: -52,14 + 2334: -51,15 + 2351: -49,5 + 2352: -49,5 + 2353: -56,2 + 2354: -46,4 + 2355: -42,3 + 2356: -42,3 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: 654: -46,7 - 2019: -3,11 + 2009: -3,11 - node: cleanable: True color: '#FFFFFFFF' @@ -1758,364 +1761,367 @@ entities: 1177: 32,1 1178: 33,1 1335: -1,21 - 1336: 0,21 - 1337: 0,25 + 1336: 0,25 + 1337: 0,27 1338: 0,27 - 1339: 0,27 - 1340: -1,28 - 1341: 1,26 - 1342: -2,22 - 1343: -1,22 - 1348: -18,11 - 1387: -1,18 - 1388: 0,17 - 1397: -1,18 - 1398: -1,17 + 1339: -1,28 + 1340: 1,26 + 1341: -2,22 + 1342: -1,22 + 1347: -18,11 + 1386: -1,18 + 1387: 0,17 + 1396: -1,18 + 1397: -1,17 + 1404: -3,16 1405: -3,16 1406: -3,16 - 1407: -3,16 + 1407: -4,17 1408: -4,17 - 1409: -4,17 + 1409: -4,18 1410: -4,18 - 1411: -4,18 - 1417: -5,17 - 1418: -4,16 - 1426: -6,14 - 1427: -6,13 - 1428: -6,15 - 1429: -5,16 + 1416: -5,17 + 1417: -4,16 + 1425: -6,14 + 1426: -6,13 + 1427: -6,15 + 1428: -5,16 + 1429: -4,11 1430: -4,11 - 1431: -4,11 - 1443: -4,9 + 1442: -4,9 + 1443: -6,10 1444: -6,10 - 1445: -6,10 - 1446: -3,11 + 1445: -3,11 + 1446: -6,13 1447: -6,13 - 1448: -6,13 - 1462: 4,9 - 1463: 3,12 + 1461: 4,9 + 1462: 3,12 + 1463: 3,13 1464: 3,13 - 1465: 3,13 + 1465: 2,12 1466: 2,12 - 1467: 2,12 - 1468: 3,11 - 1469: 3,10 - 1470: 3,14 + 1467: 3,11 + 1468: 3,10 + 1469: 3,14 + 1470: 3,17 1471: 3,17 - 1472: 3,17 - 1518: 3,28 - 1519: 3,27 - 1520: 3,26 - 1521: 3,25 - 1522: 7,26 - 1523: 7,27 - 1524: 6,27 - 1544: 4,25 - 1545: 6,25 - 1546: 8,25 - 1547: 8,25 - 1620: 14,25 - 1621: 13,25 - 1622: 14,23 - 1623: 14,23 - 1624: 13,23 - 1625: 15,24 - 1626: 15,24 - 1627: 16,24 - 1628: 17,23 - 1629: 16,22 - 1630: 15,22 - 1631: 18,24 - 1632: 19,25 - 1633: 19,24 - 1634: 20,24 - 1635: 20,24 - 1636: 20,23 - 1637: 20,23 - 1638: 19,26 - 1639: 19,26 - 1640: 18,26 - 1641: 17,26 - 1642: 16,26 - 1643: 21,24 - 1644: 21,24 - 1645: 21,22 - 1646: 23,22 - 1647: 21,23 - 1648: 21,23 - 1649: 22,23 - 1650: 23,24 - 1651: 22,25 - 1652: 21,24 - 1653: 22,24 - 1654: 23,24 - 1655: 24,24 - 1656: 26,25 - 1657: 26,25 - 1658: 24,24 - 1659: 24,23 - 1660: 27,22 - 1661: 27,22 - 1662: 26,22 - 1663: 26,23 - 1664: 28,23 - 1665: 28,23 - 1666: 28,24 - 1667: 29,24 - 1668: 29,24 - 1669: 31,24 - 1670: 31,25 - 1671: 29,25 - 1672: 30,24 - 1673: 29,22 - 1674: 31,23 - 1675: 31,23 - 1676: 31,22 - 1677: 30,23 - 1678: 29,23 - 1679: 29,21 - 1680: 28,22 - 1681: 30,20 - 1682: 31,21 - 1683: 31,21 - 1684: 33,24 - 1685: 33,24 - 1686: 32,24 - 1687: 32,25 - 1688: 32,26 - 1747: 34,25 - 1748: 34,26 - 1761: 41,25 - 1762: 40,26 - 1763: 40,26 - 1764: 39,25 - 1765: 40,24 - 1766: 41,23 - 1767: 44,24 - 1768: 44,25 - 1769: 43,25 - 1770: 42,25 - 1771: 43,25 - 1772: 44,26 - 1773: 44,26 - 1774: 46,25 - 1775: 47,26 - 1776: 49,26 - 1777: 48,26 - 1778: 49,25 - 1779: 49,26 - 1780: 50,25 - 1781: 50,24 - 1782: 50,23 - 1783: 49,24 - 1784: 48,24 - 1785: 46,23 - 1786: 46,23 - 1787: 46,24 - 1850: 50,26 - 1851: 51,23 - 1852: 51,24 - 1853: 45,23 - 1854: 44,23 - 1855: 42,23 - 1858: 14,11 - 1859: 14,11 - 1860: 14,11 - 1861: 14,10 - 1862: 13,10 - 1863: 13,11 - 1864: 11,11 - 1865: 10,11 - 1866: 9,11 - 1867: 9,11 - 1868: 9,10 - 1869: 9,13 - 1870: 9,13 - 1871: 9,13 - 1872: 9,13 - 1873: 11,14 - 1874: 11,15 - 1875: 12,16 - 1876: 11,16 - 1877: 10,15 - 1878: 11,15 - 1879: 15,16 - 1880: 13,14 - 1881: 15,15 - 1882: 16,16 - 1883: 17,16 - 1884: 17,15 - 1885: 17,13 - 1886: 17,13 - 1887: 17,12 - 1913: 10,12 - 1914: 11,12 - 1915: 11,13 - 1916: 11,13 - 1917: 9,12 - 1918: 8,12 - 1919: 8,12 - 1920: 10,14 - 1952: -3,32 - 1953: -2,32 - 1954: -2,31 - 1955: -2,31 - 1956: 0,33 - 1957: 0,33 - 2052: -3,13 - 2053: -2,10 - 2054: -3,9 - 2055: -1,8 - 2056: -1,9 - 2057: 0,10 - 2061: -1,12 - 2062: -1,13 - 2063: -3,12 - 2064: 0,11 - 2065: 1,13 - 2066: 3,16 - 2067: 3,16 - 2068: 3,18 - 2069: 3,18 - 2070: 3,18 - 2071: 2,18 - 2396: 8,2 - 2397: 7,4 - 2398: 11,4 - 2399: 6,5 - 2436: -14,2 - 2437: -14,4 - 2438: -13,2 - 2634: 31,17 - 2635: 32,18 - 2646: 32,15 - 2647: 31,15 - 2720: 39,17 - 2721: 38,18 - 2722: 36,17 - 2735: 33,5 - 2736: 35,5 - 2737: 37,5 - 2785: 38,18 - 2786: 36,17 - 2787: 37,17 - 2788: 37,22 - 2789: 36,22 + 1513: 3,28 + 1514: 3,27 + 1515: 3,26 + 1516: 3,25 + 1517: 7,26 + 1518: 7,27 + 1519: 6,27 + 1610: 14,25 + 1611: 13,25 + 1612: 14,23 + 1613: 14,23 + 1614: 13,23 + 1615: 15,24 + 1616: 15,24 + 1617: 16,24 + 1618: 17,23 + 1619: 16,22 + 1620: 15,22 + 1621: 18,24 + 1622: 19,25 + 1623: 19,24 + 1624: 20,24 + 1625: 20,24 + 1626: 20,23 + 1627: 20,23 + 1628: 19,26 + 1629: 19,26 + 1630: 18,26 + 1631: 17,26 + 1632: 16,26 + 1633: 21,24 + 1634: 21,24 + 1635: 21,22 + 1636: 23,22 + 1637: 21,23 + 1638: 21,23 + 1639: 22,23 + 1640: 23,24 + 1641: 22,25 + 1642: 21,24 + 1643: 22,24 + 1644: 23,24 + 1645: 24,24 + 1646: 26,25 + 1647: 26,25 + 1648: 24,24 + 1649: 24,23 + 1650: 27,22 + 1651: 27,22 + 1652: 26,22 + 1653: 26,23 + 1654: 28,23 + 1655: 28,23 + 1656: 28,24 + 1657: 29,24 + 1658: 29,24 + 1659: 31,24 + 1660: 31,25 + 1661: 29,25 + 1662: 30,24 + 1663: 29,22 + 1664: 31,23 + 1665: 31,23 + 1666: 31,22 + 1667: 30,23 + 1668: 29,23 + 1669: 29,21 + 1670: 28,22 + 1671: 30,20 + 1672: 31,21 + 1673: 31,21 + 1674: 33,24 + 1675: 33,24 + 1676: 32,24 + 1677: 32,25 + 1678: 32,26 + 1737: 34,25 + 1738: 34,26 + 1751: 41,25 + 1752: 40,26 + 1753: 40,26 + 1754: 39,25 + 1755: 40,24 + 1756: 41,23 + 1757: 44,24 + 1758: 44,25 + 1759: 43,25 + 1760: 42,25 + 1761: 43,25 + 1762: 44,26 + 1763: 44,26 + 1764: 46,25 + 1765: 47,26 + 1766: 49,26 + 1767: 48,26 + 1768: 49,25 + 1769: 49,26 + 1770: 50,25 + 1771: 50,24 + 1772: 50,23 + 1773: 49,24 + 1774: 48,24 + 1775: 46,23 + 1776: 46,23 + 1777: 46,24 + 1840: 50,26 + 1841: 51,23 + 1842: 51,24 + 1843: 45,23 + 1844: 44,23 + 1845: 42,23 + 1848: 14,11 + 1849: 14,11 + 1850: 14,11 + 1851: 14,10 + 1852: 13,10 + 1853: 13,11 + 1854: 11,11 + 1855: 10,11 + 1856: 9,11 + 1857: 9,11 + 1858: 9,10 + 1859: 9,13 + 1860: 9,13 + 1861: 9,13 + 1862: 9,13 + 1863: 11,14 + 1864: 11,15 + 1865: 12,16 + 1866: 11,16 + 1867: 10,15 + 1868: 11,15 + 1869: 15,16 + 1870: 13,14 + 1871: 15,15 + 1872: 16,16 + 1873: 17,16 + 1874: 17,15 + 1875: 17,13 + 1876: 17,13 + 1877: 17,12 + 1903: 10,12 + 1904: 11,12 + 1905: 11,13 + 1906: 11,13 + 1907: 9,12 + 1908: 8,12 + 1909: 8,12 + 1910: 10,14 + 1942: -3,32 + 1943: -2,32 + 1944: -2,31 + 1945: -2,31 + 1946: 0,33 + 1947: 0,33 + 2042: -3,13 + 2043: -2,10 + 2044: -3,9 + 2045: -1,8 + 2046: -1,9 + 2047: 0,10 + 2051: -1,12 + 2052: -1,13 + 2053: -3,12 + 2054: 0,11 + 2055: 1,13 + 2056: 3,16 + 2057: 3,16 + 2058: 3,18 + 2059: 3,18 + 2060: 3,18 + 2061: 2,18 + 2386: 8,2 + 2387: 7,4 + 2388: 11,4 + 2389: 6,5 + 2426: -14,2 + 2427: -14,4 + 2428: -13,2 + 2624: 31,17 + 2625: 32,18 + 2636: 32,15 + 2637: 31,15 + 2676: 39,17 + 2677: 38,18 + 2678: 36,17 + 2691: 33,5 + 2692: 35,5 + 2693: 37,5 + 2741: 38,18 + 2742: 36,17 + 2743: 37,17 + 2744: 37,22 + 2745: 36,22 + 2804: 4,25 + 2805: 5,25 + 2806: 6,25 + 2807: 7,25 + 2808: 8,25 + 2809: 7,25 + 2810: 0,21 + 2811: 0,21 - node: cleanable: True zIndex: 180 color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2125: 6,57 - 2126: 5,57 - 2127: 5,56 - 2128: 5,54 - 2129: 7,54 - 2130: 7,54 - 2131: 6,54 - 2132: 6,53 - 2133: 5,53 - 2134: 7,53 - 2135: 8,51 - 2136: 8,49 - 2137: 7,48 - 2138: 7,50 - 2139: 7,50 - 2140: 5,50 - 2141: 4,48 - 2142: 5,47 - 2143: 4,50 - 2144: 2,50 - 2145: 2,50 - 2146: 1,51 - 2147: 1,51 - 2148: 0,50 - 2149: 1,49 - 2150: 0,48 - 2151: 1,48 - 2152: 0,47 - 2153: 0,47 - 2154: 0,47 - 2155: -1,47 - 2156: -1,46 - 2157: -2,47 - 2158: -2,47 - 2159: -2,46 - 2160: -2,45 - 2161: -3,45 - 2162: -3,44 - 2163: -3,44 - 2164: -1,44 - 2165: -1,44 - 2166: -3,43 - 2167: -2,43 - 2168: -1,43 - 2169: -1,42 - 2170: -2,42 - 2171: 0,41 - 2172: -1,41 - 2173: -2,40 - 2174: -2,40 - 2175: -3,40 - 2176: -3,39 - 2177: -2,38 - 2178: -3,38 - 2179: -2,38 - 2180: -3,37 - 2181: -3,36 - 2182: -2,36 - 2183: 0,36 - 2184: 0,38 - 2185: 1,38 - 2186: 3,38 - 2187: 1,40 - 2188: 3,41 - 2189: 5,41 - 2190: 2,41 - 2191: 3,36 - 2192: 4,36 - 2193: 4,37 - 2194: 6,41 - 2195: 7,41 - 2196: 7,42 - 2197: 8,43 - 2198: 8,43 - 2199: 7,45 - 2200: 7,47 - 2201: 8,47 - 2202: 5,48 - 2278: 6,52 - 2279: 5,52 - 2280: 6,51 - 2281: 6,51 - 2282: 1,41 - 2283: 1,41 - 2284: 11,53 - 2285: 11,53 - 2286: 11,53 - 2287: 10,55 - 2288: 10,55 - 2289: 10,54 - 2290: 11,54 - 2314: -40,11 - 2315: -41,12 - 2316: -38,12 - 2317: -37,11 - 2318: -36,11 - 2319: -36,11 - 2320: -35,12 - 2321: -32,12 - 2322: -29,12 - 2323: -28,12 - 2324: -27,12 - 2345: -53,15 - 2346: -51,14 - 2347: -51,14 - 2348: -53,12 - 2349: -53,12 - 2350: -53,13 - 2351: -52,12 + 2115: 6,57 + 2116: 5,57 + 2117: 5,56 + 2118: 5,54 + 2119: 7,54 + 2120: 7,54 + 2121: 6,54 + 2122: 6,53 + 2123: 5,53 + 2124: 7,53 + 2125: 8,51 + 2126: 8,49 + 2127: 7,48 + 2128: 7,50 + 2129: 7,50 + 2130: 5,50 + 2131: 4,48 + 2132: 5,47 + 2133: 4,50 + 2134: 2,50 + 2135: 2,50 + 2136: 1,51 + 2137: 1,51 + 2138: 0,50 + 2139: 1,49 + 2140: 0,48 + 2141: 1,48 + 2142: 0,47 + 2143: 0,47 + 2144: 0,47 + 2145: -1,47 + 2146: -1,46 + 2147: -2,47 + 2148: -2,47 + 2149: -2,46 + 2150: -2,45 + 2151: -3,45 + 2152: -3,44 + 2153: -3,44 + 2154: -1,44 + 2155: -1,44 + 2156: -3,43 + 2157: -2,43 + 2158: -1,43 + 2159: -1,42 + 2160: -2,42 + 2161: 0,41 + 2162: -1,41 + 2163: -2,40 + 2164: -2,40 + 2165: -3,40 + 2166: -3,39 + 2167: -2,38 + 2168: -3,38 + 2169: -2,38 + 2170: -3,37 + 2171: -3,36 + 2172: -2,36 + 2173: 0,36 + 2174: 0,38 + 2175: 1,38 + 2176: 3,38 + 2177: 1,40 + 2178: 3,41 + 2179: 5,41 + 2180: 2,41 + 2181: 3,36 + 2182: 4,36 + 2183: 4,37 + 2184: 6,41 + 2185: 7,41 + 2186: 7,42 + 2187: 8,43 + 2188: 8,43 + 2189: 7,45 + 2190: 7,47 + 2191: 8,47 + 2192: 5,48 + 2268: 6,52 + 2269: 5,52 + 2270: 6,51 + 2271: 6,51 + 2272: 1,41 + 2273: 1,41 + 2274: 11,53 + 2275: 11,53 + 2276: 11,53 + 2277: 10,55 + 2278: 10,55 + 2279: 10,54 + 2280: 11,54 + 2304: -40,11 + 2305: -41,12 + 2306: -38,12 + 2307: -37,11 + 2308: -36,11 + 2309: -36,11 + 2310: -35,12 + 2311: -32,12 + 2312: -29,12 + 2313: -28,12 + 2314: -27,12 + 2335: -53,15 + 2336: -51,14 + 2337: -51,14 + 2338: -53,12 + 2339: -53,12 + 2340: -53,13 + 2341: -52,12 - node: color: '#FFFFFFFF' id: DirtLight @@ -2355,309 +2361,309 @@ entities: 1328: -1,29 1329: 0,29 1330: 0,29 - 1375: -2,18 + 1374: -2,18 + 1375: -1,17 1376: -1,17 - 1377: -1,17 + 1377: -1,15 1378: -1,15 - 1379: -1,15 - 1380: 0,15 - 1389: -1,17 + 1379: 0,15 + 1388: -1,17 + 1389: 0,16 1390: 0,16 1391: 0,16 - 1392: 0,16 - 1393: -1,16 - 1394: -1,18 + 1392: -1,16 + 1393: -1,18 + 1398: -1,16 1399: -1,16 - 1400: -1,16 + 1400: -3,17 1401: -3,17 - 1402: -3,17 - 1436: -6,9 + 1435: -6,9 + 1436: -4,8 1437: -4,8 1438: -4,8 1439: -4,8 - 1440: -4,8 - 1449: -6,17 - 1450: -4,16 + 1448: -6,17 + 1449: -4,16 + 1450: -6,8 1451: -6,8 1452: -6,8 1453: -6,8 - 1454: -6,8 - 1455: -6,9 - 1473: 2,17 - 1474: 2,18 + 1454: -6,9 + 1472: 2,17 + 1473: 2,18 + 1474: 4,18 1475: 4,18 - 1476: 4,18 + 1476: 4,17 1477: 4,17 - 1478: 4,17 - 1479: 4,16 - 1480: 4,14 + 1478: 4,16 + 1479: 4,14 + 1480: 4,13 1481: 4,13 - 1482: 4,13 + 1482: 4,14 1483: 4,14 - 1484: 4,14 + 1484: 2,16 1485: 2,16 1486: 2,16 1487: 2,16 - 1488: 2,16 - 1489: 2,11 - 1490: 2,10 - 1491: 2,9 - 1492: 3,8 - 1493: 2,8 - 1525: 4,27 - 1526: 4,27 - 1527: 5,28 - 1528: 5,28 - 1529: 5,27 - 1530: 10,27 - 1531: 10,27 - 1532: 9,27 - 1533: 11,27 - 1534: 11,26 - 1550: 9,25 - 1551: 6,26 - 1689: 33,26 - 1690: 34,26 - 1691: 34,25 - 1692: 34,24 - 1693: 31,24 - 1694: 32,24 - 1695: 33,24 - 1696: 33,24 - 1697: 30,21 - 1698: 30,22 - 1699: 29,21 - 1700: 28,21 - 1701: 28,23 - 1702: 27,22 - 1703: 26,22 - 1704: 28,21 - 1705: 28,22 - 1706: 25,23 - 1707: 26,23 - 1708: 26,23 - 1709: 25,21 - 1710: 24,23 - 1711: 23,24 - 1712: 24,23 - 1713: 23,23 - 1714: 23,23 - 1715: 24,22 - 1716: 24,24 - 1717: 23,25 - 1718: 22,24 - 1719: 22,25 - 1720: 22,26 - 1721: 25,26 - 1722: 25,26 - 1723: 20,26 - 1724: 19,26 - 1725: 20,26 - 1726: 17,26 - 1727: 18,26 - 1728: 15,26 - 1729: 15,26 - 1730: 15,25 - 1731: 15,25 - 1732: 17,24 - 1733: 16,24 - 1734: 13,24 - 1735: 14,23 - 1736: 14,22 - 1737: 15,22 - 1738: 17,23 - 1739: 19,22 - 1740: 20,21 - 1741: 20,21 - 1742: 18,21 - 1749: 37,26 - 1750: 37,26 - 1751: 36,25 - 1752: 36,25 - 1753: 34,26 - 1754: 33,26 - 1755: 32,26 - 1756: 31,25 - 1757: 29,25 - 1821: 39,25 - 1822: 39,24 - 1823: 39,24 - 1824: 41,23 - 1825: 44,24 - 1826: 44,24 - 1827: 43,24 - 1828: 43,24 - 1829: 42,23 - 1830: 43,23 - 1831: 44,23 - 1832: 45,24 - 1833: 45,25 - 1834: 45,25 - 1835: 47,26 - 1836: 47,26 - 1837: 50,25 - 1838: 50,25 - 1839: 49,24 - 1840: 51,25 - 1841: 52,25 - 1842: 51,25 - 1843: 51,25 - 1844: 53,26 - 1845: 54,26 - 1846: 53,25 - 1847: 53,25 - 1848: 54,25 - 1849: 51,26 - 1857: 29,8 - 1921: 10,14 - 1922: 10,14 - 1923: 10,13 - 1924: 10,13 - 1925: 14,16 - 1926: 13,16 - 1927: 13,16 - 1928: 17,15 - 1929: 17,14 - 1930: 17,15 - 1931: 17,16 - 1932: 17,13 - 1933: 15,11 - 1934: 15,10 - 1935: 14,10 - 1936: 14,12 - 1937: 14,12 - 1938: 7,15 - 1939: 8,16 - 1940: 8,16 - 1941: 7,16 - 1942: 13,21 - 1943: 13,21 - 1944: 13,21 - 1958: -3,32 - 1959: -1,33 - 1960: -1,33 - 1961: -1,32 - 1962: 0,32 - 1963: 0,32 - 1964: 0,32 - 1965: 0,32 - 2050: -1,11 - 2051: -1,13 - 2058: -2,11 - 2059: 1,11 - 2060: -5,12 - 2400: 5,4 - 2401: 5,3 - 2402: 6,2 - 2403: 4,2 - 2404: 10,2 - 2439: -13,2 - 2440: -13,4 - 2441: -11,2 - 2442: -12,2 - 2523: 36,21 - 2524: 37,20 - 2525: 36,19 - 2526: 37,19 - 2527: 37,18 - 2528: 37,17 - 2537: 40,17 - 2543: 39,10 - 2544: 39,9 - 2555: 24,9 - 2556: 7,20 - 2557: 31,20 - 2558: 32,21 - 2559: 32,22 - 2560: 33,23 - 2561: 33,22 - 2623: 28,17 - 2624: 28,17 - 2625: 27,16 - 2633: 32,17 - 2723: 36,18 - 2725: 45,16 - 2726: 37,25 - 2727: 46,25 - 2728: 43,22 - 2729: 41,5 - 2730: 39,5 - 2731: 36,5 - 2732: 34,5 - 2733: 32,5 - 2734: 28,5 - 2790: 39,22 - 2791: 40,22 - 2792: 42,22 - 2793: 43,22 - 2794: 37,22 - 2795: 36,22 - 2796: 38,23 - 2797: 38,25 - 2798: 38,26 - 2799: 40,8 - 2800: 38,8 - 2801: 39,8 - 2802: 40,8 - 2803: 40,11 - 2804: 40,10 - 2805: 37,11 + 1488: 2,11 + 1489: 2,10 + 1490: 2,9 + 1491: 3,8 + 1492: 2,8 + 1520: 4,27 + 1521: 4,27 + 1522: 5,28 + 1523: 5,28 + 1524: 5,27 + 1525: 10,27 + 1526: 10,27 + 1527: 9,27 + 1528: 11,27 + 1529: 11,26 + 1541: 9,25 + 1542: 6,26 + 1679: 33,26 + 1680: 34,26 + 1681: 34,25 + 1682: 34,24 + 1683: 31,24 + 1684: 32,24 + 1685: 33,24 + 1686: 33,24 + 1687: 30,21 + 1688: 30,22 + 1689: 29,21 + 1690: 28,21 + 1691: 28,23 + 1692: 27,22 + 1693: 26,22 + 1694: 28,21 + 1695: 28,22 + 1696: 25,23 + 1697: 26,23 + 1698: 26,23 + 1699: 25,21 + 1700: 24,23 + 1701: 23,24 + 1702: 24,23 + 1703: 23,23 + 1704: 23,23 + 1705: 24,22 + 1706: 24,24 + 1707: 23,25 + 1708: 22,24 + 1709: 22,25 + 1710: 22,26 + 1711: 25,26 + 1712: 25,26 + 1713: 20,26 + 1714: 19,26 + 1715: 20,26 + 1716: 17,26 + 1717: 18,26 + 1718: 15,26 + 1719: 15,26 + 1720: 15,25 + 1721: 15,25 + 1722: 17,24 + 1723: 16,24 + 1724: 13,24 + 1725: 14,23 + 1726: 14,22 + 1727: 15,22 + 1728: 17,23 + 1729: 19,22 + 1730: 20,21 + 1731: 20,21 + 1732: 18,21 + 1739: 37,26 + 1740: 37,26 + 1741: 36,25 + 1742: 36,25 + 1743: 34,26 + 1744: 33,26 + 1745: 32,26 + 1746: 31,25 + 1747: 29,25 + 1811: 39,25 + 1812: 39,24 + 1813: 39,24 + 1814: 41,23 + 1815: 44,24 + 1816: 44,24 + 1817: 43,24 + 1818: 43,24 + 1819: 42,23 + 1820: 43,23 + 1821: 44,23 + 1822: 45,24 + 1823: 45,25 + 1824: 45,25 + 1825: 47,26 + 1826: 47,26 + 1827: 50,25 + 1828: 50,25 + 1829: 49,24 + 1830: 51,25 + 1831: 52,25 + 1832: 51,25 + 1833: 51,25 + 1834: 53,26 + 1835: 54,26 + 1836: 53,25 + 1837: 53,25 + 1838: 54,25 + 1839: 51,26 + 1847: 29,8 + 1911: 10,14 + 1912: 10,14 + 1913: 10,13 + 1914: 10,13 + 1915: 14,16 + 1916: 13,16 + 1917: 13,16 + 1918: 17,15 + 1919: 17,14 + 1920: 17,15 + 1921: 17,16 + 1922: 17,13 + 1923: 15,11 + 1924: 15,10 + 1925: 14,10 + 1926: 14,12 + 1927: 14,12 + 1928: 7,15 + 1929: 8,16 + 1930: 8,16 + 1931: 7,16 + 1932: 13,21 + 1933: 13,21 + 1934: 13,21 + 1948: -3,32 + 1949: -1,33 + 1950: -1,33 + 1951: -1,32 + 1952: 0,32 + 1953: 0,32 + 1954: 0,32 + 1955: 0,32 + 2040: -1,11 + 2041: -1,13 + 2048: -2,11 + 2049: 1,11 + 2050: -5,12 + 2390: 5,4 + 2391: 5,3 + 2392: 6,2 + 2393: 4,2 + 2394: 10,2 + 2429: -13,2 + 2430: -13,4 + 2431: -11,2 + 2432: -12,2 + 2513: 36,21 + 2514: 37,20 + 2515: 36,19 + 2516: 37,19 + 2517: 37,18 + 2518: 37,17 + 2527: 40,17 + 2533: 39,10 + 2534: 39,9 + 2545: 24,9 + 2546: 7,20 + 2547: 31,20 + 2548: 32,21 + 2549: 32,22 + 2550: 33,23 + 2551: 33,22 + 2613: 28,17 + 2614: 28,17 + 2615: 27,16 + 2623: 32,17 + 2679: 36,18 + 2681: 45,16 + 2682: 37,25 + 2683: 46,25 + 2684: 43,22 + 2685: 41,5 + 2686: 39,5 + 2687: 36,5 + 2688: 34,5 + 2689: 32,5 + 2690: 28,5 + 2746: 39,22 + 2747: 40,22 + 2748: 42,22 + 2749: 43,22 + 2750: 37,22 + 2751: 36,22 + 2752: 38,23 + 2753: 38,25 + 2754: 38,26 + 2755: 40,8 + 2756: 38,8 + 2757: 39,8 + 2758: 40,8 + 2759: 40,11 + 2760: 40,10 + 2761: 37,11 - node: cleanable: True zIndex: 180 color: '#FFFFFFFF' id: DirtLight decals: - 2230: -2,39 - 2231: -2,39 - 2232: 1,37 - 2233: 1,37 - 2234: -1,37 - 2235: -1,37 - 2236: -2,37 - 2237: -2,37 - 2238: -1,41 - 2239: -1,40 - 2240: 0,40 - 2241: -2,44 - 2242: 0,48 - 2243: 0,49 - 2244: 0,49 - 2245: 0,51 - 2246: 3,51 - 2247: 6,53 - 2248: 7,53 - 2249: 8,53 - 2250: 8,54 - 2251: 8,54 - 2252: 7,55 - 2274: 1,50 - 2275: 1,50 - 2276: 7,51 - 2325: -38,11 - 2326: -38,11 - 2327: -39,12 - 2328: -39,12 - 2329: -41,10 - 2330: -38,12 - 2331: -32,12 - 2332: -34,12 - 2333: -33,11 - 2334: -34,8 - 2335: -33,8 - 2336: -29,11 - 2337: -31,12 - 2338: -30,12 - 2339: -30,12 - 2352: -52,11 - 2353: -53,10 - 2354: -49,14 - 2355: -48,14 - 2356: -48,14 - 2357: -50,5 - 2358: -51,5 - 2359: -51,6 - 2360: -51,5 + 2220: -2,39 + 2221: -2,39 + 2222: 1,37 + 2223: 1,37 + 2224: -1,37 + 2225: -1,37 + 2226: -2,37 + 2227: -2,37 + 2228: -1,41 + 2229: -1,40 + 2230: 0,40 + 2231: -2,44 + 2232: 0,48 + 2233: 0,49 + 2234: 0,49 + 2235: 0,51 + 2236: 3,51 + 2237: 6,53 + 2238: 7,53 + 2239: 8,53 + 2240: 8,54 + 2241: 8,54 + 2242: 7,55 + 2264: 1,50 + 2265: 1,50 + 2266: 7,51 + 2315: -38,11 + 2316: -38,11 + 2317: -39,12 + 2318: -39,12 + 2319: -41,10 + 2320: -38,12 + 2321: -32,12 + 2322: -34,12 + 2323: -33,11 + 2324: -34,8 + 2325: -33,8 + 2326: -29,11 + 2327: -31,12 + 2328: -30,12 + 2329: -30,12 + 2342: -52,11 + 2343: -53,10 + 2344: -49,14 + 2345: -48,14 + 2346: -48,14 + 2347: -50,5 + 2348: -51,5 + 2349: -51,6 + 2350: -51,5 - node: color: '#FFFFFFFF' id: DirtMedium @@ -2818,109 +2824,109 @@ entities: 1301: 27,-19 1333: 0,23 1334: 1,23 - 1345: -9,17 - 1346: -8,15 - 1347: -9,15 + 1344: -9,17 + 1345: -8,15 + 1346: -9,15 + 1411: -5,18 1412: -5,18 - 1413: -5,18 - 1414: -5,17 - 1415: -6,17 - 1416: -6,16 - 1419: -6,16 - 1420: -5,15 + 1413: -5,17 + 1414: -6,17 + 1415: -6,16 + 1418: -6,16 + 1419: -5,15 + 1420: -5,13 1421: -5,13 - 1422: -5,13 - 1423: -4,13 - 1441: -5,9 - 1442: -4,10 - 1494: 2,8 - 1495: 4,9 - 1496: 4,10 - 1497: 3,9 - 1498: 4,12 - 1499: 4,13 - 1500: 2,15 - 1501: 2,14 - 1502: 4,15 - 1535: 3,28 - 1536: 4,28 - 1537: 5,28 - 1538: 7,28 - 1539: 7,28 - 1540: 6,27 - 1541: 5,26 - 1542: 5,26 - 1543: 8,27 - 1548: 10,23 - 1549: 11,23 - 1804: 48,26 - 1805: 49,26 - 1806: 48,25 - 1807: 47,25 - 1808: 46,26 - 1809: 45,26 - 1810: 45,26 - 1811: 40,26 - 1812: 43,26 - 1813: 43,26 - 1814: 42,24 - 1815: 41,24 - 1816: 42,25 - 1817: 42,26 - 1818: 41,26 - 1819: 40,25 - 1820: 39,26 - 1966: -1,32 - 2405: 4,3 - 2406: 6,4 - 2407: 11,2 - 2443: -9,4 - 2444: -10,4 - 2445: -8,2 - 2446: -12,4 - 2447: -11,2 - 2448: -12,2 - 2449: -12,1 - 2450: -13,4 - 2451: -13,5 - 2540: 37,10 - 2541: 38,9 - 2542: 38,10 - 2636: 31,18 - 2637: 32,17 - 2724: 42,16 + 1422: -4,13 + 1440: -5,9 + 1441: -4,10 + 1493: 2,8 + 1494: 4,9 + 1495: 4,10 + 1496: 3,9 + 1497: 4,12 + 1498: 4,13 + 1499: 2,15 + 1500: 2,14 + 1501: 4,15 + 1530: 3,28 + 1531: 4,28 + 1532: 5,28 + 1533: 7,28 + 1534: 7,28 + 1535: 6,27 + 1536: 5,26 + 1537: 5,26 + 1538: 8,27 + 1539: 10,23 + 1540: 11,23 + 1794: 48,26 + 1795: 49,26 + 1796: 48,25 + 1797: 47,25 + 1798: 46,26 + 1799: 45,26 + 1800: 45,26 + 1801: 40,26 + 1802: 43,26 + 1803: 43,26 + 1804: 42,24 + 1805: 41,24 + 1806: 42,25 + 1807: 42,26 + 1808: 41,26 + 1809: 40,25 + 1810: 39,26 + 1956: -1,32 + 2395: 4,3 + 2396: 6,4 + 2397: 11,2 + 2433: -9,4 + 2434: -10,4 + 2435: -8,2 + 2436: -12,4 + 2437: -11,2 + 2438: -12,2 + 2439: -12,1 + 2440: -13,4 + 2441: -13,5 + 2530: 37,10 + 2531: 38,9 + 2532: 38,10 + 2626: 31,18 + 2627: 32,17 + 2680: 42,16 - node: cleanable: True zIndex: 180 color: '#FFFFFFFF' id: DirtMedium decals: - 2253: 7,55 - 2254: 5,56 - 2255: 5,57 - 2256: 4,50 - 2257: 7,49 - 2258: 8,48 - 2259: 8,45 - 2260: 8,44 - 2261: 7,44 - 2262: 8,41 - 2263: 5,41 - 2264: 3,41 - 2265: 3,40 - 2266: 2,40 - 2267: 1,39 - 2268: -1,36 - 2269: 0,37 - 2270: 2,37 - 2271: 2,37 - 2272: -1,40 - 2273: -3,47 + 2243: 7,55 + 2244: 5,56 + 2245: 5,57 + 2246: 4,50 + 2247: 7,49 + 2248: 8,48 + 2249: 8,45 + 2250: 8,44 + 2251: 7,44 + 2252: 8,41 + 2253: 5,41 + 2254: 3,41 + 2255: 3,40 + 2256: 2,40 + 2257: 1,39 + 2258: -1,36 + 2259: 0,37 + 2260: 2,37 + 2261: 2,37 + 2262: -1,40 + 2263: -3,47 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: - 2463: -50,3 + 2453: -50,3 - node: color: '#35526FFF' id: FullTileOverlayGreyscale @@ -2999,8 +3005,8 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 2109: -1,42 - 2110: -1,46 + 2099: -1,42 + 2100: -1,46 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -3014,48 +3020,48 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 2111: 5,42 - 2112: 5,46 + 2101: 5,42 + 2102: 5,46 - node: - color: '#4B709CFF' + color: '#1F6626FF' id: MiniTileCheckerAOverlay decals: - 2652: 3,23 - 2653: 4,23 - 2654: 5,23 - 2655: 5,22 - 2656: 4,22 - 2657: 3,22 - 2658: 3,21 - 2659: 4,21 - 2660: 5,21 - 2661: 5,20 - 2662: 4,20 - 2663: 3,20 + 2782: 3,23 + 2783: 4,23 + 2784: 5,23 + 2785: 5,22 + 2786: 4,22 + 2787: 3,22 + 2788: 3,21 + 2789: 4,21 + 2790: 5,21 + 2791: 5,20 + 2792: 4,20 + 2793: 3,20 - node: color: '#9FED5896' id: MiniTileCheckerAOverlay decals: - 2595: 27,18 - 2596: 27,17 - 2597: 27,16 - 2598: 28,16 - 2599: 28,17 - 2600: 28,18 - 2601: 29,18 - 2602: 29,17 - 2603: 29,16 - 2604: 30,16 - 2605: 30,17 - 2606: 30,18 - 2626: 31,17 - 2627: 31,18 - 2628: 32,18 - 2629: 32,17 - 2638: 31,16 - 2639: 32,16 - 2640: 32,15 - 2641: 31,15 + 2585: 27,18 + 2586: 27,17 + 2587: 27,16 + 2588: 28,16 + 2589: 28,17 + 2590: 28,18 + 2591: 29,18 + 2592: 29,17 + 2593: 29,16 + 2594: 30,16 + 2595: 30,17 + 2596: 30,18 + 2616: 31,17 + 2617: 31,18 + 2618: 32,18 + 2619: 32,17 + 2628: 31,16 + 2629: 32,16 + 2630: 32,15 + 2631: 31,15 - node: color: '#FFFFFFFF' id: MiniTileCheckerAOverlay @@ -3093,17 +3099,12 @@ entities: 676: -44,8 677: -45,8 678: -46,8 - - node: - color: '#FFFFFFFF' - id: MiniTileCornerOverlayNW - decals: - 2664: 3,23 - node: color: '#DE3A3A96' id: MiniTileLineOverlayW decals: - 2768: 46,16 - 2769: 46,15 + 2724: 46,16 + 2725: 46,15 - node: color: '#FFFFFFFF' id: MiniTileOverlay @@ -3124,108 +3125,66 @@ entities: color: '#FFFFFFFF' id: MiniTileSteelCornerNe decals: - 2749: 40,11 + 2705: 40,11 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNw decals: - 2756: 37,11 + 2712: 37,11 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSe decals: - 2748: 40,8 + 2704: 40,8 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSw decals: - 2745: 37,8 + 2701: 37,8 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 2754: 40,9 - 2755: 40,10 + 2710: 40,9 + 2711: 40,10 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 2750: 39,11 - 2751: 38,11 + 2706: 39,11 + 2707: 38,11 - node: color: '#FFFFFFFF' id: MiniTileSteelLineS decals: - 2752: 39,8 - 2753: 38,8 + 2708: 39,8 + 2709: 38,8 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 2746: 37,9 - 2747: 37,10 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteCornerNe - decals: - 2668: 5,23 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteCornerNw - decals: - 2665: 3,23 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteCornerSe - decals: - 2666: 5,20 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteCornerSw - decals: - 2667: 3,20 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineE - decals: - 2669: 5,22 - 2670: 5,21 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineN - decals: - 2671: 4,23 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineS - decals: - 2672: 4,20 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineW - decals: - 2673: 3,21 - 2674: 3,22 + 2702: 37,9 + 2703: 37,10 - node: color: '#4C2A5EFF' id: QuarterTileOverlayGreyscale decals: - 2813: -6,18 - 2814: -5,18 - 2815: -4,18 + 2769: -6,18 + 2770: -5,18 + 2771: -4,18 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: 212: -31,-28 221: -29,-26 - 2501: 42,6 - 2502: 44,6 - 2503: 43,6 - 2504: 45,6 - 2505: 46,6 - 2506: 47,6 - 2507: 48,6 + 2491: 42,6 + 2492: 44,6 + 2493: 43,6 + 2494: 45,6 + 2495: 46,6 + 2496: 47,6 + 2497: 48,6 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale @@ -3271,11 +3230,11 @@ entities: color: '#774194FF' id: QuarterTileOverlayGreyscale270 decals: - 2816: -2,26 - 2817: -2,26 - 2818: -2,27 - 2819: -2,28 - 2820: -2,29 + 2772: -2,26 + 2773: -2,26 + 2774: -2,27 + 2775: -2,28 + 2776: -2,29 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 @@ -3292,31 +3251,31 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: - 2703: 40,22 - 2704: 41,22 - 2705: 42,22 - 2706: 43,22 - 2707: 44,22 - 2708: 45,22 - 2709: 46,22 - 2710: 47,22 - 2711: 36,18 - 2712: 36,17 - 2713: 36,16 - 2714: 36,15 - 2715: 37,15 - 2716: 38,15 - 2757: 40,15 - 2758: 39,15 - 2759: 45,15 - 2760: 44,15 - 2761: 43,15 - 2762: 42,15 - 2763: 41,15 - 2764: 36,22 - 2765: 37,22 - 2766: 38,22 - 2767: 39,22 + 2659: 40,22 + 2660: 41,22 + 2661: 42,22 + 2662: 43,22 + 2663: 44,22 + 2664: 45,22 + 2665: 46,22 + 2666: 47,22 + 2667: 36,18 + 2668: 36,17 + 2669: 36,16 + 2670: 36,15 + 2671: 37,15 + 2672: 38,15 + 2713: 40,15 + 2714: 39,15 + 2715: 45,15 + 2716: 44,15 + 2717: 43,15 + 2718: 42,15 + 2719: 41,15 + 2720: 36,22 + 2721: 37,22 + 2722: 38,22 + 2723: 39,22 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 @@ -3339,11 +3298,11 @@ entities: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 2770: 41,18 - 2771: 40,18 - 2772: 39,18 - 2773: 38,18 - 2774: 41,17 + 2726: 41,18 + 2727: 40,18 + 2728: 39,18 + 2729: 38,18 + 2730: 41,17 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -3361,74 +3320,74 @@ entities: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 2371: -11,4 - 2386: 7,4 + 2361: -11,4 + 2376: 7,4 - node: color: '#FFFFFFFF' id: SpaceStationSign10 decals: - 2376: -10,2 - 2387: 8,2 + 2366: -10,2 + 2377: 8,2 - node: color: '#FFFFFFFF' id: SpaceStationSign11 decals: - 2377: -9,2 - 2388: 9,2 + 2367: -9,2 + 2378: 9,2 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 2378: -10,4 - 2389: 8,4 + 2368: -10,4 + 2379: 8,4 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 2368: -13,3 - 2385: 5,3 + 2358: -13,3 + 2375: 5,3 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 2369: -12,3 - 2384: 6,3 + 2359: -12,3 + 2374: 6,3 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 2370: -11,3 - 2383: 7,3 + 2360: -11,3 + 2373: 7,3 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 2372: -10,3 - 2382: 8,3 + 2362: -10,3 + 2372: 8,3 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 2373: -9,3 - 2381: 9,3 + 2363: -9,3 + 2371: 9,3 - node: color: '#FFFFFFFF' id: SpaceStationSign8 decals: - 2374: -8,3 - 2380: 10,3 + 2364: -8,3 + 2370: 10,3 - node: color: '#FFFFFFFF' id: SpaceStationSign9 decals: - 2375: -7,3 - 2379: 11,3 + 2365: -7,3 + 2369: 11,3 - node: color: '#FF5C5CFF' id: StandClearGreyscale decals: - 2697: 37,20 - 2698: 36,20 + 2653: 37,20 + 2654: 36,20 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale @@ -3516,28 +3475,28 @@ entities: 366: 12,24 367: 12,25 368: 12,26 - 1359: 1,18 - 1360: 1,17 - 1361: 1,16 - 1362: 1,15 - 1367: -3,15 - 1368: -3,16 - 1369: -3,17 - 1370: -3,18 - 2456: -28,1 - 2495: 35,26 - 2496: 35,25 - 2497: 35,24 - 2811: 35,22 - 2812: 35,23 + 1358: 1,18 + 1359: 1,17 + 1360: 1,16 + 1361: 1,15 + 1366: -3,15 + 1367: -3,16 + 1368: -3,17 + 1369: -3,18 + 2446: -28,1 + 2485: 35,26 + 2486: 35,25 + 2487: 35,24 + 2767: 35,22 + 2768: 35,23 - node: zIndex: 180 color: '#FFFFFFFF' id: WarnLineE decals: - 2122: 8,53 - 2123: 8,54 - 2124: 8,55 + 2112: 8,53 + 2113: 8,54 + 2114: 8,55 - node: color: '#FFFFFFFF' id: WarnLineN @@ -3583,25 +3542,25 @@ entities: 370: 48,21 716: -41,8 717: -40,8 - 2471: -31,0 - 2472: -30,0 - 2473: -29,0 - 2474: -31,-11 - 2475: -29,-11 - 2479: 29,-11 - 2686: 43,17 - 2687: 44,17 - 2688: 45,17 - 2689: 36,19 - 2690: 37,19 - 2691: 36,21 - 2692: 37,21 + 2461: -31,0 + 2462: -30,0 + 2463: -29,0 + 2464: -31,-11 + 2465: -29,-11 + 2469: 29,-11 + 2642: 43,17 + 2643: 44,17 + 2644: 45,17 + 2645: 36,19 + 2646: 37,19 + 2647: 36,21 + 2648: 37,21 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineN decals: - 2594: 29,19 + 2584: 29,19 - node: color: '#FFFFFFFF' id: WarnLineS @@ -3652,28 +3611,28 @@ entities: 359: 55,24 360: 55,25 361: 55,26 - 1363: -3,18 - 1364: -3,17 - 1365: -3,16 - 1366: -3,15 - 1371: 1,15 - 1372: 1,16 - 1373: 1,17 - 1374: 1,18 - 2457: -28,1 - 2498: 35,26 - 2499: 35,25 - 2500: 35,24 - 2809: 35,22 - 2810: 35,23 + 1362: -3,18 + 1363: -3,17 + 1364: -3,16 + 1365: -3,15 + 1370: 1,15 + 1371: 1,16 + 1372: 1,17 + 1373: 1,18 + 2447: -28,1 + 2488: 35,26 + 2489: 35,25 + 2490: 35,24 + 2765: 35,22 + 2766: 35,23 - node: zIndex: 180 color: '#FFFFFFFF' id: WarnLineS decals: - 2106: -3,43 - 2107: -3,44 - 2108: -3,45 + 2096: -3,43 + 2097: -3,44 + 2098: -3,45 - node: color: '#FFFFFFFF' id: WarnLineW @@ -3724,110 +3683,110 @@ entities: 713: -41,6 714: -41,9 715: -40,9 - 2468: -31,0 - 2469: -30,0 - 2470: -29,0 - 2476: -31,-11 - 2477: -29,-11 - 2478: 29,-11 - 2693: 36,19 - 2694: 37,19 - 2695: 37,21 - 2696: 36,21 + 2458: -31,0 + 2459: -30,0 + 2460: -29,0 + 2466: -31,-11 + 2467: -29,-11 + 2468: 29,-11 + 2649: 36,19 + 2650: 37,19 + 2651: 37,21 + 2652: 36,21 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineW decals: - 2593: 29,19 + 2583: 29,19 - node: color: '#C8C8C8FF' id: WoodTrimThinCornerNe decals: - 2484: 26,12 - 2510: 46,10 + 2474: 26,12 + 2500: 46,10 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 2741: 36,11 + 2697: 36,11 - node: color: '#C8C8C8FF' id: WoodTrimThinCornerNw decals: - 2481: 24,12 - 2509: 42,10 + 2471: 24,12 + 2499: 42,10 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 2740: 35,11 + 2696: 35,11 - node: color: '#C8C8C8FF' id: WoodTrimThinCornerSe decals: - 2482: 26,11 - 2511: 46,8 + 2472: 26,11 + 2501: 46,8 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 2807: 36,8 + 2763: 36,8 - node: color: '#C8C8C8FF' id: WoodTrimThinCornerSw decals: - 2483: 24,11 - 2508: 42,8 + 2473: 24,11 + 2498: 42,8 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 2806: 35,8 + 2762: 35,8 - node: color: '#C8C8C8FF' id: WoodTrimThinLineE decals: - 2519: 46,9 + 2509: 46,9 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 2742: 36,9 - 2743: 36,10 + 2698: 36,9 + 2699: 36,10 - node: color: '#C8C8C8FF' id: WoodTrimThinLineN decals: - 2485: 25,12 - 2516: 43,10 - 2517: 44,10 - 2518: 45,10 + 2475: 25,12 + 2506: 43,10 + 2507: 44,10 + 2508: 45,10 - node: color: '#C8C8C8FF' id: WoodTrimThinLineS decals: - 2486: 25,11 - 2513: 43,8 - 2514: 44,8 - 2515: 45,8 + 2476: 25,11 + 2503: 43,8 + 2504: 44,8 + 2505: 45,8 - node: color: '#C8C8C8FF' id: WoodTrimThinLineW decals: - 2512: 42,9 + 2502: 42,9 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 2744: 35,10 - 2808: 35,9 + 2700: 35,10 + 2764: 35,9 - node: zIndex: 180 color: '#FF00FFFF' id: clown decals: - 2367: 6.027291,42.00365 + 2357: 6.027291,42.00365 - node: color: '#9BC516FF' id: shop @@ -3839,7 +3798,7 @@ entities: color: '#FFFF00FF' id: trade decals: - 2089: 2,38 + 2079: 2,38 - type: GridAtmosphere version: 2 data: @@ -15571,75 +15530,69 @@ entities: ents: [] machine_parts: !type:Container ents: [] -- proto: CarpetOrange +- proto: CarpetGreen entities: - - uid: 460 + - uid: 3789 components: - type: Transform - pos: 48.5,9.5 + pos: 7.5,22.5 parent: 2173 - - uid: 461 + - uid: 4976 components: - type: Transform - pos: 48.5,8.5 + pos: 7.5,21.5 parent: 2173 - - uid: 2240 + - uid: 4988 components: - type: Transform - pos: 47.5,10.5 + pos: 8.5,20.5 parent: 2173 - - uid: 2558 + - uid: 4989 components: - type: Transform - pos: 47.5,9.5 + pos: 8.5,22.5 parent: 2173 - - uid: 3127 + - uid: 4990 components: - type: Transform - pos: 47.5,8.5 + pos: 8.5,21.5 parent: 2173 - - uid: 3723 + - uid: 4997 components: - type: Transform - pos: 48.5,10.5 + pos: 7.5,20.5 parent: 2173 -- proto: CarpetSBlue +- proto: CarpetOrange entities: - - uid: 4976 + - uid: 460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,22.5 + pos: 48.5,9.5 parent: 2173 - - uid: 4988 + - uid: 461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,21.5 + pos: 48.5,8.5 parent: 2173 - - uid: 4989 + - uid: 2240 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,20.5 + pos: 47.5,10.5 parent: 2173 - - uid: 4990 + - uid: 2558 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,20.5 + pos: 47.5,9.5 parent: 2173 - - uid: 4997 + - uid: 3127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,21.5 + pos: 47.5,8.5 parent: 2173 - - uid: 4998 + - uid: 3723 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,22.5 + pos: 48.5,10.5 parent: 2173 - proto: Catwalk entities: @@ -15696,12 +15649,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,45.5 parent: 2173 - - uid: 756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,13.5 - parent: 2173 - uid: 757 components: - type: Transform @@ -16117,6 +16064,11 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,14.5 parent: 2173 + - uid: 4404 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2173 - uid: 4416 components: - type: Transform @@ -17929,6 +17881,11 @@ entities: parent: 2173 - proto: DisposalPipe entities: + - uid: 756 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2173 - uid: 830 components: - type: Transform @@ -20008,9 +19965,9 @@ entities: - type: Transform pos: 9.5,21.5 parent: 2173 -- proto: Dresser +- proto: DresserStationRepresentativeFilled entities: - - uid: 3789 + - uid: 4998 components: - type: Transform pos: 26.5,11.5 @@ -40608,12 +40565,6 @@ entities: - type: Transform pos: 23.5,13.5 parent: 2173 - - uid: 4404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,14.5 - parent: 2173 - uid: 4409 components: - type: Transform @@ -40766,6 +40717,11 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,26.5 parent: 2173 + - uid: 6165 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2173 - proto: WallSolid entities: - uid: 256 diff --git a/Resources/Maps/_NF/POI/cove.yml b/Resources/Maps/_NF/POI/cove.yml index 8e8ad29d03a..0181dc3ec83 100644 --- a/Resources/Maps/_NF/POI/cove.yml +++ b/Resources/Maps/_NF/POI/cove.yml @@ -3,302 +3,746 @@ meta: postmapinit: false tilemap: 0: Space - 7: FloorAsteroidSand - 8: FloorAsteroidSandDug - 30: FloorDark - 34: FloorDarkMini - 35: FloorDarkMono - 37: FloorDarkPavement - 38: FloorDarkPavementVertical - 41: FloorDirt - 74: FloorPlanetDirt - 75: FloorPlanetGrass - 90: FloorSteel - 92: FloorSteelCheckerDark - 105: FloorTechMaint - 106: FloorTechMaint2 - 113: FloorWhiteMini - 119: FloorWood - 122: Plating + 3: FloorAsteroidSand + 6: FloorAsteroidSandUnvariantized + 8: FloorAstroGrass + 14: FloorBar + 4: FloorBrokenWood + 5: FloorCaveDrought + 7: FloorDirt + 77: FloorRGlass + 1: FloorSteelCheckerDark + 107: FloorTechMaint + 115: FloorWhiteMini + 116: FloorWhiteMono + 2: FloorWood + 124: Lattice + 125: Plating entities: - proto: "" entities: - uid: 1 components: - type: MetaData + name: grid - type: Transform - pos: 0.14431763,-0.13037014 + pos: -0.5,-0.6875 parent: invalid - type: MapGrid chunks: 0,0: ind: 0,0 - tiles: dwAAAAADdwAAAAACdwAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAWgAAAAACegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAABdwAAAAACdwAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAWgAAAAAAegAAAAAABwAAAAAABwAAAAADBwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAdwAAAAADdwAAAAADdwAAAAADegAAAAAAagAAAAAAegAAAAAAagAAAAAAWgAAAAACegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADdwAAAAAAdwAAAAACdwAAAAACegAAAAAAagAAAAAAagAAAAAAagAAAAAAWgAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAMKQAAAAAAKQAAAAAAKQAAAAACKQAAAAADKQAAAAACBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAADKQAAAAABKQAAAAACKQAAAAABBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAHBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAADKQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAADBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAJKQAAAAAAKQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAFKQAAAAAAKQAAAAABKQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAGBwAAAAAFBwAAAAAAKQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAABKQAAAAADBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: BwAAAAAJBwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAegAAAAAABwAAAAAFegAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAIBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJSwAAAAABSwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAASwAAAAACSwAAAAACegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAASwAAAAACSwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAISwAAAAABSwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAGBwAAAAAIBwAAAAAABwAAAAAHBwAAAAADBwAAAAAABwAAAAAAKQAAAAABKQAAAAACegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFKQAAAAAAKQAAAAADegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAASwAAAAADSwAAAAADegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASwAAAAACSwAAAAADegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAMIwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAegAAAAAABwAAAAAABwAAAAAHIwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAADegAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALdwAAAAACdwAAAAACdwAAAAADegAAAAAAagAAAAAAegAAAAAAagAAAAAAWgAAAAABegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAABAQAAAAACAQAAAAACAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAdAAAAAADdAAAAAACdAAAAAACdAAAAAADfQAAAAAAAQAAAAACAQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAADAgAAAAACAgAAAAAABAAAAAAFAgAAAAABawAAAAAAAQAAAAAAAQAAAAACawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABAgAAAAACAgAAAAABAgAAAAACAgAAAAABfQAAAAAAfQAAAAAAAQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAgAAAAAAAgAAAAADAgAAAAABAgAAAAAAfQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAgAAAAABAgAAAAAAAgAAAAADAgAAAAACfQAAAAAAAQAAAAABAQAAAAABfQAAAAAAAQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAABBAAAAAADAgAAAAABfQAAAAAAAQAAAAACAQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAACAgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAfQAAAAAAAQAAAAADAQAAAAACAQAAAAACAQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAQAAAAACfQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcwAAAAADcwAAAAACcwAAAAADfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAEAwAAAAAAfQAAAAAAfQAAAAAAcwAAAAACcwAAAAABcwAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAwAAAAAHAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAEAwAAAAABawAAAAAAawAAAAAAcwAAAAACcwAAAAAAcwAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAABQAAAAAGBQAAAAAABQAAAAAHBQAAAAAEBQAAAAAEBQAAAAAEBQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABQAAAAAHBQAAAAAABQAAAAAABQAAAAAHBQAAAAAFBQAAAAAGBQAAAAADBQAAAAACBQAAAAADfQAAAAAABQAAAAAHBQAAAAAGBQAAAAAABQAAAAAEBQAAAAAGBQAAAAACBQAAAAABBQAAAAAFBQAAAAACBQAAAAABBQAAAAAFBQAAAAABBQAAAAACBQAAAAAABQAAAAAE version: 6 -1,0: ind: -1,0 - tiles: SgAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAABBwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAAAdwAAAAAAdwAAAAADSgAAAAAASgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAegAAAAAAcQAAAAACcQAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAABdwAAAAAAdwAAAAAASgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAcQAAAAABcQAAAAADaQAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAADdwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAcQAAAAABcQAAAAAAegAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAABdwAAAAADBwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAIBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAKQAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAFBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAKQAAAAAAKQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAGKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAMBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAF + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAABAQAAAAACAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAABAQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAdAAAAAACdAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAgAAAAAAAgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAAgAAAAAAAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAgAAAAACAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAAgAAAAACBAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAgAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAgAAAAADAgAAAAACAAAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAFfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAAwAAAAAFAwAAAAAMAwAAAAAAAwAAAAAAAwAAAAAGAwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAABQAAAAAABQAAAAACBQAAAAAFBQAAAAAFBQAAAAACBQAAAAAHfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAABQAAAAAHBQAAAAAFBQAAAAAHBQAAAAAABQAAAAAGBQAAAAAHfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAABQAAAAAEBQAAAAAHBQAAAAAFBQAAAAACBQAAAAADBQAAAAAHBQAAAAAEfQAAAAAAawAAAAAAawAAAAAAawAAAAAABQAAAAACawAAAAAAawAAAAAABQAAAAAHBQAAAAAD version: 6 -1,-1: ind: -1,-1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAABBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAIBwAAAAAAegAAAAAAdwAAAAADdwAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAACHgAAAAACegAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAMBwAAAAAAegAAAAAAdwAAAAADdwAAAAAAHgAAAAACIgAAAAABIgAAAAABIgAAAAAAHgAAAAACegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAegAAAAAAdwAAAAACdwAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAAAdwAAAAADdwAAAAACdwAAAAACdwAAAAACegAAAAAAKQAAAAAAKQAAAAADKQAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAABdwAAAAACdwAAAAADdwAAAAABdwAAAAACdwAAAAABdwAAAAADdwAAAAACegAAAAAASgAAAAAASgAAAAAASgAAAAAAXAAAAAACIgAAAAACIgAAAAAAIgAAAAACXAAAAAABdwAAAAADdwAAAAACdwAAAAABdwAAAAADdwAAAAAAdwAAAAACdwAAAAABaQAAAAAASgAAAAAASgAAAAAASgAAAAAAXAAAAAABIgAAAAADIgAAAAAAIgAAAAABXAAAAAABdwAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAACdwAAAAAAdwAAAAACaQAAAAAASgAAAAAASgAAAAAASgAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAACXAAAAAAAdwAAAAAAdwAAAAABdwAAAAADdwAAAAAAdwAAAAABdwAAAAABdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAKBwAAAAADJQAAAAAAJQAAAAACJQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAIBwAAAAAAIwAAAAABIwAAAAACIwAAAAACegAAAAAAdwAAAAABdwAAAAADdwAAAAACdwAAAAABdwAAAAAC - version: 6 - -1,-2: - ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAQAAAAACAQAAAAACAQAAAAACAQAAAAACAQAAAAADAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAAQAAAAABAQAAAAACAQAAAAABTQAAAAACTQAAAAACTQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAAQAAAAADAQAAAAABAQAAAAADTQAAAAABTQAAAAACTQAAAAACAQAAAAABTQAAAAABTQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAAQAAAAADAQAAAAACAQAAAAADAQAAAAADAQAAAAADAQAAAAADAQAAAAADTQAAAAADTQAAAAADTQAAAAAD version: 6 - -2,-1: - ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAJBwAAAAAEBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAADBwAAAAADBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAHBwAAAAAABwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAABJQAAAAACIwAAAAACJQAAAAAAJQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAADJQAAAAACIwAAAAADJQAAAAACJQAAAAADegAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAMegAAAAAAJQAAAAACIwAAAAACJQAAAAAAJQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAABBwAAAAAGBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAMBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAHBwAAAAAABwAAAAAABwAAAAAKBwAAAAALBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAA + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAQAAAAACAQAAAAADAQAAAAADAQAAAAABAQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACAQAAAAACAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAADAQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABAQAAAAABAQAAAAACAQAAAAACTQAAAAADTQAAAAAATQAAAAADAQAAAAADAQAAAAAAAQAAAAACawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAQAAAAADTQAAAAACTQAAAAABTQAAAAADAQAAAAABTQAAAAABTQAAAAACTQAAAAACAQAAAAAAAQAAAAACAQAAAAADawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAATQAAAAADTQAAAAADTQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 - -2,-2: - ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAF + -1,1: + ind: -1,1 + tiles: BQAAAAABBQAAAAABBQAAAAAHBQAAAAAHBQAAAAAHBQAAAAAGBQAAAAABBQAAAAAEBQAAAAAAfQAAAAAABQAAAAAEBQAAAAAFBQAAAAAFBQAAAAAEBQAAAAAABQAAAAAHBQAAAAACBQAAAAABBQAAAAADBQAAAAAGBQAAAAAHBQAAAAADBQAAAAABBQAAAAAEBQAAAAAEBQAAAAACBQAAAAADBQAAAAAEBQAAAAAHBQAAAAAHBQAAAAADBQAAAAAABQAAAAADBQAAAAAFBQAAAAAGBQAAAAABBQAAAAAHBQAAAAACBQAAAAABBQAAAAAEBQAAAAAEBQAAAAADBQAAAAAEBQAAAAADBQAAAAAFBQAAAAAGBQAAAAABBQAAAAACBQAAAAAHBQAAAAAEBQAAAAADBQAAAAAHBQAAAAABBQAAAAAEBQAAAAACBQAAAAAHBQAAAAAFBQAAAAAABQAAAAABBQAAAAAFBQAAAAAEBQAAAAAHBQAAAAACBQAAAAAFBQAAAAAEBQAAAAABBQAAAAAGBQAAAAABBQAAAAAHBQAAAAADBQAAAAACBQAAAAAHBQAAAAAGBQAAAAACBQAAAAADBQAAAAAGBQAAAAACBQAAAAAGBQAAAAAABQAAAAADBQAAAAADBQAAAAABBQAAAAAGBQAAAAAHBQAAAAAGBQAAAAADBQAAAAAEBQAAAAADBQAAAAAGBQAAAAAGBQAAAAAGBQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAACBQAAAAACBQAAAAAEBQAAAAACBQAAAAAFBQAAAAAHBQAAAAACBQAAAAAFBQAAAAAABQAAAAADBQAAAAABAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAFBQAAAAABBQAAAAAGBQAAAAAGBQAAAAAEBQAAAAAEBQAAAAAEBQAAAAAFBQAAAAAABQAAAAAHBQAAAAAEAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAABBQAAAAAEBQAAAAAABQAAAAAGBQAAAAAFBQAAAAABBQAAAAADBQAAAAADBQAAAAAHBQAAAAAHBQAAAAACAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAADBQAAAAACBQAAAAAEBQAAAAABBQAAAAAEBQAAAAAGBQAAAAACBQAAAAACBQAAAAACBQAAAAAFBQAAAAAEAwAAAAAJBgAAAAAABgAAAAAABgAAAAAAAwAAAAACBQAAAAAEBQAAAAAEBQAAAAABBQAAAAAABQAAAAAGBQAAAAAGBQAAAAAHBQAAAAAHBQAAAAAGBQAAAAAFBQAAAAABBQAAAAADAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAGBQAAAAADBQAAAAADBQAAAAAEBQAAAAAEBQAAAAADBQAAAAABBQAAAAAABQAAAAAEBQAAAAAEBQAAAAAEBQAAAAABBQAAAAABBQAAAAAHBQAAAAAGBQAAAAAFBQAAAAAGBQAAAAAABQAAAAAABQAAAAAABQAAAAAGBQAAAAADBQAAAAAGBQAAAAAEBQAAAAAEBQAAAAAGBQAAAAAEBQAAAAAEBQAAAAAFBQAAAAAEBQAAAAAFBQAAAAAGBQAAAAAHBQAAAAABBQAAAAAABQAAAAAFBQAAAAABBQAAAAAABQAAAAAGBQAAAAADBQAAAAAHBQAAAAAGBQAAAAABBQAAAAAEBQAAAAAEBQAAAAAGBQAAAAADBQAAAAAEBQAAAAAFBQAAAAAGBQAAAAADBQAAAAAFBQAAAAAABQAAAAACBQAAAAAHBQAAAAAABQAAAAADBQAAAAAEBQAAAAAABQAAAAAGBQAAAAAABQAAAAAFBQAAAAAGBQAAAAAABQAAAAACBQAAAAAFBQAAAAAHBQAAAAABBQAAAAAHBQAAAAAFBQAAAAAEBQAAAAABBQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAAEBQAAAAAFBQAAAAAFBQAAAAACBQAAAAAB version: 6 0,1: ind: 0,1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BQAAAAADBQAAAAAFBQAAAAAABQAAAAAGBQAAAAADBQAAAAAHBQAAAAAGBQAAAAACBQAAAAADBQAAAAADBQAAAAAFBQAAAAAABQAAAAAEBQAAAAAGBQAAAAADBQAAAAACBQAAAAAGBQAAAAAABQAAAAAFBQAAAAADBQAAAAACBQAAAAAEBQAAAAABBQAAAAAFBQAAAAAFBQAAAAAABQAAAAAGBQAAAAADBQAAAAABBQAAAAACBQAAAAAGBQAAAAAEBQAAAAAABQAAAAAABQAAAAAABQAAAAAFBQAAAAAEBQAAAAADBQAAAAAFBQAAAAAHBQAAAAAHBQAAAAAABQAAAAAEBQAAAAAFBQAAAAAGBQAAAAAFBQAAAAAGBQAAAAAGBQAAAAAHBQAAAAAGBQAAAAAFBQAAAAAHBQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAAEBQAAAAAEBQAAAAACBQAAAAABBQAAAAAFBQAAAAAHAwAAAAAAAwAAAAAABQAAAAADBQAAAAADBQAAAAACBQAAAAADBQAAAAAEBQAAAAAHBQAAAAAFBQAAAAAEBQAAAAAHBQAAAAADBQAAAAAEBQAAAAACBQAAAAAGAwAAAAAAAAAAAAAAAAAAAAAAAwAAAAAHBQAAAAAGBQAAAAABBQAAAAABBQAAAAABBQAAAAADBQAAAAAHBQAAAAAABQAAAAAGBQAAAAAEBQAAAAADBQAAAAAHAwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABQAAAAAEBQAAAAABBQAAAAAFBQAAAAAHBQAAAAAEBQAAAAAEBQAAAAAABQAAAAAEBQAAAAADBQAAAAAFBQAAAAAAAwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAwAAAAAMBQAAAAAGBQAAAAADBQAAAAABBQAAAAAHBQAAAAAFBQAAAAABBQAAAAAEBQAAAAAFBQAAAAADBQAAAAAABQAAAAADAwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABQAAAAAGBQAAAAAABQAAAAADBQAAAAADBQAAAAAGBQAAAAAHBQAAAAAABQAAAAAGBQAAAAAGBQAAAAACBQAAAAADBQAAAAADfAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAACBQAAAAABBQAAAAAEBQAAAAADBQAAAAAEBQAAAAAEBQAAAAABBQAAAAAGBQAAAAADBQAAAAADAwAAAAAAAAAAAAAAAwAAAAAABQAAAAAABQAAAAAHBQAAAAAGBQAAAAABBQAAAAABBQAAAAAGBQAAAAAHBQAAAAAABQAAAAAHBQAAAAABBQAAAAAEBQAAAAACBQAAAAAABQAAAAAFBQAAAAAEBQAAAAABBQAAAAABBQAAAAADBQAAAAAGBQAAAAACBQAAAAAGBQAAAAADBQAAAAABBQAAAAAABQAAAAAFBQAAAAADBQAAAAABBQAAAAAFBQAAAAAHBQAAAAABBQAAAAAHBQAAAAADBQAAAAAHBQAAAAAABQAAAAAEBQAAAAAFBQAAAAAFBQAAAAACBwAAAAADBwAAAAABBwAAAAABBwAAAAABBwAAAAABBQAAAAAABQAAAAAFBQAAAAAEBQAAAAAABQAAAAAEBQAAAAAFBQAAAAAABQAAAAAGBQAAAAAGBQAAAAAFBQAAAAABBwAAAAAABwAAAAADBwAAAAACBwAAAAABCAAAAAACCAAAAAABCAAAAAACCAAAAAADCAAAAAACCAAAAAAABQAAAAAABQAAAAACBQAAAAAFBQAAAAAFBQAAAAAGBQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAACCAAAAAACCAAAAAACCAAAAAAACAAAAAACCAAAAAADCAAAAAACBgAAAAAABQAAAAAFBQAAAAABBQAAAAAABQAAAAAFBQAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAADCAAAAAABCAAAAAADCAAAAAACCAAAAAABCAAAAAADBQAAAAAF + version: 6 + 1,1: + ind: 1,1 + tiles: BQAAAAAGBQAAAAAFAwAAAAAJAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBQAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAABBQAAAAAHAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAMAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAALAwAAAAAAAwAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAKAwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAFBQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAEBQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAGAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAGBQAAAAAHAwAAAAAAAwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAEBQAAAAACBQAAAAACAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAEBQAAAAACBQAAAAAABQAAAAAEAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 - tiles: BwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAACBwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAIBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 1,-1: - ind: 1,-1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAABAwAAAAAEAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAGBQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAADBQAAAAAHAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - 1,-2: - ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAGBwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAMAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAGAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAIAwAAAAAABQAAAAAG version: 6 - 0,-2: - ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAJgAAAAADJgAAAAACJgAAAAAAegAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAJgAAAAACJgAAAAAAJgAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAIwAAAAABIwAAAAAAIwAAAAAAegAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAJgAAAAADJgAAAAABJgAAAAABegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAegAAAAAAJgAAAAAAJgAAAAACJgAAAAADegAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAALBwAAAAACegAAAAAABwAAAAAAegAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAABwAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + -2,1: + ind: -2,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAGBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAFBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAJBQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAAABQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAFAwAAAAAABQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAABQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAABBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAKAwAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAABQAAAAAC version: 6 - -1,1: - ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -1,2: + ind: -1,2 + tiles: BQAAAAAEBQAAAAAEBQAAAAAABQAAAAABBQAAAAAABQAAAAADBgAAAAAABgAAAAAABgAAAAAABQAAAAAFBQAAAAAABQAAAAAGBQAAAAAGBQAAAAADBQAAAAAABQAAAAAEAwAAAAAFAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAACBAAAAAABAgAAAAABAgAAAAADAgAAAAABBgAAAAAAAwAAAAAGAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAABAgAAAAAAAgAAAAADAgAAAAAABAAAAAAAAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAADAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAACAgAAAAAABAAAAAABAgAAAAADAgAAAAABAgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAALBgAAAAAABgAAAAAABgAAAAAAAgAAAAACAgAAAAABAgAAAAADAgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -2,0: - ind: -2,0 - tiles: BwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAGBwAAAAAMBwAAAAAABwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAHBwAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAHBwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + 0,2: + ind: 0,2 + tiles: BgAAAAAABQAAAAAEBQAAAAAEBQAAAAACBQAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAACBQAAAAAABQAAAAAEBQAAAAAGBQAAAAAGBQAAAAAGBQAAAAAFBgAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAHBQAAAAAGBQAAAAABBQAAAAAHBQAAAAAABQAAAAAABQAAAAAGBQAAAAAEBQAAAAABBQAAAAAFBQAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAFAwAAAAADBgAAAAAABgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABwAAAAACBwAAAAADBwAAAAABBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -3,-1: - ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAaQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAegAAAAAAJQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAaQAAAAAAJQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + 1,2: + ind: 1,2 + tiles: BQAAAAABBQAAAAACAwAAAAACAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAACBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - -3,0: - ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + -2,2: + ind: -2,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAABQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics bodyStatus: InAir - angularDamping: 999999 - linearDamping: 999999 + angularDamping: 0.05 + linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Fixtures fixtures: {} + - type: IFF + color: '#FFC000FF' + flags: HideLabel - type: OccluderTree - type: SpreaderGrid - type: Shuttle - angularDamping: 999999 - linearDamping: 999999 - type: GridPathfinding - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: DecalGrid chunkCollection: version: 2 nodes: - node: - color: '#DE3A3A96' - id: BotGreyscale + color: '#FFFFFFFF' + id: Box + decals: + 73: -9,14 + 74: -9,13 + 75: -9,12 + 76: -8,12 + 77: -8,13 + 78: -8,14 + 79: -7,14 + 80: -7,13 + 81: -7,12 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelCornerNe + decals: + 270: 4,8 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelCornerNw + decals: + 271: -2,8 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelCornerSe + decals: + 269: 4,3 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelCornerSw + decals: + 268: -2,3 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelInnerNe + decals: + 250: -8,-4 + 251: -4,-3 + 252: 0,-3 + 253: 4,-4 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelInnerNw decals: - 72: -9,-1 - 73: -8,-1 - 74: -7,-1 + 264: -4,-4 + 265: 0,-3 + 266: 4,-3 + 267: 8,-4 - node: + color: '#D4C8BFFF' + id: BrickTileSteelInnerSe + decals: + 256: -8,-1 + 257: -4,0 + 258: 0,0 + 259: 4,-1 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelInnerSw + decals: + 260: -4,-1 + 261: 0,0 + 262: 4,0 + 263: 8,-1 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelLineE + decals: + 219: 4,-2 + 221: 4,-3 + 222: -4,-1 + 223: -4,-2 + 224: -8,-3 + 225: -8,-2 + 254: 0,-2 + 255: 0,-1 + 279: 4,7 + 280: 4,6 + 281: 4,5 + 282: 4,4 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelLineN + decals: + 212: -1,-3 + 213: -2,-3 + 214: -3,-3 + 215: 1,-3 + 216: 2,-3 + 217: 3,-3 + 244: 5,-4 + 245: 6,-4 + 246: 7,-4 + 247: -5,-4 + 248: -6,-4 + 249: -7,-4 + 272: 0,8 + 273: 1,8 + 274: 2,8 + 275: 3,8 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelLineS + decals: + 232: -7,-1 + 233: -6,-1 + 234: -5,-1 + 235: -3,0 + 236: -2,0 + 237: -1,0 + 238: 1,0 + 239: 2,0 + 240: 3,0 + 241: 5,-1 + 242: 6,-1 + 243: 7,-1 + 283: 3,3 + 284: 2,3 + 285: 1,3 + 286: 0,3 + 287: -1,3 + - node: + color: '#D4C8BFFF' + id: BrickTileSteelLineW + decals: + 218: 4,-1 + 220: 4,-2 + 226: 8,-2 + 227: 8,-3 + 228: 0,-1 + 229: 0,-2 + 230: -4,-2 + 231: -4,-3 + 276: -2,7 + 277: -2,6 + 278: -2,5 + - node: + color: '#726F6AFF' + id: BrickTileWhiteInnerNe + decals: + 298: -1,8 + - node: + color: '#726F6AFF' + id: BrickTileWhiteInnerNw + decals: + 295: -2,4 + 297: -1,8 + - node: + color: '#726F6AFF' + id: BrickTileWhiteInnerSw + decals: + 296: -2,4 + - node: + color: '#951710FF' + id: Caution + decals: + 323: -13,27 + - node: + color: '#A4610696' + id: CheckerNWSE + decals: + 63: 6,8 + 64: 7,8 + 65: 6,7 + 66: 7,7 + 67: 6,6 + 68: 7,6 + 69: 6,5 + 70: 7,5 + 82: 8,5 + 83: 9,5 + 84: 9,6 + 85: 8,8 + 86: 9,8 + 87: 9,9 + 88: 7,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 156: -8,3 + 157: -5,5 + 158: -8,7 + 159: -5,9 + 160: -8,9 + 161: -6,8 + 162: -4,10 + 163: -1,11 + 164: -4,12 + 165: 0,13 + 176: -5,3 + 184: -8,8 + 185: -2,10 + 327: -3,4 + 328: -7,4 + 333: -5,14 + 334: 6,13 + 337: -8,15 + 339: -6,15 + 340: -3,15 + 344: -1,14 + 345: 6,10 + - node: + cleanable: True color: '#FFFFFFFF' - id: BrickTileDarkCornerSw + id: DirtHeavyMonotile decals: - 52: 7,-6 + 187: -3,12 + 191: -1,12 + 192: 0,12 + 193: -2,12 + 194: -3,12 + 195: -4,6 + 324: -1,9 + 325: -1,10 + 326: -4,4 - node: + cleanable: True color: '#FFFFFFFF' - id: BrickTileDarkInnerNe + id: DirtLight decals: - 50: 6,-7 + 166: -5,13 + 167: -8,8 + 168: -8,5 + 169: -6,3 + 170: -8,4 + 177: -6,3 + 178: -6,4 + 179: -4,6 + 180: -5,7 + 181: -5,6 + 182: -8,6 + 183: -5,8 + 186: -3,10 + 189: -5,10 + 190: -4,10 + 335: 6,11 + 336: 7,12 + 341: -4,15 + 342: -3,14 + 343: 0,14 + 346: 7,10 + 347: 7,11 + 348: 6,11 + 349: 7,12 + 350: 6,12 - node: + cleanable: True color: '#FFFFFFFF' - id: BrickTileDarkInnerSe + id: DirtMedium decals: - 77: -10,0 - 78: -6,2 + 171: -8,4 + 172: -7,3 + 173: -4,3 + 174: -5,4 + 175: -5,3 + 188: -5,12 + 329: -7,3 + 330: -4,2 + 331: 0,12 + 332: -1,12 + 338: -7,15 - node: color: '#FFFFFFFF' - id: BrickTileDarkLineE + id: FlowersBROne decals: - 46: 6,-3 - 47: 6,-4 - 48: 6,-5 - 49: 6,-6 - 75: -10,-2 - 76: -10,-1 + 311: 14.009639,29.090136 + 312: 13.395055,29.277636 + 313: 13.895055,29.746386 + 314: 14.884639,29.694302 + 315: 14.967972,29.017218 + 316: 13.551305,28.996386 - node: color: '#FFFFFFFF' - id: BrickTileDarkLineN + id: Flowerspv3 decals: - 51: 7,-7 + 304: 12.061722,29.048468 + 305: 12.415889,29.475552 + 306: 12.770055,29.090136 - node: color: '#FFFFFFFF' - id: BrickTileDarkLineW + id: Flowersy1 decals: - 53: 7,-5 - 54: 7,-4 - 55: 7,-3 + 307: 13.238805,29.579718 + 308: 12.395055,29.423468 + 309: 14.738805,28.996386 + 310: 14.436722,29.433886 - node: - color: '#D4D4D414' - id: BrickTileWhiteCornerSw + color: '#A46106FF' + id: MiniTileWhiteCornerNe decals: - 62: 7,-6 + 55: 4,12 - node: - color: '#D4D4D41E' - id: BrickTileWhiteInnerNe + color: '#A46106FF' + id: MiniTileWhiteCornerNw + decals: + 56: 2,12 + - node: + color: '#A46106FF' + id: MiniTileWhiteCornerSe decals: - 60: 6,-7 + 57: 4,10 - node: - color: '#D4D4D41E' - id: BrickTileWhiteLineE + color: '#A46106FF' + id: MiniTileWhiteCornerSw decals: - 56: 6,-6 - 57: 6,-5 - 58: 6,-4 - 59: 6,-3 + 58: 2,10 - node: - color: '#D4D4D41E' - id: BrickTileWhiteLineN + color: '#A46106FF' + id: MiniTileWhiteLineE decals: - 61: 7,-7 + 62: 4,11 - node: - color: '#D4D4D414' - id: BrickTileWhiteLineW + color: '#A46106FF' + id: MiniTileWhiteLineN decals: - 63: 7,-5 - 64: 7,-4 - 65: 7,-3 + 61: 3,12 - node: - color: '#79150096' - id: MiniTileCheckerAOverlay + color: '#A46106FF' + id: MiniTileWhiteLineS decals: - 80: -5,-13 - 81: -4,-13 - 82: -3,-13 + 60: 3,10 - node: - color: '#D4D4D428' - id: MiniTileCheckerAOverlay + color: '#A46106FF' + id: MiniTileWhiteLineW decals: - 83: -12,-9 - 84: -12,-8 - 85: -11,-9 - 86: -11,-8 - 87: -10,-9 - 88: -10,-8 + 59: 2,11 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 43: -31,-7 - 44: -31,-6 - 45: -31,-5 + 351: 10,22 - node: - color: '#FFFFFFFF' - id: StandClear + color: '#A46106FF' + id: WarnCornerNE decals: - 40: 2,-24 - 41: 3,-24 - 42: 4,-24 + 129: -4,6 - node: - color: '#52B4E996' - id: WarnFullGreyscale + color: '#A46106FF' + id: WarnCornerNW decals: - 66: 8,-3 - 67: 9,-3 - 68: 10,-3 + 130: -8,9 - node: - color: '#DE3A3A96' + color: '#A46106FF' + id: WarnCornerSE + decals: + 131: -4,3 + 132: 0,12 + - node: + color: '#9FED58FF' + id: WarnCornerSW + decals: + 149: -8,3 + - node: + color: '#9FED58FF' + id: WarnCornerSmallNE + decals: + 154: -8,4 + - node: + color: '#A46106FF' + id: WarnCornerSmallNE + decals: + 135: -5,10 + 136: -5,12 + 137: -5,6 + 290: -4,4 + - node: + color: '#9FED58FF' + id: WarnCornerSmallNW + decals: + 155: -5,4 + - node: + color: '#A46106FF' + id: WarnCornerSmallNW + decals: + 133: 0,12 + 134: -5,9 + 294: -1,10 + - node: + color: '#A46106FF' + id: WarnCornerSmallSE + decals: + 140: -8,8 + 141: -5,10 + 142: -1,12 + 143: -5,12 + 291: -4,4 + - node: + color: '#A46106FF' + id: WarnCornerSmallSW + decals: + 138: -1,12 + 139: -5,8 + 292: -1,10 + - node: + color: '#B02E26FF' id: WarnFullGreyscale decals: - 69: 8,-6 - 70: 9,-6 - 71: 10,-6 + 54: 4,12 + - node: + color: '#9FED58FF' + id: WarnLineE + decals: + 146: -8,5 + - node: + color: '#A46106FF' + id: WarnLineE + decals: + 91: -8,6 + 92: -8,7 + 104: -5,9 + 105: -5,8 + 106: -5,7 + 107: -4,5 + 108: -1,11 + 109: 0,13 + 110: -5,13 + 111: -5,11 + 293: -1,10 + 302: -1,9 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 0: -34,-5 - 1: -34,-7 - 2: -28,-7 - 3: -28,-5 - 9: -6,2 - 16: -1,-8 - 17: -1,-9 - 28: -31,-7 - 29: -31,-6 - 30: -31,-5 + 17: 11,-1 + 18: 11,-2 + 19: 11,-3 + 20: -11,-1 + 21: -11,-2 + 28: -13,-1 + 29: -13,-2 + 30: -13,-3 + 31: 13,-1 + 32: 13,-2 + 33: 13,-3 + 52: 5,3 + 53: 8,3 + 72: -11,-3 + 199: -6,-8 + 288: 1,12 + - node: + color: '#9FED58FF' + id: WarnLineN + decals: + 150: -7,3 + 151: -6,3 + 152: -5,3 + - node: + color: '#A46106FF' + id: WarnLineN + decals: + 112: -6,8 + 113: -7,8 + 114: -4,10 + 115: -3,10 + 116: -2,10 + 117: -2,12 + 118: -3,12 + 119: -4,12 + 300: -3,4 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 13: -2,-2 - 14: -1,-2 - 15: 5,-2 - 20: 2,-27 - 21: 4,-27 - 22: 2,-21 - 23: 4,-21 - 37: 2,-24 - 38: 3,-24 - 39: 4,-24 + 11: -8,-7 + 12: -7,-7 + 13: -6,-7 + 14: 6,-7 + 15: 7,-7 + 16: 8,-7 + 34: -4,2 + 39: 3,9 + 46: -8,-9 + 47: -7,-9 + 48: -6,-9 + 49: 6,-9 + 50: 7,-9 + 51: 8,-9 + 90: 6,9 + 197: -12,-3 + - node: + color: '#9FED58FF' + id: WarnLineS + decals: + 147: -8,5 + 148: -8,4 + 153: -5,5 + - node: + color: '#A46106FF' + id: WarnLineS + decals: + 93: -8,7 + 94: -8,6 + 95: -8,8 + 96: -5,10 + 97: -5,11 + 98: -5,12 + 99: -5,13 + 100: 0,13 + 101: -1,11 + 102: -5,6 + 103: -5,7 + 301: -1,9 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 0: -11,-1 + 1: -11,-2 + 2: 11,-1 + 3: 11,-2 + 4: 11,-3 + 22: 13,-3 + 23: 13,-2 + 24: 13,-1 + 25: -13,-3 + 26: -13,-2 + 27: -13,-1 + 35: 5,3 + 36: 8,3 + 71: -11,-3 + 198: -8,-8 + 289: 1,12 - node: + angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarnLineS decals: - 4: -34,-7 - 5: -34,-5 - 6: -28,-7 - 7: -28,-5 - 8: -6,2 - 18: -1,-9 - 19: -1,-8 - 31: -31,-7 - 32: -31,-6 - 33: -31,-5 + 207: 12,-3 + - node: + color: '#9FED58FF' + id: WarnLineW + decals: + 144: -6,4 + 145: -7,4 + - node: + color: '#A46106FF' + id: WarnLineW + decals: + 120: -7,9 + 121: -6,9 + 122: -1,12 + 123: -2,12 + 124: -3,12 + 125: -4,12 + 126: -4,10 + 127: -3,10 + 128: -2,10 + 299: -3,4 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: WarnLineW + decals: + 211: 8,-8 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 5: 6,-7 + 6: 7,-7 + 7: 8,-7 + 8: -8,-7 + 9: -7,-7 + 10: -6,-7 + 37: -4,2 + 38: 3,9 + 40: 8,-9 + 41: 7,-9 + 42: 6,-9 + 43: -8,-9 + 44: -7,-9 + 45: -6,-9 + 89: 6,9 + 196: -12,-1 + 209: 12,-1 - node: + angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarnLineW decals: - 10: -2,-2 - 11: -1,-2 - 12: 5,-2 - 24: 2,-21 - 25: 4,-21 - 26: 2,-27 - 27: 4,-27 - 34: 2,-24 - 35: 3,-24 - 36: 4,-24 + 210: 6,-8 + - node: + cleanable: True + color: '#951710FF' + id: footprint + decals: + 318: -13.115324,17.519892 + 319: -12.880949,17.769892 + - node: + color: '#951710FF' + id: shop + decals: + 320: 0,16 + 321: -5,16 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: skull + decals: + 200: -12,-1 + 201: -12,-3 + - node: + color: '#FFFFFFFF' + id: skull + decals: + 202: -8,-8 + 203: -6,-8 + 204: 6,-8 + 205: 8,-8 - node: - color: '#FF0000FF' + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: skull + decals: + 206: 12,-3 + 208: 12,-1 + - node: + angle: -1.5707963267948966 rad + color: '#791500FF' + id: space + decals: + 354: 8,22 + - node: + cleanable: True + color: '#951710FF' + id: splatter + decals: + 317: -12.740324,16.801142 + - node: + color: '#951710FF' id: x decals: - 79: 0.5325799,12.50158 + 303: 3,36 - type: GridAtmosphere version: 2 data: @@ -308,314 +752,237 @@ entities: 0,-1: 0: 65535 -1,0: - 0: 65535 - -1,-1: - 0: 65535 + 0: 56575 0,1: 0: 65535 + -1,1: + 0: 57311 0,2: - 0: 65535 + 0: 4495 + 1: 52224 + -1,2: + 0: 65437 0,3: + 0: 65299 + 1: 12 + -1,3: 0: 65535 - 1,0: + 0,4: 0: 65535 + 1,0: + 0: 56831 1,1: - 0: 65535 + 0: 56785 1,2: - 0: 65535 + 0: 52237 + 1: 256 + 2: 4096 1,3: + 1: 1 + 0: 65484 + 1,-1: 0: 65535 - 2,0: + 1,4: 0: 65535 + 2,0: + 0: 8247 + 3: 128 2,1: - 0: 65535 + 0: 560 2,2: - 0: 65535 + 0: 4131 + 4: 128 2,3: - 0: 1023 - 1: 7168 - 3,0: - 0: 65535 - 3,1: - 0: 65535 + 0: 65329 + 2,-1: + 0: 65527 + 2,4: + 0: 4927 3,2: - 0: 65535 + 4: 3952 3,3: - 0: 7 - 1: 8 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 1,-4: - 0: 65535 - 1,-3: - 0: 65535 - 1,-2: - 0: 65535 - 1,-1: - 0: 65535 - 2,-4: - 0: 65535 - 2,-3: - 0: 65535 - 2,-2: - 0: 65535 - 2,-1: - 0: 65535 - 3,-4: - 0: 65535 - 3,-3: - 0: 65535 - 3,-2: - 0: 65535 + 0: 65280 3,-1: - 0: 65535 - -4,0: - 0: 65535 - -4,1: - 0: 65535 + 0: 13104 + 3,4: + 0: 7 + 4,2: + 4: 768 + -4,3: + 0: 65024 + -4,4: + 0: 61167 -4,2: + 4: 608 + -4,-1: + 0: 34944 + -3,3: + 0: 65160 + -3,-1: + 0: 65532 + -3,4: 0: 65535 - -4,3: - 0: 239 - 1: 16 -3,0: - 0: 65535 + 3: 32 + 0: 32908 -3,1: - 0: 65535 + 0: 34952 -3,2: - 0: 65535 - -3,3: - 0: 255 - 1: 3584 + 0: 34952 -2,0: - 0: 65535 + 0: 61695 -2,1: 0: 65535 -2,2: 0: 65535 -2,3: - 0: 61439 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - -4,-4: - 0: 65535 - -4,-3: 0: 65535 - -4,-2: + -2,-1: 0: 65535 - -4,-1: + -2,4: 0: 65535 - -3,-4: + -1,-1: 0: 65535 - -3,-3: + -1,4: 0: 65535 -3,-2: - 0: 65535 - -3,-1: - 0: 65535 - -2,-4: - 0: 65535 + 3: 8256 + 0: 34816 -2,-3: - 0: 65535 + 0: 28672 -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-4: - 0: 65535 - -1,-3: - 0: 65535 + 0: 65399 -1,-2: - 0: 65535 - -4,-5: - 0: 65535 - -4,-6: - 1: 8320 - 0: 52224 - -3,-6: - 0: 65520 - 1: 8 - -3,-5: - 0: 65535 - -2,-7: - 1: 4608 - 0: 60416 - -2,-6: - 0: 65535 - -2,-5: - 0: 65535 - -1,-7: - 1: 48 - 0: 65480 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 - -1,-8: - 1: 32768 - -8,-3: - 0: 65535 - -8,-2: - 0: 65535 - -8,-1: - 0: 65535 - -8,-4: - 1: 8192 + 3: 16 + 0: 61440 + 0,-2: + 0: 61440 + 1,-2: + 0: 65228 + 3: 16 + 1,-3: 0: 49152 - -7,-4: - 0: 56520 - 1: 8740 - -7,-3: - 0: 65535 - -7,-2: - 0: 65535 - -7,-1: - 0: 65535 - -6,-4: - 0: 65535 - -6,-3: + 2,-3: + 0: 4096 + 2,-2: + 0: 13073 + 3: 32832 + -4,5: + 0: 61422 + -4,6: + 0: 65518 + -4,7: + 0: 3823 + -3,5: 0: 65535 - -6,-2: + -3,6: + 0: 32767 + -3,7: + 0: 819 + -2,5: 0: 65535 - -6,-1: + -2,6: 0: 65535 - -5,-4: + -2,7: + 0: 49166 + -2,8: + 0: 52428 + -1,5: 0: 65535 - -5,-3: + -1,6: 0: 65535 - -5,-2: + -1,7: + 0: 62207 + -1,8: + 0: 65407 + 0,5: 0: 65535 - -5,-1: + 0,6: 0: 65535 - -6,-5: - 1: 61440 - -5,-5: - 1: 28 - 0: 65504 - 0,4: - 0: 4095 - 1: 12288 - 1,4: - 0: 307 - 1: 516 - 4,0: + 0,7: + 0: 19 + 1,5: 0: 65535 - 4,1: - 0: 30719 - 4,2: - 0: 30583 - 1: 2176 + 1,6: + 0: 61439 + 1,7: + 0: 52428 + 2,5: + 0: 32625 + 2,6: + 0: 13073 + 2,7: + 0: 64977 + 3,5: + 4: 4368 + 3: 11808 + 3,7: + 0: 32752 + 3,6: + 3: 2 + 4: 128 + 4,5: + 3: 20256 + 4: 3 + 4,6: + 4: 28 + 4,7: + 4: 2248 + 4,8: + 4: 780 + 5,4: + 4: 1 + 3: 57344 + 5,5: + 3: 53196 + 5,7: + 4: 4352 + 5,3: + 4: 4352 + 5,6: + 3: 236 + 5,8: + 4: 1 + 6,4: + 3: 4096 + 6,5: + 3: 4369 + 6,6: + 3: 17 4,3: - 0: 3 - 1: 4 - 5,0: - 0: 4403 - 5,1: - 1: 1 - 4,-4: - 0: 65527 - 1: 8 - 4,-3: - 0: 65535 - 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 1: 4096 - 5,-3: - 1: 273 - 0: 4096 - 5,-2: - 0: 13073 - 1: 32 - 5,-1: - 0: 13107 - 1: 1092 - 4,-6: - 1: 256 - 0: 4096 - 4,-5: - 0: 29489 - 1: 1090 - 0,-8: - 0: 61440 - 0,-7: - 0: 65535 - 0,-6: - 0: 65535 - 0,-5: - 0: 65535 - 1,-8: - 0: 28672 - 1,-7: - 0: 65399 - 1: 128 - 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-7: - 0: 28928 - 1: 34304 - 2,-6: - 0: 65535 - 2,-5: - 0: 65535 - 3,-6: - 0: 65328 - 1: 64 - 3,-5: - 0: 65535 - -2,4: - 1: 6 - 0: 8 - -1,4: - 0: 3311 - 1: 528 - -8,0: - 0: 3823 - 1: 16 - -7,0: - 0: 61439 - -7,1: - 0: 61166 - -7,2: - 0: 142 - 1: 2144 - -6,0: - 0: 65535 - -6,1: - 0: 65535 - -6,2: - 0: 4095 - 1: 49152 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -5,2: - 0: 65535 + 4: 2048 -5,3: - 1: 12 - -9,-3: - 1: 256 - 0: 65024 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -9,0: - 1: 130 - 0: 12 + 4: 272 + -5,2: + 4: 8192 + -5,4: + 4: 256 + -5,5: + 4: 256 + -5,6: + 4: 4096 + -5,8: + 4: 2082 + -3,8: + 4: 8192 + -3,9: + 4: 2176 + -2,9: + 0: 2188 + -1,9: + 0: 2047 + 0,8: + 4: 49152 + 0,9: + 4: 12 + 1,8: + 4: 28672 + 1,9: + 4: 1 + 2,8: + 4: 3072 + 3,8: + 4: 3840 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -632,6 +999,51 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.813705 + - 82.06108 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -650,10541 +1062,11839 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - - type: BecomesStation - id: Cove -- proto: ActionToggleLight + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg +- proto: AccordionInstrument entities: - - uid: 1919 + - uid: 1426 components: - type: Transform - parent: 1918 - - type: InstantAction - container: 1918 -- proto: AirCanister + pos: -0.4802575,36.45672 + parent: 1 +- proto: AirAlarm entities: - - uid: 1289 + - uid: 239 components: - type: Transform - pos: 8.5,-2.5 + rot: -1.5707963267948966 rad + pos: -2.5,8.5 parent: 1 -- proto: AirlockEngineering + - type: DeviceList + devices: + - 407 + - 646 + - 171 + - 974 + - 973 +- proto: AirCanister entities: - - uid: 1843 + - uid: 901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-1.5 + anchored: True + pos: 8.5,11.5 parent: 1 -- proto: AirlockShuttle + - type: Physics + bodyType: Static +- proto: AirlockFreezer entities: - - uid: 3 + - uid: 345 components: - type: Transform - pos: 2.5,-28.5 + pos: 1.5,12.5 parent: 1 - - uid: 4 + - uid: 993 components: - type: Transform - pos: 3.5,-28.5 + pos: 3.5,9.5 parent: 1 - - uid: 5 +- proto: AirlockGlass + entities: + - uid: 358 components: - type: Transform - pos: 4.5,-28.5 + pos: 8.5,8.5 parent: 1 - - uid: 22 + - uid: 637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-6.5 + pos: 8.5,5.5 parent: 1 - - uid: 23 +- proto: AirlockHatch + entities: + - uid: 36 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-5.5 + pos: -10.5,-0.5 parent: 1 - - uid: 24 + - uid: 41 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-4.5 + pos: -10.5,-1.5 parent: 1 -- proto: APCBasic - entities: - - uid: 1306 + - uid: 58 components: - type: Transform - pos: -7.5,-5.5 + pos: -10.5,-2.5 parent: 1 - - uid: 1307 + - uid: 60 components: - type: Transform - pos: 3.5,-20.5 + pos: 11.5,-0.5 parent: 1 - - uid: 1308 + - type: DeviceLinkSink + links: + - 950 + - uid: 89 components: - type: Transform - pos: -27.5,-5.5 + pos: 11.5,-1.5 parent: 1 - - uid: 1309 + - type: DeviceLinkSink + links: + - 950 + - uid: 92 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,1.5 + pos: 11.5,-2.5 parent: 1 -- proto: AtmosDeviceFanTiny - entities: - - uid: 1592 + - uid: 95 components: - type: Transform - pos: 2.5,-26.5 + pos: 6.5,-6.5 parent: 1 - - uid: 1593 + - uid: 103 components: - type: Transform - pos: 4.5,-26.5 + pos: 7.5,-6.5 parent: 1 - - uid: 1594 + - uid: 114 components: - type: Transform - pos: -33.5,-4.5 + pos: 8.5,-6.5 parent: 1 - - uid: 1595 + - uid: 116 components: - type: Transform - pos: -33.5,-6.5 + pos: -5.5,-6.5 parent: 1 -- proto: AtmosFixBlockerMarker - entities: - - uid: 1137 + - uid: 117 components: - type: Transform - pos: -21.5,11.5 + pos: -6.5,-6.5 parent: 1 - - uid: 1781 + - uid: 118 components: - type: Transform - pos: -14.5,-20.5 + pos: -7.5,-6.5 parent: 1 - - uid: 1920 + - uid: 1917 components: - type: Transform - pos: -20.5,11.5 + pos: 9.5,22.5 parent: 1 - - uid: 1922 + - uid: 2055 components: - type: Transform - pos: -24.5,10.5 + pos: 11.5,22.5 parent: 1 - - uid: 1923 +- proto: AirlockShuttleSyndicate + entities: + - uid: 130 components: - type: Transform - pos: -25.5,9.5 + rot: -1.5707963267948966 rad + pos: -12.5,-1.5 parent: 1 - - uid: 1924 + - uid: 131 components: - type: Transform - pos: -26.5,9.5 + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 parent: 1 - - uid: 1925 + - uid: 136 components: - type: Transform - pos: -31.5,1.5 + pos: -7.5,-8.5 parent: 1 - - uid: 1926 + - uid: 137 components: - type: Transform - pos: -32.5,1.5 + pos: -6.5,-8.5 parent: 1 - - uid: 1927 + - uid: 140 components: - type: Transform - pos: -34.5,0.5 + pos: -5.5,-8.5 parent: 1 - - uid: 1928 + - uid: 143 components: - type: Transform - pos: -35.5,-9.5 + pos: 6.5,-8.5 parent: 1 - - uid: 1929 + - uid: 146 components: - type: Transform - pos: -30.5,-12.5 + pos: 7.5,-8.5 parent: 1 - - uid: 1930 + - uid: 147 components: - type: Transform - pos: -26.5,-12.5 + pos: 8.5,-8.5 parent: 1 - - uid: 1931 + - uid: 148 components: - type: Transform - pos: -26.5,-13.5 + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 parent: 1 - - uid: 1932 + - uid: 150 components: - type: Transform - pos: -26.5,-14.5 + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 parent: 1 - - uid: 1933 + - uid: 151 components: - type: Transform - pos: -25.5,-15.5 + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 parent: 1 - - uid: 1934 + - uid: 159 components: - type: Transform - pos: -23.5,-16.5 + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 parent: 1 - - uid: 1935 +- proto: AirSensor + entities: + - uid: 973 components: - type: Transform - pos: -22.5,-16.5 + rot: 1.5707963267948966 rad + pos: -5.5,4.5 parent: 1 - - uid: 1936 +- proto: AmeJar + entities: + - uid: 562 components: - type: Transform - pos: -21.5,-16.5 + pos: -3.6350956,13.749761 parent: 1 - - uid: 1937 + - uid: 651 components: - type: Transform - pos: -20.5,-16.5 + pos: -3.343429,13.760177 parent: 1 - - uid: 1938 +- proto: APCBasic + entities: + - uid: 53 components: - type: Transform - pos: -19.5,-18.5 + rot: 1.5707963267948966 rad + pos: 5.5,8.5 parent: 1 - - uid: 1939 + - uid: 123 components: - type: Transform - pos: -17.5,-19.5 + pos: 0.5,9.5 parent: 1 - - uid: 1940 + - uid: 186 components: - type: Transform - pos: -16.5,-19.5 + rot: 3.141592653589793 rad + pos: -2.5,9.5 parent: 1 - - uid: 1941 + - uid: 578 components: - type: Transform - pos: -12.5,-22.5 + pos: 9.5,2.5 parent: 1 - - uid: 1942 +- proto: AtmosDeviceFanTiny + entities: + - uid: 56 components: - type: Transform - pos: -8.5,-23.5 + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 parent: 1 - - uid: 1943 + - uid: 257 components: - type: Transform - pos: -7.5,-24.5 + rot: 1.5707963267948966 rad + pos: 13.5,-0.5 parent: 1 - - uid: 1944 + - uid: 259 components: - type: Transform - pos: -6.5,-25.5 + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 parent: 1 - - uid: 1945 + - uid: 320 components: - type: Transform - pos: -3.5,-26.5 + rot: 1.5707963267948966 rad + pos: -6.5,-8.5 parent: 1 - - uid: 1946 + - uid: 411 components: - type: Transform - pos: -2.5,-26.5 + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 parent: 1 - - uid: 1947 + - uid: 446 components: - type: Transform - pos: -0.5,-28.5 + rot: 1.5707963267948966 rad + pos: -7.5,-8.5 parent: 1 - - uid: 1948 + - uid: 522 components: - type: Transform - pos: 7.5,-26.5 + rot: 1.5707963267948966 rad + pos: -5.5,-8.5 parent: 1 - - uid: 1949 + - uid: 542 components: - type: Transform - pos: 9.5,-25.5 + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 parent: 1 - - uid: 1950 + - uid: 551 components: - type: Transform - pos: 10.5,-25.5 + rot: 1.5707963267948966 rad + pos: -12.5,-0.5 parent: 1 - - uid: 1951 + - uid: 552 components: - type: Transform - pos: 11.5,-24.5 + rot: 1.5707963267948966 rad + pos: -12.5,-1.5 parent: 1 - - uid: 1952 + - uid: 634 components: - type: Transform - pos: 14.5,-22.5 + pos: 3.5,9.5 parent: 1 - - uid: 1953 + - uid: 905 components: - type: Transform - pos: 16.5,-21.5 + rot: 1.5707963267948966 rad + pos: 7.5,-8.5 parent: 1 - - uid: 1954 + - uid: 906 components: - type: Transform - pos: 17.5,-19.5 + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 parent: 1 - - uid: 1955 + - uid: 1037 components: - type: Transform - pos: 18.5,-18.5 + pos: 1.5,12.5 parent: 1 - - uid: 1956 + - uid: 2057 components: - type: Transform - pos: 18.5,-17.5 + pos: 11.5,22.5 parent: 1 - - uid: 1957 +- proto: AtmosFixBlockerMarker + entities: + - uid: 176 components: - type: Transform - pos: 19.5,-15.5 + pos: 4.5,-6.5 parent: 1 - - uid: 1958 + - uid: 238 components: - type: Transform - pos: 20.5,-12.5 + pos: 19.5,28.5 parent: 1 - - uid: 1959 + - uid: 1051 components: - type: Transform - pos: 20.5,-11.5 + pos: -3.5,-6.5 parent: 1 - - uid: 1960 + - uid: 1052 components: - type: Transform - pos: 20.5,-10.5 + pos: -10.5,-4.5 parent: 1 - - uid: 1961 + - uid: 1053 components: - type: Transform - pos: 20.5,-9.5 + pos: -9.5,-6.5 parent: 1 - - uid: 1962 + - uid: 1054 components: - type: Transform - pos: 21.5,-6.5 + pos: -10.5,1.5 parent: 1 - - uid: 1963 + - uid: 1056 components: - type: Transform - pos: 22.5,-3.5 + pos: 10.5,-6.5 parent: 1 - - uid: 1964 + - uid: 1057 components: - type: Transform - pos: 22.5,-2.5 + pos: 11.5,-4.5 parent: 1 - - uid: 1965 + - uid: 1058 components: - type: Transform - pos: 22.5,-1.5 + pos: 11.5,1.5 parent: 1 - - uid: 1966 + - uid: 1292 components: - type: Transform - pos: 20.5,4.5 + pos: 17.5,34.5 parent: 1 - - uid: 1967 + - uid: 1432 components: - type: Transform - pos: 19.5,9.5 + pos: 11.5,9.5 parent: 1 - - uid: 1968 + - uid: 1433 components: - type: Transform - pos: 19.5,10.5 + pos: 12.5,9.5 parent: 1 - - uid: 1969 + - uid: 1435 components: - type: Transform - pos: 18.5,12.5 + pos: 13.5,9.5 parent: 1 - - uid: 1970 + - uid: 1436 components: - type: Transform - pos: 15.5,12.5 + pos: 14.5,9.5 parent: 1 - - uid: 1971 + - uid: 1437 components: - type: Transform - pos: 11.5,14.5 + pos: 24.5,19.5 parent: 1 - - uid: 1972 + - uid: 1438 components: - type: Transform - pos: 10.5,14.5 + pos: 12.5,10.5 parent: 1 - - uid: 1973 + - uid: 1439 components: - type: Transform - pos: 8.5,15.5 + pos: 13.5,10.5 parent: 1 - - uid: 1974 + - uid: 1440 components: - type: Transform - pos: 6.5,16.5 + pos: 14.5,10.5 parent: 1 - - uid: 1975 + - uid: 1441 components: - type: Transform - pos: 5.5,18.5 + pos: 15.5,10.5 parent: 1 - - uid: 1976 + - uid: 1442 components: - type: Transform - pos: 1.5,19.5 + pos: 16.5,10.5 parent: 1 - - uid: 1977 + - uid: 1443 components: - type: Transform - pos: 0.5,19.5 + pos: 17.5,10.5 parent: 1 - - uid: 1978 + - uid: 1444 components: - type: Transform - pos: -2.5,18.5 + pos: 19.5,14.5 parent: 1 - - uid: 1979 + - uid: 1445 components: - type: Transform - pos: -3.5,17.5 + pos: 20.5,14.5 parent: 1 - - uid: 1980 + - uid: 1446 components: - type: Transform - pos: -5.5,16.5 + pos: 20.5,15.5 parent: 1 - - uid: 1981 + - uid: 1447 components: - type: Transform - pos: -6.5,16.5 + pos: 20.5,16.5 parent: 1 - - uid: 1982 + - uid: 1448 components: - type: Transform - pos: -8.5,14.5 + pos: 24.5,20.5 parent: 1 - - uid: 1983 + - uid: 1449 components: - type: Transform - pos: -9.5,14.5 + pos: 24.5,21.5 parent: 1 - - uid: 1984 + - uid: 1450 components: - type: Transform - pos: -10.5,14.5 + pos: 24.5,22.5 parent: 1 - - uid: 1985 + - uid: 1451 components: - type: Transform - pos: -15.5,13.5 + pos: 24.5,23.5 parent: 1 - - uid: 1986 + - uid: 1452 components: - type: Transform - pos: -16.5,12.5 + pos: 24.5,24.5 parent: 1 - - uid: 1987 + - uid: 1453 components: - type: Transform - pos: -17.5,12.5 + pos: 24.5,25.5 parent: 1 -- proto: BananaPhoneInstrument - entities: - - uid: 1830 + - uid: 1454 components: - type: Transform - pos: -8.640035,-8.22926 + pos: 23.5,25.5 parent: 1 -- proto: BananaSeeds - entities: - - uid: 1831 + - uid: 1455 components: - type: Transform - pos: -8.424658,-8.463635 + pos: 22.5,25.5 parent: 1 -- proto: BarSignEmergencyRumParty - entities: - - uid: 1804 + - uid: 1456 components: - type: Transform - pos: -3.5,-5.5 + pos: 21.5,25.5 parent: 1 -- proto: Bed - entities: - - uid: 1653 + - uid: 1457 components: - type: Transform - pos: 2.5,-0.5 + pos: 22.5,24.5 parent: 1 - - uid: 1654 + - uid: 1458 components: - type: Transform - pos: 2.5,0.5 + pos: 22.5,23.5 parent: 1 - - uid: 1655 + - uid: 1459 components: - type: Transform - pos: 2.5,1.5 + pos: 22.5,22.5 parent: 1 - - uid: 1656 + - uid: 1460 components: - type: Transform - pos: 2.5,3.5 + pos: 22.5,21.5 parent: 1 -- proto: BedsheetSpawner - entities: - - uid: 1742 + - uid: 1461 components: - type: Transform - pos: 2.5,3.5 + pos: 22.5,20.5 parent: 1 - - uid: 1743 + - uid: 1462 components: - type: Transform - pos: 2.5,1.5 + pos: 22.5,19.5 parent: 1 - - uid: 1744 + - uid: 1463 components: - type: Transform - pos: 2.5,0.5 + pos: 23.5,19.5 parent: 1 - - uid: 1745 + - uid: 1464 components: - type: Transform - pos: 2.5,-0.5 + pos: 23.5,20.5 parent: 1 -- proto: BenchSofaCorner - entities: - - uid: 1748 + - uid: 1465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,1.5 + pos: 23.5,21.5 parent: 1 - - type: Physics - canCollide: False - bodyType: Static - - type: Fixtures - fixtures: {} -- proto: BenchSofaLeft - entities: - - uid: 1749 + - uid: 1466 components: - type: Transform - pos: -0.5,1.5 + pos: 23.5,22.5 parent: 1 - - type: Physics - bodyType: Static -- proto: BenchSofaMiddle - entities: - - uid: 1747 + - uid: 1467 components: - type: Transform - pos: -1.5,1.5 + pos: 23.5,23.5 parent: 1 - - type: Physics - bodyType: Static -- proto: BenchSofaRight - entities: - - uid: 1750 + - uid: 1468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,0.5 + pos: 23.5,24.5 parent: 1 - - type: Physics - bodyType: Static -- proto: BlastDoorOpen - entities: - - uid: 1852 + - uid: 1469 components: - type: Transform - pos: 2.5,-23.5 + pos: 21.5,19.5 parent: 1 - - type: DeviceLinkSink - links: - - 1859 - - uid: 1853 + - uid: 1470 components: - type: Transform - pos: 3.5,-23.5 + pos: 21.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 1859 - - uid: 1854 + - uid: 1471 components: - type: Transform - pos: 4.5,-23.5 + pos: 20.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 1859 - - uid: 1855 + - uid: 1472 components: - type: Transform - pos: -30.5,-4.5 + pos: 19.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 1858 - - uid: 1856 + - uid: 1473 components: - type: Transform - pos: -30.5,-5.5 + pos: 18.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 1858 - - uid: 1857 + - uid: 1474 components: - type: Transform - pos: -30.5,-6.5 + pos: 17.5,22.5 parent: 1 - - type: DeviceLinkSink - links: - - 1858 -- proto: BoozeDispenser - entities: - - uid: 1651 + - uid: 1475 components: - type: Transform - pos: -1.5,-13.5 + pos: 16.5,22.5 parent: 1 -- proto: BrokenBottle - entities: - - uid: 1822 + - uid: 1476 components: - type: Transform - pos: -2.7916102,-7.6355104 + pos: 15.5,22.5 parent: 1 - - uid: 1823 + - uid: 1477 components: - type: Transform - pos: -5.9166102,-9.963635 + pos: 14.5,22.5 parent: 1 -- proto: Bucket - entities: - - uid: 1713 + - uid: 1478 components: - type: Transform - pos: -14.518534,-6.3820496 + pos: 13.5,22.5 parent: 1 -- proto: CableApcExtension - entities: - - uid: 1326 + - uid: 1479 components: - type: Transform - pos: 3.5,1.5 + pos: 12.5,22.5 parent: 1 - - uid: 1327 + - uid: 1480 components: - type: Transform - pos: 3.5,2.5 + pos: 12.5,23.5 parent: 1 - - uid: 1328 + - uid: 1481 components: - type: Transform - pos: 4.5,2.5 + pos: 13.5,23.5 parent: 1 - - uid: 1329 + - uid: 1482 components: - type: Transform - pos: 5.5,2.5 + pos: 13.5,24.5 parent: 1 - - uid: 1330 + - uid: 1483 components: - type: Transform - pos: 5.5,1.5 + pos: 12.5,21.5 parent: 1 - - uid: 1331 + - uid: 1484 components: - type: Transform - pos: 5.5,0.5 + pos: 13.5,21.5 parent: 1 - - uid: 1332 + - uid: 1485 components: - type: Transform - pos: 5.5,-0.5 + pos: 16.5,20.5 parent: 1 - - uid: 1333 + - uid: 1486 components: - type: Transform - pos: 2.5,1.5 + pos: 17.5,20.5 parent: 1 - - uid: 1334 + - uid: 1487 components: - type: Transform - pos: 1.5,1.5 + pos: 17.5,21.5 parent: 1 - - uid: 1335 + - uid: 1488 components: - type: Transform - pos: 0.5,1.5 + pos: 18.5,23.5 parent: 1 - - uid: 1336 + - uid: 1489 components: - type: Transform - pos: -0.5,1.5 + pos: 18.5,24.5 parent: 1 - - uid: 1337 + - uid: 1490 components: - type: Transform - pos: -1.5,1.5 + pos: 19.5,24.5 parent: 1 - - uid: 1338 + - uid: 1491 components: - type: Transform - pos: -2.5,1.5 + pos: 16.5,25.5 parent: 1 - - uid: 1339 + - uid: 1492 components: - type: Transform - pos: -3.5,1.5 + pos: 15.5,25.5 parent: 1 - - uid: 1340 + - uid: 1557 components: - type: Transform - pos: -4.5,1.5 + pos: 16.5,34.5 parent: 1 - - uid: 1341 + - uid: 1563 components: - type: Transform - pos: -4.5,2.5 + pos: 18.5,29.5 parent: 1 - - uid: 1342 + - uid: 1565 components: - type: Transform - pos: -5.5,2.5 + pos: 20.5,31.5 parent: 1 - - uid: 1343 + - uid: 1566 components: - type: Transform - pos: -6.5,2.5 + pos: 20.5,32.5 parent: 1 - - uid: 1344 + - uid: 1567 components: - type: Transform - pos: -7.5,2.5 + pos: 19.5,32.5 parent: 1 - - uid: 1345 + - uid: 1660 components: - type: Transform - pos: -0.5,2.5 + pos: 18.5,32.5 parent: 1 - - uid: 1346 + - uid: 1661 components: - type: Transform - pos: -0.5,3.5 + pos: 20.5,30.5 parent: 1 - - uid: 1347 + - uid: 1662 components: - type: Transform - pos: -0.5,0.5 + pos: 19.5,30.5 parent: 1 - - uid: 1348 + - uid: 1922 components: - type: Transform - pos: -0.5,-0.5 + pos: 15.5,34.5 parent: 1 - - uid: 1349 + - uid: 1955 components: - type: Transform - pos: -3.5,-0.5 + pos: 19.5,29.5 parent: 1 - - uid: 1350 + - uid: 1962 components: - type: Transform - pos: -3.5,0.5 + pos: 14.5,34.5 parent: 1 - - uid: 1351 + - uid: 1963 components: - type: Transform - pos: 1.5,0.5 + pos: 13.5,34.5 parent: 1 - - uid: 1352 + - uid: 1964 components: - type: Transform - pos: 1.5,-0.5 + pos: 12.5,34.5 parent: 1 - - uid: 1353 + - uid: 1965 components: - type: Transform - pos: 5.5,-1.5 + pos: 11.5,34.5 parent: 1 - - uid: 1354 + - uid: 1966 components: - type: Transform - pos: 6.5,-1.5 + pos: 10.5,34.5 parent: 1 - - uid: 1355 + - uid: 1967 components: - type: Transform - pos: 7.5,-1.5 + pos: 6.5,35.5 parent: 1 - - uid: 1356 + - uid: 1968 components: - type: Transform - pos: 7.5,-2.5 + pos: 5.5,35.5 parent: 1 - - uid: 1357 + - uid: 1969 components: - type: Transform - pos: 7.5,-3.5 + pos: 4.5,35.5 parent: 1 - - uid: 1358 + - uid: 1970 components: - type: Transform - pos: 7.5,-4.5 + pos: 3.5,35.5 parent: 1 - - uid: 1359 + - uid: 1971 components: - type: Transform - pos: 7.5,-5.5 + pos: 2.5,35.5 parent: 1 - - uid: 1360 + - uid: 1972 components: - type: Transform - pos: 5.5,-2.5 + pos: 2.5,36.5 parent: 1 - - uid: 1361 + - uid: 1973 components: - type: Transform - pos: 4.5,-2.5 + pos: 3.5,36.5 parent: 1 - - uid: 1362 + - uid: 1974 components: - type: Transform - pos: 4.5,-3.5 + pos: 4.5,36.5 parent: 1 - - uid: 1363 + - uid: 1975 components: - type: Transform - pos: 4.5,-4.5 + pos: -8.5,38.5 parent: 1 - - uid: 1364 + - uid: 1976 components: - type: Transform - pos: 4.5,-5.5 + pos: -8.5,37.5 parent: 1 - - uid: 1365 + - uid: 1977 components: - type: Transform - pos: 4.5,-6.5 + pos: -10.5,35.5 parent: 1 - - uid: 1366 + - uid: 1978 components: - type: Transform - pos: 4.5,-7.5 + pos: -16.5,34.5 parent: 1 - - uid: 1367 + - uid: 1979 components: - type: Transform - pos: 4.5,-8.5 + pos: -18.5,33.5 parent: 1 - - uid: 1368 + - uid: 1980 components: - type: Transform - pos: 4.5,-9.5 + pos: -18.5,32.5 parent: 1 - - uid: 1369 + - uid: 1981 components: - type: Transform - pos: 4.5,-10.5 + pos: -19.5,27.5 parent: 1 - - uid: 1370 + - uid: 1982 components: - type: Transform - pos: 4.5,-11.5 + pos: -19.5,22.5 parent: 1 - - uid: 1371 + - uid: 1983 components: - type: Transform - pos: 4.5,-12.5 + pos: -19.5,18.5 parent: 1 - - uid: 1372 + - uid: 1984 components: - type: Transform - pos: 4.5,-13.5 + pos: -19.5,14.5 parent: 1 - - uid: 1373 + - uid: 1985 components: - type: Transform - pos: 4.5,-14.5 + pos: -19.5,13.5 parent: 1 - - uid: 1374 + - uid: 1986 components: - type: Transform - pos: 4.5,-15.5 + pos: -18.5,11.5 parent: 1 - - uid: 1375 + - uid: 1987 components: - type: Transform - pos: 4.5,-16.5 + pos: -14.5,10.5 parent: 1 - - uid: 1376 + - uid: 1988 components: - type: Transform - pos: 4.5,-17.5 + pos: -14.5,9.5 parent: 1 - - uid: 1377 + - uid: 1989 components: - type: Transform - pos: 4.5,-18.5 + pos: -13.5,9.5 parent: 1 - - uid: 1378 +- proto: AtmosFixFreezerMarker + entities: + - uid: 404 components: - type: Transform - pos: 2.5,-18.5 + pos: 3.5,12.5 parent: 1 - - uid: 1379 + - uid: 866 components: - type: Transform - pos: 2.5,-17.5 + pos: 2.5,12.5 parent: 1 - - uid: 1380 + - uid: 874 components: - type: Transform - pos: 2.5,-16.5 + pos: 4.5,12.5 parent: 1 - - uid: 1381 + - uid: 1014 components: - type: Transform - pos: 2.5,-15.5 + pos: 4.5,11.5 parent: 1 - - uid: 1382 + - uid: 1016 components: - type: Transform - pos: 2.5,-14.5 + pos: 3.5,11.5 parent: 1 - - uid: 1383 + - uid: 1023 components: - type: Transform - pos: 2.5,-13.5 + pos: 2.5,11.5 parent: 1 - - uid: 1384 + - uid: 1028 components: - type: Transform - pos: 2.5,-12.5 + pos: 2.5,10.5 parent: 1 - - uid: 1385 + - uid: 1063 components: - type: Transform - pos: 2.5,-11.5 + pos: 3.5,10.5 parent: 1 - - uid: 1386 + - uid: 1064 components: - type: Transform - pos: 2.5,-10.5 + pos: 4.5,10.5 parent: 1 - - uid: 1387 +- proto: Bed + entities: + - uid: 1645 components: - type: Transform - pos: 2.5,-9.5 + pos: -0.5,34.5 parent: 1 - - uid: 1388 + - uid: 1701 components: - type: Transform - pos: 2.5,-8.5 + pos: -5.5,35.5 parent: 1 - - uid: 1389 + - uid: 1709 components: - type: Transform - pos: 2.5,-7.5 + pos: -0.5,36.5 parent: 1 - - uid: 1390 + - uid: 1863 components: - type: Transform - pos: 2.5,-6.5 + pos: -12.5,17.5 parent: 1 - - uid: 1391 +- proto: BedsheetMedical + entities: + - uid: 1851 components: - type: Transform - pos: 2.5,-5.5 + pos: -12.5,17.5 parent: 1 - - uid: 1392 +- proto: BedsheetSpawner + entities: + - uid: 1760 components: - type: Transform - pos: 2.5,-4.5 + pos: -5.5,35.5 parent: 1 - - uid: 1393 + - uid: 1761 components: - type: Transform - pos: 1.5,-4.5 + pos: -0.5,36.5 parent: 1 - - uid: 1394 + - uid: 1762 components: - type: Transform - pos: 0.5,-4.5 + pos: -0.5,34.5 parent: 1 - - uid: 1395 +- proto: BlastDoor + entities: + - uid: 1672 components: - type: Transform - pos: -0.5,-4.5 + rot: -1.5707963267948966 rad + pos: -3.5,39.5 parent: 1 - - uid: 1396 + - type: DeviceLinkSink + links: + - 1640 + - uid: 1677 components: - type: Transform - pos: -1.5,-4.5 + rot: -1.5707963267948966 rad + pos: -4.5,39.5 parent: 1 - - uid: 1397 + - type: DeviceLinkSink + links: + - 1640 + - uid: 1734 components: - type: Transform - pos: -2.5,-4.5 + rot: -1.5707963267948966 rad + pos: -2.5,39.5 parent: 1 - - uid: 1398 + - type: DeviceLinkSink + links: + - 1640 + - uid: 1838 components: - type: Transform - pos: -3.5,-4.5 + rot: -1.5707963267948966 rad + pos: -1.5,39.5 parent: 1 - - uid: 1399 + - type: DeviceLinkSink + links: + - 1640 +- proto: BlastDoorOpen + entities: + - uid: 313 components: - type: Transform - pos: -4.5,-4.5 + pos: 10.5,9.5 parent: 1 - - uid: 1400 + - type: DeviceLinkSink + links: + - 671 + - uid: 318 components: - type: Transform - pos: -5.5,-4.5 + rot: 1.5707963267948966 rad + pos: -3.5,2.5 parent: 1 - - uid: 1401 + - type: DeviceLinkSink + links: + - 173 + - uid: 329 components: - type: Transform - pos: -6.5,-4.5 + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 parent: 1 - - uid: 1402 + - type: DeviceLinkSink + links: + - 770 + - uid: 330 components: - type: Transform - pos: -7.5,-4.5 + pos: 10.5,6.5 parent: 1 - - uid: 1403 + - type: DeviceLinkSink + links: + - 667 + - uid: 337 components: - type: Transform - pos: -8.5,-4.5 + rot: -1.5707963267948966 rad + pos: 8.5,5.5 parent: 1 - - uid: 1404 + - type: DeviceLinkSink + links: + - 750 + - uid: 341 components: - type: Transform - pos: -9.5,-4.5 + rot: -1.5707963267948966 rad + pos: 3.5,2.5 parent: 1 - - uid: 1405 + - type: DeviceLinkSink + links: + - 859 + - uid: 344 components: - type: Transform - pos: -10.5,-4.5 + rot: -1.5707963267948966 rad + pos: 4.5,2.5 parent: 1 - - uid: 1406 + - type: DeviceLinkSink + links: + - 859 + - uid: 349 components: - type: Transform - pos: -11.5,-4.5 + rot: -1.5707963267948966 rad + pos: 2.5,2.5 parent: 1 - - uid: 1407 + - type: DeviceLinkSink + links: + - 859 + - uid: 350 components: - type: Transform - pos: -12.5,-4.5 + rot: -1.5707963267948966 rad + pos: 1.5,2.5 parent: 1 - - uid: 1408 + - type: DeviceLinkSink + links: + - 859 + - uid: 351 components: - type: Transform - pos: -13.5,-4.5 + rot: -1.5707963267948966 rad + pos: 0.5,2.5 parent: 1 - - uid: 1409 + - type: DeviceLinkSink + links: + - 859 + - uid: 352 components: - type: Transform - pos: -14.5,-4.5 + rot: -1.5707963267948966 rad + pos: -0.5,2.5 parent: 1 - - uid: 1410 + - type: DeviceLinkSink + links: + - 859 + - uid: 364 components: - type: Transform - pos: -15.5,-4.5 + rot: -1.5707963267948966 rad + pos: -1.5,2.5 parent: 1 - - uid: 1411 + - type: DeviceLinkSink + links: + - 859 + - uid: 365 components: - type: Transform - pos: -16.5,-4.5 + rot: 1.5707963267948966 rad + pos: 5.5,3.5 parent: 1 - - uid: 1412 + - type: DeviceLinkSink + links: + - 730 + - uid: 368 components: - type: Transform - pos: -17.5,-4.5 + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 parent: 1 - - uid: 1413 + - type: DeviceLinkSink + links: + - 770 + - uid: 386 components: - type: Transform - pos: -18.5,-4.5 + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 parent: 1 - - uid: 1414 - components: - - type: Transform - pos: -19.5,-4.5 - parent: 1 - - uid: 1415 + - type: DeviceLinkSink + links: + - 770 + - uid: 390 components: - type: Transform - pos: -19.5,-5.5 + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 parent: 1 - - uid: 1416 + - type: DeviceLinkSink + links: + - 770 + - uid: 403 components: - type: Transform - pos: -19.5,-6.5 + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 parent: 1 - - uid: 1417 + - type: DeviceLinkSink + links: + - 770 + - uid: 428 components: - type: Transform - pos: -20.5,-6.5 + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 parent: 1 - - uid: 1418 + - type: DeviceLinkSink + links: + - 770 + - uid: 429 components: - type: Transform - pos: -21.5,-6.5 + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 parent: 1 - - uid: 1419 + - type: DeviceLinkSink + links: + - 770 + - uid: 431 components: - type: Transform - pos: -22.5,-6.5 + rot: -1.5707963267948966 rad + pos: 8.5,8.5 parent: 1 - - uid: 1420 + - type: DeviceLinkSink + links: + - 362 + - uid: 433 components: - type: Transform - pos: -23.5,-6.5 + pos: 10.5,8.5 parent: 1 - - uid: 1421 + - type: DeviceLinkSink + links: + - 671 + - uid: 438 components: - type: Transform - pos: -24.5,-6.5 + pos: 10.5,5.5 parent: 1 - - uid: 1422 + - type: DeviceLinkSink + links: + - 667 + - uid: 439 components: - type: Transform - pos: -25.5,-6.5 + pos: -4.5,-7.5 parent: 1 - - uid: 1423 + - type: DeviceLinkSink + links: + - 947 + - uid: 442 components: - type: Transform - pos: -25.5,-4.5 + pos: -8.5,-7.5 parent: 1 - - uid: 1424 + - type: DeviceLinkSink + links: + - 947 + - uid: 444 components: - type: Transform - pos: -24.5,-4.5 + rot: -1.5707963267948966 rad + pos: -11.5,0.5 parent: 1 - - uid: 1425 + - type: DeviceLinkSink + links: + - 948 + - uid: 449 components: - type: Transform - pos: -23.5,-4.5 + rot: -1.5707963267948966 rad + pos: -11.5,-3.5 parent: 1 - - uid: 1426 + - type: DeviceLinkSink + links: + - 948 + - uid: 454 components: - type: Transform - pos: -22.5,-4.5 + rot: 3.141592653589793 rad + pos: 5.5,-7.5 parent: 1 - - uid: 1427 + - type: DeviceLinkSink + links: + - 949 + - uid: 455 components: - type: Transform - pos: -21.5,-4.5 + rot: 3.141592653589793 rad + pos: 9.5,-7.5 parent: 1 - - uid: 1428 + - type: DeviceLinkSink + links: + - 949 + - uid: 639 components: - type: Transform - pos: -21.5,-3.5 + rot: -1.5707963267948966 rad + pos: 12.5,-3.5 parent: 1 - - uid: 1429 + - type: DeviceLinkSink + links: + - 950 + - uid: 640 components: - type: Transform - pos: -21.5,-2.5 + rot: -1.5707963267948966 rad + pos: 12.5,0.5 parent: 1 - - uid: 1430 + - type: DeviceLinkSink + links: + - 950 +- proto: Bloodpack + entities: + - uid: 1877 components: - type: Transform - pos: -20.5,-2.5 + pos: -14.592388,18.943573 parent: 1 - - uid: 1431 + - uid: 1878 components: - type: Transform - pos: -19.5,-2.5 + pos: -14.363221,18.860239 parent: 1 - - uid: 1432 +- proto: Bonfire + entities: + - uid: 779 components: - type: Transform - pos: -18.5,-2.5 + pos: -1.5,24.5 parent: 1 - - uid: 1433 +- proto: BoozeDispenser + entities: + - uid: 90 components: - type: Transform - pos: -17.5,-2.5 + rot: 1.5707963267948966 rad + pos: -1.5,5.5 parent: 1 - - uid: 1434 +- proto: BoxCardboard + entities: + - uid: 1993 components: - type: Transform - pos: -16.5,-2.5 + pos: 0.5249535,4.68744 parent: 1 - - uid: 1435 +- proto: BoxCartridgeBB + entities: + - uid: 1748 components: - type: Transform - pos: -15.5,-2.5 + pos: 23.40793,24.519094 parent: 1 - - uid: 1436 +- proto: BoxDarts + entities: + - uid: 1751 components: - type: Transform - pos: -14.5,-2.5 + pos: -11.828638,30.224789 parent: 1 - - uid: 1437 +- proto: BoxDonkSoftBox + entities: + - uid: 1753 components: - type: Transform - pos: -13.5,-2.5 + pos: 22.798862,20.227777 parent: 1 - - uid: 1438 +- proto: BoxHandcuff + entities: + - uid: 1874 components: - type: Transform - pos: -12.5,-2.5 + pos: -14.498638,18.214405 parent: 1 - - uid: 1439 +- proto: BoxLightMixed + entities: + - uid: 2050 components: - type: Transform - pos: -11.5,-2.5 + pos: -6.5784426,7.7413363 parent: 1 - - uid: 1440 +- proto: BoxMRE + entities: + - uid: 1136 components: - type: Transform - pos: -10.5,-2.5 + pos: -3.6354046,8.857361 parent: 1 - - uid: 1441 + - uid: 1137 components: - type: Transform - pos: -9.5,-2.5 + pos: -3.3854048,8.732361 parent: 1 - - uid: 1442 +- proto: BrokenBottle + entities: + - uid: 1127 components: - type: Transform - pos: -8.5,-2.5 + rot: 1.5707963267948966 rad + pos: -3.3516002,22.561167 parent: 1 - - uid: 1443 +- proto: Bucket + entities: + - uid: 17 components: - type: Transform - pos: -7.5,-2.5 + pos: -3.4331908,7.0847335 parent: 1 - - uid: 1444 + - uid: 1070 components: - type: Transform - pos: -6.5,-2.5 + pos: -3.6727743,7.15765 parent: 1 - - uid: 1445 + - uid: 1073 components: - type: Transform - pos: -5.5,-2.5 + pos: -3.2248573,7.1680665 parent: 1 - - uid: 1446 + - uid: 2028 components: - type: Transform - pos: -4.5,-2.5 + pos: 14.837379,14.703768 parent: 1 - - uid: 1447 +- proto: ButchCleaver + entities: + - uid: 235 components: - type: Transform - pos: -3.5,-2.5 + pos: 2.4287968,5.620631 parent: 1 - - uid: 1448 +- proto: ButtonFrameCaution + entities: + - uid: 1707 components: - type: Transform - pos: -2.5,-2.5 + rot: 1.5707963267948966 rad + pos: -5.5,38.5 parent: 1 - - uid: 1449 + - uid: 1740 components: - type: Transform - pos: -1.5,-2.5 + rot: 1.5707963267948966 rad + pos: -2.5,3.5 parent: 1 - - uid: 1450 + - uid: 1741 components: - type: Transform - pos: -0.5,-2.5 + rot: -1.5707963267948966 rad + pos: -2.5,3.5 parent: 1 - - uid: 1451 + - uid: 1742 components: - type: Transform - pos: 0.5,-2.5 + rot: -1.5707963267948966 rad + pos: 5.5,4.5 parent: 1 - - uid: 1452 + - uid: 1743 components: - type: Transform - pos: 1.5,-2.5 + rot: 3.141592653589793 rad + pos: -3.5,-5.5 parent: 1 - - uid: 1453 +- proto: ButtonFrameExit + entities: + - uid: 1746 components: - type: Transform - pos: 2.5,-2.5 + rot: 1.5707963267948966 rad + pos: 8.5,6.5 parent: 1 - - uid: 1454 + - uid: 1747 components: - type: Transform - pos: 3.5,-2.5 + rot: 1.5707963267948966 rad + pos: 8.5,9.5 parent: 1 - - uid: 1455 +- proto: ButtonFrameGrey + entities: + - uid: 1744 components: - type: Transform - pos: -0.5,-1.5 + pos: 9.5,7.5 parent: 1 - - uid: 1456 + - uid: 1745 components: - type: Transform - pos: -7.5,-5.5 + pos: 9.5,10.5 parent: 1 - - uid: 1562 +- proto: CableApcExtension + entities: + - uid: 13 components: - type: Transform - pos: 2.5,-20.5 + pos: -4.5,-3.5 parent: 1 - - uid: 1563 + - uid: 20 components: - type: Transform - pos: 3.5,-20.5 + pos: -6.5,-4.5 parent: 1 - - uid: 1564 + - uid: 21 components: - type: Transform - pos: 4.5,-20.5 + pos: -10.5,-1.5 parent: 1 - - uid: 1565 + - uid: 22 components: - type: Transform - pos: 4.5,-21.5 + pos: -6.5,-3.5 parent: 1 - - uid: 1566 + - uid: 24 components: - type: Transform - pos: 4.5,-22.5 + pos: -5.5,-3.5 parent: 1 - - uid: 1567 + - uid: 74 components: - type: Transform - pos: 4.5,-23.5 + pos: 2.5,7.5 parent: 1 - - uid: 1568 + - uid: 80 components: - type: Transform - pos: 4.5,-24.5 + pos: -3.5,10.5 parent: 1 - - uid: 1569 + - uid: 86 components: - type: Transform - pos: 4.5,-25.5 + pos: -2.5,9.5 parent: 1 - - uid: 1570 + - uid: 94 components: - type: Transform - pos: 4.5,-26.5 + pos: -2.5,10.5 parent: 1 - - uid: 1571 + - uid: 120 components: - type: Transform - pos: 2.5,-26.5 + pos: -0.5,12.5 parent: 1 - - uid: 1572 + - uid: 153 components: - type: Transform - pos: 2.5,-25.5 + pos: -4.5,5.5 parent: 1 - - uid: 1573 + - uid: 155 components: - type: Transform - pos: 2.5,-24.5 + pos: -0.5,4.5 parent: 1 - - uid: 1574 + - uid: 161 components: - type: Transform - pos: 2.5,-23.5 + pos: -0.5,7.5 parent: 1 - - uid: 1575 + - uid: 163 components: - type: Transform - pos: 2.5,-22.5 + pos: 3.5,7.5 parent: 1 - - uid: 1576 + - uid: 168 components: - type: Transform - pos: 2.5,-21.5 + pos: -5.5,9.5 parent: 1 - - uid: 1577 + - uid: 175 components: - type: Transform - pos: -27.5,-4.5 + pos: 6.5,8.5 parent: 1 - - uid: 1578 + - uid: 185 components: - type: Transform - pos: -27.5,-5.5 + pos: -3.5,-3.5 parent: 1 - - uid: 1579 + - uid: 199 components: - type: Transform - pos: -27.5,-6.5 + pos: 0.5,7.5 parent: 1 - - uid: 1580 + - uid: 208 components: - type: Transform - pos: -28.5,-6.5 + pos: 5.5,8.5 parent: 1 - - uid: 1581 + - uid: 211 components: - type: Transform - pos: -29.5,-6.5 + pos: 8.5,11.5 parent: 1 - - uid: 1582 + - uid: 214 components: - type: Transform - pos: -30.5,-6.5 + pos: 7.5,11.5 parent: 1 - - uid: 1583 + - uid: 216 components: - type: Transform - pos: -31.5,-6.5 + pos: -4.5,13.5 parent: 1 - - uid: 1584 + - uid: 217 components: - type: Transform - pos: -32.5,-6.5 + pos: -4.5,12.5 parent: 1 - - uid: 1585 + - uid: 285 components: - type: Transform - pos: -33.5,-6.5 + pos: -6.5,4.5 parent: 1 - - uid: 1586 + - uid: 293 components: - type: Transform - pos: -33.5,-4.5 + pos: -9.5,-1.5 parent: 1 - - uid: 1587 + - uid: 295 components: - type: Transform - pos: -32.5,-4.5 + pos: -6.5,-5.5 parent: 1 - - uid: 1588 + - uid: 332 components: - type: Transform - pos: -31.5,-4.5 + pos: -3.5,14.5 parent: 1 - - uid: 1589 + - uid: 335 components: - type: Transform - pos: -30.5,-4.5 + pos: -4.5,14.5 parent: 1 - - uid: 1590 + - uid: 342 components: - type: Transform - pos: -29.5,-4.5 + pos: -2.5,14.5 parent: 1 - - uid: 1591 + - uid: 348 components: - type: Transform - pos: -28.5,-4.5 + pos: -2.5,-3.5 parent: 1 - - uid: 1596 + - uid: 388 components: - type: Transform - pos: -7.5,-6.5 + pos: 3.5,-3.5 parent: 1 - - uid: 1597 + - uid: 391 components: - type: Transform - pos: -6.5,-6.5 + pos: -5.5,4.5 parent: 1 - - uid: 1598 + - uid: 408 components: - type: Transform - pos: -5.5,-6.5 + pos: -7.5,4.5 parent: 1 - - uid: 1599 + - uid: 409 components: - type: Transform - pos: -4.5,-6.5 + pos: -3.5,12.5 parent: 1 - - uid: 1600 + - uid: 430 components: - type: Transform - pos: -3.5,-6.5 + pos: -6.5,-6.5 parent: 1 - - uid: 1601 + - uid: 434 components: - type: Transform - pos: -2.5,-6.5 + pos: 5.5,14.5 parent: 1 - - uid: 1602 + - uid: 443 components: - type: Transform - pos: -1.5,-6.5 + pos: 4.5,14.5 parent: 1 - - uid: 1603 + - uid: 451 components: - type: Transform - pos: -1.5,-7.5 + pos: -4.5,6.5 parent: 1 - - uid: 1604 + - uid: 458 components: - type: Transform - pos: -1.5,-8.5 + pos: -4.5,7.5 parent: 1 - - uid: 1605 + - uid: 459 components: - type: Transform - pos: -1.5,-9.5 + pos: -4.5,8.5 parent: 1 - - uid: 1606 + - uid: 460 components: - type: Transform - pos: -1.5,-10.5 + pos: -4.5,9.5 parent: 1 - - uid: 1607 + - uid: 461 components: - type: Transform - pos: -1.5,-11.5 + pos: -4.5,10.5 parent: 1 - - uid: 1608 + - uid: 462 components: - type: Transform - pos: -1.5,-12.5 + pos: -4.5,11.5 parent: 1 - - uid: 1609 + - uid: 463 components: - type: Transform - pos: -1.5,-13.5 + pos: -2.5,12.5 parent: 1 - - uid: 1610 + - uid: 464 components: - type: Transform - pos: -2.5,-13.5 + pos: -1.5,12.5 parent: 1 - - uid: 1611 + - uid: 467 components: - type: Transform - pos: -3.5,-13.5 + pos: 0.5,9.5 parent: 1 - - uid: 1612 + - uid: 469 components: - type: Transform - pos: -4.5,-13.5 + pos: 0.5,8.5 parent: 1 - - uid: 1613 + - uid: 472 components: - type: Transform - pos: -5.5,-13.5 + pos: 3.5,8.5 parent: 1 - - uid: 1614 + - uid: 476 components: - type: Transform - pos: -6.5,-13.5 + pos: 3.5,11.5 parent: 1 - - uid: 1615 + - uid: 477 components: - type: Transform - pos: -7.5,-13.5 + pos: 1.5,7.5 parent: 1 - - uid: 1616 + - uid: 478 components: - type: Transform - pos: -7.5,-12.5 + pos: 1.5,6.5 parent: 1 - - uid: 1617 + - uid: 479 components: - type: Transform - pos: -7.5,-11.5 + pos: 1.5,5.5 parent: 1 - - uid: 1618 + - uid: 480 components: - type: Transform - pos: -7.5,-10.5 + pos: 1.5,4.5 parent: 1 - - uid: 1619 + - uid: 481 components: - type: Transform - pos: -7.5,-9.5 + pos: 0.5,4.5 parent: 1 - - uid: 1620 + - uid: 482 components: - type: Transform - pos: -8.5,-9.5 + pos: 2.5,4.5 parent: 1 - - uid: 1621 + - uid: 483 components: - type: Transform - pos: -9.5,-9.5 + pos: 3.5,4.5 parent: 1 - - uid: 1622 + - uid: 491 components: - type: Transform - pos: -10.5,-9.5 + pos: 8.5,8.5 parent: 1 - - uid: 1623 + - uid: 492 components: - type: Transform - pos: -11.5,-9.5 + pos: 8.5,5.5 parent: 1 - - uid: 1624 + - uid: 494 components: - type: Transform - pos: -12.5,-9.5 + pos: 7.5,8.5 parent: 1 - - uid: 1625 + - uid: 495 components: - type: Transform - pos: -12.5,-8.5 + pos: 7.5,7.5 parent: 1 - - uid: 1626 + - uid: 496 components: - type: Transform - pos: -12.5,-7.5 + pos: 7.5,6.5 parent: 1 - - uid: 1627 + - uid: 497 components: - type: Transform - pos: -12.5,-6.5 + pos: 7.5,5.5 parent: 1 - - uid: 1628 + - uid: 500 components: - type: Transform - pos: -11.5,-6.5 + pos: 7.5,0.5 parent: 1 - - uid: 1629 + - uid: 501 components: - type: Transform - pos: -10.5,-6.5 + pos: 6.5,0.5 parent: 1 - - uid: 1630 + - uid: 504 components: - type: Transform - pos: -9.5,-6.5 + pos: 5.5,0.5 parent: 1 - - uid: 1631 + - uid: 505 components: - type: Transform - pos: -8.5,-6.5 + pos: 4.5,0.5 parent: 1 - - uid: 1902 + - uid: 506 components: - type: Transform - pos: 8.5,-5.5 + pos: 3.5,0.5 parent: 1 - - uid: 1903 + - uid: 507 components: - type: Transform - pos: 9.5,-5.5 + pos: 2.5,0.5 parent: 1 - - uid: 1904 + - uid: 508 components: - type: Transform - pos: 10.5,-5.5 + pos: 1.5,0.5 parent: 1 - - uid: 1988 + - uid: 509 components: - type: Transform - pos: -0.5,4.5 + pos: 0.5,0.5 parent: 1 - - uid: 1989 + - uid: 510 components: - type: Transform - pos: -0.5,5.5 + pos: -0.5,0.5 parent: 1 - - uid: 1990 + - uid: 511 components: - type: Transform - pos: -0.5,6.5 + pos: -1.5,0.5 parent: 1 - - uid: 1991 + - uid: 512 components: - type: Transform - pos: -0.5,7.5 + pos: -2.5,0.5 parent: 1 - - uid: 1992 + - uid: 513 components: - type: Transform - pos: -1.5,7.5 + pos: -3.5,0.5 parent: 1 -- proto: CableHV - entities: - - uid: 1310 + - uid: 514 components: - type: Transform - pos: 4.5,-0.5 + pos: -4.5,0.5 parent: 1 - - uid: 1311 + - uid: 515 components: - type: Transform - pos: 4.5,0.5 + pos: -5.5,0.5 parent: 1 - - uid: 1312 + - uid: 516 components: - type: Transform - pos: 4.5,1.5 + pos: -6.5,0.5 parent: 1 - - uid: 1314 + - uid: 517 components: - type: Transform - pos: 4.5,2.5 + pos: -7.5,0.5 parent: 1 - - uid: 1315 + - uid: 523 components: - type: Transform - pos: 4.5,3.5 + pos: 7.5,-5.5 parent: 1 - - uid: 1732 + - uid: 524 components: - type: Transform - pos: 5.5,1.5 + pos: 11.5,-1.5 parent: 1 - - uid: 1738 + - uid: 553 components: - type: Transform - pos: 7.5,1.5 + pos: 10.5,-1.5 parent: 1 - - uid: 1739 + - uid: 554 components: - type: Transform - pos: 6.5,1.5 + pos: 7.5,-6.5 parent: 1 -- proto: CableMV - entities: - - uid: 1316 + - uid: 579 components: - type: Transform - pos: 4.5,3.5 + pos: 8.5,12.5 parent: 1 - - uid: 1317 + - uid: 580 components: - type: Transform - pos: 4.5,2.5 + pos: 8.5,13.5 parent: 1 - - uid: 1318 + - uid: 592 components: - type: Transform - pos: 5.5,2.5 + pos: 9.5,2.5 parent: 1 - - uid: 1319 + - uid: 612 components: - type: Transform - pos: 5.5,1.5 + pos: -7.5,-0.5 parent: 1 - - uid: 1320 + - uid: 613 components: - type: Transform - pos: 5.5,0.5 + pos: -7.5,-1.5 parent: 1 - - uid: 1321 + - uid: 614 components: - type: Transform - pos: 5.5,-0.5 + pos: -8.5,-1.5 parent: 1 - - uid: 1322 + - uid: 615 components: - type: Transform - pos: 5.5,-1.5 + pos: -7.5,-2.5 parent: 1 - - uid: 1323 + - uid: 616 components: - type: Transform - pos: 5.5,-2.5 + pos: -7.5,-3.5 parent: 1 - - uid: 1324 + - uid: 618 components: - type: Transform - pos: 3.5,2.5 + pos: 8.5,0.5 parent: 1 - - uid: 1325 + - uid: 619 components: - type: Transform - pos: 3.5,1.5 + pos: 8.5,-0.5 parent: 1 - - uid: 1457 + - uid: 620 components: - type: Transform - pos: 4.5,-2.5 + pos: 8.5,-1.5 parent: 1 - - uid: 1458 + - uid: 621 components: - type: Transform - pos: 4.5,-3.5 + pos: 8.5,-2.5 parent: 1 - - uid: 1459 + - uid: 622 components: - type: Transform - pos: 4.5,-4.5 + pos: 8.5,-3.5 parent: 1 - - uid: 1460 + - uid: 624 components: - type: Transform - pos: 4.5,-5.5 + pos: 9.5,-1.5 parent: 1 - - uid: 1461 + - uid: 648 components: - type: Transform - pos: 4.5,-6.5 + pos: -4.5,4.5 parent: 1 - - uid: 1462 + - uid: 654 components: - type: Transform - pos: 4.5,-7.5 + pos: 8.5,14.5 parent: 1 - - uid: 1463 + - uid: 658 components: - type: Transform - pos: 4.5,-8.5 + pos: 9.5,1.5 parent: 1 - - uid: 1464 + - uid: 715 components: - type: Transform - pos: 4.5,-9.5 + pos: 9.5,0.5 parent: 1 - - uid: 1465 + - uid: 719 components: - type: Transform - pos: 4.5,-10.5 + pos: -0.5,-3.5 parent: 1 - - uid: 1466 + - uid: 733 components: - type: Transform - pos: 4.5,-11.5 + pos: 7.5,-4.5 parent: 1 - - uid: 1467 + - uid: 747 components: - type: Transform - pos: 4.5,-12.5 + pos: 0.5,-3.5 parent: 1 - - uid: 1468 + - uid: 796 components: - type: Transform - pos: 4.5,-13.5 + pos: 5.5,-3.5 parent: 1 - - uid: 1469 + - uid: 797 components: - type: Transform - pos: 4.5,-14.5 + pos: 4.5,-3.5 parent: 1 - - uid: 1470 + - uid: 798 components: - type: Transform - pos: 4.5,-15.5 + pos: 7.5,-3.5 parent: 1 - - uid: 1471 + - uid: 799 components: - type: Transform - pos: 4.5,-16.5 + pos: 6.5,-3.5 parent: 1 - - uid: 1472 + - uid: 812 components: - type: Transform - pos: 4.5,-17.5 + pos: 7.5,14.5 parent: 1 - - uid: 1473 + - uid: 835 components: - type: Transform - pos: 4.5,-18.5 + pos: 2.5,-3.5 parent: 1 - - uid: 1474 + - uid: 836 components: - type: Transform - pos: 4.5,-19.5 + pos: -1.5,-3.5 parent: 1 - - uid: 1475 + - uid: 837 components: - type: Transform - pos: 4.5,-20.5 + pos: 1.5,-3.5 parent: 1 - - uid: 1476 + - uid: 875 components: - type: Transform - pos: 3.5,-20.5 + pos: -1.5,14.5 parent: 1 - - uid: 1477 + - uid: 876 components: - type: Transform - pos: 2.5,-20.5 + pos: -0.5,14.5 parent: 1 - - uid: 1478 + - uid: 877 components: - type: Transform - pos: 2.5,-19.5 + pos: -6.5,9.5 parent: 1 - - uid: 1479 + - uid: 878 components: - type: Transform - pos: 2.5,-18.5 + pos: -7.5,9.5 parent: 1 - - uid: 1480 + - uid: 898 components: - type: Transform - pos: 2.5,-17.5 + pos: 6.5,14.5 parent: 1 - - uid: 1481 + - uid: 899 components: - type: Transform - pos: 2.5,-16.5 + pos: 3.5,14.5 parent: 1 - - uid: 1482 + - uid: 1004 components: - type: Transform - pos: 2.5,-15.5 + pos: 6.5,9.5 parent: 1 - - uid: 1483 + - uid: 1005 components: - type: Transform - pos: 2.5,-14.5 + pos: 6.5,10.5 parent: 1 - - uid: 1484 + - uid: 1006 components: - type: Transform - pos: 2.5,-13.5 + pos: 6.5,11.5 parent: 1 - - uid: 1485 + - uid: 1074 components: - type: Transform - pos: 2.5,-12.5 + pos: 3.5,9.5 parent: 1 - - uid: 1486 + - uid: 1075 components: - type: Transform - pos: 2.5,-11.5 + pos: 3.5,10.5 parent: 1 - - uid: 1487 + - uid: 1187 components: - type: Transform - pos: 2.5,-10.5 + pos: -17.5,29.5 parent: 1 - - uid: 1488 + - uid: 1238 components: - type: Transform - pos: 2.5,-9.5 + pos: 14.5,32.5 parent: 1 - - uid: 1489 + - uid: 1295 components: - type: Transform - pos: 2.5,-8.5 + pos: 2.5,31.5 parent: 1 - - uid: 1490 + - uid: 1305 components: - type: Transform - pos: 2.5,-7.5 + pos: 11.5,28.5 parent: 1 - - uid: 1491 + - uid: 1306 components: - type: Transform - pos: 2.5,-6.5 + pos: 12.5,22.5 parent: 1 - - uid: 1492 + - uid: 1417 components: - type: Transform - pos: 2.5,-5.5 + pos: -15.5,32.5 parent: 1 - - uid: 1493 + - uid: 1418 components: - type: Transform - pos: 2.5,-4.5 + pos: -16.5,31.5 parent: 1 - uid: 1494 components: - type: Transform - pos: 1.5,-4.5 + pos: 9.5,12.5 parent: 1 - uid: 1495 components: - type: Transform - pos: 0.5,-4.5 + pos: 10.5,12.5 parent: 1 - uid: 1496 components: - type: Transform - pos: -0.5,-4.5 + pos: 11.5,12.5 parent: 1 - uid: 1497 components: - type: Transform - pos: -1.5,-4.5 + pos: 12.5,12.5 parent: 1 - uid: 1498 components: - type: Transform - pos: -2.5,-4.5 + pos: 13.5,12.5 parent: 1 - uid: 1499 components: - type: Transform - pos: -3.5,-4.5 + pos: 14.5,12.5 parent: 1 - uid: 1500 components: - type: Transform - pos: -4.5,-4.5 + pos: 15.5,12.5 parent: 1 - uid: 1501 components: - type: Transform - pos: -5.5,-4.5 + pos: 16.5,12.5 parent: 1 - uid: 1502 components: - type: Transform - pos: -6.5,-4.5 + pos: 17.5,12.5 parent: 1 - uid: 1503 components: - type: Transform - pos: -7.5,-4.5 + pos: 17.5,13.5 parent: 1 - uid: 1504 components: - type: Transform - pos: -7.5,-5.5 + pos: 17.5,14.5 parent: 1 - uid: 1505 components: - type: Transform - pos: -8.5,-4.5 + pos: 17.5,15.5 parent: 1 - uid: 1506 components: - type: Transform - pos: -9.5,-4.5 + pos: 17.5,16.5 parent: 1 - uid: 1507 components: - type: Transform - pos: -10.5,-4.5 + pos: 17.5,17.5 parent: 1 - uid: 1508 components: - type: Transform - pos: -11.5,-4.5 + pos: 17.5,18.5 parent: 1 - uid: 1509 components: - type: Transform - pos: -12.5,-4.5 + pos: 16.5,18.5 parent: 1 - uid: 1510 components: - type: Transform - pos: -13.5,-4.5 + pos: 15.5,18.5 parent: 1 - uid: 1511 components: - type: Transform - pos: -14.5,-4.5 + pos: 14.5,18.5 parent: 1 - uid: 1512 components: - type: Transform - pos: -15.5,-4.5 + pos: 13.5,18.5 parent: 1 - uid: 1513 components: - type: Transform - pos: -16.5,-4.5 + pos: 12.5,18.5 parent: 1 - uid: 1514 components: - type: Transform - pos: -17.5,-4.5 + pos: 11.5,18.5 parent: 1 - uid: 1515 components: - type: Transform - pos: -18.5,-4.5 + pos: 11.5,19.5 parent: 1 - uid: 1516 components: - type: Transform - pos: -19.5,-4.5 + pos: 11.5,20.5 parent: 1 - uid: 1517 components: - type: Transform - pos: -19.5,-5.5 + pos: 11.5,21.5 parent: 1 - uid: 1518 components: - type: Transform - pos: -19.5,-6.5 + pos: 11.5,22.5 parent: 1 - uid: 1519 components: - type: Transform - pos: -20.5,-6.5 + pos: 11.5,23.5 parent: 1 - uid: 1520 components: - type: Transform - pos: -21.5,-6.5 + pos: 11.5,24.5 parent: 1 - uid: 1521 components: - type: Transform - pos: -22.5,-6.5 + pos: 11.5,25.5 parent: 1 - uid: 1522 components: - type: Transform - pos: -23.5,-6.5 + pos: 11.5,26.5 parent: 1 - uid: 1523 components: - type: Transform - pos: -24.5,-6.5 + pos: 11.5,27.5 parent: 1 - uid: 1524 components: - type: Transform - pos: -25.5,-6.5 + pos: 2.5,30.5 parent: 1 - - uid: 1525 + - uid: 1527 components: - type: Transform - pos: -26.5,-6.5 + pos: -17.5,30.5 parent: 1 - - uid: 1526 + - uid: 1540 components: - type: Transform - pos: -27.5,-6.5 + pos: 13.5,22.5 parent: 1 - - uid: 1527 + - uid: 1541 components: - type: Transform - pos: -27.5,-5.5 + pos: 14.5,22.5 parent: 1 - - uid: 1528 + - uid: 1542 components: - type: Transform - pos: -27.5,-4.5 + pos: 15.5,22.5 parent: 1 - - uid: 1529 + - uid: 1543 components: - type: Transform - pos: -26.5,-4.5 + pos: 16.5,22.5 parent: 1 - - uid: 1530 + - uid: 1544 components: - type: Transform - pos: -25.5,-4.5 + pos: 17.5,22.5 parent: 1 - - uid: 1531 + - uid: 1545 components: - type: Transform - pos: -24.5,-4.5 + pos: 18.5,22.5 parent: 1 - - uid: 1532 + - uid: 1546 components: - type: Transform - pos: -23.5,-4.5 + pos: 19.5,22.5 parent: 1 - - uid: 1533 + - uid: 1547 components: - type: Transform - pos: -22.5,-4.5 + pos: 20.5,22.5 parent: 1 - - uid: 1534 + - uid: 1548 components: - type: Transform - pos: -21.5,-4.5 + pos: 21.5,22.5 parent: 1 - - uid: 1535 + - uid: 1549 components: - type: Transform - pos: -21.5,-3.5 + pos: 22.5,22.5 parent: 1 - - uid: 1536 + - uid: 1550 components: - type: Transform - pos: -21.5,-2.5 + pos: 23.5,22.5 parent: 1 - - uid: 1537 + - uid: 1551 components: - type: Transform - pos: -20.5,-2.5 + pos: 24.5,22.5 parent: 1 - - uid: 1538 + - uid: 1552 components: - type: Transform - pos: -19.5,-2.5 + pos: 24.5,21.5 parent: 1 - - uid: 1539 + - uid: 1553 components: - type: Transform - pos: -18.5,-2.5 + pos: 24.5,23.5 parent: 1 - - uid: 1540 + - uid: 1554 components: - type: Transform - pos: -17.5,-2.5 + pos: -16.5,30.5 parent: 1 - - uid: 1541 + - uid: 1625 components: - type: Transform - pos: -16.5,-2.5 + pos: -16.5,32.5 parent: 1 - - uid: 1542 + - uid: 1690 components: - type: Transform - pos: -15.5,-2.5 + pos: 15.5,28.5 parent: 1 - - uid: 1543 + - uid: 1691 components: - type: Transform - pos: -14.5,-2.5 + pos: 15.5,31.5 parent: 1 - - uid: 1544 + - uid: 1692 components: - type: Transform - pos: -13.5,-2.5 + pos: 16.5,31.5 parent: 1 - - uid: 1545 + - uid: 1693 components: - type: Transform - pos: -12.5,-2.5 + pos: 13.5,28.5 parent: 1 - - uid: 1546 + - uid: 1768 components: - type: Transform - pos: -11.5,-2.5 + pos: 3.5,30.5 parent: 1 - - uid: 1547 + - uid: 1769 components: - type: Transform - pos: -10.5,-2.5 + pos: 4.5,30.5 parent: 1 - - uid: 1548 + - uid: 1770 components: - type: Transform - pos: -9.5,-2.5 + pos: 5.5,30.5 parent: 1 - - uid: 1549 + - uid: 1771 components: - type: Transform - pos: -8.5,-2.5 + pos: 15.5,32.5 parent: 1 - - uid: 1550 + - uid: 1772 components: - type: Transform - pos: -7.5,-2.5 + pos: 16.5,29.5 parent: 1 - - uid: 1551 + - uid: 1773 components: - type: Transform - pos: -6.5,-2.5 + pos: 12.5,28.5 parent: 1 - - uid: 1552 + - uid: 1774 components: - type: Transform - pos: -5.5,-2.5 + pos: 16.5,28.5 parent: 1 - - uid: 1553 + - uid: 1775 components: - type: Transform - pos: -4.5,-2.5 + pos: 2.5,32.5 parent: 1 - - uid: 1554 + - uid: 1776 components: - type: Transform - pos: -3.5,-2.5 + pos: 1.5,32.5 parent: 1 - - uid: 1555 + - uid: 1777 components: - type: Transform - pos: -2.5,-2.5 + pos: 1.5,33.5 parent: 1 - - uid: 1556 + - uid: 1778 components: - type: Transform - pos: -1.5,-2.5 + pos: 0.5,33.5 parent: 1 - - uid: 1557 + - uid: 1779 components: - type: Transform - pos: -0.5,-2.5 + pos: 0.5,34.5 parent: 1 - - uid: 1558 + - uid: 1780 components: - type: Transform - pos: 0.5,-2.5 + pos: 0.5,35.5 parent: 1 - - uid: 1559 + - uid: 1781 components: - type: Transform - pos: 1.5,-2.5 + pos: 0.5,36.5 parent: 1 - - uid: 1560 + - uid: 1782 components: - type: Transform - pos: 2.5,-2.5 + pos: -0.5,36.5 parent: 1 - - uid: 1561 + - uid: 1783 components: - type: Transform - pos: 3.5,-2.5 + pos: -1.5,36.5 parent: 1 -- proto: CableTerminal - entities: - - uid: 1993 + - uid: 1784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 + pos: -2.5,36.5 parent: 1 -- proto: CannonBall - entities: - - uid: 1671 + - uid: 1785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5590277,3.5358868 + pos: -3.5,36.5 parent: 1 - - uid: 1998 + - uid: 1786 components: - type: Transform - pos: -8.796216,-0.5835842 + pos: -4.5,36.5 parent: 1 - - uid: 1999 + - uid: 1787 components: - type: Transform - pos: -8.858716,-0.3492092 + pos: -5.5,36.5 parent: 1 - - uid: 2000 + - uid: 1788 components: - type: Transform - pos: -8.624341,-0.3804592 + pos: -6.5,36.5 parent: 1 - - uid: 2005 + - uid: 1789 components: - type: Transform - pos: -8.093091,-0.5835842 + pos: -6.5,35.5 parent: 1 -- proto: CannonBallGlassshot - entities: - - uid: 2001 + - uid: 1790 components: - type: Transform - pos: -8.358716,-0.5679592 + pos: -6.5,34.5 parent: 1 - - uid: 2002 + - uid: 1791 components: - type: Transform - pos: -8.155591,-0.2710842 + pos: -6.5,33.5 parent: 1 -- proto: CannonBallGrapeshot - entities: - - uid: 2003 + - uid: 1792 components: - type: Transform - pos: -8.624341,-0.17733419 + pos: -7.5,33.5 parent: 1 - - uid: 2004 + - uid: 1793 components: - type: Transform - pos: -8.889966,-0.4585842 + pos: -8.5,33.5 parent: 1 -- proto: CarpetBlack - entities: - - uid: 1824 + - uid: 1794 components: - type: Transform - pos: -5.5,-7.5 + pos: -8.5,32.5 parent: 1 - - uid: 1825 + - uid: 1795 components: - type: Transform - pos: -5.5,-8.5 + pos: -9.5,32.5 parent: 1 - - uid: 1826 + - uid: 1796 components: - type: Transform - pos: -5.5,-9.5 + pos: -10.5,32.5 parent: 1 - - uid: 1827 + - uid: 1797 components: - type: Transform - pos: -3.5,-7.5 + pos: -11.5,32.5 parent: 1 - - uid: 1828 + - uid: 1798 components: - type: Transform - pos: -3.5,-8.5 + pos: -12.5,32.5 parent: 1 - - uid: 1829 + - uid: 1799 + components: + - type: Transform + pos: -13.5,32.5 + parent: 1 + - uid: 1800 + components: + - type: Transform + pos: -14.5,32.5 + parent: 1 + - uid: 1803 + components: + - type: Transform + pos: 16.5,30.5 + parent: 1 + - uid: 1806 + components: + - type: Transform + pos: 14.5,28.5 + parent: 1 + - uid: 1876 + components: + - type: Transform + pos: 13.5,32.5 + parent: 1 + - uid: 1881 + components: + - type: Transform + pos: -17.5,28.5 + parent: 1 + - uid: 1882 components: - type: Transform - pos: -3.5,-9.5 + pos: -17.5,27.5 parent: 1 - uid: 1883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,0.5 + pos: -17.5,26.5 parent: 1 - uid: 1884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,1.5 + pos: -17.5,25.5 parent: 1 - uid: 1885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,0.5 + pos: -17.5,24.5 parent: 1 - uid: 1886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,1.5 + pos: -17.5,23.5 parent: 1 - uid: 1887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,0.5 + pos: -17.5,22.5 parent: 1 - uid: 1888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,1.5 + pos: -17.5,21.5 parent: 1 - uid: 1889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,3.5 + pos: -17.5,20.5 parent: 1 - uid: 1890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,3.5 + pos: -17.5,19.5 parent: 1 - uid: 1891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,1.5 + pos: -17.5,18.5 parent: 1 - uid: 1892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 + pos: -17.5,17.5 parent: 1 - uid: 1893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 + pos: -17.5,16.5 parent: 1 - uid: 1894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,1.5 + pos: -17.5,15.5 parent: 1 - uid: 1895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,0.5 + pos: -17.5,14.5 parent: 1 - uid: 1896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-0.5 + pos: -17.5,13.5 parent: 1 -- proto: Catwalk - entities: - - uid: 1036 + - uid: 1897 components: - type: Transform - pos: -26.5,-6.5 + pos: -16.5,13.5 parent: 1 - - uid: 1037 + - uid: 1898 components: - type: Transform - pos: -25.5,-6.5 + pos: -16.5,12.5 parent: 1 - - uid: 1038 + - uid: 1899 components: - type: Transform - pos: -24.5,-6.5 + pos: -15.5,12.5 parent: 1 - - uid: 1039 + - uid: 1900 components: - type: Transform - pos: -23.5,-6.5 + pos: -14.5,12.5 parent: 1 - - uid: 1040 + - uid: 1901 components: - type: Transform - pos: -22.5,-6.5 + pos: -13.5,12.5 parent: 1 - - uid: 1041 + - uid: 1902 components: - type: Transform - pos: -21.5,-6.5 + pos: -12.5,12.5 parent: 1 - - uid: 1042 + - uid: 1903 components: - type: Transform - pos: -20.5,-6.5 + pos: -11.5,12.5 parent: 1 - - uid: 1043 + - uid: 1904 components: - type: Transform - pos: -19.5,-6.5 + pos: -10.5,12.5 parent: 1 - - uid: 1044 + - uid: 2032 components: - type: Transform - pos: -19.5,-5.5 + pos: 9.5,32.5 parent: 1 - - uid: 1045 + - uid: 2033 components: - type: Transform - pos: -19.5,-4.5 + pos: 12.5,32.5 parent: 1 - - uid: 1046 + - uid: 2034 components: - type: Transform - pos: -18.5,-4.5 + pos: 10.5,32.5 parent: 1 - - uid: 1047 + - uid: 2036 components: - type: Transform - pos: -17.5,-4.5 + pos: 11.5,32.5 parent: 1 - - uid: 1048 + - uid: 2037 components: - type: Transform - pos: -16.5,-4.5 + pos: 8.5,32.5 parent: 1 - - uid: 1049 + - uid: 2038 components: - type: Transform - pos: -15.5,-4.5 + pos: 7.5,32.5 parent: 1 - - uid: 1050 + - uid: 2039 components: - type: Transform - pos: -14.5,-4.5 + pos: 6.5,32.5 parent: 1 - - uid: 1051 + - uid: 2040 components: - type: Transform - pos: -13.5,-4.5 + pos: 5.5,32.5 parent: 1 - - uid: 1052 + - uid: 2041 components: - type: Transform - pos: -12.5,-4.5 + pos: 5.5,31.5 parent: 1 - - uid: 1053 +- proto: CableHV + entities: + - uid: 27 components: - type: Transform - pos: -11.5,-4.5 + pos: -5.5,14.5 parent: 1 - - uid: 1054 + - uid: 88 components: - type: Transform - pos: -10.5,-4.5 + pos: -6.5,14.5 parent: 1 - - uid: 1056 + - uid: 91 components: - type: Transform - pos: -8.5,-4.5 + pos: -7.5,14.5 parent: 1 - - uid: 1057 + - uid: 126 components: - type: Transform - pos: -7.5,-4.5 + pos: -8.5,13.5 parent: 1 - - uid: 1058 + - uid: 196 components: - type: Transform - pos: -6.5,-4.5 + pos: -5.5,11.5 parent: 1 - - uid: 1059 + - uid: 220 components: - type: Transform - pos: -5.5,-4.5 + pos: -5.5,12.5 parent: 1 - - uid: 1060 + - uid: 245 components: - type: Transform - pos: -4.5,-4.5 + pos: -6.5,11.5 parent: 1 - - uid: 1061 + - uid: 294 components: - type: Transform - pos: -3.5,-4.5 + pos: -5.5,13.5 parent: 1 - - uid: 1062 + - uid: 456 components: - type: Transform - pos: -2.5,-4.5 + pos: -8.5,11.5 parent: 1 - - uid: 1063 + - uid: 593 components: - type: Transform - pos: -1.5,-4.5 + pos: -7.5,11.5 parent: 1 - - uid: 1064 + - uid: 946 components: - type: Transform - pos: -0.5,-4.5 + pos: -7.5,13.5 parent: 1 - - uid: 1065 + - uid: 952 components: - type: Transform - pos: 0.5,-4.5 + pos: -8.5,14.5 parent: 1 - - uid: 1066 +- proto: CableMV + entities: + - uid: 19 components: - type: Transform - pos: 1.5,-4.5 + pos: -2.5,9.5 parent: 1 - - uid: 1067 + - uid: 25 components: - type: Transform - pos: 2.5,-4.5 + pos: 4.5,7.5 parent: 1 - - uid: 1068 + - uid: 34 components: - type: Transform - pos: 2.5,-5.5 + pos: -0.5,6.5 parent: 1 - - uid: 1069 + - uid: 38 components: - type: Transform - pos: 2.5,-6.5 + pos: -0.5,9.5 parent: 1 - - uid: 1070 + - uid: 67 components: - type: Transform - pos: 2.5,-7.5 + pos: -0.5,8.5 parent: 1 - - uid: 1071 + - uid: 79 components: - type: Transform - pos: 2.5,-8.5 + pos: -0.5,7.5 parent: 1 - - uid: 1072 + - uid: 85 components: - type: Transform - pos: 2.5,-9.5 + pos: -0.5,10.5 parent: 1 - - uid: 1073 + - uid: 99 components: - type: Transform - pos: 2.5,-10.5 + pos: -3.5,10.5 parent: 1 - - uid: 1074 + - uid: 105 components: - type: Transform - pos: 2.5,-11.5 + pos: 0.5,9.5 parent: 1 - - uid: 1075 + - uid: 158 components: - type: Transform - pos: 2.5,-12.5 + pos: 5.5,8.5 parent: 1 - - uid: 1076 + - uid: 169 components: - type: Transform - pos: 2.5,-13.5 + pos: -4.5,10.5 parent: 1 - - uid: 1077 + - uid: 183 components: - type: Transform - pos: 2.5,-14.5 + pos: -2.5,10.5 parent: 1 - - uid: 1078 + - uid: 200 components: - type: Transform - pos: 2.5,-15.5 + pos: 5.5,3.5 parent: 1 - - uid: 1079 + - uid: 264 components: - type: Transform - pos: 2.5,-16.5 + pos: -8.5,11.5 parent: 1 - - uid: 1080 + - uid: 267 components: - type: Transform - pos: 2.5,-17.5 + pos: -8.5,10.5 parent: 1 - - uid: 1081 + - uid: 394 components: - type: Transform - pos: 2.5,-18.5 + pos: -7.5,10.5 parent: 1 - - uid: 1082 + - uid: 401 components: - type: Transform - pos: 2.5,-19.5 + pos: 1.5,6.5 parent: 1 - - uid: 1083 + - uid: 402 components: - type: Transform - pos: 4.5,-19.5 + pos: 0.5,6.5 parent: 1 - - uid: 1084 + - uid: 414 components: - type: Transform - pos: 4.5,-18.5 + pos: 2.5,6.5 parent: 1 - - uid: 1085 + - uid: 415 components: - type: Transform - pos: 4.5,-17.5 + pos: 3.5,6.5 parent: 1 - - uid: 1086 + - uid: 416 components: - type: Transform - pos: 4.5,-16.5 + pos: 4.5,6.5 parent: 1 - - uid: 1087 + - uid: 417 components: - type: Transform - pos: 4.5,-15.5 + pos: 4.5,4.5 parent: 1 - - uid: 1088 + - uid: 419 components: - type: Transform - pos: 4.5,-14.5 + pos: 4.5,5.5 parent: 1 - - uid: 1089 + - uid: 493 components: - type: Transform - pos: 4.5,-13.5 + pos: 6.5,3.5 parent: 1 - - uid: 1090 + - uid: 502 components: - type: Transform - pos: 4.5,-12.5 + pos: 7.5,3.5 parent: 1 - - uid: 1091 + - uid: 503 components: - type: Transform - pos: 4.5,-11.5 + pos: 8.5,3.5 parent: 1 - - uid: 1092 + - uid: 518 components: - type: Transform - pos: 4.5,-10.5 + pos: 9.5,3.5 parent: 1 - - uid: 1093 + - uid: 577 components: - type: Transform - pos: 4.5,-9.5 + pos: 9.5,2.5 parent: 1 - - uid: 1094 + - uid: 659 components: - type: Transform - pos: 4.5,-8.5 + pos: 4.5,3.5 parent: 1 - - uid: 1095 + - uid: 807 components: - type: Transform - pos: 4.5,-7.5 + pos: -1.5,10.5 parent: 1 - - uid: 1096 + - uid: 1029 components: - type: Transform - pos: 4.5,-6.5 + pos: 4.5,8.5 parent: 1 - - uid: 1097 + - uid: 1031 components: - type: Transform - pos: 4.5,-5.5 + pos: -6.5,10.5 parent: 1 - - uid: 1098 + - uid: 1032 components: - type: Transform - pos: 4.5,-4.5 + pos: -5.5,10.5 parent: 1 - - uid: 1099 + - uid: 1998 components: - type: Transform - pos: 4.5,-3.5 + pos: 9.5,17.5 parent: 1 - - uid: 1100 + - uid: 1999 components: - type: Transform - pos: 4.5,-2.5 + pos: 9.5,16.5 parent: 1 - - uid: 1101 + - uid: 2000 components: - type: Transform - pos: 3.5,-2.5 + pos: 10.5,16.5 parent: 1 - - uid: 1102 + - uid: 2001 components: - type: Transform - pos: 2.5,-2.5 + pos: 10.5,15.5 parent: 1 - - uid: 1103 + - uid: 2002 components: - type: Transform - pos: 1.5,-2.5 + pos: 10.5,14.5 parent: 1 - - uid: 1104 +- proto: CableTerminal + entities: + - uid: 965 components: - type: Transform - pos: 0.5,-2.5 + rot: -1.5707963267948966 rad + pos: -6.5,11.5 parent: 1 - - uid: 1105 +- proto: CannonBall + entities: + - uid: 643 components: - type: Transform - pos: -0.5,-2.5 + pos: -1.6551356,11.813257 parent: 1 - - uid: 1106 + - uid: 677 components: - type: Transform - pos: -1.5,-2.5 + pos: -1.6447191,11.55284 parent: 1 - - uid: 1107 + - uid: 678 components: - type: Transform - pos: -2.5,-2.5 + pos: -1.2801356,11.823674 parent: 1 - - uid: 1108 + - uid: 679 components: - type: Transform - pos: -3.5,-2.5 + pos: -1.457219,11.64659 parent: 1 - - uid: 1109 + - uid: 680 components: - type: Transform - pos: -4.5,-2.5 + pos: -1.269719,11.55284 parent: 1 - - uid: 1110 + - uid: 2006 components: - type: Transform - pos: -5.5,-2.5 + rot: 1.5707963267948966 rad + pos: 22.340786,23.304857 parent: 1 - - uid: 1111 + - uid: 2007 components: - type: Transform - pos: -6.5,-2.5 + rot: 1.5707963267948966 rad + pos: 22.48662,23.502775 parent: 1 - - uid: 1112 + - uid: 2008 components: - type: Transform - pos: -7.5,-2.5 + rot: 1.5707963267948966 rad + pos: 22.61162,23.304857 parent: 1 - - uid: 1113 +- proto: CannonBallGlassshot + entities: + - uid: 681 components: - type: Transform - pos: -8.5,-2.5 + pos: -2.3322191,11.64659 parent: 1 - - uid: 1114 + - uid: 684 components: - type: Transform - pos: -9.5,-2.5 + pos: -2.5926356,11.792424 parent: 1 - - uid: 1115 +- proto: CannonBallGrapeshot + entities: + - uid: 682 components: - type: Transform - pos: -10.5,-2.5 + pos: -3.3530524,11.698674 parent: 1 - - uid: 1116 + - uid: 687 components: - type: Transform - pos: -11.5,-2.5 + pos: -3.5926356,11.813257 parent: 1 - - uid: 1117 +- proto: CargoPallet + entities: + - uid: 201 components: - type: Transform - pos: -12.5,-2.5 + pos: 5.5,-2.5 parent: 1 - - uid: 1118 + - uid: 209 components: - type: Transform - pos: -13.5,-2.5 + pos: 5.5,-1.5 parent: 1 - - uid: 1119 + - uid: 229 components: - type: Transform - pos: -14.5,-2.5 + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 parent: 1 - - uid: 1120 + - uid: 230 components: - type: Transform - pos: -15.5,-2.5 + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 parent: 1 - - uid: 1121 + - uid: 231 components: - type: Transform - pos: -16.5,-2.5 + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 parent: 1 - - uid: 1122 + - uid: 237 components: - type: Transform - pos: -17.5,-2.5 + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 parent: 1 - - uid: 1123 + - uid: 247 components: - type: Transform - pos: -18.5,-2.5 + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 parent: 1 - - uid: 1124 + - uid: 258 components: - type: Transform - pos: -19.5,-2.5 + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 parent: 1 - - uid: 1125 + - uid: 265 components: - type: Transform - pos: -20.5,-2.5 + pos: 6.5,-1.5 parent: 1 - - uid: 1126 + - uid: 563 components: - type: Transform - pos: -21.5,-2.5 + pos: 7.5,-2.5 parent: 1 - - uid: 1128 + - uid: 603 components: - type: Transform - pos: -21.5,-3.5 + pos: 6.5,-2.5 parent: 1 - - uid: 1129 + - uid: 626 components: - type: Transform - pos: -21.5,-4.5 + pos: 7.5,-1.5 parent: 1 - - uid: 1130 +- proto: CarpetBlack + entities: + - uid: 1845 components: - type: Transform - pos: -22.5,-4.5 + rot: 1.5707963267948966 rad + pos: -2.5,34.5 parent: 1 - - uid: 1131 + - uid: 1846 components: - type: Transform - pos: -23.5,-4.5 + rot: 1.5707963267948966 rad + pos: -3.5,34.5 parent: 1 - - uid: 1132 + - uid: 1849 components: - type: Transform - pos: -24.5,-4.5 + rot: 1.5707963267948966 rad + pos: -3.5,35.5 parent: 1 - - uid: 1133 + - uid: 1857 components: - type: Transform - pos: -25.5,-4.5 + rot: 1.5707963267948966 rad + pos: -3.5,36.5 parent: 1 - - uid: 1134 + - uid: 1860 components: - type: Transform - pos: -26.5,-4.5 + rot: 1.5707963267948966 rad + pos: -2.5,37.5 parent: 1 - - uid: 1279 + - uid: 1865 components: - type: Transform - pos: -9.5,-4.5 + rot: 1.5707963267948966 rad + pos: -2.5,35.5 parent: 1 - - uid: 1282 + - uid: 1866 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-2.5 + pos: -2.5,36.5 parent: 1 - - uid: 1292 + - uid: 1867 components: - type: Transform - pos: 8.5,-3.5 + rot: 1.5707963267948966 rad + pos: -3.5,37.5 parent: 1 - - uid: 1293 +- proto: Catwalk + entities: + - uid: 6 components: - type: Transform - pos: 8.5,-4.5 + pos: -5.5,13.5 parent: 1 - - uid: 1294 + - uid: 115 components: - type: Transform - pos: 10.5,-3.5 + pos: -5.5,12.5 parent: 1 - - uid: 1295 + - uid: 124 components: - type: Transform - pos: 10.5,-4.5 + rot: -1.5707963267948966 rad + pos: 0.5,11.5 parent: 1 - - uid: 1298 + - uid: 197 components: - type: Transform - pos: 5.5,-0.5 + rot: 1.5707963267948966 rad + pos: -6.5,11.5 parent: 1 - - uid: 1299 + - uid: 215 components: - type: Transform - pos: 5.5,0.5 + rot: 1.5707963267948966 rad + pos: -5.5,11.5 parent: 1 - - uid: 1300 + - uid: 269 components: - type: Transform - pos: 5.5,1.5 + rot: -1.5707963267948966 rad + pos: -0.5,13.5 parent: 1 - - uid: 1301 + - uid: 324 components: - type: Transform - pos: 5.5,2.5 + rot: 3.141592653589793 rad + pos: -8.5,9.5 parent: 1 -- proto: ChairOfficeDark - entities: - - uid: 1881 + - uid: 441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,1.5 + pos: -8.5,23.5 parent: 1 - - uid: 1882 + - uid: 465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,2.5 + pos: -6.5,7.5 parent: 1 -- proto: ChairWood - entities: - - uid: 1768 + - uid: 466 components: - type: Transform - pos: -5.5,-7.5 + pos: -5.5,7.5 parent: 1 - - uid: 1769 + - uid: 520 components: - type: Transform - pos: -5.5,-9.5 + rot: -1.5707963267948966 rad + pos: 8.5,12.5 parent: 1 - - uid: 1770 + - uid: 604 components: - type: Transform - pos: -3.5,-7.5 + rot: -1.5707963267948966 rad + pos: 8.5,11.5 parent: 1 - - uid: 1771 + - uid: 627 components: - type: Transform - pos: -3.5,-9.5 + pos: -7.5,24.5 parent: 1 - - uid: 1917 + - uid: 629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.323788,7.7902884 + pos: -5.5,6.5 parent: 1 -- proto: ClosetChefFilled - entities: - - uid: 1699 + - uid: 636 components: - type: Transform - pos: -9.5,-6.5 + pos: -2.5,20.5 parent: 1 -- proto: ClothingEyesEyepatch - entities: - - uid: 1898 + - uid: 638 components: - type: Transform - pos: -0.6632185,1.4343771 + pos: -9.5,23.5 parent: 1 - - uid: 1899 + - uid: 642 components: - type: Transform - pos: -5.5918703,-9.232764 + pos: 1.5,23.5 parent: 1 - - uid: 1900 + - uid: 700 components: - type: Transform - pos: -2.2637453,-11.560889 + pos: 1.5,22.5 parent: 1 -- proto: ClothingHeadHatPirate - entities: - - uid: 1664 + - uid: 701 components: - type: Transform - pos: 2.7715876,0.39065337 + pos: 2.5,22.5 parent: 1 -- proto: ClothingHeadHatPirateTricord - entities: - - uid: 1663 + - uid: 704 components: - type: Transform - pos: 2.1622126,1.1406534 + pos: -1.5,17.5 parent: 1 -- proto: ClothingOuterCoatPirate - entities: - - uid: 1901 + - uid: 705 components: - type: Transform - pos: -2.3400846,1.1901393 + pos: -2.5,29.5 parent: 1 -- proto: ClothingUniformJumpsuitPirate - entities: - - uid: 1665 + - uid: 708 components: - type: Transform - pos: 2.1622126,0.41409087 + pos: -1.5,19.5 parent: 1 -- proto: ComputerBlackMarketBankATM - entities: - - uid: 1909 + - uid: 710 components: - type: Transform - pos: -6.5,-0.5 + pos: 2.5,23.5 parent: 1 - - type: ContainerContainer - containers: - bank-ATM-cashSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - board: !type:Container - showEnts: False - occludes: True - ents: [] -- proto: ComputerBroken - entities: - - uid: 574 + - uid: 743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,2.5 + pos: -9.5,24.5 parent: 1 -- proto: ComputerPowerMonitoring - entities: - - uid: 570 + - uid: 744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,1.5 + pos: -2.5,30.5 parent: 1 -- proto: ComputerShipyardBlackMarket - entities: - - uid: 855 + - uid: 760 components: - type: Transform - pos: -7.5,-0.5 + rot: 1.5707963267948966 rad + pos: -7.5,11.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: CrateFunPirate - entities: - - uid: 1680 + - uid: 764 components: - type: Transform - pos: 0.5,3.5 + pos: -8.5,24.5 parent: 1 -- proto: CrateHydroponicsSeeds - entities: - - uid: 1800 + - uid: 775 components: - type: Transform - pos: -15.5,-7.5 + pos: -7.5,23.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 -- proto: CratePirateChest - entities: - - uid: 1658 + - uid: 777 components: - type: Transform - pos: -4.5,0.5 + pos: -6.5,24.5 parent: 1 -- proto: CratePirateChestCaptain - entities: - - uid: 1657 + - uid: 813 components: - type: Transform - pos: -4.5,-0.5 + rot: 3.141592653589793 rad + pos: 4.5,14.5 parent: 1 -- proto: CrateStoneGrave - entities: - - uid: 1017 + - uid: 820 components: - type: Transform - pos: 4.5,7.5 + pos: -8.5,8.5 parent: 1 -- proto: CrateWoodenGrave - entities: - - uid: 1136 + - uid: 821 components: - type: Transform - pos: -14.5,2.5 + pos: -8.5,7.5 parent: 1 -- proto: DisposalUnit - entities: - - uid: 576 + - uid: 822 components: - type: Transform - pos: 7.5,-0.5 + pos: -8.5,6.5 parent: 1 - - uid: 581 + - uid: 823 components: - type: Transform - pos: -1.5,-6.5 + pos: -8.5,5.5 parent: 1 - - uid: 1803 + - uid: 824 components: - type: Transform - pos: -0.5,3.5 + pos: -8.5,4.5 parent: 1 -- proto: DogBed - entities: - - uid: 1667 + - uid: 825 components: - type: Transform - pos: -7.5,-13.5 + pos: -8.5,3.5 parent: 1 -- proto: Dresser - entities: - - uid: 519 + - uid: 843 components: - type: Transform - pos: 2.5,2.5 + pos: 4.5,23.5 parent: 1 -- proto: DrinkBottleAle - entities: - - uid: 1807 + - uid: 845 components: - type: Transform - pos: -2.6220737,-10.996063 + pos: -2.5,19.5 parent: 1 - - uid: 1808 + - uid: 848 components: - type: Transform - pos: -5.6533237,-8.167938 + pos: 4.5,22.5 parent: 1 -- proto: DrinkBottleBeer - entities: - - uid: 1809 + - uid: 849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.7001987,-10.777313 + pos: 5.5,23.5 parent: 1 -- proto: DrinkBottleRum - entities: - - uid: 1814 + - uid: 852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.1845737,-11.324188 + pos: -1.5,18.5 parent: 1 -- proto: DrinkBottleTequila - entities: - - uid: 1815 + - uid: 854 components: - type: Transform - pos: -1.5751987,-11.402313 + pos: -2.5,18.5 parent: 1 -- proto: DrinkChampagneBottleFull - entities: - - uid: 1810 + - uid: 861 components: - type: Transform - pos: -5.5751987,-12.027313 + pos: -1.5,20.5 parent: 1 -- proto: DrinkCognacBottleFull - entities: - - uid: 1811 + - uid: 862 components: - type: Transform - pos: -5.2939487,-8.214813 + pos: -2.5,27.5 parent: 1 -- proto: DrinkMilkCarton - entities: - - uid: 1758 + - uid: 864 components: - type: Transform - pos: -12.53306,-6.968975 + pos: -5.5,14.5 parent: 1 -- proto: DrinkRumBottleFull - entities: - - uid: 1805 + - uid: 867 components: - type: Transform - pos: -4.7001987,-11.011688 + rot: 1.5707963267948966 rad + pos: -8.5,11.5 parent: 1 - - uid: 1806 + - uid: 868 components: - type: Transform - pos: -3.5126987,-11.324188 + rot: 1.5707963267948966 rad + pos: -8.5,10.5 parent: 1 -- proto: DrinkShotGlass - entities: - - uid: 1816 + - uid: 869 components: - type: Transform - pos: -5.3251987,-11.699188 + rot: 1.5707963267948966 rad + pos: -7.5,10.5 parent: 1 - - uid: 1817 + - uid: 870 components: - type: Transform - pos: -4.0126987,-11.449188 + rot: 1.5707963267948966 rad + pos: -6.5,10.5 parent: 1 - - uid: 1818 + - uid: 871 components: - type: Transform - pos: -2.0439487,-11.417938 + rot: 1.5707963267948966 rad + pos: -5.5,10.5 parent: 1 - - uid: 1819 + - uid: 879 components: - type: Transform - pos: -3.2034483,-8.129922 + pos: -6.5,6.5 parent: 1 - - uid: 1820 + - uid: 880 components: - type: Transform - pos: -3.5315733,-8.442422 + pos: -6.5,5.5 parent: 1 - - uid: 1821 + - uid: 895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.2190733,-8.942422 + pos: -6.5,23.5 parent: 1 -- proto: FaxMachineShipAntag - entities: - - uid: 1916 + - uid: 896 components: - type: Transform - pos: -0.5,8.5 + rot: 3.141592653589793 rad + pos: 3.5,14.5 parent: 1 -- proto: FirelockEdge - entities: - - uid: 1784 + - uid: 897 components: - type: Transform - pos: -12.5,-8.5 + rot: 3.141592653589793 rad + pos: 2.5,14.5 parent: 1 - - uid: 1785 + - uid: 900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-9.5 + rot: 3.141592653589793 rad + pos: 9.5,3.5 parent: 1 - - uid: 1786 + - uid: 902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-8.5 + pos: -5.5,24.5 parent: 1 - - uid: 1787 + - uid: 1003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-7.5 + pos: -2.5,28.5 parent: 1 - - uid: 1788 + - uid: 1007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-6.5 + pos: 5.5,22.5 parent: 1 -- proto: FirelockGlass - entities: - - uid: 1789 + - uid: 1011 components: - type: Transform - pos: -0.5,-7.5 + pos: -5.5,23.5 parent: 1 - - uid: 1790 + - uid: 1015 components: - type: Transform - pos: -0.5,-8.5 + pos: -5.5,5.5 parent: 1 - - uid: 1791 + - uid: 1017 components: - type: Transform - pos: -1.5,-1.5 + pos: -3.5,7.5 parent: 1 - - uid: 1792 + - uid: 1018 components: - type: Transform - pos: -0.5,-1.5 + pos: -3.5,8.5 parent: 1 - - uid: 1793 + - uid: 1019 components: - type: Transform - pos: -5.5,2.5 + pos: -3.5,9.5 parent: 1 - - uid: 1794 + - uid: 1020 components: - type: Transform - pos: 5.5,-1.5 + pos: -3.5,11.5 parent: 1 - - uid: 1795 + - uid: 1021 components: - type: Transform - pos: 2.5,-20.5 + pos: -2.5,11.5 parent: 1 - - uid: 1796 + - uid: 1022 components: - type: Transform - pos: 4.5,-20.5 + pos: -1.5,11.5 parent: 1 - - uid: 1797 + - uid: 1024 components: - type: Transform - pos: -27.5,-6.5 + pos: 0.5,10.5 parent: 1 - - uid: 1799 + - uid: 1025 components: - type: Transform - pos: -27.5,-4.5 + pos: -1.5,13.5 parent: 1 -- proto: FloorDrain - entities: - - uid: 1669 + - uid: 1026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,1.5 + pos: -2.5,13.5 parent: 1 - - type: Fixtures - fixtures: {} -- proto: FloorWaterEntity - entities: - - uid: 1673 + - uid: 1027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,2.5 + pos: -3.5,13.5 parent: 1 - - uid: 1674 + - uid: 1030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,1.5 + pos: 3.5,23.5 parent: 1 - - uid: 1675 + - uid: 1100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,1.5 + rot: -1.5707963267948966 rad + pos: 13.5,21.5 parent: 1 - - uid: 1676 + - uid: 1102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,2.5 + pos: 3.5,22.5 parent: 1 - - uid: 1677 + - uid: 1167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,1.5 + pos: -2.5,31.5 parent: 1 - - uid: 1678 + - uid: 1258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,2.5 + rot: -1.5707963267948966 rad + pos: 22.5,23.5 parent: 1 - - uid: 1679 + - uid: 1259 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,1.5 + rot: -1.5707963267948966 rad + pos: 22.5,24.5 parent: 1 -- proto: FoodBowlBig - entities: - - uid: 1753 + - uid: 1265 components: - type: Transform - pos: -12.276115,-6.295364 + pos: -2.5,17.5 parent: 1 -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 1757 + - uid: 1279 components: - type: Transform - pos: -12.387227,-6.7606416 + rot: -1.5707963267948966 rad + pos: 23.5,24.5 parent: 1 -- proto: FoodCondimentBottleHotsauce - entities: - - uid: 1812 + - uid: 1280 components: - type: Transform - pos: -8.637699,-7.558563 + rot: -1.5707963267948966 rad + pos: 23.5,25.5 parent: 1 -- proto: FoodCondimentBottleKetchup - entities: - - uid: 1813 + - uid: 1300 components: - type: Transform - pos: -8.481449,-7.589813 + rot: -1.5707963267948966 rad + pos: 23.5,20.5 parent: 1 -- proto: FoodCondimentPacketSalt - entities: - - uid: 1756 + - uid: 1301 components: - type: Transform - pos: -12.546949,-6.6495304 + rot: -1.5707963267948966 rad + pos: 24.5,21.5 parent: 1 -- proto: FoodContainerEgg - entities: - - uid: 1759 + - uid: 1304 components: - type: Transform - pos: -12.34556,-7.045364 + rot: -1.5707963267948966 rad + pos: 24.5,22.5 parent: 1 -- proto: FoodKebabSkewer - entities: - - uid: 1755 + - uid: 1314 components: - type: Transform - pos: -12.165005,-6.4342527 + rot: -1.5707963267948966 rad + pos: 22.5,25.5 parent: 1 -- proto: FoodPlate - entities: - - uid: 1751 + - uid: 1318 components: - type: Transform - pos: -12.269171,-6.3370304 + rot: -1.5707963267948966 rad + pos: 23.5,23.5 parent: 1 -- proto: FoodPlateSmall - entities: - - uid: 1752 + - uid: 1352 components: - type: Transform - pos: -12.296949,-6.392586 + rot: -1.5707963267948966 rad + pos: 13.5,24.5 parent: 1 -- proto: FoodPlateTin - entities: - - uid: 1754 + - uid: 1363 components: - type: Transform - pos: -12.269171,-6.281475 + rot: -1.5707963267948966 rad + pos: 24.5,25.5 parent: 1 -- proto: GasMixer - entities: - - uid: 1277 + - uid: 1370 components: - type: Transform - pos: 9.5,-3.5 + rot: -1.5707963267948966 rad + pos: 23.5,22.5 parent: 1 - - type: GasMixer - inletTwoConcentration: 0.22000003 - inletOneConcentration: 0.78 -- proto: GasPipeBend - entities: - - uid: 1280 + - uid: 1371 components: - type: Transform - pos: 10.5,-3.5 + rot: -1.5707963267948966 rad + pos: 24.5,24.5 parent: 1 - - uid: 1286 + - uid: 1372 components: - type: Transform - pos: 10.5,-4.5 + rot: -1.5707963267948966 rad + pos: 13.5,23.5 parent: 1 -- proto: GasPipeTJunction - entities: - - uid: 1278 + - uid: 1377 components: - type: Transform - pos: 8.5,-3.5 + rot: -1.5707963267948966 rad + pos: 15.5,22.5 parent: 1 - - uid: 1284 + - uid: 1378 components: - type: Transform - pos: 8.5,-4.5 + rot: -1.5707963267948966 rad + pos: 20.5,22.5 parent: 1 -- proto: GasPort - entities: - - uid: 1023 + - uid: 1383 components: - type: Transform - pos: 10.5,-2.5 + rot: -1.5707963267948966 rad + pos: 13.5,22.5 parent: 1 - - uid: 1024 + - uid: 1384 components: - type: Transform - pos: 9.5,-2.5 + rot: -1.5707963267948966 rad + pos: 18.5,22.5 parent: 1 - - uid: 1025 + - uid: 1385 components: - type: Transform - pos: 8.5,-2.5 + rot: -1.5707963267948966 rad + pos: 17.5,22.5 parent: 1 - - uid: 1283 + - uid: 1387 components: - type: Transform - pos: 8.5,-5.5 + rot: -1.5707963267948966 rad + pos: 14.5,22.5 parent: 1 - - uid: 1287 + - uid: 1388 components: - type: Transform - pos: 10.5,-5.5 + rot: -1.5707963267948966 rad + pos: 23.5,21.5 parent: 1 -- proto: GasVentPump - entities: - - uid: 1055 + - uid: 1390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-3.5 + rot: -1.5707963267948966 rad + pos: 22.5,22.5 parent: 1 -- proto: GasVentScrubber - entities: - - uid: 1281 + - uid: 1391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-4.5 + rot: -1.5707963267948966 rad + pos: 19.5,22.5 parent: 1 -- proto: GasVolumePump - entities: - - uid: 1285 + - uid: 1392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-4.5 + rot: -1.5707963267948966 rad + pos: 21.5,22.5 parent: 1 -- proto: GeneratorBasic15kW - entities: - - uid: 1302 + - uid: 1393 components: - type: Transform - pos: 4.5,-0.5 + rot: -1.5707963267948966 rad + pos: 16.5,22.5 parent: 1 - - uid: 1303 + - uid: 1394 components: - type: Transform - pos: 4.5,0.5 + rot: -1.5707963267948966 rad + pos: 24.5,23.5 parent: 1 - - uid: 1313 + - uid: 1395 components: - type: Transform - pos: 4.5,1.5 + rot: -1.5707963267948966 rad + pos: 23.5,19.5 parent: 1 -- proto: GravityGeneratorMini - entities: - - uid: 1880 + - uid: 1396 components: - type: Transform - pos: 5.5,3.5 + rot: -1.5707963267948966 rad + pos: 24.5,20.5 parent: 1 -- proto: Grille + - uid: 1397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,19.5 + parent: 1 + - uid: 1398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,21.5 + parent: 1 + - uid: 1399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,20.5 + parent: 1 + - uid: 1400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,19.5 + parent: 1 + - uid: 1848 + components: + - type: Transform + pos: -13.5,14.5 + parent: 1 + - uid: 1870 + components: + - type: Transform + pos: -12.5,14.5 + parent: 1 + - uid: 1906 + components: + - type: Transform + pos: -14.5,14.5 + parent: 1 +- proto: ChairFolding entities: - - uid: 992 + - uid: 1062 components: - type: Transform - pos: -5.5,-14.5 + pos: -1.4638193,25.545057 parent: 1 - - uid: 993 + - uid: 1065 components: - type: Transform - pos: -6.5,-14.5 + rot: 1.5707963267948966 rad + pos: -2.5888193,24.6145 parent: 1 - - uid: 994 + - uid: 1117 components: - type: Transform - pos: -7.5,-14.5 + rot: 1.5707963267948966 rad + pos: 23.533894,21.609812 parent: 1 - - uid: 995 + - uid: 1401 components: - type: Transform - pos: -8.5,-13.5 + rot: 1.5707963267948966 rad + pos: 23.565144,23.719187 parent: 1 - - uid: 996 +- proto: ChairOfficeDark + entities: + - uid: 213 components: - type: Transform - pos: -8.5,-12.5 + rot: 3.141592653589793 rad + pos: -7.5,9.5 parent: 1 - - uid: 997 + - uid: 596 components: - type: Transform - pos: -8.5,-11.5 + rot: 3.141592653589793 rad + pos: -6.5,9.5 parent: 1 - - uid: 998 +- proto: ChairWood + entities: + - uid: 177 components: - type: Transform - pos: -9.5,-10.5 + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 parent: 1 - - uid: 999 + - uid: 189 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 1 + - uid: 273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 1815 + components: + - type: Transform + pos: -2.5,37.5 + parent: 1 + - uid: 1816 + components: + - type: Transform + pos: -3.5,37.5 + parent: 1 + - uid: 1817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,34.5 + parent: 1 + - uid: 1818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,34.5 + parent: 1 + - uid: 2051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.650677,-4.36273 + parent: 1 +- proto: Cigar + entities: + - uid: 190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.05544,7.263118 + parent: 1 + - uid: 828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.0137734,7.440201 + parent: 1 + - uid: 1133 + components: + - type: Transform + pos: 2.4062622,4.659444 + parent: 1 + - uid: 1134 + components: + - type: Transform + pos: 2.6770954,4.7011104 + parent: 1 + - uid: 1135 + components: + - type: Transform + pos: 2.729179,4.503194 + parent: 1 +- proto: ClothingBeltPlantFilled + entities: + - uid: 765 + components: + - type: Transform + pos: -5.496167,6.580707 + parent: 1 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 192 + components: + - type: Transform + pos: -5.791832,6.7702737 + parent: 1 +- proto: ClothingEyesEyepatch + entities: + - uid: 1830 + components: + - type: Transform + pos: -3.073276,36.033367 + parent: 1 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 1421 + components: + - type: Transform + pos: -5.518818,7.0506287 + parent: 1 +- proto: ClothingHeadHatPirate + entities: + - uid: 28 + components: + - type: Transform + pos: 4.2899175,2.596978 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 4.0399175,2.7323947 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 4.5399175,2.7323947 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 4.050334,2.440728 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 4.5399175,2.4303112 + parent: 1 +- proto: ComputerPalletConsoleNFLowMarket + entities: + - uid: 559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - type: ContainerContainer + containers: + board: !type:Container + ents: [] + - uid: 560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + - type: ContainerContainer + containers: + board: !type:Container + ents: [] +- proto: ComputerPowerMonitoring + entities: + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 1 +- proto: ComputerShipyardBlackMarket + entities: + - uid: 1956 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1 + - type: ContainerContainer + containers: + ShipyardConsole-targetId: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 1959 + components: + - type: Transform + pos: -3.5,16.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: ComputerTabletopComputerIFFPOI + entities: + - uid: 1920 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 +- proto: ComputerTabletopRadar + entities: + - uid: 51 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 +- proto: ComputerTabletopSurveillanceCameraMonitor + entities: + - uid: 1082 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 +- proto: ComputerWallmountBlackMarketBankATM + entities: + - uid: 61 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - type: ContainerContainer + containers: + bank-ATM-cashSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] + - type: Physics + canCollide: False +- proto: CrateFreezer + entities: + - uid: 858 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 234.99934 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 252 + - 283 + - 287 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateFunParty + entities: + - uid: 125 components: - type: Transform - pos: -10.5,-10.5 + pos: 4.5,10.5 parent: 1 +- proto: CrateFunPirate + entities: + - uid: 827 + components: + - type: Transform + pos: -8.5,6.5 + parent: 1 + - uid: 1678 + components: + - type: Transform + pos: 3.5,36.5 + parent: 1 +- proto: CrateHydroponicsSeeds + entities: - uid: 1000 components: - type: Transform - pos: -11.5,-10.5 + pos: -8.5,3.5 parent: 1 - - uid: 1001 +- proto: CrateHydroponicsSeedsExotic + entities: + - uid: 1615 components: - type: Transform - pos: -13.5,-10.5 + pos: -8.5,4.5 parent: 1 - - uid: 1002 +- proto: CrateHydroponicsSeedsMedicinal + entities: + - uid: 2021 components: - type: Transform - pos: -14.5,-10.5 + pos: -8.5,5.5 parent: 1 - - uid: 1003 +- proto: CrateMedicalSurgery + entities: + - uid: 1221 components: - type: Transform - pos: -15.5,-10.5 + pos: -12.5,14.5 parent: 1 - - uid: 1004 +- proto: CratePirateChest + entities: + - uid: 834 components: - type: Transform - pos: -28.5,-7.5 + pos: -8.5,7.5 parent: 1 - - uid: 1005 +- proto: CratePirateChestCaptain + entities: + - uid: 2020 components: - type: Transform - pos: -29.5,-7.5 + pos: -8.5,8.5 parent: 1 - - uid: 1006 +- proto: CrateStoneGrave + entities: + - uid: 841 components: - type: Transform - pos: -31.5,-7.5 + pos: 15.5,15.5 parent: 1 - - uid: 1007 +- proto: CrateWoodenGrave + entities: + - uid: 1125 components: - type: Transform - pos: -32.5,-7.5 + pos: -0.5,22.5 parent: 1 - - uid: 1008 +- proto: CurtainsBlack + entities: + - uid: 1755 components: - type: Transform - pos: -32.5,-3.5 + pos: -0.5,36.5 parent: 1 - - uid: 1009 + - uid: 1756 components: - type: Transform - pos: -31.5,-3.5 + pos: -0.5,34.5 parent: 1 - - uid: 1010 + - uid: 1757 components: - type: Transform - pos: -29.5,-3.5 + pos: -5.5,35.5 parent: 1 - - uid: 1011 +- proto: d6Dice + entities: + - uid: 1819 components: - type: Transform - pos: -28.5,-3.5 + pos: -2.9908204,36.84169 parent: 1 - - uid: 1016 + - uid: 1820 + components: + - type: Transform + pos: -3.6531801,35.643955 + parent: 1 +- proto: Defibrillator + entities: + - uid: 1561 + components: + - type: Transform + pos: -13.51858,14.77089 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 +- proto: DeskBell + entities: + - uid: 754 + components: + - type: Transform + pos: -6.5961885,7.2103014 + parent: 1 +- proto: DisposalBend + entities: + - uid: 331 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,4.5 + pos: -3.5,6.5 parent: 1 - - uid: 1018 + - uid: 336 components: - type: Transform - pos: -7.5,4.5 + rot: -1.5707963267948966 rad + pos: 9.5,5.5 parent: 1 - - uid: 1019 + - uid: 339 components: - type: Transform - pos: -6.5,4.5 + rot: -1.5707963267948966 rad + pos: 9.5,8.5 parent: 1 - - uid: 1020 + - uid: 714 components: - type: Transform - pos: 8.5,2.5 + rot: 1.5707963267948966 rad + pos: 6.5,6.5 parent: 1 - - uid: 1021 +- proto: DisposalJunction + entities: + - uid: 272 components: - type: Transform - pos: 8.5,1.5 + pos: -1.5,6.5 parent: 1 - - uid: 1022 + - uid: 291 components: - type: Transform - pos: 8.5,0.5 + rot: 3.141592653589793 rad + pos: 7.5,8.5 parent: 1 - - uid: 1026 + - uid: 749 components: - type: Transform - pos: -0.5,-10.5 + rot: 3.141592653589793 rad + pos: 7.5,5.5 parent: 1 - - uid: 1027 +- proto: DisposalJunctionFlipped + entities: + - uid: 275 components: - type: Transform - pos: -0.5,-11.5 + rot: 3.141592653589793 rad + pos: 7.5,6.5 parent: 1 - - uid: 1028 + - uid: 376 components: - type: Transform - pos: -0.5,-12.5 + rot: 1.5707963267948966 rad + pos: -1.5,1.5 parent: 1 - - uid: 1029 +- proto: DisposalPipe + entities: + - uid: 78 components: - type: Transform - pos: -11.5,-5.5 + rot: 1.5707963267948966 rad + pos: 8.5,5.5 parent: 1 - - uid: 1030 + - uid: 97 components: - type: Transform - pos: -10.5,-5.5 + rot: 1.5707963267948966 rad + pos: 8.5,8.5 parent: 1 - - uid: 1031 + - uid: 219 components: - type: Transform - pos: -9.5,-5.5 + pos: 7.5,9.5 parent: 1 - - uid: 1032 + - uid: 251 components: - type: Transform - pos: -4.5,-5.5 + rot: 3.141592653589793 rad + pos: -3.5,7.5 parent: 1 - - uid: 1033 + - uid: 253 components: - type: Transform - pos: -3.5,-5.5 + rot: 3.141592653589793 rad + pos: 7.5,7.5 parent: 1 - - uid: 1034 + - uid: 254 components: - type: Transform - pos: -2.5,-5.5 + rot: 3.141592653589793 rad + pos: 7.5,10.5 parent: 1 - - uid: 1659 + - uid: 260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 + - uid: 286 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,4.5 + pos: 7.5,4.5 parent: 1 - - uid: 1715 + - uid: 305 components: - type: Transform - pos: 1.5,-21.5 + rot: 3.141592653589793 rad + pos: -1.5,7.5 parent: 1 - - uid: 1716 + - uid: 310 components: - type: Transform - pos: 1.5,-22.5 + pos: 7.5,2.5 parent: 1 - - uid: 1717 + - uid: 370 components: - type: Transform - pos: 1.5,-24.5 + pos: -1.5,5.5 parent: 1 - - uid: 1718 + - uid: 371 components: - type: Transform - pos: 1.5,-25.5 + pos: -1.5,4.5 parent: 1 - - uid: 1719 + - uid: 372 components: - type: Transform - pos: 5.5,-25.5 + pos: -1.5,3.5 parent: 1 - - uid: 1720 + - uid: 373 components: - type: Transform - pos: 5.5,-24.5 + pos: -1.5,2.5 parent: 1 - - uid: 1721 + - uid: 374 components: - type: Transform - pos: 5.5,-22.5 + rot: -1.5707963267948966 rad + pos: -3.5,1.5 parent: 1 - - uid: 1722 + - uid: 375 components: - type: Transform - pos: 5.5,-21.5 + rot: -1.5707963267948966 rad + pos: -2.5,1.5 parent: 1 -- proto: HighSecDoor - entities: - - uid: 1844 + - uid: 377 components: - type: Transform - pos: -33.5,-4.5 + rot: 1.5707963267948966 rad + pos: -0.5,1.5 parent: 1 - - uid: 1845 + - uid: 378 components: - type: Transform - pos: -33.5,-6.5 + rot: 1.5707963267948966 rad + pos: 0.5,1.5 parent: 1 - - uid: 1846 + - uid: 379 components: - type: Transform - pos: -27.5,-6.5 + rot: 1.5707963267948966 rad + pos: 1.5,1.5 parent: 1 - - uid: 1847 + - uid: 380 components: - type: Transform - pos: -27.5,-4.5 + rot: 1.5707963267948966 rad + pos: 2.5,1.5 parent: 1 - - uid: 1848 + - uid: 381 components: - type: Transform - pos: 2.5,-26.5 + rot: 1.5707963267948966 rad + pos: 3.5,1.5 parent: 1 - - uid: 1849 + - uid: 382 components: - type: Transform - pos: 4.5,-26.5 + rot: 1.5707963267948966 rad + pos: 4.5,1.5 parent: 1 - - uid: 1850 + - uid: 383 components: - type: Transform - pos: 2.5,-20.5 + rot: 1.5707963267948966 rad + pos: 5.5,1.5 parent: 1 - - uid: 1851 + - uid: 933 components: - type: Transform - pos: 4.5,-20.5 + rot: 3.141592653589793 rad + pos: -3.5,8.5 parent: 1 -- proto: HospitalCurtains - entities: - - uid: 1777 + - uid: 991 components: - type: Transform - pos: 2.5,-0.5 + rot: -1.5707963267948966 rad + pos: -2.5,6.5 parent: 1 - - uid: 1778 +- proto: DisposalTrunk + entities: + - uid: 248 components: - type: Transform - pos: 2.5,1.5 + rot: -1.5707963267948966 rad + pos: 8.5,1.5 parent: 1 - - uid: 1780 + - uid: 303 components: - type: Transform - pos: 2.5,3.5 + pos: 9.5,9.5 parent: 1 -- proto: HospitalCurtainsOpen - entities: - - uid: 1672 + - uid: 366 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,1.5 + pos: -4.5,1.5 parent: 1 - - uid: 1779 + - uid: 367 components: - type: Transform - pos: 2.5,0.5 + pos: -1.5,8.5 parent: 1 -- proto: hydroponicsSoil - entities: - - uid: 1632 + - uid: 716 components: - type: Transform - pos: -13.5,-9.5 + pos: 9.5,6.5 parent: 1 - - uid: 1633 + - uid: 887 components: - type: Transform - pos: -14.5,-9.5 + rot: 3.141592653589793 rad + pos: 6.5,5.5 parent: 1 - - uid: 1634 + - uid: 934 components: - type: Transform - pos: -15.5,-9.5 + pos: -3.5,9.5 parent: 1 -- proto: HydroponicsToolClippers +- proto: DisposalUnit entities: - - uid: 1710 + - uid: 142 components: - type: Transform - pos: -14.471659,-6.4601746 + pos: -1.5,8.5 parent: 1 -- proto: HydroponicsToolHatchet - entities: - - uid: 1708 + - uid: 292 components: - type: Transform - pos: -14.502909,-6.4132996 + pos: -4.5,1.5 parent: 1 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 1709 + - uid: 540 components: - type: Transform - pos: -14.627909,-6.4601746 + pos: 8.5,1.5 parent: 1 -- proto: HydroponicsToolScythe - entities: - - uid: 1711 + - uid: 930 components: - type: Transform - pos: -14.471659,-6.5070496 + pos: -3.5,9.5 parent: 1 -- proto: HydroponicsToolSpade - entities: - - uid: 1712 + - uid: 931 components: - type: Transform - pos: -14.409159,-6.4289246 + pos: 6.5,5.5 parent: 1 -- proto: IntercomService +- proto: DisposalYJunction entities: - - uid: 1783 + - uid: 333 components: - type: Transform - pos: -6.5,-5.5 + rot: 3.141592653589793 rad + pos: 7.5,1.5 parent: 1 -- proto: KitchenMicrowave +- proto: DogBed entities: - - uid: 1703 + - uid: 844 components: - type: Transform - pos: -10.5,-6.5 + pos: -3.5,5.5 parent: 1 -- proto: KitchenReagentGrinder +- proto: Dresser entities: - - uid: 1702 + - uid: 1697 components: - type: Transform - pos: -11.5,-6.5 + pos: -5.5,34.5 parent: 1 -- proto: LampGold - entities: - - uid: 1918 + - uid: 1710 components: - type: Transform - pos: -2.6423488,8.902393 + pos: -0.5,35.5 parent: 1 - - type: HandheldLight - toggleActionEntity: 1919 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 1919 - - type: Physics - canCollide: True - - type: ActionsContainer -- proto: LargeBeaker +- proto: DrinkAleBottleFull entities: - - uid: 1762 - components: - - type: Transform - pos: -11.915005,-6.2745304 - parent: 1 - - uid: 1763 + - uid: 193 components: - type: Transform - pos: -12.102505,-6.4273086 + pos: -1.3561413,0.19765961 parent: 1 -- proto: LockerBotanistFilled - entities: - - uid: 1700 + - uid: 203 components: - type: Transform - pos: -13.5,-6.5 + pos: 2.3565233,0.16640961 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: - - 1701 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LuxuryPen +- proto: DrinkBeerBottleFull entities: - - uid: 1913 + - uid: 240 components: - type: Transform - pos: -2.1631823,8.53781 + pos: -5.5940914,1.8435847 parent: 1 - - type: Stamp - stampedName: Ryan Fiscina -- proto: MachineCryoSleepPod - entities: - - uid: 571 + - uid: 600 components: - type: Transform - pos: 7.5,3.5 + pos: -5.260758,1.8540014 parent: 1 -- proto: Mirror - entities: - - uid: 1897 + - uid: 1228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,2.5 + pos: 12.692219,31.463152 parent: 1 -- proto: MopBucketFull - entities: - - uid: 1767 + - uid: 1229 components: - type: Transform - pos: -6.484191,1.4599226 + pos: 12.535969,31.640234 parent: 1 -- proto: MopItem - entities: - - uid: 1766 + - uid: 1928 components: - type: Transform - pos: -6.595302,1.4182558 + pos: 12.806802,31.640234 parent: 1 -- proto: NitrogenCanister +- proto: DrinkBeerCan entities: - - uid: 1291 + - uid: 689 components: - type: Transform - anchored: True - pos: 10.5,-2.5 + pos: -2.0219421,-4.3052683 parent: 1 - - type: Physics - bodyType: Static -- proto: OxygenCanister - entities: - - uid: 1290 + - uid: 2027 components: - type: Transform - anchored: True - pos: 9.5,-2.5 + pos: 22.550758,25.65144 parent: 1 - - type: Physics - bodyType: Static -- proto: Paper - entities: - - uid: 1914 + - uid: 2029 components: - type: Transform - pos: -2.3194323,8.60031 + pos: 22.415342,25.234774 parent: 1 - - uid: 1915 + - uid: 2030 components: - type: Transform - pos: -2.1006823,8.652393 + pos: 22.696592,25.234774 parent: 1 -- proto: PortableScrubber +- proto: DrinkBottleCognac entities: - - uid: 1288 + - uid: 1128 components: - type: Transform - anchored: True - pos: 8.5,-5.5 + pos: -2.9453502,22.326792 parent: 1 - - type: Physics - bodyType: Static -- proto: Poweredlight +- proto: DrinkBottleRum entities: - - uid: 1741 + - uid: 1111 components: - type: Transform - pos: -12.5,-6.5 + pos: -3.1325707,24.551054 parent: 1 -- proto: PoweredLightPostSmall +- proto: DrinkKegWood entities: - - uid: 1682 + - uid: 1112 components: - type: Transform - pos: -22.5,-1.5 + pos: -3.015983,26.135101 parent: 1 - - uid: 1683 + - uid: 1113 components: - type: Transform - pos: 5.5,-8.5 + pos: -3.3076496,25.978851 parent: 1 - - uid: 1684 + - uid: 1116 components: - type: Transform - pos: -11.5,-1.5 + pos: 2.508083,11.4275875 parent: 1 - - uid: 1685 +- proto: DrinkRootBeerJug + entities: + - uid: 2031 components: - type: Transform - pos: 5.5,-16.5 + pos: -0.9567741,25.242569 parent: 1 - - uid: 1921 +- proto: DrinkRumBottleFull + entities: + - uid: 191 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,5.5 + pos: 2.61694,0.18724298 parent: 1 -- proto: PoweredSmallLight - entities: - - uid: 1686 + - uid: 206 components: - type: Transform - pos: 3.5,-21.5 + pos: -1.6686413,0.20807624 parent: 1 - - uid: 1687 + - uid: 278 components: - type: Transform - pos: 3.5,-25.5 + pos: -5.529629,2.1210914 parent: 1 - - uid: 1688 + - uid: 598 components: - type: Transform - pos: -28.5,-5.5 + pos: -5.2587957,2.1210914 parent: 1 - - uid: 1689 +- proto: DrinkShotGlass + entities: + - uid: 178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-5.5 + pos: -7.253187,1.8635483 parent: 1 - - uid: 1690 + - uid: 180 components: - type: Transform - pos: -3.5,-13.5 + pos: -7.55527,1.8739649 parent: 1 - - uid: 1691 + - uid: 181 components: - type: Transform - pos: -1.5,-9.5 + pos: -7.857353,1.8843815 parent: 1 - - uid: 1692 + - uid: 232 components: - type: Transform - pos: 2.5,2.5 + pos: -7.732353,1.6552149 parent: 1 - - uid: 1693 + - uid: 255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,1.5 + pos: -7.409437,1.6447983 parent: 1 - - uid: 1694 + - uid: 1130 components: - type: Transform - pos: 5.5,3.5 + pos: 1.3630393,4.7888126 parent: 1 - - uid: 1695 + - uid: 1131 components: - type: Transform - pos: 10.5,-3.5 + pos: 1.7224143,4.7888126 parent: 1 - - uid: 1696 + - uid: 1132 components: - type: Transform - pos: -6.5,3.5 + pos: 1.5505393,4.5544376 parent: 1 -- proto: Rack +- proto: DrinkWaterJug entities: - - uid: 2006 + - uid: 2026 components: - type: Transform - pos: -8.5,-0.5 + pos: 15.045713,14.422518 parent: 1 -- proto: Railing +- proto: DrinkWineBottleFull entities: - - uid: 1733 + - uid: 599 components: - type: Transform - pos: 0.5,-12.5 + pos: -5.404629,1.9856746 parent: 1 - - uid: 1734 +- proto: EmergencyLight + entities: + - uid: 226 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-11.5 + pos: 6.5,11.5 parent: 1 - - uid: 1735 + - uid: 325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 + pos: -2.5,1.5 parent: 1 - - uid: 1736 + - uid: 326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-9.5 + pos: 1.5,8.5 parent: 1 - - uid: 1737 + - uid: 338 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-6.5 + pos: 6.5,8.5 parent: 1 - - uid: 1832 + - uid: 363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-5.5 + pos: 5.5,1.5 parent: 1 -- proto: RailingCorner - entities: - - uid: 1731 + - uid: 396 components: - type: Transform - pos: 1.5,-12.5 + rot: -1.5707963267948966 rad + pos: -3.5,5.5 parent: 1 - - uid: 1740 + - uid: 425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-5.5 + rot: -1.5707963267948966 rad + pos: 4.5,11.5 parent: 1 - - uid: 1746 + - uid: 426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-13.5 + rot: 3.141592653589793 rad + pos: -2.5,10.5 parent: 1 -- proto: RandomSpawner - entities: - - uid: 1837 + - uid: 980 components: - type: Transform - pos: -11.5,-13.5 + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 parent: 1 -- proto: ReagentContainerFlour - entities: - - uid: 1760 + - uid: 982 components: - type: Transform - pos: -12.47056,-7.3231416 + rot: 1.5707963267948966 rad + pos: 6.5,-7.5 parent: 1 -- proto: ReagentContainerRice - entities: - - uid: 1761 + - uid: 983 components: - type: Transform - pos: -12.262227,-7.4481416 + pos: 12.5,-0.5 parent: 1 -- proto: ReagentContainerSugar - entities: - - uid: 1764 + - uid: 984 components: - type: Transform - pos: -12.498338,-7.485883 + pos: -11.5,-0.5 parent: 1 -- proto: ReinforcedPlasmaWindow +- proto: ExtinguisherCabinetFilled entities: - - uid: 14 + - uid: 223 components: - type: Transform - pos: 5.5,-25.5 + rot: 1.5707963267948966 rad + pos: -2.5,2.5 parent: 1 - - uid: 15 + - uid: 392 components: - type: Transform - pos: 5.5,-24.5 + rot: -1.5707963267948966 rad + pos: 1.5,11.5 parent: 1 - - uid: 16 + - uid: 473 components: - type: Transform - pos: 5.5,-21.5 + pos: 1.5,9.5 parent: 1 - - uid: 17 + - uid: 888 components: - type: Transform - pos: 5.5,-22.5 + rot: 3.141592653589793 rad + pos: 5.5,11.5 parent: 1 - - uid: 18 +- proto: FaxMachineShipAntag + entities: + - uid: 63 components: - type: Transform - pos: 1.5,-22.5 + pos: -8.5,10.5 parent: 1 - - uid: 19 +- proto: FenceMetalGate + entities: + - uid: 1598 components: - type: Transform - pos: 1.5,-21.5 + rot: -1.5707963267948966 rad + pos: 10.5,15.5 parent: 1 - - uid: 20 +- proto: FenceMetalStraight + entities: + - uid: 1996 components: - type: Transform - pos: 1.5,-24.5 + rot: 3.141592653589793 rad + pos: 10.5,16.5 parent: 1 - - uid: 21 + - uid: 1997 components: - type: Transform - pos: 1.5,-25.5 + rot: 3.141592653589793 rad + pos: 10.5,14.5 parent: 1 - - uid: 1723 +- proto: FenceWoodHighGate + entities: + - uid: 1612 components: - type: Transform - pos: -29.5,-7.5 + pos: -2.5,30.5 parent: 1 - - uid: 1724 + - uid: 1923 components: - type: Transform - pos: -28.5,-7.5 + pos: 7.5,28.5 parent: 1 - - uid: 1725 + - type: Door + secondsUntilStateChange: -1742.1683 + state: Opening +- proto: FenceWoodSmallCorner + entities: + - uid: 1763 components: - type: Transform - pos: -29.5,-3.5 + pos: -9.5,27.5 parent: 1 - - uid: 1726 +- proto: FenceWoodSmallGate + entities: + - uid: 26 components: - type: Transform - pos: -28.5,-3.5 + pos: -0.5,9.5 parent: 1 - - uid: 1727 + - uid: 35 components: - type: Transform - pos: -32.5,-3.5 + rot: 1.5707963267948966 rad + pos: -2.5,4.5 parent: 1 - - uid: 1728 +- proto: FenceWoodSmallStraight + entities: + - uid: 1602 components: - type: Transform - pos: -31.5,-3.5 + rot: -1.5707963267948966 rad + pos: -15.5,27.5 parent: 1 - - uid: 1729 + - uid: 1764 components: - type: Transform - pos: -32.5,-7.5 + rot: -1.5707963267948966 rad + pos: -10.5,27.5 parent: 1 - - uid: 1730 + - uid: 1765 components: - type: Transform - pos: -31.5,-7.5 + rot: -1.5707963267948966 rad + pos: -14.5,27.5 parent: 1 -- proto: Shovel +- proto: FireAlarm entities: - - uid: 1681 + - uid: 154 components: - type: Transform - pos: -14.099554,2.0229537 + pos: 2.5,9.5 parent: 1 - - uid: 1906 + - type: DeviceList + devices: + - 39 + - 70 + - 646 + - 966 + - 972 + - 971 + - 970 + - 969 + - 968 + - 967 + - 471 +- proto: Firelock + entities: + - uid: 2 components: - type: Transform - pos: 0.57554865,13.388299 + pos: 1.5,12.5 parent: 1 -- proto: SignalButtonDirectional - entities: - - uid: 1858 + - uid: 39 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-3.5 + pos: 3.5,9.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1855: - - Pressed: Toggle - 1856: - - Pressed: Toggle - 1857: - - Pressed: Toggle - - uid: 1859 + - uid: 70 components: - type: Transform - pos: 5.5,-20.5 + rot: 1.5707963267948966 rad + pos: 5.5,3.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 1852: - - Pressed: Toggle - 1853: - - Pressed: Toggle - 1854: - - Pressed: Toggle -- proto: Sink - entities: - - uid: 1697 + - uid: 171 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,2.5 + pos: -3.5,2.5 parent: 1 - - uid: 1698 + - uid: 857 components: - type: Transform - pos: -12.5,-9.5 + rot: 3.141592653589793 rad + pos: 6.5,9.5 parent: 1 -- proto: SMESBasic +- proto: FirelockEdge entities: - - uid: 1304 + - uid: 966 components: - type: Transform - pos: 4.5,2.5 + rot: 3.141592653589793 rad + pos: -1.5,1.5 parent: 1 -- proto: SpawnMobCatClarpy - entities: - - uid: 1015 + - uid: 967 components: - type: Transform - pos: -7.5,-13.5 + rot: 3.141592653589793 rad + pos: 4.5,1.5 parent: 1 -- proto: SpawnPointPirate - entities: - - uid: 1833 + - uid: 968 components: - type: Transform - pos: -3.5,-9.5 + rot: 3.141592653589793 rad + pos: 3.5,1.5 parent: 1 -- proto: SpawnPointPirateCaptain - entities: - - uid: 1994 + - uid: 969 components: - type: Transform - pos: -3.5,-7.5 + rot: 3.141592653589793 rad + pos: 2.5,1.5 parent: 1 -- proto: SpawnPointPirateFirstMate - entities: - - uid: 1995 + - uid: 970 components: - type: Transform - pos: -5.5,-7.5 + rot: 3.141592653589793 rad + pos: 1.5,1.5 parent: 1 -- proto: SpesosTreeSeeds - entities: - - uid: 1701 + - uid: 971 components: - type: Transform - parent: 1700 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: StoolBar - entities: - - uid: 1772 + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - uid: 972 components: - type: Transform - pos: -1.5,-10.5 + rot: 3.141592653589793 rad + pos: -0.5,1.5 parent: 1 - - uid: 1773 + - uid: 974 components: - type: Transform - pos: -2.5,-10.5 + rot: 1.5707963267948966 rad + pos: -3.5,6.5 parent: 1 - - uid: 1774 +- proto: FirelockGlass + entities: + - uid: 57 components: - type: Transform - pos: -3.5,-10.5 + pos: 8.5,5.5 parent: 1 - - uid: 1775 + - uid: 340 components: - type: Transform - pos: -4.5,-10.5 + pos: 8.5,8.5 parent: 1 - - uid: 1776 + - uid: 635 components: - type: Transform - pos: -5.5,-10.5 + pos: 7.5,4.5 parent: 1 -- proto: StorageCanister +- proto: FlippoLighter entities: - - uid: 1296 + - uid: 262 components: - type: Transform - pos: 9.5,-5.5 + pos: -1.498384,-0.11484039 parent: 1 - - uid: 1297 + - uid: 263 components: - type: Transform - pos: 10.5,-5.5 + pos: 2.493622,-0.16692376 parent: 1 -- proto: SubstationBasic - entities: - - uid: 1305 + - uid: 756 components: - type: Transform - pos: 4.5,3.5 + pos: -5.899738,7.826929 parent: 1 -- proto: SuitStorageEVAPirate +- proto: FloorDrain entities: - - uid: 1138 + - uid: 157 components: - type: Transform - pos: -3.5,3.5 + pos: 3.5,10.5 parent: 1 - - uid: 1660 + - type: Fixtures + fixtures: {} +- proto: FloorWaterDecorativeEntity + entities: + - uid: 81 components: - type: Transform - pos: -2.5,3.5 + pos: -2.5,27.5 parent: 1 - - uid: 1661 + - uid: 187 components: - type: Transform - pos: -1.5,3.5 + pos: -1.5,17.5 parent: 1 -- proto: SuitStoragePirateCap - entities: - - uid: 1662 + - uid: 188 components: - type: Transform - pos: -4.5,3.5 + pos: -2.5,28.5 parent: 1 -- proto: Table - entities: - - uid: 575 + - uid: 204 components: - type: Transform - pos: 7.5,0.5 + pos: 1.5,22.5 parent: 1 - - uid: 1638 + - uid: 405 components: - type: Transform - pos: -12.5,-7.5 + pos: 2.5,23.5 parent: 1 - - uid: 1639 + - uid: 412 components: - type: Transform - pos: -12.5,-6.5 + pos: -2.5,29.5 parent: 1 - - uid: 1640 + - uid: 457 components: - type: Transform - pos: -11.5,-6.5 + pos: 2.5,22.5 parent: 1 - - uid: 1641 + - uid: 475 components: - type: Transform - pos: -10.5,-6.5 + pos: -2.5,30.5 parent: 1 - - uid: 1648 + - uid: 519 components: - type: Transform - pos: -1.5,-13.5 + pos: 3.5,23.5 parent: 1 - - uid: 1649 + - uid: 696 components: - type: Transform - pos: -2.5,-13.5 + pos: -1.5,19.5 parent: 1 -- proto: TableReinforced - entities: - - uid: 1635 + - uid: 725 components: - type: Transform - pos: -8.5,-6.5 + pos: -1.5,18.5 parent: 1 - - uid: 1636 + - uid: 739 components: - type: Transform - pos: -8.5,-7.5 + pos: 1.5,23.5 parent: 1 - - uid: 1637 + - uid: 786 components: - type: Transform - pos: -8.5,-8.5 + pos: -5.5,23.5 parent: 1 -- proto: TableWood - entities: - - uid: 518 + - uid: 795 components: - type: Transform - pos: -0.5,8.5 + pos: -7.5,23.5 parent: 1 - - uid: 1705 + - uid: 808 components: - type: Transform - pos: -5.5,-8.5 + pos: -5.5,24.5 parent: 1 - - uid: 1706 + - uid: 809 components: - type: Transform - pos: -3.5,-8.5 + pos: -9.5,23.5 parent: 1 - - uid: 1707 + - uid: 811 components: - type: Transform - pos: -14.5,-6.5 + pos: -8.5,23.5 parent: 1 - - uid: 1911 + - uid: 842 components: - type: Transform - pos: -1.5,8.5 + pos: -8.5,24.5 parent: 1 - - uid: 1912 + - uid: 850 components: - type: Transform - pos: -2.5,8.5 + pos: 4.5,23.5 parent: 1 -- proto: TableWoodReinforced - entities: - - uid: 1642 + - uid: 873 components: - type: Transform - pos: -1.5,-11.5 + pos: 5.5,22.5 parent: 1 - - uid: 1643 + - uid: 883 components: - type: Transform - pos: -2.5,-11.5 + pos: 4.5,22.5 parent: 1 - - uid: 1644 + - uid: 890 components: - type: Transform - pos: -3.5,-11.5 + pos: 5.5,23.5 parent: 1 - - uid: 1645 + - uid: 893 components: - type: Transform - pos: -4.5,-11.5 + pos: 3.5,22.5 parent: 1 - - uid: 1646 + - uid: 894 components: - type: Transform - pos: -5.5,-11.5 + pos: -2.5,20.5 parent: 1 - - uid: 1647 + - uid: 923 components: - type: Transform - pos: -5.5,-12.5 + pos: -2.5,31.5 parent: 1 -- proto: ToiletDirtyWater - entities: - - uid: 1670 + - uid: 939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 + pos: -2.5,19.5 parent: 1 -- proto: ToyFigurineFootsoldier - entities: - - uid: 1782 + - uid: 941 components: - type: Transform - pos: -3.6954622,-8.408158 + pos: -2.5,18.5 parent: 1 -- proto: VariantCubeBox - entities: - - uid: 1765 + - uid: 977 components: - type: Transform - pos: -12.315859,-7.418098 + pos: -1.5,20.5 parent: 1 -- proto: VendingMachineBooze - entities: - - uid: 1650 + - uid: 987 components: - type: Transform - pos: -3.5,-13.5 + pos: -2.5,17.5 parent: 1 -- proto: WallPlastitanium - entities: - - uid: 2 + - uid: 1166 components: - type: Transform - pos: -27.5,-8.5 + pos: -6.5,23.5 parent: 1 - - uid: 6 + - uid: 1267 components: - type: Transform - pos: 1.5,-26.5 + pos: -6.5,24.5 parent: 1 - - uid: 7 + - uid: 1574 components: - type: Transform - pos: 5.5,-26.5 + pos: -7.5,24.5 parent: 1 - - uid: 8 + - uid: 1613 components: - type: Transform - pos: 3.5,-26.5 + pos: -9.5,24.5 parent: 1 - - uid: 9 +- proto: FloorWaterEntity + entities: + - uid: 4 components: - type: Transform - pos: 1.5,-23.5 + pos: 3.5,26.5 parent: 1 - - uid: 10 + - uid: 198 components: - type: Transform - pos: 5.5,-23.5 + pos: -3.5,19.5 parent: 1 - - uid: 11 + - uid: 205 components: - type: Transform - pos: 1.5,-20.5 + pos: 4.5,25.5 parent: 1 - - uid: 12 + - uid: 221 components: - type: Transform - pos: 5.5,-20.5 + pos: 0.5,28.5 parent: 1 - - uid: 13 + - uid: 222 components: - type: Transform - pos: 3.5,-20.5 + pos: 4.5,26.5 parent: 1 - - uid: 25 + - uid: 347 components: - type: Transform - pos: -33.5,-7.5 + pos: -5.5,21.5 parent: 1 - - uid: 26 + - uid: 398 components: - type: Transform - pos: -33.5,-3.5 + pos: -0.5,17.5 parent: 1 - - uid: 27 + - uid: 432 components: - type: Transform - pos: -33.5,-5.5 + pos: -1.5,31.5 parent: 1 - - uid: 28 + - uid: 437 components: - type: Transform - pos: -30.5,-3.5 + pos: 2.5,25.5 parent: 1 - - uid: 29 + - uid: 536 components: - type: Transform - pos: -30.5,-7.5 + pos: -0.5,19.5 parent: 1 - - uid: 30 + - uid: 571 components: - type: Transform - pos: -27.5,-3.5 + pos: 0.5,19.5 parent: 1 - - uid: 31 + - uid: 606 components: - type: Transform - pos: -27.5,-5.5 + pos: 5.5,21.5 parent: 1 - - uid: 32 + - uid: 631 components: - type: Transform - pos: -27.5,-7.5 + pos: -8.5,22.5 parent: 1 - - uid: 33 + - uid: 633 components: - type: Transform - pos: -27.5,-9.5 + pos: 1.5,17.5 parent: 1 - - uid: 34 + - uid: 641 components: - type: Transform - pos: -27.5,-10.5 + pos: 5.5,20.5 parent: 1 - - uid: 35 + - uid: 690 components: - type: Transform - pos: -26.5,-10.5 + pos: 2.5,20.5 parent: 1 - - uid: 36 + - uid: 691 components: - type: Transform - pos: -25.5,-10.5 + pos: 2.5,21.5 parent: 1 - - uid: 37 + - uid: 693 components: - type: Transform - pos: -24.5,-10.5 + pos: 2.5,24.5 parent: 1 - - uid: 38 + - uid: 695 components: - type: Transform - pos: -23.5,-10.5 + pos: 3.5,27.5 parent: 1 - - uid: 39 + - uid: 697 components: - type: Transform - pos: -22.5,-10.5 + pos: 2.5,26.5 parent: 1 - - uid: 40 + - uid: 698 components: - type: Transform - pos: -22.5,-11.5 + pos: 2.5,27.5 parent: 1 - - uid: 41 + - uid: 699 components: - type: Transform - pos: -22.5,-12.5 + pos: 3.5,20.5 parent: 1 - - uid: 42 + - uid: 702 components: - type: Transform - pos: -22.5,-13.5 + pos: 6.5,26.5 parent: 1 - - uid: 44 + - uid: 703 components: - type: Transform - pos: -21.5,-13.5 + pos: 6.5,25.5 parent: 1 - - uid: 45 + - uid: 706 components: - type: Transform - pos: -20.5,-13.5 + pos: 4.5,21.5 parent: 1 - - uid: 46 + - uid: 707 components: - type: Transform - pos: -19.5,-13.5 + pos: 4.5,20.5 parent: 1 - - uid: 47 + - uid: 711 components: - type: Transform - pos: -18.5,-13.5 + pos: -5.5,20.5 parent: 1 - - uid: 48 + - uid: 713 components: - type: Transform - pos: -17.5,-13.5 + pos: -9.5,25.5 parent: 1 - - uid: 49 + - uid: 729 components: - type: Transform - pos: -17.5,-14.5 + pos: 3.5,21.5 parent: 1 - - uid: 50 + - uid: 738 components: - type: Transform - pos: -17.5,-15.5 + pos: 3.5,24.5 parent: 1 - - uid: 51 + - uid: 740 components: - type: Transform - pos: -17.5,-16.5 + pos: 5.5,24.5 parent: 1 - - uid: 52 + - uid: 741 components: - type: Transform - pos: -17.5,-17.5 + pos: 5.5,25.5 parent: 1 - - uid: 53 + - uid: 745 components: - type: Transform - pos: -16.5,-17.5 + pos: -6.5,28.5 parent: 1 - - uid: 54 + - uid: 748 components: - type: Transform - pos: -15.5,-17.5 + pos: -7.5,19.5 parent: 1 - - uid: 55 + - uid: 753 components: - type: Transform - pos: -14.5,-17.5 + pos: -6.5,25.5 parent: 1 - - uid: 56 + - uid: 755 components: - type: Transform - pos: -13.5,-17.5 + pos: -6.5,19.5 parent: 1 - - uid: 57 + - uid: 758 components: - type: Transform - pos: -12.5,-17.5 + pos: -6.5,27.5 parent: 1 - - uid: 58 + - uid: 759 components: - type: Transform - pos: -11.5,-17.5 + pos: -6.5,21.5 parent: 1 - - uid: 59 + - uid: 763 components: - type: Transform - pos: -10.5,-17.5 + pos: -6.5,26.5 parent: 1 - - uid: 60 + - uid: 768 components: - type: Transform - pos: -9.5,-17.5 + pos: -7.5,27.5 parent: 1 - - uid: 61 + - uid: 769 components: - type: Transform - pos: -9.5,-18.5 + pos: -6.5,22.5 parent: 1 - - uid: 62 + - uid: 771 components: - type: Transform - pos: -9.5,-19.5 + pos: -6.5,20.5 parent: 1 - - uid: 63 + - uid: 772 components: - type: Transform - pos: -9.5,-20.5 + pos: -7.5,26.5 parent: 1 - - uid: 64 + - uid: 773 components: - type: Transform - pos: -8.5,-20.5 + pos: -7.5,21.5 parent: 1 - - uid: 65 + - uid: 776 components: - type: Transform - pos: -7.5,-20.5 + pos: -7.5,25.5 parent: 1 - - uid: 66 + - uid: 778 components: - type: Transform - pos: -6.5,-20.5 + pos: -7.5,22.5 parent: 1 - - uid: 67 + - uid: 780 components: - type: Transform - pos: -5.5,-20.5 + pos: -1.5,28.5 parent: 1 - - uid: 68 + - uid: 782 components: - type: Transform - pos: -4.5,-20.5 + pos: -0.5,20.5 parent: 1 - - uid: 69 + - uid: 783 components: - type: Transform - pos: -3.5,-20.5 + pos: -4.5,21.5 parent: 1 - - uid: 70 + - uid: 785 components: - type: Transform - pos: -2.5,-20.5 + pos: -5.5,27.5 parent: 1 - - uid: 71 + - uid: 787 components: - type: Transform - pos: -1.5,-20.5 + pos: -4.5,27.5 parent: 1 - - uid: 72 + - uid: 788 components: - type: Transform - pos: -0.5,-20.5 + pos: -5.5,28.5 parent: 1 - - uid: 73 + - uid: 790 components: - type: Transform - pos: 0.5,-20.5 + pos: 4.5,19.5 parent: 1 - - uid: 74 + - uid: 792 components: - type: Transform - pos: 6.5,-20.5 + pos: -4.5,28.5 parent: 1 - - uid: 75 + - uid: 793 components: - type: Transform - pos: 7.5,-20.5 + pos: -4.5,20.5 parent: 1 - - uid: 76 + - uid: 794 components: - type: Transform - pos: 8.5,-20.5 + pos: -4.5,18.5 parent: 1 - - uid: 77 + - uid: 800 components: - type: Transform - pos: 9.5,-20.5 + pos: -4.5,26.5 parent: 1 - - uid: 78 + - uid: 801 components: - type: Transform - pos: 10.5,-20.5 + pos: -4.5,19.5 parent: 1 - - uid: 79 + - uid: 802 components: - type: Transform - pos: 11.5,-20.5 + pos: -3.5,20.5 parent: 1 - - uid: 80 + - uid: 803 components: - type: Transform - pos: 11.5,-19.5 + pos: 2.5,19.5 parent: 1 - - uid: 81 + - uid: 804 components: - type: Transform - pos: 11.5,-18.5 + pos: 4.5,24.5 parent: 1 - - uid: 82 + - uid: 805 components: - type: Transform - pos: 11.5,-17.5 + pos: 3.5,19.5 parent: 1 - - uid: 83 + - uid: 806 components: - type: Transform - pos: 12.5,-17.5 + pos: -3.5,17.5 parent: 1 - - uid: 84 + - uid: 815 components: - type: Transform - pos: 13.5,-17.5 + pos: -3.5,18.5 parent: 1 - - uid: 85 + - uid: 817 components: - type: Transform - pos: 14.5,-17.5 + pos: -7.5,18.5 parent: 1 - - uid: 86 + - uid: 818 components: - type: Transform - pos: 15.5,-17.5 + pos: -5.5,19.5 parent: 1 - - uid: 87 + - uid: 826 components: - type: Transform - pos: 15.5,-16.5 + pos: -3.5,27.5 parent: 1 - - uid: 88 + - uid: 829 components: - type: Transform - pos: 15.5,-15.5 + pos: -6.5,18.5 parent: 1 - - uid: 89 + - uid: 830 components: - type: Transform - pos: 15.5,-14.5 + pos: 2.5,18.5 parent: 1 - - uid: 90 + - uid: 839 components: - type: Transform - pos: 15.5,-13.5 + pos: -8.5,21.5 parent: 1 - - uid: 91 + - uid: 846 components: - type: Transform - pos: 15.5,-12.5 + pos: 1.5,20.5 parent: 1 - - uid: 92 + - uid: 847 components: - type: Transform - pos: 15.5,-11.5 + pos: 0.5,18.5 parent: 1 - - uid: 93 + - uid: 851 components: - type: Transform - pos: 15.5,-10.5 + pos: -0.5,26.5 parent: 1 - - uid: 272 + - uid: 853 components: - type: Transform - pos: -27.5,-2.5 + pos: -0.5,18.5 parent: 1 - - uid: 273 + - uid: 855 components: - type: Transform - pos: -27.5,-1.5 + pos: 0.5,20.5 parent: 1 - - uid: 274 + - uid: 856 components: - type: Transform - pos: -27.5,-0.5 + pos: 1.5,21.5 parent: 1 - - uid: 275 + - uid: 860 components: - type: Transform - pos: -27.5,0.5 + pos: -0.5,28.5 parent: 1 - - uid: 276 + - uid: 863 components: - type: Transform - pos: -26.5,0.5 + pos: 1.5,27.5 parent: 1 - - uid: 277 + - uid: 881 components: - type: Transform - pos: -25.5,0.5 + pos: 1.5,19.5 parent: 1 - - uid: 278 + - uid: 882 components: - type: Transform - pos: -25.5,1.5 + pos: 0.5,17.5 parent: 1 - - uid: 279 + - uid: 885 components: - type: Transform - pos: -25.5,2.5 + pos: -5.5,22.5 parent: 1 - - uid: 280 + - uid: 889 components: - type: Transform - pos: -25.5,3.5 + pos: -5.5,25.5 parent: 1 - - uid: 337 + - uid: 891 components: - type: Transform - pos: 16.5,-10.5 + pos: -5.5,26.5 parent: 1 - - uid: 338 + - uid: 892 components: - type: Transform - pos: 17.5,-10.5 + pos: -3.5,28.5 parent: 1 - - uid: 339 + - uid: 927 components: - type: Transform - pos: 18.5,-10.5 + pos: -7.5,20.5 parent: 1 - - uid: 340 + - uid: 936 components: - type: Transform - pos: 18.5,-9.5 + pos: -8.5,25.5 parent: 1 - - uid: 341 + - uid: 937 components: - type: Transform - pos: 18.5,-8.5 + pos: -8.5,26.5 parent: 1 - - uid: 342 + - uid: 938 components: - type: Transform - pos: 18.5,-7.5 + pos: 0.5,25.5 parent: 1 - - uid: 343 + - uid: 940 components: - type: Transform - pos: 18.5,-6.5 + pos: 5.5,26.5 parent: 1 - - uid: 344 + - uid: 942 components: - type: Transform - pos: 18.5,-5.5 + pos: 3.5,25.5 parent: 1 - - uid: 345 + - uid: 943 components: - type: Transform - pos: 18.5,-4.5 + pos: 1.5,26.5 parent: 1 - - uid: 346 + - uid: 961 components: - type: Transform - pos: 18.5,-3.5 + pos: 1.5,24.5 parent: 1 - - uid: 347 + - uid: 962 components: - type: Transform - pos: 18.5,-2.5 + pos: -1.5,27.5 parent: 1 - - uid: 348 + - uid: 975 components: - type: Transform - pos: 18.5,-1.5 + pos: -0.5,27.5 parent: 1 - - uid: 349 + - uid: 976 components: - type: Transform - pos: 18.5,-0.5 + pos: 0.5,27.5 parent: 1 - - uid: 350 + - uid: 985 components: - type: Transform - pos: 18.5,0.5 + pos: 1.5,28.5 parent: 1 - - uid: 351 + - uid: 986 components: - type: Transform - pos: 18.5,1.5 + pos: 1.5,18.5 parent: 1 - - uid: 352 + - uid: 1012 components: - type: Transform - pos: 17.5,1.5 + pos: -9.5,22.5 parent: 1 - - uid: 353 + - uid: 1013 components: - type: Transform - pos: 17.5,2.5 + pos: 1.5,25.5 parent: 1 - - uid: 354 + - uid: 1101 components: - type: Transform - pos: 17.5,3.5 + pos: -3.5,29.5 parent: 1 - - uid: 355 + - uid: 1103 components: - type: Transform - pos: 17.5,4.5 + pos: -1.5,29.5 parent: 1 - - uid: 356 + - uid: 1104 components: - type: Transform - pos: 16.5,4.5 + pos: -0.5,29.5 parent: 1 - - uid: 357 + - uid: 1105 components: - type: Transform - pos: 16.5,5.5 + pos: 0.5,29.5 parent: 1 - - uid: 358 + - uid: 1149 components: - type: Transform - pos: 16.5,6.5 + pos: 0.5,26.5 parent: 1 - - uid: 359 + - uid: 1163 components: - type: Transform - pos: 16.5,7.5 + pos: -0.5,32.5 parent: 1 - - uid: 360 + - uid: 1164 components: - type: Transform - pos: 16.5,8.5 + pos: -0.5,31.5 parent: 1 - - uid: 361 + - uid: 1165 components: - type: Transform - pos: 15.5,8.5 + pos: -3.5,31.5 parent: 1 - - uid: 362 + - uid: 1169 components: - type: Transform - pos: 14.5,8.5 + pos: -5.5,32.5 parent: 1 - - uid: 363 + - uid: 1179 components: - type: Transform - pos: 13.5,8.5 + pos: -5.5,31.5 parent: 1 - - uid: 364 + - uid: 1181 components: - type: Transform - pos: 12.5,8.5 + pos: -4.5,31.5 parent: 1 - - uid: 365 + - uid: 1182 components: - type: Transform - pos: 11.5,8.5 + pos: -1.5,32.5 parent: 1 - - uid: 366 + - uid: 1183 components: - type: Transform - pos: 10.5,8.5 + pos: -4.5,32.5 parent: 1 - - uid: 367 + - uid: 1184 components: - type: Transform - pos: 10.5,9.5 + pos: -3.5,32.5 parent: 1 - - uid: 368 +- proto: FloraGreyStalagmite1 + entities: + - uid: 1072 components: - type: Transform - pos: 10.5,10.5 + pos: 0.119210005,17.985949 parent: 1 - - uid: 369 + - uid: 1076 components: - type: Transform - pos: 10.5,11.5 + pos: 0.9212934,20.225533 parent: 1 - - uid: 370 + - uid: 1090 components: - type: Transform - pos: 9.5,11.5 + pos: 3.8974686,21.029644 parent: 1 - - uid: 371 +- proto: FloraGreyStalagmite2 + entities: + - uid: 1080 components: - type: Transform - pos: 8.5,11.5 + pos: 4.3766356,24.915062 parent: 1 - - uid: 372 + - uid: 1081 components: - type: Transform - pos: 7.5,11.5 + pos: -6.217115,27.456728 parent: 1 - - uid: 373 + - uid: 1083 components: - type: Transform - pos: 6.5,11.5 + pos: 2.0016356,18.998394 parent: 1 - - uid: 374 +- proto: FloraGreyStalagmite3 + entities: + - uid: 1069 components: - type: Transform - pos: 5.5,11.5 + pos: -6.9159393,20.173449 parent: 1 - - uid: 375 +- proto: FloraGreyStalagmite4 + entities: + - uid: 1068 components: - type: Transform - pos: 4.5,11.5 + pos: -4.4263554,19.527615 parent: 1 - - uid: 376 + - uid: 1078 components: - type: Transform - pos: 4.5,12.5 + pos: 0.72998214,26.831728 parent: 1 - - uid: 377 + - uid: 1079 components: - type: Transform - pos: 4.5,13.5 + pos: -7.731412,21.873394 parent: 1 - - uid: 378 + - uid: 1091 components: - type: Transform - pos: 4.5,14.5 + rot: -1.5707963267948966 rad + pos: -4.0983005,28.205011 parent: 1 - - uid: 379 + - uid: 1092 components: - type: Transform - pos: 4.5,15.5 + pos: -0.071281314,28.560894 parent: 1 - - uid: 380 +- proto: FloraGreyStalagmite5 + entities: + - uid: 1071 components: - type: Transform - pos: 3.5,15.5 + pos: -6.0930223,21.808865 parent: 1 - - uid: 381 + - uid: 1084 components: - type: Transform - pos: 1.5,15.5 + pos: -7.6025314,26.165062 parent: 1 - - uid: 382 + - uid: 1085 components: - type: Transform - pos: 2.5,15.5 + pos: 2.0953856,25.206728 parent: 1 - - uid: 383 + - uid: 1086 components: - type: Transform - pos: 0.5,15.5 + pos: 5.3974686,26.508812 parent: 1 - - uid: 384 + - uid: 1087 components: - type: Transform - pos: -0.5,15.5 + pos: -5.685865,27.196312 parent: 1 - - uid: 385 + - uid: 1724 components: - type: Transform - pos: -1.5,15.5 + rot: -1.5707963267948966 rad + pos: -1.269352,29.13705 parent: 1 - - uid: 386 +- proto: FloraGreyStalagmite6 + entities: + - uid: 1077 components: - type: Transform - pos: -2.5,15.5 + pos: 4.1087933,20.256783 parent: 1 - - uid: 387 + - uid: 1088 components: - type: Transform - pos: -2.5,14.5 + pos: -4.1129484,19.883812 parent: 1 - - uid: 388 + - uid: 1089 components: - type: Transform - pos: -2.5,13.5 + pos: 1.293302,20.373394 parent: 1 - - uid: 389 +- proto: FloraRockSolid01 + entities: + - uid: 1382 components: - type: Transform - pos: -2.5,12.5 + rot: -1.5707963267948966 rad + pos: 16.276434,25.658834 parent: 1 - - uid: 390 +- proto: FloraRockSolid02 + entities: + - uid: 1564 components: - type: Transform - pos: -2.5,11.5 + pos: -14.30686,30.469576 parent: 1 - - uid: 391 +- proto: FoamCrossbow + entities: + - uid: 1752 components: - type: Transform - pos: -3.5,11.5 + pos: 23.069695,19.9217 parent: 1 - - uid: 392 +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 2018 components: - type: Transform - pos: -4.5,11.5 + pos: 4.68371,7.916847 parent: 1 - - uid: 393 +- proto: FoodKebabSkewer + entities: + - uid: 1108 components: - type: Transform - pos: -5.5,11.5 + pos: -2.5469892,25.23837 parent: 1 - - uid: 394 + - uid: 1110 components: - type: Transform - pos: -6.5,11.5 + pos: -2.401156,25.481426 parent: 1 - - uid: 395 +- proto: FoodMeatHuman + entities: + - uid: 252 components: - type: Transform - pos: -7.5,11.5 - parent: 1 - - uid: 396 + parent: 858 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 283 components: - type: Transform - pos: -8.5,11.5 - parent: 1 - - uid: 397 + parent: 858 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 287 components: - type: Transform - pos: -9.5,11.5 - parent: 1 - - uid: 398 + parent: 858 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatRatdoubleKebab + entities: + - uid: 1109 components: - type: Transform - pos: -10.5,11.5 + pos: -1.5400448,24.477612 parent: 1 - - uid: 399 +- proto: FoodPlate + entities: + - uid: 212 components: - type: Transform - pos: -11.5,11.5 + pos: -6.312971,1.7044246 parent: 1 - - uid: 400 + - uid: 218 components: - type: Transform - pos: -12.5,11.5 + pos: 9.509022,1.7281315 parent: 1 - - uid: 401 +- proto: FoodSaladCaesar + entities: + - uid: 1600 components: - type: Transform - pos: -13.5,11.5 + pos: 2.4884746,-4.2928896 parent: 1 - - uid: 402 +- proto: GasPassiveVent + entities: + - uid: 1285 components: - type: Transform - pos: -14.5,11.5 + rot: 3.141592653589793 rad + pos: 11.5,9.5 parent: 1 - - uid: 403 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 359 components: - type: Transform - pos: -15.5,11.5 + rot: 3.141592653589793 rad + pos: 0.5,8.5 parent: 1 - - uid: 404 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 468 components: - type: Transform - pos: -15.5,10.5 + rot: 3.141592653589793 rad + pos: 1.5,10.5 parent: 1 - - uid: 405 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeFourway + entities: + - uid: 354 components: - type: Transform - pos: -15.5,9.5 + pos: 6.5,11.5 parent: 1 - - uid: 406 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 385 components: - type: Transform - pos: -15.5,8.5 + pos: 6.5,5.5 parent: 1 - - uid: 407 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 47 components: - type: Transform - pos: -16.5,8.5 + pos: 5.5,11.5 parent: 1 - - uid: 408 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 266 components: - type: Transform - pos: -17.5,8.5 + rot: -1.5707963267948966 rad + pos: 5.5,11.5 parent: 1 - - uid: 409 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 355 components: - type: Transform - pos: -18.5,8.5 + rot: 1.5707963267948966 rad + pos: 4.5,8.5 parent: 1 - - uid: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 360 components: - type: Transform - pos: -19.5,8.5 + rot: -1.5707963267948966 rad + pos: 8.5,8.5 parent: 1 - - uid: 411 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 406 components: - type: Transform - pos: -20.5,8.5 + rot: -1.5707963267948966 rad + pos: 7.5,9.5 parent: 1 - - uid: 412 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 452 components: - type: Transform - pos: -20.5,7.5 + rot: 1.5707963267948966 rad + pos: 8.5,12.5 parent: 1 - - uid: 413 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 484 components: - type: Transform - pos: -21.5,7.5 + pos: 6.5,4.5 parent: 1 - - uid: 414 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 485 components: - type: Transform - pos: -22.5,7.5 + pos: 6.5,9.5 parent: 1 - - uid: 415 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 486 components: - type: Transform - pos: -23.5,7.5 + pos: 6.5,10.5 parent: 1 - - uid: 416 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 487 components: - type: Transform - pos: -24.5,7.5 + rot: 1.5707963267948966 rad + pos: 2.5,11.5 parent: 1 - - uid: 417 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 488 components: - type: Transform - pos: -25.5,7.5 + rot: 3.141592653589793 rad + pos: 0.5,9.5 parent: 1 - - uid: 418 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 489 components: - type: Transform - pos: -25.5,6.5 + rot: 1.5707963267948966 rad + pos: 1.5,8.5 parent: 1 - - uid: 419 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 490 components: - type: Transform - pos: -25.5,5.5 + rot: 1.5707963267948966 rad + pos: 2.5,8.5 parent: 1 - - uid: 420 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 499 components: - type: Transform - pos: -25.5,4.5 + rot: 1.5707963267948966 rad + pos: 3.5,8.5 parent: 1 -- proto: WallRock - entities: - - uid: 43 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 532 components: - type: Transform - pos: 0.5,-27.5 + pos: 7.5,5.5 parent: 1 - - uid: 94 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 543 components: - type: Transform - pos: 0.5,-25.5 + rot: 3.141592653589793 rad + pos: 6.5,7.5 parent: 1 - - uid: 95 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 573 components: - type: Transform - pos: 0.5,-26.5 + rot: -1.5707963267948966 rad + pos: 6.5,9.5 parent: 1 - - uid: 96 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 632 components: - type: Transform - pos: 0.5,-23.5 + rot: 3.141592653589793 rad + pos: 5.5,7.5 parent: 1 - - uid: 97 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 645 components: - type: Transform - pos: 0.5,-24.5 + rot: -1.5707963267948966 rad + pos: 8.5,6.5 parent: 1 - - uid: 98 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 647 components: - type: Transform - pos: 0.5,-21.5 + rot: -1.5707963267948966 rad + pos: 8.5,9.5 parent: 1 - - uid: 99 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 652 components: - type: Transform - pos: 0.5,-22.5 + rot: 1.5707963267948966 rad + pos: 7.5,5.5 parent: 1 - - uid: 100 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 653 components: - type: Transform - pos: -0.5,-26.5 + rot: 1.5707963267948966 rad + pos: 7.5,8.5 parent: 1 - - uid: 101 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 660 components: - type: Transform - pos: -0.5,-25.5 + rot: -1.5707963267948966 rad + pos: 4.5,11.5 parent: 1 - - uid: 102 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 661 components: - type: Transform - pos: -0.5,-24.5 + pos: 6.5,6.5 parent: 1 - - uid: 103 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 663 components: - type: Transform - pos: -0.5,-23.5 + rot: 1.5707963267948966 rad + pos: 6.5,6.5 parent: 1 - - uid: 104 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 673 components: - type: Transform - pos: -0.5,-22.5 + rot: 1.5707963267948966 rad + pos: 5.5,5.5 parent: 1 - - uid: 105 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 674 components: - type: Transform - pos: -0.5,-21.5 + pos: 7.5,4.5 parent: 1 - - uid: 106 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 832 components: - type: Transform - pos: 1.5,-27.5 + rot: -1.5707963267948966 rad + pos: 9.5,12.5 parent: 1 - - uid: 107 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 865 components: - type: Transform - pos: 1.5,-28.5 + rot: 1.5707963267948966 rad + pos: 3.5,11.5 parent: 1 - - uid: 108 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 944 components: - type: Transform - pos: 0.5,-28.5 + rot: -1.5707963267948966 rad + pos: 7.5,11.5 parent: 1 - - uid: 109 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 945 components: - type: Transform - pos: -0.5,-27.5 + rot: -1.5707963267948966 rad + pos: 7.5,12.5 parent: 1 - - uid: 110 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1009 components: - type: Transform - pos: -0.5,-27.5 + rot: -1.5707963267948966 rad + pos: 8.5,5.5 parent: 1 - - uid: 111 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1320 components: - type: Transform - pos: -15.5,-18.5 + rot: 3.141592653589793 rad + pos: 11.5,10.5 parent: 1 - - uid: 112 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1321 components: - type: Transform - pos: -1.5,-26.5 + rot: 3.141592653589793 rad + pos: 11.5,11.5 parent: 1 - - uid: 113 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 46 components: - type: Transform - pos: -1.5,-25.5 + pos: 5.5,12.5 parent: 1 - - uid: 114 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 357 components: - type: Transform - pos: -2.5,-25.5 + rot: 3.141592653589793 rad + pos: 5.5,6.5 parent: 1 - - uid: 115 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 387 components: - type: Transform - pos: -2.5,-24.5 + rot: 3.141592653589793 rad + pos: 6.5,12.5 parent: 1 - - uid: 116 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 389 components: - type: Transform - pos: -2.5,-23.5 + rot: -1.5707963267948966 rad + pos: 5.5,8.5 parent: 1 - - uid: 117 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 410 components: - type: Transform - pos: -2.5,-22.5 + rot: 1.5707963267948966 rad + pos: 6.5,8.5 parent: 1 - - uid: 118 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 470 components: - type: Transform - pos: -2.5,-21.5 + pos: 1.5,11.5 parent: 1 - - uid: 119 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 530 components: - type: Transform - pos: -3.5,-25.5 + pos: 7.5,6.5 parent: 1 - - uid: 120 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 630 components: - type: Transform - pos: -3.5,-24.5 + rot: 1.5707963267948966 rad + pos: 5.5,9.5 parent: 1 - - uid: 121 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 662 components: - type: Transform - pos: -3.5,-23.5 + rot: -1.5707963267948966 rad + pos: 5.5,10.5 parent: 1 - - uid: 122 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 436 components: - type: Transform - pos: -3.5,-22.5 + rot: 1.5707963267948966 rad + pos: 4.5,12.5 parent: 1 - - uid: 123 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 717 components: - type: Transform - pos: -3.5,-21.5 + rot: -1.5707963267948966 rad + pos: 8.5,11.5 parent: 1 - - uid: 124 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 356 components: - type: Transform - pos: -4.5,-25.5 + rot: -1.5707963267948966 rad + pos: 2.5,10.5 parent: 1 - - uid: 125 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 361 components: - type: Transform - pos: -4.5,-24.5 + rot: -1.5707963267948966 rad + pos: 9.5,8.5 parent: 1 - - uid: 126 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 407 components: - type: Transform - pos: -4.5,-23.5 + rot: 1.5707963267948966 rad + pos: 0.5,11.5 parent: 1 - - uid: 127 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 471 components: - type: Transform - pos: -4.5,-22.5 + rot: 1.5707963267948966 rad + pos: 4.5,5.5 parent: 1 - - uid: 128 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 657 components: - type: Transform - pos: -4.5,-21.5 + rot: 3.141592653589793 rad + pos: 6.5,3.5 parent: 1 - - uid: 129 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 928 components: - type: Transform - pos: -5.5,-25.5 + pos: 6.5,12.5 parent: 1 - - uid: 130 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1010 components: - type: Transform - pos: -5.5,-24.5 + rot: -1.5707963267948966 rad + pos: 9.5,5.5 parent: 1 - - uid: 131 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 12 components: - type: Transform - pos: -5.5,-23.5 + rot: -1.5707963267948966 rad + pos: 9.5,9.5 parent: 1 - - uid: 132 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 353 components: - type: Transform - pos: -5.5,-22.5 + rot: 1.5707963267948966 rad + pos: 4.5,6.5 parent: 1 - - uid: 133 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 541 components: - type: Transform - pos: -5.5,-21.5 + rot: 3.141592653589793 rad + pos: 7.5,3.5 parent: 1 - - uid: 134 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 646 components: - type: Transform - pos: -1.5,-24.5 + pos: 0.5,10.5 parent: 1 - - uid: 135 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 650 components: - type: Transform - pos: -1.5,-23.5 + rot: -1.5707963267948966 rad + pos: 9.5,6.5 parent: 1 - - uid: 136 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 666 components: - type: Transform - pos: -1.5,-22.5 + rot: 1.5707963267948966 rad + pos: 4.5,10.5 parent: 1 - - uid: 137 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 886 components: - type: Transform - pos: -1.5,-21.5 + pos: 6.5,13.5 parent: 1 - - uid: 138 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 953 components: - type: Transform - pos: -6.5,-24.5 + pos: -7.5,13.5 parent: 1 - - uid: 139 + - uid: 996 components: - type: Transform - pos: -6.5,-23.5 + pos: -8.5,13.5 parent: 1 - - uid: 140 + - uid: 999 components: - type: Transform - pos: -6.5,-22.5 + pos: -8.5,14.5 parent: 1 - - uid: 141 +- proto: Girder + entities: + - uid: 1218 components: - type: Transform - pos: -6.5,-21.5 + pos: -9.5,14.5 parent: 1 - - uid: 142 +- proto: GravityGeneratorMini + entities: + - uid: 951 components: - type: Transform - pos: -7.5,-23.5 + pos: -7.5,12.5 parent: 1 - - uid: 143 +- proto: Grille + entities: + - uid: 72 components: - type: Transform - pos: -7.5,-22.5 + rot: 1.5707963267948966 rad + pos: 5.5,-7.5 parent: 1 - - uid: 144 + - uid: 311 components: - type: Transform - pos: -8.5,-22.5 + rot: 1.5707963267948966 rad + pos: 10.5,9.5 parent: 1 - - uid: 145 + - uid: 314 components: - type: Transform - pos: -8.5,-21.5 + rot: 1.5707963267948966 rad + pos: 10.5,5.5 parent: 1 - - uid: 146 + - uid: 413 components: - type: Transform - pos: -7.5,-21.5 + rot: 1.5707963267948966 rad + pos: 9.5,-7.5 parent: 1 - - uid: 147 + - uid: 422 components: - type: Transform - pos: -9.5,-22.5 + rot: 1.5707963267948966 rad + pos: 12.5,-3.5 parent: 1 - - uid: 148 + - uid: 564 components: - type: Transform - pos: -9.5,-21.5 + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 parent: 1 - - uid: 149 + - uid: 565 components: - type: Transform - pos: -10.5,-22.5 + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 parent: 1 - - uid: 150 + - uid: 566 components: - type: Transform - pos: -10.5,-21.5 + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 parent: 1 - - uid: 151 + - uid: 567 components: - type: Transform - pos: -11.5,-22.5 + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 parent: 1 - - uid: 152 + - uid: 568 components: - type: Transform - pos: -11.5,-21.5 + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 parent: 1 - - uid: 153 + - uid: 569 components: - type: Transform - pos: -11.5,-20.5 + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 parent: 1 - - uid: 154 + - uid: 570 components: - type: Transform - pos: -11.5,-19.5 + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 parent: 1 - - uid: 155 + - uid: 751 components: - type: Transform - pos: -11.5,-18.5 + pos: 10.5,8.5 parent: 1 - - uid: 156 + - uid: 757 components: - type: Transform - pos: -10.5,-20.5 + pos: 10.5,6.5 parent: 1 - - uid: 157 + - uid: 904 components: - type: Transform - pos: -10.5,-19.5 + rot: 1.5707963267948966 rad + pos: 12.5,0.5 parent: 1 - - uid: 158 + - uid: 911 components: - type: Transform - pos: -10.5,-18.5 + pos: -4.5,-7.5 parent: 1 - - uid: 159 + - uid: 912 components: - type: Transform - pos: -15.5,-19.5 + pos: -8.5,-7.5 parent: 1 - - uid: 160 + - uid: 913 components: - type: Transform - pos: -14.5,-18.5 + pos: -11.5,-3.5 parent: 1 - - uid: 161 + - uid: 914 components: - type: Transform - pos: -14.5,-19.5 + pos: -11.5,0.5 parent: 1 - - uid: 162 + - uid: 988 components: - type: Transform - pos: -13.5,-18.5 + pos: 3.5,13.5 parent: 1 - - uid: 163 + - uid: 1696 components: - type: Transform - pos: -13.5,-19.5 + rot: -1.5707963267948966 rad + pos: -4.5,39.5 parent: 1 - - uid: 164 + - uid: 1833 components: - type: Transform - pos: -12.5,-18.5 + rot: -1.5707963267948966 rad + pos: -3.5,39.5 parent: 1 - - uid: 165 + - uid: 1834 components: - type: Transform - pos: -12.5,-19.5 + rot: -1.5707963267948966 rad + pos: -2.5,39.5 parent: 1 - - uid: 166 + - uid: 1835 components: - type: Transform - pos: -13.5,-20.5 + rot: -1.5707963267948966 rad + pos: -1.5,39.5 parent: 1 - - uid: 167 +- proto: hydroponicsSoil + entities: + - uid: 838 components: - type: Transform - pos: -13.5,-21.5 + rot: -1.5707963267948966 rad + pos: 14.5,16.5 parent: 1 - - uid: 168 + - uid: 2024 components: - type: Transform - pos: -12.5,-20.5 + rot: -1.5707963267948966 rad + pos: 13.5,16.5 parent: 1 - - uid: 169 + - uid: 2025 components: - type: Transform - pos: -12.5,-21.5 + rot: -1.5707963267948966 rad + pos: 12.5,16.5 parent: 1 - - uid: 170 +- proto: HydroponicsToolClippers + entities: + - uid: 2022 components: - type: Transform - pos: -20.5,-15.5 + pos: 12.097572,14.813533 parent: 1 - - uid: 171 +- proto: HydroponicsToolSpade + entities: + - uid: 816 components: - type: Transform - pos: -16.5,-18.5 + pos: 12.691322,14.646866 parent: 1 - - uid: 172 +- proto: hydroponicsTrayAnchored + entities: + - uid: 62 components: - type: Transform - pos: -17.5,-18.5 + pos: -4.5,3.5 parent: 1 - - uid: 173 + - uid: 165 components: - type: Transform - pos: -18.5,-18.5 + pos: -7.5,3.5 parent: 1 - - uid: 174 + - uid: 166 components: - type: Transform - pos: -18.5,-17.5 + pos: -5.5,3.5 parent: 1 - - uid: 175 + - uid: 167 components: - type: Transform - pos: -18.5,-16.5 + pos: -6.5,3.5 parent: 1 - - uid: 176 +- proto: IngotGold1 + entities: + - uid: 1825 components: - type: Transform - pos: -18.5,-15.5 + pos: -3.4656801,36.65958 parent: 1 - - uid: 177 + - uid: 1826 components: - type: Transform - pos: -19.5,-17.5 + pos: -2.6063051,36.72208 parent: 1 - - uid: 178 + - uid: 1827 components: - type: Transform - pos: -19.5,-16.5 + pos: -2.4031801,35.59708 parent: 1 - - uid: 179 + - uid: 1828 components: - type: Transform - pos: -19.5,-15.5 + pos: -3.1844301,35.56583 parent: 1 - - uid: 180 +- proto: JanitorialTrolley + entities: + - uid: 202 components: - type: Transform - pos: -20.5,-14.5 + rot: -1.5707963267948966 rad + pos: 9.5,3.5 parent: 1 - - uid: 181 +- proto: JugWeldingFuel + entities: + - uid: 686 components: - type: Transform - pos: -21.5,-15.5 + pos: -0.27437842,13.09 parent: 1 - - uid: 182 + - uid: 1008 components: - type: Transform - pos: -21.5,-14.5 + pos: -0.73063827,13.09 parent: 1 - - uid: 183 +- proto: KitchenDeepFryer + entities: + - uid: 334 components: - type: Transform - pos: -22.5,-15.5 + rot: -1.5707963267948966 rad + pos: 4.5,5.5 parent: 1 - - uid: 184 +- proto: KitchenElectricGrill + entities: + - uid: 774 components: - type: Transform - pos: -22.5,-14.5 + pos: 0.5,7.5 parent: 1 - - uid: 185 +- proto: KitchenKnife + entities: + - uid: 234 components: - type: Transform - pos: -23.5,-15.5 + pos: 1.4792413,5.5648255 parent: 1 - - uid: 186 +- proto: KitchenMicrowave + entities: + - uid: 149 components: - type: Transform - pos: -23.5,-14.5 + pos: 2.5,7.5 parent: 1 - - uid: 187 +- proto: KitchenReagentGrinder + entities: + - uid: 346 components: - type: Transform - pos: -24.5,-15.5 + pos: 4.5,6.5 parent: 1 - - uid: 188 +- proto: KitchenSpike + entities: + - uid: 156 components: - type: Transform - pos: -24.5,-14.5 + pos: 3.5,12.5 parent: 1 - - uid: 189 +- proto: LessLethalVendingMachine + entities: + - uid: 2056 components: - type: Transform - pos: -23.5,-13.5 + pos: -14.5,23.5 parent: 1 - - uid: 190 +- proto: LuxuryPen + entities: + - uid: 955 components: - type: Transform - pos: -18.5,-14.5 + pos: -8.4360895,9.877812 parent: 1 - - uid: 191 +- proto: MachineCryoSleepPod + entities: + - uid: 1114 components: - type: Transform - pos: -19.5,-14.5 + pos: 2.5,10.5 parent: 1 - - uid: 192 +- proto: Mattress + entities: + - uid: 2023 components: - type: Transform - pos: -23.5,-12.5 + pos: 13.5,14.5 parent: 1 - - uid: 193 +- proto: MedkitAdvancedFilled + entities: + - uid: 1871 components: - type: Transform - pos: -23.5,-11.5 + pos: -14.551509,14.690411 parent: 1 - - uid: 194 +- proto: MedkitFilled + entities: + - uid: 1872 components: - type: Transform - pos: -24.5,-13.5 + pos: -13.997746,14.697974 parent: 1 - - uid: 195 +- proto: MedkitToxinFilled + entities: + - uid: 1873 components: - type: Transform - pos: -24.5,-12.5 + pos: -14.247746,14.875057 parent: 1 - - uid: 196 +- proto: Mirror + entities: + - uid: 989 components: - type: Transform - pos: -24.5,-11.5 + rot: -1.5707963267948966 rad + pos: 5.5,6.5 parent: 1 - - uid: 197 + - uid: 990 components: - type: Transform - pos: -25.5,-13.5 + rot: -1.5707963267948966 rad + pos: 5.5,7.5 parent: 1 - - uid: 198 +- proto: MopItem + entities: + - uid: 1689 components: - type: Transform - pos: -25.5,-12.5 + pos: 9.467162,3.4911292 parent: 1 - - uid: 199 +- proto: NetworkConfigurator + entities: + - uid: 2010 components: - type: Transform - pos: -25.5,-11.5 + pos: 24.276703,21.523607 parent: 1 - - uid: 200 +- proto: NFAshtray + entities: + - uid: 781 components: - type: Transform - pos: -25.5,-14.5 + pos: -6.2673426,6.940201 parent: 1 - - uid: 201 + - uid: 978 components: - type: Transform - pos: -26.5,-11.5 + pos: -1.4999875,-0.99535155 parent: 1 - - uid: 202 + - uid: 979 components: - type: Transform - pos: -27.5,-11.5 + pos: 2.5104294,-0.96410155 parent: 1 - - uid: 203 +- proto: NoticeBoardNF + entities: + - uid: 872 components: - type: Transform - pos: -28.5,-11.5 + rot: 1.5707963267948966 rad + pos: -9.5,9.5 parent: 1 - - uid: 204 +- proto: OilJarGhee + entities: + - uid: 45 components: - type: Transform - pos: -28.5,-10.5 + pos: 4.7203918,4.6294155 parent: 1 - - uid: 205 + - uid: 160 components: - type: Transform - pos: -28.5,-8.5 + pos: 4.3766418,4.868999 parent: 1 - - uid: 206 + - uid: 162 components: - type: Transform - pos: -28.5,-9.5 + pos: 4.6995583,4.8585825 parent: 1 - - uid: 207 + - uid: 172 components: - type: Transform - pos: -29.5,-8.5 + pos: 4.3558083,4.650249 parent: 1 - - uid: 208 +- proto: OrganHumanEyes + entities: + - uid: 1829 components: - type: Transform - pos: -29.5,-9.5 + pos: -2.9656801,36.081455 parent: 1 - - uid: 209 +- proto: Paper + entities: + - uid: 5 components: - type: Transform - pos: -30.5,-8.5 + pos: -8.4048395,9.523646 parent: 1 - - uid: 210 + - uid: 7 components: - type: Transform - pos: -30.5,-9.5 + pos: -8.6548395,9.638229 parent: 1 - - uid: 211 +- proto: PianoInstrument + entities: + - uid: 276 components: - type: Transform - pos: -31.5,-8.5 + rot: 1.5707963267948966 rad + pos: 9.5,-4.5 parent: 1 - - uid: 212 +- proto: PirateFlag + entities: + - uid: 498 components: - type: Transform - pos: -31.5,-9.5 + rot: -1.5707963267948966 rad + pos: 11.5,0.5 parent: 1 - - uid: 213 + - uid: 528 components: - type: Transform - pos: -32.5,-8.5 + rot: -1.5707963267948966 rad + pos: -10.5,0.5 parent: 1 - - uid: 214 + - uid: 529 components: - type: Transform - pos: -32.5,-9.5 + rot: -1.5707963267948966 rad + pos: -8.5,-6.5 parent: 1 - - uid: 215 + - uid: 531 components: - type: Transform - pos: -33.5,-8.5 + rot: -1.5707963267948966 rad + pos: 9.5,-6.5 parent: 1 - - uid: 216 + - uid: 534 components: - type: Transform - pos: -33.5,-9.5 + pos: -2.5,5.5 parent: 1 - - uid: 217 + - uid: 537 components: - type: Transform - pos: -34.5,-8.5 + pos: 7.5,9.5 parent: 1 - - uid: 218 + - uid: 556 components: - type: Transform - pos: -34.5,-7.5 + pos: -1.5,9.5 parent: 1 - - uid: 219 + - uid: 558 components: - type: Transform - pos: -35.5,-7.5 + pos: 6.5,4.5 parent: 1 - - uid: 220 + - uid: 957 components: - type: Transform - pos: -35.5,-8.5 + pos: -4.5,2.5 parent: 1 - - uid: 221 + - uid: 1758 components: - type: Transform - pos: -34.5,-9.5 + pos: 0.5,35.5 parent: 1 - - uid: 222 + - uid: 1868 components: - type: Transform - pos: -24.5,9.5 + pos: 13.5,32.5 parent: 1 - - uid: 223 + - uid: 1990 components: - type: Transform - pos: -31.5,-10.5 + pos: 9.5,19.5 parent: 1 - - uid: 224 + - uid: 1991 components: - type: Transform - pos: -31.5,-11.5 + pos: -15.5,21.5 parent: 1 - - uid: 225 +- proto: PirateHandyFlag + entities: + - uid: 1759 components: - type: Transform - pos: -30.5,-10.5 + pos: 13.875859,9.969445 parent: 1 - - uid: 226 +- proto: PlushieCarp + entities: + - uid: 1434 components: - type: Transform - pos: -30.5,-11.5 + pos: 15.417093,25.484812 parent: 1 - - uid: 227 +- proto: PortableGeneratorPacman + entities: + - uid: 1910 components: - type: Transform - pos: -29.5,-10.5 + pos: 9.5,17.5 parent: 1 - - uid: 228 + - type: MaterialStorage + storage: + Plasma: 1500 + - type: InsertingMaterialStorage +- proto: PortableScrubber + entities: + - uid: 9 components: - type: Transform - pos: -29.5,-11.5 + anchored: True + pos: 4.5,12.5 parent: 1 - - uid: 229 + - type: Physics + bodyType: Static +- proto: PosterContrabandSpaceUp + entities: + - uid: 742 components: - type: Transform - pos: -29.5,-12.5 + pos: -8.5,2.5 parent: 1 - - uid: 230 +- proto: PowerCellRecharger + entities: + - uid: 767 components: - type: Transform - pos: -28.5,-12.5 + rot: 3.141592653589793 rad + pos: -6.5,6.5 parent: 1 - - uid: 231 + - uid: 1560 components: - type: Transform - pos: -27.5,-12.5 + pos: -14.5,17.5 parent: 1 - - uid: 232 +- proto: PoweredLEDLightPostSmall + entities: + - uid: 1002 components: - type: Transform - pos: 0.5,-19.5 + pos: -15.5,15.5 parent: 1 - - uid: 233 + - uid: 1368 components: - type: Transform - pos: -0.5,-19.5 + pos: 19.5,24.5 parent: 1 - - uid: 234 + - uid: 1425 components: - type: Transform - pos: -1.5,-19.5 + pos: 9.5,27.5 parent: 1 - - uid: 235 + - uid: 1539 components: - type: Transform - pos: -2.5,-19.5 + rot: -1.5707963267948966 rad + pos: 24.5,19.5 parent: 1 - - uid: 236 + - uid: 1766 components: - type: Transform - pos: -3.5,-19.5 + pos: -15.5,28.5 parent: 1 - - uid: 237 + - uid: 1767 components: - type: Transform - pos: -4.5,-19.5 + rot: -1.5707963267948966 rad + pos: -10.5,30.5 parent: 1 - - uid: 238 + - uid: 1858 components: - type: Transform - pos: -5.5,-19.5 + rot: -1.5707963267948966 rad + pos: 15.5,14.5 parent: 1 - - uid: 239 + - uid: 1927 components: - type: Transform - pos: -6.5,-19.5 + rot: 1.5707963267948966 rad + pos: 14.5,31.5 parent: 1 - - uid: 240 +- proto: Poweredlight + entities: + - uid: 33 components: - type: Transform - pos: -7.5,-19.5 + rot: 1.5707963267948966 rad + pos: -8.5,3.5 parent: 1 - - uid: 241 + - uid: 110 components: - type: Transform - pos: -8.5,-19.5 + rot: 3.141592653589793 rad + pos: -1.5,10.5 parent: 1 - - uid: 242 + - uid: 207 components: - type: Transform - pos: -8.5,-18.5 + rot: 1.5707963267948966 rad + pos: 6.5,12.5 parent: 1 - - uid: 243 + - uid: 288 components: - type: Transform - pos: -8.5,-17.5 + rot: -1.5707963267948966 rad + pos: 4.5,2.5 parent: 1 - - uid: 244 + - uid: 397 components: - type: Transform - pos: -8.5,-16.5 + rot: 1.5707963267948966 rad + pos: -8.5,8.5 parent: 1 - - uid: 245 + - uid: 720 components: - type: Transform - pos: -9.5,-16.5 + rot: -1.5707963267948966 rad + pos: 4.5,8.5 parent: 1 - - uid: 246 + - uid: 721 components: - type: Transform - pos: -10.5,-16.5 + rot: 1.5707963267948966 rad + pos: -1.5,2.5 parent: 1 - - uid: 247 + - uid: 722 components: - type: Transform - pos: -11.5,-16.5 + rot: 1.5707963267948966 rad + pos: -1.5,8.5 parent: 1 - - uid: 248 + - uid: 746 components: - type: Transform - pos: -12.5,-16.5 + rot: -1.5707963267948966 rad + pos: 9.5,3.5 parent: 1 - - uid: 249 + - uid: 959 components: - type: Transform - pos: -13.5,-16.5 + pos: 4.5,12.5 parent: 1 - - uid: 250 + - uid: 1954 components: - type: Transform - pos: -14.5,-16.5 + rot: -1.5707963267948966 rad + pos: 0.5,13.5 parent: 1 - - uid: 251 +- proto: PoweredlightColoredBlack + entities: + - uid: 227 components: - type: Transform - pos: -15.5,-16.5 + rot: -1.5707963267948966 rad + pos: 7.5,7.5 parent: 1 - - uid: 252 + - uid: 256 components: - type: Transform - pos: -16.5,-16.5 + rot: 3.141592653589793 rad + pos: 9.5,8.5 parent: 1 - - uid: 253 + - uid: 298 components: - type: Transform - pos: -16.5,-15.5 + rot: -1.5707963267948966 rad + pos: 9.5,1.5 parent: 1 - - uid: 254 + - uid: 299 components: - type: Transform - pos: -16.5,-14.5 + rot: 1.5707963267948966 rad + pos: -8.5,1.5 parent: 1 - - uid: 255 + - uid: 300 components: - type: Transform - pos: -16.5,-13.5 + rot: 1.5707963267948966 rad + pos: -8.5,-4.5 parent: 1 - - uid: 256 + - uid: 301 components: - type: Transform - pos: -16.5,-12.5 + rot: -1.5707963267948966 rad + pos: 9.5,-4.5 parent: 1 - - uid: 257 + - uid: 302 components: - type: Transform - pos: -17.5,-12.5 + rot: 1.5707963267948966 rad + pos: -7.5,-7.5 parent: 1 - - uid: 258 + - uid: 304 components: - type: Transform - pos: -18.5,-12.5 + rot: 3.141592653589793 rad + pos: -11.5,-2.5 parent: 1 - - uid: 259 + - uid: 309 components: - type: Transform - pos: -19.5,-12.5 + rot: -1.5707963267948966 rad + pos: 8.5,-7.5 parent: 1 - - uid: 260 + - uid: 312 components: - type: Transform - pos: -20.5,-12.5 + rot: 3.141592653589793 rad + pos: 12.5,-2.5 parent: 1 - - uid: 261 + - uid: 445 components: - type: Transform - pos: -21.5,-12.5 + rot: 3.141592653589793 rad + pos: 9.5,5.5 parent: 1 - - uid: 262 +- proto: PoweredSmallLight + entities: + - uid: 1192 components: - type: Transform - pos: -21.5,-11.5 + pos: 10.5,23.5 parent: 1 - - uid: 263 + - uid: 1194 components: - type: Transform - pos: -21.5,-10.5 + rot: -1.5707963267948966 rad + pos: 8.5,21.5 parent: 1 - - uid: 264 + - uid: 1854 components: - type: Transform - pos: -21.5,-9.5 + rot: 1.5707963267948966 rad + pos: -5.5,33.5 parent: 1 - - uid: 265 + - uid: 1861 components: - type: Transform - pos: -22.5,-9.5 + rot: -1.5707963267948966 rad + pos: -1.5,38.5 parent: 1 - - uid: 266 + - uid: 1924 components: - type: Transform - pos: -23.5,-9.5 + rot: 1.5707963267948966 rad + pos: -14.5,23.5 parent: 1 - - uid: 267 +- proto: Rack + entities: + - uid: 23 components: - type: Transform - pos: -24.5,-9.5 + pos: -5.5,5.5 parent: 1 - - uid: 268 + - uid: 64 components: - type: Transform - pos: -25.5,-9.5 + pos: 0.5,4.5 parent: 1 - - uid: 269 + - uid: 87 components: - type: Transform - pos: -26.5,-9.5 + pos: -2.5,13.5 parent: 1 - - uid: 270 + - uid: 96 components: - type: Transform - pos: -26.5,-8.5 + pos: -3.5,13.5 parent: 1 - - uid: 271 + - uid: 98 components: - type: Transform - pos: -26.5,-2.5 + pos: -3.5,11.5 parent: 1 - - uid: 281 + - uid: 111 components: - type: Transform - pos: -26.5,-1.5 + pos: -2.5,11.5 parent: 1 - - uid: 282 + - uid: 112 components: - type: Transform - pos: -26.5,-0.5 + pos: -3.5,8.5 parent: 1 - - uid: 283 + - uid: 144 components: - type: Transform - pos: -25.5,-1.5 + pos: 2.5,4.5 parent: 1 - - uid: 284 + - uid: 145 components: - type: Transform - pos: -25.5,-0.5 + rot: -1.5707963267948966 rad + pos: -1.5,3.5 parent: 1 - - uid: 285 + - uid: 152 components: - type: Transform - pos: -24.5,-0.5 + pos: -1.5,11.5 parent: 1 - - uid: 286 + - uid: 179 components: - type: Transform - pos: -24.5,0.5 + pos: 1.5,4.5 parent: 1 - - uid: 287 + - uid: 182 components: - type: Transform - pos: -24.5,1.5 + pos: 4.5,4.5 parent: 1 - - uid: 288 + - uid: 884 components: - type: Transform - pos: -24.5,2.5 + pos: -1.5,13.5 parent: 1 - - uid: 289 +- proto: Railing + entities: + - uid: 3 components: - type: Transform - pos: -15.5,-15.5 + pos: 4.5,24.5 parent: 1 - - uid: 290 + - uid: 831 components: - type: Transform - pos: -15.5,-14.5 + rot: 1.5707963267948966 rad + pos: -3.5,17.5 parent: 1 - - uid: 291 + - uid: 840 components: - type: Transform - pos: -14.5,-15.5 + rot: -1.5707963267948966 rad + pos: -0.5,19.5 parent: 1 - - uid: 292 + - uid: 925 components: - type: Transform - pos: -13.5,-15.5 + rot: 1.5707963267948966 rad + pos: -3.5,18.5 parent: 1 - - uid: 293 + - uid: 935 components: - type: Transform - pos: -11.5,-15.5 + rot: -1.5707963267948966 rad + pos: -0.5,17.5 parent: 1 - - uid: 294 + - uid: 992 components: - type: Transform - pos: -12.5,-15.5 + pos: 0.5,25.5 parent: 1 - - uid: 295 + - uid: 1033 components: - type: Transform - pos: -10.5,-15.5 + pos: 3.5,24.5 parent: 1 - - uid: 296 + - uid: 1039 components: - type: Transform - pos: -12.5,-14.5 + pos: 5.5,24.5 parent: 1 - - uid: 297 + - uid: 1040 components: - type: Transform - pos: -13.5,-14.5 + rot: 3.141592653589793 rad + pos: 5.5,21.5 parent: 1 - - uid: 298 + - uid: 1041 components: - type: Transform - pos: -14.5,-14.5 + rot: 3.141592653589793 rad + pos: 4.5,21.5 parent: 1 - - uid: 299 + - uid: 1042 components: - type: Transform - pos: -15.5,-13.5 + rot: 3.141592653589793 rad + pos: 3.5,21.5 parent: 1 - - uid: 300 + - uid: 1043 components: - type: Transform - pos: -14.5,-13.5 + rot: 3.141592653589793 rad + pos: 2.5,21.5 parent: 1 - - uid: 301 + - uid: 1045 components: - type: Transform - pos: -17.5,-11.5 + rot: 3.141592653589793 rad + pos: -6.5,22.5 parent: 1 - - uid: 302 + - uid: 1046 components: - type: Transform - pos: -18.5,-11.5 + rot: 3.141592653589793 rad + pos: -7.5,22.5 parent: 1 - - uid: 303 + - uid: 1048 components: - type: Transform - pos: -19.5,-11.5 + rot: 3.141592653589793 rad + pos: -9.5,22.5 parent: 1 - - uid: 304 + - uid: 1049 components: - type: Transform - pos: -20.5,-11.5 + pos: -9.5,25.5 parent: 1 - - uid: 305 + - uid: 1050 components: - type: Transform - pos: -20.5,-10.5 + pos: -8.5,25.5 parent: 1 - - uid: 306 + - uid: 1055 components: - type: Transform - pos: -25.5,-8.5 + pos: -7.5,25.5 parent: 1 - - uid: 307 + - uid: 1094 components: - type: Transform - pos: -24.5,-8.5 + pos: -4.5,33.5 parent: 1 - - uid: 308 + - uid: 1106 components: - type: Transform - pos: -23.5,-8.5 + rot: -1.5707963267948966 rad + pos: -1.5,28.5 parent: 1 - - uid: 309 + - uid: 1123 components: - type: Transform - pos: -7.5,-18.5 + rot: 3.141592653589793 rad + pos: -4.5,21.5 parent: 1 - - uid: 310 + - uid: 1404 components: - type: Transform - pos: -6.5,-18.5 + rot: 3.141592653589793 rad + pos: 23.5,25.5 parent: 1 - - uid: 311 + - uid: 1405 components: - type: Transform - pos: -1.5,-18.5 + rot: 3.141592653589793 rad + pos: 22.5,25.5 parent: 1 - - uid: 312 + - uid: 1407 components: - type: Transform - pos: -0.5,-18.5 + pos: 22.5,19.5 parent: 1 - - uid: 313 + - uid: 1408 components: - type: Transform - pos: -2.5,-18.5 + rot: 1.5707963267948966 rad + pos: 24.5,23.5 parent: 1 - - uid: 314 + - uid: 1409 components: - type: Transform - pos: -3.5,-18.5 + rot: 1.5707963267948966 rad + pos: 24.5,22.5 parent: 1 - - uid: 315 + - uid: 1410 components: - type: Transform - pos: -4.5,-17.5 + rot: 1.5707963267948966 rad + pos: 24.5,21.5 parent: 1 - - uid: 316 + - uid: 1607 components: - type: Transform - pos: -1.5,-17.5 + pos: -1.5,33.5 parent: 1 - - uid: 318 + - uid: 1623 components: - type: Transform - pos: -7.5,-17.5 + pos: -5.5,33.5 parent: 1 - - uid: 319 + - uid: 1647 components: - type: Transform - pos: 6.5,-19.5 + pos: -3.5,33.5 parent: 1 - - uid: 320 + - uid: 1725 components: - type: Transform - pos: 7.5,-19.5 + rot: -1.5707963267948966 rad + pos: -1.5,29.5 parent: 1 - - uid: 321 + - uid: 1726 components: - type: Transform - pos: 8.5,-19.5 + rot: 1.5707963267948966 rad + pos: -3.5,28.5 parent: 1 - - uid: 322 + - uid: 1727 components: - type: Transform - pos: 9.5,-19.5 + rot: 1.5707963267948966 rad + pos: -3.5,29.5 parent: 1 - - uid: 323 + - uid: 1728 components: - type: Transform - pos: 10.5,-19.5 + rot: 1.5707963267948966 rad + pos: -3.5,31.5 parent: 1 - - uid: 324 + - uid: 1729 components: - type: Transform - pos: 10.5,-18.5 + rot: -1.5707963267948966 rad + pos: -1.5,31.5 parent: 1 - - uid: 325 +- proto: RailingCorner + entities: + - uid: 128 components: - type: Transform - pos: 10.5,-17.5 + rot: -1.5707963267948966 rad + pos: -0.5,26.5 parent: 1 - - uid: 326 + - uid: 228 components: - type: Transform - pos: 10.5,-16.5 + rot: 3.141592653589793 rad + pos: 0.5,10.5 parent: 1 - - uid: 327 + - uid: 233 components: - type: Transform - pos: 11.5,-16.5 + rot: -1.5707963267948966 rad + pos: -1.5,27.5 parent: 1 - - uid: 328 + - uid: 789 components: - type: Transform - pos: 12.5,-16.5 + rot: 3.141592653589793 rad + pos: 1.5,21.5 parent: 1 - - uid: 329 + - uid: 819 components: - type: Transform - pos: 13.5,-16.5 + rot: -1.5707963267948966 rad + pos: 1.5,24.5 parent: 1 - - uid: 330 + - uid: 924 components: - type: Transform - pos: 14.5,-16.5 + rot: 1.5707963267948966 rad + pos: -3.5,20.5 parent: 1 - - uid: 331 + - uid: 929 components: - type: Transform - pos: 14.5,-15.5 + rot: 3.141592653589793 rad + pos: -0.5,20.5 parent: 1 - - uid: 332 + - uid: 1044 components: - type: Transform - pos: 14.5,-14.5 + pos: -5.5,25.5 parent: 1 - - uid: 333 + - uid: 1060 components: - type: Transform - pos: 14.5,-13.5 + rot: 1.5707963267948966 rad + pos: -5.5,22.5 parent: 1 - - uid: 334 + - uid: 1115 components: - type: Transform - pos: 14.5,-12.5 + pos: -3.5,27.5 parent: 1 - - uid: 335 + - uid: 1402 components: - type: Transform - pos: 14.5,-11.5 + pos: 24.5,19.5 parent: 1 - - uid: 336 + - uid: 1403 components: - type: Transform - pos: 14.5,-10.5 + rot: 1.5707963267948966 rad + pos: 24.5,25.5 parent: 1 - - uid: 421 +- proto: RailingCornerSmall + entities: + - uid: 83 components: - type: Transform - pos: -24.5,3.5 + rot: 1.5707963267948966 rad + pos: -0.5,27.5 parent: 1 - - uid: 422 + - uid: 129 components: - type: Transform - pos: -24.5,4.5 + rot: 1.5707963267948966 rad + pos: 0.5,26.5 parent: 1 - - uid: 423 + - uid: 141 components: - type: Transform - pos: -24.5,5.5 + pos: 0.5,20.5 parent: 1 - - uid: 424 + - uid: 164 components: - type: Transform - pos: -24.5,6.5 + rot: 3.141592653589793 rad + pos: -5.5,26.5 parent: 1 - - uid: 425 + - uid: 315 components: - type: Transform - pos: -23.5,6.5 + rot: 1.5707963267948966 rad + pos: 1.5,25.5 parent: 1 - - uid: 426 + - uid: 628 components: - type: Transform - pos: -22.5,6.5 + rot: -1.5707963267948966 rad + pos: -3.5,19.5 parent: 1 - - uid: 427 + - uid: 784 components: - type: Transform - pos: -21.5,6.5 + rot: 1.5707963267948966 rad + pos: 2.5,24.5 parent: 1 - - uid: 428 + - uid: 833 components: - type: Transform - pos: -20.5,6.5 + rot: 3.141592653589793 rad + pos: 2.5,24.5 parent: 1 - - uid: 429 + - uid: 926 components: - type: Transform - pos: -19.5,6.5 + rot: 1.5707963267948966 rad + pos: -0.5,18.5 parent: 1 - - uid: 430 + - uid: 954 components: - type: Transform - pos: -19.5,7.5 + pos: 1.5,20.5 parent: 1 - - uid: 431 + - uid: 1047 components: - type: Transform - pos: -18.5,7.5 + pos: -8.5,22.5 parent: 1 - - uid: 432 + - uid: 1059 components: - type: Transform - pos: -17.5,7.5 + rot: 1.5707963267948966 rad + pos: -6.5,25.5 parent: 1 - - uid: 433 + - uid: 1061 components: - type: Transform - pos: -16.5,7.5 + rot: 3.141592653589793 rad + pos: -3.5,19.5 parent: 1 - - uid: 434 + - uid: 1118 components: - type: Transform - pos: -15.5,7.5 + rot: 3.141592653589793 rad + pos: -4.5,27.5 parent: 1 - - uid: 435 + - uid: 1119 components: - type: Transform - pos: -14.5,7.5 + rot: 1.5707963267948966 rad + pos: -4.5,26.5 parent: 1 - - uid: 436 + - uid: 1120 components: - type: Transform - pos: -14.5,8.5 + rot: -1.5707963267948966 rad + pos: -4.5,26.5 parent: 1 - - uid: 437 + - uid: 1121 components: - type: Transform - pos: -14.5,9.5 + rot: 3.141592653589793 rad + pos: -0.5,25.5 parent: 1 - - uid: 438 + - uid: 1122 components: - type: Transform - pos: -14.5,10.5 + rot: -1.5707963267948966 rad + pos: -5.5,21.5 parent: 1 - - uid: 439 + - uid: 1124 components: - type: Transform - pos: -13.5,10.5 + rot: -1.5707963267948966 rad + pos: -4.5,20.5 parent: 1 - - uid: 440 + - uid: 1406 components: - type: Transform - pos: -12.5,10.5 + rot: 1.5707963267948966 rad + pos: 23.5,19.5 parent: 1 - - uid: 441 + - uid: 1411 components: - type: Transform - pos: -11.5,10.5 + rot: 3.141592653589793 rad + pos: 24.5,24.5 parent: 1 - - uid: 442 + - uid: 1730 components: - type: Transform - pos: -10.5,10.5 + rot: 1.5707963267948966 rad + pos: -1.5,32.5 parent: 1 - - uid: 443 + - uid: 1731 components: - type: Transform - pos: -9.5,10.5 + rot: 3.141592653589793 rad + pos: -3.5,32.5 parent: 1 - - uid: 444 +- proto: RandomDrinkBottle + entities: + - uid: 1129 components: - type: Transform - pos: -8.5,10.5 + pos: -1.5,26.5 parent: 1 - - uid: 445 +- proto: RandomStalagmiteOrCrystal + entities: + - uid: 1066 components: - type: Transform - pos: -7.5,10.5 + pos: -13.5,21.5 parent: 1 - - uid: 446 + - uid: 1067 components: - type: Transform - pos: -6.5,10.5 + pos: 4.5,16.5 parent: 1 - - uid: 447 + - uid: 1093 components: - type: Transform - pos: -5.5,10.5 + pos: -9.5,16.5 parent: 1 - - uid: 448 + - uid: 1095 components: - type: Transform - pos: -4.5,10.5 + pos: -12.5,19.5 parent: 1 - - uid: 449 + - uid: 1096 components: - type: Transform - pos: -3.5,10.5 + pos: -10.5,18.5 parent: 1 - - uid: 450 + - uid: 1097 components: - type: Transform - pos: -2.5,10.5 + pos: -9.5,21.5 parent: 1 - - uid: 451 + - uid: 1286 components: - type: Transform - pos: -1.5,10.5 + pos: 9.5,13.5 parent: 1 - - uid: 452 + - uid: 1296 components: - type: Transform - pos: -1.5,11.5 + pos: -5.5,18.5 parent: 1 - - uid: 453 + - uid: 1562 components: - type: Transform - pos: -1.5,12.5 + pos: 9.5,26.5 parent: 1 - - uid: 454 + - uid: 1597 components: - type: Transform - pos: -1.5,13.5 + pos: 6.5,17.5 parent: 1 - - uid: 455 + - uid: 1604 components: - type: Transform - pos: -1.5,14.5 + pos: 8.5,24.5 parent: 1 - - uid: 456 + - uid: 1804 components: - type: Transform - pos: -0.5,14.5 + pos: 6.5,31.5 parent: 1 - - uid: 457 + - uid: 1908 components: - type: Transform - pos: 0.5,14.5 + pos: -15.5,26.5 parent: 1 - - uid: 458 + - uid: 1915 components: - type: Transform - pos: 1.5,14.5 + pos: -10.5,25.5 parent: 1 - - uid: 459 + - uid: 2005 components: - type: Transform - pos: 2.5,14.5 + pos: 3.5,18.5 parent: 1 - - uid: 460 +- proto: ReagentContainerFlour + entities: + - uid: 2015 components: - type: Transform - pos: 3.5,14.5 + pos: 4.381627,8.771014 parent: 1 - - uid: 461 + - uid: 2016 components: - type: Transform - pos: 3.5,13.5 + pos: 4.600377,8.666847 parent: 1 - - uid: 462 +- proto: ReagentContainerPepper + entities: + - uid: 2014 components: - type: Transform - pos: 3.5,12.5 + pos: 0.834986,5.730723 parent: 1 - - uid: 463 +- proto: ReagentContainerRaisin + entities: + - uid: 2017 components: - type: Transform - pos: 3.5,11.5 + pos: 4.3920436,8.500181 parent: 1 - - uid: 464 +- proto: ReagentContainerRice + entities: + - uid: 2019 components: - type: Transform - pos: 3.5,10.5 + pos: 4.569127,8.302263 parent: 1 - - uid: 465 +- proto: ReagentContainerSalt + entities: + - uid: 2013 components: - type: Transform - pos: 4.5,10.5 + pos: 0.5641525,5.668223 parent: 1 - - uid: 466 +- proto: ReinforcedWindow + entities: + - uid: 582 components: - type: Transform - pos: 5.5,10.5 + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 parent: 1 - - uid: 467 + - uid: 583 components: - type: Transform - pos: 6.5,10.5 + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 parent: 1 - - uid: 468 + - uid: 584 components: - type: Transform - pos: 7.5,10.5 + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 parent: 1 - - uid: 469 + - uid: 585 components: - type: Transform - pos: 8.5,10.5 + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 parent: 1 - - uid: 470 + - uid: 586 components: - type: Transform - pos: 9.5,10.5 + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 parent: 1 - - uid: 471 + - uid: 587 components: - type: Transform - pos: 9.5,9.5 + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 parent: 1 - - uid: 472 + - uid: 588 components: - type: Transform - pos: 9.5,8.5 + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 parent: 1 - - uid: 473 + - uid: 694 components: - type: Transform - pos: 9.5,7.5 + pos: 10.5,5.5 parent: 1 - - uid: 474 + - uid: 752 components: - type: Transform - pos: 10.5,7.5 + pos: 10.5,6.5 parent: 1 - - uid: 475 + - uid: 915 components: - type: Transform - pos: 11.5,7.5 + pos: 12.5,0.5 parent: 1 - - uid: 476 + - uid: 916 components: - type: Transform - pos: 12.5,7.5 + pos: 12.5,-3.5 parent: 1 - - uid: 477 + - uid: 917 components: - type: Transform - pos: 13.5,7.5 + pos: 5.5,-7.5 parent: 1 - - uid: 478 + - uid: 918 components: - type: Transform - pos: 14.5,7.5 + pos: 9.5,-7.5 parent: 1 - - uid: 479 + - uid: 919 components: - type: Transform - pos: 15.5,7.5 + pos: -4.5,-7.5 parent: 1 - - uid: 480 + - uid: 920 components: - type: Transform - pos: 15.5,6.5 + pos: -8.5,-7.5 parent: 1 - - uid: 481 + - uid: 921 components: - type: Transform - pos: 15.5,5.5 + pos: -11.5,-3.5 parent: 1 - - uid: 482 + - uid: 922 components: - type: Transform - pos: 15.5,4.5 + pos: -11.5,0.5 parent: 1 - - uid: 483 + - uid: 998 components: - type: Transform - pos: 15.5,3.5 + pos: 10.5,8.5 parent: 1 - - uid: 484 + - uid: 1034 components: - type: Transform - pos: 16.5,3.5 + pos: 10.5,9.5 parent: 1 - - uid: 485 + - uid: 1035 components: - type: Transform - pos: 16.5,2.5 + pos: 3.5,13.5 parent: 1 - - uid: 486 + - uid: 1675 components: - type: Transform - pos: 16.5,1.5 + rot: -1.5707963267948966 rad + pos: -3.5,39.5 parent: 1 - - uid: 487 + - uid: 1735 components: - type: Transform - pos: 16.5,0.5 + rot: -1.5707963267948966 rad + pos: -4.5,39.5 parent: 1 - - uid: 488 + - uid: 1836 components: - type: Transform - pos: 17.5,0.5 + rot: -1.5707963267948966 rad + pos: -2.5,39.5 parent: 1 - - uid: 489 + - uid: 1837 components: - type: Transform - pos: 17.5,-0.5 + rot: -1.5707963267948966 rad + pos: -1.5,39.5 parent: 1 - - uid: 490 +- proto: RemoteSignaller + entities: + - uid: 2009 components: - type: Transform - pos: 17.5,-1.5 + pos: 24.568369,21.388191 parent: 1 - - uid: 491 +- proto: Retractor + entities: + - uid: 1195 components: - type: Transform - pos: 17.5,-2.5 + pos: -14.526924,19.46004 parent: 1 - - uid: 492 +- proto: Saw + entities: + - uid: 1869 components: - type: Transform - pos: 17.5,-3.5 + pos: -14.50255,19.370592 parent: 1 - - uid: 493 +- proto: SawElectric + entities: + - uid: 1855 components: - type: Transform - pos: 17.5,-4.5 + pos: -14.476463,19.648453 parent: 1 - - uid: 494 +- proto: SeedExtractor + entities: + - uid: 104 components: - type: Transform - pos: 17.5,-5.5 + pos: -6.5,5.5 parent: 1 - - uid: 495 +- proto: SheetPlasma + entities: + - uid: 668 components: - type: Transform - pos: 17.5,-6.5 + rot: 3.141592653589793 rad + pos: -2.610289,13.663282 parent: 1 - - uid: 496 + - uid: 669 components: - type: Transform - pos: 17.5,-7.5 + rot: 3.141592653589793 rad + pos: -2.3394558,13.652866 parent: 1 - - uid: 497 + - uid: 2053 components: - type: Transform - pos: 17.5,-8.5 + pos: 9.503929,17.419426 parent: 1 - - uid: 498 + - type: Stack + count: 15 +- proto: SheetUranium + entities: + - uid: 670 components: - type: Transform - pos: 17.5,-9.5 + pos: -1.7080126,13.6587715 parent: 1 - - uid: 499 + - uid: 672 components: - type: Transform - pos: 15.5,-9.5 + rot: 3.141592653589793 rad + pos: -1.2977891,13.652866 parent: 1 - - uid: 500 +- proto: Shovel + entities: + - uid: 1126 components: - type: Transform - pos: 14.5,-9.5 + pos: -0.03910017,21.951792 parent: 1 - - uid: 501 + - uid: 1842 components: - type: Transform - pos: 16.5,-9.5 + rot: 1.5707963267948966 rad + pos: 2.814949,35.75033 parent: 1 - - uid: 502 +- proto: ShuttleGunPirateCannon + entities: + - uid: 2004 components: - type: Transform - pos: 16.5,-0.5 + rot: 1.5707963267948966 rad + pos: 24.5,22.5 parent: 1 - - uid: 503 +- proto: SignalButton + entities: + - uid: 173 components: - type: Transform - pos: 16.5,-1.5 + rot: -1.5707963267948966 rad + pos: -2.5,3.5 parent: 1 - - uid: 504 + - type: DeviceLinkSource + linkedPorts: + 318: + - Pressed: Toggle + - uid: 667 components: - type: Transform - pos: 16.5,-2.5 + pos: 9.5,7.5 parent: 1 - - uid: 505 + - type: DeviceLinkSource + linkedPorts: + 330: + - Pressed: Toggle + 438: + - Pressed: Toggle + - uid: 671 components: - type: Transform - pos: 16.5,-3.5 + pos: 9.5,10.5 parent: 1 - - uid: 506 + - type: DeviceLinkSource + linkedPorts: + 433: + - Pressed: Toggle + 313: + - Pressed: Toggle + - uid: 730 components: - type: Transform - pos: 16.5,-4.5 + rot: -1.5707963267948966 rad + pos: 5.5,4.5 parent: 1 - - uid: 507 + - type: DeviceLinkSource + linkedPorts: + 365: + - Pressed: Toggle + - uid: 770 components: - type: Transform - pos: 16.5,-5.5 + rot: 3.141592653589793 rad + pos: -3.5,-5.5 parent: 1 - - uid: 508 + - type: DeviceLinkSource + linkedPorts: + 386: + - Pressed: Toggle + 368: + - Pressed: Toggle + 390: + - Pressed: Toggle + 403: + - Pressed: Toggle + 428: + - Pressed: Toggle + 429: + - Pressed: Toggle + 329: + - Pressed: Toggle + - uid: 859 components: - type: Transform - pos: 16.5,-6.5 + rot: 1.5707963267948966 rad + pos: -2.5,3.5 parent: 1 - - uid: 509 + - type: DeviceLinkSource + linkedPorts: + 344: + - Pressed: Toggle + 341: + - Pressed: Toggle + 349: + - Pressed: Toggle + 350: + - Pressed: Toggle + 351: + - Pressed: Toggle + 352: + - Pressed: Toggle + 364: + - Pressed: Toggle + - uid: 947 components: - type: Transform - pos: 16.5,-7.5 + pos: -8.5,-5.5 parent: 1 - - uid: 511 + - type: DeviceLinkSource + linkedPorts: + 442: + - Pressed: Toggle + 439: + - Pressed: Toggle + - uid: 948 components: - type: Transform - pos: 15.5,-0.5 + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 parent: 1 - - uid: 512 + - type: DeviceLinkSource + linkedPorts: + 449: + - Pressed: Toggle + 444: + - Pressed: Toggle + - uid: 949 components: - type: Transform - pos: 15.5,-1.5 + pos: 9.5,-5.5 parent: 1 - - uid: 513 + - type: DeviceLinkSource + linkedPorts: + 454: + - Pressed: Toggle + 455: + - Pressed: Toggle + - uid: 950 components: - type: Transform - pos: 15.5,-2.5 + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 parent: 1 - - uid: 515 + - type: DeviceLinkSource + linkedPorts: + 640: + - Pressed: Toggle + 639: + - Pressed: Toggle + 89: [] + 60: [] +- proto: SignalButtonDirectional + entities: + - uid: 362 components: - type: Transform - pos: 15.5,-4.5 + rot: 1.5707963267948966 rad + pos: 8.5,9.5 parent: 1 - - uid: 516 + - type: DeviceLinkSource + linkedPorts: + 431: + - Pressed: Toggle + - uid: 750 components: - type: Transform - pos: -16.5,-8.5 + rot: 1.5707963267948966 rad + pos: 8.5,6.5 parent: 1 - - uid: 517 + - type: DeviceLinkSource + linkedPorts: + 337: + - Pressed: Toggle + - uid: 1640 components: - type: Transform - pos: 15.5,-6.5 + rot: 1.5707963267948966 rad + pos: -5.5,38.5 parent: 1 - - uid: 520 + - type: DeviceLinkSource + linkedPorts: + 1677: + - Pressed: Toggle + 1672: + - Pressed: Toggle + 1734: + - Pressed: Toggle + 1838: + - Pressed: Toggle +- proto: SignCargo + entities: + - uid: 474 components: - type: Transform - pos: 15.5,0.5 + pos: 1.5,10.5 parent: 1 - - uid: 521 +- proto: SignElectricalMed + entities: + - uid: 1427 components: - type: Transform - pos: 15.5,1.5 + pos: 10.5,13.5 parent: 1 - - uid: 522 + - uid: 1533 components: - type: Transform - pos: 15.5,2.5 + pos: 10.5,17.5 parent: 1 - - uid: 523 +- proto: SinkStemlessWater + entities: + - uid: 791 components: - type: Transform - pos: 14.5,6.5 + rot: 1.5707963267948966 rad + pos: 6.4667277,6.32853 parent: 1 - - uid: 524 + - uid: 1036 components: - type: Transform - pos: 14.5,5.5 + rot: 1.5707963267948966 rad + pos: 6.4771442,7.3422375 parent: 1 - - uid: 525 +- proto: SinkWide + entities: + - uid: 981 components: - type: Transform - pos: 13.5,6.5 + rot: 1.5707963267948966 rad + pos: -1.5,7.5 parent: 1 - - uid: 526 +- proto: SMESBasic + entities: + - uid: 271 components: - type: Transform - pos: -10.5,2.5 + pos: -7.5,11.5 parent: 1 - - uid: 527 +- proto: SodaDispenserEmpty + entities: + - uid: 1237 components: - type: Transform - pos: 12.5,6.5 + pos: -1.5,2.5 parent: 1 - - uid: 528 +- proto: SpaceCash10 + entities: + - uid: 1821 components: - type: Transform - pos: 12.5,5.5 + pos: -3.4031801,35.737705 parent: 1 - - uid: 529 + - uid: 1822 components: - type: Transform - pos: 14.5,4.5 + pos: -3.4969301,36.53458 parent: 1 - - uid: 530 + - uid: 1823 components: - type: Transform - pos: 14.5,3.5 + pos: -2.4052827,36.700047 parent: 1 - - uid: 531 + - uid: 1824 components: - type: Transform - pos: 14.5,2.5 + pos: -2.4656801,35.75333 parent: 1 - - uid: 534 +- proto: SpaceVillainArcadeFilled + entities: + - uid: 268 components: - type: Transform - pos: 14.5,-0.5 + rot: 1.5707963267948966 rad + pos: -8.5,-4.5 parent: 1 - - uid: 535 + - type: SpamEmitSound + enabled: False +- proto: SpawnMobCatClarpy + entities: + - uid: 68 components: - type: Transform - pos: 14.5,-8.5 + pos: 0.5,10.5 parent: 1 - - uid: 536 +- proto: SpawnMobParrot + entities: + - uid: 2035 components: - type: Transform - pos: 14.5,-7.5 + pos: 15.5,29.5 parent: 1 - - uid: 537 +- proto: SpawnPointPirate + entities: + - uid: 14 components: - type: Transform - pos: -10.5,3.5 + pos: 1.5,1.5 parent: 1 - - uid: 538 +- proto: SpawnPointPirateCaptain + entities: + - uid: 52 components: - type: Transform - pos: 11.5,6.5 + pos: 0.5,1.5 parent: 1 - - uid: 539 +- proto: SpawnPointPirateFirstMate + entities: + - uid: 93 components: - type: Transform - pos: 10.5,6.5 + pos: -0.5,1.5 parent: 1 - - uid: 540 +- proto: StairStageWood + entities: + - uid: 1599 components: - type: Transform - pos: 8.5,8.5 + pos: -2.5,32.5 parent: 1 - - uid: 541 +- proto: StoolBar + entities: + - uid: 59 components: - type: Transform - pos: 8.5,9.5 + pos: -2.5,-3.5 parent: 1 - - uid: 542 + - uid: 73 components: - type: Transform - pos: 7.5,8.5 + pos: 0.5,-3.5 parent: 1 - - uid: 543 + - uid: 77 components: - type: Transform - pos: 7.5,9.5 + pos: -1.5,-3.5 parent: 1 - - uid: 544 + - uid: 440 components: - type: Transform - pos: 6.5,8.5 + pos: 1.5,-3.5 parent: 1 - - uid: 545 + - uid: 533 components: - type: Transform - pos: 6.5,9.5 + pos: -0.5,-3.5 parent: 1 - - uid: 546 + - uid: 547 components: - type: Transform - pos: 5.5,9.5 + pos: 2.5,-3.5 parent: 1 - - uid: 547 + - uid: 557 components: - type: Transform - pos: 4.5,9.5 + pos: 3.5,-3.5 parent: 1 - - uid: 548 +- proto: SubstationBasic + entities: + - uid: 289 components: - type: Transform - pos: -2.5,9.5 + pos: -8.5,11.5 parent: 1 - - uid: 549 +- proto: SuitStorageEVAPirate + entities: + - uid: 1193 components: - type: Transform - pos: -3.5,9.5 + pos: 10.5,21.5 parent: 1 - - uid: 550 + - uid: 1641 components: - type: Transform - pos: -4.5,9.5 + pos: 10.5,23.5 parent: 1 - - uid: 551 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 308 components: - type: Transform - pos: -5.5,9.5 + pos: -6.5,11.5 parent: 1 - - uid: 552 +- proto: SurveillanceCameraSupply + entities: + - uid: 225 components: - type: Transform - pos: -6.5,9.5 + pos: -2.5,10.5 parent: 1 - - uid: 553 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Storage 2 + - uid: 393 components: - type: Transform - pos: -7.5,9.5 + rot: 1.5707963267948966 rad + pos: -3.5,5.5 parent: 1 - - uid: 554 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Storage 1 + - uid: 724 components: - type: Transform - pos: -8.5,9.5 + rot: 1.5707963267948966 rad + pos: 4.5,12.5 parent: 1 - - uid: 555 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Freezer + - uid: 726 components: - type: Transform - pos: -8.5,8.5 + rot: 3.141592653589793 rad + pos: -2.5,1.5 parent: 1 - - uid: 556 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Food Court 1 + - uid: 727 components: - type: Transform - pos: -9.5,9.5 + rot: 3.141592653589793 rad + pos: 5.5,1.5 parent: 1 - - uid: 557 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Food Court 2 + - uid: 728 components: - type: Transform - pos: -9.5,8.5 + rot: 3.141592653589793 rad + pos: 1.5,8.5 parent: 1 - - uid: 558 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Kitchen +- proto: SurvivalKnife + entities: + - uid: 1831 components: - type: Transform - pos: -10.5,9.5 + rot: -1.5707963267948966 rad + pos: -2.4595704,36.201065 parent: 1 - - uid: 559 +- proto: SyringeStimulants + entities: + - uid: 2011 components: - type: Transform - pos: -10.5,8.5 + pos: 6.487763,7.417817 parent: 1 - - uid: 560 + - uid: 2012 components: - type: Transform - pos: -11.5,9.5 + pos: 6.487763,7.0949006 parent: 1 - - uid: 561 +- proto: TableCounterWood + entities: + - uid: 100 components: - type: Transform - pos: -11.5,8.5 + pos: 3.5,2.5 parent: 1 - - uid: 562 + - uid: 102 components: - type: Transform - pos: -12.5,9.5 + pos: 4.5,2.5 parent: 1 - - uid: 563 + - uid: 106 components: - type: Transform - pos: -12.5,8.5 + pos: 2.5,2.5 parent: 1 - - uid: 564 + - uid: 107 components: - type: Transform - pos: -13.5,9.5 + pos: 1.5,2.5 parent: 1 - - uid: 565 + - uid: 108 components: - type: Transform - pos: -13.5,8.5 + pos: 0.5,2.5 parent: 1 - - uid: 566 + - uid: 109 components: - type: Transform - pos: -0.5,13.5 + pos: -0.5,2.5 parent: 1 - - uid: 567 + - uid: 113 components: - type: Transform - pos: -0.5,12.5 + pos: -1.5,2.5 parent: 1 - - uid: 568 +- proto: TableReinforced + entities: + - uid: 121 components: - type: Transform - pos: -0.5,11.5 + pos: -5.5,6.5 parent: 1 - - uid: 569 + - uid: 139 components: - type: Transform - pos: -0.5,10.5 + rot: -1.5707963267948966 rad + pos: 4.5,6.5 parent: 1 - - uid: 572 + - uid: 194 components: - type: Transform - pos: 0.5,11.5 + pos: -8.5,9.5 parent: 1 - - uid: 573 + - uid: 249 components: - type: Transform - pos: -9.5,7.5 + pos: -6.5,10.5 parent: 1 - - uid: 577 + - uid: 277 components: - type: Transform - pos: -9.5,6.5 + rot: 1.5707963267948966 rad + pos: -2.5,6.5 parent: 1 - - uid: 578 + - uid: 307 components: - type: Transform - pos: 2.5,13.5 + rot: 1.5707963267948966 rad + pos: 6.5,6.5 parent: 1 - - uid: 579 + - uid: 343 components: - type: Transform - pos: 2.5,12.5 + pos: -7.5,10.5 parent: 1 - - uid: 580 + - uid: 399 components: - type: Transform - pos: 2.5,11.5 + pos: -8.5,10.5 parent: 1 - - uid: 582 + - uid: 400 components: - type: Transform - pos: -3.5,12.5 + pos: -5.5,7.5 parent: 1 - - uid: 583 + - uid: 450 components: - type: Transform - pos: -3.5,13.5 + rot: -1.5707963267948966 rad + pos: 2.5,7.5 parent: 1 - - uid: 584 + - uid: 555 components: - type: Transform - pos: -3.5,14.5 + pos: -6.5,7.5 parent: 1 - - uid: 585 + - uid: 576 components: - type: Transform - pos: -4.5,12.5 + rot: -1.5707963267948966 rad + pos: 1.5,7.5 parent: 1 - - uid: 586 + - uid: 581 components: - type: Transform - pos: -4.5,13.5 + rot: -1.5707963267948966 rad + pos: 0.5,5.5 parent: 1 - - uid: 587 + - uid: 608 components: - type: Transform - pos: -4.5,14.5 + rot: -1.5707963267948966 rad + pos: 1.5,5.5 parent: 1 - - uid: 588 + - uid: 649 components: - type: Transform - pos: -5.5,12.5 + pos: -6.5,6.5 parent: 1 - - uid: 589 + - uid: 675 components: - type: Transform - pos: -5.5,13.5 + rot: -1.5707963267948966 rad + pos: 0.5,7.5 parent: 1 - - uid: 590 + - uid: 683 components: - type: Transform - pos: -5.5,14.5 + rot: -1.5707963267948966 rad + pos: 2.5,5.5 parent: 1 - - uid: 591 + - uid: 692 components: - type: Transform - pos: -6.5,12.5 + rot: 3.141592653589793 rad + pos: 6.5,7.5 parent: 1 - - uid: 592 + - uid: 723 components: - type: Transform - pos: -6.5,13.5 + rot: -1.5707963267948966 rad + pos: -1.5,5.5 parent: 1 - - uid: 593 + - uid: 995 components: - type: Transform - pos: -6.5,14.5 + pos: 4.5,8.5 parent: 1 - - uid: 594 + - uid: 997 components: - type: Transform - pos: -7.5,12.5 + pos: 4.5,7.5 parent: 1 - - uid: 595 +- proto: TableWood + entities: + - uid: 11 components: - type: Transform - pos: -7.5,13.5 + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 parent: 1 - - uid: 596 + - uid: 15 components: - type: Transform - pos: -7.5,14.5 + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 parent: 1 - - uid: 597 + - uid: 18 components: - type: Transform - pos: -7.5,14.5 + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 parent: 1 - - uid: 598 + - uid: 75 components: - type: Transform - pos: 5.5,12.5 + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 parent: 1 - - uid: 599 + - uid: 84 components: - type: Transform - pos: 5.5,13.5 + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 parent: 1 - - uid: 600 + - uid: 119 components: - type: Transform - pos: 5.5,14.5 + pos: 9.5,1.5 parent: 1 - - uid: 601 + - uid: 241 components: - type: Transform - pos: 6.5,12.5 + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 parent: 1 - - uid: 602 + - uid: 242 components: - type: Transform - pos: 6.5,13.5 + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 parent: 1 - - uid: 603 + - uid: 243 components: - type: Transform - pos: 6.5,14.5 + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 parent: 1 - - uid: 604 + - uid: 246 components: - type: Transform - pos: 7.5,12.5 + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 parent: 1 - - uid: 605 + - uid: 538 components: - type: Transform - pos: 7.5,13.5 + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 parent: 1 - - uid: 606 + - uid: 539 components: - type: Transform - pos: 7.5,14.5 + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 parent: 1 - - uid: 607 + - uid: 575 components: - type: Transform - pos: 8.5,12.5 + rot: -1.5707963267948966 rad + pos: -7.5,1.5 parent: 1 - - uid: 608 + - uid: 591 components: - type: Transform - pos: 8.5,13.5 + rot: -1.5707963267948966 rad + pos: -6.5,1.5 parent: 1 - - uid: 609 + - uid: 594 components: - type: Transform - pos: 8.5,14.5 + rot: -1.5707963267948966 rad + pos: -5.5,1.5 parent: 1 - - uid: 610 + - uid: 597 components: - type: Transform - pos: 9.5,12.5 + rot: -1.5707963267948966 rad + pos: -8.5,1.5 parent: 1 - - uid: 611 + - uid: 1555 components: - type: Transform - pos: 9.5,13.5 + pos: -14.5,17.5 parent: 1 - - uid: 612 + - uid: 1556 components: - type: Transform - pos: 9.5,14.5 + pos: -14.5,19.5 parent: 1 - - uid: 613 + - uid: 1558 components: - type: Transform - pos: 11.5,9.5 + pos: -14.5,18.5 parent: 1 - - uid: 614 + - uid: 1663 components: - type: Transform - pos: 11.5,10.5 + pos: -14.5,24.5 parent: 1 - - uid: 615 + - uid: 1811 components: - type: Transform - pos: 11.5,11.5 + rot: -1.5707963267948966 rad + pos: -2.5,35.5 parent: 1 - - uid: 616 + - uid: 1812 components: - type: Transform - pos: 12.5,9.5 + rot: -1.5707963267948966 rad + pos: -2.5,36.5 parent: 1 - - uid: 617 + - uid: 1813 components: - type: Transform - pos: 12.5,10.5 + rot: -1.5707963267948966 rad + pos: -3.5,36.5 parent: 1 - - uid: 618 + - uid: 1814 components: - type: Transform - pos: 12.5,11.5 + rot: -1.5707963267948966 rad + pos: -3.5,35.5 parent: 1 - - uid: 619 +- proto: TableWoodReinforced + entities: + - uid: 1428 components: - type: Transform - pos: 13.5,9.5 + pos: -13.5,14.5 parent: 1 - - uid: 620 + - uid: 1429 components: - type: Transform - pos: 13.5,10.5 + pos: -14.5,14.5 parent: 1 - - uid: 621 +- proto: TargetClown + entities: + - uid: 1992 components: - type: Transform - pos: 13.5,11.5 + pos: -10.5,28.5 parent: 1 - - uid: 622 +- proto: TargetDarts + entities: + - uid: 1750 components: - type: Transform - pos: 14.5,9.5 + pos: -12.5,30.5 parent: 1 - - uid: 623 +- proto: TelecomServerFilledFreelance + entities: + - uid: 2052 components: - type: Transform - pos: 14.5,10.5 + pos: -8.5,12.5 parent: 1 - - uid: 624 +- proto: ToiletDirtyWater + entities: + - uid: 932 components: - type: Transform - pos: 14.5,11.5 + pos: 9.5,9.5 parent: 1 - - uid: 625 + - uid: 994 components: - type: Transform - pos: 15.5,9.5 + pos: 9.5,6.5 parent: 1 - - uid: 626 +- proto: ToyFigurineRatServant + entities: + - uid: 1138 components: - type: Transform - pos: 15.5,10.5 + pos: -5.520999,7.6244407 parent: 1 - - uid: 627 + - uid: 1139 components: - type: Transform - pos: 15.5,11.5 + pos: -5.323082,7.791107 parent: 1 - - uid: 628 +- proto: WallmountTelevisionFrame + entities: + - uid: 737 components: - type: Transform - pos: 10.5,12.5 + pos: -6.5,2.5 parent: 1 - - uid: 629 +- proto: WallReinforced + entities: + - uid: 127 components: - type: Transform - pos: 11.5,12.5 + pos: 11.5,24.5 parent: 1 - - uid: 630 + - uid: 270 components: - type: Transform - pos: 12.5,12.5 + pos: 11.5,20.5 parent: 1 - - uid: 631 + - uid: 297 components: - type: Transform - pos: 13.5,12.5 + rot: 3.141592653589793 rad + pos: -8.5,-6.5 parent: 1 - - uid: 632 + - uid: 316 components: - type: Transform - pos: 14.5,12.5 + rot: 3.141592653589793 rad + pos: -9.5,11.5 parent: 1 - - uid: 633 + - uid: 317 components: - type: Transform - pos: 10.5,13.5 + rot: 3.141592653589793 rad + pos: -9.5,10.5 parent: 1 - - uid: 634 + - uid: 319 components: - type: Transform - pos: 5.5,15.5 + rot: 3.141592653589793 rad + pos: -9.5,9.5 parent: 1 - - uid: 635 + - uid: 321 components: - type: Transform - pos: 5.5,16.5 + rot: 3.141592653589793 rad + pos: -9.5,8.5 parent: 1 - - uid: 636 + - uid: 322 components: - type: Transform - pos: 4.5,16.5 + rot: 3.141592653589793 rad + pos: -9.5,7.5 parent: 1 - - uid: 637 + - uid: 323 components: - type: Transform - pos: 3.5,16.5 + pos: -4.5,-8.5 parent: 1 - - uid: 638 + - uid: 328 components: - type: Transform - pos: 2.5,16.5 + rot: 3.141592653589793 rad + pos: -9.5,6.5 parent: 1 - - uid: 639 + - uid: 418 components: - type: Transform - pos: 1.5,16.5 + rot: 3.141592653589793 rad + pos: -9.5,5.5 parent: 1 - - uid: 640 + - uid: 423 components: - type: Transform - pos: 0.5,16.5 + rot: 3.141592653589793 rad + pos: -9.5,4.5 parent: 1 - - uid: 641 + - uid: 424 components: - type: Transform - pos: -0.5,16.5 + rot: 3.141592653589793 rad + pos: -9.5,2.5 parent: 1 - - uid: 642 + - uid: 427 components: - type: Transform - pos: -1.5,16.5 + rot: 3.141592653589793 rad + pos: -9.5,3.5 parent: 1 - - uid: 643 + - uid: 521 components: - type: Transform - pos: -2.5,16.5 + rot: 3.141592653589793 rad + pos: -3.5,-5.5 parent: 1 - - uid: 644 + - uid: 525 components: - type: Transform - pos: -3.5,16.5 + pos: -8.5,-8.5 parent: 1 - - uid: 645 + - uid: 526 components: - type: Transform - pos: -3.5,15.5 + rot: 3.141592653589793 rad + pos: -4.5,-6.5 parent: 1 - - uid: 646 + - uid: 527 components: - type: Transform - pos: -4.5,15.5 + rot: 3.141592653589793 rad + pos: 4.5,-5.5 parent: 1 - - uid: 647 + - uid: 544 components: - type: Transform - pos: -5.5,15.5 + rot: 1.5707963267948966 rad + pos: 10.5,4.5 parent: 1 - - uid: 648 + - uid: 546 components: - type: Transform - pos: -6.5,15.5 + rot: 1.5707963267948966 rad + pos: 10.5,3.5 parent: 1 - - uid: 649 + - uid: 548 components: - type: Transform - pos: -1.5,17.5 + rot: 1.5707963267948966 rad + pos: 10.5,2.5 parent: 1 - - uid: 650 + - uid: 561 components: - type: Transform - pos: -1.5,18.5 + pos: 5.5,-8.5 parent: 1 - - uid: 651 + - uid: 607 components: - type: Transform - pos: -0.5,17.5 + rot: 1.5707963267948966 rad + pos: 10.5,1.5 parent: 1 - - uid: 652 + - uid: 609 components: - type: Transform - pos: -0.5,18.5 + rot: 3.141592653589793 rad + pos: 10.5,-5.5 parent: 1 - - uid: 653 + - uid: 610 components: - type: Transform - pos: 0.5,17.5 + rot: 3.141592653589793 rad + pos: 11.5,-3.5 parent: 1 - - uid: 654 + - uid: 617 components: - type: Transform - pos: 0.5,18.5 + rot: 3.141592653589793 rad + pos: 9.5,-6.5 parent: 1 - - uid: 655 + - uid: 623 components: - type: Transform - pos: 1.5,17.5 + rot: 3.141592653589793 rad + pos: 5.5,-6.5 parent: 1 - - uid: 656 + - uid: 625 components: - type: Transform - pos: 1.5,18.5 + rot: 3.141592653589793 rad + pos: 10.5,-4.5 parent: 1 - - uid: 657 + - uid: 655 components: - type: Transform - pos: 2.5,17.5 + rot: 3.141592653589793 rad + pos: 10.5,7.5 parent: 1 - - uid: 658 + - uid: 709 components: - type: Transform - pos: 2.5,18.5 + rot: 3.141592653589793 rad + pos: -9.5,-5.5 parent: 1 - - uid: 659 + - uid: 718 components: - type: Transform - pos: 3.5,17.5 + rot: 3.141592653589793 rad + pos: -9.5,-4.5 parent: 1 - - uid: 660 + - uid: 731 components: - type: Transform - pos: 3.5,18.5 + rot: 1.5707963267948966 rad + pos: 11.5,0.5 parent: 1 - - uid: 661 + - uid: 732 components: - type: Transform - pos: 4.5,17.5 + rot: 3.141592653589793 rad + pos: -10.5,-3.5 parent: 1 - - uid: 662 + - uid: 734 components: - type: Transform - pos: 4.5,18.5 + rot: 3.141592653589793 rad + pos: -9.5,1.5 parent: 1 - - uid: 663 + - uid: 735 components: - type: Transform - pos: -2.5,17.5 + rot: 3.141592653589793 rad + pos: -10.5,0.5 parent: 1 - - uid: 664 + - uid: 903 components: - type: Transform - pos: 5.5,17.5 + pos: 9.5,-8.5 parent: 1 - - uid: 665 + - uid: 907 components: - type: Transform - pos: 6.5,15.5 + pos: -12.5,-3.5 parent: 1 - - uid: 666 + - uid: 908 components: - type: Transform - pos: 7.5,15.5 + pos: -12.5,0.5 parent: 1 - - uid: 667 + - uid: 909 components: - type: Transform - pos: -4.5,16.5 + pos: 13.5,-3.5 parent: 1 - - uid: 668 + - uid: 910 components: - type: Transform - pos: -8.5,13.5 + pos: 13.5,0.5 parent: 1 - - uid: 669 + - uid: 1143 components: - type: Transform - pos: -8.5,12.5 + pos: -11.5,12.5 parent: 1 - - uid: 670 + - uid: 1144 components: - type: Transform - pos: -9.5,13.5 + pos: -12.5,12.5 parent: 1 - - uid: 671 + - uid: 1145 components: - type: Transform - pos: -9.5,12.5 + pos: -13.5,12.5 parent: 1 - - uid: 672 + - uid: 1146 components: - type: Transform - pos: -10.5,13.5 + pos: -14.5,12.5 parent: 1 - - uid: 673 + - uid: 1147 components: - type: Transform - pos: -10.5,12.5 + pos: -15.5,12.5 parent: 1 - - uid: 674 + - uid: 1156 components: - type: Transform - pos: -11.5,13.5 + pos: -10.5,12.5 parent: 1 - - uid: 675 + - uid: 1161 components: - type: Transform - pos: -11.5,12.5 + pos: -16.5,13.5 parent: 1 - - uid: 676 + - uid: 1162 components: - type: Transform - pos: -12.5,13.5 + pos: -16.5,12.5 parent: 1 - - uid: 677 + - uid: 1185 components: - type: Transform - pos: -12.5,12.5 + pos: 10.5,12.5 parent: 1 - - uid: 678 + - uid: 1186 components: - type: Transform - pos: -13.5,13.5 + pos: 11.5,12.5 parent: 1 - - uid: 679 + - uid: 1213 components: - type: Transform - pos: -13.5,12.5 + pos: -9.5,13.5 parent: 1 - - uid: 680 + - uid: 1239 components: - type: Transform - pos: -14.5,13.5 + pos: 10.5,10.5 parent: 1 - - uid: 681 + - uid: 1260 components: - type: Transform - pos: -14.5,12.5 + pos: -17.5,16.5 parent: 1 - - uid: 682 + - uid: 1264 components: - type: Transform - pos: -15.5,12.5 + pos: -17.5,23.5 parent: 1 - - uid: 683 + - uid: 1266 components: - type: Transform - pos: -16.5,11.5 + pos: -17.5,28.5 parent: 1 - - uid: 684 + - uid: 1270 components: - type: Transform - pos: -16.5,10.5 + pos: -17.5,21.5 parent: 1 - - uid: 685 + - uid: 1277 components: - type: Transform - pos: -16.5,9.5 + pos: -17.5,27.5 parent: 1 - - uid: 686 + - uid: 1278 components: - type: Transform - pos: -17.5,11.5 + pos: -17.5,24.5 parent: 1 - - uid: 687 + - uid: 1282 components: - type: Transform - pos: -17.5,10.5 + pos: -17.5,18.5 parent: 1 - - uid: 688 + - uid: 1284 components: - type: Transform - pos: -17.5,9.5 + pos: -17.5,25.5 parent: 1 - - uid: 689 + - uid: 1297 components: - type: Transform - pos: -18.5,11.5 + pos: -17.5,26.5 parent: 1 - - uid: 690 + - uid: 1302 components: - type: Transform - pos: -18.5,10.5 + pos: -17.5,17.5 parent: 1 - - uid: 691 + - uid: 1307 components: - type: Transform - pos: -18.5,9.5 + pos: -17.5,13.5 parent: 1 - - uid: 692 + - uid: 1308 components: - type: Transform - pos: -19.5,10.5 + pos: -17.5,14.5 parent: 1 - - uid: 693 + - uid: 1309 components: - type: Transform - pos: -19.5,9.5 + pos: -17.5,15.5 parent: 1 - - uid: 694 + - uid: 1310 components: - type: Transform - pos: -20.5,10.5 + pos: -17.5,19.5 parent: 1 - - uid: 695 + - uid: 1311 components: - type: Transform - pos: -20.5,9.5 + pos: -17.5,20.5 parent: 1 - - uid: 696 + - uid: 1312 components: - type: Transform - pos: -21.5,10.5 + pos: -17.5,29.5 parent: 1 - - uid: 697 + - uid: 1313 components: - type: Transform - pos: -21.5,9.5 + pos: -17.5,22.5 parent: 1 - - uid: 698 + - uid: 1315 components: - type: Transform - pos: -22.5,8.5 + pos: -17.5,30.5 parent: 1 - - uid: 699 + - uid: 1317 components: - type: Transform - pos: -23.5,8.5 + pos: -16.5,30.5 parent: 1 - - uid: 700 + - uid: 1319 components: - type: Transform - pos: -24.5,8.5 + pos: 10.5,20.5 parent: 1 - - uid: 701 + - uid: 1324 components: - type: Transform - pos: -21.5,8.5 + pos: 10.5,24.5 parent: 1 - - uid: 702 + - uid: 1325 components: - type: Transform - pos: -22.5,9.5 + pos: 9.5,10.5 parent: 1 - - uid: 703 + - uid: 1327 components: - type: Transform - pos: -23.5,9.5 + pos: 16.5,12.5 parent: 1 - - uid: 704 + - uid: 1329 components: - type: Transform - pos: -23.5,10.5 + pos: -14.5,32.5 parent: 1 - - uid: 705 + - uid: 1331 components: - type: Transform - pos: -19.5,11.5 + pos: -15.5,32.5 parent: 1 - - uid: 706 + - uid: 1337 components: - type: Transform - pos: -22.5,10.5 + pos: -16.5,32.5 parent: 1 - - uid: 707 + - uid: 1342 components: - type: Transform - pos: -25.5,8.5 + pos: 17.5,16.5 parent: 1 - - uid: 708 + - uid: 1344 components: - type: Transform - pos: -26.5,8.5 + pos: 9.5,11.5 parent: 1 - - uid: 709 + - uid: 1347 components: - type: Transform - pos: -26.5,7.5 + pos: 13.5,18.5 parent: 1 - - uid: 710 + - uid: 1350 components: - type: Transform - pos: -26.5,6.5 + pos: 10.5,18.5 parent: 1 - - uid: 711 + - uid: 1355 components: - type: Transform - pos: -26.5,5.5 + pos: 14.5,18.5 parent: 1 - - uid: 712 + - uid: 1362 components: - type: Transform - pos: -26.5,4.5 + pos: 12.5,18.5 parent: 1 - - uid: 713 + - uid: 1364 components: - type: Transform - pos: -26.5,3.5 + pos: 10.5,17.5 parent: 1 - - uid: 714 + - uid: 1366 components: - type: Transform - pos: -26.5,2.5 + pos: 11.5,18.5 parent: 1 - - uid: 715 + - uid: 1374 components: - type: Transform - pos: -27.5,2.5 + pos: 11.5,19.5 parent: 1 - - uid: 716 + - uid: 1412 components: - type: Transform - pos: -26.5,1.5 + pos: 17.5,14.5 parent: 1 - - uid: 717 + - uid: 1422 components: - type: Transform - pos: -27.5,1.5 + pos: 10.5,13.5 parent: 1 - - uid: 718 + - uid: 1423 components: - type: Transform - pos: -31.5,0.5 + pos: 17.5,12.5 parent: 1 - - uid: 719 + - uid: 1424 components: - type: Transform - pos: -28.5,2.5 + pos: 9.5,12.5 parent: 1 - - uid: 720 + - uid: 1430 components: - type: Transform - pos: -28.5,1.5 + pos: 15.5,18.5 parent: 1 - - uid: 721 + - uid: 1431 components: - type: Transform - pos: -28.5,0.5 + pos: 12.5,12.5 parent: 1 - - uid: 722 + - uid: 1528 components: - type: Transform - pos: -28.5,-0.5 + pos: 13.5,12.5 parent: 1 - - uid: 723 + - uid: 1536 components: - type: Transform - pos: -29.5,2.5 + pos: 14.5,12.5 parent: 1 - - uid: 724 + - uid: 1538 components: - type: Transform - pos: -29.5,1.5 + pos: 15.5,12.5 parent: 1 - - uid: 725 + - uid: 1601 components: - type: Transform - pos: -29.5,0.5 + pos: 17.5,13.5 parent: 1 - - uid: 726 + - uid: 1606 components: - type: Transform - pos: -29.5,-0.5 + pos: 17.5,18.5 parent: 1 - - uid: 727 + - uid: 1616 components: - type: Transform - pos: -30.5,2.5 + pos: 17.5,15.5 parent: 1 - - uid: 728 + - uid: 1619 components: - type: Transform - pos: -30.5,1.5 + pos: 16.5,18.5 parent: 1 - - uid: 729 + - uid: 1620 components: - type: Transform - pos: -30.5,0.5 + pos: 17.5,17.5 parent: 1 - - uid: 730 + - uid: 1621 components: - type: Transform - pos: -30.5,-0.5 + pos: 11.5,26.5 parent: 1 - - uid: 731 + - uid: 1624 components: - type: Transform - pos: -31.5,-0.5 + pos: 3.5,30.5 parent: 1 - - uid: 732 + - uid: 1627 components: - type: Transform - pos: -32.5,0.5 + pos: -16.5,31.5 parent: 1 - - uid: 733 + - uid: 1628 components: - type: Transform - pos: -32.5,-0.5 + pos: 11.5,25.5 parent: 1 - - uid: 734 + - uid: 1632 components: - type: Transform - pos: -33.5,0.5 + pos: 2.5,31.5 parent: 1 - - uid: 735 + - uid: 1635 components: - type: Transform - pos: -33.5,-0.5 + pos: 2.5,30.5 parent: 1 - - uid: 736 + - uid: 1636 components: - type: Transform - pos: -34.5,-0.5 + pos: 2.5,32.5 parent: 1 - - uid: 737 + - uid: 1639 components: - type: Transform - pos: -35.5,-0.5 + pos: 1.5,32.5 parent: 1 - - uid: 738 + - uid: 1649 components: - type: Transform - pos: -35.5,-1.5 + pos: 11.5,21.5 parent: 1 - - uid: 739 + - uid: 1653 components: - type: Transform - pos: -35.5,-2.5 + pos: -8.5,32.5 parent: 1 - - uid: 740 + - uid: 1654 components: - type: Transform - pos: -35.5,-3.5 + pos: -9.5,32.5 parent: 1 - - uid: 741 + - uid: 1694 components: - type: Transform - pos: -34.5,-1.5 + pos: -10.5,32.5 parent: 1 - - uid: 742 + - uid: 1703 components: - type: Transform - pos: -34.5,-2.5 + pos: -11.5,32.5 parent: 1 - - uid: 743 + - uid: 1722 components: - type: Transform - pos: -34.5,-3.5 + pos: -12.5,32.5 parent: 1 - - uid: 744 + - uid: 1754 components: - type: Transform - pos: -33.5,-2.5 + pos: -13.5,32.5 parent: 1 - - uid: 745 + - uid: 1905 components: - type: Transform - pos: -33.5,-1.5 + pos: -9.5,12.5 parent: 1 - - uid: 746 + - uid: 1918 components: - type: Transform - pos: -32.5,-2.5 + pos: -8.5,33.5 parent: 1 - - uid: 747 + - uid: 1995 components: - type: Transform - pos: -32.5,-1.5 + pos: 11.5,23.5 parent: 1 - - uid: 748 +- proto: WallReinforcedDiagonal + entities: + - uid: 65 components: - type: Transform - pos: -31.5,-2.5 + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 parent: 1 - - uid: 749 + - uid: 138 components: - type: Transform - pos: -31.5,-1.5 + rot: 3.141592653589793 rad + pos: -9.5,0.5 parent: 1 - - uid: 750 + - uid: 435 components: - type: Transform - pos: -30.5,-2.5 + rot: 3.141592653589793 rad + pos: 11.5,-4.5 parent: 1 - - uid: 751 + - uid: 447 components: - type: Transform - pos: -30.5,-1.5 + rot: 3.141592653589793 rad + pos: 10.5,-6.5 parent: 1 - - uid: 752 + - uid: 448 components: - type: Transform - pos: -29.5,-2.5 + rot: 1.5707963267948966 rad + pos: -9.5,-6.5 parent: 1 - - uid: 753 + - uid: 535 components: - type: Transform - pos: -29.5,-1.5 + rot: 1.5707963267948966 rad + pos: 10.5,0.5 parent: 1 - - uid: 754 + - uid: 545 components: - type: Transform - pos: -28.5,-2.5 + rot: -1.5707963267948966 rad + pos: 11.5,1.5 parent: 1 - - uid: 755 + - uid: 549 components: - type: Transform - pos: -28.5,-1.5 + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 parent: 1 - - uid: 756 + - uid: 550 components: - type: Transform - pos: -23.5,5.5 + rot: 1.5707963267948966 rad + pos: -10.5,-4.5 parent: 1 - - uid: 757 + - uid: 595 components: - type: Transform - pos: -23.5,4.5 + pos: -10.5,1.5 parent: 1 - - uid: 758 + - uid: 611 components: - type: Transform - pos: -23.5,3.5 + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 parent: 1 - - uid: 759 + - uid: 712 components: - type: Transform - pos: -23.5,2.5 + pos: -4.5,-5.5 parent: 1 - - uid: 760 + - uid: 736 components: - type: Transform - pos: -23.5,1.5 + pos: 10.5,-3.5 parent: 1 - uid: 761 components: - type: Transform - pos: -22.5,5.5 + rot: 3.141592653589793 rad + pos: -3.5,-6.5 parent: 1 - uid: 762 components: - type: Transform - pos: -22.5,4.5 - parent: 1 - - uid: 763 - components: - - type: Transform - pos: -22.5,3.5 + rot: -1.5707963267948966 rad + pos: -8.5,-5.5 parent: 1 - - uid: 764 + - uid: 766 components: - type: Transform - pos: -22.5,2.5 + pos: 9.5,-5.5 parent: 1 - - uid: 765 +- proto: WallRock + entities: + - uid: 69 components: - type: Transform - pos: -18.5,6.5 + pos: -13.5,10.5 parent: 1 - - uid: 766 + - uid: 296 components: - type: Transform - pos: -21.5,5.5 + pos: -13.5,11.5 parent: 1 - - uid: 767 + - uid: 956 components: - type: Transform - pos: -21.5,4.5 + pos: -11.5,10.5 parent: 1 - - uid: 768 + - uid: 958 components: - type: Transform - pos: -21.5,3.5 + pos: 11.5,10.5 parent: 1 - - uid: 769 + - uid: 960 components: - type: Transform - pos: -20.5,5.5 + pos: -10.5,10.5 parent: 1 - - uid: 770 + - uid: 1001 components: - type: Transform - pos: -20.5,4.5 + pos: -12.5,10.5 parent: 1 - - uid: 771 + - uid: 1038 components: - type: Transform - pos: -19.5,5.5 + pos: 15.5,19.5 parent: 1 - - uid: 772 + - uid: 1098 components: - type: Transform - pos: -21.5,2.5 + pos: 10.5,25.5 parent: 1 - - uid: 773 + - uid: 1099 components: - type: Transform - pos: -23.5,0.5 + pos: 17.5,26.5 parent: 1 - - uid: 774 + - uid: 1107 components: - type: Transform - pos: -17.5,6.5 + pos: -6.5,32.5 parent: 1 - - uid: 775 + - uid: 1140 components: - type: Transform - pos: -16.5,6.5 + pos: -12.5,11.5 parent: 1 - - uid: 776 + - uid: 1141 components: - type: Transform - pos: -15.5,6.5 + pos: -11.5,11.5 parent: 1 - - uid: 777 + - uid: 1142 components: - type: Transform - pos: -13.5,7.5 + pos: -10.5,11.5 parent: 1 - - uid: 778 + - uid: 1148 components: - type: Transform - pos: -12.5,7.5 + pos: -16.5,17.5 parent: 1 - - uid: 779 + - uid: 1150 components: - type: Transform - pos: -11.5,7.5 + pos: -17.5,12.5 parent: 1 - - uid: 780 + - uid: 1151 components: - type: Transform - pos: -10.5,7.5 + pos: -16.5,16.5 parent: 1 - - uid: 781 + - uid: 1152 components: - type: Transform - pos: 13.5,3.5 + pos: -11.5,14.5 parent: 1 - - uid: 783 + - uid: 1153 components: - type: Transform - pos: 13.5,-15.5 + pos: -13.5,13.5 parent: 1 - - uid: 784 + - uid: 1154 components: - type: Transform - pos: 13.5,-14.5 + pos: -14.5,13.5 parent: 1 - - uid: 785 + - uid: 1155 components: - type: Transform - pos: 13.5,-13.5 + pos: -12.5,13.5 parent: 1 - - uid: 786 + - uid: 1157 components: - type: Transform - pos: 13.5,-12.5 + pos: -16.5,11.5 parent: 1 - - uid: 787 + - uid: 1158 components: - type: Transform - pos: 13.5,-11.5 + pos: -15.5,11.5 parent: 1 - - uid: 788 + - uid: 1159 components: - type: Transform - pos: 13.5,-10.5 + pos: -16.5,15.5 parent: 1 - - uid: 790 + - uid: 1160 components: - type: Transform - pos: 12.5,-15.5 + pos: -16.5,14.5 parent: 1 - - uid: 791 + - uid: 1168 components: - type: Transform - pos: 12.5,-14.5 + pos: -16.5,25.5 parent: 1 - - uid: 792 + - uid: 1170 components: - type: Transform - pos: 12.5,-13.5 + pos: -16.5,22.5 parent: 1 - - uid: 793 + - uid: 1171 components: - type: Transform - pos: 12.5,-12.5 + pos: -16.5,18.5 parent: 1 - - uid: 794 + - uid: 1172 components: - type: Transform - pos: 12.5,-11.5 + pos: -16.5,20.5 parent: 1 - - uid: 795 + - uid: 1173 components: - type: Transform - pos: 12.5,-10.5 + pos: -16.5,24.5 parent: 1 - - uid: 796 + - uid: 1174 components: - type: Transform - pos: 12.5,-9.5 + pos: -16.5,21.5 parent: 1 - - uid: 797 + - uid: 1175 components: - type: Transform - pos: 11.5,-15.5 + pos: -16.5,23.5 parent: 1 - - uid: 798 + - uid: 1176 components: - type: Transform - pos: 11.5,-14.5 + pos: -16.5,19.5 parent: 1 - - uid: 799 + - uid: 1177 components: - type: Transform - pos: 11.5,-13.5 + pos: -16.5,27.5 parent: 1 - - uid: 800 + - uid: 1178 components: - type: Transform - pos: 11.5,-12.5 + pos: -16.5,26.5 parent: 1 - - uid: 801 + - uid: 1180 components: - type: Transform - pos: 11.5,-11.5 + pos: -16.5,28.5 parent: 1 - - uid: 802 + - uid: 1196 components: - type: Transform - pos: 10.5,-15.5 + pos: -15.5,17.5 parent: 1 - - uid: 803 + - uid: 1198 components: - type: Transform - pos: 10.5,-14.5 + pos: -15.5,13.5 parent: 1 - - uid: 804 + - uid: 1199 components: - type: Transform - pos: 9.5,-18.5 + pos: -18.5,19.5 parent: 1 - - uid: 805 + - uid: 1200 components: - type: Transform - pos: 9.5,-17.5 + pos: -18.5,18.5 parent: 1 - - uid: 806 + - uid: 1201 components: - type: Transform - pos: 9.5,-16.5 + pos: -18.5,17.5 parent: 1 - - uid: 807 + - uid: 1202 components: - type: Transform - pos: 9.5,-15.5 + pos: -18.5,21.5 parent: 1 - - uid: 808 + - uid: 1203 components: - type: Transform - pos: 8.5,-18.5 + pos: -18.5,22.5 parent: 1 - - uid: 809 + - uid: 1204 components: - type: Transform - pos: 7.5,-18.5 + pos: -18.5,23.5 parent: 1 - - uid: 810 + - uid: 1205 components: - type: Transform - pos: 8.5,-17.5 + pos: -18.5,24.5 parent: 1 - - uid: 811 + - uid: 1206 components: - type: Transform - pos: 8.5,-16.5 + pos: -18.5,26.5 parent: 1 - - uid: 813 + - uid: 1207 components: - type: Transform - pos: -13.5,5.5 + pos: -18.5,25.5 parent: 1 - - uid: 822 + - uid: 1208 components: - type: Transform - pos: 11.5,-10.5 + pos: -18.5,27.5 parent: 1 - - uid: 823 + - uid: 1209 components: - type: Transform - pos: 11.5,-9.5 + pos: -18.5,28.5 parent: 1 - - uid: 824 + - uid: 1210 components: - type: Transform - pos: 11.5,-8.5 + pos: -19.5,25.5 parent: 1 - - uid: 825 + - uid: 1211 components: - type: Transform - pos: 11.5,-7.5 + pos: -19.5,26.5 parent: 1 - - uid: 828 + - uid: 1212 components: - type: Transform - pos: -12.5,5.5 + pos: -10.5,13.5 parent: 1 - - uid: 829 + - uid: 1214 components: - type: Transform - pos: -14.5,5.5 + pos: -19.5,21.5 parent: 1 - - uid: 830 + - uid: 1215 components: - type: Transform - pos: -15.5,5.5 + pos: -19.5,20.5 parent: 1 - - uid: 831 + - uid: 1216 components: - type: Transform - pos: 9.5,-7.5 + pos: -18.5,20.5 parent: 1 - - uid: 832 + - uid: 1217 components: - type: Transform - pos: 10.5,-7.5 + pos: -11.5,13.5 parent: 1 - - uid: 833 + - uid: 1219 components: - type: Transform - pos: 10.5,-8.5 + pos: -18.5,13.5 parent: 1 - - uid: 834 + - uid: 1220 components: - type: Transform - pos: 10.5,-9.5 + pos: -14.5,11.5 parent: 1 - - uid: 836 + - uid: 1222 components: - type: Transform - pos: 11.5,-0.5 + pos: -10.5,9.5 parent: 1 - - uid: 838 + - uid: 1223 components: - type: Transform - pos: -12.5,6.5 + pos: -15.5,14.5 parent: 1 - - uid: 840 + - uid: 1224 components: - type: Transform - pos: 11.5,3.5 + pos: -18.5,14.5 parent: 1 - - uid: 841 + - uid: 1225 components: - type: Transform - pos: 11.5,4.5 + pos: -18.5,15.5 parent: 1 - - uid: 842 + - uid: 1226 components: - type: Transform - pos: 11.5,5.5 + pos: -18.5,16.5 parent: 1 - - uid: 843 + - uid: 1227 components: - type: Transform - pos: -10.5,4.5 + pos: -17.5,11.5 parent: 1 - - uid: 844 + - uid: 1230 components: - type: Transform - pos: -11.5,4.5 + pos: 11.5,11.5 parent: 1 - - uid: 846 + - uid: 1231 components: - type: Transform - pos: -13.5,6.5 + pos: 10.5,11.5 parent: 1 - - uid: 851 + - uid: 1232 components: - type: Transform - pos: -14.5,6.5 + pos: -18.5,12.5 parent: 1 - - uid: 856 + - uid: 1233 components: - type: Transform - pos: 13.5,-3.5 + pos: -19.5,19.5 parent: 1 - - uid: 858 + - uid: 1236 components: - type: Transform - pos: -16.5,-10.5 + pos: 13.5,33.5 parent: 1 - - uid: 859 + - uid: 1240 components: - type: Transform - pos: 13.5,-6.5 + pos: 12.5,11.5 parent: 1 - - uid: 861 + - uid: 1241 components: - type: Transform - pos: 13.5,-8.5 + pos: 13.5,11.5 parent: 1 - - uid: 862 + - uid: 1242 components: - type: Transform - pos: 12.5,-8.5 + pos: 14.5,11.5 parent: 1 - - uid: 863 + - uid: 1243 components: - type: Transform - pos: 12.5,-7.5 + pos: 15.5,11.5 parent: 1 - - uid: 864 + - uid: 1244 components: - type: Transform - pos: 12.5,-6.5 + pos: 16.5,11.5 parent: 1 - - uid: 866 + - uid: 1245 components: - type: Transform - pos: 12.5,-4.5 + pos: 17.5,11.5 parent: 1 - - uid: 867 + - uid: 1246 components: - type: Transform - pos: 12.5,-3.5 + pos: 18.5,11.5 parent: 1 - - uid: 869 + - uid: 1247 components: - type: Transform - pos: 14.5,-1.5 + pos: 18.5,12.5 parent: 1 - - uid: 870 + - uid: 1248 components: - type: Transform - pos: 14.5,-2.5 + pos: 18.5,13.5 parent: 1 - - uid: 871 + - uid: 1249 components: - type: Transform - pos: 14.5,-3.5 + pos: 18.5,14.5 parent: 1 - - uid: 874 + - uid: 1250 components: - type: Transform - pos: 14.5,-6.5 + pos: 18.5,15.5 parent: 1 - - uid: 875 + - uid: 1251 components: - type: Transform - pos: 10.5,-0.5 + pos: 18.5,16.5 parent: 1 - - uid: 876 + - uid: 1252 components: - type: Transform - pos: 10.5,0.5 + pos: 18.5,17.5 parent: 1 - - uid: 877 + - uid: 1253 components: - type: Transform - pos: -11.5,6.5 + pos: 18.5,18.5 parent: 1 - - uid: 879 + - uid: 1254 components: - type: Transform - pos: -11.5,5.5 + pos: 18.5,19.5 parent: 1 - - uid: 880 + - uid: 1255 components: - type: Transform - pos: 10.5,4.5 + pos: 15.5,17.5 parent: 1 - - uid: 881 + - uid: 1256 components: - type: Transform - pos: 10.5,5.5 + pos: 13.5,19.5 parent: 1 - - uid: 882 + - uid: 1257 components: - type: Transform - pos: 9.5,6.5 + pos: 16.5,17.5 parent: 1 - - uid: 883 + - uid: 1261 components: - type: Transform - pos: 8.5,7.5 + pos: 18.5,26.5 parent: 1 - - uid: 884 + - uid: 1262 components: - type: Transform - pos: 7.5,7.5 + pos: 19.5,26.5 parent: 1 - - uid: 885 + - uid: 1263 components: - type: Transform - pos: 6.5,7.5 + pos: -18.5,31.5 parent: 1 - - uid: 886 + - uid: 1268 components: - type: Transform - pos: 5.5,7.5 + pos: 17.5,19.5 parent: 1 - - uid: 887 + - uid: 1269 components: - type: Transform - pos: 4.5,8.5 + pos: 16.5,19.5 parent: 1 - - uid: 888 + - uid: 1271 components: - type: Transform - pos: 5.5,8.5 + pos: 19.5,19.5 parent: 1 - - uid: 889 + - uid: 1272 components: - type: Transform - pos: 3.5,9.5 + pos: 19.5,18.5 parent: 1 - - uid: 890 + - uid: 1273 components: - type: Transform - pos: -8.5,5.5 + pos: 19.5,17.5 parent: 1 - - uid: 891 + - uid: 1274 components: - type: Transform - pos: -8.5,6.5 + pos: 19.5,16.5 parent: 1 - - uid: 892 + - uid: 1275 components: - type: Transform - pos: -9.5,5.5 + pos: 19.5,15.5 parent: 1 - - uid: 893 + - uid: 1276 components: - type: Transform - pos: -10.5,6.5 + pos: 20.5,18.5 parent: 1 - - uid: 894 + - uid: 1281 components: - type: Transform - pos: -1.5,9.5 + pos: 12.5,20.5 parent: 1 - - uid: 895 + - uid: 1283 components: - type: Transform - pos: -2.5,9.5 + pos: 12.5,24.5 parent: 1 - - uid: 897 + - uid: 1287 components: - type: Transform - pos: 5.5,6.5 + pos: 14.5,17.5 parent: 1 - - uid: 914 + - uid: 1288 components: - type: Transform - pos: 5.5,5.5 + pos: 13.5,26.5 parent: 1 - - uid: 915 + - uid: 1289 components: - type: Transform - pos: 4.5,5.5 + pos: 13.5,17.5 parent: 1 - - uid: 916 + - uid: 1290 components: - type: Transform - pos: 6.5,6.5 + pos: 16.5,26.5 parent: 1 - - uid: 917 + - uid: 1291 components: - type: Transform - pos: 6.5,5.5 + pos: -14.5,31.5 parent: 1 - - uid: 918 + - uid: 1293 components: - type: Transform - pos: 7.5,6.5 + pos: 12.5,17.5 parent: 1 - - uid: 919 + - uid: 1294 components: - type: Transform - pos: 7.5,5.5 + pos: 14.5,26.5 parent: 1 - - uid: 920 + - uid: 1298 components: - type: Transform - pos: -10.5,5.5 + pos: -9.5,33.5 parent: 1 - - uid: 921 + - uid: 1299 components: - type: Transform - pos: -9.5,4.5 + pos: 15.5,26.5 parent: 1 - - uid: 922 + - uid: 1303 components: - type: Transform - pos: -9.5,3.5 + pos: 18.5,25.5 parent: 1 - - uid: 923 + - uid: 1322 components: - type: Transform - pos: -9.5,2.5 + pos: 11.5,17.5 parent: 1 - - uid: 924 + - uid: 1326 components: - type: Transform - pos: -9.5,1.5 + pos: 11.5,13.5 parent: 1 - - uid: 927 + - uid: 1328 components: - type: Transform - pos: -3.5,-17.5 + pos: 12.5,13.5 parent: 1 - - uid: 928 + - uid: 1330 components: - type: Transform - pos: -1.5,-16.5 + pos: 13.5,13.5 parent: 1 - - uid: 929 + - uid: 1332 components: - type: Transform - pos: -3.5,-15.5 + pos: 14.5,13.5 parent: 1 - - uid: 930 + - uid: 1334 components: - type: Transform - pos: -2.5,-15.5 + pos: 15.5,13.5 parent: 1 - - uid: 931 + - uid: 1335 components: - type: Transform - pos: -2.5,-16.5 + pos: 15.5,16.5 parent: 1 - - uid: 932 + - uid: 1336 components: - type: Transform - pos: -2.5,-17.5 + pos: 16.5,13.5 parent: 1 - - uid: 933 + - uid: 1338 components: - type: Transform - pos: -1.5,-15.5 + pos: 16.5,14.5 parent: 1 - - uid: 934 + - uid: 1339 components: - type: Transform - pos: -16.5,-6.5 + pos: 16.5,15.5 parent: 1 - - uid: 935 + - uid: 1340 components: - type: Transform - pos: -16.5,-7.5 + pos: 16.5,16.5 parent: 1 - - uid: 945 + - uid: 1345 components: - type: Transform - pos: -16.5,-9.5 + pos: 14.5,19.5 parent: 1 - - uid: 946 + - uid: 1346 components: - type: Transform - pos: -19.5,-10.5 + pos: 12.5,19.5 parent: 1 - - uid: 947 + - uid: 1348 components: - type: Transform - pos: -18.5,-10.5 + pos: -14.5,34.5 parent: 1 - - uid: 948 + - uid: 1349 components: - type: Transform - pos: -17.5,-10.5 + pos: 12.5,26.5 parent: 1 - - uid: 949 + - uid: 1351 components: - type: Transform - pos: -18.5,-9.5 + pos: 12.5,25.5 parent: 1 - - uid: 950 + - uid: 1354 components: - type: Transform - pos: -17.5,-9.5 + pos: -10.5,33.5 parent: 1 - - uid: 951 + - uid: 1356 components: - type: Transform - pos: -17.5,-8.5 + pos: -16.5,33.5 parent: 1 - - uid: 952 + - uid: 1357 components: - type: Transform - pos: -17.5,-7.5 + pos: -15.5,33.5 parent: 1 - - uid: 953 + - uid: 1358 components: - type: Transform - pos: -19.5,-9.5 + pos: -15.5,34.5 parent: 1 - - uid: 954 + - uid: 1359 components: - type: Transform - pos: -20.5,-9.5 + pos: -17.5,33.5 parent: 1 - - uid: 955 + - uid: 1360 components: - type: Transform - pos: -21.5,-8.5 + pos: 20.5,26.5 parent: 1 - - uid: 956 + - uid: 1365 components: - type: Transform - pos: -20.5,-8.5 + pos: 20.5,25.5 parent: 1 - - uid: 957 + - uid: 1367 components: - type: Transform - pos: -17.5,-6.5 + pos: 19.5,27.5 parent: 1 - - uid: 958 + - uid: 1369 components: - type: Transform - pos: 20.5,3.5 + pos: -8.5,36.5 parent: 1 - - uid: 959 + - uid: 1373 components: - type: Transform - pos: -18.5,-8.5 + pos: 20.5,24.5 parent: 1 - - uid: 960 + - uid: 1375 components: - type: Transform - pos: -13.5,-13.5 + pos: 20.5,27.5 parent: 1 - - uid: 961 + - uid: 1376 components: - type: Transform - pos: -12.5,-13.5 + pos: 17.5,25.5 parent: 1 - - uid: 962 + - uid: 1379 components: - type: Transform - pos: -11.5,-13.5 + pos: 20.5,20.5 parent: 1 - - uid: 963 + - uid: 1380 components: - type: Transform - pos: -11.5,-14.5 + pos: 20.5,19.5 parent: 1 - - uid: 964 + - uid: 1381 components: - type: Transform - pos: -10.5,-14.5 + pos: 1.5,34.5 parent: 1 - - uid: 965 + - uid: 1386 components: - type: Transform - pos: -9.5,-14.5 + pos: 13.5,20.5 parent: 1 - - uid: 966 + - uid: 1389 components: - type: Transform - pos: -9.5,-15.5 + pos: 13.5,25.5 parent: 1 - - uid: 967 + - uid: 1413 components: - type: Transform - pos: -8.5,-15.5 + pos: 10.5,26.5 parent: 1 - - uid: 968 + - uid: 1414 components: - type: Transform - pos: -10.5,-13.5 + pos: 10.5,27.5 parent: 1 - - uid: 969 + - uid: 1419 components: - type: Transform - pos: -12.5,-12.5 + pos: -8.5,31.5 parent: 1 - - uid: 970 + - uid: 1493 components: - type: Transform - pos: -13.5,-12.5 + pos: -11.5,33.5 parent: 1 - - uid: 971 + - uid: 1525 components: - type: Transform - pos: -16.5,-11.5 + pos: -13.5,31.5 parent: 1 - - uid: 972 + - uid: 1526 components: - type: Transform - pos: -15.5,-12.5 + pos: -15.5,31.5 parent: 1 - - uid: 973 + - uid: 1529 components: - type: Transform - pos: -14.5,-12.5 + pos: -12.5,33.5 parent: 1 - - uid: 978 + - uid: 1530 components: - type: Transform - pos: 6.5,-21.5 + pos: -13.5,33.5 parent: 1 - - uid: 979 + - uid: 1531 components: - type: Transform - pos: 6.5,-22.5 + pos: -14.5,33.5 parent: 1 - - uid: 980 + - uid: 1532 components: - type: Transform - pos: 6.5,-23.5 + pos: -12.5,31.5 parent: 1 - - uid: 981 + - uid: 1534 components: - type: Transform - pos: 6.5,-24.5 + pos: 18.5,27.5 parent: 1 - - uid: 982 + - uid: 1535 components: - type: Transform - pos: 6.5,-25.5 + pos: 19.5,25.5 parent: 1 - - uid: 983 + - uid: 1537 components: - type: Transform - pos: 6.5,-26.5 + pos: -17.5,32.5 parent: 1 - - uid: 986 + - uid: 1559 components: - type: Transform - pos: -13.5,4.5 + pos: 4.5,29.5 parent: 1 - - uid: 988 + - uid: 1569 components: - type: Transform - pos: -12.5,4.5 + pos: 4.5,32.5 parent: 1 - - uid: 989 + - uid: 1570 components: - type: Transform - pos: -16.5,5.5 + pos: 1.5,30.5 parent: 1 - - uid: 990 + - uid: 1571 components: - type: Transform - pos: -17.5,5.5 + pos: 0.5,30.5 parent: 1 - - uid: 991 + - uid: 1572 components: - type: Transform - pos: -18.5,5.5 + pos: -0.5,30.5 parent: 1 - - uid: 1166 + - uid: 1573 components: - type: Transform - pos: 6.5,-27.5 + pos: -1.5,30.5 parent: 1 - - uid: 1167 + - uid: 1575 components: - type: Transform - pos: 6.5,-28.5 + pos: -3.5,30.5 parent: 1 - - uid: 1168 + - uid: 1576 components: - type: Transform - pos: 5.5,-28.5 + pos: -4.5,30.5 parent: 1 - - uid: 1169 + - uid: 1577 components: - type: Transform - pos: 5.5,-27.5 + pos: -5.5,30.5 parent: 1 - - uid: 1170 + - uid: 1578 components: - type: Transform - pos: 7.5,-25.5 + pos: -6.5,30.5 parent: 1 - - uid: 1171 + - uid: 1579 components: - type: Transform - pos: 7.5,-24.5 + pos: -7.5,30.5 parent: 1 - - uid: 1172 + - uid: 1580 components: - type: Transform - pos: 7.5,-23.5 + pos: -8.5,30.5 parent: 1 - - uid: 1173 + - uid: 1581 components: - type: Transform - pos: 7.5,-22.5 + pos: 2.5,29.5 parent: 1 - - uid: 1174 + - uid: 1582 components: - type: Transform - pos: 7.5,-21.5 + pos: 3.5,29.5 parent: 1 - - uid: 1175 + - uid: 1583 components: - type: Transform - pos: 8.5,-25.5 + pos: 1.5,29.5 parent: 1 - - uid: 1176 + - uid: 1584 components: - type: Transform - pos: 8.5,-24.5 + pos: 2.5,28.5 parent: 1 - - uid: 1177 + - uid: 1585 components: - type: Transform - pos: 8.5,-23.5 + pos: 3.5,28.5 parent: 1 - - uid: 1178 + - uid: 1586 components: - type: Transform - pos: 8.5,-22.5 + pos: 4.5,28.5 parent: 1 - - uid: 1179 + - uid: 1587 components: - type: Transform - pos: 8.5,-21.5 + pos: 4.5,27.5 parent: 1 - - uid: 1180 + - uid: 1588 components: - type: Transform - pos: 9.5,-24.5 + pos: -4.5,29.5 parent: 1 - - uid: 1181 + - uid: 1589 components: - type: Transform - pos: 9.5,-23.5 + pos: -5.5,29.5 parent: 1 - - uid: 1182 + - uid: 1590 components: - type: Transform - pos: 9.5,-22.5 + pos: -6.5,29.5 parent: 1 - - uid: 1183 + - uid: 1591 components: - type: Transform - pos: 9.5,-21.5 + pos: -7.5,29.5 parent: 1 - - uid: 1184 + - uid: 1592 components: - type: Transform - pos: 10.5,-24.5 + pos: -7.5,28.5 parent: 1 - - uid: 1185 + - uid: 1593 components: - type: Transform - pos: 10.5,-23.5 + pos: -8.5,29.5 parent: 1 - - uid: 1186 + - uid: 1594 components: - type: Transform - pos: 10.5,-22.5 + pos: -8.5,28.5 parent: 1 - - uid: 1187 + - uid: 1595 components: - type: Transform - pos: 10.5,-21.5 + pos: -8.5,27.5 parent: 1 - - uid: 1188 + - uid: 1596 components: - type: Transform - pos: 11.5,-23.5 + pos: -9.5,28.5 parent: 1 - - uid: 1189 + - uid: 1603 components: - type: Transform - pos: 11.5,-22.5 + pos: -9.5,29.5 parent: 1 - - uid: 1190 + - uid: 1605 components: - type: Transform - pos: 11.5,-21.5 + pos: 9.5,25.5 parent: 1 - - uid: 1191 + - uid: 1609 components: - type: Transform - pos: 12.5,-22.5 + pos: -15.5,29.5 parent: 1 - - uid: 1192 + - uid: 1610 components: - type: Transform - pos: 12.5,-21.5 + pos: -16.5,29.5 parent: 1 - - uid: 1193 + - uid: 1611 components: - type: Transform - pos: 12.5,-20.5 + pos: -9.5,30.5 parent: 1 - - uid: 1194 + - uid: 1617 components: - type: Transform - pos: 12.5,-19.5 + pos: -15.5,30.5 parent: 1 - - uid: 1195 + - uid: 1618 components: - type: Transform - pos: 12.5,-18.5 + pos: -17.5,31.5 parent: 1 - - uid: 1196 + - uid: 1626 components: - type: Transform - pos: 13.5,-22.5 + pos: -9.5,31.5 parent: 1 - - uid: 1197 + - uid: 1629 components: - type: Transform - pos: 13.5,-21.5 + pos: -6.5,31.5 parent: 1 - - uid: 1198 + - uid: 1630 components: - type: Transform - pos: 13.5,-20.5 + pos: -7.5,31.5 parent: 1 - - uid: 1199 + - uid: 1633 components: - type: Transform - pos: 13.5,-19.5 + pos: -10.5,31.5 parent: 1 - - uid: 1200 + - uid: 1634 components: - type: Transform - pos: 13.5,-18.5 + pos: -11.5,31.5 parent: 1 - - uid: 1201 + - uid: 1637 components: - type: Transform - pos: 14.5,-21.5 + pos: -18.5,30.5 parent: 1 - - uid: 1202 + - uid: 1638 components: - type: Transform - pos: 14.5,-20.5 + pos: -18.5,29.5 parent: 1 - - uid: 1203 + - uid: 1642 components: - type: Transform - pos: 14.5,-19.5 + pos: -9.5,34.5 parent: 1 - - uid: 1204 + - uid: 1643 components: - type: Transform - pos: 14.5,-18.5 + pos: -9.5,35.5 parent: 1 - - uid: 1205 + - uid: 1644 components: - type: Transform - pos: 15.5,-21.5 + pos: -9.5,36.5 parent: 1 - - uid: 1206 + - uid: 1646 components: - type: Transform - pos: 15.5,-20.5 + pos: 1.5,35.5 parent: 1 - - uid: 1207 + - uid: 1650 components: - type: Transform - pos: 15.5,-19.5 + pos: 5.5,37.5 parent: 1 - - uid: 1208 + - uid: 1652 components: - type: Transform - pos: 15.5,-18.5 + pos: -7.5,36.5 parent: 1 - - uid: 1209 + - uid: 1655 components: - type: Transform - pos: 16.5,-20.5 + pos: 1.5,31.5 parent: 1 - - uid: 1210 + - uid: 1656 components: - type: Transform - pos: 16.5,-19.5 + pos: 3.5,32.5 parent: 1 - - uid: 1211 + - uid: 1657 components: - type: Transform - pos: 16.5,-18.5 + pos: 3.5,31.5 parent: 1 - - uid: 1212 + - uid: 1658 components: - type: Transform - pos: 16.5,-17.5 + pos: 4.5,31.5 parent: 1 - - uid: 1213 + - uid: 1664 components: - type: Transform - pos: 16.5,-16.5 + pos: 12.5,27.5 parent: 1 - - uid: 1214 + - uid: 1665 components: - type: Transform - pos: 16.5,-15.5 + pos: 0.5,31.5 parent: 1 - - uid: 1215 + - uid: 1666 components: - type: Transform - pos: 16.5,-14.5 + pos: 0.5,32.5 parent: 1 - - uid: 1216 + - uid: 1669 components: - type: Transform - pos: 16.5,-13.5 + pos: -7.5,35.5 parent: 1 - - uid: 1217 + - uid: 1671 components: - type: Transform - pos: 17.5,-17.5 + pos: 2.5,39.5 parent: 1 - - uid: 1218 + - uid: 1673 components: - type: Transform - pos: 17.5,-16.5 + pos: 2.5,33.5 parent: 1 - - uid: 1219 + - uid: 1674 components: - type: Transform - pos: 17.5,-15.5 + pos: 2.5,34.5 parent: 1 - - uid: 1220 + - uid: 1676 components: - type: Transform - pos: 17.5,-14.5 + pos: 3.5,33.5 parent: 1 - - uid: 1221 + - uid: 1679 components: - type: Transform - pos: 17.5,-13.5 + pos: 1.5,36.5 parent: 1 - - uid: 1222 + - uid: 1680 components: - type: Transform - pos: 17.5,-12.5 + pos: 4.5,33.5 parent: 1 - - uid: 1223 + - uid: 1681 components: - type: Transform - pos: 17.5,-11.5 + pos: 5.5,33.5 parent: 1 - - uid: 1224 + - uid: 1682 components: - type: Transform - pos: 16.5,-11.5 + pos: 6.5,33.5 parent: 1 - - uid: 1225 + - uid: 1683 components: - type: Transform - pos: 16.5,-12.5 + pos: 7.5,33.5 parent: 1 - - uid: 1226 + - uid: 1684 components: - type: Transform - pos: 18.5,-14.5 + pos: 8.5,33.5 parent: 1 - - uid: 1227 + - uid: 1685 components: - type: Transform - pos: 18.5,-13.5 + pos: 9.5,33.5 parent: 1 - - uid: 1228 + - uid: 1686 components: - type: Transform - pos: 18.5,-12.5 + pos: 10.5,33.5 parent: 1 - - uid: 1229 + - uid: 1687 components: - type: Transform - pos: 18.5,-11.5 + pos: 11.5,33.5 parent: 1 - - uid: 1230 + - uid: 1688 components: - type: Transform - pos: 18.5,-15.5 + pos: 12.5,33.5 parent: 1 - - uid: 1231 + - uid: 1700 components: - type: Transform - pos: 18.5,-16.5 + pos: 1.5,38.5 parent: 1 - - uid: 1232 + - uid: 1702 components: - type: Transform - pos: 17.5,-18.5 + pos: -7.5,34.5 parent: 1 - - uid: 1233 + - uid: 1704 components: - type: Transform - pos: 19.5,-14.5 + pos: -7.5,32.5 parent: 1 - - uid: 1234 + - uid: 1705 components: - type: Transform - pos: 19.5,-13.5 + pos: -8.5,34.5 parent: 1 - - uid: 1235 + - uid: 1706 components: - type: Transform - pos: 19.5,-12.5 + pos: -8.5,35.5 parent: 1 - - uid: 1236 + - uid: 1708 components: - type: Transform - pos: 19.5,-11.5 + pos: 1.5,37.5 parent: 1 - - uid: 1237 + - uid: 1713 components: - type: Transform - pos: 19.5,-10.5 + pos: -7.5,37.5 parent: 1 - - uid: 1238 + - uid: 1720 components: - type: Transform - pos: 19.5,-9.5 + pos: -6.5,38.5 parent: 1 - - uid: 1239 + - uid: 1721 components: - type: Transform - pos: 19.5,-8.5 + pos: -7.5,38.5 parent: 1 - - uid: 1240 + - uid: 1732 components: - type: Transform - pos: 19.5,-7.5 + pos: 10.5,19.5 parent: 1 - - uid: 1241 + - uid: 1733 components: - type: Transform - pos: 19.5,-6.5 + pos: 0.5,39.5 parent: 1 - - uid: 1242 + - uid: 1736 components: - type: Transform - pos: 19.5,-5.5 + pos: 3.5,37.5 parent: 1 - - uid: 1243 + - uid: 1737 components: - type: Transform - pos: 19.5,-4.5 + pos: 1.5,39.5 parent: 1 - - uid: 1244 + - uid: 1738 components: - type: Transform - pos: 19.5,-3.5 + pos: -6.5,39.5 parent: 1 - - uid: 1245 + - uid: 1739 components: - type: Transform - pos: 19.5,-2.5 + pos: 9.5,34.5 parent: 1 - - uid: 1246 + - uid: 1807 components: - type: Transform - pos: 19.5,-1.5 + pos: -13.5,34.5 parent: 1 - - uid: 1247 + - uid: 1808 components: - type: Transform - pos: 19.5,-0.5 + pos: -12.5,34.5 parent: 1 - - uid: 1248 + - uid: 1809 components: - type: Transform - pos: 19.5,0.5 + pos: -11.5,34.5 parent: 1 - - uid: 1249 + - uid: 1810 components: - type: Transform - pos: 19.5,1.5 + pos: -10.5,34.5 parent: 1 - - uid: 1250 + - uid: 1839 components: - type: Transform - pos: 19.5,2.5 + pos: 2.5,38.5 parent: 1 - - uid: 1251 + - uid: 1840 components: - type: Transform - pos: 19.5,3.5 + pos: 3.5,38.5 parent: 1 - - uid: 1252 + - uid: 1841 components: - type: Transform - pos: 19.5,4.5 + pos: 2.5,37.5 parent: 1 - - uid: 1253 + - uid: 1843 components: - type: Transform - pos: 19.5,5.5 + pos: 5.5,36.5 parent: 1 - - uid: 1254 + - uid: 1844 components: - type: Transform - pos: 18.5,2.5 + pos: 3.5,34.5 parent: 1 - - uid: 1255 + - uid: 1847 components: - type: Transform - pos: 18.5,3.5 + pos: 4.5,34.5 parent: 1 - - uid: 1256 + - uid: 1850 components: - type: Transform - pos: 18.5,4.5 + pos: 5.5,34.5 parent: 1 - - uid: 1257 + - uid: 1853 components: - type: Transform - pos: 18.5,5.5 + pos: 6.5,34.5 parent: 1 - - uid: 1258 + - uid: 1856 components: - type: Transform - pos: 18.5,6.5 + pos: 7.5,34.5 parent: 1 - - uid: 1259 + - uid: 1859 components: - type: Transform - pos: 18.5,7.5 + pos: 8.5,34.5 parent: 1 - - uid: 1260 + - uid: 1864 components: - type: Transform - pos: 17.5,5.5 + pos: 4.5,37.5 parent: 1 - - uid: 1261 + - uid: 1879 components: - type: Transform - pos: 17.5,6.5 + pos: -15.5,18.5 parent: 1 - - uid: 1262 + - uid: 1880 components: - type: Transform - pos: 17.5,7.5 + pos: -15.5,19.5 parent: 1 - - uid: 1263 + - uid: 1925 components: - type: Transform - pos: 17.5,8.5 + pos: 13.5,27.5 parent: 1 - - uid: 1264 + - uid: 1926 components: - type: Transform - pos: 17.5,9.5 + pos: 14.5,33.5 parent: 1 - - uid: 1265 + - uid: 1932 components: - type: Transform - pos: 17.5,10.5 + pos: 14.5,27.5 parent: 1 - - uid: 1266 + - uid: 1933 components: - type: Transform - pos: 16.5,9.5 + pos: 15.5,33.5 parent: 1 - - uid: 1267 + - uid: 1939 components: - type: Transform - pos: 16.5,10.5 + pos: 15.5,27.5 parent: 1 - - uid: 1268 + - uid: 1940 components: - type: Transform - pos: 16.5,11.5 + pos: 16.5,33.5 parent: 1 - - uid: 1269 + - uid: 1941 components: - type: Transform - pos: 18.5,8.5 + pos: 16.5,32.5 parent: 1 - - uid: 1270 + - uid: 1946 components: - type: Transform - pos: 18.5,9.5 + pos: 16.5,27.5 parent: 1 - - uid: 1271 + - uid: 1947 components: - type: Transform - pos: 18.5,10.5 + pos: 17.5,33.5 parent: 1 - - uid: 1272 + - uid: 1948 components: - type: Transform - pos: 18.5,11.5 + pos: 17.5,32.5 parent: 1 - - uid: 1273 + - uid: 1949 components: - type: Transform - pos: 17.5,11.5 + pos: 17.5,31.5 parent: 1 - - uid: 1274 + - uid: 1950 components: - type: Transform - pos: 17.5,12.5 + pos: 17.5,30.5 parent: 1 - - uid: 1275 + - uid: 1951 components: - type: Transform - pos: 16.5,12.5 + pos: 17.5,29.5 parent: 1 - - uid: 1276 + - uid: 1952 components: - type: Transform - pos: 11.5,13.5 + pos: 17.5,28.5 parent: 1 - - uid: 1714 + - uid: 1953 components: - type: Transform - pos: -0.5,9.5 + pos: 17.5,27.5 parent: 1 - - uid: 1798 + - uid: 1957 components: - type: Transform - pos: 0.5,9.5 + pos: 19.5,31.5 parent: 1 - - uid: 1801 + - uid: 1958 components: - type: Transform - pos: 0.5,8.5 + pos: 18.5,28.5 parent: 1 - - uid: 1802 + - uid: 1960 components: - type: Transform - pos: 1.5,8.5 + pos: 18.5,30.5 parent: 1 - - uid: 1860 + - uid: 1961 components: - type: Transform - pos: 20.5,2.5 + pos: 18.5,31.5 parent: 1 - - uid: 1861 +- proto: WallSolid + entities: + - uid: 10 components: - type: Transform - pos: 20.5,1.5 + pos: 6.5,4.5 parent: 1 - - uid: 1862 + - uid: 29 components: - type: Transform - pos: 20.5,0.5 + pos: -2.5,2.5 parent: 1 - - uid: 1863 + - uid: 30 components: - type: Transform - pos: 20.5,-0.5 + pos: -4.5,2.5 parent: 1 - - uid: 1864 + - uid: 37 components: - type: Transform - pos: 20.5,-1.5 + pos: -2.5,9.5 parent: 1 - - uid: 1865 + - uid: 40 components: - type: Transform - pos: 20.5,-2.5 + pos: -1.5,9.5 parent: 1 - - uid: 1866 + - uid: 42 components: - type: Transform - pos: 20.5,-3.5 + pos: 0.5,9.5 parent: 1 - - uid: 1867 + - uid: 43 components: - type: Transform - pos: 20.5,-4.5 + pos: 1.5,9.5 parent: 1 - - uid: 1868 + - uid: 54 components: - type: Transform - pos: 20.5,-5.5 + pos: 1.5,11.5 parent: 1 - - uid: 1869 + - uid: 55 components: - type: Transform - pos: 20.5,-6.5 + pos: 1.5,10.5 parent: 1 - - uid: 1870 + - uid: 66 components: - type: Transform - pos: 20.5,-7.5 + rot: 3.141592653589793 rad + pos: 5.5,13.5 parent: 1 - - uid: 1871 + - uid: 71 components: - type: Transform - pos: 21.5,-5.5 + rot: 3.141592653589793 rad + pos: 8.5,2.5 parent: 1 - - uid: 1872 + - uid: 82 components: - type: Transform - pos: 21.5,-4.5 + rot: 1.5707963267948966 rad + pos: 2.5,9.5 parent: 1 - - uid: 1873 + - uid: 101 components: - type: Transform - pos: 21.5,-3.5 + pos: 5.5,2.5 parent: 1 - - uid: 1874 + - uid: 132 components: - type: Transform - pos: 21.5,-2.5 + pos: -5.5,2.5 parent: 1 - - uid: 1875 + - uid: 133 components: - type: Transform - pos: 21.5,-1.5 + pos: -6.5,2.5 parent: 1 - - uid: 1876 + - uid: 134 components: - type: Transform - pos: 21.5,-0.5 + pos: -7.5,2.5 parent: 1 - - uid: 1877 + - uid: 135 components: - type: Transform - pos: 21.5,0.5 + pos: -8.5,2.5 parent: 1 - - uid: 1878 + - uid: 195 components: - type: Transform - pos: 21.5,1.5 + rot: -1.5707963267948966 rad + pos: -2.5,3.5 parent: 1 - - uid: 1879 + - uid: 224 components: - type: Transform - pos: 20.5,-8.5 + rot: 3.141592653589793 rad + pos: 9.5,2.5 parent: 1 -- proto: WallWood - entities: - - uid: 317 + - uid: 250 components: - type: Transform - pos: -0.5,-14.5 + rot: 3.141592653589793 rad + pos: 5.5,12.5 parent: 1 - - uid: 510 + - uid: 261 components: - type: Transform - pos: -8.5,-14.5 + rot: -1.5707963267948966 rad + pos: 9.5,4.5 parent: 1 - - uid: 514 + - uid: 279 components: - type: Transform - pos: 0.5,-1.5 + rot: -1.5707963267948966 rad + pos: 8.5,10.5 parent: 1 - - uid: 532 + - uid: 284 components: - type: Transform - pos: -5.5,0.5 + rot: -1.5707963267948966 rad + pos: 8.5,4.5 parent: 1 - - uid: 533 + - uid: 290 components: - type: Transform - pos: -5.5,1.5 + rot: -1.5707963267948966 rad + pos: 5.5,11.5 parent: 1 - - uid: 782 + - uid: 369 components: - type: Transform - pos: -8.5,1.5 + rot: 3.141592653589793 rad + pos: 8.5,9.5 parent: 1 - - uid: 789 + - uid: 384 components: - type: Transform - pos: -8.5,-10.5 + rot: 3.141592653589793 rad + pos: 5.5,9.5 parent: 1 - - uid: 812 + - uid: 420 components: - type: Transform - pos: 11.5,-3.5 + pos: 5.5,5.5 parent: 1 - - uid: 814 + - uid: 421 components: - type: Transform - pos: 11.5,-6.5 + pos: 5.5,4.5 parent: 1 - - uid: 815 + - uid: 453 components: - type: Transform - pos: 11.5,-4.5 + rot: 3.141592653589793 rad + pos: 4.5,13.5 parent: 1 - - uid: 816 + - uid: 572 components: - type: Transform - pos: 10.5,-6.5 + rot: 3.141592653589793 rad + pos: 5.5,10.5 parent: 1 - - uid: 817 + - uid: 574 components: - type: Transform - pos: 10.5,-1.5 + rot: 3.141592653589793 rad + pos: 5.5,6.5 parent: 1 - - uid: 818 + - uid: 589 components: - type: Transform - pos: 9.5,-1.5 + rot: 3.141592653589793 rad + pos: 5.5,7.5 parent: 1 - - uid: 819 + - uid: 590 components: - type: Transform - pos: 8.5,-1.5 + rot: 3.141592653589793 rad + pos: 5.5,8.5 parent: 1 - - uid: 820 + - uid: 605 components: - type: Transform - pos: 9.5,-6.5 + pos: 4.5,9.5 parent: 1 - - uid: 821 + - uid: 644 components: - type: Transform - pos: 8.5,-6.5 + rot: 3.141592653589793 rad + pos: 9.5,7.5 parent: 1 - - uid: 826 + - uid: 656 components: - type: Transform - pos: 11.5,-2.5 + rot: 3.141592653589793 rad + pos: 8.5,6.5 parent: 1 - - uid: 827 + - uid: 664 components: - type: Transform - pos: 11.5,-5.5 + rot: 1.5707963267948966 rad + pos: 7.5,9.5 parent: 1 - - uid: 835 + - uid: 665 components: - type: Transform - pos: 11.5,-1.5 + rot: 3.141592653589793 rad + pos: 8.5,7.5 parent: 1 - - uid: 837 + - uid: 688 components: - type: Transform - pos: -8.5,3.5 + rot: -1.5707963267948966 rad + pos: -2.5,5.5 parent: 1 - - uid: 839 + - uid: 810 components: - type: Transform - pos: -7.5,0.5 + pos: 2.5,13.5 parent: 1 - - uid: 845 + - uid: 814 components: - type: Transform - pos: -8.5,0.5 + pos: 1.5,13.5 parent: 1 - - uid: 847 + - uid: 963 components: - type: Transform - pos: -8.5,2.5 + pos: -2.5,8.5 parent: 1 - - uid: 848 + - uid: 964 components: - type: Transform - pos: -5.5,4.5 + pos: -2.5,7.5 parent: 1 - - uid: 849 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 1934 components: - type: Transform - pos: -2.5,-1.5 + rot: 1.5707963267948966 rad + pos: -15.5,25.5 parent: 1 - - uid: 850 +- proto: WallWood + entities: + - uid: 676 components: - type: Transform - pos: -4.5,-1.5 + pos: 9.5,29.5 parent: 1 - - uid: 852 + - uid: 685 components: - type: Transform - pos: -5.5,3.5 + pos: 9.5,30.5 parent: 1 - - uid: 853 + - uid: 1189 components: - type: Transform - pos: -8.5,4.5 + pos: -15.5,23.5 parent: 1 - - uid: 854 + - uid: 1190 components: - type: Transform - pos: -3.5,-1.5 + pos: -15.5,25.5 parent: 1 - - uid: 857 + - uid: 1191 components: - type: Transform - pos: 2.5,-1.5 + pos: -15.5,24.5 parent: 1 - - uid: 860 + - uid: 1234 components: - type: Transform - pos: -12.5,-10.5 + pos: 7.5,32.5 parent: 1 - - uid: 865 + - uid: 1235 components: - type: Transform - pos: -3.5,-14.5 + pos: 6.5,32.5 parent: 1 - - uid: 868 + - uid: 1316 components: - type: Transform - pos: -5.5,-0.5 + pos: 9.5,20.5 parent: 1 - - uid: 872 + - uid: 1323 components: - type: Transform - pos: 1.5,-1.5 + pos: 9.5,24.5 parent: 1 - - uid: 873 + - uid: 1341 components: - type: Transform - pos: -4.5,-14.5 + pos: 9.5,23.5 parent: 1 - - uid: 878 + - uid: 1343 components: - type: Transform - pos: -6.5,0.5 + pos: 9.5,21.5 parent: 1 - - uid: 896 + - uid: 1353 components: - type: Transform - pos: 8.5,-0.5 + pos: 9.5,19.5 parent: 1 - - uid: 898 + - uid: 1361 components: - type: Transform - pos: 7.5,-1.5 + pos: -6.5,33.5 parent: 1 - - uid: 899 + - uid: 1415 components: - type: Transform - pos: 6.5,-1.5 + pos: 9.5,28.5 parent: 1 - - uid: 900 + - uid: 1416 components: - type: Transform - pos: 4.5,-1.5 + pos: 10.5,28.5 parent: 1 - - uid: 901 + - uid: 1420 components: - type: Transform - pos: 3.5,-1.5 + pos: 11.5,28.5 parent: 1 - - uid: 902 + - uid: 1568 components: - type: Transform - pos: 3.5,-0.5 + pos: 5.5,29.5 parent: 1 - - uid: 903 + - uid: 1614 components: - type: Transform - pos: 3.5,0.5 + rot: -1.5707963267948966 rad + pos: 0.5,37.5 parent: 1 - - uid: 904 + - uid: 1622 components: - type: Transform - pos: 3.5,1.5 + pos: -7.5,33.5 parent: 1 - - uid: 905 + - uid: 1631 components: - type: Transform - pos: 3.5,2.5 + pos: 11.5,27.5 parent: 1 - - uid: 906 + - uid: 1648 components: - type: Transform - pos: 3.5,3.5 + rot: 3.141592653589793 rad + pos: -6.5,34.5 parent: 1 - - uid: 907 + - uid: 1651 components: - type: Transform - pos: 3.5,4.5 + rot: 3.141592653589793 rad + pos: -6.5,36.5 parent: 1 - - uid: 908 + - uid: 1659 components: - type: Transform - pos: 4.5,4.5 + pos: 5.5,32.5 parent: 1 - - uid: 909 + - uid: 1667 components: - type: Transform - pos: 5.5,4.5 + rot: -1.5707963267948966 rad + pos: 0.5,33.5 parent: 1 - - uid: 910 + - uid: 1668 components: - type: Transform - pos: 6.5,4.5 + rot: -1.5707963267948966 rad + pos: -0.5,33.5 parent: 1 - - uid: 911 + - uid: 1670 components: - type: Transform - pos: 7.5,4.5 + rot: 1.5707963267948966 rad + pos: -0.5,38.5 parent: 1 - - uid: 912 + - uid: 1699 components: - type: Transform - pos: 8.5,4.5 + rot: 3.141592653589793 rad + pos: -6.5,35.5 parent: 1 - - uid: 913 + - uid: 1712 components: - type: Transform - pos: 8.5,3.5 + rot: -1.5707963267948966 rad + pos: -5.5,37.5 parent: 1 - - uid: 925 + - uid: 1714 components: - type: Transform - pos: -2.5,-14.5 + rot: -1.5707963267948966 rad + pos: -6.5,37.5 parent: 1 - - uid: 926 + - uid: 1715 components: - type: Transform - pos: -1.5,-14.5 + rot: -1.5707963267948966 rad + pos: 0.5,36.5 parent: 1 - - uid: 936 + - uid: 1716 components: - type: Transform - pos: -5.5,-5.5 + rot: -1.5707963267948966 rad + pos: 0.5,35.5 parent: 1 - - uid: 937 + - uid: 1717 components: - type: Transform - pos: -6.5,-5.5 + rot: -1.5707963267948966 rad + pos: 0.5,34.5 parent: 1 - - uid: 938 + - uid: 1719 components: - type: Transform - pos: -7.5,-5.5 + rot: 1.5707963267948966 rad + pos: -5.5,38.5 parent: 1 - - uid: 939 + - uid: 1723 components: - type: Transform - pos: -8.5,-5.5 + pos: 0.5,38.5 parent: 1 - - uid: 940 + - uid: 1749 components: - type: Transform - pos: -15.5,-5.5 + rot: -1.5707963267948966 rad + pos: -5.5,39.5 parent: 1 - - uid: 941 + - uid: 1801 components: - type: Transform - pos: -13.5,-5.5 + pos: 1.5,33.5 parent: 1 - - uid: 942 + - uid: 1802 components: - type: Transform - pos: -14.5,-5.5 + pos: 5.5,31.5 parent: 1 - - uid: 943 + - uid: 1832 components: - type: Transform - pos: -12.5,-5.5 + rot: -1.5707963267948966 rad + pos: -0.5,39.5 parent: 1 - - uid: 944 + - uid: 1852 components: - type: Transform - pos: -16.5,-5.5 + pos: 5.5,30.5 parent: 1 - - uid: 974 + - uid: 1862 components: - type: Transform - pos: -0.5,-13.5 + pos: 5.5,28.5 parent: 1 - - uid: 975 + - uid: 1907 components: - type: Transform - pos: -0.5,-9.5 + pos: -15.5,20.5 parent: 1 - - uid: 976 + - uid: 1916 components: - type: Transform - pos: -0.5,-6.5 + pos: -15.5,21.5 parent: 1 - - uid: 977 + - uid: 1919 components: - type: Transform - pos: -0.5,-5.5 + pos: 13.5,28.5 parent: 1 - - uid: 1013 + - uid: 1930 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,4.5 + pos: 8.5,32.5 parent: 1 - - uid: 1014 + - uid: 1931 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,4.5 + pos: 15.5,32.5 parent: 1 - - uid: 1035 + - uid: 1937 components: - type: Transform - pos: -1.5,-5.5 + pos: 9.5,32.5 parent: 1 - - uid: 1139 + - uid: 1938 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,4.5 + pos: 14.5,32.5 parent: 1 - - uid: 1140 + - uid: 1942 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,4.5 + pos: 11.5,32.5 parent: 1 - - uid: 1908 + - uid: 1943 components: - type: Transform - pos: -5.5,-1.5 + pos: 10.5,32.5 parent: 1 - - uid: 1910 + - uid: 1944 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,4.5 + pos: 12.5,32.5 parent: 1 -- proto: WarpPoint - entities: - - uid: 1907 + - uid: 1945 components: - type: Transform - pos: -4.5,-3.5 + pos: 13.5,32.5 parent: 1 - - type: WarpPoint - location: Pirate's Cove -- proto: WaterTankFull - entities: - - uid: 1704 + - uid: 2003 components: - type: Transform - pos: -15.5,-6.5 + pos: 12.5,28.5 parent: 1 -- proto: WeaponLauncherPirateCannon - entities: - - uid: 1668 + - uid: 2042 components: - type: Transform - pos: 2.607525,3.4844034 + pos: 15.5,31.5 parent: 1 -- proto: WeaponRevolverPirate - entities: - - uid: 1666 + - uid: 2043 components: - type: Transform - pos: 2.607525,-0.7343466 + pos: 16.5,31.5 parent: 1 -- proto: Window - entities: - - uid: 1127 + - uid: 2044 components: - type: Transform - pos: -7.5,4.5 + pos: 16.5,30.5 parent: 1 - - uid: 1135 + - uid: 2045 components: - type: Transform - pos: -6.5,4.5 + pos: 16.5,29.5 parent: 1 - - uid: 1141 + - uid: 2046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,4.5 + pos: 16.5,28.5 parent: 1 - - uid: 1142 + - uid: 2047 components: - type: Transform - pos: 8.5,2.5 + pos: 15.5,28.5 parent: 1 - - uid: 1143 + - uid: 2048 components: - type: Transform - pos: 8.5,1.5 + pos: 14.5,28.5 parent: 1 - - uid: 1144 + - uid: 2049 components: - type: Transform - pos: 8.5,0.5 + pos: 4.5,30.5 parent: 1 - - uid: 1145 +- proto: WallWoodDiagonal + entities: + - uid: 1698 components: - type: Transform - pos: -11.5,-5.5 + rot: 3.141592653589793 rad + pos: -5.5,36.5 parent: 1 - - uid: 1146 + - uid: 1711 components: - type: Transform - pos: -10.5,-5.5 + rot: 1.5707963267948966 rad + pos: -0.5,37.5 parent: 1 - - uid: 1147 +- proto: WarpPointShip + entities: + - uid: 327 components: + - type: MetaData + name: Pirate's Cove - type: Transform - pos: -9.5,-5.5 + pos: 1.5,6.5 parent: 1 - - uid: 1148 +- proto: WaterTankHighCapacity + entities: + - uid: 306 components: - type: Transform - pos: -4.5,-5.5 + pos: -3.5,7.5 parent: 1 - - uid: 1149 +- proto: WeaponDisabler + entities: + - uid: 1911 components: - type: Transform - pos: -3.5,-5.5 - parent: 1 - - uid: 1150 + parent: 1875 + - type: Physics + canCollide: False + - uid: 1912 components: - type: Transform - pos: -2.5,-5.5 - parent: 1 - - uid: 1151 + parent: 1875 + - type: Physics + canCollide: False + - uid: 1913 components: - type: Transform - pos: -0.5,-10.5 - parent: 1 - - uid: 1152 + parent: 1875 + - type: Physics + canCollide: False + - uid: 1914 components: - type: Transform - pos: -0.5,-11.5 - parent: 1 - - uid: 1153 + parent: 1875 + - type: Physics + canCollide: False +- proto: WeaponRackPistolBase + entities: + - uid: 1875 components: - type: Transform - pos: -0.5,-12.5 + pos: -14.5,24.5 parent: 1 - - uid: 1154 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + weapon1_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1911 + weapon2_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1914 + weapon3_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1912 + weapon4_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1913 + weapon5_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon6_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WeaponRifleBB + entities: + - uid: 1695 components: - type: Transform - pos: -7.5,-14.5 + pos: 23.56418,24.946178 parent: 1 - - uid: 1155 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 395 components: - type: Transform - pos: -6.5,-14.5 + pos: -0.5,13.5 parent: 1 - - uid: 1156 +- proto: WindoorSecure + entities: + - uid: 32 components: - type: Transform - pos: -5.5,-14.5 + rot: -1.5707963267948966 rad + pos: -2.5,6.5 parent: 1 - - uid: 1157 + - uid: 44 components: - type: Transform - pos: -8.5,-13.5 + rot: 1.5707963267948966 rad + pos: -2.5,6.5 parent: 1 - - uid: 1158 +- proto: WoodDoor + entities: + - uid: 8 components: - type: Transform - pos: -8.5,-12.5 + pos: -3.5,2.5 parent: 1 - - uid: 1159 + - uid: 16 components: - type: Transform - pos: -8.5,-11.5 + pos: 5.5,3.5 parent: 1 - - uid: 1160 + - uid: 122 components: - type: Transform - pos: -11.5,-10.5 + pos: 7.5,4.5 parent: 1 - - uid: 1161 + - uid: 170 components: - type: Transform - pos: -10.5,-10.5 + pos: 6.5,9.5 parent: 1 - - uid: 1162 + - uid: 174 components: - type: Transform - pos: -9.5,-10.5 + pos: 8.5,3.5 parent: 1 - - uid: 1163 +- proto: WoodenBench + entities: + - uid: 1929 components: - type: Transform - pos: -15.5,-10.5 + pos: 13.5,31.5 parent: 1 - - uid: 1164 +- proto: WoodenSign + entities: + - uid: 1936 components: - type: Transform - pos: -14.5,-10.5 + pos: -7.33934,17.979847 parent: 1 - - uid: 1165 +- proto: WoodenSignRight + entities: + - uid: 1935 components: - type: Transform - pos: -13.5,-10.5 + pos: 4.592441,18.987944 parent: 1 - - uid: 1652 +- proto: WoodenSupport + entities: + - uid: 1608 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,4.5 + rot: -1.5707963267948966 rad + pos: -5.5,31.5 parent: 1 -- proto: WindowDirectional - entities: - - uid: 984 + - uid: 1718 components: - type: Transform - pos: -12.5,-9.5 + rot: -1.5707963267948966 rad + pos: -0.5,32.5 parent: 1 - - uid: 985 + - uid: 1805 components: - type: Transform - pos: -12.5,-6.5 + pos: 7.5,31.5 parent: 1 - - uid: 987 + - uid: 1909 components: - type: Transform - pos: -12.5,-7.5 + pos: -15.5,16.5 parent: 1 -- proto: WoodDoor - entities: - - uid: 1839 + - uid: 1994 components: - type: Transform - pos: -0.5,-8.5 + pos: 11.5,31.5 parent: 1 - - type: Door - secondsUntilStateChange: -1983.0103 - state: Opening - - uid: 1840 +- proto: WoodenSupportWall + entities: + - uid: 1188 components: - type: Transform - pos: -0.5,-7.5 + pos: -15.5,22.5 parent: 1 - - type: Door - secondsUntilStateChange: -1983.6912 - state: Opening - - uid: 1841 + - uid: 1333 components: - type: Transform - pos: -1.5,-1.5 + rot: 3.141592653589793 rad + pos: 9.5,18.5 parent: 1 - - type: Door - secondsUntilStateChange: -1956.9247 - state: Opening - - uid: 1842 + - uid: 1921 components: - type: Transform - pos: -0.5,-1.5 + pos: 8.5,28.5 parent: 1 - - type: Door - secondsUntilStateChange: -1957.5579 - state: Opening - - uid: 1905 +- proto: WoodenSupportWallBroken + entities: + - uid: 1197 components: - type: Transform - pos: -5.5,2.5 + pos: 6.5,28.5 parent: 1 - - type: Door - secondsUntilStateChange: -1955.4457 - state: Opening -- proto: WoodSecretDoor +- proto: Wrench entities: - - uid: 1012 + - uid: 2054 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,4.5 + pos: 9.483096,17.492344 parent: 1 ... diff --git a/Resources/Maps/_NF/POI/lpbravo.yml b/Resources/Maps/_NF/POI/lpbravo.yml index 9201737b12f..d3b1f5646da 100644 --- a/Resources/Maps/_NF/POI/lpbravo.yml +++ b/Resources/Maps/_NF/POI/lpbravo.yml @@ -232,85 +232,79 @@ entities: data: tiles: 0,0: - 0: 65535 + 0: 65359 0,-1: - 0: 65535 + 0: 65524 -1,0: - 0: 65535 - -1,1: - 0: 52479 - 1: 13056 - -1,-1: - 0: 65535 + 0: 65311 0,1: - 0: 4607 + 0: 15 1: 60928 + -1,1: + 0: 34959 + 1: 13056 0,2: 1: 4371 + -1,2: + 1: 52430 0,3: 1: 4369 + -1,3: + 1: 52428 + 0,4: + 1: 4369 1,0: - 0: 13311 + 0: 4367 1: 52224 1,1: - 0: 1 1: 318 + 1,-1: + 0: 65297 + 1: 8 0,-3: 1: 61439 - 0: 4096 + -1,-3: + 1: 16383 + 0: 32768 + -1,-2: + 0: 65464 0,-2: + 0: 26208 + -1,-1: 0: 65535 1,-3: 1: 4080 - 0: 61440 1,-2: - 0: 32767 + 0: 14199 1: 32768 - 1,-1: - 0: 65527 - 1: 8 -3,0: - 0: 136 + 0: 8 1: 34816 - -3,1: + -3,-1: + 0: 34816 1: 8 -2,0: - 0: 61183 + 0: 52239 1: 4352 + -3,1: + 1: 8 -2,1: 1: 35939 - 0: 140 - -1,2: - 1: 52430 - -1,3: + 0: 8 + -2,-1: + 0: 65484 + -1,4: 1: 52428 -3,-3: 1: 2176 - 0: 32768 - -3,-2: - 0: 2184 - 1: 32768 - -3,-1: - 1: 8 - 0: 34944 -2,-3: 1: 36856 - 0: 28672 -2,-2: - 0: 65535 - -2,-1: - 0: 65535 - -1,-3: - 1: 16383 - 0: 49152 - -1,-2: - 0: 65535 - -1,4: - 1: 52428 + 0: 61431 + -3,-2: + 1: 32768 -1,5: 1: 8 - 0,4: - 1: 4369 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -328,7 +322,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -1155,11 +1149,6 @@ entities: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 502 - components: - - type: Transform - pos: 4.5,2.5 - parent: 1 - uid: 503 components: - type: Transform @@ -2551,9 +2540,9 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,-3.5 parent: 1 -- proto: ComputerBroken +- proto: ComputerIFFPOI entities: - - uid: 501 + - uid: 502 components: - type: Transform rot: 3.141592653589793 rad @@ -3639,6 +3628,13 @@ entities: - type: Transform pos: -2.5,2.5 parent: 1 +- proto: TelecomServerFilledSyndicate + entities: + - uid: 501 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 - proto: ToiletDirtyWater entities: - uid: 138 diff --git a/Resources/Maps/_NF/Shuttles/Security/cleric.yml b/Resources/Maps/_NF/Shuttles/Security/cleric.yml index fd40783cded..157cae888c4 100644 --- a/Resources/Maps/_NF/Shuttles/Security/cleric.yml +++ b/Resources/Maps/_NF/Shuttles/Security/cleric.yml @@ -664,11 +664,12 @@ entities: - type: Transform pos: -2.5,-0.5 parent: 1 -- proto: SmallGyroscopeSecurity +- proto: SmallGyroscopeNfsd entities: - uid: 29 components: - type: Transform + rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 1 - proto: SubstationWallBasic @@ -695,7 +696,7 @@ entities: - type: Transform pos: 3.5,1.5 parent: 1 -- proto: ThrusterSecurity +- proto: ThrusterNfsd entities: - uid: 25 components: @@ -706,19 +707,19 @@ entities: - uid: 26 components: - type: Transform - pos: -3.5,2.5 + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 parent: 1 - uid: 27 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-1.5 + pos: -3.5,2.5 parent: 1 - uid: 28 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 + rot: 3.141592653589793 rad + pos: 3.5,-1.5 parent: 1 - proto: VendingMachineWallMedical entities: diff --git a/Resources/Maps/_NF/Shuttles/Security/empress.yml b/Resources/Maps/_NF/Shuttles/Security/empress.yml index 9ccd55a53cf..6ecc2ec1c53 100644 --- a/Resources/Maps/_NF/Shuttles/Security/empress.yml +++ b/Resources/Maps/_NF/Shuttles/Security/empress.yml @@ -10,12 +10,12 @@ tilemap: 46: FloorGlass 55: FloorGreenCircuit 58: FloorHullReinforced - 61: FloorKitchen 65: FloorMetalDiamond 68: FloorMiningDark 76: FloorPlastic 107: FloorTechMaint 111: FloorWhite + 112: FloorWhiteDiagonal 118: FloorWhitePavement 120: FloorWhitePlastic 121: FloorWood @@ -36,7 +36,7 @@ entities: chunks: 0,0: ind: 0,0 - tiles: bwAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHgAAAAAAHgAAAAAALgAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHgAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHgAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAIwAAAAAAHgAAAAAAIwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAHgAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAIwAAAAAATAAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bwAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHgAAAAAAHgAAAAAALgAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHgAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHgAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAIwAAAAAAHgAAAAAAIwAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAHgAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAIwAAAAAATAAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 @@ -52,7 +52,7 @@ entities: version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAATAAAAAAAIwAAAAAATAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATAAAAAAAIwAAAAAATAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAeAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAALgAAAAAALgAAAAAATAAAAAAAIwAAAAAATAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATAAAAAAAIwAAAAAATAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAeAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAIwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA version: 6 -1,-2: ind: -1,-2 @@ -72,7 +72,7 @@ entities: version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAfAAAAAAAfQAAAAAALQAAAAAALQAAAAAATAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAfAAAAAAAfQAAAAAALQAAAAAALQAAAAAALQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAfAAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAfQAAAAAAfQAAAAAATAAAAAAAfQAAAAAATAAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAfAAAAAAAfQAAAAAALQAAAAAALQAAAAAATAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAAAAfAAAAAAAfQAAAAAALQAAAAAALQAAAAAALQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAfAAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAfQAAAAAAfQAAAAAATAAAAAAAfQAAAAAATAAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAgQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAIwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -98,30 +98,31 @@ entities: color: '#FFFF00FF' id: 1 decals: - 190: 11,-1 + 186: 11,-1 - node: color: '#FFFF00FF' id: 2 decals: - 154: 5,-1 + 152: 5,-1 - node: color: '#FFFF00FF' id: 3 decals: - 155: -9,-1 + 153: -9,-1 - node: color: '#FFFF00FF' id: 4 decals: - 156: -15,-1 + 411: -15,-1 - node: color: '#FFFF00FF' id: Bot decals: 132: 5,-1 - 158: -9,-1 - 159: -15,-1 - 189: 11,-1 + 155: -9,-1 + 185: 11,-1 + 409: -9,-1 + 410: -15,-1 - node: color: '#FFFFFFFF' id: Bot @@ -134,17 +135,17 @@ entities: color: '#5C7D4DFF' id: BotGreyscale decals: - 201: 1,6 + 197: 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 + 198: 1,7 + 199: -9,-2 + 200: -9,-3 + 201: -9,-4 + 202: -15,-2 + 203: -15,-3 - node: color: '#5C7D4DFF' id: BoxGreyscale @@ -203,9 +204,9 @@ entities: 109: 6,-1 114: 8,-2 115: 14,-2 - 176: 10,-1 - 177: 11,-1 - 178: 12,-1 + 172: 10,-1 + 173: 11,-1 + 174: 12,-1 - node: color: '#5C7D4DFF' id: BrickLineOverlayW @@ -216,47 +217,75 @@ entities: 97: 9,4 104: 3,0 105: 3,-1 - 174: 9,3 - 175: 9,2 + 170: 9,3 + 171: 9,2 - node: color: '#5C7D4DFF' id: BrickTileSteelCornerNe decals: 122: 7,4 - 182: -1,8 + 178: -1,8 - node: color: '#5C7D4DFF' id: BrickTileSteelCornerNw decals: 123: 5,4 - 179: -4,8 + 175: -4,8 - node: color: '#5C7D4DFF' id: BrickTileSteelCornerSe decals: 125: 7,3 - 180: -1,6 + 176: -1,6 - node: color: '#5C7D4DFF' id: BrickTileSteelCornerSw decals: 124: 5,3 - 181: -4,6 + 177: -4,6 + - node: + color: '#493926FF' + id: BrickTileSteelInnerNe + decals: + 387: -3,-7 + 388: 0,-7 + 390: -3,-4 - node: color: '#5C7D4DFF' id: BrickTileSteelInnerNe decals: 15: -3,-7 + - node: + color: '#493926FF' + id: BrickTileSteelInnerNw + decals: + 379: 1,-7 + 380: -2,-7 + 389: 1,-4 - node: color: '#5C7D4DFF' id: BrickTileSteelInnerNw decals: 14: 1,-7 + - node: + color: '#493926FF' + id: BrickTileSteelInnerSe + decals: + 381: -3,-3 + 382: 0,-3 + 383: -3,-6 - node: color: '#5C7D4DFF' id: BrickTileSteelInnerSe decals: 13: -3,-3 + - node: + color: '#493926FF' + id: BrickTileSteelInnerSw + decals: + 384: 1,-6 + 385: 1,-3 + 386: -2,-3 - node: color: '#5C7D4DFF' id: BrickTileSteelInnerSw @@ -269,7 +298,7 @@ entities: 9: -3,-6 10: -3,-5 11: -3,-4 - 188: -1,7 + 184: -1,7 - node: color: '#5C7D4DFF' id: BrickTileSteelLineN @@ -278,8 +307,8 @@ entities: 7: -1,-7 8: 0,-7 127: 6,4 - 183: -3,8 - 184: -2,8 + 179: -3,8 + 180: -2,8 - node: color: '#5C7D4DFF' id: BrickTileSteelLineS @@ -288,8 +317,8 @@ entities: 4: -1,-3 5: 0,-3 126: 6,3 - 185: -3,6 - 186: -2,6 + 181: -3,6 + 182: -2,6 - node: color: '#5C7D4DFF' id: BrickTileSteelLineW @@ -297,14 +326,120 @@ entities: 0: 1,-6 1: 1,-5 2: 1,-4 - 187: -4,7 + 183: -4,7 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 265: 15,8 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 261: 11,8 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 266: 15,4 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 267: 11,4 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 268: 15,5 + 269: 15,6 + 270: 15,7 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 262: 12,8 + 263: 13,8 + 264: 14,8 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 271: 14,4 + 272: 13,4 + 273: 12,4 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 274: 11,5 + 275: 11,6 + 276: 11,7 + - node: + color: '#493926FF' + id: ConcreteTrimInnerNe + decals: + 400: 0,-18 + 401: -3,-18 + 402: -3,-11 + - node: + color: '#493926FF' + id: ConcreteTrimInnerNw + decals: + 397: 1,-18 + 398: -2,-18 + 399: 1,-11 + - node: + color: '#493926FF' + id: ConcreteTrimInnerSe + decals: + 391: -3,-10 + 392: 0,-10 + 393: -3,-17 + - node: + color: '#493926FF' + id: ConcreteTrimInnerSw + decals: + 394: -2,-10 + 395: 1,-10 + 396: 1,-17 - node: color: '#5C7D4DFF' id: DeliveryGreyscale decals: 81: -20,-7 121: 7,5 - 200: 1,5 + 196: 1,5 + - node: + color: '#000000FF' + id: DiagonalCheckerAOverlay + decals: + 235: 11,8 + 236: 12,8 + 237: 12,7 + 238: 11,7 + 239: 11,6 + 240: 12,6 + 241: 12,5 + 242: 11,5 + 243: 11,4 + 244: 12,4 + 245: 13,4 + 246: 13,5 + 247: 14,5 + 248: 14,4 + 249: 15,4 + 250: 15,5 + 251: 15,6 + 252: 14,6 + 253: 12,6 + 254: 13,6 + 255: 13,7 + 256: 14,7 + 257: 15,7 + 258: 15,8 + 259: 14,8 + 260: 13,8 - node: color: '#FFFFFFFF' id: LoadingArea @@ -318,7 +453,7 @@ entities: color: '#FFFFFFFF' id: LoadingArea decals: - 239: 24,-9 + 233: 24,-9 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -340,135 +475,238 @@ entities: decals: 82: -21,-9 83: -22,-9 + - node: + color: '#5C7D4DFF' + id: MiniTileDarkCornerSw + decals: + 305: -14,-1 - node: color: '#5C7D4DFF' id: MiniTileDarkInnerNe decals: - 229: -11,0 + 223: -11,0 - node: color: '#5C7D4DFF' id: MiniTileDarkInnerNw decals: - 228: -13,0 + 222: -13,0 - node: color: '#5C7D4DFF' id: MiniTileDarkInnerSe decals: - 226: -11,-1 + 220: -11,-1 - node: color: '#5C7D4DFF' id: MiniTileDarkInnerSw decals: - 227: -13,-1 + 221: -13,-1 - node: color: '#5C7D4DFF' id: MiniTileDarkLineE decals: - 208: -11,1 - 209: -10,0 - 210: -10,-1 - 211: -11,-2 + 204: -11,1 + 205: -10,0 + 206: -10,-1 + 207: -11,-2 - node: color: '#5C7D4DFF' id: MiniTileDarkLineN decals: - 216: -13,1 - 217: -12,1 - 218: -11,1 - 219: -14,0 - 220: -10,0 + 211: -13,1 + 212: -12,1 + 213: -11,1 + 214: -14,0 + 215: -10,0 - node: color: '#5C7D4DFF' id: MiniTileDarkLineS decals: - 221: -10,-1 - 222: -11,-2 - 223: -12,-2 - 224: -13,-2 - 225: -14,-1 + 216: -10,-1 + 217: -11,-2 + 218: -12,-2 + 219: -13,-2 - node: color: '#5C7D4DFF' id: MiniTileDarkLineW decals: - 212: -13,1 - 213: -14,0 - 214: -14,-1 - 215: -13,-2 + 208: -13,1 + 209: -14,0 + 210: -13,-2 + 304: -14,0 + - node: + color: '#493926FF' + id: MiniTileInnerOverlayNE + decals: + 319: 9,-1 + 327: 9,2 + 329: 13,-1 + 367: -2,0 + 373: -2,-1 + 374: -3,0 - node: color: '#5C7D4DFF' id: MiniTileInnerOverlayNE decals: - 233: 9,-1 + 227: 9,-1 + - node: + color: '#493926FF' + id: MiniTileInnerOverlayNW + decals: + 320: 14,-1 + 324: 10,-1 + 326: 14,2 + 368: 0,0 + 375: 0,-1 + 376: 1,0 - node: color: '#5C7D4DFF' id: MiniTileInnerOverlayNW decals: - 231: 14,-1 - 238: 9,1 + 225: 14,-1 + 232: 9,1 + - node: + color: '#493926FF' + id: MiniTileInnerOverlaySE + decals: + 322: 9,3 + 323: 9,0 + 325: 13,3 + 369: -2,2 + 377: -2,3 + 378: -3,2 - node: color: '#5C7D4DFF' id: MiniTileInnerOverlaySE decals: - 230: 9,3 - 234: 3,-1 - 236: 9,-1 + 224: 9,3 + 228: 3,-1 + 230: 9,-1 + - node: + color: '#493926FF' + id: MiniTileInnerOverlaySW + decals: + 321: 14,3 + 328: 10,3 + 330: 14,0 + 370: 0,2 + 371: 0,3 + 372: 1,2 - node: color: '#5C7D4DFF' id: MiniTileInnerOverlaySW decals: - 232: 14,3 - 235: 7,-1 - 237: 13,-1 + 226: 14,3 + 229: 7,-1 + 231: 13,-1 - node: color: '#5C7D4DFF' id: MiniTileLineOverlayE decals: - 171: 9,0 - 172: 9,1 - 173: 9,2 + 167: 9,0 + 168: 9,1 + 169: 9,2 - node: color: '#5C7D4DFF' id: MiniTileLineOverlayN decals: - 167: 10,-1 - 168: 11,-1 - 169: 12,-1 - 170: 13,-1 + 163: 10,-1 + 164: 11,-1 + 165: 12,-1 + 166: 13,-1 - node: color: '#5C7D4DFF' id: MiniTileLineOverlayS decals: - 163: 10,3 - 164: 11,3 - 165: 12,3 - 166: 13,3 + 159: 10,3 + 160: 11,3 + 161: 12,3 + 162: 13,3 - node: color: '#5C7D4DFF' id: MiniTileLineOverlayW decals: - 160: 14,0 - 161: 14,1 - 162: 14,2 + 156: 14,0 + 157: 14,1 + 158: 14,2 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelCornerNe + decals: + 301: -5,3 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelCornerNw + decals: + 300: -16,3 + 307: -17,1 - node: color: '#5C7D4DFF' + id: MiniTileSteelCornerSe + decals: + 302: -5,-1 + 306: -15,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelCornerSw + decals: + 299: -9,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelEndS + decals: + 277: -17,-2 + - node: + color: '#493926FF' id: MiniTileSteelInnerNe decals: - 157: -9,-1 + 343: -9,-1 + 346: -9,2 + 347: -6,-1 + - node: + color: '#5C7D4DFF' + id: MiniTileSteelInnerNe + decals: + 154: -9,-1 + - node: + color: '#493926FF' + id: MiniTileSteelInnerNw + decals: + 344: -8,-1 + 348: -5,-1 + 349: -5,2 - node: color: '#5C7D4DFF' id: MiniTileSteelInnerNw decals: 29: -5,-1 + 311: -16,1 + - node: + color: '#493926FF' + id: MiniTileSteelInnerSe + decals: + 345: -9,0 + 350: -6,3 + 351: -9,3 - node: color: '#5C7D4DFF' id: MiniTileSteelInnerSe decals: 28: -9,3 + 310: -17,-1 + 318: -15,2 + - node: + color: '#493926FF' + id: MiniTileSteelInnerSw + decals: + 352: -5,0 + 353: -5,3 + 354: -8,3 - node: color: '#5C7D4DFF' id: MiniTileSteelInnerSw decals: 30: -5,3 + 317: -9,2 - node: color: '#5C7D4DFF' id: MiniTileSteelLineE @@ -476,6 +714,11 @@ entities: 25: -9,0 26: -9,1 27: -9,2 + 278: -5,2 + 279: -5,1 + 280: -5,0 + 281: -15,1 + 282: -15,0 - node: color: '#5C7D4DFF' id: MiniTileSteelLineN @@ -483,6 +726,16 @@ entities: 22: -8,-1 23: -7,-1 24: -6,-1 + 289: -15,3 + 290: -13,3 + 291: -14,3 + 292: -12,3 + 293: -11,3 + 294: -10,3 + 295: -9,3 + 296: -8,3 + 297: -7,3 + 298: -6,3 - node: color: '#5C7D4DFF' id: MiniTileSteelLineS @@ -490,6 +743,15 @@ entities: 19: -8,3 20: -7,3 21: -6,3 + 283: -6,-1 + 284: -7,-1 + 285: -8,-1 + 303: -16,-1 + 312: -14,2 + 313: -13,2 + 314: -12,2 + 315: -11,2 + 316: -10,2 - node: color: '#5C7D4DFF' id: MiniTileSteelLineW @@ -497,61 +759,136 @@ entities: 16: -5,0 17: -5,1 18: -5,2 + 286: -9,0 + 287: -9,1 + 288: -16,2 + 308: -17,-1 + 309: -17,0 + - node: + color: '#493926FF' + id: MiniTileWhiteCornerNe + decals: + 406: -5,-2 - node: color: '#5C7D4DFF' id: MiniTileWhiteCornerNe decals: 87: -2,0 + - node: + color: '#493926FF' + id: MiniTileWhiteCornerNw + decals: + 405: -7,-2 - node: color: '#5C7D4DFF' id: MiniTileWhiteCornerNw decals: 86: 0,0 + - node: + color: '#493926FF' + id: MiniTileWhiteCornerSe + decals: + 404: -5,-3 - node: color: '#5C7D4DFF' id: MiniTileWhiteCornerSe decals: 84: -2,2 + - node: + color: '#493926FF' + id: MiniTileWhiteCornerSw + decals: + 403: -7,-3 - node: color: '#5C7D4DFF' id: MiniTileWhiteCornerSw decals: 85: 0,2 + - node: + color: '#493926FF' + id: MiniTileWhiteInnerNe + decals: + 336: -9,2 + 338: -9,-1 + 341: -6,-1 + 358: -6,-1 + 359: -9,-1 + 360: -9,2 - node: color: '#5C7D4DFF' id: MiniTileWhiteInnerNe decals: - 198: -3,0 - 199: -2,-1 + 194: -3,0 + 195: -2,-1 + - node: + color: '#493926FF' + id: MiniTileWhiteInnerNw + decals: + 335: -5,2 + 337: -5,-1 + 339: -8,-1 + 355: -5,-1 + 356: -8,-1 + 357: -5,2 - node: color: '#5C7D4DFF' id: MiniTileWhiteInnerNw decals: - 194: 0,-1 - 195: 1,0 + 190: 0,-1 + 191: 1,0 + - node: + color: '#493926FF' + id: MiniTileWhiteInnerSe + decals: + 331: -9,3 + 334: -6,3 + 340: -9,0 + 361: -9,0 + 362: -9,3 + 363: -6,3 - node: color: '#5C7D4DFF' id: MiniTileWhiteInnerSe decals: 89: -2,3 - 197: -3,2 + 193: -3,2 + - node: + color: '#493926FF' + id: MiniTileWhiteInnerSw + decals: + 332: -5,3 + 333: -8,3 + 342: -5,0 + 364: -8,3 + 365: -5,3 + 366: -5,0 - node: color: '#5C7D4DFF' id: MiniTileWhiteInnerSw decals: 90: 0,3 91: 0,3 - 196: 1,2 + 192: 1,2 - node: color: '#5C7D4DFF' id: MiniTileWhiteLineE decals: - 192: -3,1 + 188: -3,1 + - node: + color: '#493926FF' + id: MiniTileWhiteLineN + decals: + 408: -6,-2 - node: color: '#5C7D4DFF' id: MiniTileWhiteLineN decals: - 191: -1,-1 + 187: -1,-1 + - node: + color: '#493926FF' + id: MiniTileWhiteLineS + decals: + 407: -6,-3 - node: color: '#5C7D4DFF' id: MiniTileWhiteLineS @@ -561,7 +898,7 @@ entities: color: '#5C7D4DFF' id: MiniTileWhiteLineW decals: - 193: 1,1 + 189: 1,1 - node: color: '#5C7D4DFF' id: OldConcreteTrimInnerNe @@ -632,7 +969,7 @@ entities: 71: 22,5 72: -25,-9 73: -24,5 - 240: 23,-9 + 234: 23,-9 - node: color: '#FFFF00FF' id: WarnLineGreyscaleE @@ -640,21 +977,21 @@ entities: 135: -15,6 136: -12,6 137: -9,6 - 143: -18,2 - 144: -18,3 + 141: -18,2 + 142: -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 + 143: -13,8 + 144: -12,8 + 145: -10,9 + 146: -9,9 + 147: -7,9 + 148: -6,9 + 149: -15,8 + 150: -17,8 + 151: -19,8 - node: color: '#FFFF00FF' id: WarnLineGreyscaleS @@ -672,8 +1009,6 @@ entities: 138: -13,6 139: -10,6 140: -7,6 - 141: -16,2 - 142: -16,3 - type: GridAtmosphere version: 2 data: @@ -970,8 +1305,6 @@ entities: - 1800 - 1823 - 1801 - - type: AtmosDevice - joinedGrid: 1 - uid: 1780 components: - type: Transform @@ -994,8 +1327,6 @@ entities: - 1837 - 1815 - 2649 - - type: AtmosDevice - joinedGrid: 1 - proto: AirCanister entities: - uid: 741 @@ -1003,8 +1334,6 @@ entities: - type: Transform pos: -23.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: Airlock entities: - uid: 972 @@ -1013,28 +1342,6 @@ entities: 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 @@ -1163,99 +1470,118 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,5.5 parent: 1 -- proto: AirlockSecurityGlassLocked +- proto: AirlockNfsdBrigGlassLocked entities: - - uid: 667 + - uid: 3 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: -15.5,4.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 +- proto: AirlockNfsdGlassLocked + entities: + - uid: 7 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 668 + - uid: 8 components: - type: Transform pos: -1.5,-7.5 parent: 1 - - uid: 669 + - uid: 9 components: - type: Transform pos: -3.5,-0.5 parent: 1 - - uid: 670 + - uid: 10 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 671 + - uid: 11 components: - type: Transform pos: 16.5,-0.5 parent: 1 - - uid: 688 + - uid: 12 components: - type: Transform pos: 7.5,5.5 parent: 1 - - type: DeviceLinkSink - links: - - 2538 -- proto: AirlockSecurityLocked +- proto: AirlockNfsdLocked entities: - - uid: 660 + - uid: 13 components: - type: Transform pos: -23.5,-7.5 parent: 1 - - uid: 661 + - uid: 14 components: - type: Transform pos: -24.5,4.5 parent: 1 - - uid: 662 + - uid: 15 components: - type: Transform pos: 23.5,4.5 parent: 1 - - uid: 663 + - uid: 16 components: - type: Transform pos: 22.5,-7.5 parent: 1 - - uid: 664 + - uid: 17 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 665 + - uid: 18 components: - type: Transform pos: 8.5,3.5 parent: 1 - - uid: 676 + - uid: 19 components: - type: Transform pos: -17.5,-0.5 parent: 1 - - uid: 1059 + - uid: 20 components: - type: Transform pos: 20.5,-6.5 parent: 1 - - uid: 1060 + - uid: 21 components: - type: Transform pos: 23.5,-5.5 parent: 1 - - uid: 1061 + - uid: 22 components: - type: Transform pos: 24.5,-3.5 parent: 1 - - uid: 1062 + - uid: 23 components: - type: Transform pos: 20.5,-3.5 parent: 1 - - uid: 1063 + - uid: 24 components: - type: Transform pos: 24.5,-0.5 @@ -1275,6 +1601,10 @@ entities: showEnts: False occludes: True ent: 135 + fuelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: AmeJar entities: - uid: 135 @@ -2121,9 +2451,9 @@ entities: - type: Transform pos: -25.5,-2.5 parent: 1 -- proto: BannerSecurity +- proto: BannerNfsd entities: - - uid: 690 + - uid: 88 components: - type: Transform pos: 6.5,6.5 @@ -2200,20 +2530,6 @@ entities: - 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 @@ -2240,52 +2556,73 @@ entities: rot: 3.141592653589793 rad pos: 1.5,0.5 parent: 1 -- proto: BedsheetSpawner +- proto: BedsheetNfsd entities: - - uid: 878 + - uid: 91 components: - type: Transform - pos: -6.5,7.5 + rot: 1.5707963267948966 rad + pos: 28.5,-2.5 parent: 1 - - uid: 880 + - uid: 2654 components: - type: Transform - pos: -12.5,8.5 + rot: 1.5707963267948966 rad + pos: 17.5,-5.5 parent: 1 - - uid: 882 + - uid: 2655 components: - type: Transform - pos: -9.5,7.5 + rot: 1.5707963267948966 rad + pos: 17.5,-2.5 parent: 1 - - uid: 939 + - uid: 2656 components: - type: Transform - pos: -21.5,3.5 + rot: 1.5707963267948966 rad + pos: 28.5,1.5 parent: 1 - - uid: 940 +- proto: BedsheetNfsdBrigmedic + entities: + - uid: 147 components: - type: Transform - pos: -21.5,5.5 + pos: 26.5,-5.5 parent: 1 - - uid: 1004 +- proto: BedsheetNfsdSheriff + entities: + - uid: 105 components: - type: Transform - pos: 28.5,1.5 + rot: 1.5707963267948966 rad + pos: 28.5,3.5 parent: 1 - - uid: 1005 +- proto: BedsheetSpawner + entities: + - uid: 878 components: - type: Transform - pos: 17.5,-2.5 + pos: -6.5,7.5 parent: 1 - - uid: 1006 + - uid: 880 components: - type: Transform - pos: 17.5,-5.5 + pos: -12.5,8.5 parent: 1 - - uid: 1050 + - uid: 882 components: - type: Transform - pos: 26.5,-5.5 + 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 - proto: BiomassReclaimer entities: @@ -2409,14 +2746,14 @@ entities: - uid: 1182 components: - type: Transform - parent: 1129 + parent: 250 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 1183 components: - type: Transform - parent: 1129 + parent: 250 - type: Physics canCollide: False - type: InsideEntityStorage @@ -2458,50 +2795,78 @@ entities: - uid: 1180 components: - type: Transform - parent: 1128 + parent: 247 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 1181 components: - type: Transform - parent: 1128 + parent: 247 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BoxMagazinePistol entities: + - uid: 249 + components: + - type: Transform + parent: 247 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 1179 components: - type: Transform - parent: 1128 + parent: 247 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BoxMagazinePistolRubber entities: + - uid: 251 + components: + - type: Transform + parent: 250 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 1069 components: - type: Transform - parent: 1129 + parent: 250 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BoxMagazineRifle entities: + - uid: 248 + components: + - type: Transform + parent: 247 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 1067 components: - type: Transform - parent: 1128 + parent: 247 - type: Physics canCollide: False - type: InsideEntityStorage - proto: BoxMagazineRifleRubber entities: + - uid: 253 + components: + - type: Transform + parent: 250 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 1178 components: - type: Transform - parent: 1129 + parent: 250 - type: Physics canCollide: False - type: InsideEntityStorage @@ -5014,6 +5379,23 @@ entities: parent: 915 - type: Physics canCollide: False +- proto: Carpet + entities: + - uid: 254 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 1 - proto: CarpetBlack entities: - uid: 1007 @@ -5065,20 +5447,49 @@ entities: parent: 1 - proto: CarpetGreen entities: - - uid: 1028 + - uid: 212 components: - type: Transform - pos: 25.5,-6.5 + rot: -1.5707963267948966 rad + pos: 23.5,-1.5 parent: 1 - - uid: 1029 + - uid: 215 components: - type: Transform - pos: 26.5,-6.5 + rot: -1.5707963267948966 rad + pos: 22.5,-2.5 parent: 1 - - uid: 1030 + - uid: 246 components: - type: Transform - pos: 26.5,-5.5 + rot: -1.5707963267948966 rad + pos: 22.5,-1.5 + parent: 1 + - uid: 676 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - uid: 690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-2.5 + parent: 1 + - uid: 2661 + components: + - type: Transform + pos: 23.5,2.5 + parent: 1 + - uid: 2662 + components: + - type: Transform + pos: 23.5,1.5 parent: 1 - proto: CarpetOrange entities: @@ -6031,82 +6442,54 @@ entities: - 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 +- proto: CrateHydroponicsTools entities: - - uid: 1231 + - uid: 541 components: - type: Transform - pos: -0.5,-2.5 + pos: 19.5,6.5 parent: 1 -- proto: CrateServiceCustomSmokable - entities: - - uid: 930 + - uid: 931 components: - type: Transform - pos: -19.5,5.5 + pos: -19.5,3.5 parent: 1 -- proto: CrateServiceJanitorialSupplies +- proto: CrateMaterialSteel entities: - - uid: 702 + - uid: 806 components: - type: Transform - pos: -21.5,-4.5 + pos: -25.5,-3.5 parent: 1 -- proto: CrateServiceJanitorialSupplies2 +- proto: CrateMedicalSupplies entities: - - uid: 703 + - uid: 2307 components: - type: Transform - pos: -21.5,-5.5 + pos: -1.5,4.5 parent: 1 -- proto: CrateTrashCart +- proto: CrateNfsdBrigmedic entities: - - uid: 707 + - uid: 2663 components: - type: Transform - pos: -18.5,-5.5 + pos: -1.5,6.5 parent: 1 -- proto: CrateWeaponSecure +- proto: CrateNfsdSecure2 entities: - - uid: 1016 + - uid: 247 components: - type: Transform - pos: 18.5,3.5 + pos: 19.5,3.5 parent: 1 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14926 + temperature: 293.14923 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -6123,32 +6506,35 @@ entities: showEnts: False occludes: True ents: - - 1195 - - 1194 - - 1192 - - 1193 - - 1196 - - 1200 - - 1198 - - 1199 - - 1197 + - 1179 + - 1181 + - 1180 + - 1067 + - 1184 + - 1176 + - 248 + - 1188 + - 249 + - 1186 + - 1177 + - 1187 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 1128 + - uid: 250 components: - type: Transform - pos: 19.5,3.5 + pos: 21.5,3.5 parent: 1 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14926 + temperature: 293.14923 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -6165,24 +6551,63 @@ entities: showEnts: False occludes: True ents: - - 1188 - - 1186 - - 1187 - - 1177 - - 1176 - - 1184 - - 1067 - - 1180 - - 1181 - - 1179 + - 251 + - 1190 + - 146 + - 253 + - 1191 + - 1069 + - 1185 + - 1189 + - 1182 + - 141 + - 1183 + - 1178 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 1129 +- proto: CrateNfsdSupplies + entities: + - uid: 559 components: - type: Transform - pos: 21.5,3.5 + 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: @@ -6208,16 +6633,15 @@ entities: showEnts: False occludes: True ents: - - 1178 - - 1183 - - 141 - - 1182 - - 1189 - - 1185 - - 1069 - - 1191 - - 1190 - - 146 + - 1195 + - 1194 + - 1192 + - 1193 + - 1196 + - 1200 + - 1198 + - 1199 + - 1197 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -6250,28 +6674,6 @@ entities: 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 @@ -6932,7 +7334,7 @@ entities: - type: InsideEntityStorage - proto: EmpressMothershipComputer entities: - - uid: 1217 + - uid: 617 components: - type: Transform pos: -1.5,-2.5 @@ -7210,8 +7612,6 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 271 @@ -7220,8 +7620,6 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - proto: GasMixerFlipped @@ -7232,8 +7630,6 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - proto: GasPassiveGate @@ -7243,8 +7639,6 @@ entities: - type: Transform pos: -24.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasPassiveVent entities: - uid: 1829 @@ -7252,16 +7646,12 @@ entities: - 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 @@ -7270,22 +7660,16 @@ entities: 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 @@ -9819,8 +10203,6 @@ entities: - type: Transform pos: -23.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - proto: GasVentPump @@ -9831,8 +10213,6 @@ entities: rot: 1.5707963267948966 rad pos: -24.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1795 @@ -9841,8 +10221,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1796 @@ -9851,8 +10229,6 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1797 @@ -9863,8 +10239,6 @@ entities: - type: DeviceNetwork deviceLists: - 1779 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1798 @@ -9875,8 +10249,6 @@ entities: - type: DeviceNetwork deviceLists: - 1779 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1799 @@ -9887,8 +10259,6 @@ entities: - type: DeviceNetwork deviceLists: - 1779 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1800 @@ -9899,8 +10269,6 @@ entities: - type: DeviceNetwork deviceLists: - 1779 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1801 @@ -9912,8 +10280,6 @@ entities: - type: DeviceNetwork deviceLists: - 1779 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1802 @@ -9921,8 +10287,6 @@ entities: - type: Transform pos: -0.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1803 @@ -9931,8 +10295,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1804 @@ -9941,8 +10303,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1805 @@ -9951,8 +10311,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1806 @@ -9960,8 +10318,6 @@ entities: - type: Transform pos: 13.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1807 @@ -9970,8 +10326,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1808 @@ -9979,8 +10333,6 @@ entities: - type: Transform pos: 7.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1809 @@ -9989,8 +10341,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1810 @@ -10002,8 +10352,6 @@ entities: - type: DeviceNetwork deviceLists: - 1780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1811 @@ -10015,8 +10363,6 @@ entities: - type: DeviceNetwork deviceLists: - 1780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1812 @@ -10028,8 +10374,6 @@ entities: - type: DeviceNetwork deviceLists: - 1780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1813 @@ -10041,8 +10385,6 @@ entities: - type: DeviceNetwork deviceLists: - 1780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1814 @@ -10054,8 +10396,6 @@ entities: - type: DeviceNetwork deviceLists: - 1780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1815 @@ -10067,8 +10407,6 @@ entities: - type: DeviceNetwork deviceLists: - 1780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1816 @@ -10079,8 +10417,6 @@ entities: - type: DeviceNetwork deviceLists: - 1780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - uid: 1817 @@ -10088,8 +10424,6 @@ entities: - type: Transform pos: 2.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000AAFF' - proto: GasVentScrubber @@ -10100,8 +10434,6 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1120 @@ -10110,8 +10442,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1345 @@ -10120,8 +10450,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1790 @@ -10130,8 +10458,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1818 @@ -10140,8 +10466,6 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1819 @@ -10150,8 +10474,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1820 @@ -10162,8 +10484,6 @@ entities: - type: DeviceNetwork deviceLists: - 1779 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1821 @@ -10174,8 +10494,6 @@ entities: - type: DeviceNetwork deviceLists: - 1779 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1822 @@ -10186,8 +10504,6 @@ entities: - type: DeviceNetwork deviceLists: - 1779 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1823 @@ -10198,8 +10514,6 @@ entities: - type: DeviceNetwork deviceLists: - 1779 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1825 @@ -10208,8 +10522,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1827 @@ -10217,8 +10529,6 @@ entities: - type: Transform pos: -1.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1828 @@ -10227,8 +10537,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1830 @@ -10236,8 +10544,6 @@ entities: - type: Transform pos: 5.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1831 @@ -10245,8 +10551,6 @@ entities: - type: Transform pos: 11.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1832 @@ -10255,8 +10559,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1833 @@ -10267,8 +10569,6 @@ entities: - type: DeviceNetwork deviceLists: - 1780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1834 @@ -10280,8 +10580,6 @@ entities: - type: DeviceNetwork deviceLists: - 1780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1835 @@ -10293,8 +10591,6 @@ entities: - type: DeviceNetwork deviceLists: - 1780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1836 @@ -10306,8 +10602,6 @@ entities: - type: DeviceNetwork deviceLists: - 1780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1837 @@ -10319,8 +10613,6 @@ entities: - type: DeviceNetwork deviceLists: - 1780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 1838 @@ -10332,8 +10624,6 @@ entities: - type: DeviceNetwork deviceLists: - 1780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 2581 @@ -10341,8 +10631,6 @@ entities: - type: Transform pos: -4.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - uid: 2649 @@ -10354,8 +10642,6 @@ entities: - type: DeviceNetwork deviceLists: - 1780 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#AA0000FF' - proto: GravityGeneratorMini @@ -11165,20 +11451,22 @@ entities: showEnts: False occludes: True ent: null -- proto: GyroscopeSecurity +- proto: GyroscopeNfsd entities: - - uid: 867 + - uid: 660 components: - type: Transform - rot: 3.141592653589793 rad pos: 22.5,-10.5 parent: 1 - - uid: 970 + - type: Thruster + originalPowerLoad: 1500 + - uid: 661 components: - type: Transform - rot: 3.141592653589793 rad pos: -23.5,-10.5 parent: 1 + - type: Thruster + originalPowerLoad: 1500 - proto: HandheldCrewMonitor entities: - uid: 646 @@ -11322,9 +11610,9 @@ entities: - type: Transform pos: -1.0400991,8.540887 parent: 1 -- proto: IntercomSecurity +- proto: IntercomNfsd entities: - - uid: 2507 + - uid: 662 components: - type: Transform rot: -1.5707963267948966 rad @@ -11338,22 +11626,22 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-8.5 parent: 1 -- proto: JetpackSecurityFilled +- proto: JetpackNfsdFilled entities: - - uid: 1222 + - uid: 663 components: - type: Transform - pos: -2.71989,-6.655184 + pos: -2.7364683,-6.69905 parent: 1 - - uid: 1223 + - uid: 664 components: - type: Transform - pos: -2.75114,-5.655184 + pos: -2.6739683,-5.63655 parent: 1 - - uid: 1224 + - uid: 665 components: - type: Transform - pos: -2.71989,-4.592684 + pos: -2.7208433,-4.620925 parent: 1 - proto: KitchenDeepFryer entities: @@ -11434,70 +11722,75 @@ entities: - type: Transform pos: -5.476282,-1.393225 parent: 1 -- proto: LockerBrigmedicFilled +- proto: LockerNfsdBailiff entities: - - uid: 997 + - uid: 698 components: - type: Transform - pos: 28.5,-4.5 + pos: 29.5,-0.5 parent: 1 -- proto: LockerEvidence +- proto: LockerNfsdBrigmedic entities: - - uid: 611 + - uid: 808 components: - type: Transform - pos: -13.5,-0.5 + pos: 24.5,-6.5 parent: 1 - - uid: 612 +- proto: LockerNfsdCopper + entities: + - uid: 2658 components: - type: Transform - pos: -13.5,0.5 + pos: 19.5,-5.5 parent: 1 +- proto: LockerNfsdEvidence + entities: - uid: 613 components: - type: Transform pos: -9.5,-0.5 parent: 1 - uid: 614 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 669 components: - type: Transform pos: -9.5,0.5 parent: 1 -- proto: LockerHeadOfSecurityFilled - entities: - - uid: 1014 + - uid: 670 components: - type: Transform - pos: 27.5,5.5 + pos: -13.5,-0.5 parent: 1 - - type: Physics - bodyType: Static -- proto: LockerSecurityFilled - entities: - - uid: 998 + - uid: 671 components: - type: Transform - pos: 24.5,-6.5 + pos: -13.5,0.5 parent: 1 - - uid: 999 +- proto: LockerNfsdSergeant + entities: + - uid: 667 components: - type: Transform - pos: 19.5,-5.5 + pos: 28.5,-4.5 parent: 1 - - uid: 1000 +- proto: LockerNfsdSheriff + entities: + - uid: 673 components: - type: Transform - pos: 19.5,-2.5 + pos: 27.5,5.5 parent: 1 -- proto: LockerWardenFilled +- proto: LockerNfsdSilver entities: - - uid: 996 + - uid: 2659 components: - type: Transform - pos: 29.5,-0.5 + pos: 19.5,-2.5 parent: 1 - - type: Physics - bodyType: Static - proto: LuxuryPen entities: - uid: 1106 @@ -11520,7 +11813,7 @@ entities: - uid: 1184 components: - type: Transform - parent: 1128 + parent: 247 - type: Physics canCollide: False - type: InsideEntityStorage @@ -11529,7 +11822,7 @@ entities: - uid: 1185 components: - type: Transform - parent: 1129 + parent: 250 - type: Physics canCollide: False - type: InsideEntityStorage @@ -11538,7 +11831,7 @@ entities: - uid: 1177 components: - type: Transform - parent: 1128 + parent: 247 - type: Physics canCollide: False - type: InsideEntityStorage @@ -11547,7 +11840,7 @@ entities: - uid: 146 components: - type: Transform - parent: 1129 + parent: 250 - type: Physics canCollide: False - type: InsideEntityStorage @@ -11556,7 +11849,7 @@ entities: - uid: 1176 components: - type: Transform - parent: 1128 + parent: 247 - type: Physics canCollide: False - type: InsideEntityStorage @@ -11565,7 +11858,7 @@ entities: - uid: 141 components: - type: Transform - parent: 1129 + parent: 250 - type: Physics canCollide: False - type: InsideEntityStorage @@ -11644,6 +11937,35 @@ entities: - type: Transform pos: -23.718105,-4.6121206 parent: 1 +- proto: NfsdDeployableBarrier + entities: + - uid: 611 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 668 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 1 + - uid: 2660 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 +- proto: NfsdTechFab + entities: + - uid: 729 + components: + - type: Transform + pos: 20.5,4.5 + parent: 1 - proto: NitrogenCanister entities: - uid: 744 @@ -11651,8 +11973,6 @@ entities: - type: Transform pos: -28.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: OxygenCanister entities: - uid: 742 @@ -11660,15 +11980,11 @@ entities: - 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 @@ -13333,15 +13649,8 @@ entities: components: - type: Transform parent: 1125 - - type: Physics - canCollide: False -- proto: SecurityTechFab - entities: - - uid: 1130 - components: - - type: Transform - pos: 20.5,4.5 - parent: 1 + - type: Physics + canCollide: False - proto: ShipyardRCD entities: - uid: 2576 @@ -13877,8 +14186,6 @@ entities: - Pressed: Toggle 2372: - Pressed: Toggle - 688: - - Pressed: DoorBolt - uid: 2558 components: - type: Transform @@ -14191,12 +14498,14 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,5.5 parent: 1 + - type: SpamEmitSound + enabled: False - proto: SpawnPointBrigmedic entities: - - uid: 2569 + - uid: 2657 components: - type: Transform - pos: 27.5,-3.5 + pos: 25.5,-5.5 parent: 1 - proto: SpawnPointChef entities: @@ -14246,21 +14555,21 @@ entities: - uid: 1186 components: - type: Transform - parent: 1128 + parent: 247 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 1187 components: - type: Transform - parent: 1128 + parent: 247 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 1188 components: - type: Transform - parent: 1128 + parent: 247 - type: Physics canCollide: False - type: InsideEntityStorage @@ -14269,21 +14578,21 @@ entities: - uid: 1189 components: - type: Transform - parent: 1129 + parent: 250 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 1190 components: - type: Transform - parent: 1129 + parent: 250 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 1191 components: - type: Transform - parent: 1129 + parent: 250 - type: Physics canCollide: False - type: InsideEntityStorage @@ -14383,72 +14692,78 @@ entities: - type: Transform pos: -30.5,2.5 parent: 1 -- proto: SuitStorageSec +- proto: SuitStorageNfsdCombat entities: - - uid: 147 + - uid: 867 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 1070 + - uid: 970 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 1213 +- proto: SuitStorageNfsdCommand + entities: + - uid: 984 components: - type: Transform pos: 1.5,-4.5 parent: 1 -- proto: SuitStorageWallmountBrigmedic +- proto: SuitStorageWallmountBailiff entities: - - uid: 1047 + - uid: 1003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-4.5 + pos: 26.5,1.5 parent: 1 - type: Physics canCollide: False -- proto: SuitStorageWallmountHOS +- proto: SuitStorageWallmountBrigmedic entities: - - uid: 24 + - uid: 1000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,4.5 + pos: 25.5,-4.5 parent: 1 - type: Physics canCollide: False -- proto: SuitStorageWallmountSec +- proto: SuitStorageWallmountCadet entities: - - uid: 1051 + - uid: 998 components: - type: Transform pos: 18.5,-4.5 parent: 1 - type: Physics canCollide: False - - uid: 1052 +- proto: SuitStorageWallmountDeputy + entities: + - uid: 999 components: - type: Transform pos: 18.5,-1.5 parent: 1 - type: Physics canCollide: False - - uid: 1053 +- proto: SuitStorageWallmountSergeant + entities: + - uid: 996 components: - type: Transform - pos: 25.5,-4.5 + rot: 3.141592653589793 rad + pos: 27.5,-4.5 parent: 1 - type: Physics canCollide: False -- proto: SuitStorageWallmountWarden +- proto: SuitStorageWallmountSheriff entities: - - uid: 1044 + - uid: 997 components: - type: Transform - pos: 26.5,1.5 + rot: 1.5707963267948966 rad + pos: 24.5,4.5 parent: 1 - type: Physics canCollide: False @@ -15132,204 +15447,288 @@ entities: rot: 3.141592653589793 rad pos: 14.5,4.5 parent: 1 -- proto: ThrusterSecurity +- proto: ThrusterNfsd entities: - - uid: 3 + - uid: 1004 components: - type: Transform - pos: -23.5,8.5 + pos: -26.5,8.5 parent: 1 - - uid: 4 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1005 + components: + - type: Transform + pos: -25.5,8.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1006 components: - type: Transform pos: -24.5,8.5 parent: 1 - - uid: 5 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1014 components: - type: Transform - pos: -25.5,8.5 + pos: -23.5,8.5 parent: 1 - - uid: 6 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1028 components: - type: Transform - pos: -26.5,8.5 + rot: 1.5707963267948966 rad + pos: -25.5,-11.5 parent: 1 - - uid: 7 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1029 components: - type: Transform - pos: 22.5,8.5 + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 parent: 1 - - uid: 8 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1030 components: - type: Transform - pos: 23.5,8.5 + rot: 3.141592653589793 rad + pos: -23.5,-12.5 parent: 1 - - uid: 9 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1044 components: - type: Transform - pos: 24.5,8.5 + rot: 3.141592653589793 rad + pos: -22.5,-12.5 parent: 1 - - uid: 10 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1047 components: - type: Transform - pos: 25.5,8.5 + rot: 3.141592653589793 rad + pos: 20.5,-12.5 parent: 1 - - uid: 11 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-8.5 + rot: 3.141592653589793 rad + pos: 21.5,-12.5 parent: 1 - - uid: 12 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-9.5 + rot: 3.141592653589793 rad + pos: 22.5,-12.5 parent: 1 - - uid: 13 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-10.5 + rot: 3.141592653589793 rad + pos: 22.5,-12.5 parent: 1 - - uid: 14 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-11.5 + pos: 22.5,8.5 parent: 1 - - uid: 15 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-8.5 + pos: 23.5,8.5 parent: 1 - - uid: 16 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-9.5 + pos: 25.5,8.5 parent: 1 - - uid: 17 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-12.5 + pos: 24.5,8.5 parent: 1 - - uid: 18 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-11.5 + rot: -1.5707963267948966 rad + pos: 26.5,-8.5 parent: 1 - - uid: 19 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1063 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-12.5 + rot: -1.5707963267948966 rad + pos: 26.5,-9.5 parent: 1 - - uid: 20 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1070 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-12.5 + rot: -1.5707963267948966 rad + pos: 24.5,-11.5 parent: 1 - - uid: 21 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1092 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-12.5 + rot: -1.5707963267948966 rad + pos: 24.5,-11.5 parent: 1 - - uid: 22 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1129 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-12.5 + pos: 19.5,-12.5 parent: 1 - - uid: 23 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1130 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,-12.5 + pos: 18.5,-12.5 parent: 1 - - uid: 105 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1132 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-8.5 + pos: 16.5,-11.5 parent: 1 - - uid: 212 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1213 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-9.5 + pos: 16.5,-10.5 parent: 1 - - uid: 215 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1214 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-10.5 + pos: 16.5,-9.5 parent: 1 - - uid: 246 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1217 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-11.5 + pos: 16.5,-8.5 parent: 1 - - uid: 247 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1222 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-12.5 + rot: -1.5707963267948966 rad + pos: -17.5,-8.5 parent: 1 - - uid: 248 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1223 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-12.5 + rot: -1.5707963267948966 rad + pos: -17.5,-9.5 parent: 1 - - uid: 249 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1224 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-12.5 + rot: -1.5707963267948966 rad + pos: -17.5,-10.5 parent: 1 - - uid: 250 + - type: Thruster + originalPowerLoad: 1500 + - uid: 1231 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-12.5 + rot: -1.5707963267948966 rad + pos: -17.5,-11.5 parent: 1 - - uid: 251 + - type: Thruster + originalPowerLoad: 1500 + - uid: 2336 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-12.5 + pos: -19.5,-12.5 parent: 1 - - uid: 253 + - type: Thruster + originalPowerLoad: 1500 + - uid: 2338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-12.5 + rot: 3.141592653589793 rad + pos: -21.5,-12.5 parent: 1 - - uid: 254 + - type: Thruster + originalPowerLoad: 1500 + - uid: 2507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-11.5 + rot: 3.141592653589793 rad + pos: -20.5,-12.5 parent: 1 - - uid: 255 + - type: Thruster + originalPowerLoad: 1500 + - uid: 2652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-9.5 + rot: 1.5707963267948966 rad + pos: -27.5,-9.5 parent: 1 - - uid: 256 + - type: Thruster + originalPowerLoad: 1500 + - uid: 2653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-8.5 + rot: 1.5707963267948966 rad + pos: -27.5,-8.5 parent: 1 + - type: Thruster + originalPowerLoad: 1500 - proto: ToiletDirtyWater entities: - uid: 915 @@ -15338,14 +15737,16 @@ entities: 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 + disposals: !type:Container + showEnts: False + occludes: True + ents: [] - proto: ToiletEmpty entities: - uid: 1056 @@ -15363,10 +15764,10 @@ entities: parent: 1 - proto: ToyFigurineParamedic entities: - - uid: 2338 + - uid: 2569 components: - type: Transform - pos: 29.759594,-2.462704 + pos: 26.76091,-6.4845634 parent: 1 - proto: ToyFigurineSecurity entities: @@ -15380,10 +15781,10 @@ entities: - type: Transform pos: 17.790844,-6.4783287 parent: 1 - - uid: 2336 + - uid: 2564 components: - type: Transform - pos: 26.759594,-6.5252037 + pos: 29.682785,-2.5158134 parent: 1 - proto: ToyFigurineWarden entities: @@ -15490,19 +15891,19 @@ entities: - type: Transform pos: -0.5,4.5 parent: 1 -- proto: VendingMachineSec +- proto: VendingMachineNfsdDrobe entities: - - uid: 1214 + - uid: 2625 components: - type: Transform - pos: -0.5,-6.5 + pos: 23.5,-2.5 parent: 1 -- proto: VendingMachineSecDrobe +- proto: VendingMachineNfsdTech entities: - - uid: 1132 + - uid: 2582 components: - type: Transform - pos: 23.5,-2.5 + pos: -0.5,-6.5 parent: 1 - proto: VendingMachineSeeds entities: @@ -17223,6 +17624,16 @@ entities: - type: Transform pos: 18.5,-8.5 parent: 1 + - uid: 2650 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 1 + - uid: 2651 + components: + - type: Transform + pos: 22.5,0.5 + parent: 1 - proto: WallPlastitaniumDiagonal entities: - uid: 172 @@ -17246,24 +17657,12 @@ entities: 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 diff --git a/Resources/Maps/_NF/Shuttles/Security/fighter.yml b/Resources/Maps/_NF/Shuttles/Security/fighter.yml index ab489c418ea..d475a373ea7 100644 --- a/Resources/Maps/_NF/Shuttles/Security/fighter.yml +++ b/Resources/Maps/_NF/Shuttles/Security/fighter.yml @@ -159,14 +159,6 @@ entities: 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 @@ -175,6 +167,13 @@ entities: rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 1 +- proto: AirlockNfsdGlassLocked + entities: + - uid: 27 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 - proto: APCBasic entities: - uid: 47 @@ -516,9 +515,9 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 1 -- proto: LockerEvidence +- proto: LockerNfsdEvidence entities: - - uid: 56 + - uid: 30 components: - type: Transform pos: 1.5,-0.5 @@ -601,12 +600,11 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 1 -- proto: SmallGyroscopeSecurity +- proto: SmallGyroscopeNfsd entities: - - uid: 34 + - uid: 32 components: - type: Transform - rot: 3.141592653589793 rad pos: -1.5,-1.5 parent: 1 - proto: Stool @@ -625,30 +623,30 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 1 -- proto: ThrusterSecurity +- proto: ThrusterNfsd 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 + rot: 3.141592653589793 rad + pos: -1.5,-3.5 parent: 1 - - uid: 32 + - uid: 33 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-2.5 parent: 1 - - uid: 33 + - uid: 34 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-3.5 + pos: 1.5,4.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 parent: 1 - proto: WallPlastitanium entities: diff --git a/Resources/Maps/_NF/Shuttles/Security/interceptor.yml b/Resources/Maps/_NF/Shuttles/Security/interceptor.yml index 1fb362bc74a..15d959ce6de 100644 --- a/Resources/Maps/_NF/Shuttles/Security/interceptor.yml +++ b/Resources/Maps/_NF/Shuttles/Security/interceptor.yml @@ -3,117 +3,185 @@ meta: postmapinit: false tilemap: 0: Space - 26: FloorDark - 31: FloorDarkMono - 88: FloorSteelDirty - 95: FloorTechMaint - 109: FloorWood - 111: Lattice - 112: Plating + 30: FloorDark + 35: FloorDarkMono + 99: FloorSteelDirty + 121: FloorWood + 124: Lattice + 125: Plating entities: - proto: "" entities: - - uid: 117 + - uid: 1 components: - type: MetaData - - pos: 0.024341583,0.8051084 + - type: Transform + pos: 0.024341583,0.8051084 parent: invalid - type: Transform - - chunks: + - type: MapGrid + chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAABbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAADbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAAAbQAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAHgAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAHgAAAAADHgAAAAABHgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADfQAAAAAAeQAAAAABeQAAAAAAeQAAAAACeQAAAAABeQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAeQAAAAABeQAAAAABeQAAAAACeQAAAAADeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAAAfQAAAAAAeQAAAAADeQAAAAABeQAAAAAAeQAAAAAAeQAAAAAB version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAYwAAAAAAfQAAAAAAeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAeQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAeQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAYwAAAAAAYwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,0: ind: 0,0 - tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAADcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: MapGrid - type: Broadphase - - bodyStatus: InAir + - type: Physics + bodyStatus: InAir angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures + - type: Fixtures + fixtures: {} - type: OccluderTree - type: Shuttle - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: + - type: DecalGrid + chunkCollection: version: 2 nodes: - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerSw + color: '#4B653E96' + id: BrickTileWhiteCornerNe decals: - 0: -9,-4 + 11: -7,-1 - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN + color: '#4B653E96' + id: BrickTileWhiteCornerNw decals: - 3: -8,-1 - 4: -7,-1 - 5: -10,-1 - 6: -9,-1 + 21: -11,-1 - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineS + color: '#4B653E96' + id: BrickTileWhiteCornerSe decals: - 1: -7,-4 - 2: -8,-4 + 17: -7,-4 - node: - color: '#DE3A3A96' + color: '#4B653E96' id: BrickTileWhiteCornerSw decals: - 11: -9,-4 + 18: -9,-4 + 19: -10,-3 + 20: -11,-2 + - node: + color: '#49392696' + id: BrickTileWhiteInnerNe + decals: + 28: -9,-3 + - node: + color: '#49392696' + id: BrickTileWhiteInnerNw + decals: + 27: -8,-3 + - node: + color: '#49392696' + id: BrickTileWhiteInnerSe + decals: + 26: -9,-2 + - node: + color: '#49392696' + id: BrickTileWhiteInnerSw + decals: + 25: -8,-2 + - node: + color: '#4B653E96' + id: BrickTileWhiteInnerSw + decals: + 22: -9,-3 + 23: -10,-2 + - node: + color: '#4B653E96' + id: BrickTileWhiteLineE + decals: + 16: -7,-3 + 24: -7,-2 - node: - color: '#DE3A3A96' + color: '#4B653E96' id: BrickTileWhiteLineN decals: - 7: -10,-1 - 8: -9,-1 - 9: -8,-1 - 10: -7,-1 + 12: -8,-1 + 13: -9,-1 + 14: -10,-1 - node: - color: '#DE3A3A96' + color: '#4B653E96' id: BrickTileWhiteLineS decals: - 12: -8,-4 - 13: -7,-4 + 15: -8,-4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 31: -10,-2 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 32: -7,-3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 29: -2,-5 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 33: -7,-2 + 34: -9,-3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 30: 0,-5 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 35: -9,-2 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 17: 0,-1 - 18: -1,-1 - 19: -2,-1 - 20: -3,-1 - 21: -4,-1 - 22: -5,-1 + 3: 0,-1 + 4: -1,-1 + 5: -2,-1 + 6: -3,-1 + 7: -4,-1 + 8: -5,-1 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 14: -2,-3 - 15: -1,-3 - 16: 0,-3 - 23: -1,1 - 24: 0,1 - type: DecalGrid - - version: 2 + 0: -2,-3 + 1: -1,-3 + 2: 0,-3 + 9: -1,1 + 10: 0,1 + - type: GridAtmosphere + version: 2 data: tiles: -1,-1: @@ -123,20 +191,23 @@ entities: -3,-2: 0: 54272 -3,-1: - 0: 65535 + 1: 1 + 0: 65534 -2,-2: - 0: 62464 + 0: 29696 + 1: 32768 -2,-1: - 0: 53247 - 1: 12288 + 0: 65535 -1,-2: - 0: 65280 + 0: 61184 + 1: 4096 0,-2: 0: 14080 -3,0: 0: 207 -2,0: - 0: 159 + 0: 31 + 1: 128 -1,0: 0: 65535 -1,1: @@ -162,10 +233,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.14996 + temperature: 293.15 moles: - - 20.078888 - - 75.53487 + - 0 + - 0 - 0 - 0 - 0 @@ -177,1609 +248,1801 @@ entities: - 0 - 0 chunkSize: 4 - type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance - - id: Interceptor - type: BecomesStation + - type: BecomesStation + id: Interceptor - type: SpreaderGrid -- proto: AirlockBrigGlassLocked +- proto: AirCanister entities: - - uid: 92 - components: - - pos: -2.5,0.5 - parent: 117 - type: Transform - - uid: 133 + - uid: 106 components: - - pos: -5.5,-1.5 - parent: 117 - type: Transform -- proto: AirlockExternalGlass + - type: Transform + anchored: True + pos: -8.5,-0.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockGlassShuttle entities: - - uid: 8 + - uid: 6 components: - - rot: 3.141592653589793 rad - pos: -1.5,-3.5 - parent: 117 - type: Transform - - uid: 13 + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 7 components: - - pos: 0.5,-3.5 - parent: 117 - type: Transform -- proto: AirlockGlassShuttle + - type: Transform + pos: -1.5,-5.5 + parent: 1 +- proto: AirlockNfsdGlassLocked entities: - - uid: 1 + - uid: 3 components: - - pos: -1.5,-5.5 - parent: 117 - type: Transform - - uid: 2 + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 5 components: - - pos: 0.5,-5.5 - parent: 117 - type: Transform -- proto: AirlockSecurityLocked + - type: Transform + pos: -1.5,-3.5 + parent: 1 +- proto: AirlockNfsdLocked entities: - - uid: 93 + - uid: 8 components: - - pos: -0.5,0.5 - parent: 117 - type: Transform + - type: Transform + pos: -0.5,0.5 + parent: 1 - proto: APCBasic entities: - - uid: 24 + - uid: 9 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-0.5 - parent: 117 - type: Transform + parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 124 + - uid: 10 components: - - pos: -1.5,-5.5 - parent: 117 - type: Transform - - uid: 125 + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 22 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 118 components: - - pos: 0.5,-5.5 - parent: 117 - type: Transform + - type: Transform + pos: -10.5,-4.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1 - proto: Bed entities: - - uid: 88 + - uid: 12 components: - - pos: -2.5,3.5 - parent: 117 - type: Transform - - uid: 191 + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 13 components: - - pos: 0.5,1.5 - parent: 117 - type: Transform + - type: Transform + pos: 0.5,1.5 + parent: 1 - proto: BedsheetBrown entities: - - uid: 194 + - uid: 14 components: - - pos: 0.5,1.5 - parent: 117 - type: Transform + - type: Transform + pos: 0.5,1.5 + parent: 1 - proto: BedsheetYellow entities: - - uid: 197 + - uid: 15 components: - - pos: -2.5,3.5 - parent: 117 - type: Transform + - type: Transform + pos: -2.5,3.5 + parent: 1 - proto: BoxFolderBlack entities: - - uid: 9 + - uid: 16 components: - - pos: -3.376185,-1.4098043 - parent: 117 - type: Transform + - type: Transform + pos: -3.376185,-1.4098043 + parent: 1 - proto: BoxForensicPad entities: - - uid: 230 + - uid: 17 components: - - pos: -3.6799874,-1.4031521 - parent: 117 - type: Transform + - type: Transform + pos: -3.6799874,-1.4031521 + parent: 1 - proto: CableApcExtension entities: - - uid: 99 - components: - - pos: -5.5,-0.5 - parent: 117 - type: Transform - - - uid: 151 - components: - - pos: -9.5,-2.5 - parent: 117 - type: Transform - - uid: 152 - components: - - pos: -9.5,-1.5 - parent: 117 - type: Transform - - uid: 153 - components: - - pos: -9.5,-0.5 - parent: 117 - type: Transform - - uid: 154 - components: - - pos: -8.5,-0.5 - parent: 117 - type: Transform - - uid: 155 - components: - - pos: -7.5,-0.5 - parent: 117 - type: Transform - - uid: 156 - components: - - pos: -6.5,-0.5 - parent: 117 - type: Transform - - uid: 157 - components: - - pos: -8.5,-2.5 - parent: 117 - type: Transform - - uid: 158 - components: - - pos: -8.5,-3.5 - parent: 117 - type: Transform - - uid: 159 + - uid: 18 components: - - pos: -7.5,-3.5 - parent: 117 - type: Transform - - uid: 160 + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 19 components: - - pos: -6.5,-3.5 - parent: 117 - type: Transform - - uid: 161 + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 20 components: - - pos: -6.5,-2.5 - parent: 117 - type: Transform - - uid: 162 + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 25 components: - - pos: -6.5,-1.5 - parent: 117 - type: Transform - - uid: 163 + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 31 components: - - pos: -5.5,-1.5 - parent: 117 - type: Transform - - uid: 164 + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 32 components: - - pos: -4.5,-1.5 - parent: 117 - type: Transform - - uid: 165 + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 33 components: - - pos: -3.5,-1.5 - parent: 117 - type: Transform - - uid: 166 + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 34 components: - - pos: -2.5,-1.5 - parent: 117 - type: Transform - - uid: 167 + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 35 components: - - pos: -1.5,-1.5 - parent: 117 - type: Transform - - uid: 168 + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 36 components: - - pos: -0.5,-1.5 - parent: 117 - type: Transform - - uid: 169 + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 37 components: - - pos: 0.5,-1.5 - parent: 117 - type: Transform - - uid: 170 + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 38 components: - - pos: 0.5,-2.5 - parent: 117 - type: Transform - - uid: 171 + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 39 components: - - pos: 0.5,-3.5 - parent: 117 - type: Transform - - uid: 172 + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 41 components: - - pos: 0.5,-4.5 - parent: 117 - type: Transform - - uid: 173 + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 42 components: - - pos: -1.5,-2.5 - parent: 117 - type: Transform - - uid: 174 + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 44 components: - - pos: -1.5,-3.5 - parent: 117 - type: Transform - - uid: 175 + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 45 components: - - pos: -1.5,-4.5 - parent: 117 - type: Transform - - uid: 176 + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 46 components: - - pos: -2.5,-0.5 - parent: 117 - type: Transform - - uid: 177 + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 47 components: - - pos: -2.5,0.5 - parent: 117 - type: Transform - - uid: 178 + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 48 components: - - pos: -2.5,1.5 - parent: 117 - type: Transform - - uid: 179 + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 49 components: - - pos: -2.5,2.5 - parent: 117 - type: Transform - - uid: 180 + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 56 components: - - pos: -2.5,3.5 - parent: 117 - type: Transform - - uid: 181 + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 57 components: - - pos: 0.5,-0.5 - parent: 117 - type: Transform - - uid: 182 + - type: Transform + pos: -9.5,-1.5 + parent: 1 +- proto: CableHV + entities: + - uid: 50 components: - - pos: 0.5,0.5 - parent: 117 - type: Transform - - - uid: 183 + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 51 components: - - pos: 0.5,1.5 - parent: 117 - type: Transform - - uid: 184 + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 52 components: - - pos: 0.5,2.5 - parent: 117 - type: Transform - - uid: 185 + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 53 components: - - pos: 0.5,3.5 - parent: 117 - type: Transform -- proto: CableHV + - type: Transform + pos: -9.5,0.5 + parent: 1 +- proto: CableMV entities: - - uid: 143 + - uid: 54 components: - - pos: -10.5,-1.5 - parent: 117 - type: Transform - - uid: 144 + - type: Transform + pos: -9.5,0.5 + parent: 1 + - uid: 55 components: - - pos: -9.5,-1.5 - parent: 117 - type: Transform - - uid: 145 + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 58 components: - - pos: -9.5,-0.5 - parent: 117 - type: Transform - - uid: 146 + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 59 components: - - pos: -9.5,0.5 - parent: 117 - type: Transform - -- proto: CableMV - entities: - - uid: 147 + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 60 components: - - pos: -9.5,0.5 - parent: 117 - type: Transform - - - uid: 148 + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 61 components: - - pos: -9.5,-0.5 - parent: 117 - type: Transform - - uid: 149 + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 240 components: - - pos: -9.5,-1.5 - parent: 117 - type: Transform - - uid: 150 + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 260 components: - - pos: -9.5,-2.5 - parent: 117 - type: Transform - - uid: 188 + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 261 components: - - pos: -5.5,-0.5 - parent: 117 - type: Transform - - - uid: 195 + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 262 components: - - pos: -6.5,-0.5 - parent: 117 - type: Transform - - uid: 198 + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 263 components: - - pos: -7.5,-0.5 - parent: 117 - type: Transform - - uid: 199 + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 264 components: - - pos: -8.5,-0.5 - parent: 117 - type: Transform -- proto: Carpet + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: CarpetGreen entities: - - uid: 209 + - uid: 27 components: - - pos: -2.5,-2.5 - parent: 117 - type: Transform - - uid: 210 + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 66 components: - - pos: -3.5,-2.5 - parent: 117 - type: Transform - - uid: 211 + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 79 components: - - pos: -4.5,-2.5 - parent: 117 - type: Transform - - uid: 212 + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 80 components: - - pos: -4.5,-1.5 - parent: 117 - type: Transform - - uid: 213 + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 126 components: - - pos: -3.5,-1.5 - parent: 117 - type: Transform - - uid: 214 + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 181 components: - - pos: -2.5,-1.5 - parent: 117 - type: Transform + - type: Transform + pos: -2.5,-2.5 + parent: 1 - proto: CarpetPurple entities: - - uid: 61 + - uid: 68 components: - - pos: 0.5,3.5 - parent: 117 - type: Transform - - uid: 87 + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 69 components: - - pos: 0.5,2.5 - parent: 117 - type: Transform - - uid: 91 + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 70 components: - - pos: -0.5,2.5 - parent: 117 - type: Transform - - uid: 189 + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 71 components: - - pos: -0.5,3.5 - parent: 117 - type: Transform + - type: Transform + pos: -0.5,3.5 + parent: 1 - proto: ChairFolding entities: - - uid: 204 + - uid: 72 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,-1.5 - parent: 117 - type: Transform + parent: 1 - proto: ChairOfficeDark entities: - - uid: 119 - components: - - pos: -8.5,-2.5 - parent: 117 - type: Transform - - uid: 120 + - uid: 73 components: - - pos: -7.5,-2.5 - parent: 117 - type: Transform - - uid: 205 + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 75 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,-2.5 - parent: 117 - type: Transform -- proto: ClothingBeltSecurityFilled - entities: - - uid: 118 - components: - - flags: InContainer - type: MetaData - - parent: 112 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 128 - components: - - flags: InContainer - type: MetaData - - parent: 126 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingBeltSecurityWebbing - entities: - - uid: 113 - components: - - flags: InContainer - type: MetaData - - parent: 112 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingMaskGasSecurity - entities: - - uid: 114 - components: - - flags: InContainer - type: MetaData - - parent: 112 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingNeckMantleCap - entities: - - uid: 129 - components: - - flags: InContainer - type: MetaData - - parent: 126 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 227 + parent: 1 + - uid: 183 components: - - flags: InContainer - type: MetaData - - parent: 126 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 - proto: ComputerIFF entities: - - uid: 107 + - uid: 78 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,-2.5 - parent: 117 - type: Transform + parent: 1 - proto: ComputerShuttle entities: - - uid: 103 + - uid: 220 components: - - rot: 3.141592653589793 rad - pos: -7.5,-3.5 - parent: 117 - type: Transform + - type: Transform + pos: -7.5,-0.5 + parent: 1 - proto: ComputerStationRecords entities: - - uid: 115 + - uid: 131 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,-3.5 - parent: 117 - type: Transform + parent: 1 - proto: DefibrillatorCabinetFilled entities: - - uid: 233 + - uid: 81 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-3.5 - parent: 117 - type: Transform + parent: 1 - proto: FaxMachineShip entities: - - uid: 105 + - uid: 26 components: - - pos: -6.5,-3.5 - parent: 117 - type: Transform + - type: Transform + pos: -6.5,-3.5 + parent: 1 - proto: Fireplace entities: - - uid: 193 + - uid: 83 components: - - pos: 0.5,3.5 - parent: 117 - type: Transform + - type: Transform + pos: 0.5,3.5 + parent: 1 - proto: ForensicScanner entities: + - uid: 84 + components: + - type: Transform + pos: -3.0549874,-1.2281519 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 229 components: - - pos: -3.0549874,-1.2281519 - parent: 117 - type: Transform -- proto: GravityGeneratorMini + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeFourway entities: - - uid: 97 + - uid: 163 components: - - pos: -10.5,-0.5 - parent: 117 - type: Transform -- proto: Grille + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 234 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight entities: - - uid: 3 + - uid: 63 components: - - pos: -0.5,-5.5 - parent: 117 - type: Transform - - uid: 14 + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 64 components: - - pos: -2.5,-4.5 - parent: 117 - type: Transform - - uid: 15 + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 162 components: - - pos: 1.5,-2.5 - parent: 117 - type: Transform - - uid: 16 + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 164 components: - - pos: 1.5,-4.5 - parent: 117 - type: Transform - - uid: 28 + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 165 components: - - rot: 3.141592653589793 rad - pos: -4.5,-3.5 - parent: 117 - type: Transform - - uid: 29 + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 167 components: - - rot: 3.141592653589793 rad + - type: Transform pos: -3.5,-3.5 - parent: 117 - type: Transform - - uid: 30 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 168 components: - - pos: -0.5,-4.5 - parent: 117 - type: Transform - - uid: 35 + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 169 components: - - pos: -6.5,-4.5 - parent: 117 - type: Transform - - uid: 36 + - type: Transform + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 226 components: - - pos: -7.5,-4.5 - parent: 117 - type: Transform - - uid: 37 + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 227 components: - - pos: -8.5,-4.5 - parent: 117 - type: Transform - - uid: 41 + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 230 components: - - pos: -11.5,-1.5 - parent: 117 - type: Transform - - uid: 42 + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 232 components: - - pos: -11.5,-0.5 - parent: 117 - type: Transform - - uid: 48 + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 233 components: - - pos: -10.5,0.5 - parent: 117 - type: Transform - - uid: 50 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 235 components: - - pos: -8.5,0.5 - parent: 117 - type: Transform - - uid: 51 + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 170 components: - - pos: -7.5,0.5 - parent: 117 - type: Transform - - uid: 52 + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 177 components: - - pos: -6.5,0.5 - parent: 117 - type: Transform - - uid: 57 + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPort + entities: + - uid: 120 components: - - pos: 1.5,-1.5 - parent: 117 - type: Transform - - uid: 58 + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 236 components: - - pos: 1.5,-0.5 - parent: 117 - type: Transform - - uid: 59 + - type: Transform + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 237 components: - - pos: -4.5,0.5 - parent: 117 - type: Transform - - uid: 65 + - type: Transform + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 238 components: - - rot: 1.5707963267948966 rad - pos: -1.5,0.5 - parent: 117 - type: Transform - - uid: 71 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 239 components: - - pos: -1.5,4.5 - parent: 117 - type: Transform - - uid: 72 + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 28 components: - - pos: -0.5,4.5 - parent: 117 - type: Transform - - uid: 73 + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 62 components: - - pos: -3.5,3.5 - parent: 117 - type: Transform - - uid: 74 + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 67 components: - - pos: -3.5,2.5 - parent: 117 - type: Transform - - uid: 75 + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - uid: 125 components: - - pos: 1.5,3.5 - parent: 117 - type: Transform - - uid: 76 + - type: Transform + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 130 components: - - pos: 1.5,2.5 - parent: 117 - type: Transform - - uid: 89 + - type: Transform + pos: 0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GravityGeneratorMini + entities: + - uid: 85 components: - - pos: 0.5,0.5 - parent: 117 - type: Transform -- proto: GroundTobacco + - type: Transform + pos: -10.5,-0.5 + parent: 1 +- proto: Grille entities: - - uid: 206 + - uid: 86 components: - - pos: -2.6577282,-2.4173732 - parent: 117 - type: Transform - - uid: 207 + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 88 components: - - pos: -2.3879502,-2.2470794 - parent: 117 - type: Transform -- proto: Gyroscope - entities: - - uid: 34 + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 91 components: - - pos: -3.5,-4.5 - parent: 117 - type: Transform -- proto: IntercomSecurity + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 +- proto: GroundTobacco entities: - - uid: 132 + - uid: 113 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 117 - type: Transform - - uid: 186 + - type: Transform + pos: -2.6577282,-2.4173732 + parent: 1 + - uid: 114 components: - - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 117 - type: Transform - - uid: 187 + - type: Transform + pos: -2.3879502,-2.2470794 + parent: 1 +- proto: GyroscopeNfsd + entities: + - uid: 21 components: - - rot: -1.5707963267948966 rad - pos: 1.5,1.5 - parent: 117 - type: Transform + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 - proto: LampGold entities: - - uid: 94 + - uid: 119 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.4816613,-1.1827465 - parent: 117 - type: Transform -- proto: LockerCaptain - entities: - - uid: 126 - components: - - pos: -7.5,-0.5 - parent: 117 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.14966 - 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: - - 227 - - 202 - - 131 - - 130 - - 129 - - 128 - - 127 - - 104 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer + parent: 1 - proto: LockerDetectiveFilled entities: - - uid: 112 + - uid: 76 components: - - pos: -6.5,-0.5 - parent: 117 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 113 - - 114 - - 116 - - 118 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - type: ContainerContainer -- proto: LockerEvidence + - type: Transform + pos: -6.5,-0.5 + parent: 1 +- proto: LockerNfsdEvidence entities: - - uid: 11 + - uid: 77 components: - - pos: 0.5,-0.5 - parent: 117 - type: Transform + - type: Transform + pos: 0.5,-0.5 + parent: 1 - proto: Matchbox entities: - - uid: 208 + - uid: 121 + components: + - type: Transform + pos: -2.4866343,-1.9206845 + parent: 1 +- proto: PaperBin10 + entities: + - uid: 74 components: - - pos: -2.4866343,-1.9206845 - parent: 117 - type: Transform + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 1 - proto: Pen entities: - - uid: 203 + - uid: 122 components: - - pos: -3.1632028,-1.4523776 - parent: 117 - type: Transform + - type: Transform + pos: -3.1632028,-1.4523776 + parent: 1 - proto: PinpointerUniversal entities: - - uid: 240 + - uid: 123 components: - - pos: -7.550194,-2.5340438 - parent: 117 - type: Transform -- proto: PortableGeneratorPacman + - type: Transform + pos: -8.56982,-2.4906285 + parent: 1 +- proto: PortableGeneratorPacmanShuttle entities: - - uid: 96 + - uid: 124 components: - - pos: -10.5,-1.5 - parent: 117 - type: Transform - - storage: - Plasma: 1500 - type: MaterialStorage - - endTime: 0 - type: InsertingMaterialStorage -- proto: Poweredlight + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static +- proto: PosterLegit12Gauge entities: - - uid: 136 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-5.5 - parent: 117 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 138 + - uid: 265 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 117 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 140 - components: - - pos: -9.5,-5.5 - parent: 117 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 141 + - type: Transform + pos: 1.5,1.5 + parent: 1 +- proto: PosterLegitDickGumshue + entities: + - uid: 266 components: - - pos: -5.5,-5.5 - parent: 117 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 142 + - type: Transform + pos: 1.5,-4.5 + parent: 1 +- proto: PosterLegitObey + entities: + - uid: 267 components: - - rot: 3.141592653589793 rad - pos: -9.5,1.5 - parent: 117 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 190 + - type: Transform + pos: -2.5,4.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 40 components: - - rot: 1.5707963267948966 rad - pos: 2.5,1.5 - parent: 117 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 201 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 134 components: - - rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 117 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: PoweredSmallLight + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 +- proto: PoweredlightLED entities: - - uid: 27 + - uid: 24 components: - - rot: 3.141592653589793 rad - pos: -2.5,-2.5 - parent: 117 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 122 + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 29 components: - - pos: -2.5,3.5 - parent: 117 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 139 + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 1 + - uid: 30 components: - - pos: -9.5,-0.5 - parent: 117 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver -- proto: ReinforcedWindow + - type: Transform + pos: -10.5,-4.5 + parent: 1 +- proto: PoweredSmallLight entities: - - uid: 4 - components: - - pos: -0.5,-5.5 - parent: 117 - type: Transform - - uid: 17 - components: - - pos: -0.5,-4.5 - parent: 117 - type: Transform - - uid: 18 + - uid: 43 components: - - pos: -2.5,-4.5 - parent: 117 - type: Transform - - uid: 19 + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 132 components: - - pos: 1.5,-2.5 - parent: 117 - type: Transform - - uid: 20 + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 133 components: - - pos: 1.5,-4.5 - parent: 117 - type: Transform - - uid: 31 + - type: Transform + pos: -2.5,3.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 171 components: - - pos: -6.5,-4.5 - parent: 117 - type: Transform - - uid: 32 + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 135 components: - - pos: -7.5,-4.5 - parent: 117 - type: Transform - - uid: 33 + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 136 components: - - pos: -8.5,-4.5 - parent: 117 - type: Transform - - uid: 44 + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 138 components: - - pos: -11.5,-1.5 - parent: 117 - type: Transform - - uid: 45 + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 140 components: - - pos: -11.5,-0.5 - parent: 117 - type: Transform - - uid: 47 + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 141 components: - - pos: -10.5,0.5 - parent: 117 - type: Transform - - uid: 55 + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - uid: 142 components: - - pos: 1.5,-1.5 - parent: 117 - type: Transform - - uid: 56 + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - uid: 143 components: - - pos: 1.5,-0.5 - parent: 117 - type: Transform - - uid: 60 + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 144 components: - - pos: -4.5,0.5 - parent: 117 - type: Transform - - uid: 77 + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 146 components: - - pos: -3.5,3.5 - parent: 117 - type: Transform - - uid: 78 + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 147 components: - - pos: -3.5,2.5 - parent: 117 - type: Transform - - uid: 79 + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 149 components: - - pos: -1.5,4.5 - parent: 117 - type: Transform - - uid: 80 + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 150 components: - - pos: 1.5,3.5 - parent: 117 - type: Transform - - uid: 81 + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 152 components: - - pos: 1.5,2.5 - parent: 117 - type: Transform - - uid: 82 + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 153 components: - - pos: -0.5,4.5 - parent: 117 - type: Transform - - uid: 86 + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 155 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,0.5 - parent: 117 - type: Transform - - uid: 100 + parent: 1 + - uid: 156 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -6.5,0.5 - parent: 117 - type: Transform - - uid: 101 + parent: 1 + - uid: 157 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -7.5,0.5 - parent: 117 - type: Transform - - uid: 102 + parent: 1 + - uid: 158 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,0.5 - parent: 117 - type: Transform - - uid: 109 + parent: 1 + - uid: 159 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,-3.5 - parent: 117 - type: Transform - - uid: 110 + parent: 1 + - uid: 160 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-3.5 - parent: 117 - type: Transform + parent: 1 - proto: SheetPlasma entities: - - uid: 239 + - uid: 225 components: - - pos: -8.624058,-2.5340438 - parent: 117 - type: Transform - - count: 15 - type: Stack - - size: 15 - type: Item + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - type: Stack + count: 15 - proto: ShuttersNormalOpen entities: - - uid: 216 - components: - - pos: -4.5,-3.5 - parent: 117 - type: Transform - - SecondsUntilStateChange: -2519.3804 - state: Closing - type: Door - - uid: 217 - components: - - pos: -3.5,-3.5 - parent: 117 - type: Transform - - SecondsUntilStateChange: -2519.3804 - state: Closing - type: Door - - uid: 218 + - uid: 104 components: - - pos: -4.5,0.5 - parent: 117 - type: Transform - - SecondsUntilStateChange: -2519.3804 - state: Closing - type: Door - - uid: 219 + - type: Transform + pos: -1.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 251 + - uid: 145 components: - - pos: -1.5,0.5 - parent: 117 - type: Transform - - SecondsUntilStateChange: -2519.3804 - state: Closing - type: Door - - uid: 220 + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 252 + - uid: 148 components: - - pos: 1.5,-0.5 - parent: 117 - type: Transform - - SecondsUntilStateChange: -2519.3804 - state: Closing - type: Door - - uid: 221 + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 252 + - uid: 241 components: - - pos: 1.5,-1.5 - parent: 117 - type: Transform - - SecondsUntilStateChange: -2519.3804 - state: Closing - type: Door - - uid: 222 + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 252 + - uid: 242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 252 + - uid: 243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 252 + - uid: 244 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 252 + - uid: 245 components: - - pos: 1.5,-2.5 - parent: 117 - type: Transform - - SecondsUntilStateChange: -2519.3804 - state: Closing - type: Door - - uid: 224 + - type: Transform + pos: -7.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 252 + - uid: 246 components: - - pos: -5.5,-1.5 - parent: 117 - type: Transform - - SecondsUntilStateChange: -2519.3804 - state: Closing - type: Door + - type: Transform + pos: -6.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 252 + - uid: 247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 259 + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 259 + - uid: 249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 251 + - uid: 250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 251 + - uid: 253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 259 + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 259 + - uid: 255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 259 + - uid: 256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - type: DeviceLinkSink + links: + - 259 + - uid: 257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 259 - proto: ShuttersWindowOpen entities: - - uid: 223 + - uid: 151 components: - - pos: -2.5,0.5 - parent: 117 - type: Transform - - SecondsUntilStateChange: -2519.3804 - state: Closing - type: Door -- proto: SignalButton + - type: Transform + pos: -2.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 251 +- proto: SignalButtonDirectional entities: - - uid: 225 + - uid: 251 components: - - pos: -3.5,0.5 - parent: 117 - type: Transform - - state: True - type: SignalSwitch - + - type: MetaData + name: Cell Shutters + - type: Transform + pos: -3.5,0.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 151: + - Pressed: Toggle + 104: + - Pressed: Toggle + 250: + - Pressed: Toggle + 249: + - Pressed: Toggle + - uid: 252 + components: + - type: MetaData + name: Cockpit Shutters + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5998797,-2.7593613 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 148: + - Pressed: Toggle + 145: + - Pressed: Toggle + 241: + - Pressed: Toggle + 242: + - Pressed: Toggle + 243: + - Pressed: Toggle + 244: + - Pressed: Toggle + 245: + - Pressed: Toggle + 246: + - Pressed: Toggle + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 247: + - Pressed: Toggle + 248: + - Pressed: Toggle + 255: + - Pressed: Toggle + 254: + - Pressed: Toggle + 253: + - Pressed: Toggle + 256: + - Pressed: Toggle + 257: + - Pressed: Toggle +- proto: SignDirectionalBrig + entities: + - uid: 258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 - proto: SignSec entities: - - uid: 234 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-5.5 - parent: 117 - type: Transform - - uid: 235 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-5.5 - parent: 117 - type: Transform - - uid: 236 + - uid: 89 components: - - rot: 3.141592653589793 rad + - type: Transform pos: -11.5,0.5 - parent: 117 - type: Transform - - uid: 237 + parent: 1 + - uid: 139 components: - - rot: 3.141592653589793 rad + - type: Transform pos: 1.5,4.5 - parent: 117 - type: Transform -- proto: SmokingPipeFilledTobacco - entities: - - uid: 196 - components: - - pos: -2.586734,-2.0767865 - parent: 117 - type: Transform -- proto: SpawnPointDetective - entities: - - uid: 228 - components: - - pos: -7.5,-2.5 - parent: 117 - type: Transform -- proto: SpawnPointLatejoin - entities: - - uid: 123 + parent: 1 + - uid: 172 components: - - pos: -8.5,-2.5 - parent: 117 - type: Transform -- proto: SpeedLoaderMagnum - entities: - - uid: 127 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 173 components: - - flags: InContainer - type: MetaData - - parent: 126 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: SpeedLoaderMagnumRubber + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 +- proto: SmokingPipeFilledTobacco entities: - - uid: 131 + - uid: 176 components: - - flags: InContainer - type: MetaData - - parent: 126 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage + - type: Transform + pos: -2.586734,-2.0767865 + parent: 1 - proto: SubstationWallBasic entities: - - uid: 98 + - uid: 179 components: - - pos: -9.5,0.5 - parent: 117 - type: Transform + - type: Transform + pos: -9.5,0.5 + parent: 1 - proto: SuitStorageEVAPrisoner entities: - - uid: 232 + - uid: 180 components: - - pos: -1.5,3.5 - parent: 117 - type: Transform -- proto: SuitStorageSec + - type: Transform + pos: -1.5,3.5 + parent: 1 +- proto: SuitStorageWallmountDeputy entities: - - uid: 231 + - uid: 174 components: - - pos: -9.5,-0.5 - parent: 117 - type: Transform + - type: Transform + pos: -4.5,0.5 + parent: 1 + - type: Physics + canCollide: False - proto: TableReinforced entities: - - uid: 106 + - uid: 82 components: - - pos: -6.5,-3.5 - parent: 117 - type: Transform - - uid: 134 + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 1 + - uid: 182 components: - - pos: -8.5,-0.5 - parent: 117 - type: Transform + - type: Transform + pos: -7.5,-3.5 + parent: 1 - proto: TableWood entities: - - uid: 12 + - uid: 184 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,-1.5 - parent: 117 - type: Transform - - uid: 26 + parent: 1 + - uid: 185 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-1.5 - parent: 117 - type: Transform - - uid: 137 + parent: 1 + - uid: 186 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-2.5 - parent: 117 - type: Transform -- proto: Thruster + parent: 1 +- proto: ThrusterNfsd entities: - - uid: 43 + - uid: 115 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-4.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 187 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,-4.5 - parent: 117 - type: Transform - - uid: 95 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 188 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -11.5,-3.5 - parent: 117 - type: Transform - - uid: 108 - components: - - pos: -4.5,1.5 - parent: 117 - type: Transform - - uid: 111 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 + - uid: 189 components: - - rot: -1.5707963267948966 rad - pos: -7.5,1.5 - parent: 117 - type: Transform + - type: Transform + pos: -4.5,1.5 + parent: 1 + - type: Thruster + originalPowerLoad: 1500 - proto: TintedWindow entities: - - uid: 121 + - uid: 191 components: - - pos: 0.5,0.5 - parent: 117 - type: Transform + - type: Transform + pos: 0.5,0.5 + parent: 1 - proto: VendingMachineDetDrobe entities: - uid: 192 components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,3.5 - parent: 117 - type: Transform + - type: Transform + pos: -0.5,3.5 + parent: 1 - proto: WallPlastitanium entities: - - uid: 5 + - uid: 87 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 98 components: - - rot: -1.5707963267948966 rad + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,-3.5 - parent: 117 - type: Transform - - uid: 6 + parent: 1 + - uid: 194 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-3.5 - parent: 117 - type: Transform - - uid: 7 + parent: 1 + - uid: 195 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-5.5 - parent: 117 - type: Transform - - uid: 10 + parent: 1 + - uid: 196 components: - - rot: -1.5707963267948966 rad + - type: MetaData + name: Bedroom & Office Shutters + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-3.5 - parent: 117 - type: Transform - - uid: 21 + parent: 1 + - uid: 197 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-4.5 - parent: 117 - type: Transform - - uid: 22 + parent: 1 + - uid: 198 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-3.5 - parent: 117 - type: Transform - - uid: 23 + parent: 1 + - uid: 199 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-0.5 - parent: 117 - type: Transform - - uid: 25 + parent: 1 + - uid: 200 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,-2.5 - parent: 117 - type: Transform - - uid: 38 + parent: 1 + - uid: 201 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-2.5 - parent: 117 - type: Transform - - uid: 39 + parent: 1 + - uid: 202 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,-4.5 - parent: 117 - type: Transform - - uid: 40 + parent: 1 + - uid: 203 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,-2.5 - parent: 117 - type: Transform - - uid: 46 + parent: 1 + - uid: 204 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,-3.5 - parent: 117 - type: Transform - - uid: 49 + parent: 1 + - uid: 205 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,0.5 - parent: 117 - type: Transform - - uid: 53 + parent: 1 + - uid: 206 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,0.5 - parent: 117 - type: Transform - - uid: 54 + parent: 1 + - uid: 207 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,1.5 - parent: 117 - type: Transform - - uid: 62 + parent: 1 + - uid: 208 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,0.5 - parent: 117 - type: Transform - - uid: 63 + parent: 1 + - uid: 209 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,0.5 - parent: 117 - type: Transform - - uid: 64 + parent: 1 + - uid: 210 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,1.5 - parent: 117 - type: Transform - - uid: 66 + parent: 1 + - uid: 211 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,4.5 - parent: 117 - type: Transform - - uid: 67 + parent: 1 + - uid: 212 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,4.5 - parent: 117 - type: Transform - - uid: 68 + parent: 1 + - uid: 213 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,4.5 - parent: 117 - type: Transform - - uid: 69 + parent: 1 + - uid: 214 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,4.5 - parent: 117 - type: Transform - - uid: 70 + parent: 1 + - uid: 215 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,-3.5 - parent: 117 - type: Transform - - uid: 200 + parent: 1 + - uid: 216 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-5.5 - parent: 117 - type: Transform - - uid: 215 + parent: 1 + - uid: 217 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,0.5 - parent: 117 - type: Transform + parent: 1 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 1 - proto: WardrobePrisonFilled entities: - - uid: 90 + - uid: 218 components: - - pos: -1.5,1.5 - parent: 117 - type: Transform + - type: Transform + pos: -1.5,1.5 + parent: 1 - proto: WarpPointShip entities: - - uid: 226 + - uid: 219 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-1.5 - parent: 117 - type: Transform - - location: Interceptor - type: WarpPoint -- proto: WeaponCapacitorRecharger - entities: - - uid: 135 - components: - - pos: -8.5,-0.5 - parent: 117 - type: Transform -- proto: WeaponDisabler - entities: - - uid: 116 - components: - - flags: InContainer - type: MetaData - - parent: 112 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage - - uid: 202 - components: - - flags: InContainer - type: MetaData - - parent: 126 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage -- proto: WeaponEmpEmitter - entities: - - uid: 104 - components: - - flags: InContainer - type: MetaData - - parent: 126 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage + parent: 1 + - type: WarpPoint + location: Interceptor - proto: WeaponGrapplingGun entities: - - uid: 241 + - uid: 221 components: - - pos: 0.7043412,1.4022442 - parent: 117 - type: Transform -- proto: WeaponRevolverDeckard + - type: Transform + pos: 0.7043412,1.4022442 + parent: 1 +- proto: WindoorSecureBrigLocked entities: - - uid: 130 + - uid: 2 components: - - flags: InContainer - type: MetaData - - parent: 126 - type: Transform - - canCollide: False - type: Physics - - type: InsideEntityStorage + - type: Transform + pos: -2.5,0.5 + parent: 1 - proto: WindowFrostedDirectional entities: - - uid: 83 + - uid: 222 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,3.5 - parent: 117 - type: Transform - - uid: 84 + parent: 1 + - uid: 223 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,2.5 - parent: 117 - type: Transform - - uid: 85 + parent: 1 + - uid: 224 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,1.5 - parent: 117 - type: Transform + parent: 1 - proto: Wrench entities: - - uid: 238 + - uid: 161 components: - - rot: -1.5707963267948966 rad - pos: -8.457012,-2.4386544 - parent: 117 - type: Transform + - type: Transform + pos: -10.5,-1.5 + parent: 1 ... diff --git a/Resources/Maps/_NF/Shuttles/Security/rogue.yml b/Resources/Maps/_NF/Shuttles/Security/rogue.yml index 75cb949833c..e20a136bafb 100644 --- a/Resources/Maps/_NF/Shuttles/Security/rogue.yml +++ b/Resources/Maps/_NF/Shuttles/Security/rogue.yml @@ -148,11 +148,12 @@ entities: - type: Transform pos: 1.5,-3.5 parent: 1 -- proto: AirlockSecurityGlassLocked +- proto: AirlockNfsdGlassLocked entities: - - uid: 22 + - uid: 46 components: - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,-1.5 parent: 1 - proto: APCBasic @@ -720,7 +721,7 @@ entities: - type: Transform pos: 0.5,1.5 parent: 1 -- proto: SmallGyroscopeSecurity +- proto: SmallGyroscopeNfsd entities: - uid: 50 components: @@ -756,30 +757,30 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,1.5 parent: 1 -- proto: ThrusterSecurity +- proto: ThrusterNfsd entities: - - uid: 46 + - uid: 22 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-3.5 + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 parent: 1 - uid: 47 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-3.5 + rot: -1.5707963267948966 rad + pos: 2.5,3.5 parent: 1 - uid: 48 components: - type: Transform - pos: 2.5,4.5 + rot: 3.141592653589793 rad + pos: -0.5,-3.5 parent: 1 - uid: 49 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,3.5 + pos: 2.5,4.5 parent: 1 - proto: WallPlastitanium entities: diff --git a/Resources/Maps/_NF/Shuttles/Security/wasp.yml b/Resources/Maps/_NF/Shuttles/Security/wasp.yml index 399a483f9c0..355577bb8bd 100644 --- a/Resources/Maps/_NF/Shuttles/Security/wasp.yml +++ b/Resources/Maps/_NF/Shuttles/Security/wasp.yml @@ -3,6 +3,7 @@ meta: postmapinit: false tilemap: 0: Space + 14: FloorBar 30: FloorDark 34: FloorDarkMini 35: FloorDarkMono @@ -12,17 +13,15 @@ tilemap: 46: FloorGlass 77: FloorRGlass 78: FloorReinforced - 85: FloorShuttleRed - 90: FloorSteel - 93: FloorSteelCheckerLight - 101: FloorSteelMono - 102: FloorSteelOffset - 103: FloorSteelPavement - 109: FloorWhite - 114: FloorWhiteMono - 119: FloorWood - 121: Lattice - 122: Plating + 82: FloorShuttleBlack + 92: FloorSteel + 95: FloorSteelCheckerLight + 105: FloorSteelPavement + 111: FloorWhite + 116: FloorWhiteMono + 121: FloorWood + 124: Lattice + 125: Plating entities: - proto: "" entities: @@ -37,35 +36,35 @@ entities: chunks: 0,0: ind: 0,0 - tiles: TgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAegAAAAAAIwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAIwAAAAAAegAAAAAAIwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAAAegAAAAAAIwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAAAegAAAAAAIwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAAVQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAVQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAVQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: TgAAAAAATgAAAAAATgAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAUgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAAUgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: egAAAAAAZQAAAAAAegAAAAAAWgAAAAAAXQAAAAAAXQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAegAAAAAAXQAAAAAAXQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAATQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAegAAAAAAJQAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAegAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAegAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAIwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAIwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAIwAAAAAAfQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAXwAAAAAAXwAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAATQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAfQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAfQAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: eQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAegAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAegAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAegAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAegAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXwAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAAAZgAAAAAAegAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAIwAAAAAAJQAAAAAAegAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAegAAAAAAegAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAALQAAAAAALQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAegAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAegAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAegAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAcgAAAAAAegAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAIwAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAADgAAAAAADgAAAAAADgAAAAAAfQAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAADgAAAAAADgAAAAAAfQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAIwAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAALQAAAAAALQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfQAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfQAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAfQAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAdAAAAAAAfQAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAATgAAAAAATgAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAIwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAIwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAegAAAAAAIwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAegAAAAAAIwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAegAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAAAegAAAAAAIwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAVQAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAVQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAVQAAAAAALgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAIwAAAAAAIwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAUgAAAAAAUgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAUgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAUgAAAAAALgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAegAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAegAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAegAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAegAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAZQAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAfQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAJQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAJQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAADgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJQAAAAAAJQAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAVQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,1: ind: 0,1 - tiles: VQAAAAAAVQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: UgAAAAAAUgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -91,276 +90,288 @@ entities: color: '#3AB3DAFF' id: BotGreyscale decals: - 103: -5,-3 + 68: -5,-3 - node: color: '#835432FF' id: BotLeftGreyscale decals: - 122: 8,-9 - 123: 9,-8 - 124: 10,-7 + 87: 8,-9 + 88: 9,-8 + 89: 10,-7 - node: color: '#3AB3DAFF' id: BrickTileSteelCornerNe decals: - 85: -8,-4 - 104: -5,-7 + 50: -8,-4 + 69: -5,-7 - node: color: '#835432FF' id: BrickTileSteelCornerNe decals: - 105: 10,-4 + 70: 10,-4 - node: color: '#3AB3DAFF' id: BrickTileSteelCornerNw decals: - 84: -10,-4 + 49: -10,-4 - node: color: '#3AB3DAFF' id: BrickTileSteelCornerSe decals: - 95: -5,-9 + 60: -5,-9 - node: color: '#835432FF' id: BrickTileSteelCornerSe decals: - 111: 8,-9 - 112: 9,-8 - 113: 10,-7 + 76: 8,-9 + 77: 9,-8 + 78: 10,-7 - node: color: '#3AB3DAFF' id: BrickTileSteelCornerSw decals: - 90: -8,-9 - 91: -9,-8 - 92: -10,-7 + 55: -8,-9 + 56: -9,-8 + 57: -10,-7 - node: color: '#835432FF' id: BrickTileSteelCornerSw decals: - 108: 4,-7 - 110: 5,-9 + 73: 4,-7 + 75: 5,-9 - node: color: '#3AB3DAFF' id: BrickTileSteelInnerNe decals: - 100: -8,-7 + 65: -8,-7 - node: color: '#835432FF' id: BrickTileSteelInnerSe decals: - 118: 8,-8 - 119: 9,-7 + 83: 8,-8 + 84: 9,-7 - node: color: '#3AB3DAFF' id: BrickTileSteelInnerSw decals: - 101: -8,-8 - 102: -9,-7 + 66: -8,-8 + 67: -9,-7 - node: color: '#3AB3DAFF' id: BrickTileSteelLineE decals: - 87: -5,-8 - 98: -8,-6 - 99: -8,-5 + 52: -5,-8 + 63: -8,-6 + 64: -8,-5 - node: color: '#835432FF' id: BrickTileSteelLineE decals: - 114: 10,-6 - 115: 10,-5 + 79: 10,-6 + 80: 10,-5 - node: color: '#3AB3DAFF' id: BrickTileSteelLineN decals: - 86: -9,-4 - 96: -6,-7 - 97: -7,-7 + 51: -9,-4 + 61: -6,-7 + 62: -7,-7 - node: color: '#835432FF' id: BrickTileSteelLineN decals: - 120: 9,-4 - 121: 8,-4 - 226: 7,-4 + 85: 9,-4 + 86: 8,-4 + 103: 7,-4 - node: color: '#3AB3DAFF' id: BrickTileSteelLineS decals: - 88: -6,-9 - 89: -7,-9 + 53: -6,-9 + 54: -7,-9 - node: color: '#835432FF' id: BrickTileSteelLineS decals: - 116: 6,-9 - 117: 7,-9 + 81: 6,-9 + 82: 7,-9 - node: color: '#3AB3DAFF' id: BrickTileSteelLineW decals: - 93: -10,-6 - 94: -10,-5 + 58: -10,-6 + 59: -10,-5 - node: color: '#835432FF' id: BrickTileSteelLineW decals: - 106: 4,-5 - 107: 4,-6 - 109: 5,-8 - 227: 4,-4 + 71: 4,-5 + 72: 4,-6 + 74: 5,-8 + 104: 4,-4 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: ConcreteTrimCornerNe decals: - 125: -10,8 - 141: 12,8 - 210: -6,8 - 213: 8,8 + 122: -6,8 + 146: 8,8 + 166: -10,8 + 178: 12,8 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: ConcreteTrimCornerNw decals: - 126: -12,8 - 142: 10,8 - 151: -8,8 - 152: 7,8 - 211: 6,7 - 212: -1,8 + 107: -8,8 + 129: -1,8 + 144: 6,7 + 145: 7,8 + 165: -12,8 + 175: 10,8 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: ConcreteTrimCornerSe decals: - 128: -10,5 - 143: 12,5 - 167: 8,5 - 168: 4,3 - 169: -2,3 + 149: 8,5 + 167: -10,5 + 176: 12,5 - node: color: '#B02E26FF' + id: ConcreteTrimCornerSe + decals: + 91: -2,3 + - node: + color: '#4B653EFF' id: ConcreteTrimCornerSw decals: - 127: -12,5 - 144: 10,5 - 164: -8,5 - 165: -4,3 - 166: 2,3 + 108: -8,5 + 168: -12,5 + 177: 10,5 - node: color: '#B02E26FF' + id: ConcreteTrimCornerSw + decals: + 90: -4,3 + - node: + color: '#4B653EFF' id: ConcreteTrimEndN decals: - 153: 0,11 + 130: 0,11 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: ConcreteTrimEndS decals: - 179: -6,4 - 180: 6,4 - 214: 0,4 + 114: -6,4 + 154: 6,4 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: ConcreteTrimInnerNe decals: - 177: 0,6 - 209: -6,7 + 123: -6,7 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: ConcreteTrimInnerNw decals: - 197: 0,8 - 198: 6,6 - 199: 7,7 - 200: -1,7 + 128: -1,7 + 135: 0,8 + 142: 6,6 + 143: 7,7 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: ConcreteTrimInnerSe decals: - 187: -6,5 - 193: 6,5 - 194: 4,5 - 195: 0,5 - 196: -2,5 + 115: -6,5 + 118: -2,5 + 152: 6,5 + 156: 4,5 + 163: 0,5 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: ConcreteTrimInnerSw decals: - 188: -6,5 - 189: -4,5 - 190: 0,5 - 191: 2,5 - 192: 6,5 + 116: -6,5 + 117: -4,5 + 153: 6,5 + 158: 2,5 + 164: 0,5 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: ConcreteTrimLineE decals: - 129: -10,6 - 130: -10,7 - 136: 12,6 - 137: 12,7 - 154: 0,10 - 155: 0,9 - 156: 0,8 - 157: 0,7 - 162: 8,6 - 163: 8,7 - 201: -2,4 - 202: 4,4 + 120: -2,4 + 131: 0,9 + 132: 0,10 + 136: 0,8 + 137: 0,7 + 147: 8,6 + 148: 8,7 + 155: 4,4 + 162: 0,4 + 173: -10,7 + 174: -10,6 + 180: 12,6 + 181: 12,7 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: ConcreteTrimLineN decals: - 131: -11,8 - 138: 11,8 - 158: -5,7 - 159: -4,7 - 160: -3,7 - 161: -2,7 - 172: 1,6 - 173: 2,6 - 174: 3,6 - 175: 4,6 - 176: 5,6 - 208: -7,8 + 111: -7,8 + 124: -4,7 + 125: -3,7 + 126: -5,7 + 127: -2,7 + 138: 5,6 + 139: 4,6 + 140: 3,6 + 141: 1,6 + 160: 2,6 + 172: -11,8 + 182: 11,8 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: ConcreteTrimLineS decals: - 134: -11,5 - 135: 11,5 - 178: -7,5 - 181: 7,5 - 182: 3,3 - 183: -3,3 - 184: -5,5 - 185: -1,5 - 186: 1,5 - 203: 5,5 + 112: -7,5 + 113: -5,5 + 121: -1,5 + 150: 7,5 + 151: 5,5 + 159: 1,5 + 171: -11,5 + 179: 11,5 - node: color: '#B02E26FF' + id: ConcreteTrimLineS + decals: + 92: 3,3 + 93: -3,3 + - node: + color: '#4B653EFF' id: ConcreteTrimLineW decals: - 132: -12,7 - 133: -12,6 - 139: 10,6 - 140: 10,7 - 170: 0,10 - 171: 0,9 - 204: 2,4 - 205: -4,4 - 206: -8,6 - 207: -8,7 + 109: -8,6 + 110: -8,7 + 119: -4,4 + 133: 0,10 + 134: 0,9 + 157: 2,4 + 161: 0,4 + 169: -12,6 + 170: -12,7 + 183: 10,7 + 184: 10,6 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: Delivery decals: - 215: -12,3 - 216: 12,3 + 185: -12,3 + 186: 12,3 + 216: -1,-16 + 217: 1,-16 - node: color: '#FED83DFF' id: DeliveryGreyscale decals: - 229: 7,-4 + 106: 7,-4 - node: cleanable: True color: '#FFFFFFFF' @@ -371,230 +382,234 @@ entities: 2: -4,-17 3: 3,-16 4: 4,-16 - 5: 1,-17 - 6: 1,-18 - 7: 0,-18 - 8: 3,-21 - 9: 4,-20 - 10: 5,-20 - 11: 4,-21 - 12: -3,-21 - 13: -4,-21 - 14: -6,-21 - 15: -8,-20 - 16: -8,-21 - 17: -5,-25 - 18: -6,-25 - 19: -6,-24 - 20: -7,-24 - 21: -1,-23 - 22: -1,-24 - 23: -2,-24 - 24: -2,-25 - 25: 2,-24 - 26: 2,-25 - 27: 2,-26 - 28: 3,-25 - 29: 7,-25 - 30: 6,-25 - 31: 5,-24 - 32: 5,-23 - 33: 5,-25 - 34: -1,-19 - 35: 8,-21 + 5: 1,-18 + 6: 0,-18 + 7: 3,-21 + 8: 4,-20 + 9: 5,-20 + 10: 4,-21 + 11: -3,-21 + 12: -4,-21 + 13: -6,-21 + 14: -8,-20 + 15: -8,-21 + 16: -5,-25 + 17: -6,-25 + 18: -6,-24 + 19: -7,-24 + 20: -1,-23 + 21: -1,-24 + 22: -2,-24 + 23: -2,-25 + 24: 2,-24 + 25: 2,-25 + 26: 2,-26 + 27: 3,-25 + 28: 7,-25 + 29: 6,-25 + 30: 5,-24 + 31: 5,-23 + 32: 5,-25 + 33: -1,-19 + 34: 8,-21 - node: color: '#B02E26FF' id: MiniTileDarkCornerNe decals: - 74: 2,-6 + 39: 2,-6 - node: color: '#B02E26FF' id: MiniTileDarkCornerNw decals: - 75: -2,-6 + 40: -2,-6 - node: color: '#B02E26FF' id: MiniTileDarkCornerSe decals: - 70: 1,-9 - 71: 2,-8 + 35: 1,-9 + 36: 2,-8 - node: color: '#B02E26FF' id: MiniTileDarkCornerSw decals: - 72: -1,-9 - 73: -2,-8 - - node: - color: '#B02E26FF' - id: MiniTileDarkEndE - decals: - 145: -2,9 - - node: - color: '#B02E26FF' - id: MiniTileDarkEndW - decals: - 146: -5,9 + 37: -1,-9 + 38: -2,-8 - node: color: '#B02E26FF' id: MiniTileDarkInnerSe decals: - 80: 1,-8 + 45: 1,-8 - node: color: '#B02E26FF' id: MiniTileDarkInnerSw decals: - 81: -1,-8 + 46: -1,-8 - node: color: '#B02E26FF' id: MiniTileDarkLineE decals: - 83: 2,-7 + 48: 2,-7 - node: color: '#B02E26FF' id: MiniTileDarkLineN decals: - 76: -1,-6 - 77: 0,-6 - 78: 1,-6 - 149: -4,9 - 150: -3,9 + 41: -1,-6 + 42: 0,-6 + 43: 1,-6 - node: color: '#B02E26FF' id: MiniTileDarkLineS decals: - 79: 0,-9 - 147: -4,9 - 148: -3,9 + 44: 0,-9 - node: color: '#B02E26FF' id: MiniTileDarkLineW decals: - 82: -2,-7 + 47: -2,-7 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: MiniTileSteelCornerNe decals: - 60: -2,-10 + 190: -2,-10 + 213: 4,-11 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: MiniTileSteelCornerNw decals: - 67: 2,-10 + 191: 2,-10 + 209: -4,-11 - node: - color: '#B02E26FF' + color: '#4B653EFF' + id: MiniTileSteelCornerSe + decals: + 194: -2,-13 + 212: 4,-13 + - node: + color: '#4B653EFF' + id: MiniTileSteelCornerSw + decals: + 193: 2,-13 + 208: -4,-13 + - node: + color: '#4B653EFF' + id: MiniTileSteelEndE + decals: + 218: -2,9 + - node: + color: '#4B653EFF' id: MiniTileSteelEndN decals: - 59: -3,-9 - 62: 3,-9 + 197: -3,-9 + 201: 3,-9 - node: - color: '#B02E26FF' + color: '#4B653EFF' + id: MiniTileSteelEndW + decals: + 219: -5,9 + - node: + color: '#4B653EFF' id: MiniTileSteelInnerNe decals: - 61: -3,-10 - 65: 3,-11 + 199: -3,-10 + 205: -2,-17 + 214: 3,-11 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: MiniTileSteelInnerNw decals: - 58: -3,-11 - 66: 3,-10 + 200: 3,-10 + 204: 2,-17 + 215: -3,-11 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: MiniTileSteelLineE decals: - 36: -2,-12 - 37: -2,-11 - 47: -2,-13 - 48: 4,-13 - 49: 4,-12 - 50: 4,-11 - 63: 3,-10 + 187: -2,-11 + 188: -2,-12 + 202: 3,-10 + 211: 4,-12 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: MiniTileSteelLineN decals: - 51: 4,-11 - 57: -4,-11 - 64: 4,-11 + 203: 0,-17 + 220: -3,9 + 221: -4,9 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: MiniTileSteelLineS decals: - 41: 3,-13 - 42: 2,-13 - 43: 4,-13 - 44: -2,-13 - 45: -3,-13 - 46: -4,-13 + 195: -3,-13 + 196: 3,-13 + 222: -4,9 + 223: -3,9 - node: - color: '#B02E26FF' + color: '#4B653EFF' id: MiniTileSteelLineW decals: - 38: 2,-13 - 39: 2,-12 - 40: 2,-11 - 52: -3,-10 - 53: -3,-9 - 54: -4,-13 - 55: -4,-12 - 56: -4,-11 - - node: - color: '#B02E26FF' - id: WarnFullGreyscale - decals: - 68: -1,-16 - 69: 1,-16 + 189: 2,-12 + 192: 2,-11 + 198: -3,-10 + 210: -4,-12 - node: color: '#FED83DFF' id: WarnLineGreyscaleN decals: - 223: 4,-4 - 224: 5,-4 - 225: 6,-4 - 228: 4,-4 + 100: 4,-4 + 101: 5,-4 + 102: 6,-4 + 105: 4,-4 + - node: + color: '#FFFF03FF' + id: WarnLineW + decals: + 206: -1,-17 + 207: 1,-17 - node: cleanable: True color: '#1D1D21FF' id: beepsky decals: - 218: 7,-26 + 95: 7,-26 - node: cleanable: True color: '#1D1D21FF' id: blueprint decals: - 219: -1,-26 + 96: -1,-26 - node: cleanable: True color: '#1D1D21FF' id: bottle decals: - 220: 2,-23 + 97: 2,-23 - node: cleanable: True color: '#1D1D21FF' id: cyka decals: - 217: -5,-23 + 94: -5,-23 - node: cleanable: True color: '#FED83DFF' id: engie decals: - 222: -1,0 + 99: -1,0 - node: color: '#B02E26FF' id: space decals: - 221: 2,-1 + 98: 2,-1 - type: GridAtmosphere version: 2 data: tiles: 0,0: - 0: 65535 + 0: 65497 + 1: 38 0,1: - 0: 65535 + 0: 65531 + 1: 4 0,-1: 0: 65535 0,2: @@ -603,17 +618,21 @@ entities: 0: 65535 1,0: 0: 63287 + 2: 192 1,1: - 0: 65407 - 1: 128 + 1: 129 + 0: 65406 1,2: - 0: 30719 + 0: 30711 + 1: 8 2,1: 0: 65535 2,2: - 0: 255 + 1: 1 + 0: 254 0,-4: - 0: 65535 + 0: 65407 + 1: 128 0,-3: 0: 65535 0,-2: @@ -631,21 +650,27 @@ entities: 2,-3: 0: 65280 2,-2: - 0: 65535 + 0: 64511 + 1: 1024 2,-1: - 0: 61439 + 1: 1 + 0: 61438 0,-7: 0: 65529 0,-6: - 0: 65535 + 0: 53183 + 1: 12352 0,-5: - 0: 65535 + 1: 3 + 0: 65532 1,-7: 0: 65527 1,-6: - 0: 65535 + 0: 65471 + 1: 64 1,-5: - 0: 65535 + 0: 64511 + 1: 1024 2,-7: 0: 13072 2,-6: @@ -663,7 +688,8 @@ entities: -2,-3: 0: 65416 -2,-2: - 0: 65535 + 0: 65471 + 3: 64 -2,-1: 0: 61439 -1,-4: @@ -673,7 +699,8 @@ entities: -1,-2: 0: 65535 -1,-1: - 0: 65535 + 0: 65215 + 1: 320 -3,1: 0: 65535 -3,2: @@ -682,37 +709,45 @@ entities: 0: 65503 1: 32 -2,2: - 0: 52351 - 2: 128 + 1: 3 + 0: 52348 + 3: 128 -2,0: 0: 64652 + 2: 112 -1,0: 0: 65531 1: 4 -1,1: - 0: 65535 + 1: 5 + 0: 65530 -1,2: 0: 57295 1: 48 - 2: 8192 + 3: 8192 -1,3: 0: 61439 -2,-7: 0: 65532 -2,-6: - 0: 65535 + 0: 65471 + 1: 64 -2,-5: 0: 65535 -1,-7: 0: 65523 -1,-6: - 0: 65535 + 0: 32703 + 1: 64 + 3: 32768 -1,-5: - 0: 65535 + 0: 65527 + 1: 8 1,3: 0: 311 2,0: 0: 65262 + 2: 16 3,0: 0: 13107 3,1: @@ -780,6 +815,21 @@ entities: - 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: @@ -798,113 +848,87 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance -- proto: AirlockBrigGlassLocked - entities: - - uid: 761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-15.5 - parent: 1 - - uid: 762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-13.5 - parent: 1 - - uid: 763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-15.5 - parent: 1 - - uid: 764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-13.5 - parent: 1 - - uid: 765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 1 - proto: AirlockCommand entities: - - uid: 758 + - uid: 2 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,12.5 parent: 1 - proto: AirlockEngineering entities: - - uid: 728 + - uid: 3 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,3.5 parent: 1 - proto: AirlockExternalGlassEasyPry entities: - - uid: 534 + - uid: 4 components: - type: Transform pos: 12.5,2.5 parent: 1 - - uid: 634 + - uid: 5 components: - type: Transform pos: -11.5,2.5 parent: 1 + - uid: 6 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 - proto: AirlockGlassShuttle entities: - - uid: 555 + - uid: 8 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,5.5 parent: 1 - - uid: 578 + - uid: 9 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,7.5 parent: 1 - - uid: 579 + - uid: 10 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,9.5 parent: 1 - - uid: 580 + - uid: 11 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,9.5 parent: 1 - - uid: 581 + - uid: 12 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,9.5 parent: 1 - - uid: 582 + - uid: 13 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,9.5 parent: 1 - - uid: 583 + - uid: 14 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,7.5 parent: 1 - - uid: 584 + - uid: 15 components: - type: Transform rot: 1.5707963267948966 rad @@ -912,107 +936,136 @@ entities: parent: 1 - proto: AirlockMedicalGlass entities: - - uid: 867 + - uid: 16 components: - type: Transform pos: -6.5,-3.5 parent: 1 -- proto: AirlockSecurityGlass +- proto: AirlockNfsdGlass entities: - - uid: 766 + - uid: 17 components: - type: Transform - pos: -6.5,-21.5 + pos: 3.5,-21.5 parent: 1 - type: DeviceLinkSink links: - - 486 - - uid: 767 + - 125 + - uid: 18 components: - type: Transform - pos: -2.5,-21.5 + pos: 7.5,-21.5 parent: 1 - type: DeviceLinkSink links: - - 487 - - uid: 768 + - 128 + - uid: 19 components: - type: Transform - pos: 3.5,-21.5 + pos: -6.5,-21.5 parent: 1 - type: DeviceLinkSink links: - - 488 - - uid: 769 + - 124 + - uid: 20 components: - type: Transform - pos: 7.5,-21.5 + pos: -2.5,-21.5 parent: 1 - type: DeviceLinkSink links: - - 489 -- proto: AirlockSecurityGlassLocked + - 127 +- proto: AirlockNfsdGlassLocked entities: - - uid: 140 + - uid: 21 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + - uid: 26 components: - type: Transform pos: -8.5,7.5 parent: 1 - - uid: 214 + - uid: 27 components: - type: Transform pos: 12.5,4.5 parent: 1 - - uid: 215 + - uid: 28 components: - type: Transform pos: -9.5,4.5 parent: 1 - - uid: 290 + - uid: 29 components: - type: Transform pos: -11.5,4.5 parent: 1 - - uid: 521 + - uid: 30 components: - type: Transform pos: 10.5,-2.5 parent: 1 - - uid: 626 + - uid: 31 components: - type: Transform pos: 9.5,7.5 parent: 1 - - uid: 627 + - uid: 32 components: - type: Transform pos: -9.5,-2.5 parent: 1 - - uid: 730 + - uid: 33 components: - type: Transform pos: 10.5,4.5 parent: 1 - - uid: 759 + - uid: 34 components: - type: Transform pos: -3.5,-8.5 parent: 1 - - uid: 760 + - uid: 35 components: - type: Transform pos: 4.5,-8.5 parent: 1 - proto: AmbrosiaVulgarisSeeds entities: - - uid: 919 + - uid: 36 components: - type: Transform pos: 8.492975,-18.474812 parent: 1 - proto: AmeController entities: - - uid: 384 + - uid: 37 components: - type: Transform pos: 2.5,-1.5 @@ -1024,40 +1077,38 @@ entities: AmeFuel: !type:ContainerSlot showEnts: False occludes: True - ent: 380 + ent: 38 - proto: AmeJar entities: - - uid: 380 + - uid: 38 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 384 + parent: 37 - type: Physics canCollide: False - proto: AmeShielding entities: - - uid: 371 + - uid: 39 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 372 + - uid: 40 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 374 + - uid: 41 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 375 + - uid: 42 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 376 + - uid: 43 components: - type: Transform pos: 0.5,-2.5 @@ -1065,2968 +1116,3144 @@ entities: - type: PointLight radius: 2 enabled: True - - uid: 377 + - uid: 44 components: - type: Transform pos: 1.5,-3.5 parent: 1 - - uid: 378 + - uid: 45 components: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 379 + - uid: 46 components: - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 741 + - uid: 47 components: - type: Transform pos: -0.5,-1.5 parent: 1 - proto: APCBasic entities: - - uid: 421 + - uid: 48 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 1 - - uid: 513 + - uid: 49 components: - type: Transform pos: 5.5,7.5 parent: 1 - - uid: 812 + - uid: 50 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-9.5 parent: 1 - - uid: 815 + - uid: 51 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,12.5 parent: 1 - - uid: 816 + - uid: 52 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,3.5 parent: 1 - - uid: 817 + - uid: 53 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-9.5 parent: 1 - - uid: 821 + - uid: 54 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,3.5 parent: 1 - - uid: 1125 + - uid: 55 components: - type: Transform pos: 0.5,-4.5 parent: 1 -- proto: APCBasic - entities: - - uid: 409 + - uid: 56 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-14.5 parent: 1 + - type: Apc + hasAccess: True + lastExternalState: Good + lastChargeState: Full - proto: AtmosDeviceFanTiny entities: - - uid: 25 + - uid: 57 components: - type: Transform pos: 10.5,9.5 parent: 1 - - uid: 175 + - uid: 58 components: - type: Transform pos: -3.5,-10.5 parent: 1 - - uid: 176 + - uid: 59 components: - type: Transform pos: -3.5,-11.5 parent: 1 - - uid: 177 + - uid: 60 components: - type: Transform pos: -3.5,-12.5 parent: 1 - - uid: 178 + - uid: 61 components: - type: Transform pos: 4.5,-10.5 parent: 1 - - uid: 179 + - uid: 62 components: - type: Transform pos: 4.5,-11.5 parent: 1 - - uid: 180 + - uid: 63 components: - type: Transform pos: 4.5,-12.5 parent: 1 - - uid: 201 + - uid: 64 components: - type: Transform pos: 12.5,9.5 parent: 1 - - uid: 281 + - uid: 65 components: - type: Transform pos: 13.5,7.5 parent: 1 - - uid: 282 + - uid: 66 components: - type: Transform pos: 13.5,5.5 parent: 1 - - uid: 283 + - uid: 67 components: - type: Transform pos: -9.5,9.5 parent: 1 - - uid: 284 + - uid: 68 components: - type: Transform pos: -11.5,9.5 parent: 1 - - uid: 285 + - uid: 69 components: - type: Transform pos: -12.5,7.5 parent: 1 - - uid: 286 + - uid: 70 components: - type: Transform pos: -12.5,5.5 parent: 1 - - uid: 729 + - uid: 71 components: - type: Transform pos: -11.5,2.5 parent: 1 - - uid: 752 + - uid: 72 components: - type: Transform pos: 12.5,2.5 parent: 1 + - uid: 73 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 - proto: Autolathe entities: - - uid: 724 + - uid: 75 components: - type: Transform pos: 4.5,-5.5 parent: 1 - proto: Bed entities: - - uid: 446 + - uid: 76 components: - type: Transform pos: 1.5,-25.5 parent: 1 - - uid: 458 + - uid: 77 components: - type: Transform pos: -0.5,-25.5 parent: 1 - - uid: 501 + - uid: 78 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 503 + - uid: 79 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 525 + - uid: 80 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 567 + - uid: 81 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 660 + - uid: 82 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 876 + - uid: 83 components: - type: Transform pos: -4.5,-25.5 parent: 1 - - uid: 897 + - uid: 84 components: - type: Transform pos: 5.5,-25.5 parent: 1 - proto: BedsheetMedical entities: - - uid: 698 + - uid: 85 components: - type: Transform pos: -9.5,-6.5 parent: 1 - - uid: 699 + - uid: 86 components: - type: Transform pos: -8.5,-7.5 parent: 1 - - uid: 700 + - uid: 87 components: - type: Transform pos: -7.5,-8.5 parent: 1 - proto: BedsheetSpawner entities: - - uid: 564 + - uid: 88 components: - type: Transform pos: -1.5,3.5 parent: 1 - - uid: 565 + - uid: 89 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 566 + - uid: 90 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 571 + - uid: 91 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 877 + - uid: 92 components: - type: Transform pos: -4.5,-25.5 parent: 1 - - uid: 895 + - uid: 93 components: - type: Transform pos: 1.5,-25.5 parent: 1 - - uid: 896 + - uid: 94 components: - type: Transform pos: 5.5,-25.5 parent: 1 - - uid: 898 + - uid: 95 components: - type: Transform pos: -0.5,-25.5 parent: 1 - - uid: 1372 + - uid: 96 components: - type: Transform pos: -4.5,11.5 parent: 1 - proto: BlastDoor entities: - - uid: 182 + - uid: 97 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-11.5 parent: 1 - type: DeviceLinkSink links: - - 839 - - uid: 183 + - 1413 + - uid: 98 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-10.5 parent: 1 - type: DeviceLinkSink links: - - 839 - - uid: 184 + - 1413 + - uid: 99 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-12.5 parent: 1 - type: DeviceLinkSink links: - - 837 - - uid: 185 + - 1412 + - uid: 100 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-11.5 parent: 1 - type: DeviceLinkSink links: - - 837 - - uid: 186 + - 1412 + - uid: 101 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-10.5 parent: 1 - type: DeviceLinkSink links: - - 837 - - uid: 1748 + - 1412 + - uid: 102 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-12.5 parent: 1 - type: DeviceLinkSink links: - - 839 + - 1413 - proto: BlastDoorExterior1Open entities: - - uid: 1755 + - uid: 103 components: - type: Transform pos: -0.5,-14.5 parent: 1 - - uid: 1756 + - uid: 104 components: - type: Transform pos: 0.5,-14.5 parent: 1 - - uid: 1757 + - uid: 105 components: - type: Transform pos: 1.5,-14.5 parent: 1 - - uid: 1758 + - uid: 106 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 1759 + - uid: 107 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 1760 + - uid: 108 components: - type: Transform pos: -8.5,-19.5 parent: 1 - - uid: 1761 + - uid: 109 components: - type: Transform pos: -7.5,-25.5 parent: 1 - - uid: 1762 + - uid: 110 components: - type: Transform pos: -5.5,-26.5 parent: 1 - - uid: 1763 + - uid: 111 components: - type: Transform pos: -1.5,-26.5 parent: 1 - - uid: 1764 + - uid: 112 components: - type: Transform pos: 2.5,-26.5 parent: 1 - - uid: 1765 + - uid: 113 components: - type: Transform pos: 6.5,-26.5 parent: 1 - - uid: 1766 + - uid: 114 components: - type: Transform pos: 8.5,-25.5 parent: 1 - - uid: 1767 + - uid: 115 components: - type: Transform pos: 9.5,-19.5 parent: 1 - proto: BlockGameArcadeComputerCircuitboard entities: - - uid: 890 + - uid: 117 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 889 + parent: 116 - type: Physics canCollide: False - proto: BookChemicalCompendium entities: - - uid: 590 + - uid: 118 components: - type: Transform pos: -5.0524554,-4.398542 parent: 1 - proto: BoxBeaker entities: - - uid: 734 + - uid: 119 components: - type: Transform pos: -3.2555802,-4.257917 parent: 1 - - uid: 846 + - uid: 120 components: - type: Transform pos: -3.2712052,-4.695417 parent: 1 - proto: BoxBodyBag entities: - - uid: 748 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 484 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 949 + - uid: 121 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 484 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -9.233218,-5.2219944 + parent: 1 - proto: BoxPillCanister entities: - - uid: 847 + - uid: 122 components: - type: Transform pos: -3.7712052,-4.695417 parent: 1 - proto: BoxSyringe entities: - - uid: 848 + - uid: 123 components: - type: Transform pos: -3.7555802,-4.257917 parent: 1 - proto: BrigTimer entities: - - uid: 485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-11.5 - parent: 1 - - uid: 486 + - uid: 124 components: - type: Transform - rot: 3.141592653589793 rad pos: -5.5,-21.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 766: + 19: - Start: DoorBolt - Timer: DoorBolt - Timer: Open - - uid: 487 + - uid: 125 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-21.5 + pos: 2.5,-21.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 767: + 17: - Start: DoorBolt - Timer: DoorBolt - Timer: Open - - uid: 488 + - uid: 126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-21.5 + rot: 1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -1.5,-21.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 768: - - Timer: DoorBolt + 20: - Timer: Open - Start: DoorBolt - - uid: 489 + - Timer: DoorBolt + - uid: 128 components: - type: Transform - rot: 3.141592653589793 rad pos: 6.5,-21.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 769: + 18: + - Start: DoorBolt - Timer: DoorBolt - Timer: Open - - Start: DoorBolt - proto: CableApcExtension entities: - - uid: 959 + - uid: 129 components: - type: Transform pos: -8.5,3.5 parent: 1 - - uid: 1024 + - uid: 130 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 1033 + - uid: 131 components: - type: Transform pos: -1.5,-14.5 parent: 1 - - uid: 1034 + - uid: 132 components: - type: Transform pos: -2.5,-14.5 parent: 1 - - uid: 1035 + - uid: 133 components: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 1036 + - uid: 134 components: - type: Transform pos: -0.5,-14.5 parent: 1 - - uid: 1037 + - uid: 135 components: - type: Transform pos: 0.5,-14.5 parent: 1 - - uid: 1038 + - uid: 136 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 1039 + - uid: 137 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 1040 + - uid: 138 components: - type: Transform pos: -2.5,-15.5 parent: 1 - - uid: 1041 + - uid: 139 components: - type: Transform pos: -2.5,-16.5 parent: 1 - - uid: 1042 + - uid: 140 components: - type: Transform pos: -2.5,-17.5 parent: 1 - - uid: 1043 + - uid: 141 components: - type: Transform pos: -2.5,-18.5 parent: 1 - - uid: 1044 + - uid: 142 components: - type: Transform pos: -2.5,-19.5 parent: 1 - - uid: 1045 + - uid: 143 components: - type: Transform pos: -2.5,-20.5 parent: 1 - - uid: 1046 + - uid: 144 components: - type: Transform pos: -2.5,-21.5 parent: 1 - - uid: 1047 + - uid: 145 components: - type: Transform pos: -2.5,-22.5 parent: 1 - - uid: 1048 + - uid: 146 components: - type: Transform pos: -2.5,-23.5 parent: 1 - - uid: 1049 + - uid: 147 components: - type: Transform pos: -2.5,-24.5 parent: 1 - - uid: 1050 + - uid: 148 components: - type: Transform pos: -1.5,-25.5 parent: 1 - - uid: 1051 + - uid: 149 components: - type: Transform pos: -5.5,-24.5 parent: 1 - - uid: 1052 + - uid: 150 components: - type: Transform pos: -4.5,-24.5 parent: 1 - - uid: 1053 + - uid: 151 components: - type: Transform pos: -3.5,-24.5 parent: 1 - - uid: 1054 + - uid: 152 components: - type: Transform pos: -2.5,-24.5 parent: 1 - - uid: 1055 + - uid: 153 components: - type: Transform pos: -1.5,-24.5 parent: 1 - - uid: 1056 + - uid: 154 components: - type: Transform pos: -0.5,-24.5 parent: 1 - - uid: 1057 + - uid: 155 components: - type: Transform pos: 0.5,-24.5 parent: 1 - - uid: 1058 + - uid: 156 components: - type: Transform pos: 1.5,-24.5 parent: 1 - - uid: 1059 + - uid: 157 components: - type: Transform pos: 2.5,-24.5 parent: 1 - - uid: 1060 + - uid: 158 components: - type: Transform pos: 3.5,-24.5 parent: 1 - - uid: 1061 + - uid: 159 components: - type: Transform pos: 4.5,-24.5 parent: 1 - - uid: 1062 + - uid: 160 components: - type: Transform pos: 5.5,-24.5 parent: 1 - - uid: 1063 + - uid: 161 components: - type: Transform pos: 6.5,-24.5 parent: 1 - - uid: 1064 + - uid: 162 components: - type: Transform pos: -8.5,-25.5 parent: 1 - - uid: 1065 + - uid: 163 components: - type: Transform pos: -3.5,-19.5 parent: 1 - - uid: 1066 + - uid: 164 components: - type: Transform pos: -4.5,-19.5 parent: 1 - - uid: 1067 + - uid: 165 components: - type: Transform pos: -5.5,-19.5 parent: 1 - - uid: 1068 + - uid: 166 components: - type: Transform pos: -6.5,-19.5 parent: 1 - - uid: 1069 + - uid: 167 components: - type: Transform pos: -7.5,-19.5 parent: 1 - - uid: 1070 + - uid: 168 components: - type: Transform pos: -8.5,-19.5 parent: 1 - - uid: 1071 + - uid: 169 components: - type: Transform pos: -1.5,-19.5 parent: 1 - - uid: 1072 + - uid: 170 components: - type: Transform pos: -0.5,-19.5 parent: 1 - - uid: 1073 + - uid: 171 components: - type: Transform pos: 0.5,-19.5 parent: 1 - - uid: 1074 + - uid: 172 components: - type: Transform pos: 1.5,-19.5 parent: 1 - - uid: 1075 + - uid: 173 components: - type: Transform pos: 2.5,-19.5 parent: 1 - - uid: 1076 + - uid: 174 components: - type: Transform pos: 3.5,-19.5 parent: 1 - - uid: 1077 + - uid: 175 components: - type: Transform pos: 4.5,-19.5 parent: 1 - - uid: 1078 + - uid: 176 components: - type: Transform pos: 5.5,-19.5 parent: 1 - - uid: 1079 + - uid: 177 components: - type: Transform pos: 6.5,-19.5 parent: 1 - - uid: 1080 + - uid: 178 components: - type: Transform pos: 7.5,-19.5 parent: 1 - - uid: 1081 + - uid: 179 components: - type: Transform pos: 8.5,-19.5 parent: 1 - - uid: 1082 + - uid: 180 components: - type: Transform pos: 9.5,-19.5 parent: 1 - - uid: 1083 + - uid: 181 components: - type: Transform pos: 3.5,-18.5 parent: 1 - - uid: 1084 + - uid: 182 components: - type: Transform pos: 3.5,-17.5 parent: 1 - - uid: 1085 + - uid: 183 components: - type: Transform pos: 3.5,-16.5 parent: 1 - - uid: 1086 + - uid: 184 components: - type: Transform pos: 3.5,-15.5 parent: 1 - - uid: 1087 + - uid: 185 components: - type: Transform pos: 3.5,-14.5 parent: 1 - - uid: 1088 + - uid: 186 components: - type: Transform pos: 3.5,-13.5 parent: 1 - - uid: 1089 + - uid: 187 components: - type: Transform pos: -0.5,-20.5 parent: 1 - - uid: 1090 + - uid: 188 components: - type: Transform pos: -0.5,-21.5 parent: 1 - - uid: 1091 + - uid: 189 components: - type: Transform pos: 1.5,-20.5 parent: 1 - - uid: 1092 + - uid: 190 components: - type: Transform pos: 1.5,-21.5 parent: 1 - - uid: 1093 + - uid: 191 components: - type: Transform pos: 5.5,-20.5 parent: 1 - - uid: 1094 + - uid: 192 components: - type: Transform pos: 5.5,-21.5 parent: 1 - - uid: 1095 + - uid: 193 components: - type: Transform pos: -6.5,-25.5 parent: 1 - - uid: 1096 + - uid: 194 components: - type: Transform pos: -7.5,-25.5 parent: 1 - - uid: 1097 + - uid: 195 components: - type: Transform pos: -5.5,-25.5 parent: 1 - - uid: 1098 + - uid: 196 components: - type: Transform pos: -5.5,-26.5 parent: 1 - - uid: 1099 + - uid: 197 components: - type: Transform pos: -1.5,-26.5 parent: 1 - - uid: 1100 + - uid: 198 components: - type: Transform pos: 2.5,-25.5 parent: 1 - - uid: 1101 + - uid: 199 components: - type: Transform pos: 2.5,-26.5 parent: 1 - - uid: 1102 + - uid: 200 components: - type: Transform pos: 6.5,-25.5 parent: 1 - - uid: 1103 + - uid: 201 components: - type: Transform pos: 6.5,-26.5 parent: 1 - - uid: 1104 + - uid: 202 components: - type: Transform pos: 7.5,-25.5 parent: 1 - - uid: 1105 + - uid: 203 components: - type: Transform pos: 8.5,-25.5 parent: 1 - - uid: 1106 + - uid: 204 components: - type: Transform pos: -8.5,-24.5 parent: 1 - - uid: 1107 + - uid: 205 components: - type: Transform pos: -8.5,-23.5 parent: 1 - - uid: 1108 + - uid: 206 components: - type: Transform pos: -8.5,-22.5 parent: 1 - - uid: 1109 + - uid: 207 components: - type: Transform pos: -5.5,-27.5 parent: 1 - - uid: 1110 + - uid: 208 components: - type: Transform pos: -4.5,-27.5 parent: 1 - - uid: 1111 + - uid: 209 components: - type: Transform pos: -3.5,-27.5 parent: 1 - - uid: 1112 + - uid: 210 components: - type: Transform pos: -2.5,-27.5 parent: 1 - - uid: 1113 + - uid: 211 components: - type: Transform pos: -2.5,-28.5 parent: 1 - - uid: 1114 + - uid: 212 components: - type: Transform pos: -1.5,-28.5 parent: 1 - - uid: 1115 + - uid: 213 components: - type: Transform pos: -0.5,-28.5 parent: 1 - - uid: 1116 + - uid: 214 components: - type: Transform pos: -0.5,-29.5 parent: 1 - - uid: 1117 + - uid: 215 components: - type: Transform pos: 1.5,-29.5 parent: 1 - - uid: 1118 + - uid: 216 components: - type: Transform pos: 1.5,-28.5 parent: 1 - - uid: 1119 + - uid: 217 components: - type: Transform pos: 2.5,-28.5 parent: 1 - - uid: 1120 + - uid: 218 components: - type: Transform pos: 3.5,-28.5 parent: 1 - - uid: 1121 + - uid: 219 components: - type: Transform pos: 3.5,-27.5 parent: 1 - - uid: 1122 + - uid: 220 components: - type: Transform pos: 4.5,-27.5 parent: 1 - - uid: 1123 + - uid: 221 components: - type: Transform pos: 5.5,-27.5 parent: 1 - - uid: 1124 + - uid: 222 components: - type: Transform pos: 6.5,-27.5 parent: 1 - - uid: 1126 + - uid: 223 components: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 1128 + - uid: 224 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 1131 + - uid: 225 components: - type: Transform pos: 0.5,-7.5 parent: 1 - - uid: 1132 + - uid: 226 components: - type: Transform pos: 0.5,-8.5 parent: 1 - - uid: 1135 + - uid: 227 components: - type: Transform pos: 1.5,-11.5 parent: 1 - - uid: 1136 + - uid: 228 components: - type: Transform pos: -2.5,-11.5 parent: 1 - - uid: 1137 + - uid: 229 components: - type: Transform pos: -1.5,-11.5 parent: 1 - - uid: 1138 + - uid: 230 components: - type: Transform pos: -0.5,-11.5 parent: 1 - - uid: 1139 + - uid: 231 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 1140 + - uid: 232 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 1141 + - uid: 233 components: - type: Transform pos: 0.5,-9.5 parent: 1 - - uid: 1142 + - uid: 234 components: - type: Transform pos: 2.5,-11.5 parent: 1 - - uid: 1143 + - uid: 235 components: - type: Transform pos: 3.5,-11.5 parent: 1 - - uid: 1144 + - uid: 236 components: - type: Transform pos: -0.5,-7.5 parent: 1 - - uid: 1145 + - uid: 237 components: - type: Transform pos: 1.5,-7.5 parent: 1 - - uid: 1146 + - uid: 238 components: - type: Transform pos: -1.5,-7.5 parent: 1 - - uid: 1147 + - uid: 239 components: - type: Transform pos: 2.5,-7.5 parent: 1 - - uid: 1148 + - uid: 240 components: - type: Transform pos: 5.5,-9.5 parent: 1 - - uid: 1149 + - uid: 241 components: - type: Transform pos: 5.5,-8.5 parent: 1 - - uid: 1150 + - uid: 242 components: - type: Transform pos: 5.5,-7.5 parent: 1 - - uid: 1151 + - uid: 243 components: - type: Transform pos: 5.5,-6.5 parent: 1 - - uid: 1152 + - uid: 244 components: - type: Transform pos: 5.5,-5.5 parent: 1 - - uid: 1153 + - uid: 245 components: - type: Transform pos: 5.5,-4.5 parent: 1 - - uid: 1154 + - uid: 246 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 1155 + - uid: 247 components: - type: Transform pos: 7.5,-4.5 parent: 1 - - uid: 1156 + - uid: 248 components: - type: Transform pos: 8.5,-4.5 parent: 1 - - uid: 1157 + - uid: 249 components: - type: Transform pos: 9.5,-4.5 parent: 1 - - uid: 1158 + - uid: 250 components: - type: Transform pos: 10.5,-4.5 parent: 1 - - uid: 1159 + - uid: 251 components: - type: Transform pos: 6.5,-7.5 parent: 1 - - uid: 1160 + - uid: 252 components: - type: Transform pos: 7.5,-7.5 parent: 1 - - uid: 1161 + - uid: 253 components: - type: Transform pos: 8.5,-7.5 parent: 1 - - uid: 1162 + - uid: 254 components: - type: Transform pos: 6.5,-3.5 parent: 1 - - uid: 1163 + - uid: 255 components: - type: Transform pos: 9.5,3.5 parent: 1 - - uid: 1164 + - uid: 256 components: - type: Transform pos: 10.5,3.5 parent: 1 - - uid: 1165 - components: - - type: Transform - pos: 11.5,2.5 - parent: 1 - - uid: 1166 + - uid: 257 components: - type: Transform pos: 11.5,1.5 parent: 1 - - uid: 1167 + - uid: 258 components: - type: Transform pos: 11.5,0.5 parent: 1 - - uid: 1168 + - uid: 259 components: - type: Transform pos: 11.5,-0.5 parent: 1 - - uid: 1169 + - uid: 260 components: - type: Transform pos: 11.5,-1.5 parent: 1 - - uid: 1170 + - uid: 261 components: - type: Transform pos: 10.5,4.5 parent: 1 - - uid: 1171 + - uid: 262 components: - type: Transform pos: 10.5,5.5 parent: 1 - - uid: 1172 + - uid: 263 components: - type: Transform pos: 10.5,6.5 parent: 1 - - uid: 1173 + - uid: 264 components: - type: Transform pos: 10.5,7.5 parent: 1 - - uid: 1174 + - uid: 265 components: - type: Transform pos: 11.5,7.5 parent: 1 - - uid: 1175 + - uid: 266 components: - type: Transform pos: 12.5,7.5 parent: 1 - - uid: 1176 + - uid: 267 components: - type: Transform pos: 12.5,6.5 parent: 1 - - uid: 1177 + - uid: 268 components: - type: Transform pos: 12.5,5.5 parent: 1 - - uid: 1178 + - uid: 269 components: - type: Transform pos: 12.5,4.5 parent: 1 - - uid: 1179 + - uid: 270 components: - type: Transform pos: 12.5,3.5 parent: 1 - - uid: 1180 + - uid: 271 components: - type: Transform pos: -9.5,3.5 parent: 1 - - uid: 1181 + - uid: 272 components: - type: Transform pos: 11.5,-4.5 parent: 1 - - uid: 1183 + - uid: 273 components: - type: Transform pos: -10.5,3.5 parent: 1 - - uid: 1184 - components: - - type: Transform - pos: -10.5,2.5 - parent: 1 - - uid: 1185 + - uid: 274 components: - type: Transform pos: 11.5,-5.5 parent: 1 - - uid: 1186 + - uid: 275 components: - type: Transform pos: 11.5,3.5 parent: 1 - - uid: 1187 + - uid: 276 components: - type: Transform pos: -9.5,4.5 parent: 1 - - uid: 1188 + - uid: 277 components: - type: Transform pos: -9.5,5.5 parent: 1 - - uid: 1189 + - uid: 278 components: - type: Transform pos: -9.5,6.5 parent: 1 - - uid: 1190 + - uid: 279 components: - type: Transform pos: -9.5,7.5 parent: 1 - - uid: 1191 + - uid: 280 components: - type: Transform pos: -10.5,7.5 parent: 1 - - uid: 1192 + - uid: 281 components: - type: Transform pos: -11.5,7.5 parent: 1 - - uid: 1193 + - uid: 282 components: - type: Transform pos: -11.5,6.5 parent: 1 - - uid: 1194 + - uid: 283 components: - type: Transform pos: -11.5,5.5 parent: 1 - - uid: 1195 + - uid: 284 components: - type: Transform pos: -11.5,4.5 parent: 1 - - uid: 1196 + - uid: 285 components: - type: Transform pos: -11.5,3.5 parent: 1 - - uid: 1197 + - uid: 286 components: - type: Transform pos: 5.5,7.5 parent: 1 - - uid: 1198 + - uid: 287 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 1199 + - uid: 288 components: - type: Transform pos: 6.5,6.5 parent: 1 - - uid: 1200 + - uid: 289 components: - type: Transform pos: 7.5,6.5 parent: 1 - - uid: 1201 + - uid: 290 components: - type: Transform pos: 8.5,6.5 parent: 1 - - uid: 1202 + - uid: 291 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 1203 + - uid: 292 components: - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 1204 + - uid: 293 components: - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 1205 + - uid: 294 components: - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 1206 + - uid: 295 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 1207 + - uid: 296 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 1208 + - uid: 297 components: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 1209 + - uid: 298 components: - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 1210 + - uid: 299 components: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 1211 + - uid: 300 components: - type: Transform pos: -3.5,5.5 parent: 1 - - uid: 1212 + - uid: 301 components: - type: Transform pos: -4.5,5.5 parent: 1 - - uid: 1213 + - uid: 302 components: - type: Transform pos: -5.5,5.5 parent: 1 - - uid: 1214 + - uid: 303 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 1215 + - uid: 304 components: - type: Transform pos: -5.5,7.5 parent: 1 - - uid: 1216 + - uid: 305 components: - type: Transform pos: -6.5,7.5 parent: 1 - - uid: 1217 + - uid: 306 components: - type: Transform pos: 2.5,6.5 parent: 1 - - uid: 1218 + - uid: 307 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 1219 + - uid: 308 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 1220 + - uid: 309 components: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 1221 + - uid: 310 components: - type: Transform pos: 2.5,10.5 parent: 1 - - uid: 1222 + - uid: 311 components: - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 1223 + - uid: 312 components: - type: Transform pos: 4.5,10.5 parent: 1 - - uid: 1224 + - uid: 313 components: - type: Transform pos: 6.5,10.5 parent: 1 - - uid: 1225 + - uid: 314 components: - type: Transform pos: 8.5,9.5 parent: 1 - - uid: 1226 + - uid: 315 components: - type: Transform pos: 7.5,9.5 parent: 1 - - uid: 1227 + - uid: 316 components: - type: Transform pos: 8.5,7.5 parent: 1 - - uid: 1228 + - uid: 317 components: - type: Transform pos: 8.5,8.5 parent: 1 - - uid: 1229 + - uid: 318 components: - type: Transform pos: -6.5,8.5 parent: 1 - - uid: 1230 + - uid: 319 components: - type: Transform pos: -6.5,9.5 parent: 1 - - uid: 1231 + - uid: 320 components: - type: Transform pos: -7.5,9.5 parent: 1 - - uid: 1232 + - uid: 321 components: - type: Transform pos: -10.5,-1.5 parent: 1 - - uid: 1233 + - uid: 322 components: - type: Transform pos: -10.5,-0.5 parent: 1 - - uid: 1234 + - uid: 323 components: - type: Transform pos: -10.5,0.5 parent: 1 - - uid: 1235 + - uid: 324 components: - type: Transform pos: -10.5,1.5 parent: 1 - - uid: 1236 + - uid: 325 components: - type: Transform pos: 7.5,-8.5 parent: 1 - - uid: 1237 + - uid: 326 components: - type: Transform pos: 7.5,-9.5 parent: 1 - - uid: 1238 + - uid: 327 components: - type: Transform pos: 6.5,-9.5 parent: 1 - - uid: 1239 + - uid: 328 components: - type: Transform pos: -4.5,-9.5 parent: 1 - - uid: 1240 + - uid: 329 components: - type: Transform pos: -4.5,-8.5 parent: 1 - - uid: 1241 + - uid: 330 components: - type: Transform pos: -4.5,-7.5 parent: 1 - - uid: 1242 + - uid: 331 components: - type: Transform pos: -5.5,-7.5 parent: 1 - - uid: 1243 + - uid: 332 components: - type: Transform pos: -6.5,-7.5 parent: 1 - - uid: 1244 + - uid: 333 components: - type: Transform pos: -7.5,-7.5 parent: 1 - - uid: 1245 + - uid: 334 components: - type: Transform pos: -7.5,-6.5 parent: 1 - - uid: 1246 + - uid: 335 components: - type: Transform pos: -7.5,-5.5 parent: 1 - - uid: 1247 + - uid: 336 components: - type: Transform pos: -7.5,-4.5 parent: 1 - - uid: 1248 + - uid: 337 components: - type: Transform pos: -7.5,-3.5 parent: 1 - - uid: 1249 + - uid: 338 components: - type: Transform pos: -8.5,-5.5 parent: 1 - - uid: 1250 + - uid: 339 components: - type: Transform pos: -9.5,-5.5 parent: 1 - - uid: 1251 + - uid: 340 components: - type: Transform pos: -10.5,-5.5 parent: 1 - - uid: 1252 + - uid: 341 components: - type: Transform pos: -10.5,-4.5 parent: 1 - - uid: 1253 + - uid: 342 components: - type: Transform pos: -5.5,-9.5 parent: 1 - - uid: 1254 + - uid: 343 components: - type: Transform pos: -6.5,-9.5 parent: 1 - - uid: 1255 + - uid: 344 components: - type: Transform pos: -6.5,-5.5 parent: 1 - - uid: 1256 + - uid: 345 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 1257 + - uid: 346 components: - type: Transform pos: -6.5,-3.5 parent: 1 - - uid: 1258 + - uid: 347 components: - type: Transform pos: -5.5,-3.5 parent: 1 - - uid: 1259 + - uid: 348 components: - type: Transform pos: -4.5,-3.5 parent: 1 - - uid: 1260 + - uid: 349 components: - type: Transform pos: -3.5,-3.5 parent: 1 - - uid: 1261 + - uid: 350 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 1279 + - uid: 351 components: - type: Transform pos: 0.5,11.5 parent: 1 - - uid: 1280 + - uid: 352 components: - type: Transform pos: -0.5,11.5 parent: 1 - - uid: 1281 + - uid: 353 components: - type: Transform pos: -1.5,11.5 parent: 1 - - uid: 1282 + - uid: 354 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 1283 + - uid: 355 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 1284 + - uid: 356 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 1285 + - uid: 357 components: - type: Transform pos: -4.5,10.5 parent: 1 - - uid: 1286 + - uid: 358 components: - type: Transform pos: -4.5,9.5 parent: 1 - - uid: 1287 + - uid: 359 components: - type: Transform pos: -3.5,9.5 parent: 1 - - uid: 1288 + - uid: 360 components: - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 1289 + - uid: 361 components: - type: Transform pos: -1.5,9.5 parent: 1 - - uid: 1290 + - uid: 362 components: - type: Transform pos: -5.5,10.5 parent: 1 - - uid: 1291 + - uid: 363 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 1292 + - uid: 364 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 1293 + - uid: 365 components: - type: Transform pos: -0.5,14.5 parent: 1 - - uid: 1294 + - uid: 366 components: - type: Transform pos: -0.5,15.5 parent: 1 - - uid: 1295 + - uid: 367 components: - type: Transform pos: 1.5,15.5 parent: 1 - - uid: 1296 + - uid: 368 components: - type: Transform pos: 1.5,14.5 parent: 1 - - uid: 1297 + - uid: 369 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 1298 + - uid: 370 components: - type: Transform pos: 0.5,16.5 parent: 1 - - uid: 1299 + - uid: 371 components: - type: Transform pos: 0.5,17.5 parent: 1 - - uid: 1300 + - uid: 372 components: - type: Transform pos: -0.5,17.5 parent: 1 - - uid: 1301 + - uid: 373 components: - type: Transform pos: -1.5,17.5 parent: 1 - - uid: 1302 + - uid: 374 components: - type: Transform pos: -1.5,16.5 parent: 1 - - uid: 1303 + - uid: 375 components: - type: Transform pos: -2.5,16.5 parent: 1 - - uid: 1304 + - uid: 376 components: - type: Transform pos: -2.5,15.5 parent: 1 - - uid: 1305 + - uid: 377 components: - type: Transform pos: 1.5,17.5 parent: 1 - - uid: 1306 + - uid: 378 components: - type: Transform pos: 2.5,17.5 parent: 1 - - uid: 1307 + - uid: 379 components: - type: Transform pos: 2.5,16.5 parent: 1 - - uid: 1308 + - uid: 380 components: - type: Transform pos: 3.5,16.5 parent: 1 - - uid: 1309 + - uid: 381 components: - type: Transform pos: 3.5,15.5 parent: 1 - - uid: 1310 + - uid: 382 components: - type: Transform pos: 0.5,15.5 parent: 1 - - uid: 1311 + - uid: 383 components: - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 1312 + - uid: 384 components: - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 1313 + - uid: 385 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 1314 + - uid: 386 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 1315 + - uid: 387 components: - type: Transform - pos: 3.5,-0.5 + pos: 10.5,2.5 parent: 1 - - uid: 1316 + - uid: 388 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 1317 + - uid: 389 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 1318 + - uid: 390 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 1319 + - uid: 391 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 1320 + - uid: 392 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 1321 + - uid: 393 components: - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 1322 + - uid: 394 components: - type: Transform pos: -1.5,-2.5 parent: 1 - - uid: 1323 + - uid: 395 components: - type: Transform pos: -1.5,-3.5 parent: 1 - - uid: 1324 + - uid: 396 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 1325 + - uid: 397 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 1326 + - uid: 398 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 1327 + - uid: 399 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 1328 + - uid: 400 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 1329 + - uid: 401 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 1330 + - uid: 402 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 1331 + - uid: 403 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 1332 + - uid: 404 components: - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 1333 + - uid: 405 components: - type: Transform - pos: -0.5,1.5 + pos: 7.5,1.5 parent: 1 - - uid: 1334 + - uid: 406 components: - type: Transform - pos: -1.5,1.5 - parent: 1 - - uid: 1378 - components: - - type: Transform - pos: -2.5,-0.5 + pos: -5.5,2.5 parent: 1 - - uid: 1381 + - uid: 407 components: - type: Transform - pos: -2.5,1.5 + pos: 6.5,2.5 parent: 1 - - uid: 1382 + - uid: 408 components: - type: Transform - pos: -2.5,2.5 + pos: 3.5,-0.5 parent: 1 - - uid: 1383 + - uid: 409 components: - type: Transform - pos: -3.5,2.5 + pos: 5.5,-0.5 parent: 1 - - uid: 1384 + - uid: 410 components: - type: Transform - pos: -4.5,2.5 + pos: 6.5,-0.5 parent: 1 - - uid: 1385 + - uid: 411 components: - type: Transform - pos: -5.5,2.5 + pos: 7.5,-0.5 parent: 1 - - uid: 1386 + - uid: 412 components: - type: Transform - pos: -5.5,3.5 + pos: 7.5,-1.5 parent: 1 - - uid: 1387 + - uid: 413 components: - type: Transform - pos: -6.5,3.5 + pos: 8.5,-1.5 parent: 1 - - uid: 1388 + - uid: 414 components: - type: Transform - pos: -7.5,3.5 + pos: -4.5,-0.5 parent: 1 - - uid: 1389 + - uid: 415 components: - type: Transform - pos: 3.5,1.5 + pos: -5.5,-0.5 parent: 1 - - uid: 1390 + - uid: 416 components: - type: Transform - pos: 3.5,2.5 + pos: -6.5,-0.5 parent: 1 - - uid: 1391 + - uid: 417 components: - type: Transform - pos: 4.5,2.5 + pos: -6.5,-1.5 parent: 1 - - uid: 1392 + - uid: 418 components: - type: Transform - pos: 5.5,2.5 + pos: -7.5,-1.5 parent: 1 - - uid: 1393 + - uid: 419 components: - type: Transform - pos: 6.5,2.5 + pos: 6.5,-2.5 parent: 1 - - uid: 1394 + - uid: 420 components: - type: Transform - pos: 6.5,3.5 + pos: 5.5,-2.5 parent: 1 - - uid: 1395 + - uid: 421 components: - type: Transform - pos: 7.5,3.5 + pos: 4.5,-2.5 parent: 1 - - uid: 1396 + - uid: 422 components: - type: Transform - pos: 8.5,3.5 + pos: -9.5,1.5 parent: 1 - - uid: 1397 + - uid: 423 components: - type: Transform - pos: 4.5,-0.5 + pos: -3.5,0.5 parent: 1 - - uid: 1398 + - uid: 424 components: - type: Transform - pos: 5.5,-0.5 + pos: 10.5,1.5 parent: 1 - - uid: 1399 + - uid: 425 components: - type: Transform - pos: 6.5,-0.5 + pos: 8.5,1.5 parent: 1 - - uid: 1400 + - uid: 426 components: - type: Transform - pos: 6.5,-1.5 + pos: 5.5,0.5 parent: 1 - - uid: 1401 + - uid: 427 components: - type: Transform - pos: 7.5,-1.5 + pos: -9.5,2.5 parent: 1 - - uid: 1402 + - uid: 428 components: - type: Transform - pos: 8.5,-1.5 + pos: 6.5,1.5 parent: 1 - - uid: 1403 + - uid: 429 components: - type: Transform - pos: -3.5,-0.5 + pos: 4.5,1.5 parent: 1 - - uid: 1404 + - uid: 430 components: - type: Transform - pos: -4.5,-0.5 + pos: 5.5,1.5 parent: 1 - - uid: 1405 + - uid: 431 components: - type: Transform - pos: -5.5,-0.5 + pos: -8.5,1.5 parent: 1 - - uid: 1406 + - uid: 432 components: - type: Transform - pos: -5.5,-1.5 + pos: -7.5,1.5 parent: 1 - - uid: 1407 + - uid: 433 components: - type: Transform - pos: -6.5,-1.5 + pos: -6.5,1.5 parent: 1 - - uid: 1408 + - uid: 434 components: - type: Transform - pos: -7.5,-1.5 + pos: -5.5,1.5 parent: 1 - - uid: 1410 + - uid: 435 components: - type: Transform - pos: 6.5,-2.5 + pos: -4.5,1.5 parent: 1 - - uid: 1411 + - uid: 436 components: - type: Transform - pos: 5.5,-2.5 + pos: -4.5,0.5 parent: 1 - - uid: 1412 + - uid: 437 components: - type: Transform - pos: 4.5,-2.5 + pos: 9.5,1.5 parent: 1 - proto: CableHV entities: - - uid: 385 + - uid: 438 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 386 + - uid: 439 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 387 + - uid: 440 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 947 + - uid: 441 components: - type: Transform pos: -1.5,-0.5 parent: 1 - - uid: 948 + - uid: 442 components: - type: Transform pos: -0.5,-0.5 parent: 1 - - uid: 951 + - uid: 443 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 1728 + - uid: 444 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 1729 + - uid: 445 components: - type: Transform pos: 1.5,-0.5 parent: 1 - proto: CableMV entities: - - uid: 562 + - uid: 446 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - uid: 451 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 653 + - uid: 452 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 665 + - uid: 453 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 666 + - uid: 454 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 667 + - uid: 455 components: - type: Transform - pos: 2.5,-2.5 + pos: 1.5,-3.5 parent: 1 - - uid: 668 + - uid: 456 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 670 + - uid: 457 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 962 + - uid: 458 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 963 + - uid: 459 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 964 + - uid: 460 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 965 + - uid: 461 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 966 + - uid: 462 components: - type: Transform pos: 0.5,5.5 parent: 1 - - uid: 967 + - uid: 463 components: - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 968 + - uid: 464 components: - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 969 + - uid: 465 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 970 + - uid: 466 components: - type: Transform pos: 0.5,9.5 parent: 1 - - uid: 971 + - uid: 467 components: - type: Transform pos: 0.5,10.5 parent: 1 - - uid: 972 + - uid: 468 components: - type: Transform pos: 0.5,11.5 parent: 1 - - uid: 973 + - uid: 469 components: - type: Transform pos: 0.5,12.5 parent: 1 - - uid: 974 + - uid: 470 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 975 + - uid: 471 components: - type: Transform - pos: 2.5,-4.5 + pos: 1.5,-2.5 parent: 1 - - uid: 976 + - uid: 472 components: - type: Transform - pos: 2.5,-5.5 + pos: 1.5,-1.5 parent: 1 - - uid: 977 + - uid: 473 components: - type: Transform - pos: 2.5,-6.5 + pos: 3.5,-9.5 parent: 1 - - uid: 978 + - uid: 474 components: - type: Transform - pos: 1.5,-6.5 + pos: 3.5,-10.5 parent: 1 - - uid: 979 + - uid: 475 components: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 980 - components: - - type: Transform - pos: -0.5,-6.5 - parent: 1 - - uid: 981 - components: - - type: Transform - pos: -1.5,-6.5 - parent: 1 - - uid: 983 + - uid: 476 components: - type: Transform - pos: -3.5,-6.5 + pos: 2.5,-10.5 parent: 1 - - uid: 984 + - uid: 477 components: - type: Transform pos: -4.5,-6.5 parent: 1 - - uid: 985 + - uid: 478 components: - type: Transform pos: -4.5,-7.5 parent: 1 - - uid: 986 + - uid: 479 components: - type: Transform pos: -4.5,-8.5 parent: 1 - - uid: 987 + - uid: 480 components: - type: Transform pos: -4.5,-9.5 parent: 1 - - uid: 988 + - uid: 481 components: - type: Transform - pos: 3.5,-6.5 + pos: 3.5,-8.5 parent: 1 - - uid: 989 + - uid: 482 components: - type: Transform - pos: 4.5,-6.5 + pos: 4.5,-8.5 parent: 1 - - uid: 990 + - uid: 483 components: - type: Transform pos: 5.5,-6.5 parent: 1 - - uid: 991 + - uid: 484 components: - type: Transform pos: 5.5,-7.5 parent: 1 - - uid: 992 + - uid: 485 components: - type: Transform pos: 5.5,-8.5 parent: 1 - - uid: 993 + - uid: 486 components: - type: Transform pos: 5.5,-9.5 parent: 1 - - uid: 994 + - uid: 487 components: - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 995 + - uid: 488 components: - type: Transform pos: -1.5,6.5 parent: 1 - - uid: 996 + - uid: 489 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 997 + - uid: 490 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 998 + - uid: 491 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 999 + - uid: 492 components: - type: Transform pos: -5.5,6.5 parent: 1 - - uid: 1000 + - uid: 493 components: - type: Transform pos: -6.5,6.5 parent: 1 - - uid: 1001 + - uid: 494 components: - type: Transform pos: -7.5,6.5 parent: 1 - - uid: 1002 + - uid: 495 components: - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 1003 + - uid: 496 components: - type: Transform pos: -9.5,6.5 parent: 1 - - uid: 1004 + - uid: 497 components: - type: Transform pos: -9.5,5.5 parent: 1 - - uid: 1005 + - uid: 498 components: - type: Transform pos: -9.5,4.5 parent: 1 - - uid: 1006 + - uid: 499 components: - type: Transform pos: -9.5,3.5 parent: 1 - - uid: 1007 + - uid: 500 components: - type: Transform pos: -8.5,3.5 parent: 1 - - uid: 1008 + - uid: 501 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 1009 + - uid: 502 components: - type: Transform pos: 2.5,6.5 parent: 1 - - uid: 1010 + - uid: 503 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 1011 + - uid: 504 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 1012 + - uid: 505 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 + - uid: 521 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 522 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 523 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - uid: 525 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 530 components: - type: Transform - pos: 5.5,6.5 + pos: 1.5,-10.5 parent: 1 - - uid: 1013 + - uid: 531 components: - type: Transform - pos: 6.5,6.5 + pos: -9.5,-5.5 parent: 1 - - uid: 1014 + - uid: 532 components: - type: Transform - pos: 7.5,6.5 + pos: -7.5,-6.5 parent: 1 - - uid: 1015 + - uid: 533 components: - type: Transform - pos: 8.5,6.5 + pos: -8.5,-6.5 parent: 1 - - uid: 1016 + - uid: 534 components: - type: Transform - pos: 9.5,6.5 + pos: -9.5,-6.5 parent: 1 - - uid: 1017 + - uid: 535 components: - type: Transform - pos: 10.5,6.5 + pos: -6.5,-6.5 parent: 1 - - uid: 1018 + - uid: 536 components: - type: Transform - pos: 10.5,5.5 + pos: -9.5,-4.5 parent: 1 - - uid: 1019 + - uid: 537 components: - type: Transform - pos: 10.5,4.5 + pos: -9.5,-3.5 parent: 1 - - uid: 1020 + - uid: 538 components: - type: Transform - pos: 10.5,3.5 + pos: -9.5,-2.5 parent: 1 - - uid: 1021 + - uid: 539 components: - type: Transform - pos: 9.5,3.5 + pos: -9.5,-1.5 parent: 1 - - uid: 1022 + - uid: 540 components: - type: Transform - pos: 0.5,-7.5 + pos: -9.5,-0.5 parent: 1 - - uid: 1023 + - uid: 541 components: - type: Transform - pos: 0.5,-8.5 + pos: -9.5,0.5 parent: 1 - - uid: 1025 + - uid: 542 components: - type: Transform - pos: 0.5,-10.5 + pos: -9.5,1.5 parent: 1 - - uid: 1026 + - uid: 543 components: - type: Transform - pos: 0.5,-11.5 + pos: -9.5,2.5 parent: 1 - - uid: 1027 + - uid: 544 components: - type: Transform - pos: 0.5,-12.5 + pos: 10.5,2.5 parent: 1 - - uid: 1028 + - uid: 545 components: - type: Transform - pos: 0.5,-13.5 + pos: 10.5,1.5 parent: 1 - - uid: 1029 + - uid: 546 components: - type: Transform - pos: 0.5,-14.5 + pos: 10.5,0.5 parent: 1 - - uid: 1030 + - uid: 547 components: - type: Transform - pos: 0.5,-15.5 + pos: 10.5,-0.5 parent: 1 - - uid: 1031 + - uid: 548 components: - type: Transform - pos: -0.5,-14.5 + pos: 10.5,-1.5 parent: 1 - - uid: 1032 + - uid: 549 components: - type: Transform - pos: -1.5,-14.5 + pos: 10.5,-2.5 parent: 1 - - uid: 1127 + - uid: 550 components: - type: Transform - pos: 0.5,-4.5 + pos: 10.5,-3.5 parent: 1 - - uid: 1129 + - uid: 551 components: - type: Transform - pos: 0.5,-5.5 + pos: 10.5,-4.5 parent: 1 - - uid: 1130 + - uid: 552 components: - type: Transform - pos: 0.5,-6.5 + pos: 10.5,-5.5 parent: 1 - - uid: 1133 + - uid: 553 components: - type: Transform - pos: 0.5,-9.5 + pos: 10.5,-6.5 parent: 1 - - uid: 1134 + - uid: 554 components: - type: Transform - pos: 0.5,-10.5 + pos: 9.5,-6.5 parent: 1 - - uid: 1380 + - uid: 555 components: - type: Transform - pos: 5.5,7.5 + pos: 8.5,-6.5 parent: 1 - - uid: 1731 + - uid: 556 components: - type: Transform - pos: 1.5,-3.5 + pos: 7.5,-6.5 parent: 1 - - uid: 1732 + - uid: 557 components: - type: Transform - pos: 0.5,-3.5 + pos: 6.5,-6.5 parent: 1 - - uid: 1733 + - uid: 558 components: - type: Transform - pos: 0.5,-2.5 + pos: -2.5,-8.5 parent: 1 - - uid: 1734 + - uid: 559 components: - type: Transform - pos: 0.5,-1.5 + pos: -2.5,-9.5 parent: 1 - - uid: 1737 + - uid: 560 components: - type: Transform - pos: -2.5,-6.5 + pos: -3.5,-8.5 parent: 1 - proto: CableTerminal entities: - - uid: 388 + - uid: 561 components: - type: Transform pos: 2.5,-1.5 parent: 1 - proto: CannabisSeeds entities: - - uid: 920 + - uid: 562 components: - type: Transform - pos: -7.4913993,-18.427937 + pos: -4.527932,-25.411976 parent: 1 - proto: CargoPallet entities: - - uid: 452 + - uid: 563 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-2.5 parent: 1 - - uid: 453 + - uid: 564 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-2.5 parent: 1 - - uid: 648 + - uid: 565 components: - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 649 + - uid: 566 components: - type: Transform pos: 4.5,-2.5 parent: 1 - proto: Carpet entities: - - uid: 671 + - uid: 567 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 673 + - uid: 568 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 676 + - uid: 569 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 689 + - uid: 570 components: - type: Transform pos: -1.5,11.5 parent: 1 - proto: CarpetGreen entities: - - uid: 677 + - uid: 571 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 678 + - uid: 572 components: - type: Transform pos: 3.5,3.5 parent: 1 - - uid: 679 + - uid: 573 components: - type: Transform pos: 4.5,3.5 parent: 1 - proto: CarpetOrange entities: - - uid: 563 + - uid: 574 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 664 + - uid: 575 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 669 + - uid: 576 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 674 + - uid: 577 components: - type: Transform pos: 1.5,8.5 parent: 1 - proto: CarpetSBlue entities: - - uid: 680 + - uid: 578 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 681 + - uid: 579 components: - type: Transform pos: -2.5,3.5 parent: 1 - - uid: 682 + - uid: 580 components: - type: Transform pos: -1.5,3.5 parent: 1 - proto: Catwalk entities: - - uid: 170 + - uid: 581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 + - uid: 582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - uid: 583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + - uid: 584 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,1.5 parent: 1 - - uid: 171 + - uid: 585 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,1.5 parent: 1 - - uid: 397 + - uid: 586 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-3.5 parent: 1 - - uid: 398 + - uid: 587 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-2.5 parent: 1 - - uid: 399 + - uid: 588 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 1 - - uid: 400 + - uid: 589 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-0.5 parent: 1 - - uid: 403 + - uid: 590 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-0.5 parent: 1 - - uid: 404 + - uid: 591 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,0.5 parent: 1 - - uid: 406 + - uid: 592 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 1 - - uid: 408 + - uid: 593 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,0.5 parent: 1 - - uid: 410 + - uid: 594 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-1.5 parent: 1 - - uid: 411 + - uid: 595 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 1 - - uid: 412 + - uid: 596 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-3.5 parent: 1 - - uid: 422 + - uid: 597 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,1.5 parent: 1 - - uid: 423 + - uid: 598 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,2.5 parent: 1 - - uid: 600 + - uid: 599 components: - type: Transform pos: 12.5,1.5 parent: 1 - - uid: 601 + - uid: 600 components: - type: Transform pos: 12.5,0.5 parent: 1 - - uid: 602 + - uid: 601 components: - type: Transform pos: 12.5,-0.5 parent: 1 - - uid: 605 + - uid: 602 components: - type: Transform pos: 13.5,1.5 parent: 1 - - uid: 606 + - uid: 603 components: - type: Transform pos: 13.5,0.5 parent: 1 - - uid: 607 + - uid: 604 components: - type: Transform pos: 13.5,-0.5 parent: 1 - - uid: 608 + - uid: 605 components: - type: Transform pos: 12.5,-1.5 parent: 1 - - uid: 609 + - uid: 606 components: - type: Transform pos: 12.5,-2.5 parent: 1 - - uid: 610 + - uid: 607 components: - type: Transform pos: 12.5,-3.5 parent: 1 - - uid: 611 + - uid: 608 components: - type: Transform pos: 12.5,-4.5 parent: 1 - - uid: 613 + - uid: 609 components: - type: Transform pos: -12.5,1.5 parent: 1 - - uid: 614 + - uid: 610 components: - type: Transform pos: -12.5,0.5 parent: 1 - - uid: 615 + - uid: 611 components: - type: Transform pos: -12.5,-0.5 parent: 1 - - uid: 618 + - uid: 612 components: - type: Transform pos: -11.5,1.5 parent: 1 - - uid: 619 + - uid: 613 components: - type: Transform pos: -11.5,0.5 parent: 1 + - uid: 614 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 1 + - uid: 619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 - uid: 620 components: - type: Transform - pos: -11.5,-0.5 + rot: 1.5707963267948966 rad + pos: 1.5,2.5 parent: 1 - uid: 621 components: - type: Transform - pos: -11.5,-1.5 + pos: -11.5,-6.5 parent: 1 - uid: 622 components: - type: Transform - pos: -11.5,-2.5 + pos: -11.5,-5.5 parent: 1 - uid: 623 components: - type: Transform - pos: -11.5,-3.5 + pos: 12.5,-6.5 parent: 1 - uid: 624 components: - type: Transform - pos: -11.5,-4.5 + pos: 12.5,-5.5 parent: 1 - - uid: 638 + - uid: 625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,2.5 + pos: 0.5,-0.5 parent: 1 - - uid: 639 + - uid: 626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,2.5 + pos: 5.5,1.5 parent: 1 - - uid: 753 + - uid: 627 components: - type: Transform - pos: -11.5,-6.5 + pos: 4.5,1.5 parent: 1 - - uid: 754 + - uid: 628 components: - type: Transform - pos: -11.5,-5.5 + pos: 6.5,1.5 parent: 1 - - uid: 755 + - uid: 629 components: - type: Transform - pos: 12.5,-6.5 + pos: 7.5,1.5 parent: 1 - - uid: 756 + - uid: 630 components: - type: Transform - pos: 12.5,-5.5 + pos: 8.5,1.5 parent: 1 - - uid: 1727 + - uid: 631 components: - type: Transform - pos: 0.5,-0.5 + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 1 + - uid: 632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 +- proto: Chair + entities: + - uid: 633 + components: + - type: Transform + pos: 7.5,-24.5 parent: 1 - proto: ChairFolding entities: - - uid: 149 + - uid: 634 components: - type: Transform pos: 4.5,-17.5 parent: 1 - - uid: 575 + - uid: 635 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,6.5 parent: 1 - - uid: 576 + - uid: 636 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,6.5 parent: 1 - - uid: 879 + - uid: 637 components: - type: Transform pos: -6.5,-24.5 parent: 1 - - uid: 931 + - uid: 638 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-18.5 + pos: 2.5,-18.5 + parent: 1 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 639 + components: + - type: Transform + rot: -12.566370614359172 rad + pos: 1.9059334,-24.132801 parent: 1 - proto: ChairOfficeLight entities: - - uid: 746 + - uid: 640 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,13.5 parent: 1 - - uid: 747 + - uid: 641 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,13.5 parent: 1 - - uid: 849 + - uid: 642 components: - type: Transform pos: -3.5,-3.5 parent: 1 - proto: ChairPilotSeat entities: - - uid: 744 + - uid: 643 components: - type: Transform rot: 3.141592653589793 rad @@ -4034,21 +4261,21 @@ entities: parent: 1 - proto: chem_master entities: - - uid: 784 + - uid: 644 components: - type: Transform pos: -4.5,-2.5 parent: 1 - proto: ChemistryHotplate entities: - - uid: 708 + - uid: 645 components: - type: Transform pos: -4.5,-4.5 parent: 1 - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 144 + - uid: 646 components: - type: Transform rot: 1.5707963267948966 rad @@ -4072,82 +4299,23 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 146 - - 420 - proto: ClothingBeltUtilityFilled entities: - - uid: 391 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 390 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 392 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 390 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 393 + - uid: 647 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 390 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 2.6090956,1.2230597 + parent: 1 - proto: ClothingEyesGlassesChemical entities: - - uid: 151 + - uid: 648 components: - type: Transform pos: -4.5055804,-4.226667 parent: 1 -- proto: ClothingOuterHardsuitNfsdBronze - entities: - - uid: 559 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 558 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 561 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 560 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 573 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 572 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ComfyChair entities: - - uid: 745 + - uid: 649 components: - type: Transform rot: 3.141592653589793 rad @@ -4155,7 +4323,7 @@ entities: parent: 1 - proto: ComputerCrewMonitoring entities: - - uid: 455 + - uid: 650 components: - type: Transform rot: 1.5707963267948966 rad @@ -4163,7 +4331,7 @@ entities: parent: 1 - proto: ComputerId entities: - - uid: 736 + - uid: 651 components: - type: Transform rot: 1.5707963267948966 rad @@ -4171,7 +4339,7 @@ entities: parent: 1 - proto: ComputerIFF entities: - - uid: 416 + - uid: 652 components: - type: Transform rot: -1.5707963267948966 rad @@ -4179,7 +4347,7 @@ entities: parent: 1 - proto: ComputerPalletConsoleNFNormalMarket entities: - - uid: 456 + - uid: 653 components: - type: Transform pos: 7.5,-3.5 @@ -4190,12 +4358,12 @@ entities: ents: [] - proto: ComputerRadar entities: - - uid: 735 + - uid: 654 components: - type: Transform pos: -0.5,16.5 parent: 1 - - uid: 740 + - uid: 655 components: - type: Transform rot: -1.5707963267948966 rad @@ -4203,21 +4371,21 @@ entities: parent: 1 - proto: ComputerSalvageExpedition entities: - - uid: 694 + - uid: 656 components: - type: Transform pos: 0.5,16.5 parent: 1 - proto: ComputerShuttle entities: - - uid: 732 + - uid: 657 components: - type: Transform pos: 1.5,16.5 parent: 1 - proto: ComputerStationRecords entities: - - uid: 733 + - uid: 658 components: - type: Transform rot: 1.5707963267948966 rad @@ -4225,7 +4393,7 @@ entities: parent: 1 - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 731 + - uid: 659 components: - type: Transform rot: -1.5707963267948966 rad @@ -4233,18 +4401,17 @@ entities: parent: 1 - proto: ComputerTelevision entities: - - uid: 938 + - uid: 660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-18.5 + pos: 6.5,-16.5 parent: 1 -- proto: CrateArmoryLaser +- proto: CrateEngineeringAMEJar entities: - - uid: 957 + - uid: 661 components: - type: Transform - pos: -3.5,9.5 + pos: 1.5,1.5 parent: 1 - type: EntityStorage air: @@ -4264,16 +4431,9 @@ entities: - 0 - 0 - 0 -- proto: CrateEngineeringAMEJar - entities: - - uid: 808 - components: - - type: Transform - pos: 1.5,1.5 - parent: 1 - proto: CrateEngineeringElectricalSupplies entities: - - uid: 390 + - uid: 662 components: - type: Transform pos: 2.5,0.5 @@ -4282,8 +4442,10 @@ entities: air: volume: 200 immutable: False - temperature: 75.31249 + temperature: 293.1494 moles: + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -4294,75 +4456,93 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 391 - - 392 - - 393 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: CrateFoodCooking entities: - - uid: 683 + - uid: 663 components: - type: Transform pos: 1.5,0.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 - proto: CrateFoodDinnerware entities: - - uid: 929 + - uid: 664 components: - type: Transform - pos: 1.5,-19.5 + pos: 6.5,-17.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 - proto: CrateFreezer entities: - - uid: 936 + - uid: 665 components: - type: Transform pos: 3.5,-14.5 parent: 1 -- proto: CrateFunInstrumentsVariety - entities: - - uid: 751 - components: - - type: Transform - pos: 1.5,-20.5 - parent: 1 -- proto: CrateHydroponicsSeeds - entities: - - uid: 899 - components: - - type: Transform - pos: 0.5,-19.5 - parent: 1 -- proto: CrateHydroponicsTools - entities: - - uid: 900 - components: - - type: Transform - pos: 0.5,-20.5 - parent: 1 -- proto: CrateMaterialWood + - 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 +- proto: CrateFunInstrumentsVariety entities: - - uid: 442 + - uid: 666 components: - type: Transform - pos: -0.5,-20.5 + pos: 1.5,-20.5 parent: 1 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.1496 + temperature: 293.14923 moles: - 1.7459903 - 6.568249 @@ -4376,37 +4556,43 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 443 - - 445 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateNPCChicken +- proto: CrateHydroponicsSeeds entities: - - uid: 711 + - uid: 667 components: - type: Transform - pos: -2.5,-17.5 + pos: 0.5,-19.5 parent: 1 -- proto: CrateSecurityNonlethal + - 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 +- proto: CrateHydroponicsTools entities: - - uid: 654 + - uid: 668 components: - type: Transform - pos: 7.5,5.5 + pos: 0.5,-20.5 parent: 1 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.1494 + temperature: 293.14923 moles: - 1.7459903 - 6.568249 @@ -4420,27 +4606,12 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 659 - - 658 - - 657 - - 656 - - 655 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateSecurityRiot +- proto: CrateMaterialWood entities: - - uid: 722 + - uid: 669 components: - type: Transform - pos: -4.5,9.5 + pos: -0.5,-20.5 parent: 1 - type: EntityStorage air: @@ -4460,21 +4631,41 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 1749 - - 1416 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateSecuritySupplies +- proto: CrateNfsdNonlethal entities: - - uid: 798 + - uid: 670 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1494 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateNfsdRiot + entities: + - uid: 671 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 +- proto: CrateNfsdSupplies + entities: + - uid: 672 components: - type: Transform pos: -6.5,5.5 @@ -4497,40 +4688,25 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 803 - - 802 - - 801 - - 800 - - 799 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateServiceCustomSmokable +- proto: CrateNPCChicken entities: - - uid: 940 + - uid: 673 components: - type: Transform - pos: -0.5,-19.5 + pos: -7.5,-18.5 parent: 1 -- proto: CrateServiceJanitorialSupplies +- proto: CrateServiceCustomSmokable entities: - - uid: 484 + - uid: 674 components: - type: Transform - pos: -5.5,-6.5 + pos: -0.5,-19.5 parent: 1 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.1496 + temperature: 293.14923 moles: - 1.7459903 - 6.568249 @@ -4544,116 +4720,108 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 748 - - 949 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 944 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 675 components: - type: Transform - pos: 0.5,-18.5 + pos: 1.5,-19.5 parent: 1 -- proto: CrateTrackingImplants + - 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 +- proto: CrateTrackingImplantsNfsd entities: - - uid: 650 + - uid: 676 components: - type: Transform pos: 0.5,-6.5 parent: 1 - proto: Crowbar entities: - - uid: 946 + - uid: 677 components: - type: Transform - pos: 1.4795082,-18.493605 + pos: 5.50987,-16.36945 parent: 1 - proto: DawInstrumentMachineCircuitboard entities: - - uid: 873 + - uid: 679 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 872 + parent: 678 - type: Physics canCollide: False - proto: DeepFryerMachineCircuitboard entities: - - uid: 871 + - uid: 681 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 870 + parent: 680 - type: Physics canCollide: False - proto: DefibrillatorCabinetFilled entities: - - uid: 854 + - uid: 682 components: - type: Transform pos: -6.5,-5.5 parent: 1 -- proto: DeployableBarrier - entities: - - uid: 952 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 1 - - uid: 953 - components: - - type: Transform - pos: 2.5,-9.5 - parent: 1 - proto: DiceBag entities: - - uid: 939 + - uid: 683 components: - type: Transform pos: 4.5236473,-18.397203 parent: 1 - proto: DisposalBend entities: - - uid: 1687 + - uid: 684 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,5.5 parent: 1 - - uid: 1688 + - uid: 685 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,5.5 parent: 1 - - uid: 1710 + - uid: 686 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-16.5 parent: 1 - - uid: 1711 + - uid: 687 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-16.5 parent: 1 - - uid: 1712 + - uid: 688 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-25.5 parent: 1 - - uid: 1713 + - uid: 689 components: - type: Transform rot: 1.5707963267948966 rad @@ -4661,239 +4829,239 @@ entities: parent: 1 - proto: DisposalPipe entities: - - uid: 1683 + - uid: 690 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 1684 + - uid: 691 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 1685 + - uid: 692 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 1686 + - uid: 693 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 1689 + - uid: 694 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 1690 + - uid: 695 components: - type: Transform pos: 0.5,3.5 parent: 1 - - uid: 1691 + - uid: 696 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 1692 + - uid: 697 components: - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 1693 + - uid: 698 components: - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 1694 + - uid: 699 components: - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 1695 + - uid: 700 components: - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 1696 + - uid: 701 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 1697 + - uid: 702 components: - type: Transform pos: 0.5,-3.5 parent: 1 - - uid: 1698 + - uid: 703 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 1699 + - uid: 704 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 1700 + - uid: 705 components: - type: Transform pos: 0.5,-6.5 parent: 1 - - uid: 1701 + - uid: 706 components: - type: Transform pos: 0.5,-7.5 parent: 1 - - uid: 1702 + - uid: 707 components: - type: Transform pos: 0.5,-8.5 parent: 1 - - uid: 1703 + - uid: 708 components: - type: Transform pos: 0.5,-9.5 parent: 1 - - uid: 1704 + - uid: 709 components: - type: Transform pos: 0.5,-10.5 parent: 1 - - uid: 1705 + - uid: 710 components: - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 1706 + - uid: 711 components: - type: Transform pos: 0.5,-12.5 parent: 1 - - uid: 1707 + - uid: 712 components: - type: Transform pos: 0.5,-13.5 parent: 1 - - uid: 1708 + - uid: 713 components: - type: Transform pos: 0.5,-14.5 parent: 1 - - uid: 1709 + - uid: 714 components: - type: Transform pos: 0.5,-15.5 parent: 1 - - uid: 1714 + - uid: 715 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-16.5 parent: 1 - - uid: 1715 + - uid: 716 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-16.5 parent: 1 - - uid: 1716 + - uid: 717 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-16.5 parent: 1 - - uid: 1717 + - uid: 718 components: - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-16.5 parent: 1 - - uid: 1718 + - uid: 719 components: - type: Transform pos: -4.5,-17.5 parent: 1 - - uid: 1719 + - uid: 720 components: - type: Transform pos: -4.5,-18.5 parent: 1 - - uid: 1720 + - uid: 721 components: - type: Transform pos: -4.5,-19.5 parent: 1 - - uid: 1721 + - uid: 722 components: - type: Transform pos: -4.5,-20.5 parent: 1 - - uid: 1722 + - uid: 723 components: - type: Transform pos: -4.5,-21.5 parent: 1 - - uid: 1723 + - uid: 724 components: - type: Transform pos: -4.5,-22.5 parent: 1 - - uid: 1724 + - uid: 725 components: - type: Transform pos: -4.5,-23.5 parent: 1 - - uid: 1725 + - uid: 726 components: - type: Transform pos: -4.5,-24.5 parent: 1 - - uid: 1726 + - uid: 727 components: - type: Transform pos: -5.5,-26.5 parent: 1 - - uid: 1730 + - uid: 728 components: - type: Transform pos: -5.5,-27.5 parent: 1 - proto: DisposalTrunk entities: - - uid: 383 + - uid: 729 components: - type: Transform pos: 1.5,10.5 parent: 1 - proto: DisposalUnit entities: - - uid: 546 + - uid: 730 components: - type: Transform pos: 1.5,10.5 parent: 1 - proto: DogBed entities: - - uid: 794 + - uid: 731 components: - type: Transform pos: 4.5,7.5 parent: 1 - proto: DonkpocketBoxSpawner entities: - - uid: 956 + - uid: 732 components: - type: Transform pos: 5.5,-15.5 parent: 1 - proto: DresserFilled entities: - - uid: 870 + - uid: 116 components: - type: Transform - pos: -4.5,-22.5 + pos: 1.5,-22.5 parent: 1 - type: ContainerContainer containers: @@ -4901,8 +5069,8 @@ entities: showEnts: False occludes: True ents: - - 871 - - uid: 872 + - 117 + - uid: 678 components: - type: Transform pos: -0.5,-22.5 @@ -4913,11 +5081,11 @@ entities: showEnts: False occludes: True ents: - - 873 - - uid: 889 + - 679 + - uid: 680 components: - type: Transform - pos: 1.5,-22.5 + pos: -4.5,-22.5 parent: 1 - type: ContainerContainer containers: @@ -4925,8 +5093,8 @@ entities: showEnts: False occludes: True ents: - - 890 - - uid: 891 + - 681 + - uid: 733 components: - type: Transform pos: 5.5,-22.5 @@ -4937,127 +5105,121 @@ entities: showEnts: False occludes: True ents: - - 892 + - 734 - proto: ElectricGrillMachineCircuitboard entities: - - uid: 892 + - uid: 734 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 891 + parent: 733 - type: Physics canCollide: False - proto: EmergencyLight entities: - - uid: 1182 - components: - - type: Transform - pos: 13.5,1.5 - parent: 1 - - uid: 1262 + - uid: 735 components: - type: Transform - pos: -12.5,1.5 + rot: -1.5707963267948966 rad + pos: -11.5,-2.5 parent: 1 - - uid: 1264 + - uid: 736 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,8.5 parent: 1 - - uid: 1265 + - uid: 737 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,8.5 parent: 1 - - uid: 1266 + - uid: 738 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 1267 + - uid: 739 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,13.5 parent: 1 - - uid: 1268 + - uid: 740 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 parent: 1 - - uid: 1269 + - uid: 741 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-10.5 parent: 1 - - uid: 1270 + - uid: 742 components: - type: Transform pos: 0.5,-12.5 parent: 1 - - uid: 1271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 1 - - uid: 1272 + - uid: 743 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-7.5 parent: 1 - - uid: 1273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 1 - - uid: 1274 + - uid: 744 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-18.5 parent: 1 - - uid: 1275 + - uid: 745 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-20.5 parent: 1 - - uid: 1276 + - uid: 746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,9.5 + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 parent: 1 - - uid: 1277 + - uid: 747 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,3.5 parent: 1 - - uid: 1278 + - uid: 748 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,3.5 parent: 1 + - uid: 749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 1 + - uid: 750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 1 - proto: FaxMachineShip entities: - - uid: 739 + - uid: 751 components: - type: Transform pos: 0.5,14.5 parent: 1 - proto: FireAxeCabinetFilled entities: - - uid: 814 + - uid: 752 components: - type: Transform rot: 1.5707963267948966 rad @@ -5065,192 +5227,192 @@ entities: parent: 1 - proto: Firelock entities: - - uid: 3 + - uid: 753 components: - type: Transform pos: -9.5,4.5 parent: 1 - - uid: 4 + - uid: 754 components: - type: Transform pos: 10.5,4.5 parent: 1 - - uid: 73 + - uid: 755 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-13.5 parent: 1 - - uid: 193 + - uid: 756 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-13.5 parent: 1 - - uid: 279 + - uid: 757 components: - type: Transform pos: -0.5,-15.5 parent: 1 - - uid: 280 + - uid: 758 components: - type: Transform pos: 1.5,-15.5 parent: 1 - - uid: 294 + - uid: 759 components: - type: Transform pos: -11.5,2.5 parent: 1 - - uid: 307 + - uid: 760 components: - type: Transform pos: -8.5,7.5 parent: 1 - - uid: 308 + - uid: 761 components: - type: Transform pos: -12.5,5.5 parent: 1 - - uid: 309 + - uid: 762 components: - type: Transform pos: -12.5,7.5 parent: 1 - - uid: 310 + - uid: 763 components: - type: Transform pos: -11.5,9.5 parent: 1 - - uid: 311 + - uid: 764 components: - type: Transform pos: -9.5,9.5 parent: 1 - - uid: 312 + - uid: 765 components: - type: Transform pos: 10.5,9.5 parent: 1 - - uid: 313 + - uid: 766 components: - type: Transform pos: 9.5,7.5 parent: 1 - - uid: 314 + - uid: 767 components: - type: Transform pos: 12.5,9.5 parent: 1 - - uid: 315 + - uid: 768 components: - type: Transform pos: 13.5,7.5 parent: 1 - - uid: 316 + - uid: 769 components: - type: Transform pos: 13.5,5.5 parent: 1 - - uid: 318 + - uid: 770 components: - type: Transform pos: -6.5,-21.5 parent: 1 - - uid: 319 + - uid: 771 components: - type: Transform pos: -2.5,-21.5 parent: 1 - - uid: 320 + - uid: 772 components: - type: Transform pos: 3.5,-21.5 parent: 1 - - uid: 321 + - uid: 773 components: - type: Transform pos: 7.5,-21.5 parent: 1 - - uid: 432 + - uid: 774 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 1 - - uid: 433 + - uid: 775 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-2.5 parent: 1 - - uid: 434 + - uid: 776 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-2.5 parent: 1 - - uid: 451 + - uid: 777 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-9.5 parent: 1 - - uid: 498 + - uid: 778 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,12.5 parent: 1 - - uid: 542 + - uid: 779 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-8.5 parent: 1 - - uid: 543 + - uid: 780 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-8.5 parent: 1 - - uid: 598 + - uid: 781 components: - type: Transform pos: 12.5,2.5 parent: 1 - - uid: 599 + - uid: 782 components: - type: Transform pos: 12.5,4.5 parent: 1 - - uid: 616 + - uid: 783 components: - type: Transform pos: -11.5,4.5 parent: 1 - - uid: 783 + - uid: 784 components: - type: Transform pos: -6.5,-3.5 parent: 1 - proto: FloorDrain entities: - - uid: 8 + - uid: 785 components: - type: Transform pos: -4.5,-4.5 parent: 1 - type: Fixtures fixtures: {} - - uid: 1735 + - uid: 786 components: - type: Transform pos: 3.5,9.5 parent: 1 - type: Fixtures fixtures: {} - - uid: 1736 + - uid: 787 components: - type: Transform pos: 4.5,-15.5 @@ -5259,14 +5421,14 @@ entities: fixtures: {} - proto: GasAnalyzer entities: - - uid: 1774 + - uid: 788 components: - type: Transform - pos: 2.541379,1.6085322 + pos: 2.1403456,1.8024313 parent: 1 - proto: GasMixer entities: - - uid: 172 + - uid: 789 components: - type: Transform rot: 1.5707963267948966 rad @@ -5278,7 +5440,7 @@ entities: color: '#0055CCFF' - proto: GasPassiveVent entities: - - uid: 405 + - uid: 790 components: - type: Transform rot: 3.141592653589793 rad @@ -5286,29 +5448,31 @@ entities: parent: 1 - type: AtmosDevice joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeBend entities: - - uid: 402 + - uid: 791 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 1 - - uid: 672 + - uid: 792 components: - type: Transform pos: 2.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1444 + color: '#990000FF' + - uid: 793 components: - type: Transform pos: 6.5,-23.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1446 + - uid: 794 components: - type: Transform rot: 1.5707963267948966 rad @@ -5316,7 +5480,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1497 + - uid: 795 components: - type: Transform rot: 1.5707963267948966 rad @@ -5324,7 +5488,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1529 + - uid: 796 components: - type: Transform rot: 1.5707963267948966 rad @@ -5332,7 +5496,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1544 + - uid: 797 components: - type: Transform rot: -1.5707963267948966 rad @@ -5340,7 +5504,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1582 + - uid: 798 components: - type: Transform rot: 1.5707963267948966 rad @@ -5348,7 +5512,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1584 + - uid: 799 components: - type: Transform rot: 3.141592653589793 rad @@ -5356,7 +5520,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1602 + - uid: 800 components: - type: Transform rot: -1.5707963267948966 rad @@ -5364,7 +5528,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1603 + - uid: 801 components: - type: Transform rot: 3.141592653589793 rad @@ -5372,7 +5536,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1639 + - uid: 802 components: - type: Transform rot: 3.141592653589793 rad @@ -5380,7 +5544,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1640 + - uid: 803 components: - type: Transform rot: -1.5707963267948966 rad @@ -5388,81 +5552,81 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1676 + - uid: 804 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-22.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1677 + color: '#990000FF' + - uid: 805 components: - type: Transform pos: 6.5,-25.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1678 + color: '#990000FF' + - uid: 806 components: - type: Transform pos: 3.5,-22.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1679 + color: '#990000FF' + - uid: 807 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-25.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' + color: '#990000FF' - proto: GasPipeFourway entities: - - uid: 950 + - uid: 808 components: - type: Transform pos: 0.5,1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1426 + - uid: 809 components: - type: Transform pos: 0.5,-7.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1436 + - uid: 810 components: - type: Transform pos: 0.5,-17.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1455 + - uid: 811 components: - type: Transform pos: 0.5,6.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1541 + - uid: 812 components: - type: Transform pos: -0.5,5.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1588 + - uid: 813 components: - type: Transform pos: -0.5,-8.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1625 + - uid: 814 components: - type: Transform pos: -0.5,-18.5 @@ -5471,7 +5635,7 @@ entities: color: '#990000FF' - proto: GasPipeStraight entities: - - uid: 317 + - uid: 815 components: - type: Transform rot: 3.141592653589793 rad @@ -5479,14 +5643,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 958 + - uid: 816 components: - type: Transform pos: 0.5,4.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1409 + - uid: 817 components: - type: Transform rot: -1.5707963267948966 rad @@ -5494,161 +5658,161 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1417 + - uid: 818 components: - type: Transform pos: 0.5,5.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1418 + - uid: 819 components: - type: Transform pos: 0.5,0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1419 + - uid: 820 components: - type: Transform pos: 0.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1420 + - uid: 821 components: - type: Transform pos: 0.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1421 + - uid: 822 components: - type: Transform pos: 0.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1422 + - uid: 823 components: - type: Transform pos: 0.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1423 + - uid: 824 components: - type: Transform pos: 0.5,-4.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1424 + - uid: 825 components: - type: Transform pos: 0.5,-5.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1425 + - uid: 826 components: - type: Transform pos: 0.5,-6.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1427 + - uid: 827 components: - type: Transform pos: 0.5,-8.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1428 + - uid: 828 components: - type: Transform pos: 0.5,-9.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1430 + - uid: 829 components: - type: Transform pos: 0.5,-11.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1431 + - uid: 830 components: - type: Transform pos: 0.5,-12.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1432 + - uid: 831 components: - type: Transform pos: 0.5,-13.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1433 + - uid: 832 components: - type: Transform pos: 0.5,-14.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1434 + - uid: 833 components: - type: Transform pos: 0.5,-15.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1435 + - uid: 834 components: - type: Transform pos: 0.5,-16.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1437 + - uid: 835 components: - type: Transform pos: 0.5,-18.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1438 + - uid: 836 components: - type: Transform pos: 0.5,-19.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1439 + - uid: 837 components: - type: Transform pos: 0.5,-20.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1440 + - uid: 838 components: - type: Transform pos: 0.5,-21.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1441 + - uid: 839 components: - type: Transform pos: 0.5,-22.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1447 + - uid: 840 components: - type: Transform rot: 1.5707963267948966 rad @@ -5656,7 +5820,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1448 + - uid: 841 components: - type: Transform rot: 1.5707963267948966 rad @@ -5664,7 +5828,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1449 + - uid: 842 components: - type: Transform rot: 1.5707963267948966 rad @@ -5672,7 +5836,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1450 + - uid: 843 components: - type: Transform rot: 1.5707963267948966 rad @@ -5680,7 +5844,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1451 + - uid: 844 components: - type: Transform rot: 1.5707963267948966 rad @@ -5688,7 +5852,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1452 + - uid: 845 components: - type: Transform rot: 1.5707963267948966 rad @@ -5696,7 +5860,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1453 + - uid: 846 components: - type: Transform rot: 1.5707963267948966 rad @@ -5704,7 +5868,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1454 + - uid: 847 components: - type: Transform rot: 1.5707963267948966 rad @@ -5712,7 +5876,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1456 + - uid: 848 components: - type: Transform rot: -1.5707963267948966 rad @@ -5720,7 +5884,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1457 + - uid: 849 components: - type: Transform rot: -1.5707963267948966 rad @@ -5728,7 +5892,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1458 + - uid: 850 components: - type: Transform rot: -1.5707963267948966 rad @@ -5736,7 +5900,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1459 + - uid: 851 components: - type: Transform rot: -1.5707963267948966 rad @@ -5744,7 +5908,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1461 + - uid: 852 components: - type: Transform rot: -1.5707963267948966 rad @@ -5752,7 +5916,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1462 + - uid: 853 components: - type: Transform rot: -1.5707963267948966 rad @@ -5760,7 +5924,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1465 + - uid: 854 components: - type: Transform rot: -1.5707963267948966 rad @@ -5768,7 +5932,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1466 + - uid: 855 components: - type: Transform rot: -1.5707963267948966 rad @@ -5776,7 +5940,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1467 + - uid: 856 components: - type: Transform rot: -1.5707963267948966 rad @@ -5784,7 +5948,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1468 + - uid: 857 components: - type: Transform rot: -1.5707963267948966 rad @@ -5792,7 +5956,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1469 + - uid: 858 components: - type: Transform rot: -1.5707963267948966 rad @@ -5800,7 +5964,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1470 + - uid: 859 components: - type: Transform rot: -1.5707963267948966 rad @@ -5808,7 +5972,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1471 + - uid: 860 components: - type: Transform rot: -1.5707963267948966 rad @@ -5816,7 +5980,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1472 + - uid: 861 components: - type: Transform rot: -1.5707963267948966 rad @@ -5824,7 +5988,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1474 + - uid: 862 components: - type: Transform rot: -1.5707963267948966 rad @@ -5832,7 +5996,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1475 + - uid: 863 components: - type: Transform rot: -1.5707963267948966 rad @@ -5840,7 +6004,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1476 + - uid: 864 components: - type: Transform rot: -1.5707963267948966 rad @@ -5848,7 +6012,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1477 + - uid: 865 components: - type: Transform rot: -1.5707963267948966 rad @@ -5856,7 +6020,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1478 + - uid: 866 components: - type: Transform rot: -1.5707963267948966 rad @@ -5864,7 +6028,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1479 + - uid: 867 components: - type: Transform rot: -1.5707963267948966 rad @@ -5872,7 +6036,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1480 + - uid: 868 components: - type: Transform rot: -1.5707963267948966 rad @@ -5880,7 +6044,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1482 + - uid: 869 components: - type: Transform rot: -1.5707963267948966 rad @@ -5888,7 +6052,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1483 + - uid: 870 components: - type: Transform rot: -1.5707963267948966 rad @@ -5896,7 +6060,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1484 + - uid: 871 components: - type: Transform rot: -1.5707963267948966 rad @@ -5904,7 +6068,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1485 + - uid: 872 components: - type: Transform rot: -1.5707963267948966 rad @@ -5912,7 +6076,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1486 + - uid: 873 components: - type: Transform rot: -1.5707963267948966 rad @@ -5920,7 +6084,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1487 + - uid: 874 components: - type: Transform rot: -1.5707963267948966 rad @@ -5928,7 +6092,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1488 + - uid: 875 components: - type: Transform rot: -1.5707963267948966 rad @@ -5936,7 +6100,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1489 + - uid: 876 components: - type: Transform rot: -1.5707963267948966 rad @@ -5944,7 +6108,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1490 + - uid: 877 components: - type: Transform rot: 3.141592653589793 rad @@ -5952,7 +6116,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1491 + - uid: 878 components: - type: Transform rot: 3.141592653589793 rad @@ -5960,7 +6124,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1492 + - uid: 879 components: - type: Transform rot: 3.141592653589793 rad @@ -5968,7 +6132,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1494 + - uid: 880 components: - type: Transform rot: 3.141592653589793 rad @@ -5976,7 +6140,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1495 + - uid: 881 components: - type: Transform rot: 3.141592653589793 rad @@ -5984,7 +6148,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1496 + - uid: 882 components: - type: Transform rot: 3.141592653589793 rad @@ -5992,7 +6156,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1498 + - uid: 883 components: - type: Transform rot: 1.5707963267948966 rad @@ -6000,7 +6164,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1504 + - uid: 884 components: - type: Transform rot: 3.141592653589793 rad @@ -6008,7 +6172,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1505 + - uid: 885 components: - type: Transform rot: 3.141592653589793 rad @@ -6016,7 +6180,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1510 + - uid: 886 components: - type: Transform rot: -1.5707963267948966 rad @@ -6024,7 +6188,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1511 + - uid: 887 components: - type: Transform rot: -1.5707963267948966 rad @@ -6032,7 +6196,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1512 + - uid: 888 components: - type: Transform rot: -1.5707963267948966 rad @@ -6040,7 +6204,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1513 + - uid: 889 components: - type: Transform rot: -1.5707963267948966 rad @@ -6048,7 +6212,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1514 + - uid: 890 components: - type: Transform rot: -1.5707963267948966 rad @@ -6056,7 +6220,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1515 + - uid: 891 components: - type: Transform rot: -1.5707963267948966 rad @@ -6064,7 +6228,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1516 + - uid: 892 components: - type: Transform rot: -1.5707963267948966 rad @@ -6072,7 +6236,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1523 + - uid: 893 components: - type: Transform rot: 3.141592653589793 rad @@ -6080,7 +6244,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1524 + - uid: 894 components: - type: Transform rot: 3.141592653589793 rad @@ -6088,7 +6252,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1525 + - uid: 895 components: - type: Transform rot: 3.141592653589793 rad @@ -6096,7 +6260,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1528 + - uid: 896 components: - type: Transform rot: 3.141592653589793 rad @@ -6104,7 +6268,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1531 + - uid: 897 components: - type: Transform rot: 3.141592653589793 rad @@ -6112,7 +6276,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1532 + - uid: 898 components: - type: Transform rot: 3.141592653589793 rad @@ -6120,7 +6284,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1533 + - uid: 899 components: - type: Transform rot: 3.141592653589793 rad @@ -6128,7 +6292,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1534 + - uid: 900 components: - type: Transform rot: 1.5707963267948966 rad @@ -6136,7 +6300,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1535 + - uid: 901 components: - type: Transform rot: 1.5707963267948966 rad @@ -6144,56 +6308,56 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1536 + - uid: 902 components: - type: Transform pos: -0.5,10.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1537 + - uid: 903 components: - type: Transform pos: -0.5,9.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1538 + - uid: 904 components: - type: Transform pos: -0.5,8.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1539 + - uid: 905 components: - type: Transform pos: -0.5,7.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1540 + - uid: 906 components: - type: Transform pos: -0.5,6.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1542 + - uid: 907 components: - type: Transform pos: -0.5,4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1543 + - uid: 908 components: - type: Transform pos: -0.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1545 + - uid: 909 components: - type: Transform rot: 3.141592653589793 rad @@ -6201,7 +6365,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1546 + - uid: 910 components: - type: Transform rot: 3.141592653589793 rad @@ -6209,42 +6373,42 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1548 + - uid: 911 components: - type: Transform pos: -0.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1549 + - uid: 912 components: - type: Transform pos: -0.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1550 + - uid: 913 components: - type: Transform pos: -0.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1551 + - uid: 914 components: - type: Transform pos: -0.5,-4.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1552 + - uid: 915 components: - type: Transform pos: -0.5,-5.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1556 + - uid: 916 components: - type: Transform rot: -1.5707963267948966 rad @@ -6252,7 +6416,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1557 + - uid: 917 components: - type: Transform rot: -1.5707963267948966 rad @@ -6260,7 +6424,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1558 + - uid: 918 components: - type: Transform rot: -1.5707963267948966 rad @@ -6268,7 +6432,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1559 + - uid: 919 components: - type: Transform rot: -1.5707963267948966 rad @@ -6276,7 +6440,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1560 + - uid: 920 components: - type: Transform rot: -1.5707963267948966 rad @@ -6284,7 +6448,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1561 + - uid: 921 components: - type: Transform rot: -1.5707963267948966 rad @@ -6292,7 +6456,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1562 + - uid: 922 components: - type: Transform rot: -1.5707963267948966 rad @@ -6300,7 +6464,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1563 + - uid: 923 components: - type: Transform rot: -1.5707963267948966 rad @@ -6308,7 +6472,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1564 + - uid: 924 components: - type: Transform rot: -1.5707963267948966 rad @@ -6316,7 +6480,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1565 + - uid: 925 components: - type: Transform rot: -1.5707963267948966 rad @@ -6324,7 +6488,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1566 + - uid: 926 components: - type: Transform rot: -1.5707963267948966 rad @@ -6332,7 +6496,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1567 + - uid: 927 components: - type: Transform rot: -1.5707963267948966 rad @@ -6340,7 +6504,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1568 + - uid: 928 components: - type: Transform rot: -1.5707963267948966 rad @@ -6348,7 +6512,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1569 + - uid: 929 components: - type: Transform rot: -1.5707963267948966 rad @@ -6356,7 +6520,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1570 + - uid: 930 components: - type: Transform rot: -1.5707963267948966 rad @@ -6364,7 +6528,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1571 + - uid: 931 components: - type: Transform rot: -1.5707963267948966 rad @@ -6372,7 +6536,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1572 + - uid: 932 components: - type: Transform rot: -1.5707963267948966 rad @@ -6380,7 +6544,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1573 + - uid: 933 components: - type: Transform rot: -1.5707963267948966 rad @@ -6388,7 +6552,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1574 + - uid: 934 components: - type: Transform rot: -1.5707963267948966 rad @@ -6396,14 +6560,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1580 + - uid: 935 components: - type: Transform pos: -1.5,6.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1583 + - uid: 936 components: - type: Transform rot: 1.5707963267948966 rad @@ -6411,7 +6575,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1585 + - uid: 937 components: - type: Transform rot: -1.5707963267948966 rad @@ -6419,7 +6583,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1589 + - uid: 938 components: - type: Transform rot: 1.5707963267948966 rad @@ -6427,7 +6591,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1590 + - uid: 939 components: - type: Transform rot: 1.5707963267948966 rad @@ -6435,7 +6599,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1591 + - uid: 940 components: - type: Transform rot: 1.5707963267948966 rad @@ -6443,7 +6607,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1592 + - uid: 941 components: - type: Transform rot: 1.5707963267948966 rad @@ -6451,7 +6615,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1593 + - uid: 942 components: - type: Transform rot: 1.5707963267948966 rad @@ -6459,7 +6623,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1594 + - uid: 943 components: - type: Transform rot: 1.5707963267948966 rad @@ -6467,7 +6631,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1595 + - uid: 944 components: - type: Transform rot: 1.5707963267948966 rad @@ -6475,7 +6639,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1596 + - uid: 945 components: - type: Transform rot: 1.5707963267948966 rad @@ -6483,7 +6647,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1597 + - uid: 946 components: - type: Transform rot: 1.5707963267948966 rad @@ -6491,7 +6655,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1598 + - uid: 947 components: - type: Transform rot: 1.5707963267948966 rad @@ -6499,7 +6663,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1599 + - uid: 948 components: - type: Transform rot: 1.5707963267948966 rad @@ -6507,7 +6671,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1600 + - uid: 949 components: - type: Transform rot: 1.5707963267948966 rad @@ -6515,7 +6679,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1601 + - uid: 950 components: - type: Transform rot: 1.5707963267948966 rad @@ -6523,7 +6687,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1604 + - uid: 951 components: - type: Transform rot: 3.141592653589793 rad @@ -6531,15 +6695,15 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1606 + - uid: 952 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-23.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1607 + color: '#990000FF' + - uid: 953 components: - type: Transform rot: 3.141592653589793 rad @@ -6547,7 +6711,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1608 + - uid: 954 components: - type: Transform rot: 3.141592653589793 rad @@ -6555,7 +6719,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1609 + - uid: 955 components: - type: Transform rot: 3.141592653589793 rad @@ -6563,7 +6727,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1610 + - uid: 956 components: - type: Transform rot: 3.141592653589793 rad @@ -6571,7 +6735,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1611 + - uid: 957 components: - type: Transform rot: 3.141592653589793 rad @@ -6579,7 +6743,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1612 + - uid: 958 components: - type: Transform rot: 3.141592653589793 rad @@ -6587,28 +6751,28 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1615 + - uid: 959 components: - type: Transform pos: -0.5,-11.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1616 + - uid: 960 components: - type: Transform pos: -0.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1617 + - uid: 961 components: - type: Transform pos: -0.5,-9.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1618 + - uid: 962 components: - type: Transform rot: -1.5707963267948966 rad @@ -6616,7 +6780,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1620 + - uid: 963 components: - type: Transform rot: 3.141592653589793 rad @@ -6624,7 +6788,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1621 + - uid: 964 components: - type: Transform rot: 3.141592653589793 rad @@ -6632,7 +6796,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1622 + - uid: 965 components: - type: Transform rot: 3.141592653589793 rad @@ -6640,7 +6804,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1623 + - uid: 966 components: - type: Transform rot: 3.141592653589793 rad @@ -6648,7 +6812,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1624 + - uid: 967 components: - type: Transform rot: 3.141592653589793 rad @@ -6656,7 +6820,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1626 + - uid: 968 components: - type: Transform rot: 1.5707963267948966 rad @@ -6664,7 +6828,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1627 + - uid: 969 components: - type: Transform rot: 1.5707963267948966 rad @@ -6672,7 +6836,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1628 + - uid: 970 components: - type: Transform rot: 1.5707963267948966 rad @@ -6680,7 +6844,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1629 + - uid: 971 components: - type: Transform rot: 1.5707963267948966 rad @@ -6688,7 +6852,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1632 + - uid: 972 components: - type: Transform rot: 3.141592653589793 rad @@ -6696,7 +6860,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1633 + - uid: 973 components: - type: Transform rot: 3.141592653589793 rad @@ -6704,7 +6868,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1634 + - uid: 974 components: - type: Transform rot: 3.141592653589793 rad @@ -6712,7 +6876,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1635 + - uid: 975 components: - type: Transform rot: 3.141592653589793 rad @@ -6720,7 +6884,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1636 + - uid: 976 components: - type: Transform rot: 3.141592653589793 rad @@ -6728,7 +6892,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1641 + - uid: 977 components: - type: Transform rot: -1.5707963267948966 rad @@ -6736,7 +6900,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1642 + - uid: 978 components: - type: Transform rot: -1.5707963267948966 rad @@ -6744,7 +6908,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1643 + - uid: 979 components: - type: Transform rot: -1.5707963267948966 rad @@ -6752,7 +6916,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1644 + - uid: 980 components: - type: Transform rot: -1.5707963267948966 rad @@ -6760,7 +6924,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1645 + - uid: 981 components: - type: Transform rot: -1.5707963267948966 rad @@ -6768,7 +6932,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1646 + - uid: 982 components: - type: Transform rot: -1.5707963267948966 rad @@ -6776,216 +6940,216 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1653 + - uid: 983 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1654 + color: '#990000FF' + - uid: 984 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1655 + color: '#990000FF' + - uid: 985 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1656 + color: '#990000FF' + - uid: 986 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1657 + color: '#990000FF' + - uid: 987 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1658 + color: '#990000FF' + - uid: 988 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1659 + color: '#990000FF' + - uid: 989 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1660 + color: '#990000FF' + - uid: 990 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-8.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1661 + color: '#990000FF' + - uid: 991 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-9.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1662 + color: '#990000FF' + - uid: 992 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-10.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1663 + color: '#990000FF' + - uid: 993 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-11.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1664 + color: '#990000FF' + - uid: 994 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-12.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1665 + color: '#990000FF' + - uid: 995 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-13.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1666 + color: '#990000FF' + - uid: 996 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-14.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1667 + color: '#990000FF' + - uid: 997 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-15.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1668 + color: '#990000FF' + - uid: 998 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-16.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1669 + color: '#990000FF' + - uid: 999 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-17.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1670 + color: '#990000FF' + - uid: 1000 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-18.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1671 + color: '#990000FF' + - uid: 1001 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-19.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1672 + color: '#990000FF' + - uid: 1002 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-20.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1673 + color: '#990000FF' + - uid: 1003 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-21.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1674 + color: '#990000FF' + - uid: 1004 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-22.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1675 + color: '#990000FF' + - uid: 1005 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-24.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1680 + color: '#990000FF' + - uid: 1006 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-25.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1681 + color: '#990000FF' + - uid: 1007 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-25.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1682 + color: '#990000FF' + - uid: 1008 components: - type: Transform pos: 6.5,-26.5 parent: 1 - type: AtmosPipeColor - color: '#947507FF' + color: '#990000FF' - proto: GasPipeTJunction entities: - - uid: 1429 + - uid: 1009 components: - type: Transform rot: -1.5707963267948966 rad @@ -6993,7 +7157,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1442 + - uid: 1010 components: - type: Transform rot: 3.141592653589793 rad @@ -7001,21 +7165,21 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1443 + - uid: 1011 components: - type: Transform pos: -1.5,-23.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1445 + - uid: 1012 components: - type: Transform pos: 2.5,-23.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1460 + - uid: 1013 components: - type: Transform rot: 3.141592653589793 rad @@ -7023,7 +7187,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1463 + - uid: 1014 components: - type: Transform rot: 3.141592653589793 rad @@ -7031,7 +7195,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1473 + - uid: 1015 components: - type: Transform rot: 3.141592653589793 rad @@ -7039,7 +7203,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1481 + - uid: 1016 components: - type: Transform rot: 3.141592653589793 rad @@ -7047,7 +7211,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1493 + - uid: 1017 components: - type: Transform rot: -1.5707963267948966 rad @@ -7055,7 +7219,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1530 + - uid: 1018 components: - type: Transform rot: -1.5707963267948966 rad @@ -7063,14 +7227,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1547 + - uid: 1019 components: - type: Transform pos: -0.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1553 + - uid: 1020 components: - type: Transform rot: -1.5707963267948966 rad @@ -7078,7 +7242,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1575 + - uid: 1021 components: - type: Transform rot: 3.141592653589793 rad @@ -7086,7 +7250,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1576 + - uid: 1022 components: - type: Transform rot: 3.141592653589793 rad @@ -7094,14 +7258,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1586 + - uid: 1023 components: - type: Transform pos: -1.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1587 + - uid: 1024 components: - type: Transform rot: 1.5707963267948966 rad @@ -7109,7 +7273,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1637 + - uid: 1025 components: - type: Transform rot: 3.141592653589793 rad @@ -7117,7 +7281,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1638 + - uid: 1026 components: - type: Transform rot: 3.141592653589793 rad @@ -7125,7 +7289,7 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1647 + - uid: 1027 components: - type: Transform rot: 3.141592653589793 rad @@ -7135,7 +7299,7 @@ entities: color: '#990000FF' - proto: GasPort entities: - - uid: 418 + - uid: 1028 components: - type: Transform rot: 1.5707963267948966 rad @@ -7143,7 +7307,7 @@ entities: parent: 1 - type: AtmosDevice joinedGrid: 1 - - uid: 419 + - uid: 1029 components: - type: Transform rot: 1.5707963267948966 rad @@ -7153,7 +7317,7 @@ entities: joinedGrid: 1 - proto: GasVentPump entities: - - uid: 1464 + - uid: 1030 components: - type: Transform pos: 1.5,-6.5 @@ -7162,7 +7326,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1499 + - uid: 1031 components: - type: Transform rot: 1.5707963267948966 rad @@ -7172,7 +7336,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1500 + - uid: 1032 components: - type: Transform rot: 1.5707963267948966 rad @@ -7182,7 +7346,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1501 + - uid: 1033 components: - type: Transform rot: -1.5707963267948966 rad @@ -7192,7 +7356,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1502 + - uid: 1034 components: - type: Transform rot: 3.141592653589793 rad @@ -7202,7 +7366,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1503 + - uid: 1035 components: - type: Transform pos: 0.5,14.5 @@ -7211,7 +7375,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1506 + - uid: 1036 components: - type: Transform pos: 2.5,9.5 @@ -7220,7 +7384,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1507 + - uid: 1037 components: - type: Transform pos: -3.5,7.5 @@ -7229,7 +7393,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1508 + - uid: 1038 components: - type: Transform rot: 1.5707963267948966 rad @@ -7239,7 +7403,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1509 + - uid: 1039 components: - type: Transform rot: -1.5707963267948966 rad @@ -7249,7 +7413,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1517 + - uid: 1040 components: - type: Transform rot: 1.5707963267948966 rad @@ -7259,7 +7423,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1518 + - uid: 1041 components: - type: Transform rot: -1.5707963267948966 rad @@ -7269,7 +7433,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1519 + - uid: 1042 components: - type: Transform rot: 3.141592653589793 rad @@ -7279,7 +7443,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1520 + - uid: 1043 components: - type: Transform rot: 3.141592653589793 rad @@ -7289,7 +7453,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1521 + - uid: 1044 components: - type: Transform rot: 3.141592653589793 rad @@ -7299,7 +7463,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1522 + - uid: 1045 components: - type: Transform rot: 3.141592653589793 rad @@ -7309,7 +7473,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1526 + - uid: 1046 components: - type: Transform pos: -4.5,-3.5 @@ -7318,7 +7482,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1527 + - uid: 1047 components: - type: Transform rot: -1.5707963267948966 rad @@ -7330,7 +7494,7 @@ entities: color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 1554 + - uid: 1048 components: - type: Transform rot: 1.5707963267948966 rad @@ -7340,7 +7504,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1555 + - uid: 1049 components: - type: Transform rot: -1.5707963267948966 rad @@ -7350,7 +7514,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1577 + - uid: 1050 components: - type: Transform rot: 1.5707963267948966 rad @@ -7360,7 +7524,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1578 + - uid: 1051 components: - type: Transform pos: -1.5,7.5 @@ -7369,7 +7533,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1579 + - uid: 1052 components: - type: Transform pos: 3.5,6.5 @@ -7378,7 +7542,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1581 + - uid: 1053 components: - type: Transform rot: -1.5707963267948966 rad @@ -7388,7 +7552,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1605 + - uid: 1054 components: - type: Transform rot: 1.5707963267948966 rad @@ -7398,7 +7562,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1613 + - uid: 1055 components: - type: Transform pos: -7.5,-4.5 @@ -7407,7 +7571,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1614 + - uid: 1056 components: - type: Transform pos: 7.5,-5.5 @@ -7416,7 +7580,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1619 + - uid: 1057 components: - type: Transform rot: -1.5707963267948966 rad @@ -7426,7 +7590,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1630 + - uid: 1058 components: - type: Transform rot: 1.5707963267948966 rad @@ -7436,7 +7600,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1631 + - uid: 1059 components: - type: Transform rot: -1.5707963267948966 rad @@ -7446,7 +7610,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1648 + - uid: 1060 components: - type: Transform pos: -4.5,-23.5 @@ -7455,7 +7619,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1649 + - uid: 1061 components: - type: Transform pos: -2.5,-23.5 @@ -7464,7 +7628,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1650 + - uid: 1062 components: - type: Transform pos: 1.5,-23.5 @@ -7473,7 +7637,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1651 + - uid: 1063 components: - type: Transform pos: 5.5,-23.5 @@ -7482,7 +7646,7 @@ entities: joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1652 + - uid: 1064 components: - type: Transform rot: 3.141592653589793 rad @@ -7494,7 +7658,7 @@ entities: color: '#990000FF' - proto: GasVolumePump entities: - - uid: 675 + - uid: 1065 components: - type: Transform rot: 1.5707963267948966 rad @@ -7506,822 +7670,776 @@ entities: color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 417 + - uid: 1066 components: - type: Transform pos: -1.5,-1.5 parent: 1 - proto: Grille entities: - - uid: 5 - components: - - type: Transform - pos: -8.5,2.5 - parent: 1 - - uid: 6 + - uid: 1067 components: - type: Transform - pos: -8.5,1.5 + pos: -8.5,2.5 parent: 1 - - uid: 7 + - uid: 1068 components: - type: Transform pos: -8.5,0.5 parent: 1 - - uid: 9 + - uid: 1069 components: - type: Transform pos: -10.5,1.5 parent: 1 - - uid: 11 + - uid: 1070 components: - type: Transform pos: 9.5,2.5 parent: 1 - - uid: 12 - components: - - type: Transform - pos: 9.5,1.5 - parent: 1 - - uid: 13 + - uid: 1071 components: - type: Transform pos: 9.5,0.5 parent: 1 - - uid: 14 - components: - - type: Transform - pos: -10.5,3.5 - parent: 1 - - uid: 15 + - uid: 1072 components: - type: Transform pos: 11.5,1.5 parent: 1 - - uid: 16 + - uid: 1073 components: - type: Transform pos: 11.5,-1.5 parent: 1 - - uid: 27 + - uid: 1074 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-25.5 parent: 1 - - uid: 45 + - uid: 1075 components: - type: Transform pos: -8.5,-19.5 parent: 1 - - uid: 52 + - uid: 1076 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-25.5 parent: 1 - - uid: 61 + - uid: 1077 components: - type: Transform pos: 9.5,-19.5 parent: 1 - - uid: 69 + - uid: 1078 components: - type: Transform pos: 6.5,-26.5 parent: 1 - - uid: 75 + - uid: 1079 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-13.5 parent: 1 - - uid: 76 + - uid: 1080 components: - type: Transform pos: 2.5,-26.5 parent: 1 - - uid: 80 + - uid: 1081 components: - type: Transform pos: 4.5,-24.5 parent: 1 - - uid: 81 + - uid: 1082 components: - type: Transform pos: -5.5,-26.5 parent: 1 - - uid: 85 + - uid: 1083 components: - type: Transform pos: -1.5,-26.5 parent: 1 - - uid: 90 + - uid: 1084 components: - type: Transform pos: 0.5,-24.5 parent: 1 - - uid: 98 + - uid: 1085 components: - type: Transform pos: -3.5,-24.5 parent: 1 - - uid: 100 + - uid: 1086 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 1 - - uid: 108 + - uid: 1087 components: - type: Transform pos: -10.5,0.5 parent: 1 - - uid: 110 + - uid: 1088 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,9.5 parent: 1 - - uid: 120 + - uid: 1089 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-4.5 parent: 1 - - uid: 121 + - uid: 1090 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-9.5 parent: 1 - - uid: 125 + - uid: 1091 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-5.5 parent: 1 - - uid: 126 + - uid: 1092 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-4.5 parent: 1 - - uid: 129 + - uid: 1093 components: - type: Transform pos: -10.5,-0.5 parent: 1 - - uid: 130 + - uid: 1094 components: - type: Transform pos: -8.5,-0.5 parent: 1 - - uid: 131 + - uid: 1095 components: - type: Transform pos: 9.5,-0.5 parent: 1 - - uid: 132 + - uid: 1096 components: - type: Transform pos: 11.5,-0.5 parent: 1 - - uid: 135 + - uid: 1097 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-9.5 parent: 1 - - uid: 136 + - uid: 1098 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-9.5 parent: 1 - - uid: 137 + - uid: 1099 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-9.5 parent: 1 - - uid: 153 + - uid: 1100 components: - type: Transform pos: -10.5,-1.5 parent: 1 - - uid: 156 + - uid: 1101 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-5.5 parent: 1 - - uid: 195 + - uid: 1102 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-13.5 parent: 1 - - uid: 196 + - uid: 1103 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-15.5 parent: 1 - - uid: 219 + - uid: 1104 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,9.5 parent: 1 - - uid: 221 + - uid: 1105 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,10.5 parent: 1 - - uid: 223 + - uid: 1106 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,10.5 parent: 1 - - uid: 225 + - uid: 1107 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,9.5 parent: 1 - - uid: 267 + - uid: 1108 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-21.5 parent: 1 - - uid: 269 + - uid: 1109 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-21.5 parent: 1 - - uid: 270 + - uid: 1110 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-21.5 parent: 1 - - uid: 272 + - uid: 1111 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-21.5 parent: 1 - - uid: 274 + - uid: 1112 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-13.5 parent: 1 - - uid: 287 + - uid: 1113 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,5.5 parent: 1 - - uid: 299 + - uid: 1114 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,15.5 parent: 1 - - uid: 301 + - uid: 1115 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,16.5 parent: 1 - - uid: 302 + - uid: 1116 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,15.5 parent: 1 - - uid: 303 + - uid: 1117 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,16.5 parent: 1 - - uid: 304 + - uid: 1118 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,17.5 parent: 1 - - uid: 305 + - uid: 1119 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,17.5 parent: 1 - - uid: 306 + - uid: 1120 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,17.5 parent: 1 - - uid: 338 + - uid: 1121 components: - type: Transform pos: 11.5,3.5 parent: 1 - - uid: 363 + - uid: 1122 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,16.5 parent: 1 - - uid: 364 + - uid: 1123 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,17.5 parent: 1 - - uid: 365 + - uid: 1124 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,17.5 parent: 1 - - uid: 366 + - uid: 1125 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,16.5 parent: 1 - - uid: 435 + - uid: 1126 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-5.5 parent: 1 - - uid: 438 + - uid: 1127 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-8.5 parent: 1 - - uid: 439 + - uid: 1128 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-8.5 parent: 1 - - uid: 444 + - uid: 1129 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-6.5 parent: 1 - - uid: 508 + - uid: 1130 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,11.5 parent: 1 - - uid: 522 + - uid: 1131 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,5.5 parent: 1 - - uid: 527 + - uid: 1132 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,4.5 parent: 1 - - uid: 529 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,4.5 - parent: 1 - - uid: 530 + - uid: 1133 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 1 - - uid: 531 + - uid: 1134 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 1 - - uid: 625 + - uid: 1135 components: - type: Transform pos: 11.5,0.5 parent: 1 - - uid: 628 + - uid: 1136 components: - type: Transform pos: -12.5,3.5 parent: 1 - - uid: 629 + - uid: 1137 components: - type: Transform pos: 13.5,3.5 parent: 1 - - uid: 706 + - uid: 1138 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-5.5 parent: 1 - - uid: 782 + - uid: 1139 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-5.5 parent: 1 - - uid: 787 + - uid: 1140 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-4.5 parent: 1 - - uid: 792 - components: - - type: Transform - pos: -3.5,2.5 - parent: 1 - - uid: 793 - components: - - type: Transform - pos: 4.5,2.5 - parent: 1 - - uid: 804 + - uid: 1141 components: - type: Transform pos: 8.5,-2.5 parent: 1 - - uid: 836 + - uid: 1142 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 840 + - uid: 1143 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 841 + - uid: 1144 components: - type: Transform pos: -3.5,-0.5 parent: 1 - - uid: 842 + - uid: 1145 components: - type: Transform pos: -7.5,-2.5 parent: 1 - - uid: 843 + - uid: 1146 components: - type: Transform pos: -5.5,-1.5 parent: 1 -- proto: GunSafeRifleLecter - entities: - - uid: 593 + - uid: 1147 components: - type: Transform - pos: -2.5,9.5 + rot: -1.5707963267948966 rad + pos: -4.5,4.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 -- proto: GyroscopeSecurity + - uid: 1148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + - uid: 1149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 1 + - uid: 1150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 +- proto: GyroscopeNfsd entities: - - uid: 263 + - uid: 1151 components: - type: Transform pos: 3.5,-27.5 parent: 1 - - uid: 264 + - uid: 1152 components: - type: Transform pos: -2.5,-27.5 parent: 1 - - uid: 293 + - uid: 1153 components: - type: Transform pos: 0.5,-27.5 parent: 1 - proto: HandheldGPSBasic entities: - - uid: 857 + - uid: 1154 components: - type: Transform pos: 7.369202,-6.5732136 parent: 1 - - uid: 858 + - uid: 1155 components: - type: Transform pos: 7.650452,-6.4325886 parent: 1 - - uid: 859 + - uid: 1156 components: - type: Transform pos: 7.322327,-5.6357136 parent: 1 - - uid: 860 + - uid: 1157 components: - type: Transform pos: 7.603577,-5.4169636 parent: 1 - proto: HighSecArmoryLocked entities: - - uid: 651 + - uid: 1158 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,10.5 parent: 1 -- proto: HoloprojectorSecurity +- proto: HoloprojectorNfsd entities: - - uid: 954 + - uid: 1159 components: - type: Transform pos: 1.1822467,-5.154647 parent: 1 - - uid: 955 + - uid: 1160 components: - type: Transform pos: 1.2291217,-5.435897 parent: 1 - proto: HospitalCurtainsOpen entities: - - uid: 181 + - uid: 1161 components: - type: Transform pos: -4.5,11.5 parent: 1 - - uid: 533 + - uid: 1162 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,3.5 parent: 1 - - uid: 568 + - uid: 1163 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,3.5 parent: 1 - - uid: 569 + - uid: 1164 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,3.5 parent: 1 - - uid: 570 + - uid: 1165 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,3.5 parent: 1 - - uid: 701 + - uid: 1166 components: - type: Transform pos: -9.5,-6.5 parent: 1 - - uid: 702 + - uid: 1167 components: - type: Transform pos: -8.5,-7.5 parent: 1 - - uid: 703 + - uid: 1168 components: - type: Transform pos: -7.5,-8.5 parent: 1 - - uid: 786 + - uid: 1169 components: - type: Transform pos: -3.5,-6.5 parent: 1 - - uid: 885 + - uid: 1170 components: - type: Transform pos: -4.5,-25.5 parent: 1 - - uid: 886 + - uid: 1171 components: - type: Transform pos: -0.5,-25.5 parent: 1 - - uid: 887 + - uid: 1172 components: - type: Transform pos: 1.5,-25.5 parent: 1 - - uid: 888 + - uid: 1173 components: - type: Transform pos: 5.5,-25.5 parent: 1 - - uid: 921 - components: - - type: Transform - pos: -7.5,-18.5 - parent: 1 - - uid: 922 + - uid: 1174 components: - type: Transform pos: 8.5,-18.5 parent: 1 - proto: hydroponicsTray entities: - - uid: 923 + - uid: 1175 components: - type: Transform - pos: -3.5,-14.5 + rot: 1.5707963267948966 rad + pos: -5.5,-16.5 parent: 1 - - uid: 924 + - uid: 1176 components: - type: Transform - pos: -2.5,-14.5 + pos: -3.5,-14.5 parent: 1 - - uid: 925 + - uid: 1177 components: - type: Transform - pos: -4.5,-15.5 + pos: -2.5,-14.5 parent: 1 - - uid: 926 + - uid: 1178 components: - type: Transform - pos: -5.5,-16.5 + pos: -4.5,-15.5 parent: 1 -- proto: IntercomSecurity +- proto: IntercomNfsd entities: - - uid: 819 + - uid: 1179 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-14.5 parent: 1 - - uid: 820 + - uid: 1180 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 1 -- proto: JetpackSecurityFilled +- proto: JetpackNfsdFilled entities: - - uid: 642 + - uid: 1181 components: - type: Transform pos: -5.624806,4.6005287 parent: 1 - - uid: 643 + - uid: 1182 components: - type: Transform pos: -5.468556,4.4442787 parent: 1 - - uid: 644 + - uid: 1183 components: - type: Transform pos: 6.375194,4.6317787 parent: 1 - - uid: 645 + - uid: 1184 components: - type: Transform pos: 6.562694,4.3974037 parent: 1 - proto: KitchenKnife entities: - - uid: 771 + - uid: 1185 components: - type: Transform pos: 5.1434035,11.657407 parent: 1 - proto: KitchenMicrowave entities: - - uid: 389 + - uid: 1186 components: - type: Transform pos: 4.5,11.5 parent: 1 - - uid: 933 + - uid: 1187 components: - type: Transform pos: 4.5,-14.5 parent: 1 - proto: KitchenReagentGrinder entities: - - uid: 684 + - uid: 1188 components: - type: Transform pos: 5.5,11.5 parent: 1 - - uid: 710 + - uid: 1189 components: - type: Transform pos: -5.5,-4.5 parent: 1 -- proto: LampBanana +- proto: Lamp entities: - - uid: 880 + - uid: 1190 components: - type: Transform - pos: -6.3080535,-25.001328 + rot: -1.5707963267948966 rad + pos: -6.3406034,-24.864592 parent: 1 - - uid: 916 + - uid: 1191 components: - type: Transform - pos: -2.319524,-25.035053 + rot: 1.5707963267948966 rad + pos: 3.4018779,-24.883701 parent: 1 - - uid: 917 +- proto: LampBanana + entities: + - uid: 1192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.492976,-25.035053 + pos: -2.319524,-25.035053 parent: 1 - - uid: 918 +- proto: LampGold + entities: + - uid: 1193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.4617257,-25.035053 + rot: 1.5707963267948966 rad + pos: 7.287295,-24.904537 parent: 1 -- proto: LampGold - entities: - - uid: 960 + - uid: 1194 components: - type: Transform - pos: -3.663064,11.937371 + rot: 3.141592653589793 rad + pos: -1.9738367,12.096232 parent: 1 -- proto: LockerBrigmedicFilledHardsuit +- proto: LockerNfsdBrigmedic entities: - - uid: 588 + - uid: 1195 components: - type: Transform pos: -3.5,-1.5 parent: 1 -- proto: LockerEvidence +- proto: LockerNfsdEvidence entities: - - uid: 709 + - uid: 1196 components: - type: Transform pos: -1.5,-7.5 parent: 1 - - uid: 941 + - uid: 1197 components: - type: Transform pos: -0.5,-8.5 parent: 1 - - uid: 942 + - uid: 1198 components: - type: Transform pos: 1.5,-8.5 parent: 1 - - uid: 943 + - uid: 1199 components: - type: Transform pos: 2.5,-7.5 parent: 1 -- proto: LockerSalvageSpecialistFilled - entities: - - uid: 868 - components: - - type: Transform - pos: 8.5,-3.5 - parent: 1 - - uid: 869 - components: - - type: Transform - pos: 10.5,-5.5 - parent: 1 -- proto: LockerSecurityFilled +- proto: LockerNfsdSilver entities: - - uid: 558 + - uid: 1200 components: - type: Transform pos: -1.5,4.5 @@ -8330,8 +8448,10 @@ entities: air: volume: 200 immutable: False - temperature: 75.31249 + temperature: 293.1494 moles: + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -8342,20 +8462,7 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 559 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 560 + - uid: 1201 components: - type: Transform pos: -3.5,4.5 @@ -8364,8 +8471,10 @@ entities: air: volume: 200 immutable: False - temperature: 75.31249 + temperature: 293.1494 moles: + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -8376,30 +8485,45 @@ entities: - 0 - 0 - 0 + - uid: 1202 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1494 + moles: + - 1.7459903 + - 6.568249 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 561 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 572 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 1203 components: - type: Transform - pos: 2.5,4.5 + pos: 4.5,4.5 parent: 1 - type: EntityStorage air: volume: 200 immutable: False - temperature: 75.31249 + temperature: 293.14923 moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 - 0 - 0 - 0 @@ -8407,82 +8531,121 @@ entities: - 0 - 0 - 0 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 1204 + components: + - type: Transform + pos: 8.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 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 573 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 661 + - 0 + - 0 + - 0 + - 0 + - uid: 1205 components: - type: Transform - pos: 4.5,4.5 + pos: 10.5,-5.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 - proto: MedicalBed entities: - - uid: 585 + - uid: 1206 components: - type: Transform pos: -8.5,-7.5 parent: 1 - - uid: 586 + - uid: 1207 components: - type: Transform pos: -9.5,-6.5 parent: 1 - - uid: 587 + - uid: 1208 components: - type: Transform pos: -7.5,-8.5 parent: 1 - proto: MedkitAdvancedFilled entities: - - uid: 715 + - uid: 1209 components: - type: Transform pos: -6.640077,-8.341145 parent: 1 - proto: MedkitBruteFilled entities: - - uid: 713 + - uid: 1210 components: - type: Transform pos: -9.671328,-5.2630196 parent: 1 - proto: MedkitBurnFilled entities: - - uid: 714 + - uid: 1211 components: - type: Transform - pos: -9.343203,-5.5755196 + pos: -9.576968,-5.6438694 parent: 1 - proto: MedkitCombatFilled entities: - - uid: 716 + - uid: 1212 components: - type: Transform pos: -6.374452,-8.63802 parent: 1 -- proto: Multitool +- proto: NfsdDeployableBarrier entities: - - uid: 1773 + - uid: 1213 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 1214 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 +- proto: NfsdTechFab + entities: + - uid: 1215 components: - type: Transform - pos: 2.822629,1.5929072 + pos: -1.5,9.5 parent: 1 - proto: NitrogenCanister entities: - - uid: 173 + - uid: 1216 components: - type: Transform pos: -1.5,0.5 @@ -8491,36 +8654,36 @@ entities: joinedGrid: 1 - proto: OreBox entities: - - uid: 646 + - uid: 1217 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 647 + - uid: 1218 components: - type: Transform pos: 4.5,-4.5 parent: 1 - - uid: 725 + - uid: 1219 components: - type: Transform pos: 6.5,-5.5 parent: 1 - - uid: 726 + - uid: 1220 components: - type: Transform pos: 6.5,-6.5 parent: 1 - proto: OreProcessor entities: - - uid: 723 + - uid: 1221 components: - type: Transform pos: 4.5,-6.5 parent: 1 - proto: OxygenCanister entities: - - uid: 401 + - uid: 1222 components: - type: Transform pos: -1.5,1.5 @@ -8529,1057 +8692,983 @@ entities: joinedGrid: 1 - proto: Paper entities: - - uid: 881 + - uid: 1223 components: - type: Transform pos: -6.7455535,-25.360703 parent: 1 - - uid: 882 + - uid: 1224 components: - type: Transform pos: -6.6830535,-25.548203 parent: 1 - - uid: 883 + - uid: 1225 components: - type: Transform pos: -6.5893035,-25.735703 parent: 1 - - uid: 904 + - uid: 1226 components: - type: Transform pos: -2.819524,-25.425678 parent: 1 - - uid: 905 + - uid: 1227 components: - type: Transform pos: -2.741399,-25.597553 parent: 1 - - uid: 906 + - uid: 1228 components: - type: Transform pos: -2.632024,-25.831928 parent: 1 - - uid: 907 + - uid: 1229 components: - type: Transform pos: 3.8679757,-25.441303 parent: 1 - - uid: 908 + - uid: 1230 components: - type: Transform pos: 3.758601,-25.597553 parent: 1 - - uid: 909 + - uid: 1231 components: - type: Transform pos: 3.586726,-25.769428 parent: 1 - - uid: 910 + - uid: 1232 components: - type: Transform pos: 7.8836007,-25.394428 parent: 1 - - uid: 911 + - uid: 1233 components: - type: Transform pos: 7.7429757,-25.566303 parent: 1 - - uid: 912 + - uid: 1234 components: - type: Transform pos: 7.5867257,-25.738178 parent: 1 - - uid: 1739 - components: - - type: Transform - pos: -3.5133247,11.476894 - parent: 1 - - uid: 1740 - components: - - type: Transform - pos: -3.5133247,11.476894 - parent: 1 - - uid: 1741 + - uid: 1235 components: - type: Transform - pos: -3.5133247,11.476894 + pos: 0.73667544,15.028978 parent: 1 - - uid: 1742 + - uid: 1236 components: - type: Transform - pos: -3.5133247,11.476894 + pos: 0.67417544,15.060228 parent: 1 - - uid: 1743 + - uid: 1237 components: - type: Transform - pos: -3.5133247,11.476894 + pos: 0.58042544,15.091478 parent: 1 - - uid: 1744 +- proto: PaperBin20 + entities: + - uid: 1238 components: - type: Transform - pos: 0.73667544,15.028978 + rot: -1.5707963267948966 rad + pos: -1.5,11.5 parent: 1 - - uid: 1745 +- proto: PaperOffice + entities: + - uid: 1239 components: - type: Transform - pos: 0.67417544,15.060228 + pos: -2.4780793,11.495315 parent: 1 - - uid: 1746 + - uid: 1240 components: - type: Transform - pos: 0.58042544,15.091478 + pos: -2.6612358,11.629893 parent: 1 -- proto: PartRodMetal +- proto: PartRodMetal10 entities: - - uid: 445 + - uid: 1241 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 442 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -7.429461,-20.642553 + parent: 1 - proto: Pen entities: - - uid: 884 + - uid: 1242 components: - type: Transform pos: -6.3705535,-25.532578 parent: 1 - - uid: 913 + - uid: 1243 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.3679757,-25.597553 parent: 1 - - uid: 914 + - uid: 1244 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.352351,-25.613178 parent: 1 - - uid: 915 + - uid: 1245 components: - type: Transform pos: -2.413274,-25.566303 parent: 1 - - uid: 1747 + - uid: 1246 components: - type: Transform pos: 0.2575087,15.01856 parent: 1 - proto: PenCap entities: - - uid: 961 + - uid: 1247 components: - type: Transform - pos: -3.334939,11.812371 + pos: -2.99358,11.696581 parent: 1 + - type: Stamp + stampedName: localhost@Gotimanga - proto: PinpointerUniversal entities: - - uid: 717 + - uid: 1248 components: - type: Transform pos: -5.6257563,4.579997 parent: 1 - - uid: 718 + - uid: 1249 components: - type: Transform pos: -5.3757563,4.314372 parent: 1 - - uid: 719 + - uid: 1250 components: - type: Transform pos: 6.354094,4.611247 parent: 1 - - uid: 720 + - uid: 1251 components: - type: Transform pos: 6.635344,4.236247 parent: 1 - - uid: 851 + - uid: 1252 components: - type: Transform pos: -0.1088182,-5.3039255 parent: 1 - - uid: 852 + - uid: 1253 components: - type: Transform pos: 0.026598468,-5.5747585 parent: 1 - - uid: 853 + - uid: 1254 components: - type: Transform pos: 0.81826514,-5.2205915 parent: 1 - - uid: 1752 + - uid: 1255 components: - type: Transform pos: 0.89118177,-5.5226755 parent: 1 - proto: PlastitaniumWindow entities: - - uid: 147 + - uid: 1256 components: - type: Transform + rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 1 - - uid: 217 + - uid: 1257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + - uid: 1258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 1 + - uid: 1259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + - uid: 1260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - uid: 1261 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,15.5 parent: 1 - - uid: 295 + - uid: 1262 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,16.5 parent: 1 - - uid: 296 + - uid: 1263 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,16.5 parent: 1 - - uid: 297 + - uid: 1264 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,17.5 parent: 1 - - uid: 298 + - uid: 1265 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,17.5 parent: 1 - - uid: 300 + - uid: 1266 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,17.5 parent: 1 - - uid: 322 + - uid: 1267 components: - type: Transform pos: -10.5,0.5 parent: 1 - - uid: 323 + - uid: 1268 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,1.5 parent: 1 - - uid: 324 + - uid: 1269 components: - type: Transform pos: 11.5,-1.5 parent: 1 - - uid: 325 + - uid: 1270 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-0.5 parent: 1 - - uid: 326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-0.5 - parent: 1 - - uid: 327 + - uid: 1271 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,0.5 parent: 1 - - uid: 328 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,1.5 - parent: 1 - - uid: 329 + - uid: 1272 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,2.5 parent: 1 - - uid: 330 + - uid: 1273 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-4.5 parent: 1 - - uid: 331 + - uid: 1274 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-5.5 parent: 1 - - uid: 332 + - uid: 1275 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-9.5 parent: 1 - - uid: 333 + - uid: 1276 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-9.5 parent: 1 - - uid: 334 + - uid: 1277 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-9.5 parent: 1 - - uid: 335 + - uid: 1278 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-9.5 parent: 1 - - uid: 336 + - uid: 1279 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-5.5 parent: 1 - - uid: 337 + - uid: 1280 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-4.5 parent: 1 - - uid: 339 + - uid: 1281 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,1.5 parent: 1 - - uid: 340 + - uid: 1282 components: - type: Transform pos: -10.5,-1.5 parent: 1 - - uid: 341 + - uid: 1283 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-0.5 parent: 1 - - uid: 342 + - uid: 1284 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,2.5 parent: 1 - - uid: 343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,1.5 - parent: 1 - - uid: 344 + - uid: 1285 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,0.5 parent: 1 - - uid: 345 + - uid: 1286 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-0.5 parent: 1 - - uid: 346 + - uid: 1287 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-15.5 parent: 1 - - uid: 347 + - uid: 1288 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-13.5 parent: 1 - - uid: 348 + - uid: 1289 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,15.5 parent: 1 - - uid: 367 + - uid: 1290 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,16.5 parent: 1 - - uid: 368 + - uid: 1291 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,17.5 parent: 1 - - uid: 369 + - uid: 1292 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,17.5 parent: 1 - - uid: 370 + - uid: 1293 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,16.5 parent: 1 - - uid: 447 + - uid: 1294 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-5.5 parent: 1 - - uid: 448 + - uid: 1295 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-6.5 parent: 1 - - uid: 449 + - uid: 1296 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-8.5 parent: 1 - - uid: 450 + - uid: 1297 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-8.5 parent: 1 - - uid: 457 - components: - - type: Transform - pos: 4.5,2.5 - parent: 1 - - uid: 459 - components: - - type: Transform - pos: 4.5,-0.5 - parent: 1 - - uid: 475 + - uid: 1298 components: - type: Transform pos: -8.5,-19.5 parent: 1 - - uid: 476 + - uid: 1299 components: - type: Transform pos: -5.5,-26.5 parent: 1 - - uid: 477 + - uid: 1300 components: - type: Transform pos: -3.5,-24.5 parent: 1 - - uid: 478 + - uid: 1301 components: - type: Transform pos: -1.5,-26.5 parent: 1 - - uid: 479 + - uid: 1302 components: - type: Transform pos: 0.5,-24.5 parent: 1 - - uid: 480 + - uid: 1303 components: - type: Transform pos: 2.5,-26.5 parent: 1 - - uid: 481 + - uid: 1304 components: - type: Transform pos: 4.5,-24.5 parent: 1 - - uid: 482 + - uid: 1305 components: - type: Transform pos: 6.5,-26.5 parent: 1 - - uid: 483 + - uid: 1306 components: - type: Transform pos: 9.5,-19.5 parent: 1 - - uid: 490 + - uid: 1307 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,-25.5 parent: 1 - - uid: 491 + - uid: 1308 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-25.5 parent: 1 - - uid: 492 + - uid: 1309 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-21.5 parent: 1 - - uid: 493 + - uid: 1310 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-21.5 parent: 1 - - uid: 494 + - uid: 1311 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-21.5 parent: 1 - - uid: 495 + - uid: 1312 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-21.5 parent: 1 - - uid: 496 + - uid: 1313 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-13.5 parent: 1 - - uid: 497 + - uid: 1314 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-13.5 parent: 1 - - uid: 509 + - uid: 1315 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,11.5 parent: 1 - - uid: 514 + - uid: 1316 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,5.5 parent: 1 - - uid: 515 + - uid: 1317 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,9.5 parent: 1 - - uid: 516 + - uid: 1318 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,9.5 parent: 1 - - uid: 517 + - uid: 1319 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,10.5 parent: 1 - - uid: 518 + - uid: 1320 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,10.5 parent: 1 - - uid: 519 + - uid: 1321 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,9.5 parent: 1 - - uid: 520 + - uid: 1322 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,9.5 parent: 1 - - uid: 523 + - uid: 1323 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,5.5 parent: 1 - - uid: 524 + - uid: 1324 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 1 - - uid: 526 + - uid: 1325 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,4.5 parent: 1 - - uid: 547 + - uid: 1326 components: - type: Transform pos: 11.5,0.5 parent: 1 - - uid: 550 + - uid: 1327 components: - type: Transform pos: 6.5,-1.5 parent: 1 - - uid: 556 + - uid: 1328 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 1 - - uid: 557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,4.5 - parent: 1 - - uid: 591 + - uid: 1329 components: - type: Transform pos: -7.5,-2.5 parent: 1 - - uid: 604 + - uid: 1330 components: - type: Transform pos: 11.5,3.5 parent: 1 - - uid: 612 - components: - - type: Transform - pos: -10.5,3.5 - parent: 1 - - uid: 617 + - uid: 1331 components: - type: Transform pos: -12.5,3.5 parent: 1 - - uid: 690 + - uid: 1332 components: - type: Transform pos: -6.5,-5.5 parent: 1 - - uid: 691 + - uid: 1333 components: - type: Transform pos: -6.5,-4.5 parent: 1 - - uid: 693 + - uid: 1334 components: - type: Transform pos: -5.5,-5.5 parent: 1 - - uid: 697 + - uid: 1335 components: - type: Transform pos: 8.5,-2.5 parent: 1 - - uid: 770 + - uid: 1336 components: - type: Transform pos: 13.5,3.5 parent: 1 - - uid: 781 + - uid: 1337 components: - type: Transform pos: -5.5,-1.5 parent: 1 - - uid: 844 + - uid: 1338 components: - type: Transform - pos: -3.5,2.5 + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 1 + - uid: 1339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 parent: 1 - proto: PottedPlantRandom entities: - - uid: 789 + - uid: 1340 components: - type: Transform pos: -10.5,7.5 parent: 1 - - uid: 790 + - uid: 1341 components: - type: Transform pos: 11.5,7.5 parent: 1 - - uid: 845 + - uid: 1342 components: - type: Transform pos: -7.5,-4.5 parent: 1 - proto: PottedPlantRandomPlastic entities: - - uid: 712 + - uid: 1343 components: - type: Transform pos: 0.5,-16.5 parent: 1 - proto: PowerCellRecharger entities: - - uid: 407 + - uid: 1344 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 465 + - uid: 1345 components: - type: Transform pos: -0.5,-5.5 parent: 1 - proto: Poweredlight entities: - - uid: 1263 + - uid: 1346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 1347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + - uid: 1348 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-2.5 parent: 1 - - uid: 1335 + - uid: 1349 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-9.5 parent: 1 - - uid: 1336 + - uid: 1350 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-9.5 parent: 1 - - uid: 1337 + - uid: 1351 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 1338 + - uid: 1352 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-7.5 parent: 1 - - uid: 1339 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,-3.5 - parent: 1 - - uid: 1340 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 1 - - uid: 1341 + - uid: 1353 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-7.5 parent: 1 - - uid: 1342 + - uid: 1354 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 9.5,-3.5 + rot: 1.5707963267948966 rad + pos: -9.5,-3.5 parent: 1 - - uid: 1344 + - uid: 1355 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -9.5,-1.5 parent: 1 - - uid: 1345 + - uid: 1356 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -9.5,2.5 parent: 1 - - uid: 1346 + - uid: 1357 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 10.5,2.5 parent: 1 - - uid: 1347 + - uid: 1358 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,-1.5 parent: 1 - - uid: 1348 + - uid: 1359 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,5.5 parent: 1 - - uid: 1349 + - uid: 1360 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -4.5,5.5 parent: 1 - - uid: 1350 + - uid: 1361 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,8.5 parent: 1 - - uid: 1351 + - uid: 1362 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,8.5 parent: 1 - - uid: 1352 + - uid: 1363 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 0.5,9.5 parent: 1 - - uid: 1365 + - uid: 1364 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -7.5,8.5 parent: 1 - - uid: 1366 + - uid: 1365 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 5.5,9.5 parent: 1 - - uid: 1370 + - uid: 1366 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,8.5 parent: 1 - - uid: 1371 + - uid: 1367 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,5.5 parent: 1 - proto: PoweredlightColoredBlack entities: - - uid: 1353 + - uid: 1368 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 2.5,14.5 parent: 1 - - uid: 1354 + - uid: 1369 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,14.5 parent: 1 - proto: PoweredlightColoredFrostyBlue entities: - - uid: 1363 + - uid: 1370 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,1.5 parent: 1 - - uid: 1373 + - uid: 1371 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-6.5 parent: 1 - - uid: 1374 + - uid: 1372 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 0.5,-30.5 parent: 1 - - uid: 1375 + - uid: 1373 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-6.5 parent: 1 - - uid: 1376 + - uid: 1374 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,1.5 parent: 1 - - uid: 1377 + - uid: 1375 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-27.5 parent: 1 - - uid: 1379 + - uid: 1376 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-27.5 parent: 1 - proto: PoweredSmallLight entities: - - uid: 1343 + - uid: 1377 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-15.5 parent: 1 - - uid: 1355 + - uid: 1378 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,11.5 parent: 1 - - uid: 1356 + - uid: 1379 components: - type: Transform pos: -1.5,1.5 parent: 1 - - uid: 1357 + - uid: 1380 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 1358 + - uid: 1381 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-14.5 parent: 1 - - uid: 1359 + - uid: 1382 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-14.5 parent: 1 - - uid: 1360 + - uid: 1383 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-15.5 parent: 1 - - uid: 1361 + - uid: 1384 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-18.5 + pos: -5.5,-16.5 parent: 1 - - uid: 1362 + - uid: 1385 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-18.5 parent: 1 - - uid: 1364 + - uid: 1386 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-23.5 parent: 1 - - uid: 1367 + - uid: 1387 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-23.5 parent: 1 - - uid: 1368 + - uid: 1388 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-23.5 parent: 1 - - uid: 1369 + - uid: 1389 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-23.5 parent: 1 - - uid: 1413 + - uid: 1390 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-20.5 parent: 1 - - uid: 1414 + - uid: 1391 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-20.5 parent: 1 - - uid: 1415 + - uid: 1392 components: - type: Transform rot: -1.5707963267948966 rad @@ -9587,84 +9676,96 @@ entities: parent: 1 - proto: Rack entities: - - uid: 640 + - uid: 1393 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,4.5 parent: 1 - - uid: 641 + - uid: 1394 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,4.5 parent: 1 - - uid: 855 + - uid: 1395 components: - type: Transform pos: 7.5,-6.5 parent: 1 - - uid: 856 + - uid: 1396 components: - type: Transform pos: 7.5,-5.5 parent: 1 - proto: RadioHandheld entities: - - uid: 863 + - uid: 1397 components: - type: Transform pos: 7.384827,-6.5575886 parent: 1 - - uid: 864 + - uid: 1398 components: - type: Transform pos: 7.712952,-6.4325886 parent: 1 - - uid: 865 + - uid: 1399 components: - type: Transform pos: 7.416077,-5.5419636 parent: 1 - - uid: 866 + - uid: 1400 components: - type: Transform pos: 7.666077,-5.4638386 parent: 1 - proto: Railing entities: - - uid: 630 + - uid: 1401 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,1.5 parent: 1 - - uid: 631 + - uid: 1402 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,0.5 parent: 1 - - uid: 635 + - uid: 1403 components: - type: Transform rot: -1.5707963267948966 rad pos: -12.5,1.5 parent: 1 - - uid: 636 + - uid: 1404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,0.5 + parent: 1 + - uid: 1405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - uid: 1406 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,0.5 + pos: 4.5,1.5 parent: 1 - proto: RailingCorner entities: - - uid: 632 + - uid: 1407 components: - type: Transform pos: 13.5,-0.5 parent: 1 - - uid: 637 + - uid: 1408 components: - type: Transform rot: -1.5707963267948966 rad @@ -9672,59 +9773,28 @@ entities: parent: 1 - proto: RollingPin entities: - - uid: 772 + - uid: 1409 components: - type: Transform pos: 5.0965285,11.680844 parent: 1 -- proto: SecBreachingHammer - entities: - - uid: 1416 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 722 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1749 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 722 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SecurityTechFab - entities: - - uid: 652 - components: - - type: Transform - pos: -1.5,9.5 - parent: 1 - proto: SeedExtractor entities: - - uid: 928 + - uid: 1410 components: - type: Transform pos: -5.5,-17.5 parent: 1 -- proto: SheetGlass +- proto: SheetGlass10 entities: - - uid: 443 + - uid: 1411 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 442 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -7.491961,-20.173803 + parent: 1 - proto: SignalButton entities: - - uid: 837 + - uid: 1412 components: - type: Transform rot: -1.5707963267948966 rad @@ -9732,13 +9802,13 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 186: + 101: - Pressed: Toggle - 185: + 100: - Pressed: Toggle - 184: + 99: - Pressed: Toggle - - uid: 839 + - uid: 1413 components: - type: Transform rot: 1.5707963267948966 rad @@ -9746,15 +9816,15 @@ entities: parent: 1 - type: DeviceLinkSource linkedPorts: - 183: + 98: - Pressed: Toggle - 182: + 97: - Pressed: Toggle - 1748: + 102: - Pressed: Toggle - proto: SignalButtonExt1 entities: - - uid: 850 + - uid: 1414 components: - type: MetaData desc: It's a button for activating lockdown. @@ -9762,39 +9832,67 @@ entities: - type: Transform pos: 0.48732072,-5.17708 parent: 1 +- proto: SignRedFour + entities: + - uid: 1415 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 1 +- proto: SignRedOne + entities: + - uid: 1416 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 1 +- proto: SignRedThree + entities: + - uid: 1417 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 1 +- proto: SignRedTwo + entities: + - uid: 1418 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 1 - proto: SignSecurearea entities: - - uid: 1753 + - uid: 1419 components: - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 1754 + - uid: 1420 components: - type: Transform pos: 1.5,-4.5 parent: 1 - proto: SignSecureSmallRed entities: - - uid: 464 + - uid: 1421 components: - type: Transform pos: -3.5,-9.5 parent: 1 - - uid: 838 + - uid: 1422 components: - type: Transform pos: 4.5,-9.5 parent: 1 - proto: SignSpace entities: - - uid: 454 + - uid: 1423 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,3.5 parent: 1 - - uid: 727 + - uid: 1424 components: - type: Transform rot: 1.5707963267948966 rad @@ -9802,14 +9900,14 @@ entities: parent: 1 - proto: SinkStemlessWater entities: - - uid: 589 + - uid: 1425 components: - type: Transform pos: -4.5,-6.5 parent: 1 - proto: SinkWide entities: - - uid: 777 + - uid: 1426 components: - type: Transform rot: -1.5707963267948966 rad @@ -9817,91 +9915,72 @@ entities: parent: 1 - proto: SMESBasic entities: - - uid: 381 + - uid: 1427 components: - type: Transform pos: 2.5,-2.5 parent: 1 - proto: SpacemenFigureSpawner entities: - - uid: 810 + - uid: 1428 components: - type: Transform pos: 0.5,15.5 parent: 1 - proto: SpawnMobSmile entities: - - uid: 795 + - uid: 1429 components: - type: Transform pos: 4.5,7.5 parent: 1 -- proto: SpawnPointBrigmedic - entities: - - uid: 1777 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 1 - proto: SpawnPointLatejoin entities: - - uid: 1776 - components: - - type: Transform - pos: 0.5,-17.5 - parent: 1 -- proto: SpawnPointPrisonGuard - entities: - - uid: 1781 + - uid: 1793 components: - type: Transform - pos: 0.5,-7.5 + pos: 0.5,6.5 parent: 1 -- proto: SpawnPointSecurityOfficer +- proto: SpawnPointPrisoner entities: - - uid: 662 - components: - - type: Transform - pos: 3.5,4.5 - parent: 1 - - uid: 1779 + - uid: 1430 components: - type: Transform - pos: -2.5,4.5 + pos: 0.5,-18.5 parent: 1 - proto: Stairs entities: - - uid: 187 + - uid: 1431 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-10.5 parent: 1 - - uid: 188 + - uid: 1432 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-11.5 parent: 1 - - uid: 189 + - uid: 1433 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-12.5 parent: 1 - - uid: 190 + - uid: 1434 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-10.5 parent: 1 - - uid: 191 + - uid: 1435 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-11.5 parent: 1 - - uid: 192 + - uid: 1436 components: - type: Transform rot: 1.5707963267948966 rad @@ -9909,25 +9988,25 @@ entities: parent: 1 - proto: StoolBar entities: - - uid: 469 + - uid: 1437 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,8.5 parent: 1 - - uid: 502 + - uid: 1438 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,8.5 parent: 1 - - uid: 512 + - uid: 1439 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,8.5 parent: 1 - - uid: 552 + - uid: 1440 components: - type: Transform rot: 3.141592653589793 rad @@ -9935,65 +10014,75 @@ entities: parent: 1 - proto: SubstationBasic entities: - - uid: 382 + - uid: 1441 components: - type: Transform pos: 2.5,-3.5 parent: 1 -- proto: SuitStorageEVAPrisoner +- proto: SuitStorageDeputy entities: - - uid: 757 + - uid: 1442 components: - type: Transform - pos: 2.5,-6.5 + pos: -7.5,8.5 parent: 1 - - uid: 778 + - uid: 1443 components: - type: Transform - pos: -1.5,-6.5 + pos: -6.5,8.5 parent: 1 - - uid: 779 + - uid: 1444 components: - type: Transform - pos: 2.5,-5.5 + pos: 8.5,8.5 parent: 1 - - uid: 780 + - uid: 1445 components: - type: Transform - pos: -1.5,-5.5 + pos: 7.5,8.5 parent: 1 -- proto: SuitStorageSec +- proto: SuitStorageEVAPrisoner entities: - - uid: 594 + - uid: 1446 components: - type: Transform - pos: -6.5,8.5 + pos: 2.5,-6.5 parent: 1 - - uid: 595 + - uid: 1447 components: - type: Transform - pos: -7.5,8.5 + pos: -1.5,-6.5 parent: 1 - - uid: 596 + - uid: 1448 components: - type: Transform - pos: 7.5,8.5 + pos: 2.5,-5.5 parent: 1 - - uid: 721 + - uid: 1449 components: - type: Transform - pos: 8.5,8.5 + pos: -1.5,-5.5 + parent: 1 +- proto: SuitStorageWallmountBrigmedic + entities: + - uid: 1450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 parent: 1 + - type: Physics + canCollide: False - proto: SurveillanceCameraRouterSecurity entities: - - uid: 415 + - uid: 1451 components: - type: Transform pos: -1.5,-2.5 parent: 1 - proto: SurveillanceCameraSecurity entities: - - uid: 742 + - uid: 1452 components: - type: Transform rot: -1.5707963267948966 rad @@ -10004,7 +10093,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Engine room - - uid: 743 + - uid: 1453 components: - type: Transform rot: 3.141592653589793 rad @@ -10015,7 +10104,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Cell exit - - uid: 813 + - uid: 1454 components: - type: Transform rot: 1.5707963267948966 rad @@ -10026,7 +10115,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Docking airlocks [Port] - - uid: 818 + - uid: 1455 components: - type: Transform pos: -0.5,5.5 @@ -10036,7 +10125,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Living room - - uid: 822 + - uid: 1456 components: - type: Transform rot: 3.141592653589793 rad @@ -10047,7 +10136,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Cargo 1 - - uid: 823 + - uid: 1457 components: - type: Transform rot: -1.5707963267948966 rad @@ -10058,7 +10147,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Docking airlocks [Starboard] - - uid: 824 + - uid: 1458 components: - type: Transform rot: 3.141592653589793 rad @@ -10069,7 +10158,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Medbay 1 - - uid: 825 + - uid: 1459 components: - type: Transform rot: 3.141592653589793 rad @@ -10080,7 +10169,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: External [Starboard] - - uid: 826 + - uid: 1460 components: - type: Transform rot: 3.141592653589793 rad @@ -10091,7 +10180,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: External [Port] - - uid: 827 + - uid: 1461 components: - type: Transform pos: 5.5,-8.5 @@ -10101,7 +10190,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Cargo 2 - - uid: 828 + - uid: 1462 components: - type: Transform pos: -4.5,-8.5 @@ -10111,7 +10200,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Medbay 2 - - uid: 829 + - uid: 1463 components: - type: Transform rot: 3.141592653589793 rad @@ -10122,7 +10211,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Prisoner storage room - - uid: 831 + - uid: 1464 components: - type: Transform pos: 0.5,-20.5 @@ -10132,7 +10221,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Cell 0 [Courtyard] - - uid: 832 + - uid: 1465 components: - type: Transform rot: 1.5707963267948966 rad @@ -10143,7 +10232,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Cell 1 - - uid: 833 + - uid: 1466 components: - type: Transform rot: 1.5707963267948966 rad @@ -10154,7 +10243,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Cell 2 - - uid: 834 + - uid: 1467 components: - type: Transform rot: -1.5707963267948966 rad @@ -10165,7 +10254,7 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Cell 3 - - uid: 835 + - uid: 1468 components: - type: Transform rot: -1.5707963267948966 rad @@ -10178,32 +10267,37 @@ entities: id: Cell 4 - proto: TableCarpet entities: - - uid: 373 + - uid: 1469 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 1 + - uid: 1470 components: - type: Transform pos: -1.5,11.5 parent: 1 - - uid: 597 + - uid: 1471 components: - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 663 + - uid: 1472 components: - type: Transform pos: -3.5,11.5 parent: 1 - - uid: 749 + - uid: 1473 components: - type: Transform pos: 2.5,6.5 parent: 1 - - uid: 750 + - uid: 1474 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 930 + - uid: 1475 components: - type: Transform rot: -1.5707963267948966 rad @@ -10211,368 +10305,368 @@ entities: parent: 1 - proto: TableReinforced entities: - - uid: 34 + - uid: 1476 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,-4.5 parent: 1 - - uid: 142 + - uid: 1477 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-4.5 parent: 1 - - uid: 461 + - uid: 1478 components: - type: Transform pos: -0.5,-5.5 parent: 1 - - uid: 462 + - uid: 1479 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 463 + - uid: 1480 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 467 + - uid: 1481 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,9.5 parent: 1 - - uid: 468 + - uid: 1482 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,9.5 parent: 1 - - uid: 510 + - uid: 1483 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,9.5 parent: 1 - - uid: 532 + - uid: 1484 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,9.5 parent: 1 - - uid: 538 + - uid: 1485 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,11.5 parent: 1 - - uid: 553 + - uid: 1486 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,11.5 parent: 1 - - uid: 554 + - uid: 1487 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,11.5 parent: 1 - - uid: 592 + - uid: 1488 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-4.5 parent: 1 - - uid: 704 + - uid: 1489 components: - type: Transform pos: -9.5,-5.5 parent: 1 - - uid: 705 + - uid: 1490 components: - type: Transform pos: -6.5,-8.5 parent: 1 - - uid: 737 + - uid: 1491 components: - type: Transform pos: 0.5,15.5 parent: 1 - - uid: 738 + - uid: 1492 components: - type: Transform pos: 0.5,14.5 parent: 1 - - uid: 805 + - uid: 1493 components: - type: Transform pos: 11.5,5.5 parent: 1 - - uid: 806 + - uid: 1494 components: - type: Transform pos: -10.5,5.5 parent: 1 - - uid: 807 + - uid: 1495 components: - type: Transform pos: 2.5,1.5 parent: 1 - proto: TableWood entities: - - uid: 878 + - uid: 1496 components: - type: Transform pos: -6.5,-25.5 parent: 1 - - uid: 901 + - uid: 1497 components: - type: Transform pos: -2.5,-25.5 parent: 1 - - uid: 902 + - uid: 1498 components: - type: Transform pos: 3.5,-25.5 parent: 1 - - uid: 903 + - uid: 1499 components: - type: Transform pos: 7.5,-25.5 parent: 1 - - uid: 932 + - uid: 1500 components: - type: Transform pos: 4.5,-14.5 parent: 1 - - uid: 934 + - uid: 1501 components: - type: Transform pos: 5.5,-15.5 parent: 1 - - uid: 935 + - uid: 1502 components: - type: Transform pos: 6.5,-16.5 parent: 1 - - uid: 937 + - uid: 1503 components: - type: Transform pos: 5.5,-16.5 parent: 1 - proto: TelecomServerFilledSecurity entities: - - uid: 574 + - uid: 1504 components: - type: Transform pos: -1.5,-3.5 parent: 1 -- proto: ThrusterSecurity +- proto: ThrusterNfsd entities: - - uid: 237 + - uid: 1505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 1 + - uid: 1506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + - uid: 1507 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-22.5 parent: 1 - - uid: 238 + - uid: 1508 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-23.5 parent: 1 - - uid: 239 + - uid: 1509 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-24.5 parent: 1 - - uid: 240 + - uid: 1510 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-24.5 parent: 1 - - uid: 241 + - uid: 1511 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-23.5 parent: 1 - - uid: 242 + - uid: 1512 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-22.5 parent: 1 - - uid: 243 + - uid: 1513 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-27.5 parent: 1 - - uid: 244 + - uid: 1514 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-27.5 parent: 1 - - uid: 245 + - uid: 1515 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-28.5 parent: 1 - - uid: 246 + - uid: 1516 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-27.5 parent: 1 - - uid: 247 + - uid: 1517 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-27.5 parent: 1 - - uid: 248 + - uid: 1518 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-28.5 parent: 1 - - uid: 249 + - uid: 1519 components: - type: Transform pos: -1.5,-28.5 parent: 1 - - uid: 250 + - uid: 1520 components: - type: Transform pos: 2.5,-28.5 parent: 1 - - uid: 251 + - uid: 1521 components: - type: Transform pos: -5.5,-0.5 parent: 1 - - uid: 252 + - uid: 1522 components: - type: Transform pos: -7.5,-1.5 parent: 1 - - uid: 253 + - uid: 1523 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 254 + - uid: 1524 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 255 + - uid: 1525 components: - type: Transform pos: 6.5,-0.5 parent: 1 - - uid: 256 + - uid: 1526 components: - type: Transform pos: 8.5,-1.5 parent: 1 - - uid: 257 + - uid: 1527 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,2.5 parent: 1 - - uid: 258 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 1 - - uid: 259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,3.5 - parent: 1 - - uid: 260 + - uid: 1528 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,3.5 parent: 1 - - uid: 261 + - uid: 1529 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-29.5 parent: 1 - - uid: 262 + - uid: 1530 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-29.5 parent: 1 - - uid: 773 + - uid: 1531 components: - type: Transform pos: -0.5,-28.5 parent: 1 - - uid: 774 + - uid: 1532 components: - type: Transform pos: 1.5,-28.5 parent: 1 - - uid: 775 + - uid: 1533 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-25.5 parent: 1 - - uid: 776 + - uid: 1534 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-25.5 parent: 1 - - uid: 1751 + - uid: 1535 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-0.5 parent: 1 - - uid: 1768 + - uid: 1536 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,0.5 parent: 1 - - uid: 1769 + - uid: 1537 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 1 - - uid: 1770 + - uid: 1538 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-0.5 parent: 1 - - uid: 1771 + - uid: 1539 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-27.5 parent: 1 - - uid: 1772 + - uid: 1540 components: - type: Transform rot: 3.141592653589793 rad @@ -10580,127 +10674,102 @@ entities: parent: 1 - proto: ToiletDirtyWater entities: - - uid: 685 + - uid: 1541 components: - type: Transform pos: 8.5,-18.5 parent: 1 - - uid: 686 - components: - - type: Transform - pos: -7.5,-18.5 - parent: 1 - proto: ToiletEmpty entities: - - uid: 548 + - uid: 1542 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-6.5 parent: 1 -- proto: ToolboxMechanicalFilled - entities: - - uid: 146 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 144 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 420 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 144 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: VendingMachineAmmo entities: - - uid: 577 + - uid: 1543 components: - type: Transform pos: -2.5,7.5 parent: 1 - proto: VendingMachineAstroVend entities: - - uid: 788 + - uid: 1544 components: - type: Transform pos: 10.5,-6.5 parent: 1 - proto: VendingMachineBooze entities: - - uid: 511 + - uid: 1545 components: - type: Transform pos: 2.5,11.5 parent: 1 - proto: VendingMachineBountyVend entities: - - uid: 504 + - uid: 1546 components: - type: Transform pos: -4.5,7.5 parent: 1 - proto: VendingMachineChefvend entities: - - uid: 551 + - uid: 1547 components: - type: Transform pos: 3.5,11.5 parent: 1 - proto: VendingMachineChemicals entities: - - uid: 707 + - uid: 1548 components: - type: Transform pos: -5.5,-2.5 parent: 1 -- proto: VendingMachineSalvage +- proto: VendingMachineNfsdDrobe entities: - - uid: 537 + - uid: 1549 components: - type: Transform - pos: 9.5,-7.5 + pos: -1.5,7.5 parent: 1 -- proto: VendingMachineSec +- proto: VendingMachineNfsdTech entities: - - uid: 536 + - uid: 1550 components: - type: Transform pos: -3.5,7.5 parent: 1 -- proto: VendingMachineSecDrobe +- proto: VendingMachineSalvage entities: - - uid: 535 + - uid: 1551 components: - type: Transform - pos: -1.5,7.5 + pos: 9.5,-7.5 parent: 1 - proto: VendingMachineTankDispenserEVA entities: - - uid: 539 + - uid: 1552 components: - type: Transform pos: -7.5,5.5 parent: 1 - - uid: 540 + - uid: 1553 components: - type: Transform pos: 8.5,5.5 parent: 1 - - uid: 785 + - uid: 1554 components: - type: Transform pos: 8.5,-8.5 parent: 1 - proto: VendingMachineWallMedical entities: - - uid: 692 + - uid: 1555 components: - type: Transform rot: -1.5707963267948966 rad @@ -10708,1572 +10777,1211 @@ entities: parent: 1 - proto: WallmountTelescreen entities: - - uid: 809 + - uid: 1556 components: - type: Transform pos: 3.5,14.5 parent: 1 - - uid: 811 + - uid: 1557 components: - type: Transform pos: -2.5,14.5 parent: 1 - proto: WallPlastitanium entities: - - uid: 2 + - uid: 1558 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -10.5,2.5 + rot: -1.5707963267948966 rad + pos: 11.5,2.5 parent: 1 - - uid: 10 + - uid: 1559 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 11.5,2.5 + rot: 3.141592653589793 rad + pos: -10.5,3.5 parent: 1 - - uid: 17 + - uid: 1560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 1561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - uid: 1562 components: - - type: MetaData - flags: PvsPriority - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,1.5 parent: 1 - - uid: 18 + - uid: 1563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + - uid: 1564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - uid: 1565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + - uid: 1566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 1 + - uid: 1567 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,0.5 parent: 1 - - uid: 19 + - uid: 1568 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 20 + - uid: 1569 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 21 + - uid: 1570 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 22 + - uid: 1571 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 23 + - uid: 1572 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-25.5 parent: 1 - - uid: 24 + - uid: 1573 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-2.5 parent: 1 - - uid: 26 + - uid: 1574 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,9.5 parent: 1 - - uid: 28 + - uid: 1575 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 29 + - uid: 1576 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-2.5 parent: 1 - - uid: 30 + - uid: 1577 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 31 + - uid: 1578 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 32 + - uid: 1579 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,0.5 parent: 1 - - uid: 33 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,1.5 - parent: 1 - - uid: 35 + - uid: 1580 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 36 + - uid: 1581 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 37 + - uid: 1582 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 38 + - uid: 1583 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 39 + - uid: 1584 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 40 + - uid: 1585 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-4.5 parent: 1 - - uid: 41 + - uid: 1586 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -8.5,-2.5 parent: 1 - - uid: 42 + - uid: 1587 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -4.5,-14.5 parent: 1 - - uid: 43 + - uid: 1588 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,-17.5 parent: 1 - - uid: 44 + - uid: 1589 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-25.5 parent: 1 - - uid: 47 + - uid: 1590 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-26.5 parent: 1 - - uid: 48 + - uid: 1591 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-25.5 parent: 1 - - uid: 49 + - uid: 1592 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-26.5 parent: 1 - - uid: 50 + - uid: 1593 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-26.5 parent: 1 - - uid: 51 + - uid: 1594 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-26.5 parent: 1 - - uid: 53 + - uid: 1595 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-24.5 parent: 1 - - uid: 54 + - uid: 1596 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-23.5 parent: 1 - - uid: 55 + - uid: 1597 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-22.5 parent: 1 - - uid: 56 + - uid: 1598 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-21.5 parent: 1 - - uid: 57 + - uid: 1599 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,-16.5 parent: 1 - - uid: 58 + - uid: 1600 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -7.5,-17.5 parent: 1 - - uid: 60 + - uid: 1601 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -8.5,-18.5 parent: 1 - - uid: 63 + - uid: 1602 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-24.5 parent: 1 - - uid: 64 + - uid: 1603 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-23.5 parent: 1 - - uid: 65 + - uid: 1604 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-22.5 parent: 1 - - uid: 66 + - uid: 1605 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-21.5 parent: 1 - - uid: 68 + - uid: 1606 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,-18.5 parent: 1 - - uid: 70 + - uid: 1607 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -8.5,-20.5 parent: 1 - - uid: 71 + - uid: 1608 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,-20.5 parent: 1 - - uid: 72 + - uid: 1609 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -5.5,-15.5 parent: 1 - - uid: 74 + - uid: 1610 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-13.5 parent: 1 - - uid: 77 + - uid: 1611 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-21.5 parent: 1 - - uid: 78 + - uid: 1612 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-22.5 parent: 1 - - uid: 79 + - uid: 1613 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-23.5 parent: 1 - - uid: 82 + - uid: 1614 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-26.5 parent: 1 - - uid: 83 + - uid: 1615 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-26.5 parent: 1 - - uid: 84 + - uid: 1616 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -3.5,-26.5 parent: 1 - - uid: 86 + - uid: 1617 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-26.5 parent: 1 - - uid: 87 + - uid: 1618 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-21.5 parent: 1 - - uid: 88 + - uid: 1619 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-22.5 parent: 1 - - uid: 89 + - uid: 1620 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-23.5 parent: 1 - - uid: 91 + - uid: 1621 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-26.5 parent: 1 - - uid: 92 + - uid: 1622 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-26.5 parent: 1 - - uid: 94 + - uid: 1623 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-26.5 parent: 1 - - uid: 95 + - uid: 1624 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-21.5 parent: 1 - - uid: 96 + - uid: 1625 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-22.5 parent: 1 - - uid: 97 + - uid: 1626 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-23.5 parent: 1 - - uid: 99 + - uid: 1627 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,4.5 parent: 1 - - uid: 101 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -8.5,3.5 - parent: 1 - - uid: 102 + - uid: 1628 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,4.5 parent: 1 - - uid: 103 + - uid: 1629 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,4.5 parent: 1 - - uid: 104 + - uid: 1630 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,4.5 parent: 1 - - uid: 105 + - uid: 1631 components: - - type: MetaData - flags: PvsPriority - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,3.5 parent: 1 - - uid: 106 + - uid: 1632 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,4.5 parent: 1 - - uid: 107 + - uid: 1633 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,4.5 parent: 1 - - uid: 109 + - uid: 1634 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,4.5 parent: 1 - - uid: 111 + - uid: 1635 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-13.5 parent: 1 - - uid: 112 + - uid: 1636 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,-14.5 parent: 1 - - uid: 114 + - uid: 1637 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-13.5 parent: 1 - - uid: 115 + - uid: 1638 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-13.5 parent: 1 - - uid: 116 + - uid: 1639 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 6.5,-15.5 parent: 1 - - uid: 117 + - uid: 1640 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-13.5 parent: 1 - - uid: 118 + - uid: 1641 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-9.5 parent: 1 - - uid: 119 + - uid: 1642 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-9.5 parent: 1 - - uid: 122 + - uid: 1643 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-9.5 parent: 1 - - uid: 123 + - uid: 1644 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-9.5 parent: 1 - - uid: 124 + - uid: 1645 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-9.5 parent: 1 - - uid: 127 + - uid: 1646 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-9.5 parent: 1 - - uid: 128 + - uid: 1647 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 7.5,-16.5 parent: 1 - - uid: 133 + - uid: 1648 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-8.5 parent: 1 - - uid: 134 + - uid: 1649 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-7.5 parent: 1 - - uid: 138 + - uid: 1650 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,-3.5 parent: 1 - - uid: 139 + - uid: 1651 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,-2.5 parent: 1 - - uid: 141 + - uid: 1652 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-1.5 parent: 1 - - uid: 143 + - uid: 1653 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-2.5 parent: 1 - - uid: 145 + - uid: 1654 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 148 + - uid: 1655 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 150 + - uid: 1656 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-2.5 parent: 1 - - uid: 152 + - uid: 1657 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,-1.5 parent: 1 - - uid: 154 + - uid: 1658 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,-2.5 parent: 1 - - uid: 155 + - uid: 1659 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,-3.5 parent: 1 - - uid: 157 + - uid: 1660 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -10.5,-6.5 parent: 1 - - uid: 158 + - uid: 1661 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 11.5,-6.5 parent: 1 - - uid: 159 + - uid: 1662 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,-7.5 parent: 1 - - uid: 160 + - uid: 1663 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,-8.5 parent: 1 - - uid: 161 + - uid: 1664 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,3.5 parent: 1 - - uid: 162 + - uid: 1665 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 163 + - uid: 1666 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-17.5 parent: 1 - - uid: 164 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -2.5,2.5 - parent: 1 - - uid: 165 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 3.5,2.5 - parent: 1 - - uid: 166 + - uid: 1667 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-17.5 parent: 1 - - uid: 167 + - uid: 1668 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 168 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 6.5,3.5 - parent: 1 - - uid: 169 + - uid: 1669 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,4.5 parent: 1 - - uid: 194 + - uid: 1670 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-13.5 parent: 1 - - uid: 213 + - uid: 1671 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,9.5 parent: 1 - - uid: 220 + - uid: 1672 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 6.5,9.5 parent: 1 - - uid: 222 + - uid: 1673 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -5.5,9.5 parent: 1 - - uid: 224 + - uid: 1674 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,9.5 parent: 1 - - uid: 226 + - uid: 1675 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,9.5 parent: 1 - - uid: 227 + - uid: 1676 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,8.5 parent: 1 - - uid: 228 + - uid: 1677 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,6.5 parent: 1 - - uid: 229 + - uid: 1678 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,4.5 parent: 1 - - uid: 230 + - uid: 1679 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,6.5 parent: 1 - - uid: 231 + - uid: 1680 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,9.5 parent: 1 - - uid: 232 + - uid: 1681 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,9.5 parent: 1 - - uid: 233 + - uid: 1682 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,8.5 parent: 1 - - uid: 234 + - uid: 1683 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,4.5 parent: 1 - - uid: 265 + - uid: 1684 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-31.5 parent: 1 - - uid: 266 + - uid: 1685 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-21.5 parent: 1 - - uid: 268 + - uid: 1686 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-21.5 parent: 1 - - uid: 271 + - uid: 1687 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-21.5 parent: 1 - - uid: 273 + - uid: 1688 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-21.5 parent: 1 - - uid: 275 + - uid: 1689 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-15.5 parent: 1 - - uid: 276 + - uid: 1690 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-14.5 parent: 1 - - uid: 277 + - uid: 1691 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-14.5 parent: 1 - - uid: 278 + - uid: 1692 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-15.5 parent: 1 - - uid: 288 + - uid: 1693 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,6.5 parent: 1 - - uid: 289 + - uid: 1694 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,8.5 parent: 1 - - uid: 291 + - uid: 1695 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,6.5 parent: 1 - - uid: 292 + - uid: 1696 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,8.5 parent: 1 - - uid: 349 + - uid: 1697 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,14.5 parent: 1 - - uid: 350 + - uid: 1698 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,13.5 parent: 1 - - uid: 351 + - uid: 1699 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -4.5,12.5 parent: 1 - - uid: 352 + - uid: 1700 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -5.5,11.5 parent: 1 - - uid: 353 + - uid: 1701 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 3.5,14.5 parent: 1 - - uid: 354 + - uid: 1702 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,13.5 parent: 1 - - uid: 355 + - uid: 1703 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,12.5 parent: 1 - - uid: 356 + - uid: 1704 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 6.5,11.5 parent: 1 - - uid: 394 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,2.5 - parent: 1 - - uid: 413 + - uid: 1705 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 2.5,2.5 parent: 1 - - uid: 414 + - uid: 1706 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 5.5,7.5 parent: 1 - - uid: 424 + - uid: 1707 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,12.5 parent: 1 - - uid: 425 + - uid: 1708 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,12.5 parent: 1 - - uid: 426 + - uid: 1709 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -1.5,12.5 parent: 1 - - uid: 427 + - uid: 1710 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -0.5,12.5 parent: 1 - - uid: 428 + - uid: 1711 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 1.5,12.5 parent: 1 - - uid: 429 + - uid: 1712 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 2.5,12.5 parent: 1 - - uid: 430 + - uid: 1713 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,12.5 parent: 1 - - uid: 431 + - uid: 1714 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 1 - - uid: 436 + - uid: 1715 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-7.5 parent: 1 - - uid: 437 + - uid: 1716 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-7.5 parent: 1 - - uid: 440 + - uid: 1717 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-9.5 parent: 1 - - uid: 441 + - uid: 1718 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-9.5 parent: 1 - - uid: 460 + - uid: 1719 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-5.5 parent: 1 - - uid: 470 + - uid: 1720 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,8.5 parent: 1 - - uid: 472 + - uid: 1721 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -0.5,11.5 parent: 1 - - uid: 473 + - uid: 1722 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -0.5,9.5 parent: 1 - - uid: 499 + - uid: 1723 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,8.5 parent: 1 - - uid: 500 + - uid: 1724 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -4.5,8.5 parent: 1 - - uid: 505 + - uid: 1725 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -1.5,8.5 parent: 1 - - uid: 506 + - uid: 1726 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 6.5,8.5 parent: 1 - - uid: 528 + - uid: 1727 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,3.5 parent: 1 - - uid: 541 + - uid: 1728 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-11.5 parent: 1 - - uid: 544 + - uid: 1729 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,-7.5 parent: 1 - - uid: 545 + - uid: 1730 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,-7.5 parent: 1 - - uid: 549 + - uid: 1731 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -0.5,3.5 parent: 1 - - uid: 603 + - uid: 1732 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,2.5 parent: 1 - - uid: 633 + - uid: 1733 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,2.5 parent: 1 - - uid: 687 + - uid: 1734 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-18.5 parent: 1 - - uid: 688 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 1 - - uid: 695 + - uid: 1735 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-5.5 parent: 1 - - uid: 696 + - uid: 1736 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-5.5 parent: 1 - - uid: 791 + - uid: 1737 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 1 - uid: 1738 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-6.5 parent: 1 - proto: WallPlastitaniumDiagonal entities: - - uid: 46 + - uid: 1739 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-26.5 parent: 1 - - uid: 59 + - uid: 1740 components: - type: Transform pos: -6.5,-15.5 parent: 1 - - uid: 62 + - uid: 1741 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-21.5 parent: 1 - - uid: 67 + - uid: 1742 components: - type: Transform pos: -5.5,-14.5 parent: 1 - - uid: 93 + - uid: 1743 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-26.5 parent: 1 - - uid: 113 + - uid: 1744 components: - type: Transform pos: -8.5,-17.5 parent: 1 - - uid: 174 + - uid: 1745 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-9.5 parent: 1 - - uid: 197 + - uid: 1746 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 1 - - uid: 198 + - uid: 1747 components: - type: Transform pos: -7.5,-16.5 parent: 1 - - uid: 199 + - uid: 1748 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-8.5 parent: 1 - - uid: 200 + - uid: 1749 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-7.5 parent: 1 - - uid: 202 + - uid: 1750 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-9.5 parent: 1 - - uid: 203 + - uid: 1751 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-8.5 parent: 1 - - uid: 204 + - uid: 1752 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-7.5 parent: 1 - - uid: 205 + - uid: 1753 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-0.5 parent: 1 - - uid: 206 + - uid: 1754 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-1.5 parent: 1 - - uid: 207 + - uid: 1755 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,2.5 parent: 1 - - uid: 208 + - uid: 1756 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,3.5 parent: 1 - - uid: 209 + - uid: 1757 components: - type: Transform pos: -4.5,-0.5 parent: 1 - - uid: 210 + - uid: 1758 components: - type: Transform pos: -6.5,-1.5 parent: 1 - - uid: 211 + - uid: 1759 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,2.5 parent: 1 - - uid: 212 + - uid: 1760 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,3.5 parent: 1 - - uid: 216 + - uid: 1761 components: - type: Transform rot: -1.5707963267948966 rad pos: 9.5,-17.5 parent: 1 - - uid: 218 + - uid: 1762 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-16.5 parent: 1 - - uid: 235 + - uid: 1763 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-15.5 parent: 1 - - uid: 236 + - uid: 1764 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-14.5 parent: 1 - - uid: 357 + - uid: 1765 components: - type: Transform pos: -3.5,14.5 parent: 1 - - uid: 358 + - uid: 1766 components: - type: Transform pos: -4.5,13.5 parent: 1 - - uid: 359 + - uid: 1767 components: - type: Transform pos: -5.5,12.5 parent: 1 - - uid: 360 + - uid: 1768 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,14.5 parent: 1 - - uid: 361 + - uid: 1769 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,13.5 parent: 1 - - uid: 362 + - uid: 1770 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,12.5 parent: 1 - - uid: 395 + - uid: 1771 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,2.5 parent: 1 - - uid: 396 + - uid: 1772 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 1 - - uid: 471 + - uid: 1773 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,8.5 parent: 1 - - uid: 474 + - uid: 1774 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,8.5 parent: 1 - - uid: 507 + - uid: 1775 components: - type: Transform rot: 3.141592653589793 rad @@ -12281,13 +11989,13 @@ entities: parent: 1 - proto: WallWeaponCapacitorRecharger entities: - - uid: 830 + - uid: 1776 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 1 - - uid: 1750 + - uid: 1777 components: - type: Transform rot: 3.141592653589793 rad @@ -12295,168 +12003,167 @@ entities: parent: 1 - proto: WardrobePrisonFilled entities: - - uid: 874 + - uid: 1778 components: - type: Transform pos: -5.5,-22.5 parent: 1 - - uid: 875 + - 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 + - uid: 1779 components: - type: Transform pos: -1.5,-22.5 parent: 1 - - uid: 893 + - 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 + - uid: 1780 components: - type: Transform pos: 2.5,-22.5 parent: 1 - - uid: 894 + - 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 + - uid: 1781 components: - type: Transform pos: 6.5,-22.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 - proto: WarpPointShip entities: - - uid: 1775 + - uid: 1782 components: - type: Transform pos: 0.5,0.5 parent: 1 - proto: WaterTankFull entities: - - uid: 927 + - uid: 1783 components: - type: Transform - pos: -5.5,-18.5 + pos: -6.5,-18.5 parent: 1 - proto: WeaponCapacitorRecharger entities: - - uid: 466 + - uid: 1784 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 796 + - uid: 1785 components: - type: Transform pos: -10.5,5.5 parent: 1 - - uid: 797 + - uid: 1786 components: - type: Transform pos: 11.5,5.5 parent: 1 -- proto: WeaponDisabler +- proto: WeaponGrapplingGun entities: - - uid: 655 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 654 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 657 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 654 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 658 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 654 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 799 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 798 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 801 + - uid: 1787 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 798 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 802 + pos: 6.593146,4.371871 + parent: 1 + - uid: 1788 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 798 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: WeaponEmpEmitter + pos: -5.391229,4.418746 + parent: 1 +- proto: WeaponRackBase entities: - - uid: 656 + - uid: 1789 components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 654 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 659 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 654 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 800 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 798 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 803 - components: - - type: MetaData - flags: InContainer - type: Transform - parent: 798 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: WeaponGrapplingGun + pos: -4.5,9.5 + parent: 1 +- proto: WeaponRackMeleeBase entities: - - uid: 861 + - uid: 1790 components: - type: Transform - pos: 6.593146,4.371871 + pos: -2.5,9.5 parent: 1 - - uid: 862 +- proto: WeaponRackPistolWallmountedBase + entities: + - uid: 1791 components: - type: Transform - pos: -5.391229,4.418746 + pos: -3.5,12.5 parent: 1 - proto: Wrench entities: - - uid: 945 + - uid: 1792 components: - type: Transform - pos: -0.48924184,-18.556105 + pos: 3.35362,-18.385075 parent: 1 ... diff --git a/Resources/Maps/_NF/Shuttles/chisel.yml b/Resources/Maps/_NF/Shuttles/chisel.yml index 6f4a86fe55b..26d7c0f0c5d 100644 --- a/Resources/Maps/_NF/Shuttles/chisel.yml +++ b/Resources/Maps/_NF/Shuttles/chisel.yml @@ -3,342 +3,313 @@ meta: postmapinit: false tilemap: 0: Space - 72: FloorRGlass - 73: FloorReinforced - 85: FloorSteel - 90: FloorSteelDirty - 93: FloorSteelMono - 94: FloorSteelOffset - 97: FloorTechMaint - 113: Lattice - 114: Plating + 30: FloorDark + 33: FloorDarkHerringbone + 35: FloorDarkMono + 46: FloorGlass + 107: FloorTechMaint + 108: FloorTechMaint2 + 124: Lattice + 125: Plating entities: - proto: "" entities: - uid: 1 components: - - name: grid - type: MetaData - - pos: -0.5,-0.5000076 + - type: MetaData + name: grid + - type: Transform + pos: -0.5,-0.5000076 parent: invalid - type: Transform - - chunks: + - type: MapGrid + chunks: 0,0: ind: 0,0 - tiles: YQAAAAAAYQAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAYQAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAASQAAAAAAcgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: awAAAAAAawAAAAAAfQAAAAAAHgAAAAAALgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAHgAAAAAALgAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAawAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAASQAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAXQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAcgAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAIwAAAAAAawAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAbAAAAAAAfQAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAbAAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAYQAAAAAAcgAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAYQAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAYQAAAAAASQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAYQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAawAAAAAAfQAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAawAAAAAAawAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAawAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcgAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAWgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAfQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAIwAAAAAAawAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAIwAAAAAAawAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAA version: 6 - type: MapGrid - type: Broadphase - - bodyStatus: InAir + - type: Physics + bodyStatus: InAir angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures + - type: Fixtures + fixtures: {} - type: OccluderTree - type: SpreaderGrid - type: Shuttle - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: + - type: DecalGrid + chunkCollection: version: 2 nodes: - node: - angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Arrows decals: - 52: -4.2144823,-3.365216 - 53: -5.2009125,-3.365216 - 61: -3.2190301,-3.365216 + 35: -1,-5 + 36: 0,-5 - node: + angle: 3.141592653589793 rad color: '#FFFFFFFF' - id: BrickTileDarkCornerNw + id: Arrows decals: - 10: -6,4 + 33: -1,3 + 34: 0,3 - node: + angle: 4.71238898038469 rad color: '#FFFFFFFF' - id: BrickTileDarkLineE + id: Arrows decals: - 36: 6,2 - 37: 6,1 - 38: 6,0 - 39: 6,-1 + 30: -6,-2 + 31: -6,-1 + 32: -6,0 - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineN + color: '#BC863FFF' + id: Bot decals: - 0: -5,4 - 1: -4,4 - 11: -3,4 - 33: 3,3 - 34: 4,3 - 35: 5,3 + 90: -1,-2 + 91: -2,-2 + 92: -3,-2 + 93: -3,-1 + 94: -2,-1 - node: color: '#FFFFFFFF' - id: BrickTileDarkLineW + id: BotGreyscale decals: - 2: -6,3 - 3: -6,2 - 19: -6,-3 + 44: 3,-2 + 82: 6,-1 + 83: -6,2 - node: - color: '#334E6DFF' - id: BrickTileWhiteInnerSe + color: '#FFFFFFFF' + id: BotLeft decals: - 8: -6,4 + 37: -1,-5 + 38: 0,-5 + 39: -1,3 + 40: 0,3 + 41: -6,0 + 42: -6,-1 + 43: -6,-2 - node: - color: '#FED83DFF' - id: BrickTileWhiteInnerSe + color: '#FFFFFFFF' + id: BoxGreyscale decals: - 42: -2,-3 - 59: -2,-3 + 79: -5,3 - node: - color: '#334E6DFF' - id: BrickTileWhiteLineE + color: '#B3B3B3FF' + id: BrickTileSteelCornerNe decals: - 6: -6,3 - 7: -6,2 + 50: -1,1 + 52: 0,-1 + 61: 5,2 + 84: 4,3 - node: - color: '#334E6DFF' - id: BrickTileWhiteLineS + color: '#B3B3B3FF' + id: BrickTileSteelCornerNw decals: - 4: -5,4 - 5: -4,4 - 9: -3,4 + 47: -4,0 + 49: -2,1 + 85: 3,3 - node: - color: '#FED83DFF' - id: BrickTileWhiteLineS + color: '#B3B3B3FF' + id: BrickTileSteelCornerSe decals: - 40: -1,-3 - 41: 0,-3 + 53: 0,-3 + 62: 5,-1 - node: - color: '#FED83DFF' - id: BrickTileWhiteLineW + color: '#B3B3B3FF' + id: BrickTileSteelCornerSw decals: - 56: -6,-2 - 57: -6,0 - 58: -6,-1 + 54: -4,-3 + 63: 3,-1 - node: - cleanable: True - color: '#FFFFFF75' - id: Dirt + color: '#B3B3B3FF' + id: BrickTileSteelInnerNe decals: - 99: -3,-2 - 100: -5,-1 + 58: -1,-1 + 87: 4,2 - node: - cleanable: True - color: '#FFFFFFC3' - id: Dirt + color: '#B3B3B3FF' + id: BrickTileSteelInnerNw decals: - 101: -2,0 - 102: 3,0 - 103: 5,2 - 104: 4,1 - 105: 3,2 - 106: 5,0 - 107: -5,3 + 80: -2,0 - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt + color: '#B3B3B3FF' + id: BrickTileSteelLineE decals: - 76: 1,-1 - 77: 1,-2 - 78: 1,-3 - 79: 1,2 - 80: 1,3 - 81: 1,-5 - 82: 1,-4 - 83: 1,-6 - 84: -6,-1 - 85: -6,0 - 86: -6,-2 - 87: -5,-3 - 88: -5,-2 - 89: -4,-1 - 90: -5,0 - 91: -3,-3 - 92: -2,-2 - 93: -3,1 - 94: -2,2 - 95: -2,1 - 96: 0,2 - 97: 0,-1 - 98: 0,-3 - 108: -4,2 - 110: 3,-3 - 116: 3,-2 + 51: -1,0 + 59: 0,-2 + 67: 5,0 + 68: 5,1 - node: - cleanable: True - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Dirt + color: '#B3B3B3FF' + id: BrickTileSteelLineN decals: - 109: 3,-3 - 117: 3,-2 + 48: -3,0 - node: - color: '#FFFFFFFF' - id: MiniTileSteelInnerNw + color: '#B3B3B3FF' + id: BrickTileSteelLineS decals: - 25: 6,-2 + 55: -3,-3 + 56: -2,-3 + 57: -1,-3 + 66: 4,-1 - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineN + color: '#B3B3B3FF' + id: BrickTileSteelLineW decals: - 112: 4,-2 - 113: 3,-2 - 119: 5,-2 + 45: -4,-1 + 46: -4,-2 + 64: 3,1 + 65: 3,0 + 86: 3,2 - node: - cleanable: True - color: '#FFFFFFFF' - id: MiniTileSteelLineN + color: '#334E6DFF' + id: BrickTileWhiteCornerNe decals: - 111: 3,-3 + 72: -4,4 - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineS + color: '#334E6DFF' + id: BrickTileWhiteCornerNw decals: - 30: 5,3 - 31: 4,3 - 32: 3,3 + 71: -6,4 - node: - color: '#FFFFFFFF' - id: MiniTileSteelLineW + color: '#334E6DFF' + id: BrickTileWhiteCornerSe decals: - 26: 6,-1 - 27: 6,0 - 28: 6,1 - 29: 6,2 + 74: -4,2 - node: - color: '#6E6E6EFF' - id: MiniTileWhiteCornerNe + color: '#334E6DFF' + id: BrickTileWhiteCornerSw decals: - 45: 5,2 + 73: -6,2 - node: - color: '#6E6E6EFF' - id: MiniTileWhiteCornerSe + color: '#BC863FFF' + id: BrickTileWhiteEndN decals: - 48: 5,-1 + 69: 4,1 - node: - color: '#6E6E6EFF' - id: MiniTileWhiteInnerNe + color: '#BC863FFF' + id: BrickTileWhiteEndS decals: - 63: -2,2 + 70: 4,0 - node: - color: '#6E6E6EFF' - id: MiniTileWhiteInnerSe + color: '#334E6DFF' + id: BrickTileWhiteLineE decals: - 60: -3,-3 + 78: -4,3 - node: - color: '#6E6E6EFF' - id: MiniTileWhiteInnerSw + color: '#334E6DFF' + id: BrickTileWhiteLineN decals: - 64: -3,1 + 77: -5,4 - node: - color: '#6E6E6EFF' - id: MiniTileWhiteLineE + color: '#334E6DFF' + id: BrickTileWhiteLineS decals: - 46: 5,1 - 47: 5,0 + 75: -5,2 - node: - color: '#6E6E6EFF' - id: MiniTileWhiteLineN + color: '#334E6DFF' + id: BrickTileWhiteLineW decals: - 43: 3,2 - 44: 4,2 - 49: -6,0 - 50: -5,0 - 51: -4,0 + 76: -6,3 - node: - color: '#6E6E6EFF' - id: MiniTileWhiteLineS + color: '#169C9CFF' + id: DeliveryGreyscale decals: - 54: -6,-2 - 55: -2,-3 - 114: 4,-1 - 115: 3,-1 + 88: 5,3 - node: - color: '#6E6E6EFF' - id: MiniTileWhiteLineW + color: '#FFFFFFFF' + id: DeliveryGreyscale decals: - 62: -5,-3 + 26: 6,2 + 27: 6,-2 + 28: 4,-2 + 29: -3,4 + 81: 5,-2 + 89: -3,3 - node: + cleanable: True color: '#FFFFFFFF' - id: StandClear + id: Dirt decals: - 16: -1,3 - 17: 0,3 - 18: 1,3 - 20: -1,3 - 21: 0,3 + 14: 1,-2 + 15: 1,-3 + 16: 1,2 + 17: 1,3 + 18: 1,-5 + 19: 1,-4 + 20: 1,-6 - node: - color: '#FFFFFF7F' - id: WarnBox + color: '#BC863FFF' + id: MiniTileWhiteEndS decals: - 118: 5,-2 + 60: 4,0 - node: color: '#FFFFFFFF' - id: WarnEndN + id: StandClear decals: - 67: 1,-2 + 0: 1,3 + 21: -1,4 + 22: 1,4 + 23: 0,4 - node: color: '#FFFFFFFF' - id: WarnFull + id: WarnEndN decals: - 12: 0,1 - 13: 0,0 - 14: 1,0 - 15: 1,1 + 5: 1,-2 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 68: 1,-3 - 69: 1,-4 - 70: 1,-5 - 71: 1,-6 - 74: 1,2 - 75: 1,3 + 6: 1,-3 + 7: 1,-4 + 8: 1,-5 + 9: 1,-6 + 12: 1,2 + 13: 1,3 + 25: 1,4 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 65: 1,-3 - 66: 1,-5 - 72: 1,2 - 73: 1,3 + 3: 1,-3 + 4: 1,-5 + 10: 1,2 + 11: 1,3 + 24: 1,4 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 22: -5,-4 - 23: -4,-4 - 24: -3,-4 - type: DecalGrid - - version: 2 + 1: -4,-4 + 2: -3,-4 + - type: GridAtmosphere + version: 2 data: tiles: 0,0: 0: 65535 0,1: - 1: 2035 - 0: 12 + 0: 15 + 1: 2032 1,0: 0: 32767 1: 32768 @@ -347,22 +318,22 @@ entities: -1,0: 0: 65535 -1,1: - 0: 55 - 1: 3784 + 0: 63 + 1: 3776 0,-2: 0: 63232 1: 2048 0,-1: 0: 65535 1,-2: - 0: 12544 - 1: 16896 + 1: 17152 + 0: 12288 1,-1: 0: 65527 1: 8 -1,-2: - 1: 256 - 0: 65024 + 1: 768 + 0: 64512 -1,-1: 0: 65535 1,1: @@ -372,10 +343,11 @@ entities: 0: 206 1: 32 -2,-1: - 0: 61164 + 0: 61162 + 1: 4 -2,-2: - 1: 16384 - 0: 32768 + 0: 16384 + 1: 32768 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -408,1846 +380,2023 @@ entities: - 0 - 0 chunkSize: 4 - type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance - proto: AirAlarm entities: - - uid: 322 + - uid: 213 components: - - rot: 1.5707963267948966 rad - pos: 2.5,1.5 + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,2.5 parent: 1 - type: Transform - - ShutdownSubscribers: - - 304 - - 315 - type: DeviceNetwork - - devices: - - 315 - - 304 - type: DeviceList - - enabled: False - type: AccessReader - - type: Emagged - - uid: 323 + - type: DeviceList + devices: + - 289 + - 349 + - type: AtmosDevice + joinedGrid: 1 + - uid: 292 components: - - rot: 3.141592653589793 rad - pos: -3.5,1.5 + - type: Transform + pos: -2.5,1.5 parent: 1 - type: Transform - - ShutdownSubscribers: - - 316 - - 190 - - 187 + - type: DeviceList + devices: - 317 - type: DeviceNetwork - - devices: - - 187 - - 316 - 190 - - 317 - type: DeviceList - - enabled: False - type: AccessReader - - type: Emagged + - 316 + - 187 + - type: AtmosDevice + joinedGrid: 1 - proto: AirCanister entities: - uid: 188 components: - - anchored: True - pos: -2.5,4.5 + - type: Transform + anchored: True + pos: 5.5,3.5 parent: 1 - type: Transform - - bodyType: Static - type: Physics + - type: Physics + bodyType: Static + - type: AtmosDevice + joinedGrid: 1 - proto: AirlockCargoGlass entities: - uid: 122 components: - - pos: 2.5,-0.5 + - type: Transform + pos: 2.5,-0.5 parent: 1 - type: Transform - proto: AirlockCommandGlass entities: - - uid: 121 + - uid: 312 components: - - pos: -4.5,1.5 + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 parent: 1 - type: Transform - proto: AirlockExternalGlass entities: + - uid: 20 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 351 - uid: 109 components: - - pos: -0.5,-3.5 + - type: Transform + pos: -0.5,-3.5 parent: 1 - type: Transform + - type: DeviceLinkSink + links: + - 351 - uid: 110 components: - - pos: 0.5,-3.5 + - type: Transform + pos: 0.5,-3.5 parent: 1 - type: Transform + - type: DeviceLinkSink + links: + - 351 + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + - type: DeviceLinkSink + links: + - 351 + - uid: 284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 1 + - type: DeviceLinkSink + links: + - 351 - proto: AirlockGlassShuttle entities: - uid: 46 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-1.5 + - type: Transform + pos: 0.5,-5.5 parent: 1 - type: Transform - uid: 47 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-0.5 + - type: Transform + pos: -0.5,-5.5 parent: 1 - type: Transform - - secondsUntilStateChange: -7573.943 - state: Opening - type: Door - uid: 48 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,0.5 parent: 1 - type: Transform - uid: 56 components: - - pos: 0.5,-5.5 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 parent: 1 - type: Transform - uid: 58 components: - - pos: -0.5,-5.5 + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 parent: 1 - type: Transform - proto: APCBasic entities: - uid: 176 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,0.5 parent: 1 - type: Transform - proto: AppraisalTool entities: - - uid: 66 + - uid: 210 components: - - rot: -1.5707963267948966 rad - pos: 6.3942842,1.6721661 + - type: Transform + pos: 6.699864,1.530165 parent: 1 - type: Transform - proto: AtmosDeviceFanTiny entities: + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 - uid: 49 components: - - pos: -6.5,0.5 + - type: Transform + pos: -6.5,0.5 parent: 1 - type: Transform - uid: 50 components: - - pos: -6.5,-1.5 + - type: Transform + pos: -6.5,-1.5 parent: 1 - type: Transform - uid: 51 components: - - pos: -6.5,-0.5 + - type: Transform + pos: -6.5,-0.5 parent: 1 - type: Transform - uid: 53 components: - - pos: -0.5,-5.5 + - type: Transform + pos: -0.5,-5.5 parent: 1 - type: Transform - uid: 54 components: - - pos: 0.5,-5.5 + - type: Transform + pos: 0.5,-5.5 parent: 1 - type: Transform - - uid: 69 + - uid: 61 components: - - rot: 3.141592653589793 rad - pos: -0.5,3.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 parent: 1 - type: Transform - - uid: 70 + - uid: 68 components: - - rot: 3.141592653589793 rad - pos: 0.5,3.5 + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 parent: 1 - type: Transform - proto: AtmosFixBlockerMarker entities: - - uid: 216 + - uid: 41 components: - - pos: -5.5,-4.5 + - type: Transform + pos: -5.5,-3.5 parent: 1 - type: Transform - uid: 217 components: - - pos: -3.5,-5.5 + - type: Transform + pos: -3.5,-5.5 parent: 1 - type: Transform - uid: 218 components: - - pos: 3.5,-5.5 + - type: Transform + pos: 3.5,-5.5 parent: 1 - type: Transform - uid: 219 components: - - pos: 5.5,-5.5 + - type: Transform + pos: 5.5,-5.5 parent: 1 - type: Transform - uid: 220 components: - - pos: 6.5,-4.5 + - type: Transform + pos: 6.5,-4.5 parent: 1 - type: Transform - uid: 226 components: - - pos: 7.5,-3.5 + - type: Transform + pos: 7.5,-3.5 parent: 1 - type: Transform - uid: 227 components: - - pos: 7.5,3.5 + - type: Transform + pos: 7.5,3.5 parent: 1 - type: Transform - uid: 238 components: - - pos: 6.5,4.5 + - type: Transform + pos: 6.5,4.5 parent: 1 - type: Transform - uid: 241 components: - - pos: 5.5,5.5 + - type: Transform + pos: 5.5,5.5 parent: 1 - type: Transform - uid: 250 components: - - pos: 4.5,5.5 + - type: Transform + pos: 4.5,5.5 parent: 1 - type: Transform - uid: 251 components: - - pos: 3.5,5.5 + - type: Transform + pos: 3.5,5.5 parent: 1 - type: Transform - uid: 260 components: - - pos: 2.5,5.5 + - type: Transform + pos: 2.5,5.5 parent: 1 - type: Transform - uid: 265 components: - - pos: 1.5,5.5 + - type: Transform + pos: 1.5,5.5 parent: 1 - type: Transform - uid: 266 components: - - pos: 0.5,5.5 + - type: Transform + pos: 0.5,5.5 parent: 1 - type: Transform - uid: 270 components: - - pos: -0.5,5.5 + - type: Transform + pos: -0.5,5.5 parent: 1 - type: Transform - uid: 272 components: - - pos: -1.5,5.5 + - type: Transform + pos: -1.5,5.5 parent: 1 - type: Transform - uid: 273 components: - - pos: -2.5,6.5 + - type: Transform + pos: -2.5,6.5 parent: 1 - type: Transform - uid: 278 components: - - pos: -1.5,6.5 + - type: Transform + pos: -1.5,6.5 parent: 1 - type: Transform - uid: 290 components: - - pos: -0.5,6.5 + - type: Transform + pos: -0.5,6.5 parent: 1 - type: Transform - uid: 301 components: - - pos: 0.5,6.5 + - type: Transform + pos: 0.5,6.5 parent: 1 - type: Transform - uid: 305 components: - - pos: 1.5,6.5 + - type: Transform + pos: 1.5,6.5 parent: 1 - type: Transform - uid: 307 components: - - pos: 2.5,6.5 + - type: Transform + pos: 2.5,6.5 parent: 1 - type: Transform - - uid: 321 + - uid: 310 components: - - pos: 1.5,4.5 + - type: Transform + pos: -4.5,-4.5 parent: 1 - type: Transform - uid: 326 components: - - pos: 0.5,4.5 + - type: Transform + pos: -2.5,-5.5 parent: 1 - type: Transform - - uid: 327 + - uid: 328 components: - - pos: -0.5,4.5 + - type: Transform + pos: -6.5,5.5 parent: 1 - type: Transform - - uid: 328 + - uid: 341 components: - - pos: -6.5,5.5 + - type: Transform + pos: 4.5,-5.5 parent: 1 - type: Transform - proto: BlastDoor entities: - - uid: 61 + - uid: 2 components: - - rot: 3.141592653589793 rad - pos: 0.5,3.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 parent: 1 - type: Transform - - links: - - 52 - - 60 - type: DeviceLinkSink - - uid: 62 + - type: DeviceLinkSink + links: + - 19 + - uid: 18 components: - - rot: 3.141592653589793 rad - pos: -0.5,3.5 + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - type: DeviceLinkSink + links: + - 19 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 parent: 1 - type: Transform - - links: - - 52 - - 60 - type: DeviceLinkSink + - type: DeviceLinkSink + links: + - 19 - uid: 183 components: - - pos: 1.5,-3.5 + - type: Transform + pos: 1.5,-3.5 parent: 1 - type: Transform - - links: + - type: DeviceLinkSink + links: - 189 - type: DeviceLinkSink - uid: 185 components: - - pos: 1.5,-5.5 + - type: Transform + pos: 1.5,-5.5 parent: 1 - type: Transform - - links: + - type: DeviceLinkSink + links: - 189 - type: DeviceLinkSink - - uid: 186 - components: - - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 1 - type: Transform - - links: - - 52 - - 60 - type: DeviceLinkSink - proto: CableApcExtension entities: - uid: 31 components: - - pos: 3.5,-0.5 + - type: Transform + pos: 3.5,-0.5 parent: 1 - type: Transform - uid: 33 components: - - pos: 0.5,-0.5 + - type: Transform + pos: 0.5,-0.5 parent: 1 - type: Transform - uid: 39 components: - - pos: -0.5,-0.5 + - type: Transform + pos: -0.5,-0.5 parent: 1 - type: Transform - uid: 63 components: - - pos: 3.5,-3.5 + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -3.5,1.5 parent: 1 - type: Transform - uid: 102 components: - - pos: -1.5,-0.5 + - type: Transform + pos: -1.5,-0.5 parent: 1 - type: Transform - uid: 136 components: - - pos: -2.5,-0.5 + - type: Transform + pos: -2.5,-0.5 parent: 1 - type: Transform - uid: 140 components: - - pos: -3.5,-0.5 + - type: Transform + pos: -3.5,-0.5 parent: 1 - type: Transform - uid: 147 components: - - pos: 2.5,-0.5 + - type: Transform + pos: 2.5,-0.5 parent: 1 - type: Transform - uid: 153 components: - - pos: 0.5,-2.5 + - type: Transform + pos: 0.5,-2.5 parent: 1 - type: Transform - uid: 154 components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform - - uid: 155 - components: - - pos: -4.5,1.5 + - type: Transform + pos: 0.5,-3.5 parent: 1 - type: Transform - uid: 157 components: - - pos: 0.5,0.5 + - type: Transform + pos: 0.5,0.5 parent: 1 - type: Transform - uid: 177 components: - - pos: 2.5,0.5 + - type: Transform + pos: 2.5,0.5 parent: 1 - type: Transform - uid: 178 components: - - pos: 0.5,1.5 + - type: Transform + pos: 0.5,1.5 parent: 1 - type: Transform - uid: 179 components: - - pos: 0.5,2.5 + - type: Transform + pos: 0.5,2.5 parent: 1 - type: Transform - uid: 180 components: - - pos: -3.5,-2.5 + - type: Transform + pos: -3.5,-2.5 parent: 1 - type: Transform - uid: 181 components: - - pos: 0.5,3.5 + - type: Transform + pos: 0.5,3.5 parent: 1 - type: Transform - uid: 182 components: - - pos: 0.5,4.5 + - type: Transform + pos: 0.5,4.5 parent: 1 - type: Transform - uid: 184 components: - - pos: 5.5,2.5 + - type: Transform + pos: 5.5,2.5 parent: 1 - type: Transform - uid: 193 components: - - pos: -3.5,-1.5 - parent: 1 - type: Transform - - uid: 194 - components: - - pos: -4.5,0.5 + - type: Transform + pos: -3.5,-1.5 parent: 1 - type: Transform - uid: 195 components: - - pos: 0.5,-1.5 + - type: Transform + pos: 0.5,-1.5 parent: 1 - type: Transform - uid: 196 components: - - pos: -4.5,-0.5 + - type: Transform + pos: -4.5,-0.5 parent: 1 - type: Transform - uid: 197 components: - - pos: 5.5,0.5 + - type: Transform + pos: 5.5,0.5 parent: 1 - type: Transform - uid: 198 components: - - pos: 3.5,-2.5 + - type: Transform + pos: 3.5,-2.5 parent: 1 - type: Transform - uid: 199 components: - - pos: 3.5,-1.5 + - type: Transform + pos: 3.5,-1.5 parent: 1 - type: Transform - uid: 200 components: - - pos: 5.5,1.5 + - type: Transform + pos: 5.5,1.5 parent: 1 - type: Transform - uid: 201 components: - - pos: 5.5,-0.5 + - type: Transform + pos: 5.5,-0.5 parent: 1 - type: Transform - uid: 202 components: - - pos: 1.5,-0.5 + - type: Transform + pos: 1.5,-0.5 parent: 1 - type: Transform - uid: 203 components: - - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 221 - components: - - pos: -4.5,1.5 - parent: 1 - type: Transform - - uid: 222 - components: - - pos: -4.5,2.5 + - type: Transform + pos: 4.5,-0.5 parent: 1 - type: Transform - - uid: 223 + - uid: 209 components: - - pos: -4.5,3.5 + - type: Transform + pos: -3.5,-3.5 parent: 1 - type: Transform - uid: 224 components: - - pos: -2.5,3.5 + - type: Transform + pos: -2.5,3.5 parent: 1 - type: Transform - uid: 225 components: - - pos: -3.5,3.5 + - type: Transform + pos: -3.5,3.5 parent: 1 - type: Transform - uid: 237 components: - - pos: 5.5,3.5 + - type: Transform + pos: 5.5,3.5 parent: 1 - type: Transform - uid: 239 components: - - pos: 4.5,-3.5 + - type: Transform + pos: 4.5,-3.5 parent: 1 - type: Transform - uid: 249 components: - - pos: 5.5,-3.5 + - type: Transform + pos: 5.5,-3.5 parent: 1 - type: Transform - uid: 275 components: - - pos: -2.5,4.5 - parent: 1 - type: Transform - - uid: 276 - components: - - pos: -2.5,5.5 - parent: 1 - type: Transform - - uid: 277 - components: - - pos: -2.5,6.5 + - type: Transform + pos: -2.5,4.5 parent: 1 - type: Transform - proto: CableHV entities: + - uid: 75 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 - uid: 165 components: - - pos: 5.5,-1.5 + - type: Transform + pos: 5.5,-1.5 parent: 1 - type: Transform - uid: 231 components: - - pos: 4.5,-1.5 + - type: Transform + pos: 4.5,-1.5 parent: 1 - type: Transform - uid: 234 components: - - pos: 3.5,-1.5 + - type: Transform + pos: 3.5,-1.5 parent: 1 - type: Transform - uid: 236 components: - - pos: 6.5,-1.5 - parent: 1 - type: Transform - - uid: 255 - components: - - pos: 6.5,-0.5 + - type: Transform + pos: 6.5,-1.5 parent: 1 - type: Transform - proto: CableMV entities: - uid: 174 components: - - pos: 3.5,0.5 + - type: Transform + pos: 3.5,0.5 parent: 1 - type: Transform - uid: 175 components: - - pos: 2.5,0.5 + - type: Transform + pos: 2.5,0.5 parent: 1 - type: Transform - uid: 256 components: - - pos: 4.5,0.5 + - type: Transform + pos: 4.5,0.5 parent: 1 - type: Transform - uid: 257 components: - - pos: 5.5,0.5 + - type: Transform + pos: 5.5,0.5 parent: 1 - type: Transform - uid: 258 components: - - pos: 6.5,0.5 + - type: Transform + pos: 6.5,0.5 parent: 1 - type: Transform - uid: 259 components: - - pos: 6.5,-0.5 + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: 5.5,-1.5 parent: 1 - type: Transform - proto: CableTerminal entities: - uid: 230 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-1.5 parent: 1 - type: Transform - proto: Catwalk entities: - - uid: 72 - components: - - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 1 - type: Transform - uid: 73 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,5.5 parent: 1 - type: Transform - uid: 74 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,6.5 parent: 1 - type: Transform - - uid: 75 - components: - - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 1 - type: Transform - uid: 76 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,5.5 parent: 1 - type: Transform - uid: 77 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,6.5 parent: 1 - type: Transform - - uid: 78 - components: - - rot: 3.141592653589793 rad - pos: 1.5,4.5 - parent: 1 - type: Transform - uid: 79 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,5.5 parent: 1 - type: Transform - uid: 80 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,6.5 parent: 1 - type: Transform - uid: 82 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,6.5 parent: 1 - type: Transform - uid: 83 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,5.5 parent: 1 - type: Transform - uid: 84 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,6.5 parent: 1 - type: Transform - - uid: 85 - components: - - rot: 3.141592653589793 rad - pos: 3.5,5.5 - parent: 1 - type: Transform - uid: 86 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,5.5 parent: 1 - type: Transform - uid: 126 components: - - pos: 1.5,1.5 + - type: Transform + pos: 1.5,1.5 parent: 1 - type: Transform - uid: 129 components: - - pos: 0.5,0.5 + - type: Transform + pos: 0.5,0.5 parent: 1 - type: Transform - uid: 130 components: - - pos: 1.5,0.5 + - type: Transform + pos: 1.5,0.5 parent: 1 - type: Transform - uid: 134 components: - - pos: 0.5,1.5 + - type: Transform + pos: 0.5,1.5 parent: 1 - type: Transform - uid: 248 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,-3.5 parent: 1 - type: Transform - uid: 252 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-3.5 parent: 1 - type: Transform - uid: 268 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,-3.5 parent: 1 - type: Transform -- proto: Chair +- proto: ChairFolding entities: - - uid: 38 + - uid: 12 components: - - rot: -1.5707963267948966 rad - pos: 4.5,2.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 parent: 1 - type: Transform - - uid: 267 + - uid: 81 components: - - rot: 3.141592653589793 rad - pos: 3.5,1.5 + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 parent: 1 - type: Transform - proto: ChairPilotSeat entities: - uid: 141 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,3.5 parent: 1 - type: Transform - proto: ComputerTabletopShuttle entities: - uid: 191 components: - - pos: -4.5,4.5 + - type: Transform + pos: -4.5,4.5 parent: 1 - type: Transform - proto: ComputerTabletopStationRecords entities: - uid: 192 components: - - pos: -3.5,4.5 + - type: Transform + pos: -3.5,4.5 + parent: 1 +- proto: ComputerWallmountWithdrawBankATM + entities: + - uid: 332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 parent: 1 - type: Transform + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + board: !type:Container + ents: [] + bank-ATM-cashSlot: !type:ContainerSlot {} + - type: ItemSlots - proto: ConveyorBelt entities: - uid: 97 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 1 - type: Transform - - links: + - type: DeviceLinkSink + links: - 125 - type: DeviceLinkSink - uid: 98 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 1 - type: Transform - - links: + - type: DeviceLinkSink + links: - 125 - type: DeviceLinkSink - uid: 99 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 1 - type: Transform - - links: + - type: DeviceLinkSink + links: - 125 - type: DeviceLinkSink - uid: 100 components: - - rot: 3.141592653589793 rad + - type: Transform pos: 1.5,2.5 parent: 1 - type: Transform - - links: - - 148 - type: DeviceLinkSink + - type: DeviceLinkSink + links: + - 330 + - 149 - uid: 101 components: - - rot: 3.141592653589793 rad + - type: Transform pos: 1.5,4.5 parent: 1 - type: Transform - - links: - - 148 - type: DeviceLinkSink + - type: DeviceLinkSink + links: + - 330 + - 149 - uid: 103 components: - - rot: 3.141592653589793 rad + - type: Transform pos: 1.5,5.5 parent: 1 - type: Transform - - links: - - 148 - type: DeviceLinkSink + - type: DeviceLinkSink + links: + - 330 + - 149 - uid: 104 components: - - rot: 3.141592653589793 rad + - type: Transform pos: 1.5,3.5 parent: 1 - type: Transform - - links: - - 148 - type: DeviceLinkSink + - type: DeviceLinkSink + links: + - 330 + - 149 - uid: 105 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-3.5 parent: 1 - type: Transform - - links: - - 162 - type: DeviceLinkSink - - uid: 106 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-3.5 - parent: 1 - type: Transform - - links: + - type: DeviceLinkSink + links: - 162 - type: DeviceLinkSink - uid: 107 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,-3.5 parent: 1 - type: Transform - - links: + - type: DeviceLinkSink + links: - 162 - type: DeviceLinkSink - uid: 228 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 1 - type: Transform - - links: + - type: DeviceLinkSink + links: - 125 - type: DeviceLinkSink - uid: 269 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 1 - type: Transform - - links: + - type: DeviceLinkSink + links: - 125 - type: DeviceLinkSink - proto: CrateGenericSteel entities: - - uid: 149 + - uid: 70 components: - - pos: -2.5,-3.5 + - type: Transform + pos: -2.5,-2.5 parent: 1 - type: Transform - proto: DefibrillatorCabinetFilled entities: - - uid: 229 - components: - - pos: -5.5,1.5 - parent: 1 - type: Transform -- proto: DrinkBeerglass - entities: - - uid: 65 - components: - - pos: 3.6651173,3.8305898 - parent: 1 - type: Transform - - uid: 163 + - uid: 304 components: - - pos: 3.2484512,3.5189266 + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 parent: 1 - type: Transform -- proto: DrinkMugBlue +- proto: DrinkWaterBottleFull entities: - - uid: 263 + - uid: 14 components: - - pos: -5.654616,4.264064 + - type: Transform + pos: 3.3522706,3.5916283 parent: 1 - type: Transform -- proto: DrinkMugMetal - entities: - - uid: 262 + - uid: 294 components: - - pos: 3.3084455,2.5795195 + - type: Transform + pos: 3.6803956,3.6541283 parent: 1 - type: Transform - proto: EmergencyLight entities: - uid: 320 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-2.5 parent: 1 - type: Transform - - uid: 324 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,1.5 - parent: 1 - type: Transform - uid: 325 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,2.5 parent: 1 - type: Transform + - uid: 331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 - proto: ExtinguisherCabinetFilled entities: - - uid: 271 + - uid: 221 components: - - rot: 3.141592653589793 rad - pos: -5.5,-2.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 parent: 1 - type: Transform - proto: FaxMachineShip entities: - uid: 143 components: - - pos: -5.5,4.5 + - type: Transform + pos: -5.5,4.5 parent: 1 - type: Transform - proto: FirelockGlass entities: - - uid: 68 + - uid: 35 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 55 components: - - pos: 1.5,3.5 + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 parent: 1 - type: Transform - uid: 71 components: - - pos: 1.5,-3.5 + - type: Transform + pos: 1.5,-3.5 parent: 1 - type: Transform - uid: 96 components: - - pos: 1.5,-5.5 + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: -4.5,0.5 parent: 1 - type: Transform - uid: 318 components: - - pos: -4.5,1.5 + - type: Transform + pos: 0.5,2.5 parent: 1 - type: Transform - uid: 319 components: - - pos: 2.5,-0.5 + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 0.5,-3.5 parent: 1 - type: Transform - proto: FoodBoxPizzaFilled entities: - - uid: 152 + - uid: 216 components: - - pos: 3.5495157,3.143291 + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.3678956,2.7947533 parent: 1 - type: Transform - proto: GasPassiveVent entities: - - uid: 310 + - uid: 66 components: - - pos: 0.5,5.5 + - type: Transform + pos: 4.5,5.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeBend entities: - - uid: 209 + - uid: 267 components: - - rot: -1.5707963267948966 rad - pos: -2.5,3.5 + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 parent: 1 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 279 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-0.5 parent: 1 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 285 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,-1.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 302 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 337 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 348 + components: + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-1.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 8 components: - - pos: -4.5,2.5 + - type: Transform + pos: -4.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,3.5 parent: 1 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 156 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,3.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 280 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,1.5 parent: 1 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 281 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,0.5 parent: 1 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 282 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,-0.5 parent: 1 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 283 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-0.5 parent: 1 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor - - uid: 284 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 1 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 286 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-0.5 parent: 1 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 287 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,-0.5 parent: 1 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 288 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-0.5 parent: 1 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor - - uid: 289 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 1 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor - - uid: 292 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 293 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,-1.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 296 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 297 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-1.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 298 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,1.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 299 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,2.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 300 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-1.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 303 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 306 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,-1.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 308 - components: - - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 309 - components: - - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 311 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,0.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 312 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 333 components: - - rot: 3.141592653589793 rad - pos: 0.5,1.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 313 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 336 components: - - rot: 3.141592653589793 rad - pos: 0.5,0.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 314 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 350 components: - - rot: 3.141592653589793 rad - pos: 0.5,-0.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeTJunction entities: - - uid: 210 + - uid: 150 components: - - rot: 1.5707963267948966 rad - pos: -4.5,3.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 parent: 1 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor - - uid: 291 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 167 components: - - rot: 3.141592653589793 rad - pos: -0.5,-0.5 + - type: Transform + pos: -1.5,-1.5 parent: 1 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor - - uid: 294 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 208 components: - - rot: 3.141592653589793 rad - pos: 0.5,-1.5 + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 295 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 347 components: - - pos: -0.5,-1.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPort entities: - - uid: 212 + - uid: 262 components: - - pos: -2.5,4.5 + - type: Transform + pos: 5.5,3.5 parent: 1 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPressurePump entities: - - uid: 204 + - uid: 137 components: - - rot: -1.5707963267948966 rad - pos: -3.5,3.5 + - type: Transform + pos: 5.5,2.5 parent: 1 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor - - uid: 208 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 344 components: - - rot: 3.141592653589793 rad - pos: 0.5,2.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVentPump entities: - uid: 190 components: - - pos: -4.5,4.5 + - type: Transform + pos: -4.5,4.5 parent: 1 - type: Transform - - ShutdownSubscribers: - - 323 - type: DeviceNetwork - - color: '#0000CCFF' - type: AtmosPipeColor - - uid: 304 + - type: DeviceNetwork + deviceLists: + - 292 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 317 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 + - type: Transform + pos: -1.5,0.5 parent: 1 - type: Transform - - ShutdownSubscribers: - - 322 - type: DeviceNetwork - - color: '#0000CCFF' - type: AtmosPipeColor - - uid: 317 + - type: DeviceNetwork + deviceLists: + - 292 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 349 components: - - pos: -0.5,0.5 + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 parent: 1 - type: Transform - - ShutdownSubscribers: - - 323 - type: DeviceNetwork - - color: '#0000CCFF' - type: AtmosPipeColor + - type: DeviceNetwork + deviceLists: + - 213 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 187 components: - - pos: -3.5,4.5 + - type: Transform + pos: -3.5,4.5 parent: 1 - type: Transform - - ShutdownSubscribers: - - 323 - type: DeviceNetwork - - color: '#990000FF' - type: AtmosPipeColor - - uid: 315 + - type: DeviceNetwork + deviceLists: + - 292 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 289 components: - - pos: 5.5,-0.5 + - type: Transform + pos: 5.5,-0.5 parent: 1 - type: Transform - - ShutdownSubscribers: - - 322 - type: DeviceNetwork - - color: '#990000FF' - type: AtmosPipeColor + - type: DeviceNetwork + deviceLists: + - 213 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 316 components: - - rot: 3.141592653589793 rad - pos: -0.5,-2.5 + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 parent: 1 - type: Transform - - ShutdownSubscribers: - - 323 - type: DeviceNetwork - - color: '#990000FF' - type: AtmosPipeColor + - type: DeviceNetwork + deviceLists: + - 292 + - type: AtmosDevice + joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 243 + - uid: 158 components: - - pos: 5.5,3.5 + - type: Transform + pos: -2.5,3.5 parent: 1 - type: Transform - proto: Grille entities: - uid: 112 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 1 - type: Transform - uid: 113 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,0.5 parent: 1 - type: Transform - uid: 114 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,1.5 parent: 1 - type: Transform - uid: 115 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,5.5 parent: 1 - type: Transform - uid: 116 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,5.5 parent: 1 - type: Transform - uid: 117 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,5.5 parent: 1 - type: Transform - uid: 118 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -6.5,4.5 parent: 1 - type: Transform - uid: 119 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -6.5,3.5 parent: 1 - type: Transform - proto: Gyroscope entities: - - uid: 242 + - uid: 160 components: - - rot: -1.5707963267948966 rad - pos: 6.5,2.5 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 parent: 1 - type: Transform - proto: LockerQuarterMasterFilled entities: - - uid: 211 + - uid: 146 components: - - pos: -5.5,2.5 + - type: Transform + pos: -5.5,2.5 parent: 1 - type: Transform - proto: LockerSalvageSpecialistFilled entities: - - uid: 146 + - uid: 211 components: - - pos: 3.5,-1.5 + - type: Transform + pos: 3.5,-1.5 parent: 1 - type: Transform - proto: MaterialReclaimer entities: - - uid: 91 + - uid: 17 components: - - pos: -3.5,0.5 + - type: Transform + pos: 6.5,2.5 parent: 1 - type: Transform - proto: OreProcessor entities: - - uid: 247 + - uid: 263 components: - - pos: -4.5,-3.5 + - type: Transform + pos: -2.5,-3.5 parent: 1 - type: Transform - proto: PaperBin5 entities: - uid: 145 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,3.5 parent: 1 - type: Transform - proto: PlasticFlapsAirtightClear entities: - - uid: 55 + - uid: 57 components: - - rot: 3.141592653589793 rad - pos: 1.5,3.5 + - type: Transform + pos: 1.5,-5.5 parent: 1 - type: Transform - - uid: 57 + - uid: 62 components: - - pos: 1.5,-5.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 parent: 1 - type: Transform - uid: 108 components: - - pos: 1.5,-3.5 + - type: Transform + pos: 1.5,-3.5 parent: 1 - type: Transform -- proto: PortableGeneratorPacman +- proto: PortableGeneratorPacmanShuttle entities: - - uid: 235 + - uid: 78 components: - - anchored: True + - type: Transform pos: 4.5,-1.5 parent: 1 - type: Transform - - storage: - Plasma: 3000 - type: MaterialStorage - - bodyType: Static - type: Physics - - type: InsertingMaterialStorage + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static + - uid: 254 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - type: FuelGenerator + on: False + - type: Physics + bodyType: Static +- proto: PowerCellRecharger + entities: + - uid: 38 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 - proto: Poweredlight entities: + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 - uid: 139 components: - - rot: -1.5707963267948966 rad - pos: -2.5,3.5 + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 parent: 1 - type: Transform - - uid: 158 + - uid: 242 components: - - rot: 3.141592653589793 rad - pos: 2.5,5.5 + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -2.5,0.5 parent: 1 - type: Transform - proto: PoweredlightColoredBlack entities: - uid: 169 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-3.5 parent: 1 - type: Transform -- proto: PoweredSmallLight +- proto: PoweredlightSodium entities: - - uid: 123 - components: - - pos: -3.5,0.5 - parent: 1 - type: Transform - - uid: 124 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 1 - type: Transform - - uid: 128 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 137 + - uid: 204 components: - - rot: 1.5707963267948966 rad - pos: 3.5,2.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 parent: 1 - type: Transform - - uid: 160 +- proto: PoweredSmallLight + entities: + - uid: 106 components: - - rot: -1.5707963267948966 rad - pos: 6.5,2.5 + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 parent: 1 - type: Transform - - uid: 264 + - uid: 121 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 parent: 1 - type: Transform - proto: Rack entities: - uid: 171 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-3.5 parent: 1 - type: Transform - proto: Railing entities: - uid: 87 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,6.5 parent: 1 - type: Transform -- proto: RailingCorner - entities: - - uid: 89 + - uid: 233 components: - - rot: 1.5707963267948966 rad - pos: 3.5,5.5 + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 parent: 1 - type: Transform -- proto: RailingCornerSmall - entities: + - uid: 291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 +- proto: RailingCornerSmall + entities: - uid: 95 components: - - pos: -1.5,5.5 + - type: Transform + pos: -1.5,5.5 parent: 1 - type: Transform - proto: ReinforcedWindow entities: - uid: 3 components: - - pos: -5.5,5.5 + - type: Transform + pos: -5.5,5.5 parent: 1 - type: Transform - uid: 4 components: - - pos: -4.5,5.5 + - type: Transform + pos: -4.5,5.5 parent: 1 - type: Transform - uid: 5 components: - - pos: -3.5,5.5 + - type: Transform + pos: -3.5,5.5 parent: 1 - type: Transform - uid: 6 components: - - pos: -6.5,4.5 + - type: Transform + pos: -6.5,4.5 parent: 1 - type: Transform - uid: 7 components: - - pos: -6.5,3.5 + - type: Transform + pos: -6.5,3.5 parent: 1 - type: Transform - uid: 28 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 1 - type: Transform - uid: 29 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,1.5 parent: 1 - type: Transform - uid: 30 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,0.5 parent: 1 - type: Transform +- proto: SalvageTechfabNF + entities: + - uid: 296 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 - proto: SheetPlasma entities: - - uid: 172 + - uid: 334 components: - - rot: 1.5707963267948966 rad - pos: 6.496558,0.63767743 + - type: Transform + pos: 4.477741,-1.5468674 parent: 1 - type: Transform -- proto: SignalButton + - type: Stack + count: 15 +- proto: SheetPlasma1 entities: - - uid: 52 + - uid: 338 components: - - rot: -1.5707963267948966 rad - pos: 2.5,2.5 + - type: Transform + pos: 5.484686,-1.5624924 parent: 1 - type: Transform - - linkedPorts: - 61: - - Pressed: Toggle - 62: - - Pressed: Toggle - 186: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 60 + - type: Stack + count: 15 +- proto: SignalButton + entities: + - uid: 19 components: - - rot: -1.5707963267948966 rad - pos: 2.5,4.5 + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 parent: 1 - type: Transform - - linkedPorts: - 61: + - type: DeviceLinkSource + linkedPorts: + 60: - Pressed: Toggle - 62: + 2: - Pressed: Toggle - 186: + 18: - Pressed: Toggle - type: DeviceLinkSource - proto: SignalButtonDirectional entities: - uid: 189 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,-2.5 parent: 1 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 183: - Pressed: Toggle 185: - Pressed: Toggle - type: DeviceLinkSource + - uid: 351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 148: + - Pressed: DoorBolt + 20: + - Pressed: DoorBolt + 284: + - Pressed: DoorBolt + 109: + - Pressed: DoorBolt + 110: + - Pressed: DoorBolt +- proto: SignElectricalMed + entities: + - uid: 345 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 - proto: SMESBasic entities: - uid: 253 components: - - pos: 6.5,-1.5 + - type: Transform + pos: 6.5,-1.5 parent: 1 - type: Transform - proto: SolidSecretDoor entities: - uid: 173 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,-2.5 parent: 1 - type: Transform - proto: SpawnPointLatejoin entities: - uid: 168 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,1.5 parent: 1 - type: Transform - proto: SpawnPointPilot entities: - uid: 207 components: - - pos: -4.5,3.5 + - type: Transform + pos: -4.5,3.5 parent: 1 - type: Transform - proto: SpawnPointSalvageSpecialist entities: - - uid: 213 + - uid: 346 components: - - pos: -1.5,0.5 + - type: Transform + pos: 4.5,0.5 parent: 1 - type: Transform -- proto: SubstationBasic +- proto: SubstationWallBasic entities: - - uid: 254 + - uid: 166 components: - - pos: 6.5,-0.5 + - type: Transform + pos: 6.5,-2.5 parent: 1 - type: Transform - proto: SuitStorageSalv entities: - - uid: 166 + - uid: 276 components: - - pos: 5.5,-1.5 + - type: Transform + pos: 6.5,-0.5 parent: 1 - type: Transform - proto: SuitStorageWallmountQuartermaster entities: - uid: 329 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,2.5 parent: 1 - type: Transform + - type: Physics + canCollide: False - proto: Table entities: - - uid: 159 + - uid: 89 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,3.5 parent: 1 - type: Transform - - uid: 164 + - uid: 212 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,2.5 parent: 1 - type: Transform - - uid: 232 +- proto: TableReinforced + entities: + - uid: 132 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,0.5 parent: 1 - type: Transform - - uid: 233 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,1.5 - parent: 1 - type: Transform -- proto: TableReinforced - entities: - uid: 142 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,4.5 parent: 1 - type: Transform - uid: 144 components: - - pos: -5.5,3.5 + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,1.5 parent: 1 - type: Transform - uid: 205 components: - - pos: -3.5,4.5 + - type: Transform + pos: -3.5,4.5 parent: 1 - type: Transform - uid: 206 components: - - pos: -4.5,4.5 + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: -3.5,-3.5 parent: 1 - type: Transform - proto: Thruster entities: - uid: 59 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,-3.5 parent: 1 - type: Transform + - uid: 85 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + - uid: 127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 1 - uid: 170 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,-5.5 parent: 1 - type: Transform - - uid: 240 + - uid: 255 components: - - pos: 5.5,5.5 + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 parent: 1 - type: Transform - uid: 274 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,6.5 parent: 1 - type: Transform + - uid: 327 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 +- proto: trayScanner + entities: + - uid: 163 + components: + - type: Transform + pos: 6.324864,1.10829 + parent: 1 - proto: TwoWayLever entities: - uid: 125 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-0.5 + - type: Transform + pos: 0.5,-1.5 parent: 1 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 228: - Left: Forward - Right: Reverse @@ -2268,377 +2417,366 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - type: DeviceLinkSource - - uid: 148 + - uid: 149 components: - - rot: -1.5707963267948966 rad - pos: 0.5,2.5 + - type: Transform + pos: 2.5,6.5 parent: 1 - type: Transform - - linkedPorts: - 100: + - type: DeviceLinkSource + linkedPorts: + 103: - Left: Forward - - Right: Reverse + - Right: Forward - Middle: Off - 104: + 101: - Left: Forward - - Right: Reverse + - Right: Forward - Middle: Off - 101: + 104: - Left: Forward - - Right: Reverse + - Right: Forward - Middle: Off - 103: + 100: - Left: Forward - - Right: Reverse + - Right: Forward - Middle: Off - type: DeviceLinkSource - uid: 162 components: - - pos: -3.5,-2.5 + - type: Transform + pos: -3.5,-2.5 parent: 1 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 107: - - Left: Reverse + - Left: Forward - Right: Forward - Middle: Off 105: - - Left: Reverse - - Right: Forward - - Middle: Off - 106: - - Left: Reverse + - Left: Forward - Right: Forward - Middle: Off - type: DeviceLinkSource -- proto: VendingMachineSalvage - entities: - - uid: 167 + - uid: 330 components: - - pos: -1.5,-2.5 + - type: Transform + pos: -0.5,0.5 parent: 1 - type: Transform + - type: DeviceLinkSource + linkedPorts: + 100: + - Middle: Off + - Left: Forward + - Right: Forward + 104: + - Middle: Off + - Left: Forward + - Right: Forward + 103: + - Middle: Off + - Right: Forward + - Left: Forward + 101: + - Middle: Off + - Right: Forward + - Left: Forward - proto: WallReinforced entities: - uid: 9 components: - - pos: -6.5,1.5 + - type: Transform + pos: -6.5,1.5 parent: 1 - type: Transform - uid: 10 components: - - pos: -2.5,5.5 + - type: Transform + pos: -2.5,5.5 parent: 1 - type: Transform - uid: 11 components: - - pos: -1.5,4.5 - parent: 1 - type: Transform - - uid: 12 - components: - - pos: -1.5,3.5 + - type: Transform + pos: -1.5,4.5 parent: 1 - type: Transform - uid: 13 components: - - pos: -5.5,1.5 + - type: Transform + pos: -5.5,1.5 parent: 1 - type: Transform - - uid: 14 - components: - - pos: 2.5,3.5 - parent: 1 - type: Transform - uid: 15 components: - - pos: 2.5,4.5 - parent: 1 - type: Transform - - uid: 16 - components: - - pos: -3.5,1.5 - parent: 1 - type: Transform - - uid: 18 - components: - - pos: -2.5,2.5 + - type: Transform + pos: 2.5,4.5 parent: 1 - type: Transform - uid: 21 components: - - pos: 4.5,4.5 + - type: Transform + pos: 4.5,4.5 parent: 1 - type: Transform - uid: 22 components: - - pos: 5.5,4.5 + - type: Transform + pos: 5.5,4.5 parent: 1 - type: Transform - uid: 23 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-1.5 parent: 1 - type: Transform - uid: 24 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 1 - type: Transform - uid: 25 components: - - pos: 3.5,4.5 + - type: Transform + pos: 3.5,4.5 parent: 1 - type: Transform - uid: 26 components: - - pos: 6.5,3.5 + - type: Transform + pos: 6.5,3.5 parent: 1 - type: Transform - uid: 27 components: - - pos: 7.5,2.5 + - type: Transform + pos: 7.5,2.5 parent: 1 - type: Transform - uid: 32 components: - - pos: 7.5,-2.5 - parent: 1 - type: Transform - - uid: 34 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-4.5 + - type: Transform + pos: 7.5,-2.5 parent: 1 - type: Transform - uid: 36 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-3.5 parent: 1 - type: Transform - uid: 37 components: - - pos: 2.5,-5.5 + - type: Transform + pos: 2.5,-5.5 parent: 1 - type: Transform - uid: 42 components: - - pos: -1.5,-4.5 + - type: Transform + pos: -1.5,-4.5 parent: 1 - type: Transform - uid: 43 components: - - pos: -1.5,-3.5 + - type: Transform + pos: -1.5,-3.5 parent: 1 - type: Transform - uid: 44 components: - - pos: 2.5,-4.5 + - type: Transform + pos: 2.5,-4.5 parent: 1 - type: Transform - uid: 45 components: - - pos: 2.5,-3.5 - parent: 1 - type: Transform - - uid: 64 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-3.5 + - type: Transform + pos: 2.5,-3.5 parent: 1 - type: Transform - uid: 67 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,-4.5 parent: 1 - type: Transform - - uid: 88 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 1 - type: Transform - - uid: 90 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 1 - type: Transform - - uid: 92 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,0.5 - parent: 1 - type: Transform - - uid: 93 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 94 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,2.5 - parent: 1 - type: Transform - uid: 120 components: - - pos: -6.5,2.5 + - type: Transform + pos: -6.5,2.5 parent: 1 - type: Transform - - uid: 127 + - uid: 128 components: - - pos: -2.5,-5.5 + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 parent: 1 - type: Transform - uid: 135 components: - - rot: 3.141592653589793 rad - pos: 4.5,-5.5 + - type: Transform + pos: 6.5,-2.5 parent: 1 - type: Transform - uid: 138 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-4.5 parent: 1 - type: Transform + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 - uid: 161 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-5.5 parent: 1 - type: Transform - uid: 214 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,-4.5 parent: 1 - type: Transform + - uid: 215 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 - uid: 261 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-2.5 parent: 1 - type: Transform -- proto: WallSolid + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-3.5 + parent: 1 +- proto: WallReinforcedDiagonal entities: - - uid: 111 + - uid: 131 components: - - rot: 3.141592653589793 rad - pos: 4.5,-2.5 + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 parent: 1 - type: Transform - - uid: 132 + - uid: 172 components: - - rot: 3.141592653589793 rad - pos: 6.5,-2.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 parent: 1 - type: Transform - - uid: 133 + - uid: 186 components: - - rot: 3.141592653589793 rad - pos: 5.5,-2.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 parent: 1 - type: Transform - - uid: 215 + - uid: 244 components: - - rot: 3.141592653589793 rad - pos: 5.5,-4.5 + - type: Transform + pos: -6.5,5.5 parent: 1 - type: Transform - - uid: 246 + - uid: 245 components: - - rot: 3.141592653589793 rad - pos: 4.5,-4.5 + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,3.5 parent: 1 - type: Transform -- proto: WallSolidDiagonal + - uid: 308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 + - uid: 321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1 +- proto: WallSolid entities: - - uid: 2 + - uid: 88 components: - - pos: -6.5,5.5 + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 parent: 1 - type: Transform - - uid: 17 + - uid: 90 components: - - rot: 3.141592653589793 rad - pos: -1.5,2.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 parent: 1 - type: Transform - - uid: 19 + - uid: 92 components: - - rot: 3.141592653589793 rad - pos: 6.5,-4.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 parent: 1 - type: Transform - - uid: 20 + - uid: 93 components: - - rot: 3.141592653589793 rad - pos: 5.5,-5.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 parent: 1 - type: Transform - - uid: 35 + - uid: 94 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-4.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 parent: 1 - type: Transform - - uid: 41 + - uid: 111 components: - - rot: 3.141592653589793 rad - pos: -2.5,1.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 parent: 1 - type: Transform - - uid: 81 + - uid: 133 components: - - rot: -1.5707963267948966 rad - pos: -1.5,5.5 + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 parent: 1 - type: Transform - - uid: 131 + - uid: 222 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-5.5 + - type: Transform + pos: -1.5,3.5 parent: 1 - type: Transform - - uid: 244 + - uid: 232 components: - - rot: -1.5707963267948966 rad - pos: 7.5,3.5 + - type: Transform + pos: 2.5,3.5 parent: 1 - type: Transform - - uid: 245 + - uid: 235 components: - - rot: -1.5707963267948966 rad - pos: 6.5,4.5 + - type: Transform + pos: 2.5,2.5 parent: 1 - type: Transform -- proto: WarpPointShip - entities: - - uid: 40 + - uid: 243 components: - - pos: 0.5,0.5 + - type: Transform + pos: -1.5,2.5 parent: 1 - type: Transform -- proto: WaterCooler + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 +- proto: WarpPointShip entities: - - uid: 150 + - uid: 40 components: - - pos: 4.5,3.5 + - type: Transform + pos: 0.5,0.5 parent: 1 - type: Transform - proto: Wrench entities: - - uid: 151 + - uid: 34 components: - - pos: 6.380465,1.3807236 + - type: Transform + pos: 6.4525113,1.4135437 parent: 1 - type: Transform ... diff --git a/Resources/Maps/_NF/Shuttles/knuckleverse.yml b/Resources/Maps/_NF/Shuttles/knuckleverse.yml index 4286d5d87fe..a1102448c6d 100644 --- a/Resources/Maps/_NF/Shuttles/knuckleverse.yml +++ b/Resources/Maps/_NF/Shuttles/knuckleverse.yml @@ -373,6 +373,8 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - type: BecomesStation + id: knuckleverse - proto: AirAlarm entities: - uid: 2 @@ -391,8 +393,6 @@ entities: - 269 - 362 - 271 - - type: AtmosDevice - joinedGrid: 1 - uid: 3 components: - type: Transform @@ -407,8 +407,6 @@ entities: - 364 - 269 - 270 - - type: AtmosDevice - joinedGrid: 1 - proto: AirCanister entities: - uid: 4 @@ -416,35 +414,25 @@ entities: - type: Transform pos: -4.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: Airlock entities: - uid: 5 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,7.5 parent: 1 - uid: 6 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,9.5 parent: 1 - uid: 7 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-1.5 parent: 1 - uid: 104 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,9.5 parent: 1 @@ -452,21 +440,17 @@ entities: entities: - uid: 8 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -6.5,14.5 parent: 1 - type: Door - secondsUntilStateChange: -6957.07 + secondsUntilStateChange: -7757.4946 state: Opening - proto: AirlockEngineering entities: - uid: 9 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -7.5,12.5 @@ -475,15 +459,11 @@ entities: entities: - uid: 10 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-3.5 parent: 1 - uid: 11 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-3.5 parent: 1 @@ -508,14 +488,12 @@ entities: entities: - uid: 15 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -5.5,12.5 parent: 1 - type: Door - secondsUntilStateChange: -2498.8562 + secondsUntilStateChange: -3299.2812 state: Opening - proto: APCBasic entities: @@ -1712,7 +1690,7 @@ entities: pos: -10.5,6.5 parent: 1 - type: Door - secondsUntilStateChange: -30112.76 + secondsUntilStateChange: -30913.186 state: Opening - proto: FenceMetalStraight entities: @@ -1912,8 +1890,6 @@ entities: rot: 3.141592653589793 rad pos: -16.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GasPipeBend @@ -2563,8 +2539,6 @@ entities: - type: Transform pos: -4.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentPump @@ -2578,8 +2552,6 @@ entities: - type: DeviceNetwork deviceLists: - 3 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 362 @@ -2588,8 +2560,6 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 363 @@ -2598,8 +2568,6 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber @@ -2613,8 +2581,6 @@ entities: - type: DeviceNetwork deviceLists: - 3 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 365 @@ -2626,8 +2592,6 @@ entities: - type: DeviceNetwork deviceLists: - 3 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 366 @@ -2636,8 +2600,6 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 367 @@ -2646,8 +2608,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 368 @@ -2656,8 +2616,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GravityGeneratorMini @@ -2756,31 +2714,27 @@ entities: - type: Transform pos: -9.5,17.5 parent: 1 + - type: Thruster + originalPowerLoad: 1500 - proto: HospitalCurtains entities: - uid: 387 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -13.5,2.5 parent: 1 - uid: 388 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -11.5,6.5 parent: 1 - type: Door - secondsUntilStateChange: -24811.93 + secondsUntilStateChange: -25612.355 state: Opening - uid: 389 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -11.5,4.5 @@ -3316,6 +3270,13 @@ entities: - type: Transform pos: -4.5,12.5 parent: 1 +- proto: SpawnPointLatejoin + entities: + - uid: 400 + components: + - type: Transform + pos: -13.5,5.5 + parent: 1 - proto: SpawnPointMedicalDoctor entities: - uid: 473 @@ -3573,59 +3534,79 @@ entities: - type: Transform pos: -2.5,15.5 parent: 1 + - type: Thruster + originalPowerLoad: 1500 - uid: 513 components: - type: Transform pos: -11.5,15.5 parent: 1 + - type: Thruster + originalPowerLoad: 1500 - uid: 514 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,0.5 parent: 1 + - type: Thruster + originalPowerLoad: 1500 - uid: 515 components: - type: Transform rot: 3.141592653589793 rad pos: -15.5,0.5 parent: 1 + - type: Thruster + originalPowerLoad: 1500 - uid: 516 components: - type: Transform rot: 3.141592653589793 rad pos: -13.5,-1.5 parent: 1 + - type: Thruster + originalPowerLoad: 1500 - uid: 517 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-1.5 parent: 1 + - type: Thruster + originalPowerLoad: 1500 - uid: 518 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 1 + - type: Thruster + originalPowerLoad: 1500 - uid: 519 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-3.5 parent: 1 + - type: Thruster + originalPowerLoad: 1500 - uid: 520 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-3.5 parent: 1 + - type: Thruster + originalPowerLoad: 1500 - uid: 521 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,0.5 parent: 1 + - type: Thruster + originalPowerLoad: 1500 - proto: ToiletDirtyWater entities: - uid: 522 @@ -3724,902 +3705,678 @@ entities: entities: - uid: 537 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,16.5 parent: 1 - uid: 538 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,16.5 parent: 1 - uid: 539 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -0.5,-0.5 parent: 1 - uid: 540 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 1 - uid: 541 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -1.5,-0.5 parent: 1 - uid: 542 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 1 - uid: 543 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 0.5,0.5 parent: 1 - uid: 544 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-2.5 parent: 1 - uid: 545 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,10.5 parent: 1 - uid: 546 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,14.5 parent: 1 - uid: 547 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,14.5 parent: 1 - uid: 548 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -14.5,9.5 parent: 1 - uid: 549 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,-0.5 parent: 1 - uid: 550 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -17.5,1.5 parent: 1 - uid: 551 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -17.5,4.5 parent: 1 - uid: 552 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -15.5,1.5 parent: 1 - uid: 553 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -16.5,1.5 parent: 1 - uid: 554 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-4.5 parent: 1 - uid: 555 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,7.5 parent: 1 - uid: 556 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,15.5 parent: 1 - uid: 557 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-5.5 parent: 1 - uid: 558 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,1.5 parent: 1 - uid: 559 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,-0.5 parent: 1 - uid: 560 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-1.5 parent: 1 - uid: 561 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,9.5 parent: 1 - uid: 562 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,9.5 parent: 1 - uid: 563 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -16.5,8.5 parent: 1 - uid: 564 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,9.5 parent: 1 - uid: 565 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,11.5 parent: 1 - uid: 566 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -14.5,0.5 parent: 1 - uid: 567 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -17.5,8.5 parent: 1 - uid: 568 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,-2.5 parent: 1 - uid: 569 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -15.5,8.5 parent: 1 - uid: 570 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -17.5,7.5 parent: 1 - uid: 571 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,8.5 parent: 1 - uid: 572 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -17.5,6.5 parent: 1 - uid: 573 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,-1.5 parent: 1 - uid: 574 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,-2.5 parent: 1 - uid: 575 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -17.5,5.5 parent: 1 - uid: 576 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,11.5 parent: 1 - uid: 577 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,13.5 parent: 1 - uid: 578 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,11.5 parent: 1 - uid: 579 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,15.5 parent: 1 - uid: 580 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,12.5 parent: 1 - uid: 581 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,8.5 parent: 1 - uid: 582 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,14.5 parent: 1 - uid: 583 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,12.5 parent: 1 - uid: 584 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,12.5 parent: 1 - uid: 585 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,8.5 parent: 1 - uid: 586 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-2.5 parent: 1 - uid: 587 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -17.5,3.5 parent: 1 - uid: 588 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,8.5 parent: 1 - uid: 589 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-2.5 parent: 1 - uid: 590 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,11.5 parent: 1 - uid: 591 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,13.5 parent: 1 - uid: 592 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-2.5 parent: 1 - uid: 593 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,14.5 parent: 1 - uid: 594 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,11.5 parent: 1 - uid: 595 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,10.5 parent: 1 - uid: 596 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,12.5 parent: 1 - uid: 597 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -17.5,2.5 parent: 1 - uid: 598 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,1.5 parent: 1 - uid: 599 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,1.5 parent: 1 - uid: 600 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -14.5,1.5 parent: 1 - uid: 601 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -14.5,-0.5 parent: 1 - uid: 602 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,2.5 parent: 1 - uid: 603 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -14.5,8.5 parent: 1 - uid: 604 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,-0.5 parent: 1 - uid: 605 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-5.5 parent: 1 - uid: 606 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-3.5 parent: 1 - uid: 607 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-3.5 parent: 1 - uid: 608 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-5.5 parent: 1 - uid: 609 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-2.5 parent: 1 - uid: 610 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-4.5 parent: 1 - uid: 611 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-3.5 parent: 1 - uid: 612 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,11.5 parent: 1 +- proto: WallReinforcedDiagonal + entities: + - uid: 221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 1 + - uid: 222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,0.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: -15.5,9.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: -14.5,10.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: -13.5,12.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -12.5,13.5 + parent: 1 + - uid: 234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + - uid: 235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - uid: 236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + - uid: 392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 - proto: WallSolid entities: - uid: 613 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -6.5,9.5 parent: 1 - uid: 614 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -9.5,9.5 parent: 1 - uid: 615 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -7.5,9.5 parent: 1 - uid: 616 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -8.5,9.5 parent: 1 - uid: 617 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -11.5,9.5 parent: 1 - uid: 618 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -10.5,9.5 parent: 1 - uid: 619 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -5.5,14.5 parent: 1 - uid: 620 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -5.5,13.5 parent: 1 - uid: 621 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -11.5,3.5 parent: 1 - uid: 622 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -11.5,2.5 parent: 1 - uid: 623 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -12.5,2.5 parent: 1 - uid: 624 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -9.5,14.5 parent: 1 - uid: 625 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -7.5,14.5 parent: 1 - uid: 626 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -8.5,14.5 parent: 1 - uid: 627 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -5.5,9.5 parent: 1 - uid: 628 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -11.5,1.5 parent: 1 - uid: 629 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -3.5,11.5 parent: 1 - uid: 630 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-0.5 parent: 1 - uid: 631 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -4.5,9.5 parent: 1 - uid: 632 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -11.5,8.5 parent: 1 - uid: 633 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -8.5,11.5 parent: 1 - uid: 634 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -2.5,9.5 parent: 1 - uid: 635 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -4.5,14.5 parent: 1 - uid: 636 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -10.5,11.5 parent: 1 - uid: 637 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -7.5,11.5 parent: 1 - uid: 638 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - uid: 639 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -11.5,7.5 parent: 1 - uid: 640 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -14.5,2.5 parent: 1 - uid: 641 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -11.5,5.5 parent: 1 - uid: 642 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -5.5,11.5 parent: 1 - uid: 643 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -7.5,13.5 parent: 1 - uid: 644 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -4.5,11.5 parent: 1 - uid: 645 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -9.5,11.5 parent: 1 - uid: 646 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -11.5,0.5 parent: 1 - uid: 647 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -10.5,0.5 parent: 1 - uid: 648 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -9.5,0.5 parent: 1 -- proto: WallSolidDiagonal - entities: - - uid: 649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 1 - - uid: 650 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 1 - - uid: 651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,0.5 - parent: 1 - - uid: 652 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-1.5 - parent: 1 - - uid: 653 - components: - - type: Transform - pos: -15.5,9.5 - parent: 1 - - uid: 654 - components: - - type: Transform - pos: -14.5,10.5 - parent: 1 - - uid: 655 - components: - - type: Transform - pos: -13.5,12.5 - parent: 1 - - uid: 656 - components: - - type: Transform - pos: -12.5,13.5 - parent: 1 - - uid: 657 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 - parent: 1 - - uid: 658 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 1 - - uid: 659 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,12.5 - parent: 1 - - uid: 660 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,13.5 - parent: 1 - proto: WarpPointShip entities: - uid: 661 diff --git a/Resources/Prototypes/Body/Organs/Animal/animal.yml b/Resources/Prototypes/Body/Organs/Animal/animal.yml index b8d245b332d..89acef82927 100644 --- a/Resources/Prototypes/Body/Organs/Animal/animal.yml +++ b/Resources/Prototypes/Body/Organs/Animal/animal.yml @@ -5,6 +5,7 @@ components: - type: Organ - type: Food +# quality: Nasty # Frontier - type: Sprite sprite: Mobs/Species/Human/organs.rsi - type: StaticPrice diff --git a/Resources/Prototypes/Body/Organs/human.yml b/Resources/Prototypes/Body/Organs/human.yml index 69081020ce0..6cd4996926a 100644 --- a/Resources/Prototypes/Body/Organs/human.yml +++ b/Resources/Prototypes/Body/Organs/human.yml @@ -7,6 +7,7 @@ sprite: Mobs/Species/Human/organs.rsi - type: Organ - type: Food +# quality: Nasty # Frontier - type: Extractable grindableSolutionName: organ - type: SolutionContainerManager diff --git a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml index 22d5ba375d2..a99da94b928 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml @@ -191,7 +191,7 @@ components: - type: StorageFill contents: - - id: VehicleATV + - id: VehicleATVNF # Frontier - id: VehicleKeyATV - type: entity diff --git a/Resources/Prototypes/Catalog/Fills/Crates/materials.yml b/Resources/Prototypes/Catalog/Fills/Crates/materials.yml index 6b683459e93..87400ac92e9 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/materials.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/materials.yml @@ -111,6 +111,8 @@ - type: entity id: CrateMaterialUranium parent: CrateUranium + name: uranium crate + description: 90 sheets of uranium. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/Datasets/ion_storm.yml b/Resources/Prototypes/Datasets/ion_storm.yml index 1f198d91d9d..41bb40d0e71 100644 --- a/Resources/Prototypes/Datasets/ion_storm.yml +++ b/Resources/Prototypes/Datasets/ion_storm.yml @@ -852,6 +852,8 @@ - SLIME PEOPLE - SKELETONS - ONIS # Frontier + - GOBLINS # Frontier + - HARPY # Frontier - VULPS - FELINIDS diff --git a/Resources/Prototypes/DeltaV/SoundCollections/vulpkanin.yml b/Resources/Prototypes/DeltaV/SoundCollections/vulpkanin.yml index 1ee85a69132..63458928cc8 100644 --- a/Resources/Prototypes/DeltaV/SoundCollections/vulpkanin.yml +++ b/Resources/Prototypes/DeltaV/SoundCollections/vulpkanin.yml @@ -1,22 +1,33 @@ +- type: soundCollection + id: VulpkaninBarks + files: + - /Audio/DeltaV/Voice/Vulpkanin/dog_bark1.ogg + - /Audio/DeltaV/Voice/Vulpkanin/dog_bark2.ogg + - /Audio/DeltaV/Voice/Vulpkanin/dog_bark3.ogg + - type: soundCollection id: VulpkaninGrowls files: - - /Audio/_NF/Vulpikanin/growl1.ogg - - /Audio/_NF/Vulpikanin/growl2.ogg - - /Audio/_NF/Vulpikanin/growl3.ogg + - /Audio/DeltaV/Voice/Vulpkanin/dog_growl1.ogg + - /Audio/DeltaV/Voice/Vulpkanin/dog_growl2.ogg + - /Audio/DeltaV/Voice/Vulpkanin/dog_growl3.ogg + - /Audio/DeltaV/Voice/Vulpkanin/dog_growl4.ogg + - /Audio/DeltaV/Voice/Vulpkanin/dog_growl5.ogg + - /Audio/DeltaV/Voice/Vulpkanin/dog_growl6.ogg - type: soundCollection - id: VulpkaninBark + id: VulpkaninSnarls files: - - /Audio/_NF/Vulpikanin/bark.ogg + - /Audio/DeltaV/Voice/Vulpkanin/dog_snarl1.ogg + - /Audio/DeltaV/Voice/Vulpkanin/dog_snarl2.ogg + - /Audio/DeltaV/Voice/Vulpkanin/dog_snarl3.ogg - type: soundCollection - id: VulpkaninHowl + id: VulpkaninWhines files: - - /Audio/_NF/Vulpikanin/howl.ogg + - /Audio/DeltaV/Voice/Vulpkanin/dog_whine.ogg - type: soundCollection - id: VulpkaninScreams + id: VulpkaninHowls files: - - /Audio/_NF/Vulpikanin/scream1.ogg - - /Audio/_NF/Vulpikanin/scream2.ogg + - /Audio/DeltaV/Voice/Vulpkanin/howl.ogg diff --git a/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml b/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml index 2c6be760c15..cef61c20bb3 100644 --- a/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml @@ -1,55 +1,4 @@ -- type: emoteSounds - id: MaleVulpkanin - params: - variation: 0.125 - sounds: - Scream: - collection: VulpkaninScreams - Laugh: - collection: MaleLaugh - Sneeze: - collection: MaleSneezes - Cough: - collection: MaleCoughs - Crying: - collection: MaleCry - Whistle: - collection: Whistles - Sigh: - collection: MaleSigh - Growl: - collection: VulpkaninGrowls - Howl: - collection: VulpkaninHowl - Bark: - collection: VulpkaninBark - -- type: emoteSounds - id: FemaleVulpkanin - params: - variation: 0.125 - sounds: - Scream: - collection: VulpkaninScreams - Laugh: - collection: FemaleLaugh - Sneeze: - collection: FemaleSneezes - Cough: - collection: FemaleCoughs - Crying: - collection: FemaleCry - Whistle: - collection: Whistles - Sigh: - collection: FemaleSigh - Growl: - collection: VulpkaninGrowls - Howl: - collection: VulpkaninHowl - Bark: - collection: VulpkaninBark - +# species - type: emoteSounds id: SoundsHarpy params: @@ -81,8 +30,6 @@ collection: HarpyPurrs Ring: collection: HarpyRings - Honk: - collection: HarpyHonks Pew: collection: HarpyPews Bang: @@ -101,7 +48,97 @@ collection: HarpyCaws Chirp: collection: HarpyChirps + Snarl: + collection: VulpkaninSnarls + Bark: + collection: VulpkaninBarks + Whine: + collection: VulpkaninWhines Howl: - collection: VulpkaninHowl + collection: VulpkaninHowls + Awoo: + collection: VulpkaninHowls + Honk: + collection: HarpyHonks + Weh: + collection: Weh + +- type: emoteSounds + id: MaleVulpkanin + params: + variation: 0.125 + sounds: + Scream: + collection: MaleScreams + Laugh: + collection: MaleLaugh + Sneeze: + collection: MaleSneezes + Cough: + collection: MaleCoughs + Yawn: + collection: MaleYawn + Snore: + collection: Snores + Honk: + collection: BikeHorn + Sigh: + collection: MaleSigh + Crying: + collection: MaleCry + Whistle: + collection: Whistles + Weh: + collection: Weh + Growl: + collection: VulpkaninGrowls + Snarl: + collection: VulpkaninSnarls Bark: - collection: VulpkaninBark + collection: VulpkaninBarks + Whine: + collection: VulpkaninWhines + Howl: + collection: VulpkaninHowls + Awoo: + collection: VulpkaninHowls + +- type: emoteSounds + id: FemaleVulpkanin + params: + variation: 0.125 + sounds: + Scream: + collection: FemaleScreams + Laugh: + collection: FemaleLaugh + Sneeze: + collection: FemaleSneezes + Cough: + collection: FemaleCoughs + Yawn: + collection: FemaleYawn + Snore: + collection: Snores + Honk: + collection: CluwneHorn + Sigh: + collection: FemaleSigh + Crying: + collection: FemaleCry + Whistle: + collection: Whistles + Weh: + collection: Weh + Growl: + collection: VulpkaninGrowls + Snarl: + collection: VulpkaninSnarls + Bark: + collection: VulpkaninBarks + Whine: + collection: VulpkaninWhines + Howl: + collection: VulpkaninHowls + Awoo: + collection: VulpkaninHowls \ No newline at end of file diff --git a/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml b/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml index 7a4b97f55e8..70058673232 100644 --- a/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml +++ b/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml @@ -30,7 +30,6 @@ - banging. - banged. -# Frontier - duplicate, using upstream variant #- type: emote # id: Beep # category: Vocal @@ -126,3 +125,15 @@ - howls! - howling. - howled. + +- type: emote + id: Awoo + category: Vocal + chatMessages: [awoos.] + chatTriggers: + - awoo. + - awoo! + - awoos. + - awoos! + - awooing. + - awooed. \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Markers/Spawners/vehicles.yml b/Resources/Prototypes/Entities/Markers/Spawners/vehicles.yml index ee735289203..d9309d51e7d 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/vehicles.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/vehicles.yml @@ -38,7 +38,7 @@ state: keys - type: ConditionalSpawner prototypes: - - VehicleATV + - VehicleATVNF # Frontier - type: entity name: Motobike Spawner @@ -52,7 +52,7 @@ state: keys - type: ConditionalSpawner prototypes: - - VehicleSkeletonMotorcycle + - VehicleSkeletonMotorcycleNF # Frontier - type: entity name: Wheelchair Spawner diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 3fbc4071b04..e369d6ee1c4 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -35,7 +35,7 @@ tags: - Write bookSlot: # Frontier - startingItem: BookRandomStory # HyperlinkBookSpaceLaw - hyperlink books broken, needs a fix + startingItem: HyperlinkBookSpaceLaw priority: -2 whitelist: tags: diff --git a/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml b/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml index cf30f69754d..a4376f482e4 100644 --- a/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml +++ b/Resources/Prototypes/Entities/Objects/Vehicles/buckleable.yml @@ -223,6 +223,7 @@ id: VehicleATV name: ATV description: All-Tile Vehicle. + noSpawn: true # Frontier, using VehicleATVNF instead components: - type: Vehicle southOver: true @@ -314,6 +315,7 @@ id: VehicleSkeletonMotorcycle name: skeleton motorcycle description: Bad to the Bone. + noSpawn: true # Frontier, using VehicleSkeletonMotorcycleNF instead components: - type: Vehicle southOver: true diff --git a/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml b/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml index f02b1262489..7c3923557de 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/toilet.yml @@ -36,12 +36,13 @@ noUI: true blacklist: components: - - HumanoidAppearance +# - HumanoidAppearance # Frontier - Allow goblins to jump inside. - Plunger - SolutionTransfer whitelist: components: - Item + - Goblin # Frontier - Only goblins. soundFlush: /Audio/Effects/Fluids/flush.ogg soundInsert: /Audio/Effects/Fluids/splash.ogg - type: Toilet diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml index 48af1e2ca49..537f2658e96 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/units.yml @@ -119,6 +119,7 @@ whitelist: components: - Item + - Goblin - type: MailingUnit - type: DeviceNetwork deviceNetId: Wired diff --git a/Resources/Prototypes/Nyanotrasen/Catalog/Fills/Vending/Inventories/maildrobe.yml b/Resources/Prototypes/Nyanotrasen/Catalog/Fills/Vending/Inventories/maildrobe.yml index 061bd16021c..8782654fc84 100644 --- a/Resources/Prototypes/Nyanotrasen/Catalog/Fills/Vending/Inventories/maildrobe.yml +++ b/Resources/Prototypes/Nyanotrasen/Catalog/Fills/Vending/Inventories/maildrobe.yml @@ -1,7 +1,8 @@ - type: vendingMachineInventory id: MailDrobeInventory startingInventory: - WeaponMailLake: 1 # Frontier + WeaponMailLake: 2 # Frontier + HoverbikeMailcarrierFlatpack: 2 # Frontier ClothingOuterEVASuitMailman: 2 # Frontier BoxMailCapsulePrimed: 2 # Frontier ClothingBackpackMessengerMailCarrier: 2 # Frontier diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Books/hyperlinks.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Books/hyperlinks.yml index 6e20ae3dcda..6c119b4f43c 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Books/hyperlinks.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Books/hyperlinks.yml @@ -1,34 +1,34 @@ # Frontier - this needs a dedicated fix if we want to continue using it even -#- type: entity -# parent: BaseItem -# id: BaseHyperlinkBook -# abstract: true -# components: -# - type: Sprite -# sprite: Objects/Misc/books.rsi -# - type: Tag -# tags: -# - Book -# - type: StaticPrice -# price: 35 -# -#- type: entity -# parent: BaseHyperlinkBook -# id: HyperlinkBookSpaceLaw -# name: space law -# description: A big book of laws for space courts. -# components: -# - type: Sprite -# sprite: Nyanotrasen/Objects/Misc/books.rsi -# layers: -# - state: law_space -# - type: HyperlinkBook -# url: https://frontierstation14.com/index.php/Space_Law # Frontier -# - type: Tag -# tags: -# - Book -# - BookSpaceLaw # Frontier -# +- type: entity + parent: BaseItem + id: BaseHyperlinkBook + abstract: true + components: + - type: Sprite + sprite: Objects/Misc/books.rsi + - type: Tag + tags: + - Book + - type: StaticPrice + price: 35 + +- type: entity + parent: BaseHyperlinkBook + id: HyperlinkBookSpaceLaw + name: space law + description: A big book of laws for space courts. + components: + - type: Sprite + sprite: Nyanotrasen/Objects/Misc/books.rsi + layers: + - state: law_space + - type: HyperlinkBook + url: https://frontierstation14.com/index.php/Space_Law #Frontier + - type: Tag + tags: + - Book + - BookSpaceLaw #Frontier + #- type: entity # parent: BaseHyperlinkBook # id: HyperlinkBookSupernanny @@ -41,7 +41,7 @@ # - state: law_space # - type: HyperlinkBook # url: https://supernannyfanon.fandom.com/wiki/Category:Discipline_Techniques -# + #- type: entity # parent: BaseHyperlinkBook # id: HyperlinkBookChemistry @@ -53,7 +53,7 @@ # - state: book_chemistry # - type: HyperlinkBook # url: https://wiki.nyanotrasen.moe/view/Chemistry -# + #- type: entity # parent: BaseHyperlinkBook # id: HyperlinkBookBartending @@ -65,7 +65,7 @@ # - state: book_bar # - type: HyperlinkBook # url: https://wiki.nyanotrasen.moe/view/Drinks -# + #- type: entity # parent: BaseHyperlinkBook # id: HyperlinkBookCooking @@ -77,7 +77,7 @@ # - state: book_cooking # - type: HyperlinkBook # url: https://wiki.nyanotrasen.moe/view/Cooking -# + #- type: entity # parent: BaseHyperlinkBook # id: HyperlinkBookBotany @@ -89,7 +89,7 @@ # - state: book_hydroponics_pod_people # - type: HyperlinkBook # url: https://wiki.nyanotrasen.moe/view/Hydroponics -# + #- type: entity # parent: BaseHyperlinkBook # id: HyperlinkBookShuttle @@ -101,7 +101,7 @@ # - state: book_engineering # - type: HyperlinkBook # url: https://wiki.nyanotrasen.moe/view/Shuttle_Construction -# + #- type: entity # parent: BaseHyperlinkBook # id: HyperlinkBookAlerts @@ -113,7 +113,7 @@ # - state: book_nuclear # - type: HyperlinkBook # url: https://wiki.nyanotrasen.moe/view/Alert_Procedure -# + #- type: entity # parent: BaseHyperlinkBook # id: HyperlinkBookProcedure @@ -125,7 +125,7 @@ # - state: book_particle_accelerator # - type: HyperlinkBook # url: https://frontierstation14.com/index.php/Space_Law -# + #- type: entity # parent: BaseHyperlinkBook # id: HyperlinkBookPower @@ -137,7 +137,7 @@ # - state: book_engineering2 # - type: HyperlinkBook # url: https://wiki.nyanotrasen.moe/view/Power -# + #- type: entity # parent: BaseHyperlinkBook # id: HyperlinkBookMedical @@ -149,7 +149,7 @@ # - state: book_infections # - type: HyperlinkBook # url: https://wiki.nyanotrasen.moe/view/Medical -# + #- type: entity # parent: BaseHyperlinkBook # id: HyperlinkBookHacking @@ -161,7 +161,7 @@ # - state: book_hacking # - type: HyperlinkBook # url: https://wiki.nyanotrasen.moe/view/Hacking -# + #- type: entity # parent: BaseHyperlinkBook # id: HyperlinkBookAtmos diff --git a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/prisoner.yml b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/prisoner.yml index ae296cbe933..63c22175f11 100644 --- a/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/prisoner.yml +++ b/Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/prisoner.yml @@ -6,7 +6,7 @@ requirements: - !type:WhitelistRequirement startingGear: PrisonerGear -# alwaysUseSpawner: true + alwaysUseSpawner: true canBeAntag: false whitelistRequired: true icon: "JobIconPrisoner" diff --git a/Resources/Prototypes/Nyanotrasen/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Nyanotrasen/Voice/speech_emote_sounds.yml index f521459327e..ee0de4b4723 100644 --- a/Resources/Prototypes/Nyanotrasen/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/Nyanotrasen/Voice/speech_emote_sounds.yml @@ -1,6 +1,76 @@ +# species - type: emoteSounds - id: Mothroach - sound: - path: /Audio/Voice/Moth/squeak_moth.ogg - params: - variation: 0.125 + id: MaleFelinid + params: + variation: 0.125 + sounds: + Scream: + collection: FelinidScreams + Laugh: + collection: MaleLaugh + Sneeze: + collection: MaleSneezes + Cough: + collection: MaleCoughs + Yawn: + collection: MaleYawn + Snore: + collection: Snores + Honk: + collection: BikeHorn + Sigh: + collection: MaleSigh + Crying: + collection: MaleCry + Whistle: + collection: Whistles + Weh: + collection: Weh + Hiss: + collection: FelinidHisses + Meow: + collection: FelinidMeows + Mew: + collection: FelinidMews + Growl: + collection: FelinidGrowls + Purr: + collection: FelinidPurrs + +- type: emoteSounds + id: FemaleFelinid + params: + variation: 0.125 + sounds: + Scream: + collection: FelinidScreams + Laugh: + collection: FemaleLaugh + Sneeze: + collection: FemaleSneezes + Cough: + collection: FemaleCoughs + Yawn: + collection: FemaleYawn + Snore: + collection: Snores + Honk: + collection: CluwneHorn + Sigh: + collection: FemaleSigh + Crying: + collection: FemaleCry + Whistle: + collection: Whistles + Weh: + collection: Weh + Hiss: + collection: FelinidHisses + Meow: + collection: FelinidMeows + Mew: + collection: FelinidMews + Growl: + collection: FelinidGrowls + Purr: + collection: FelinidPurrs \ No newline at end of file diff --git a/Resources/Prototypes/Reagents/toxins.yml b/Resources/Prototypes/Reagents/toxins.yml index 11a9fd00aed..24d0e4d8744 100644 --- a/Resources/Prototypes/Reagents/toxins.yml +++ b/Resources/Prototypes/Reagents/toxins.yml @@ -111,6 +111,9 @@ Poison: effects: - !type:HealthChange + conditions: + - !type:OrganType + type: Human damage: types: Poison: 1 @@ -507,6 +510,12 @@ shouldHave: true reagent: Protein amount: 0.5 + - !type:AdjustReagent # Frontier: Goblin + conditions: # Frontier: Goblin + - !type:OrganType # Frontier: Goblin + type: Goblin # Frontier: Goblin + reagent: Protein # Frontier: Goblin + amount: 0.5 # Frontier: Goblin - type: reagent id: Allicin diff --git a/Resources/Prototypes/Species/species_weights.yml b/Resources/Prototypes/Species/species_weights.yml index 048b835fe04..a147fbe2d4f 100644 --- a/Resources/Prototypes/Species/species_weights.yml +++ b/Resources/Prototypes/Species/species_weights.yml @@ -12,3 +12,5 @@ Oni: 2 Dwarf: 2 Diona: 2 + Goblin: 2 + Harpy: 1 diff --git a/Resources/Prototypes/_NF/Accents/word_replacements.yml b/Resources/Prototypes/_NF/Accents/word_replacements.yml new file mode 100644 index 00000000000..ef140c2ee26 --- /dev/null +++ b/Resources/Prototypes/_NF/Accents/word_replacements.yml @@ -0,0 +1,369 @@ +- type: accent + id: goblin_accent + wordReplacements: + accent-goblin-words-1: accent-goblin-words-replace-1 + accent-goblin-words-2: accent-goblin-words-replace-2 + accent-goblin-words-3: accent-goblin-words-replace-3 + accent-goblin-words-4: accent-goblin-words-replace-4 + accent-goblin-words-5: accent-goblin-words-replace-5 + accent-goblin-words-6: accent-goblin-words-replace-6 + accent-goblin-words-7: accent-goblin-words-replace-7 + accent-goblin-words-8: accent-goblin-words-replace-8 + accent-goblin-words-9: accent-goblin-words-replace-9 + accent-goblin-words-10: accent-goblin-words-replace-10 + accent-goblin-words-11: accent-goblin-words-replace-11 + accent-goblin-words-12: accent-goblin-words-replace-12 + accent-goblin-words-13: accent-goblin-words-replace-13 + accent-goblin-words-14: accent-goblin-words-replace-14 + accent-goblin-words-15: accent-goblin-words-replace-15 + accent-goblin-words-16: accent-goblin-words-replace-16 + accent-goblin-words-17: accent-goblin-words-replace-17 + accent-goblin-words-18: accent-goblin-words-replace-18 + accent-goblin-words-19: accent-goblin-words-replace-19 + accent-goblin-words-20: accent-goblin-words-replace-20 + accent-goblin-words-21: accent-goblin-words-replace-21 + accent-goblin-words-22: accent-goblin-words-replace-22 + accent-goblin-words-23: accent-goblin-words-replace-23 + accent-goblin-words-24: accent-goblin-words-replace-24 + accent-goblin-words-25: accent-goblin-words-replace-25 + accent-goblin-words-26: accent-goblin-words-replace-26 + accent-goblin-words-27: accent-goblin-words-replace-27 + accent-goblin-words-28: accent-goblin-words-replace-28 + accent-goblin-words-29: accent-goblin-words-replace-29 + accent-goblin-words-30: accent-goblin-words-replace-30 + accent-goblin-words-31: accent-goblin-words-replace-31 + accent-goblin-words-32: accent-goblin-words-replace-32 + accent-goblin-words-33: accent-goblin-words-replace-33 + accent-goblin-words-34: accent-goblin-words-replace-34 + accent-goblin-words-35: accent-goblin-words-replace-35 + accent-goblin-words-36: accent-goblin-words-replace-36 + accent-goblin-words-37: accent-goblin-words-replace-37 + accent-goblin-words-38: accent-goblin-words-replace-38 + accent-goblin-words-39: accent-goblin-words-replace-39 + accent-goblin-words-40: accent-goblin-words-replace-40 + accent-goblin-words-41: accent-goblin-words-replace-41 + accent-goblin-words-42: accent-goblin-words-replace-42 + accent-goblin-words-43: accent-goblin-words-replace-43 + accent-goblin-words-44: accent-goblin-words-replace-44 + accent-goblin-words-45: accent-goblin-words-replace-45 + accent-goblin-words-46: accent-goblin-words-replace-46 + accent-goblin-words-47: accent-goblin-words-replace-47 + accent-goblin-words-48: accent-goblin-words-replace-48 + accent-goblin-words-49: accent-goblin-words-replace-49 + accent-goblin-words-50: accent-goblin-words-replace-50 + accent-goblin-words-51: accent-goblin-words-replace-51 + accent-goblin-words-52: accent-goblin-words-replace-52 + accent-goblin-words-53: accent-goblin-words-replace-53 + accent-goblin-words-54: accent-goblin-words-replace-54 + accent-goblin-words-55: accent-goblin-words-replace-55 + accent-goblin-words-56: accent-goblin-words-replace-56 + accent-goblin-words-57: accent-goblin-words-replace-57 + accent-goblin-words-58: accent-goblin-words-replace-58 + accent-goblin-words-59: accent-goblin-words-replace-59 + accent-goblin-words-60: accent-goblin-words-replace-60 + accent-goblin-words-61: accent-goblin-words-replace-61 + accent-goblin-words-62: accent-goblin-words-replace-62 + accent-goblin-words-63: accent-goblin-words-replace-63 + accent-goblin-words-64: accent-goblin-words-replace-64 + accent-goblin-words-65: accent-goblin-words-replace-65 + accent-goblin-words-66: accent-goblin-words-replace-66 + accent-goblin-words-67: accent-goblin-words-replace-67 + accent-goblin-words-68: accent-goblin-words-replace-68 + accent-goblin-words-69: accent-goblin-words-replace-69 + accent-goblin-words-70: accent-goblin-words-replace-70 + accent-goblin-words-71: accent-goblin-words-replace-71 + accent-goblin-words-72: accent-goblin-words-replace-72 + accent-goblin-words-73: accent-goblin-words-replace-73 + accent-goblin-words-74: accent-goblin-words-replace-74 + accent-goblin-words-75: accent-goblin-words-replace-75 + accent-goblin-words-76: accent-goblin-words-replace-76 + accent-goblin-words-77: accent-goblin-words-replace-77 + accent-goblin-words-78: accent-goblin-words-replace-78 + accent-goblin-words-79: accent-goblin-words-replace-79 + accent-goblin-words-80: accent-goblin-words-replace-80 + accent-goblin-words-81: accent-goblin-words-replace-81 + accent-goblin-words-82: accent-goblin-words-replace-82 + accent-goblin-words-83: accent-goblin-words-replace-83 + accent-goblin-words-84: accent-goblin-words-replace-84 + accent-goblin-words-85: accent-goblin-words-replace-85 + accent-goblin-words-86: accent-goblin-words-replace-86 + accent-goblin-words-87: accent-goblin-words-replace-87 + accent-goblin-words-88: accent-goblin-words-replace-88 + accent-goblin-words-89: accent-goblin-words-replace-89 + accent-goblin-words-90: accent-goblin-words-replace-90 + accent-goblin-words-91: accent-goblin-words-replace-91 + accent-goblin-words-92: accent-goblin-words-replace-92 + accent-goblin-words-93: accent-goblin-words-replace-93 + accent-goblin-words-94: accent-goblin-words-replace-94 + accent-goblin-words-95: accent-goblin-words-replace-95 + accent-goblin-words-96: accent-goblin-words-replace-96 + accent-goblin-words-97: accent-goblin-words-replace-97 + accent-goblin-words-98: accent-goblin-words-replace-98 + accent-goblin-words-99: accent-goblin-words-replace-99 + accent-goblin-words-100: accent-goblin-words-replace-100 + accent-goblin-words-101: accent-goblin-words-replace-101 + accent-goblin-words-102: accent-goblin-words-replace-102 + accent-goblin-words-103: accent-goblin-words-replace-103 + accent-goblin-words-104: accent-goblin-words-replace-104 + accent-goblin-words-105: accent-goblin-words-replace-105 + accent-goblin-words-106: accent-goblin-words-replace-106 + accent-goblin-words-107: accent-goblin-words-replace-107 + accent-goblin-words-108: accent-goblin-words-replace-108 + accent-goblin-words-109: accent-goblin-words-replace-109 + accent-goblin-words-110: accent-goblin-words-replace-110 + accent-goblin-words-111: accent-goblin-words-replace-111 + accent-goblin-words-112: accent-goblin-words-replace-112 + accent-goblin-words-113: accent-goblin-words-replace-113 + accent-goblin-words-114: accent-goblin-words-replace-114 + accent-goblin-words-115: accent-goblin-words-replace-115 + accent-goblin-words-116: accent-goblin-words-replace-116 + accent-goblin-words-117: accent-goblin-words-replace-117 + accent-goblin-words-118: accent-goblin-words-replace-118 + accent-goblin-words-119: accent-goblin-words-replace-119 + accent-goblin-words-120: accent-goblin-words-replace-120 + accent-goblin-words-121: accent-goblin-words-replace-121 + accent-goblin-words-122: accent-goblin-words-replace-122 + accent-goblin-words-123: accent-goblin-words-replace-123 + accent-goblin-words-124: accent-goblin-words-replace-124 + accent-goblin-words-125: accent-goblin-words-replace-125 + accent-goblin-words-126: accent-goblin-words-replace-126 + accent-goblin-words-127: accent-goblin-words-replace-127 + accent-goblin-words-128: accent-goblin-words-replace-128 + accent-goblin-words-129: accent-goblin-words-replace-129 + accent-goblin-words-130: accent-goblin-words-replace-130 + accent-goblin-words-131: accent-goblin-words-replace-131 + accent-goblin-words-132: accent-goblin-words-replace-132 + accent-goblin-words-133: accent-goblin-words-replace-133 + accent-goblin-words-134: accent-goblin-words-replace-134 + accent-goblin-words-135: accent-goblin-words-replace-135 + accent-goblin-words-136: accent-goblin-words-replace-136 + accent-goblin-words-137: accent-goblin-words-replace-137 + accent-goblin-words-138: accent-goblin-words-replace-138 + accent-goblin-words-139: accent-goblin-words-replace-139 + accent-goblin-words-140: accent-goblin-words-replace-140 + accent-goblin-words-141: accent-goblin-words-replace-141 + accent-goblin-words-142: accent-goblin-words-replace-142 + accent-goblin-words-143: accent-goblin-words-replace-143 + accent-goblin-words-144: accent-goblin-words-replace-144 + accent-goblin-words-145: accent-goblin-words-replace-145 + accent-goblin-words-146: accent-goblin-words-replace-146 + accent-goblin-words-147: accent-goblin-words-replace-147 + accent-goblin-words-148: accent-goblin-words-replace-148 + accent-goblin-words-149: accent-goblin-words-replace-149 + accent-goblin-words-150: accent-goblin-words-replace-150 + accent-goblin-words-151: accent-goblin-words-replace-151 + accent-goblin-words-152: accent-goblin-words-replace-152 + accent-goblin-words-153: accent-goblin-words-replace-153 + accent-goblin-words-154: accent-goblin-words-replace-154 + accent-goblin-words-155: accent-goblin-words-replace-155 + accent-goblin-words-156: accent-goblin-words-replace-156 + accent-goblin-words-157: accent-goblin-words-replace-157 + accent-goblin-words-158: accent-goblin-words-replace-158 + accent-goblin-words-159: accent-goblin-words-replace-159 + accent-goblin-words-160: accent-goblin-words-replace-160 + accent-goblin-words-161: accent-goblin-words-replace-161 + accent-goblin-words-162: accent-goblin-words-replace-162 + accent-goblin-words-163: accent-goblin-words-replace-163 + accent-goblin-words-164: accent-goblin-words-replace-164 + accent-goblin-words-165: accent-goblin-words-replace-165 + accent-goblin-words-166: accent-goblin-words-replace-166 + accent-goblin-words-167: accent-goblin-words-replace-167 + accent-goblin-words-168: accent-goblin-words-replace-168 + accent-goblin-words-169: accent-goblin-words-replace-169 + accent-goblin-words-170: accent-goblin-words-replace-170 + accent-goblin-words-171: accent-goblin-words-replace-171 + accent-goblin-words-172: accent-goblin-words-replace-172 + accent-goblin-words-173: accent-goblin-words-replace-173 + accent-goblin-words-174: accent-goblin-words-replace-174 + accent-goblin-words-175: accent-goblin-words-replace-175 + accent-goblin-words-176: accent-goblin-words-replace-176 + accent-goblin-words-177: accent-goblin-words-replace-177 + accent-goblin-words-178: accent-goblin-words-replace-178 + accent-goblin-words-179: accent-goblin-words-replace-179 + accent-goblin-words-180: accent-goblin-words-replace-180 + accent-goblin-words-181: accent-goblin-words-replace-181 + accent-goblin-words-182: accent-goblin-words-replace-182 + accent-goblin-words-183: accent-goblin-words-replace-183 + accent-goblin-words-184: accent-goblin-words-replace-184 + accent-goblin-words-185: accent-goblin-words-replace-185 + accent-goblin-words-186: accent-goblin-words-replace-186 + accent-goblin-words-187: accent-goblin-words-replace-187 + accent-goblin-words-188: accent-goblin-words-replace-188 + accent-goblin-words-189: accent-goblin-words-replace-189 + accent-goblin-words-190: accent-goblin-words-replace-190 + accent-goblin-words-191: accent-goblin-words-replace-191 + accent-goblin-words-192: accent-goblin-words-replace-192 + accent-goblin-words-193: accent-goblin-words-replace-193 + accent-goblin-words-194: accent-goblin-words-replace-194 + accent-goblin-words-195: accent-goblin-words-replace-195 + accent-goblin-words-196: accent-goblin-words-replace-196 + accent-goblin-words-197: accent-goblin-words-replace-197 + accent-goblin-words-198: accent-goblin-words-replace-198 + accent-goblin-words-199: accent-goblin-words-replace-199 + accent-goblin-words-200: accent-goblin-words-replace-200 + accent-goblin-words-201: accent-goblin-words-replace-201 + accent-goblin-words-202: accent-goblin-words-replace-202 + accent-goblin-words-203: accent-goblin-words-replace-203 + accent-goblin-words-204: accent-goblin-words-replace-204 + accent-goblin-words-205: accent-goblin-words-replace-205 + accent-goblin-words-206: accent-goblin-words-replace-206 + accent-goblin-words-207: accent-goblin-words-replace-207 + accent-goblin-words-208: accent-goblin-words-replace-208 + accent-goblin-words-209: accent-goblin-words-replace-209 + accent-goblin-words-210: accent-goblin-words-replace-210 + accent-goblin-words-211: accent-goblin-words-replace-211 + accent-goblin-words-212: accent-goblin-words-replace-212 + accent-goblin-words-213: accent-goblin-words-replace-213 + accent-goblin-words-214: accent-goblin-words-replace-214 + accent-goblin-words-215: accent-goblin-words-replace-215 + accent-goblin-words-216: accent-goblin-words-replace-216 + accent-goblin-words-217: accent-goblin-words-replace-217 + accent-goblin-words-218: accent-goblin-words-replace-218 + accent-goblin-words-219: accent-goblin-words-replace-219 + accent-goblin-words-220: accent-goblin-words-replace-220 + accent-goblin-words-221: accent-goblin-words-replace-221 + accent-goblin-words-222: accent-goblin-words-replace-222 + accent-goblin-words-223: accent-goblin-words-replace-223 + accent-goblin-words-224: accent-goblin-words-replace-224 + accent-goblin-words-225: accent-goblin-words-replace-225 + accent-goblin-words-226: accent-goblin-words-replace-226 + accent-goblin-words-227: accent-goblin-words-replace-227 + accent-goblin-words-228: accent-goblin-words-replace-228 + accent-goblin-words-229: accent-goblin-words-replace-229 + accent-goblin-words-230: accent-goblin-words-replace-230 + accent-goblin-words-231: accent-goblin-words-replace-231 + accent-goblin-words-232: accent-goblin-words-replace-232 + accent-goblin-words-233: accent-goblin-words-replace-233 + accent-goblin-words-234: accent-goblin-words-replace-234 + accent-goblin-words-235: accent-goblin-words-replace-235 + accent-goblin-words-236: accent-goblin-words-replace-236 + accent-goblin-words-237: accent-goblin-words-replace-237 + accent-goblin-words-238: accent-goblin-words-replace-238 + accent-goblin-words-239: accent-goblin-words-replace-239 + accent-goblin-words-240: accent-goblin-words-replace-240 + accent-goblin-words-241: accent-goblin-words-replace-241 + accent-goblin-words-242: accent-goblin-words-replace-242 + accent-goblin-words-243: accent-goblin-words-replace-243 + accent-goblin-words-244: accent-goblin-words-replace-244 + accent-goblin-words-245: accent-goblin-words-replace-245 + accent-goblin-words-246: accent-goblin-words-replace-246 + accent-goblin-words-247: accent-goblin-words-replace-247 + accent-goblin-words-248: accent-goblin-words-replace-248 + accent-goblin-words-249: accent-goblin-words-replace-249 + accent-goblin-words-250: accent-goblin-words-replace-250 + accent-goblin-words-251: accent-goblin-words-replace-251 + accent-goblin-words-252: accent-goblin-words-replace-252 + accent-goblin-words-253: accent-goblin-words-replace-253 + accent-goblin-words-254: accent-goblin-words-replace-254 + accent-goblin-words-255: accent-goblin-words-replace-255 + accent-goblin-words-256: accent-goblin-words-replace-256 + accent-goblin-words-257: accent-goblin-words-replace-257 + accent-goblin-words-258: accent-goblin-words-replace-258 + accent-goblin-words-259: accent-goblin-words-replace-259 + accent-goblin-words-260: accent-goblin-words-replace-260 + accent-goblin-words-261: accent-goblin-words-replace-261 + accent-goblin-words-262: accent-goblin-words-replace-262 + accent-goblin-words-263: accent-goblin-words-replace-263 + accent-goblin-words-264: accent-goblin-words-replace-264 + accent-goblin-words-265: accent-goblin-words-replace-265 + accent-goblin-words-266: accent-goblin-words-replace-266 + accent-goblin-words-267: accent-goblin-words-replace-267 + accent-goblin-words-268: accent-goblin-words-replace-268 + accent-goblin-words-269: accent-goblin-words-replace-269 + accent-goblin-words-270: accent-goblin-words-replace-270 + accent-goblin-words-271: accent-goblin-words-replace-271 + accent-goblin-words-272: accent-goblin-words-replace-272 + accent-goblin-words-273: accent-goblin-words-replace-273 + accent-goblin-words-274: accent-goblin-words-replace-274 + accent-goblin-words-275: accent-goblin-words-replace-275 + accent-goblin-words-276: accent-goblin-words-replace-276 + accent-goblin-words-277: accent-goblin-words-replace-277 + accent-goblin-words-278: accent-goblin-words-replace-278 + accent-goblin-words-279: accent-goblin-words-replace-279 + accent-goblin-words-280: accent-goblin-words-replace-280 + accent-goblin-words-281: accent-goblin-words-replace-281 + accent-goblin-words-282: accent-goblin-words-replace-282 + accent-goblin-words-283: accent-goblin-words-replace-283 + accent-goblin-words-284: accent-goblin-words-replace-284 + accent-goblin-words-285: accent-goblin-words-replace-285 + accent-goblin-words-286: accent-goblin-words-replace-286 + accent-goblin-words-287: accent-goblin-words-replace-287 + accent-goblin-words-288: accent-goblin-words-replace-288 + accent-goblin-words-289: accent-goblin-words-replace-289 + accent-goblin-words-290: accent-goblin-words-replace-290 + accent-goblin-words-291: accent-goblin-words-replace-291 + accent-goblin-words-292: accent-goblin-words-replace-292 + accent-goblin-words-293: accent-goblin-words-replace-293 + accent-goblin-words-294: accent-goblin-words-replace-294 + accent-goblin-words-295: accent-goblin-words-replace-295 + accent-goblin-words-296: accent-goblin-words-replace-296 + accent-goblin-words-297: accent-goblin-words-replace-297 + accent-goblin-words-298: accent-goblin-words-replace-298 + accent-goblin-words-299: accent-goblin-words-replace-299 + accent-goblin-words-300: accent-goblin-words-replace-300 + accent-goblin-words-301: accent-goblin-words-replace-301 + accent-goblin-words-302: accent-goblin-words-replace-302 + accent-goblin-words-303: accent-goblin-words-replace-303 + accent-goblin-words-304: accent-goblin-words-replace-304 + accent-goblin-words-305: accent-goblin-words-replace-305 + accent-goblin-words-306: accent-goblin-words-replace-306 + accent-goblin-words-307: accent-goblin-words-replace-307 + accent-goblin-words-308: accent-goblin-words-replace-308 + accent-goblin-words-309: accent-goblin-words-replace-309 + accent-goblin-words-310: accent-goblin-words-replace-310 + accent-goblin-words-311: accent-goblin-words-replace-311 + accent-goblin-words-312: accent-goblin-words-replace-312 + accent-goblin-words-313: accent-goblin-words-replace-313 + accent-goblin-words-314: accent-goblin-words-replace-314 + accent-goblin-words-315: accent-goblin-words-replace-315 + accent-goblin-words-316: accent-goblin-words-replace-316 + accent-goblin-words-317: accent-goblin-words-replace-317 + accent-goblin-words-318: accent-goblin-words-replace-318 + accent-goblin-words-319: accent-goblin-words-replace-319 + accent-goblin-words-320: accent-goblin-words-replace-320 + accent-goblin-words-321: accent-goblin-words-replace-321 + accent-goblin-words-322: accent-goblin-words-replace-322 + accent-goblin-words-323: accent-goblin-words-replace-323 + accent-goblin-words-324: accent-goblin-words-replace-324 + accent-goblin-words-325: accent-goblin-words-replace-325 + accent-goblin-words-326: accent-goblin-words-replace-326 + accent-goblin-words-327: accent-goblin-words-replace-327 + accent-goblin-words-328: accent-goblin-words-replace-328 + accent-goblin-words-329: accent-goblin-words-replace-329 + accent-goblin-words-330: accent-goblin-words-replace-330 + accent-goblin-words-331: accent-goblin-words-replace-331 + accent-goblin-words-332: accent-goblin-words-replace-332 + accent-goblin-words-333: accent-goblin-words-replace-333 + accent-goblin-words-334: accent-goblin-words-replace-334 + accent-goblin-words-335: accent-goblin-words-replace-335 + accent-goblin-words-336: accent-goblin-words-replace-336 + accent-goblin-words-337: accent-goblin-words-replace-337 + accent-goblin-words-338: accent-goblin-words-replace-338 + accent-goblin-words-339: accent-goblin-words-replace-339 + accent-goblin-words-340: accent-goblin-words-replace-340 + accent-goblin-words-341: accent-goblin-words-replace-341 + accent-goblin-words-342: accent-goblin-words-replace-342 + accent-goblin-words-343: accent-goblin-words-replace-343 + accent-goblin-words-344: accent-goblin-words-replace-344 + accent-goblin-words-345: accent-goblin-words-replace-345 + accent-goblin-words-346: accent-goblin-words-replace-346 + accent-goblin-words-347: accent-goblin-words-replace-347 + accent-goblin-words-348: accent-goblin-words-replace-348 + accent-goblin-words-349: accent-goblin-words-replace-349 + accent-goblin-words-350: accent-goblin-words-replace-350 + accent-goblin-words-351: accent-goblin-words-replace-351 + accent-goblin-words-352: accent-goblin-words-replace-352 + accent-goblin-words-353: accent-goblin-words-replace-353 + accent-goblin-words-354: accent-goblin-words-replace-354 + accent-goblin-words-355: accent-goblin-words-replace-355 + accent-goblin-words-356: accent-goblin-words-replace-356 + accent-goblin-words-357: accent-goblin-words-replace-357 + accent-goblin-words-358: accent-goblin-words-replace-358 + accent-goblin-words-359: accent-goblin-words-replace-359 + accent-goblin-words-360: accent-goblin-words-replace-360 + accent-goblin-words-361: accent-goblin-words-replace-361 + accent-goblin-words-362: accent-goblin-words-replace-362 + accent-goblin-words-363: accent-goblin-words-replace-363 + accent-goblin-words-364: accent-goblin-words-replace-364 + accent-goblin-words-365: accent-goblin-words-replace-365 + accent-goblin-words-366: accent-goblin-words-replace-366 diff --git a/Resources/Prototypes/_NF/Body/Organs/goblin_organs.yml b/Resources/Prototypes/_NF/Body/Organs/goblin_organs.yml new file mode 100644 index 00000000000..4e0c6175c12 --- /dev/null +++ b/Resources/Prototypes/_NF/Body/Organs/goblin_organs.yml @@ -0,0 +1,200 @@ +- type: entity + parent: OrganHumanBrain + id: OrganGoblinBrain + name: brain + suffix: Goblin + description: "The source of your woes." + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/organs.rsi + state: brain + - type: Organ + - type: Input + context: "ghost" + - type: Brain + - type: InputMover + - type: Examiner + - type: BlockMovement + - type: BadFood + - type: Tag + tags: + - Meat + +- type: entity + parent: OrganHumanEyes + id: OrganGoblinEyes + name: eyes + suffix: Goblin + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/organs.rsi + layers: + - state: eyeball-l + - state: eyeball-r + +- type: entity + parent: OrganHumanTongue + id: OrganGoblinTongue + name: tongue + suffix: Goblin + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/organs.rsi + state: tongue + +- type: entity + parent: OrganHumanAppendix + id: OrganGoblinAppendix + name: appendix + suffix: Goblin + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/organs.rsi + layers: + - state: appendix + - state: appendix-inflamed + visible: false + +- type: entity + parent: OrganHumanEars + id: OrganGoblinEars + name: ears + suffix: Goblin + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/organs.rsi + state: ears + +- type: entity + parent: BaseHumanOrgan + id: OrganGoblinLungs + name: lungs + suffix: Goblin + description: "They breathe business." + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/organs.rsi + layers: + - state: lung-l + - state: lung-r + - type: Lung + - type: Metabolizer + removeEmpty: true + solutionOnBody: false + solution: "Lung" + metabolizerTypes: [ Animal ] + groups: + - id: Gas + rateModifier: 100.0 + - type: SolutionContainerManager + solutions: + organ: + reagents: + - ReagentId: Nutriment + Quantity: 10 + Lung: + maxVol: 100.0 + canReact: false + food: + maxVol: 5 + reagents: + - ReagentId: UncookedAnimalProteins + Quantity: 5 + +- type: entity + parent: OrganHumanHeart + id: OrganGoblinHeart + name: heart + suffix: Goblin + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/organs.rsi + state: heart-on + - type: Metabolizer + metabolizerTypes: [ Goblin ] + +- type: entity + parent: [OrganAnimalStomach, OrganHumanStomach] + id: OrganGoblinStomach + name: stomach + suffix: Goblin + description: "Shrooms go in here." + noSpawn: true + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/organs.rsi + state: stomach + - type: SolutionContainerManager + solutions: + stomach: + maxVol: 50 + food: + maxVol: 5 + reagents: + - ReagentId: UncookedAnimalProteins + Quantity: 5 + - type: Stomach +# reverseFoodQuality: true +# trashDigestion: true +# specialDigestible: +# tags: +# - Raw +# - Meat +# - Fruit +# - Pill +# - Crayon +# - Egg +# - Trash +# - FoodSnack +# - Soup +# - Bread +# - DonkPocket +# - Donut +# - Nugget +# - Pancake +# - Pie +# - Pizza + - type: Metabolizer + maxReagents: 3 + metabolizerTypes: [ Goblin ] + removeEmpty: true + groups: + - id: Food + - id: Drink + - id: Medicine + - id: Poison + - id: Narcotic + - id: Alcohol + +- type: entity + parent: OrganHumanLiver + id: OrganGoblinLiver + name: liver + suffix: Goblin + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/organs.rsi + state: liver + - type: Metabolizer # The liver metabolizes certain chemicals only, like alcohol. + maxReagents: 1 + metabolizerTypes: [ Goblin ] + groups: + - id: Alcohol + rateModifier: 0.1 # removes alcohol very slowly along with the stomach removing it as a drink + +- type: entity + parent: OrganHumanKidneys + id: OrganGoblinKidneys + name: kidneys + suffix: Goblin + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/organs.rsi + layers: + - state: kidney-l + - state: kidney-r + # The kidneys just remove anything that doesn't currently have any metabolisms, as a stopgap. + - type: Metabolizer + maxReagents: 5 + metabolizerTypes: [ Animal ] + removeEmpty: true diff --git a/Resources/Prototypes/_NF/Body/Parts/goblin_parts.yml b/Resources/Prototypes/_NF/Body/Parts/goblin_parts.yml new file mode 100644 index 00000000000..19f4f5b15a2 --- /dev/null +++ b/Resources/Prototypes/_NF/Body/Parts/goblin_parts.yml @@ -0,0 +1,117 @@ +- type: entity + id: PartGoblin + parent: [BaseItem, BasePart] + name: "goblin body part" + abstract: true + components: + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 3 + - ReagentId: Blood + Quantity: 10 + +- type: entity + id: TorsoGoblin + name: "Goblin torso" + parent: [PartGoblin, BaseTorso] + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: "torso_m" + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 10 + - ReagentId: Blood + Quantity: 20 + +- type: entity + id: HeadGoblin + name: "Goblin head" + parent: [PartGoblin, BaseHead] + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: "head_m" + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 5 + - ReagentId: Blood + Quantity: 10 + +- type: entity + id: LeftArmGoblin + name: "left Goblin arm" + parent: [PartGoblin, BaseLeftArm] + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: "l_arm" + +- type: entity + id: RightArmGoblin + name: "right Goblin arm" + parent: [PartGoblin, BaseRightArm] + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: "r_arm" + +- type: entity + id: LeftHandGoblin + name: "left Goblin hand" + parent: [PartGoblin, BaseLeftHand] + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: "l_hand" + +- type: entity + id: RightHandGoblin + name: "right Goblin hand" + parent: [PartGoblin, BaseRightHand] + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: "r_hand" + +- type: entity + id: LeftLegGoblin + name: "left Goblin leg" + parent: [PartGoblin, BaseLeftLeg] + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: "l_leg" + +- type: entity + id: RightLegGoblin + name: "right Goblin leg" + parent: [PartGoblin, BaseRightLeg] + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: "r_leg" + +- type: entity + id: LeftFootGoblin + name: "left Goblin foot" + parent: [PartGoblin, BaseLeftFoot] + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: "l_foot" + +- type: entity + id: RightFootGoblin + name: "right Goblin foot" + parent: [PartGoblin, BaseRightFoot] + components: + - type: Sprite + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: "r_foot" diff --git a/Resources/Prototypes/_NF/Body/Prototypes/goblin_prototypes.yml b/Resources/Prototypes/_NF/Body/Prototypes/goblin_prototypes.yml new file mode 100644 index 00000000000..a8cacb9ce89 --- /dev/null +++ b/Resources/Prototypes/_NF/Body/Prototypes/goblin_prototypes.yml @@ -0,0 +1,49 @@ +- type: body + id: Goblin + name: "goblin" + root: torso + slots: + head: + part: HeadGoblin + connections: + - torso + organs: + brain: OrganGoblinBrain + eyes: OrganGoblinEyes + torso: + part: TorsoGoblin + connections: + - left arm + - right arm + - left leg + - right leg + organs: + heart: OrganGoblinHeart + lungs: OrganGoblinLungs + stomach: OrganGoblinStomach + liver: OrganGoblinLiver + kidneys: OrganGoblinKidneys + right arm: + part: RightArmGoblin + connections: + - right hand + left arm: + part: LeftArmGoblin + connections: + - left hand + right hand: + part: RightHandGoblin + left hand: + part: LeftHandGoblin + right leg: + part: RightLegGoblin + connections: + - right foot + left leg: + part: LeftLegGoblin + connections: + - left foot + right foot: + part: RightFootGoblin + left foot: + part: LeftFootGoblin diff --git a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_fun.yml b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_fun.yml index 08d71863e38..0268bb45c37 100644 --- a/Resources/Prototypes/_NF/Catalog/Cargo/cargo_fun.yml +++ b/Resources/Prototypes/_NF/Catalog/Cargo/cargo_fun.yml @@ -7,4 +7,3 @@ cost: 500 category: cargoproduct-category-name-fun group: market - diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/chemistry.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/chemistry.yml index 5081dd5c5f3..18dee491c22 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Crates/chemistry.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/chemistry.yml @@ -1,6 +1,8 @@ - type: entity id: CrateSpaceCleaner parent: CrateGenericSteel + name: bulk space cleaner crate + description: For a large mess. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/fun.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/fun.yml index 8dccf95ae23..05e62163cd1 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Crates/fun.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/fun.yml @@ -1,6 +1,8 @@ - type: entity id: CrateFloorsFun parent: CrateGenericSteel + name: fun floors tiles crate + description: A crate full of 30 random tiles, used for decoration. components: - type: StorageFill contents: @@ -24,3 +26,14 @@ amount: 30 prob: 1 orGroup: FloorTileItemArcadeBlue + +- type: entity + id: CrateFunHoverbikeNF + parent: CrateLivestock + name: hoverbike crate + description: Harder, better, faster, stronger? No, just faster, faster, faster. + components: + - type: StorageFill + contents: + - id: VehicleHoverbikeNF + - id: VehicleKeyHoverbikeNF diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/materials.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/materials.yml index d1a57be6b7e..b7d04083d79 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Crates/materials.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/materials.yml @@ -1,6 +1,8 @@ - type: entity id: CrateMaterials parent: CrateGenericSteel + name: materials crate + description: 1 stack of glass, plastic, steel, plasma and plasteel. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/npc.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/npc.yml index 0b8d19f09e9..20e4af03ea8 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Crates/npc.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/npc.yml @@ -1,7 +1,8 @@ - type: entity - name: Emotional support pet crate id: CrateNPCEmotionalSupport parent: CrateLivestock + name: emotional support pet crate + description: A crate containing a single emotional support pet. components: - type: StorageFill contents: @@ -34,9 +35,8 @@ orGroup: MobCatGhost - type: entity - name: Emotional support pet crate id: CrateNPCEmotionalSupportSafe # No pitbull - parent: CrateLivestock + parent: CrateNPCEmotionalSupport suffix: Safe components: - type: StorageFill diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/science.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/science.yml index 77f50c9261c..3b9dd654044 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Crates/science.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/science.yml @@ -1,6 +1,8 @@ - type: entity id: CrateScienceLabBundle parent: CrateScienceSecure + name: scientist lab kit + description: Contains a full kit to build your very own science lab. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/service.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/service.yml index 1c0511c94a4..19b3226f1a1 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Crates/service.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/service.yml @@ -1,6 +1,8 @@ - type: entity id: CrateServiceJanitorialSupplies2 parent: CratePlastic + name: janitorial supplies crate B + description: Fight back against dirt and grime with Nanotrasen's Janitorial Essentials(tm)! Contains two trash bag boxes, one box of wet floor signs and 2 spray cleaners. components: - type: StorageFill contents: @@ -13,6 +15,8 @@ - type: entity id: CrateVehicleJanicart parent: CrateLivestock + name: janicart crate + description: The janitor's trusty steed. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/syndicate.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/syndicate.yml index 20b7816b7d9..c2ee196737a 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Crates/syndicate.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/syndicate.yml @@ -1,6 +1,8 @@ - type: entity id: CrateSyndicateLightSurplusBundle parent: CrateSyndicate + name: Syndicate light surplus crate + description: Contains 20 telecrystals worth of completely random Syndicate items. It can be useless junk or really good. components: - type: SurplusBundle totalPrice: 20 diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/trade.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/trade.yml index 031cfe18c91..674c1ca9392 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Crates/trade.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/trade.yml @@ -1,10 +1,14 @@ - type: entity id: CrateTradeSecureNormalFilled parent: CrateTradeBaseSecureNormal + name: cargo trading crate + description: Contains goods made in the Frontier sector, ready to be sold on a cargo depot for higher value. MAKE SURE THE CRATE IS INTACT. - type: entity id: CrateTradeSecureHighFilled parent: CrateTradeBaseSecureHigh + name: high value cargo trading crate + description: Contains high value goods made in the Frontier sector, ready to be sold on a cargo depot for higher value. MAKE SURE THE CRATE IS INTACT. - type: entity id: CrateTradeContrabandSecureNormalFilled @@ -16,4 +20,4 @@ - type: entity id: CrateTradeContrabandSecureCyberSunFilled - parent: CrateTradeContrabandSecureCyberSun \ No newline at end of file + parent: CrateTradeContrabandSecureCyberSun diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Crates/vending.yml b/Resources/Prototypes/_NF/Catalog/Fills/Crates/vending.yml index 7509d3125df..ef165874ac3 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Crates/vending.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Crates/vending.yml @@ -1,6 +1,8 @@ - type: entity id: CrateVendingMachineRestockAstroVendFilled parent: CratePlasticBiodegradable + name: AstroVend restock crate + description: Contains two restock boxes for the AstroVend vending machine. components: - type: StorageFill contents: @@ -10,6 +12,8 @@ - type: entity id: CrateVendingMachineRestockAmmoFilled parent: CratePlasticBiodegradable + name: Liberation restock crate + description: Contains two restock boxes for the Liberation vending machine. components: - type: StorageFill contents: @@ -19,6 +23,8 @@ - type: entity id: CrateVendingMachineRestockFlatpackVendFilled parent: CratePlasticBiodegradable + name: FlatpackVend restock crate + description: Contains two restock boxes for a FlatpackVend vending machine. components: - type: StorageFill contents: @@ -28,6 +34,8 @@ - type: entity id: CrateVendingMachineRestockCuddlyCritterVendFilled parent: CratePlasticBiodegradable + name: CuddlyCritterVend restock crate + description: Contains two restock boxes for a CuddlyCritterVend vending machine. components: - type: StorageFill contents: @@ -37,6 +45,8 @@ - type: entity id: CrateVendingMachineRestockLessLethalVendFilled parent: CratePlasticBiodegradable + name: LessLethalVend restock crate + description: Contains two restock boxes for the LessLethalVend vending machine. components: - type: StorageFill contents: @@ -46,6 +56,8 @@ - type: entity id: CrateVendingMachineRestockAutoTuneVendFilled parent: CratePlasticBiodegradable + name: AutoTuneVend restock crate + description: Contains two restock boxes for the AutoTuneVend vending machine. components: - type: StorageFill contents: @@ -55,6 +67,8 @@ - type: entity id: CrateVendingMachineRestockPottedPlantVendFilled parent: CratePlasticBiodegradable + name: Plant-O-Matic restock crate + description: Contains two restock boxes for the Plant-O-Matic vending machine. components: - type: StorageFill contents: diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml index eb892764bfa..1c2901f582d 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage.yml @@ -7,15 +7,12 @@ components: - type: StorageFill contents: -# - id: NitrogenTankFilled -# - id: OxygenTankFilled - id: AirTankFilled - id: ClothingOuterHardsuitVoidParamed - id: ClothingMaskBreathMedical - id: JetpackMiniFilled - id: HandheldGPSBasic - type: AccessReader -# access: [["Medical"]] #Hydroponics EVA - type: entity @@ -25,8 +22,6 @@ components: - type: StorageFill contents: -# - id: NitrogenTankFilled -# - id: OxygenTankFilled - id: AirTankFilled - id: ClothingOuterEVASuitHydro - id: ClothingMaskBreath @@ -34,7 +29,6 @@ - id: HandheldGPSBasic # - id: ClothingShoesBootsMagMercenaryFilled # Frontier - Not adding this to the suit storage so it wont be abused, exists only on role spawn. - type: AccessReader - # access: [[ "Hydroponics" ]] #HARDSUITS #Quartermaster hardsuit @@ -45,8 +39,6 @@ components: - type: StorageFill contents: -# - id: NitrogenTankFilled -# - id: OxygenTankFilled - id: AirTankFilled - id: ClothingShoesBootsMag - id: ClothingOuterHardsuitLuxury @@ -54,7 +46,22 @@ - id: JetpackMiniFilled - id: HandheldGPSBasic - type: AccessReader - # access: [["Quartermaster"]] + +#Mining hardsuit +- type: entity + id: SuitStorageMining + parent: SuitStorageBase + suffix: Mining + components: + - type: StorageFill + contents: + - id: AirTankFilled + - id: ClothingShoesBootsMag + - id: ClothingOuterHardsuitSalvage + - id: ClothingMaskGasExplorer + - id: JetpackMiniFilled + - id: HandheldGPSBasic + - type: AccessReader #Mercenary hardsuit - type: entity @@ -64,8 +71,6 @@ components: - type: StorageFill contents: -# - id: NitrogenTankFilled -# - id: OxygenTankFilled - id: AirTankFilled - id: ClothingOuterHardsuitMercenary - id: ClothingMaskGasMercenary @@ -83,8 +88,6 @@ components: - type: StorageFill contents: -# - id: NitrogenTankFilled -# - id: OxygenTankFilled - id: AirTankFilled - id: ClothingOuterHardsuitScaf - id: ClothingMaskGasMercenary @@ -102,14 +105,11 @@ components: - type: StorageFill contents: -# - id: NitrogenTankFilled -# - id: OxygenTankFilled - id: AirTankFilled - id: ClothingOuterHardsuitPilot - id: ClothingMaskBreath - id: JetpackMiniFilled - id: HandheldGPSBasic -# - id: ClothingShoesBootsMagMercenaryFilled # Frontier - Not adding this to the suit storage so it wont be abused, exists only on role spawn. - type: AccessReader access: [["Captain"], ["Pilot"]] @@ -121,16 +121,12 @@ components: - type: StorageFill contents: -# - id: NitrogenTankFilled -# - id: OxygenTankFilled - id: AirTankFilled - id: ClothingOuterHardsuitClown - id: ClothingMaskBreath - id: JetpackMiniFilled - id: HandheldGPSBasic -# - id: ClothingShoesBootsMagMercenaryFilled # Frontier - Not adding this to the suit storage so it wont be abused, exists only on role spawn. - type: AccessReader -# access: [["Captain"], ["Pilot"]] #Cadet hardsuit - type: entity @@ -140,8 +136,6 @@ components: - type: StorageFill contents: -# - id: NitrogenTankFilled -# - id: OxygenTankFilled - id: AirTankFilled - id: ClothingOuterHardsuitNfsdBronze # Frontier - id: ClothingMaskGasNfsd @@ -159,8 +153,6 @@ components: - type: StorageFill contents: -# - id: NitrogenTankFilled -# - id: OxygenTankFilled - id: AirTankFilled - id: ClothingOuterHardsuitNfsdSilver # Frontier - id: ClothingMaskGasNfsd @@ -178,8 +170,6 @@ components: - type: StorageFill contents: -# - id: NitrogenTankFilled -# - id: OxygenTankFilled - id: AirTankFilled - id: ClothingOuterHardsuitNfsdBrigmedic # Frontier - id: ClothingMaskGasNfsd @@ -197,8 +187,6 @@ components: - type: StorageFill contents: -# - id: NitrogenTankFilled -# - id: OxygenTankFilled - id: AirTankFilled - id: ClothingOuterHardsuitNfsdGold # Frontier - id: ClothingMaskGasNfsd @@ -216,8 +204,6 @@ components: - type: StorageFill contents: -# - id: NitrogenTankFilled -# - id: OxygenTankFilled - id: AirTankFilled - id: ClothingOuterHardsuitNfsdGold # Frontier - id: ClothingMaskGasNfsd @@ -235,8 +221,6 @@ components: - type: StorageFill contents: -# - id: NitrogenTankFilled -# - id: OxygenTankFilled - id: AirTankFilled - id: ClothingOuterHardsuitNfsdSheriff # Frontier - id: ClothingMaskGasSheriff @@ -254,8 +238,6 @@ components: - type: StorageFill contents: -# - id: NitrogenTankFilled -# - id: OxygenTankFilled - id: AirTankFilled - id: ClothingOuterHardsuitNfsdCombat # Frontier - id: ClothingMaskGasNfsd @@ -273,8 +255,6 @@ components: - type: StorageFill contents: -# - id: NitrogenTankFilled -# - id: OxygenTankFilled - id: AirTankFilled - id: ClothingOuterHardsuitNfsdCommand # Frontier - id: ClothingMaskGasNfsd diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml index 0170715fbde..feb64cc4885 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Lockers/suit_storage_wallmount.yml @@ -15,6 +15,11 @@ id: SuitStorageWallmountQuartermaster parent: [SuitStorageWallmount, SuitStorageQuartermaster] +#Mining hardsuit +- type: entity + id: SuitStorageWallmountMining + parent: [SuitStorageWallmount, SuitStorageMining] + #Mercenary hardsuit - type: entity id: SuitStorageWallmountMercenary diff --git a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/flatpackvend.yml b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/flatpackvend.yml index 63b4848031d..158eae93dcc 100644 --- a/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/flatpackvend.yml +++ b/Resources/Prototypes/_NF/Catalog/VendingMachines/Inventories/flatpackvend.yml @@ -24,3 +24,5 @@ AirlockGlassFlatpack: 20 AirlockShuttleFlatpack: 20 AirlockGlassShuttleFlatpack: 20 + emaggedInventory: + HoverbikeFlatpack: 1 diff --git a/Resources/Prototypes/_NF/Catalog/security_uplink_catalog.yml b/Resources/Prototypes/_NF/Catalog/security_uplink_catalog.yml index 6a5c2a9d676..8239aefedf3 100644 --- a/Resources/Prototypes/_NF/Catalog/security_uplink_catalog.yml +++ b/Resources/Prototypes/_NF/Catalog/security_uplink_catalog.yml @@ -1164,3 +1164,24 @@ - Bailiff - SeniorOfficer - Sheriff + +- type: listing + id: UplinkSecurityHoverbikeNfsdFlatpack + name: uplink-security-hoverbike-name + description: uplink-security-hoverbike-desc + productEntity: HoverbikeNfsdFlatpack + icon: { sprite: _NF/Objects/Vehicles/hoverbike.rsi, state: vehicle } + cost: + FrontierUplinkCoin: 35 + categories: + - UplinkSecurityUtility + conditions: + - !type:StoreWhitelistCondition + whitelist: + tags: + - SecurityUplink + - !type:BuyerJobCondition + whitelist: + - Bailiff + - SeniorOfficer + - Sheriff diff --git a/Resources/Prototypes/_NF/Chemistry/metabolizer_types.yml b/Resources/Prototypes/_NF/Chemistry/metabolizer_types.yml new file mode 100644 index 00000000000..f732c84cf94 --- /dev/null +++ b/Resources/Prototypes/_NF/Chemistry/metabolizer_types.yml @@ -0,0 +1,6 @@ +# If your species wants to metabolize stuff differently, +# you'll likely have to tag its metabolizers with something other than Human. + +- type: metabolizerType #Frontier + id: Goblin #Frontier + name: goblin #Frontier diff --git a/Resources/Prototypes/_NF/Damage/modifier_sets.yml b/Resources/Prototypes/_NF/Damage/modifier_sets.yml new file mode 100644 index 00000000000..988185dc29c --- /dev/null +++ b/Resources/Prototypes/_NF/Damage/modifier_sets.yml @@ -0,0 +1,7 @@ +- type: damageModifierSet + id: Goblin + coefficients: + Blunt: 1.1 + Slash: 1.1 + Piercing: 1.1 + Poison: 0.8 diff --git a/Resources/Prototypes/_NF/Datasets/Names/goblin_names_female.yml b/Resources/Prototypes/_NF/Datasets/Names/goblin_names_female.yml new file mode 100644 index 00000000000..bbbab4f90f9 --- /dev/null +++ b/Resources/Prototypes/_NF/Datasets/Names/goblin_names_female.yml @@ -0,0 +1,212 @@ +# used this tool: https://www.fantasynamegenerators.com/goblin-names.php +- type: dataset + id: names_goblin_female + values: + - Milm + - Tulxe + - Choisz + - Sogs + - Igsa + - Phupaangai + - Iemolk + - Rahuxee + - Sterzirtea + - Liablule + - Guirx + - Sluigs + - Qil + - Prilx + - Sroifs + - Klelrusha + - Phoshaxia + - Stulzoix + - Wrivuish + - Fiorift + - Vraft + - Preafse + - Pash + - Swosx + - Ilia + - Otvold + - Bheaneaszai + - Ykift + - Qugogsai + - Kiafezz + - Ben + - Grynx + - Chilea + - Glink + - Vriaf + - Blirmynqai + - Gnalzess + - Hahzufz + - Tumafz + - Khopsiex + - Ohx + - Yhxee + - Teefea + - Vrolt + - Eeq + - Sinuzzee + - Srohbesze + - Crosazi + - Flolgelda + - Cheeskoisx + - Gefz + - Srehea + - Phyx + - Slift + - Praq + - Truigeanx + - Riepienq + - Cheasseeng + - Prusdert + - Roivlulka + - Gnuix + - Gnuz + - Urx + - Chufsia + - Lulk + - Vobdelk + - Viosmoltai + - Rategs + - Prilralx + - Ciebalt + - Miesz + - Raafs + - Gnolt + - Shoildai + - Pieprean + - Aaftinxea + - Wrabaalk + - Wrioshaas + - Shopfeelde + - Fanx + - Lath + - Cult + - Prugs + - Crolma + - Mokzux + - Threekkozza + - Cloirsart + - Cegzexai + - Wreetzold + - Luns + - Mengee + - Glesxa + - Fliolm + - Jalk + - Blohkuszee + - Sletef + - Vornelt + - Gnaklixea + - Ielild + - Panx + - Thele + - Swylk + - Olx + - Sruimiangea + - Blaagzilk + - Gluilalt + - Nahdathai + - Ybniefsai + - Thresea + - Pialkai + - Trold + - Toisi + - Chigia + - Tigsinx + - Ieveq + - Wrersungea + - Tiltang + - Uhux + - Gnofs + - Grigs + - Fruiq + - Qofz + - Healxea + - Uimtuhx + - Fliebzols + - Boiplufta + - Veruni + - Vrumuingi + - Trig + - Swolm + - Braas + - Oshea + - Throinq + - Okin + - Cleruzee + - Pynoif + - Fentash + - Desriesh + - Sags + - Kluzea + - Ig + - Brolk + - Conga + - Phioflesx + - Thrumziss + - Vrubloildea + - Ophafz + - Srisburtee + - Chig + - Grurxi + - Frinkea + - Gnanx + - Flols + - Klovleerx + - Chebdielt + - Bliokness + - Bloigkiart + - Swegsoq + - Pragsee + - Shien + - Soinq + - Shielt + - Fesi + - Gnermol + - Qiergufzai + - Khopsiaz + - Ovafsee + - Stegziaft + - Elt + - Blerti + - Dals + - Sliqa + - Paashia + - Ipug + - Mafnifa + - Flaatrush + - Saageqia + - Clumosx + - Cierxia + - Resx + - Phuift + - Vreh + - Frogs + - Gnulbiosx + - Hiemis + - Erraha + - Breavol + - Caakvong + - Prel + - Kleefai + - Eafz + - Eeshi + - Jysx + - Thosseagsia + - Uihboif + - Uibiesz + - Gryplilai + - Clietnon + - Glesx + - Moft + - Gnerte + - Riex + - Eng + - Irraaxai + - Chasizia + - Siogensia + - Thraarliotha + - Weagkeenkea diff --git a/Resources/Prototypes/_NF/Datasets/Names/goblin_names_last.yml b/Resources/Prototypes/_NF/Datasets/Names/goblin_names_last.yml new file mode 100644 index 00000000000..0571547116b --- /dev/null +++ b/Resources/Prototypes/_NF/Datasets/Names/goblin_names_last.yml @@ -0,0 +1,214 @@ +# used this tool: https://www.fantasynamegenerators.com/goblin-wow-names.php +- type: dataset + id: names_goblin_last + values: + - Cutsnap + - Deadshift + - Smartrocket + - Peddlebeam + - Fiztwist + - Shiftcharge + - Craftsteam + - Vividgleam + - Boltscrew + - Cheaprocket + - Sandcord + - Grimesnap + - Greedbulb + - Fizztale + - Silverbulb + - Steamhead + - Brokenbead + - Madgob + - Ficklegrubber + - Loosefluke + - Greasyblade + - Shadowcoat + - Fastboot + - Fizztongue + - Brisksprocket + - Smartbite + - Shiftfire + - Fartweak + - Grimeslice + - Lazyvolt + - Shortdirt + - Slickwick + - Cutgrubber + - Meanskimmer + - Blandchart + - Bentflame + - Powerbucket + - Fusetweak + - Rocketbeam + - Shrillhead + - Silvercheek + - Madsnap + - Botnozzle + - Agilescrew + - Boltflame + - Plainbuttons + - Niftgrubber + - Mantongue + - Rocketbeast + - Smugbite + - Manbite + - Groundbit + - Niftscrew + - Starkbomb + - Vexboot + - Saltsteam + - Toppocket + - Pickblast + - Looseclamp + - Plainbutton + - Multiwick + - Slysnap + - Slickgift + - Rockettooth + - Grimfault + - Falseclamp + - Leaftwist + - Fizzlemine + - Clearvolt + - Keenshiv + - Wildwick + - Mancoil + - Shiftrocket + - Boltwatts + - Shrillchart + - Glumpocket + - Meanhallow + - Vexspark + - Pickbub + - Slyflame + - Wrenchburst + - Dullbit + - Powertask + - Fizbeast + - Keentale + - Dampslice + - Greasymask + - Blindbrake + - Vexnose + - Boltblast + - Mudgleam + - Lazyfuel + - Goldpot + - Roughgift + - Gigashatter + - Peppergleam + - Steamshift + - Kneebutton + - Shadowpot + - Deadtweak + - Fiercewell + - Peppergrin + - Rashtask + - Meanfang + - Brokencharge + - Farjolt + - Greedmine + - Rustmask + - Moneybelt + - Fastsnipe + - Strongnozzle + - Cogcrook + - Fizzlebeast + - Multihead + - Multitwister + - Loosedrive + - Cheapflare + - Clearbucket + - Hagglewizzle + - Sparksmile + - Slytongue + - Lazyblade + - Multigear + - Kneeclamp + - Grapplerocket + - Falsefuel + - Fastnose + - Smallflame + - Falsegrubber + - Faintdoc + - Hardwrench + - Saltcord + - Greaseflow + - Blindbeam + - Vividhammer + - Meanhold + - Sandgrinder + - Smallbasher + - Moneyhammer + - Madknob + - Grapplecharge + - Silvergob + - Cogbite + - Botfuse + - Glumhammer + - Rashhead + - Sandhire + - Glumtongue + - Agilebit + - Blandbit + - Glumpatch + - Vividbelt + - Fizzbottom + - Cheapfeet + - Agilejolt + - Slickwrench + - Topwell + - Sharpdrive + - Slickfingers + - Greasyfang + - Glumspark + - Cutpinch + - Hardsnipe + - Sandmask + - Hagglebolt + - Wrenchdrive + - Greasykettle + - Silverbolt + - Falsepost + - Falseblaster + - Rustbelt + - Starkburst + - Cheapcharge + - Leafbite + - Hardracket + - Hardclamp + - Fasthold + - Grandblade + - Aridracket + - Multibuttons + - Grimeblade + - Fixbombs + - Fizzlechin + - Meanclamp + - Bentblaster + - Boomhammer + - Hardbuttons + - Megacoil + - Shadownose + - Brokenbomb + - Smartskimmer + - Ficklegrin + - Blinddirt + - Fusepot + - Topbucket + - Rustbomb + - Grimepocket + - Cheaptweak + - Shrillshiv + - Smugpinch + - Grimblade + - Keentongue + - Sandpot + - Meanhook + - Sandgrubber + - Saltblast + - Slyfire + - Foamscrew + - Fizzlebub + - Hardfault diff --git a/Resources/Prototypes/_NF/Datasets/Names/goblin_names_male.yml b/Resources/Prototypes/_NF/Datasets/Names/goblin_names_male.yml new file mode 100644 index 00000000000..80c5f98c6e3 --- /dev/null +++ b/Resources/Prototypes/_NF/Datasets/Names/goblin_names_male.yml @@ -0,0 +1,213 @@ +# used this tool: https://www.fantasynamegenerators.com/goblin-names.php +- type: dataset + id: names_goblin_male + values: + - Crirt + - Weq + - Blaq + - Xork + - Jestuirm + - Storuq + - Eantard + - Zratnirt + - Granurd + - Srekz + - Srard + - Drenk + - Klaax + - Strias + - Glonyq + - Tamteard + - Stonieng + - Camard + - Drazdazz + - Fex + - Clonk + - Wriord + - Slac + - Trekt + - Vrulykt + - Pasking + - Crotrisz + - Igrus + - Udard + - Ezz + - Brerd + - Toc + - Weerm + - Waabs + - Srirbet + - Zivnaar + - Straabbeags + - Otaarx + - Xiotbeekz + - Iolb + - Tret + - Eazz + - Gnits + - Slax + - Clokakx + - Ihbird + - Stadsarx + - Slezlylb + - Wrultekx + - Klior + - Oilb + - Rielk + - Lakx + - Plisb + - Gneesits + - Riskuc + - Sredzerx + - Brolsukx + - Gleermiozz + - Bald + - Kralb + - Gnizz + - Jiec + - Vuq + - Zersoikt + - Alerk + - Klagat + - Filteerd + - Kriattialb + - Rort + - Striabs + - Glild + - Plieng + - Zreazz + - Irsucs + - Easox + - Bribsuird + - Crizots + - Oivoits + - Bluits + - Ceakx + - Freank + - Jebs + - Kragz + - Slahees + - Ynzeets + - Wiltik + - Irzarm + - Krieveq + - Ord + - Reect + - Fas + - Ploc + - Glelk + - Iabeasb + - Ytmusb + - Sliozlet + - Oibaakz + - Catbuit + - Fuk + - Bruikx + - Slaq + - Eec + - Liold + - Brodoit + - Zuiggat + - Kloreart + - Huigmeld + - Jumres + - Eegs + - Ig + - Erd + - Zeabs + - Brekx + - Eabeekx + - Bibdaats + - Greztaak + - Kledoilk + - Clidsuil + - Drurd + - Kuis + - Trerx + - Bulk + - Voikz + - Xogbiecs + - Zriostriesz + - Chysix + - Srodreebs + - Isoilx + - Struilx + - Ionk + - Xuiq + - Xukz + - Klats + - Trassabs + - Cliarit + - Plaareec + - Sroitlaact + - Zodnut + - Klield + - Brierx + - Brix + - Zard + - Bylx + - Strugder + - Troviazz + - Razgilb + - Featzags + - Creszord + - Sraal + - Srul + - Purk + - Zyts + - Jeard + - Cartazz + - Igzikx + - Tregmolx + - Striegdikt + - Golkiosz + - Eel + - Trarx + - Pux + - Ex + - Grict + - Ugbuis + - Lusroic + - Fotoigz + - Costract + - Trorzazz + - Gnok + - Kloirm + - Gaart + - Slugs + - Plobs + - Gnuglol + - Wrulkolx + - Branic + - Chusekt + - Plegmunk + - Cyzz + - Zrets + - Ubs + - Peaq + - Cherx + - Ugdurx + - Traakark + - Iehdoilx + - Biaskeas + - Zavzox + - Plialb + - Zaakt + - Stard + - Jaart + - Struld + - Sremakx + - Uvyr + - Xienriot + - Gryvosz + - Wedyr + - Wroirk + - Crigz + - Sraas + - Blox + - Gelb + - Gnolakz + - Abnylb + - Wruzekx + - Liogaz + - Vradseerd diff --git a/Resources/Prototypes/_NF/Entities/Markers/Spawners/vehicles.yml b/Resources/Prototypes/_NF/Entities/Markers/Spawners/vehicles.yml new file mode 100644 index 00000000000..8587415cc57 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Markers/Spawners/vehicles.yml @@ -0,0 +1,13 @@ +- type: entity + name: hoverbike spawner + id: SpawnVehicleHoverbikeNF + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - sprite: _NF/Objects/Vehicles/hoverbike.rsi + state: vehicle + - type: ConditionalSpawner + prototypes: + - VehicleHoverbikeNF diff --git a/Resources/Prototypes/_NF/Entities/Mobs/Customization/Markings/goblin_markings.yml b/Resources/Prototypes/_NF/Entities/Mobs/Customization/Markings/goblin_markings.yml new file mode 100644 index 00000000000..a1c093feff8 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Mobs/Customization/Markings/goblin_markings.yml @@ -0,0 +1,92 @@ +# Goblin Ears +- type: marking + id: GoblinEarsBasic + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Goblin] + sprites: + - sprite: _NF/Mobs/Customization/goblin_ears.rsi + state: goblin_ears_default + +- type: marking + id: GoblinEarsBasicAlt + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Goblin] + sprites: + - sprite: _NF/Mobs/Customization/goblin_ears.rsi + state: goblin_ears_default_alt + +- type: marking + id: GoblinEarsLong01 + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Goblin] + sprites: + - sprite: _NF/Mobs/Customization/goblin_ears.rsi + state: goblin_ears_long_01 + +- type: marking + id: GoblinEarsLong02 + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Goblin] + sprites: + - sprite: _NF/Mobs/Customization/goblin_ears.rsi + state: goblin_ears_long_02 + +# Goblin Noses +- type: marking + id: GoblinNoseBasic + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [Goblin] + sprites: + - sprite: _NF/Mobs/Customization/goblin_noses.rsi + state: goblin_nose_default + +- type: marking + id: GoblinNoseLong + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [Goblin] + sprites: + - sprite: _NF/Mobs/Customization/goblin_noses.rsi + state: goblin_nose_long + +- type: marking + id: GoblinNoseCrooked + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [Goblin] + sprites: + - sprite: _NF/Mobs/Customization/goblin_noses.rsi + state: goblin_nose_crooked + +# Goblin Tusks +- type: marking + id: GoblinTusksBasic + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [Goblin] + sprites: + - sprite: _NF/Mobs/Customization/goblin_tusks.rsi + state: goblin_tusks_none + +- type: marking + id: GoblinTusksSmall + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [Goblin] + sprites: + - sprite: _NF/Mobs/Customization/goblin_tusks.rsi + state: goblin_tusks_small + +- type: marking + id: GoblinTusksBig + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [Goblin] + sprites: + - sprite: _NF/Mobs/Customization/goblin_tusks.rsi + state: goblin_tusks_big diff --git a/Resources/Prototypes/_NF/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/_NF/Entities/Mobs/NPCs/pets.yml index b8334efb234..66da631d78a 100644 --- a/Resources/Prototypes/_NF/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/_NF/Entities/Mobs/NPCs/pets.yml @@ -55,7 +55,7 @@ nameSegments: [names_cat_clarpy] # Its needed to fix the names since it was using the MobCatGhost list. - type: AutoImplant implants: - - DeathRattleImplant + - FreelanceTrackingImplant - type: entity name: Mistake diff --git a/Resources/Prototypes/_NF/Entities/Mobs/Player/goblin_player.yml b/Resources/Prototypes/_NF/Entities/Mobs/Player/goblin_player.yml new file mode 100644 index 00000000000..6f220e4ceaa --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Mobs/Player/goblin_player.yml @@ -0,0 +1,8 @@ +- type: entity + save: false + name: Urist McGoblin + parent: [MobGoblinBase, BaseMob] + id: MobGoblin + components: + - type: Speech + speechVerb: Goblin diff --git a/Resources/Prototypes/_NF/Entities/Mobs/Species/goblin.yml b/Resources/Prototypes/_NF/Entities/Mobs/Species/goblin.yml new file mode 100644 index 00000000000..055a5e6f1d0 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Mobs/Species/goblin.yml @@ -0,0 +1,73 @@ +- type: entity + parent: BaseMobHuman + name: Urist McGoblin + id: MobGoblinBase + abstract: true + components: + - type: Sprite + scale: 0.8, 0.7 + - type: HumanoidAppearance + species: Goblin + - type: Fixtures + fixtures: # TODO: This needs a second fixture just for mob collisions. + fix1: + shape: + !type:PhysShapeCircle + radius: 0.28 + density: 135 + restitution: 0.0 + mask: + - MobMask + layer: + - MobLayer + - type: Body + prototype: Goblin + - type: Damageable + damageModifierSet: Goblin + - type: MeleeWeapon + soundHit: + collection: Punch + animation: WeaponArcClaw + damage: + types: + Slash: 3 + - type: Speech + speechSounds: Alto + - type: DamageOnHighSpeedImpact + damage: + types: + Blunt: 1 + - type: Stamina + - type: PseudoItem + - type: Vocal + wilhelm: "/Audio/_NF/Voice/Goblin/goblin-cackle-05.ogg" + sounds: + Male: MaleGoblin + Female: FemaleGoblin + Unsexed: MaleGoblin + - type: Goblin + - type: NpcFactionMember + factions: + - NanoTrasen + - Goblin + - type: Butcherable + spawned: + - id: FoodMeatGoblin + amount: 3 +# - type: SizeAttributeWhitelist # This system need to move to a slider +# tall: true +# tallscale: 1 +# tallDensity: 185 + - type: ReplacementAccent + accent: goblin_accent + +- type: entity + save: false + name: Urist McGoblin + parent: MobHumanDummy + id: MobGoblinDummy + noSpawn: true + description: A dummy goblin meant to be used in character setup. + components: + - type: HumanoidAppearance + species: Goblin diff --git a/Resources/Prototypes/_NF/Entities/Objects/Devices/flatpacks.yml b/Resources/Prototypes/_NF/Entities/Objects/Devices/flatpacks.yml index 3ef62352561..464a1404327 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Devices/flatpacks.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Devices/flatpacks.yml @@ -594,3 +594,40 @@ entity: NfsdTechFab - type: StaticPrice price: 250 + +# Hoverbikes +- type: entity + parent: BaseNFFlatpack + id: HoverbikeFlatpack + name: hoverbike flatpack + description: A flatpack used for constructing a hoverbike. Keys already slotted in the ignition. + components: + - type: Flatpack + entity: VehicleHoverbikeNFKeys + - type: StaticPrice + price: 2000 + - type: Sprite + layers: + - state: command_airlock + +- type: entity + parent: HoverbikeFlatpack + id: HoverbikeMailcarrierFlatpack + name: mail carrier hoverbike flatpack + description: A flatpack used for constructing a hoverbike. Keys already slotted in the ignition. + components: + - type: Flatpack + entity: VehicleHoverbikeMailcarrierKey + - type: StaticPrice + price: 75 + +- type: entity + parent: HoverbikeFlatpack + id: HoverbikeNfsdFlatpack + name: nfsd hoverbike flatpack + description: A flatpack used for constructing a hoverbike. Keys already slotted in the ignition. + components: + - type: Flatpack + entity: VehicleHoverbikeNfsdKey + - type: StaticPrice + price: 750 diff --git a/Resources/Prototypes/_NF/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/_NF/Entities/Objects/Fun/toys.yml index 04089f8f3d0..0fec5bb01ae 100644 --- a/Resources/Prototypes/_NF/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/_NF/Entities/Objects/Fun/toys.yml @@ -360,16 +360,16 @@ components: - type: EmitSoundOnUse sound: - path: /Audio/_NF/Vulpikanin/bark.ogg + path: /Audio/DeltaV/Voice/Vulpkanin/dog_bark1.ogg - type: EmitSoundOnLand sound: - path: /Audio/_NF/Vulpikanin/bark.ogg + path: /Audio/DeltaV/Voice/Vulpkanin/dog_bark1.ogg - type: EmitSoundOnActivate sound: - path: /Audio/_NF/Vulpikanin/bark.ogg + path: /Audio/DeltaV/Voice/Vulpkanin/dog_bark1.ogg - type: MeleeWeapon soundHit: - path: /Audio/_NF/Vulpikanin/bark.ogg + path: /Audio/DeltaV/Voice/Vulpkanin/dog_bark1.ogg - type: entity parent: BasePlushieVulp diff --git a/Resources/Prototypes/_NF/Entities/Objects/Vehicles/keys.yml b/Resources/Prototypes/_NF/Entities/Objects/Vehicles/keys.yml new file mode 100644 index 00000000000..e71c1c07ed9 --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Objects/Vehicles/keys.yml @@ -0,0 +1,17 @@ +- type: entity + parent: BaseItem + id: VehicleKeyHoverbikeNF + name: hoverbike keys + description: Cute bibelot. + components: + - type: Item + size: Tiny + - type: Tag + tags: + - VehicleKey + - HoverbikeKeys + - type: Sprite + sprite: _NF/Objects/Vehicles/hoverbike.rsi + state: keys + - type: StaticPrice + price: 50 diff --git a/Resources/Prototypes/_NF/Entities/Objects/Vehicles/vehicles.yml b/Resources/Prototypes/_NF/Entities/Objects/Vehicles/vehicles.yml new file mode 100644 index 00000000000..be0f216aede --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Objects/Vehicles/vehicles.yml @@ -0,0 +1,358 @@ +# Base game vehicles +- type: entity + parent: VehicleATV + id: VehicleATVNF + name: ATV + description: All-Tile Vehicle. + components: + - type: Sprite + sprite: _NF/Objects/Vehicles/atv.rsi + layers: + - state: hull + map: [ "enum.DamageStateVisualLayers.Base" ] + - state: engine + map: ["enum.VehicleVisualLayers.AutoAnimate"] + - state: lights + shader: unshaded + noRot: true + - type: RandomSprite + available: + - enum.DamageStateVisualLayers.Base: + hull: Sixteen # Rainbow, Emagged, Departmental, Advanced + - type: ItemSlots + slots: + key_slot: + name: vehicle-slot-component-slot-name-keys + whitelist: + requireAll: true + tags: + - VehicleKey + - ATVKeys + priority: 1 + insertSound: + path: /Audio/Effects/Vehicle/vehiclestartup.ogg + params: + volume: -3 + bag: + name: stored bag + whitelist: + components: + - Storage + priority: 2 + insertSound: + path: /Audio/Items/belt_equip.ogg + params: + volume: -3 + - type: ItemMapper + mapLayers: + bag: + whitelist: + components: + - Storage + sprite: _NF/Objects/Vehicles/atv.rsi + - type: Appearance + +- type: entity + parent: VehicleSkeletonMotorcycle + id: VehicleSkeletonMotorcycleNF + name: skeleton motorcycle + description: Bad to the Bone. + components: + - type: Storage + grid: + - 0,0,1,3 + - 3,0,6,3 + - 8,0,9,3 + maxItemSize: Huge + - type: ContainerContainer + containers: + storagebase: !type:Container + - type: UserInterface + interfaces: + - key: enum.StorageUiKey.Key + type: StorageBoundUserInterface + +# New Frontier vehicles +- type: entity + parent: VehicleATVNF + id: VehicleHoverbikeNF + name: hoverbike + description: A turbine with bike handles. Very safe. + components: + - type: MovementIgnoreGravity + - type: MovementAlwaysTouching + - type: CanMoveInAir + - type: AmbientSound + sound: /Audio/Effects/shuttle_thruster.ogg + range: 8 + volume: 5 + enabled: false + - type: Strap + buckleOffset: "0.1, -0.05" + maxBuckleDistance: 1 + - type: MovementSpeedModifier + acceleration: 2 + friction: 1.5 + baseWalkSpeed: 4.5 + baseSprintSpeed: 7 + - type: Sprite + sprite: _NF/Objects/Vehicles/hoverbike.rsi + layers: + - state: hull + map: [ "enum.DamageStateVisualLayers.Base" ] + - state: engine + map: ["enum.VehicleVisualLayers.AutoAnimate"] + - state: lights + shader: unshaded + noRot: true + - type: RandomSprite + available: + - enum.DamageStateVisualLayers.Base: + hull: Sixteen # Rainbow, Emagged, Departmental, Advanced + - type: ItemSlots + slots: + key_slot: + name: vehicle-slot-component-slot-name-keys + whitelist: + requireAll: true + tags: + - VehicleKey + - HoverbikeKeys + priority: 1 + insertSound: + path: /Audio/Effects/Vehicle/vehiclestartup.ogg + params: + volume: -5 + bag: + name: stored bag + whitelist: + components: + - Storage + priority: 2 + insertSound: + path: /Audio/Items/belt_equip.ogg + params: + volume: -3 + - type: ItemMapper + mapLayers: + bag: + whitelist: + components: + - Storage + sprite: _NF/Objects/Vehicles/hoverbike.rsi + - type: Appearance + - type: PointLight + radius: 7 + energy: 3 + +- type: entity + parent: VehicleHoverbikeNF + id: VehicleHoverbikeNFKeys + suffix: With key + components: + - type: ItemSlots + slots: + key_slot: + name: vehicle-slot-component-slot-name-keys + whitelist: + requireAll: true + tags: + - VehicleKey + - HoverbikeKeys + startingItem: VehicleKeyHoverbikeNF + priority: 1 + insertSound: + path: /Audio/Effects/Vehicle/vehiclestartup.ogg + params: + volume: -5 + bag: + name: stored bag + whitelist: + components: + - Storage + priority: 2 + insertSound: + path: /Audio/Items/belt_equip.ogg + params: + volume: -3 + +# Mail carrier +- type: entity + parent: VehicleSkeletonMotorcycleNF + id: VehicleHoverbikeMailcarrier + name: mail carrier hoverbike + description: You better run, better run, faster than my mail. + components: + - type: MovementIgnoreGravity + - type: MovementAlwaysTouching + - type: CanMoveInAir + - type: AmbientSound + sound: /Audio/Effects/shuttle_thruster.ogg + range: 8 + volume: 5 + enabled: false + - type: Sprite + sprite: _NF/Objects/Vehicles/hoverbike.rsi + layers: + - state: hull + color: "#8fd3ff" + - state: engine + map: ["enum.VehicleVisualLayers.AutoAnimate"] + - state: mailtrim + - state: lights + shader: unshaded + noRot: true + - type: ItemSlots + slots: + key_slot: + name: vehicle-slot-component-slot-name-keys + whitelist: + requireAll: true + tags: + - VehicleKey + - HoverbikeKeys + priority: 1 + insertSound: + path: /Audio/Effects/Vehicle/vehiclestartup.ogg + params: + volume: -5 + mailgun: + name: rpds + whitelist: + components: + - Gun # Any gun :(, including RPDS + priority: 2 + - type: ItemMapper + mapLayers: + mailgun: + whitelist: + components: + - Gun + sprite: _NF/Objects/Vehicles/hoverbike.rsi + - type: Appearance + - type: PointLight + enabled: false + radius: 6 + energy: 3 + +- type: entity + parent: VehicleHoverbikeMailcarrier + id: VehicleHoverbikeMailcarrierKey + suffix: With key + components: + - type: ItemSlots + slots: + key_slot: + name: vehicle-slot-component-slot-name-keys + whitelist: + requireAll: true + tags: + - VehicleKey + - HoverbikeKeys + startingItem: VehicleKeyHoverbikeNF + priority: 1 + insertSound: + path: /Audio/Effects/Vehicle/vehiclestartup.ogg + params: + volume: -5 + mailgun: + name: rpds + whitelist: + components: + - Gun # Any gun :(, including RPDS + priority: 2 + +# NFSD +- type: entity + parent: VehicleHoverbikeMailcarrier + id: VehicleHoverbikeNfsd + name: nfsd hoverbike + description: An NFSD issued turbine with bike handles. Very safe. + components: + - type: Vehicle + northOver: true + westOver: true + eastOver: true + northOverride: -0.1 + southOverride: 0.1 + hornSound: + path: /Audio/Effects/Vehicle/policesiren.ogg + - type: MovementSpeedModifier # Very petty on my end + acceleration: 1.9 + friction: 1.4 + baseWalkSpeed: 4.3 + baseSprintSpeed: 6.8 + - type: Sprite + sprite: _NF/Objects/Vehicles/hoverbike.rsi + layers: + - state: hull + color: "#49633d" + - state: engine + map: ["enum.VehicleVisualLayers.AutoAnimate"] + - state: nfsdstar + - state: lights + shader: unshaded + noRot: true + - type: ItemSlots + slots: + key_slot: + name: vehicle-slot-component-slot-name-keys + whitelist: + requireAll: true + tags: + - VehicleKey + - HoverbikeKeys + priority: 1 + insertSound: + path: /Audio/Effects/Vehicle/vehiclestartup.ogg + params: + volume: -5 + nfsdbaton: + name: stunbaton + whitelist: + components: + - Stunbaton + priority: 2 + - type: ItemMapper + mapLayers: + nfsdbaton: + whitelist: + components: + - Stunbaton + sprite: _NF/Objects/Vehicles/hoverbike.rsi + - type: Appearance + - type: RotatingLight + speed: 190 + - type: PointLight + enabled: false + radius: 6 + energy: 2 + color: "#FF4020" + mask: /Textures/Effects/LightMasks/double_cone.png + +- type: entity + parent: VehicleHoverbikeNfsd + id: VehicleHoverbikeNfsdKey + suffix: With key + components: + - type: ItemSlots + slots: + key_slot: + name: vehicle-slot-component-slot-name-keys + whitelist: + requireAll: true + tags: + - VehicleKey + - HoverbikeKeys + startingItem: VehicleKeyHoverbikeNF + priority: 1 + insertSound: + path: /Audio/Effects/Vehicle/vehiclestartup.ogg + params: + volume: -5 + nfsdbaton: + name: stunbaton + whitelist: + components: + - Stunbaton + priority: 2 \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Structures/Decoration/banners.yml b/Resources/Prototypes/_NF/Entities/Structures/Decoration/banners.yml index d9d4627a942..ba7c040a07c 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Decoration/banners.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Decoration/banners.yml @@ -23,3 +23,16 @@ - type: Construction # Frontier graph: BannersGraph # Frontier node: BannerSecurityNode # Frontier + +- type: entity + id: BannerGoblin01 + parent: BannerBase + name: goblin banner + description: A banner displaying one of goblin clan symbols. + components: + - type: Sprite + sprite: _NF/Structures/Decoration/banner.rsi + state: banner_goblin + - type: Construction + graph: BannersGraph + node: BannerGoblin01 diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml index 53d05a33f9a..abb2e83e72c 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml @@ -11,7 +11,6 @@ soundGroups: Brute: collection: MetalGlassBreak - - type: Computer - type: ApcPowerReceiver powerLoad: 200 - type: ExtensionCableReceiver @@ -61,6 +60,8 @@ type: CargoPalletConsoleBoundUserInterface - type: MarketModifier mod: 1.00 + - type: Computer + board: Null - type: entity parent: ComputerPalletConsoleNFNormalMarket @@ -97,58 +98,59 @@ placement: mode: SnapgridCenter components: - - type: MeleeSound - soundGroups: - Brute: - collection: MetalGlassBreak - - type: Computer - - type: ApcPowerReceiver - powerLoad: 200 - - type: ExtensionCableReceiver - - type: ActivatableUIRequiresPower - - type: Sprite - netsync: false - noRot: true - sprite: _NF/Structures/Machines/computers.rsi - layers: - - map: ["computerLayerBody"] - state: computer - - map: ["computerLayerKeyboard"] - state: generic_keyboard - - map: ["computerLayerScreen"] - state: contraband - - map: ["computerLayerKeys"] - state: telesci_key - - type: Appearance - - type: GenericVisualizer - visuals: - enum.ComputerVisuals.Powered: - computerLayerScreen: - True: { visible: true, shader: unshaded } - False: { visible: false } - computerLayerKeys: - True: { visible: true, shader: unshaded } - False: { visible: true, shader: shaded } - - type: LitOnPowered - - type: PointLight - radius: 1.5 - energy: 1.6 - color: "#b89f25" - enabled: false - mask: /Textures/Effects/LightMasks/cone.png - autoRot: true - offset: "0, 0.4" # shine from the top, not bottom of the computer - castShadows: false - - type: EmitSoundOnUIOpen - sound: - collection: Keyboard - - type: ContrabandPalletConsole - - type: ActivatableUI - key: enum.ContrabandPalletConsoleUiKey.Contraband - - type: UserInterface - interfaces: - - key: enum.ContrabandPalletConsoleUiKey.Contraband - type: ContrabandPalletConsoleBoundUserInterface + - type: MeleeSound + soundGroups: + Brute: + collection: MetalGlassBreak + - type: ApcPowerReceiver + powerLoad: 200 + - type: ExtensionCableReceiver + - type: ActivatableUIRequiresPower + - type: Sprite + netsync: false + noRot: true + sprite: _NF/Structures/Machines/computers.rsi + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: contraband + - map: ["computerLayerKeys"] + state: telesci_key + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ComputerVisuals.Powered: + computerLayerScreen: + True: { visible: true, shader: unshaded } + False: { visible: false } + computerLayerKeys: + True: { visible: true, shader: unshaded } + False: { visible: true, shader: shaded } + - type: LitOnPowered + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#b89f25" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + autoRot: true + offset: "0, 0.4" # shine from the top, not bottom of the computer + castShadows: false + - type: EmitSoundOnUIOpen + sound: + collection: Keyboard + - type: ContrabandPalletConsole + - type: ActivatableUI + key: enum.ContrabandPalletConsoleUiKey.Contraband + - type: UserInterface + interfaces: + - key: enum.ContrabandPalletConsoleUiKey.Contraband + type: ContrabandPalletConsoleBoundUserInterface + - type: Computer + board: Null - type: entity parent: ComputerShuttle @@ -168,3 +170,22 @@ radius: 1.5 energy: 1.6 color: "#c94242" + +- type: entity + parent: [BaseStructureDisableToolUse, BaseStructureIndestructible, ComputerIFFSyndicate] + id: ComputerIFFPOI + name: IFF computer + suffix: POI + description: Allows you to control the IFF and stealth characteristics of this station. + components: + - type: IFFConsole + allowedFlags: + - Hide + - type: ActivatableUI + key: enum.IFFConsoleUiKey.Key + - type: UserInterface + interfaces: + - key: enum.IFFConsoleUiKey.Key + type: IFFConsoleBoundUserInterface + - type: Computer + board: Null \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop.yml index 7769f153125..8b5fe6523ee 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop.yml @@ -485,7 +485,7 @@ state: tech_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerCargoOrders] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerCargoOrders] id: ComputerTabletopCargoOrders components: - type: Sprite @@ -649,7 +649,7 @@ # Computers: Frontier - type: entity - parent: [BaseStructureComputerTabletop, ComputerPalletConsoleNFHighMarket] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerPalletConsoleNFHighMarket] id: ComputerTabletopPalletConsoleNFHighMarket suffix: High, Tabletop components: @@ -670,7 +670,7 @@ state: tech_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerPalletConsoleNFNormalMarket] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerPalletConsoleNFNormalMarket] id: ComputerTabletopPalletConsoleNFNormalMarket suffix: Normal, Tabletop components: @@ -691,7 +691,7 @@ state: tech_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerPalletConsoleNFLowMarket] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerPalletConsoleNFLowMarket] id: ComputerTabletopPalletConsoleNFLowMarket suffix: Low, Tabletop components: @@ -733,7 +733,7 @@ state: tech_key - type: entity - parent: [BaseStructureComputerTabletop, StationAdminBankATM] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, StationAdminBankATM] id: ComputerTabletopStationAdminBankATM components: - type: Sprite @@ -753,7 +753,7 @@ state: id_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerContrabandPalletConsole] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerContrabandPalletConsole] id: ComputerTabletopContrabandPalletConsole components: - type: Sprite @@ -771,3 +771,24 @@ - map: ["computerLayerKeys"] sprite: _NF/Structures/Machines/computers.rsi state: telesci_key + +- type: entity + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerIFFPOI] + id: ComputerTabletopComputerIFFPOI + suffix: POI, Tabletop + components: + - type: Sprite + drawdepth: SmallObjects + layers: + - map: ["computerLayerBody"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: computer_tabletop + - map: ["computerLayerKeyboard"] + sprite: _NF/Structures/Machines/computer_tabletop.rsi + state: generic_keyboard_tabletop + - map: ["computerLayerScreen"] + sprite: Structures/Shuttles/iff.rsi + state: helm + - map: ["computerLayerKeys"] + sprite: Structures/Machines/computers.rsi + state: generic_keys \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop_shipyard.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop_shipyard.yml index 9196f9085df..3585c8c191f 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop_shipyard.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_tabletop_shipyard.yml @@ -1,5 +1,5 @@ - type: entity - parent: [BaseStructureComputerTabletop, ComputerShipyard] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerShipyard] id: ComputerTabletopShipyard components: - type: Sprite @@ -19,7 +19,7 @@ state: telesci_key - type: entity - parent: [BaseStructureComputerTabletop, BaseMothershipComputer] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, BaseMothershipComputer] id: BaseMothershipComputerTabletop abstract: true components: @@ -40,7 +40,7 @@ state: telesci_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerShipyardSecurity] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerShipyardSecurity] id: ComputerTabletopShipyardSecurity components: - type: Sprite @@ -60,7 +60,7 @@ state: telesci_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerShipyardNfsd] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerShipyardNfsd] id: ComputerTabletopShipyardNfsd components: - type: Sprite @@ -80,7 +80,7 @@ state: telesci_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerShipyardBlackMarket] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerShipyardBlackMarket] id: ComputerTabletopShipyardBlackMarket components: - type: Sprite @@ -100,7 +100,7 @@ state: blackmarket_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerShipyardExpedition] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerShipyardExpedition] id: ComputerTabletopShipyardExpedition components: - type: Sprite @@ -120,7 +120,7 @@ state: blackmarket_key - type: entity - parent: [BaseStructureComputerTabletop, ComputerShipyardScrap] + parent: [BaseStructureIndestructible, BaseStructureComputerTabletop, ComputerShipyardScrap] id: ComputerTabletopShipyardScrap components: - type: Sprite diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml index ab5030cbad4..7d575be619e 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/lathe.yml @@ -254,14 +254,15 @@ idleState: icon runningState: icon staticRecipes: - - Durathread - - Plasteel - - SheetSteel - - SheetPlasteel - - SheetPlasma - - SheetGlass1 - - SheetRGlass - - SheetPlastic + #- Durathread + #- Plasteel + #- SheetSteel + #- SheetPlasteel + #- SheetPlasma30 + #- SheetUranium30 + #- SheetGlass30 + #- SheetRGlass + #- SheetPlastic - ClothingOuterSuitEmergency - ClothingHeadHelmetEVA - ClothingOuterHardsuitEVA @@ -305,26 +306,21 @@ - GlowstickPurple - GlowstickRedLathe - GlowstickYellow - dynamicRecipes: + - OreBag - MiningDrill + - WeaponProtoKineticAccelerator + dynamicRecipes: - Bucket - MopItem - SprayBottle - FireExtinguisher - - LightTube - - LightBulb - - CableStack - CableMVStack - CableHVStack - - Signaller - - PowerCellMedium - PowerCellHigh - PowerCellMicroreactor - WeaponCrusher - WeaponCrusherDagger - WeaponCrusherGlaive - - WeaponProtoKineticAccelerator - - WeaponTetherGun - WeaponGrapplingGun - ClothingBackpackHolding - ClothingBackpackSatchelHolding @@ -364,6 +360,7 @@ - Sheet - RawMaterial - Ingot +# - Ore - type: entity id: NfsdTechFab diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/telecomms.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/telecomms.yml index 0dddfd2c863..c160bbe9bfe 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/telecomms.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/telecomms.yml @@ -31,3 +31,23 @@ - EncryptionKeySecurity - EncryptionKeyService - EncryptionKeyTraffic + +- type: entity + parent: TelecomServer + id: TelecomServerFilledSyndicate + suffix: Syndicate + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeySyndie + +- type: entity + parent: TelecomServer + id: TelecomServerFilledFreelance + suffix: Freelance + components: + - type: ContainerFill + containers: + key_slots: + - EncryptionKeyFreelance diff --git a/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/Lockers/lockers.yml b/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/Lockers/lockers.yml index 5b15ce884d9..ca91f13b2fd 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/Lockers/lockers.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Storage/Closets/Lockers/lockers.yml @@ -319,10 +319,28 @@ # SR - type: entity id: LockerStationRepresentative - parent: [BaseStructureIndestructible, BaseStructureLockImmuneToEmag, BaseStructureAccessReaderImmuneToEmag, LockerHeadOfPersonnel] # Frontier + parent: [BaseStructureIndestructible, BaseStructureLockImmuneToEmag, BaseStructureAccessReaderImmuneToEmag, LockerBaseSecure] # Frontier name: station representative's locker components: + - type: Appearance - type: EntityStorageVisuals - stateBaseClosed: hop - stateDoorOpen: hop_open - stateDoorClosed: hop_door + stateBaseClosed: sr + stateDoorOpen: sr_open + stateDoorClosed: sr_door + - type: Sprite + sprite: _NF/Structures/Storage/closet.rsi + noRot: true + layers: + - state: generic + map: ["enum.StorageVisualLayers.Base"] + - state: generic_door + map: ["enum.StorageVisualLayers.Door"] + - state: locked + map: ["enum.LockVisualLayers.Lock"] + shader: unshaded + - state: welded + visible: false + map: ["enum.WeldableLayers.BaseWelded"] + - type: AccessReader + access: [["HeadOfPersonnel"]] + diff --git a/Resources/Prototypes/_NF/Entities/Structures/atm.yml b/Resources/Prototypes/_NF/Entities/Structures/atm.yml index db16941fcf1..51f67ee1133 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/atm.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/atm.yml @@ -167,6 +167,28 @@ - key: enum.BankATMMenuUiKey.BlackMarket type: BankATMMenuBoundUserInterface +- type: entity + suffix: Wallmount, BlackMarket + parent: [ComputerBankATMBase, ComputerBankATMDeposit, BaseStructureDisableToolUse, BaseStructureDestructible, BaseStructureWallmount, BaseStructureComputer] + id: ComputerWallmountBlackMarketBankATM + description: Has some sketchy looking modifications and a sticker that says DEPOSIT FEE 30% + components: + - type: Sprite + netsync: false + noRot: true + sprite: _NF/Structures/Machines/atm/wall_illegal_atm.rsi + layers: + - map: ["computerLayerBody"] + state: icon + - map: ["computerLayerScreen"] + state: unshaded + - type: ActivatableUI + key: enum.BankATMMenuUiKey.BlackMarket + - type: UserInterface + interfaces: + - key: enum.BankATMMenuUiKey.BlackMarket + type: BankATMMenuBoundUserInterface + - type: entity name: station administration console parent: [ComputerBankATMBase, BaseStructureDisableToolUse, BaseStructureIndestructible, BaseStructureAccessReaderImmuneToEmag, BaseStructureComputer] diff --git a/Resources/Prototypes/_NF/Entities/Structures/hydro_tray.yml b/Resources/Prototypes/_NF/Entities/Structures/hydro_tray.yml index 0730ffb9f70..7a4c4133f45 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/hydro_tray.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/hydro_tray.yml @@ -29,3 +29,5 @@ state: harvest3 map: [ "harvest_alert" ] visible: false + - type: Machine + board: Null diff --git a/Resources/Prototypes/_NF/Entities/Tiles/water.yml b/Resources/Prototypes/_NF/Entities/Tiles/water.yml new file mode 100644 index 00000000000..c3456793acb --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Tiles/water.yml @@ -0,0 +1,63 @@ +- type: entity + id: FloorWaterDecorativeEntity + name: water + suffix: Decorative + description: A real thirst quencher. + placement: + mode: SnapgridCenter + snap: + - Wall + components: +# - type: FloorOccluder + - type: Transform + anchored: true + - type: SyncSprite + - type: Clickable + - type: Sprite + sprite: Tiles/Planet/water.rsi + drawdepth: BelowFloor + layers: + - state: shoreline_water + - type: SolutionContainerManager + solutions: + pool: + maxVol: 9999999 #.inf seems to break the whole yaml file, but would definitely be preferable. + reagents: + - ReagentId: Water + Quantity: 9999999 + - type: SolutionRegeneration + solution: tank + generated: + reagents: + - ReagentId: Water + Quantity: 100 + - type: DrainableSolution + solution: pool + # - type: SpeedModifierContacts + # walkSpeedModifier: 0.5 + # sprintSpeedModifier: 0.5 + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + layer: + - SlipLayer + mask: + - ItemMask + density: 1000 + hard: false + - type: FootstepModifier + footstepSoundCollection: + collection: FootstepWater + params: + volume: 8 + - type: StepTrigger # Frontier + requiredTriggeredSpeed: 0 + intersectRatio: 0.1 + blacklist: + tags: + - Catwalk \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Maps/POI/lodge.yml b/Resources/Prototypes/_NF/Maps/POI/lodge.yml index 8bae4a40ffb..f01e2e77c13 100644 --- a/Resources/Prototypes/_NF/Maps/POI/lodge.yml +++ b/Resources/Prototypes/_NF/Maps/POI/lodge.yml @@ -1,7 +1,7 @@ - type: gameMap id: Lodge mapName: 'Expeditionary Lodge' - mapPath: /Maps/_NF/POI/cove.yml + mapPath: /Maps/_NF/POI/lodge.yml minPlayers: 0 stations: Lodge: diff --git a/Resources/Prototypes/_NF/Objects/Consumable/Food/meat_goblin.yml b/Resources/Prototypes/_NF/Objects/Consumable/Food/meat_goblin.yml new file mode 100644 index 00000000000..af27157d276 --- /dev/null +++ b/Resources/Prototypes/_NF/Objects/Consumable/Food/meat_goblin.yml @@ -0,0 +1,11 @@ +- type: entity + parent: FoodMeatRotten + id: FoodMeatGoblin + name: raw goblin meat + description: Just look at that marbling! Wait, is that microplastic? + components: + - type: Sprite + state: rotten + color: lime +# - type: Food # Frontier, New Food Quality System +# quality: Toxin # Frontier, New Food Quality System diff --git a/Resources/Prototypes/_NF/Palettes/frontier.yml b/Resources/Prototypes/_NF/Palettes/frontier.yml index afa91e87a83..b18f3279796 100644 --- a/Resources/Prototypes/_NF/Palettes/frontier.yml +++ b/Resources/Prototypes/_NF/Palettes/frontier.yml @@ -5,4 +5,8 @@ nfsd brown: "#49392696" nfsd green: "#4b653e96" mercenary: "#5e7c1696" + sr green dark: "#123d15ff" + sr green mid: "#1f6626ff" + sr green light: "#2e9935ff" + sr gold: "#f1b223ff" diff --git a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/banners.yml b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/banners.yml index 8935d86d9f1..d4aa3a110e2 100644 --- a/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/banners.yml +++ b/Resources/Prototypes/_NF/Recipes/Construction/Graphs/furniture/banners.yml @@ -126,6 +126,16 @@ - material: Cloth amount: 2 doAfter: 1 + - to: BannerGoblin01 + completed: + - !type:SnapToGrid { } + steps: + - material: Steel + amount: 2 + doAfter: 1 + - material: Cloth + amount: 2 + doAfter: 1 - node: BannerNanotrasenNode entity: BannerNanotrasen @@ -306,3 +316,18 @@ steps: - tool: Screwing doAfter: 1 + + - node: BannerGoblin01 + entity: BannerGoblin01 + edges: + - to: start + completed: + - !type:SpawnPrototype + prototype: SheetSteel1 + amount: 2 + - !type:SpawnPrototype + prototype: MaterialCloth1 + amount: 2 + steps: + - tool: Screwing + doAfter: 1 diff --git a/Resources/Prototypes/_NF/Recipes/Construction/furniture.yml b/Resources/Prototypes/_NF/Recipes/Construction/furniture.yml index 837a50d8246..b78f57891bf 100644 --- a/Resources/Prototypes/_NF/Recipes/Construction/furniture.yml +++ b/Resources/Prototypes/_NF/Recipes/Construction/furniture.yml @@ -683,6 +683,24 @@ conditions: - !type:TileNotBlocked +- type: construction + id: BannerGoblin01 + name: goblinkind banner + description: A banner displaying the ancient goblinkind logo. + graph: BannersGraph + startNode: start + targetNode: BannerGoblin01 + category: construction-category-furniture + icon: + sprite: _NF/Structures/Decoration/banner.rsi + state: banner_goblin + objectType: Structure + placementMode: SnapgridCenter + canBuildInImpassable: false + conditions: + - !type:TileNotBlocked + + # Altars - type: construction id: AltarToolbox diff --git a/Resources/Prototypes/_NF/Recipes/Lathes/eva.yml b/Resources/Prototypes/_NF/Recipes/Lathes/eva.yml index b723066b33e..411650e2f8d 100644 --- a/Resources/Prototypes/_NF/Recipes/Lathes/eva.yml +++ b/Resources/Prototypes/_NF/Recipes/Lathes/eva.yml @@ -1,27 +1,3 @@ - -# Cloth: 300 -# Steel: 50 -# Plastic: 50 -# Gold: 100 -# Silver: 100 - -# Raw mats -- type: latheRecipe - id: Durathread - result: MaterialDurathread1 - completetime: 0.2 - materials: - Plastic: 100 - Cloth: 100 - -- type: latheRecipe - id: Plasteel - result: SheetPlasteel1 - completetime: 0.2 - materials: - Plastic: 100 - Steel: 100 - # Softsuits - type: latheRecipe id: ClothingOuterSuitEmergency diff --git a/Resources/Prototypes/_NF/Recipes/Lathes/materials.yml b/Resources/Prototypes/_NF/Recipes/Lathes/materials.yml new file mode 100644 index 00000000000..96b0cb03d4f --- /dev/null +++ b/Resources/Prototypes/_NF/Recipes/Lathes/materials.yml @@ -0,0 +1,16 @@ +# Raw mats +- type: latheRecipe + id: Durathread + result: MaterialDurathread1 + completetime: 0.2 + materials: + Plastic: 100 + Cloth: 100 + +- type: latheRecipe + id: Plasteel + result: SheetPlasteel1 + completetime: 0.2 + materials: + Plasma: 100 + Steel: 100 diff --git a/Resources/Prototypes/_NF/Recipes/Lathes/misc.yml b/Resources/Prototypes/_NF/Recipes/Lathes/misc.yml index d77243c10fa..80c51a0e93b 100644 --- a/Resources/Prototypes/_NF/Recipes/Lathes/misc.yml +++ b/Resources/Prototypes/_NF/Recipes/Lathes/misc.yml @@ -88,3 +88,12 @@ category: Tools materials: Steel: 500 + +- type: latheRecipe + id: OreBag + result: OreBag + completetime: 1 + category: Tools + materials: + Steel: 500 + Cloth: 500 diff --git a/Resources/Prototypes/_NF/Shipyard/Security/interceptor.yml b/Resources/Prototypes/_NF/Shipyard/Security/interceptor.yml index 3471d8609dd..851af76029c 100644 --- a/Resources/Prototypes/_NF/Shipyard/Security/interceptor.yml +++ b/Resources/Prototypes/_NF/Shipyard/Security/interceptor.yml @@ -1,26 +1,26 @@ -# - type: vessel -# id: Interceptor -# name: NSF Interceptor -# description: A small security vessel specializing in crime scene forensics. -# price: 21350 -# category: Small -# group: Security -# shuttlePath: /Maps/_NF/Shuttles/Security/interceptor.yml +- type: vessel + id: Interceptor + name: NSF Interceptor + description: A small security vessel specializing in crime scene forensics. + price: 21350 + category: Small + group: Security + shuttlePath: /Maps/_NF/Shuttles/Security/interceptor.yml -#- type: gameMap -# id: Interceptor -# mapName: 'NSF Interceptor' -# mapPath: /Maps/_NF/Shuttles/Security/interceptor.yml -# minPlayers: 0 -# stations: -# Interceptor: -# stationProto: StandardFrontierSecurityVessel -# components: -# - type: StationNameSetup -# mapNameTemplate: 'Interceptor {1}' -# nameGenerator: -# !type:NanotrasenNameGenerator -# prefixCreator: '14' -# - type: StationJobs -# overflowJobs: [] -# availableJobs: {} \ No newline at end of file +- type: gameMap + id: Interceptor + mapName: 'NSF Interceptor' + mapPath: /Maps/_NF/Shuttles/Security/interceptor.yml + minPlayers: 0 + stations: + Interceptor: + stationProto: StandardFrontierSecurityVessel + components: + - type: StationNameSetup + mapNameTemplate: 'Interceptor {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: [] + availableJobs: {} diff --git a/Resources/Prototypes/_NF/Shipyard/Security/wasp.yml b/Resources/Prototypes/_NF/Shipyard/Security/wasp.yml index 6f5a9de34f6..33c723de7dc 100644 --- a/Resources/Prototypes/_NF/Shipyard/Security/wasp.yml +++ b/Resources/Prototypes/_NF/Shipyard/Security/wasp.yml @@ -2,7 +2,7 @@ id: Wasp name: NSF Wasp description: A large expedition oriented ship for holding prisoners and making them work planetside. - price: 145700 + price: 135000 category: Large group: Security shuttlePath: /Maps/_NF/Shuttles/Security/wasp.yml diff --git a/Resources/Prototypes/_NF/Shipyard/chisel.yml b/Resources/Prototypes/_NF/Shipyard/chisel.yml index d4cc906f6de..00d93eee310 100644 --- a/Resources/Prototypes/_NF/Shipyard/chisel.yml +++ b/Resources/Prototypes/_NF/Shipyard/chisel.yml @@ -12,7 +12,7 @@ id: Chisel name: ICR Chisel description: Standard small size multipurpose vessel , originally meant to aid in ship scrapping. - price: 31340 + price: 34615 # on init 30100$, 15% markup 4515$ category: Small group: Civilian shuttlePath: /Maps/_NF/Shuttles/chisel.yml diff --git a/Resources/Prototypes/_NF/SoundCollections/goblin_soundcollection.yml b/Resources/Prototypes/_NF/SoundCollections/goblin_soundcollection.yml new file mode 100644 index 00000000000..dad733aaf26 --- /dev/null +++ b/Resources/Prototypes/_NF/SoundCollections/goblin_soundcollection.yml @@ -0,0 +1,32 @@ +- type: soundCollection + id: GoblinScreams + files: + - /Audio/_NF/Voice/Goblin/goblin-scream-01.ogg + - /Audio/_NF/Voice/Goblin/goblin-scream-02.ogg + - /Audio/_NF/Voice/Goblin/goblin-scream-03.ogg + - /Audio/_NF/Voice/Goblin/goblin-scream-04.ogg + +- type: soundCollection + id: GoblinCackle + files: + - /Audio/_NF/Voice/Goblin/goblin-cackle-01.ogg + - /Audio/_NF/Voice/Goblin/goblin-cackle-02.ogg + - /Audio/_NF/Voice/Goblin/goblin-cackle-03.ogg + - /Audio/_NF/Voice/Goblin/goblin-cackle-04.ogg + - /Audio/_NF/Voice/Goblin/goblin-cackle-05.ogg + +- type: soundCollection + id: GoblinCry + files: + - /Audio/_NF/Voice/Goblin/goblin-cry-01.ogg + - /Audio/_NF/Voice/Goblin/goblin-cry-02.ogg + +- type: soundCollection + id: GoblinChatter + files: + - /Audio/_NF/Voice/Goblin/goblin-chatter-01.ogg + +- type: soundCollection + id: GoblinHiss + files: + - /Audio/_NF/Voice/Goblin/goblin-hiss-01.ogg diff --git a/Resources/Prototypes/_NF/Species/goblin_species.yml b/Resources/Prototypes/_NF/Species/goblin_species.yml new file mode 100644 index 00000000000..5bff2106d99 --- /dev/null +++ b/Resources/Prototypes/_NF/Species/goblin_species.yml @@ -0,0 +1,150 @@ +# defaultSkinTone: "#486a1b" +- type: species + id: Goblin + name: species-name-goblin + roundStart: true + prototype: MobGoblin + sprites: MobGoblinSprites + markingLimits: MobGoblinMarkingLimits + dollPrototype: MobGoblinDummy + skinColoration: HumanToned #Possible values: TintedHues, Hues, HumanToned + maleFirstNames: names_goblin_male + femaleFirstNames: names_goblin_female + lastNames: names_goblin_last + +- type: speciesBaseSprites + id: MobGoblinSprites + sprites: + Hair: MobHumanoidAnyMarking + Snout: MobHumanoidAnyMarking + FacialHair: MobHumanoidAnyMarking + Head: MobGoblinHead + HeadTop: MobHumanoidAnyMarking + HeadSide: MobHumanoidAnyMarking + Chest: MobGoblinTorso + Eyes: MobGoblinEyes + LArm: MobGoblinLArm + RArm: MobGoblinRArm + LHand: MobGoblinLHand + RHand: MobGoblinRHand + LLeg: MobGoblinLLeg + RLeg: MobGoblinRLeg + LFoot: MobGoblinLFoot + RFoot: MobGoblinRFoot + +- type: markingPoints + id: MobGoblinMarkingLimits + points: + Hair: + points: 1 + required: false + FacialHair: + points: 1 + required: false + HeadTop: + points: 1 + required: true + defaultMarkings: [ GoblinEarsBasic ] + Snout: + points: 2 + required: false +# defaultMarkings: [ GoblinNoseBasic ] + Chest: + points: 1 + required: false + Legs: + points: 2 + required: false + Arms: + points: 2 + required: false + +- type: humanoidBaseSprite + id: MobGoblinEyes + baseSprite: + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: eyes + +- type: humanoidBaseSprite + id: MobGoblinHead + baseSprite: + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobGoblinHeadMale + baseSprite: + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobGoblinHeadFemale + baseSprite: + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: head_f + +- type: humanoidBaseSprite + id: MobGoblinTorso + baseSprite: + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobGoblinTorsoMale + baseSprite: + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobGoblinTorsoFemale + baseSprite: + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: torso_f + +- type: humanoidBaseSprite + id: MobGoblinLLeg + baseSprite: + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: l_leg + +- type: humanoidBaseSprite + id: MobGoblinLArm + baseSprite: + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: l_arm + +- type: humanoidBaseSprite + id: MobGoblinLHand + baseSprite: + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: l_hand + +- type: humanoidBaseSprite + id: MobGoblinLFoot + baseSprite: + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: l_foot + +- type: humanoidBaseSprite + id: MobGoblinRLeg + baseSprite: + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: r_leg + +- type: humanoidBaseSprite + id: MobGoblinRArm + baseSprite: + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: r_arm + +- type: humanoidBaseSprite + id: MobGoblinRHand + baseSprite: + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: r_hand + +- type: humanoidBaseSprite + id: MobGoblinRFoot + baseSprite: + sprite: _NF/Mobs/Species/Goblin/parts.rsi + state: r_foot diff --git a/Resources/Prototypes/_NF/Traits/neutral.yml b/Resources/Prototypes/_NF/Traits/neutral.yml new file mode 100644 index 00000000000..14daae5572a --- /dev/null +++ b/Resources/Prototypes/_NF/Traits/neutral.yml @@ -0,0 +1,6 @@ +- type: trait + id: GoblinAccent + name: trait-goblin-accent-name + description: trait-goblin-accent-desc + components: + - type: GoblinAccent \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Voice/speech_emote_sounds.yml b/Resources/Prototypes/_NF/Voice/speech_emote_sounds.yml index 9ad5491ba07..94c593825ba 100644 --- a/Resources/Prototypes/_NF/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/_NF/Voice/speech_emote_sounds.yml @@ -1,82 +1,67 @@ +# Goblins - type: emoteSounds - id: MaleFelinid + id: MaleGoblin params: variation: 0.125 sounds: Scream: - collection: FelinidScreams + collection: GoblinScreams Laugh: - collection: MaleLaugh + collection: GoblinCackle Sneeze: collection: MaleSneezes Cough: collection: MaleCoughs + CatHisses: + collection: CatHisses + MonkeyScreeches: + collection: MonkeyScreeches + Yawn: + collection: MaleYawn + Snore: + collection: Snores + Honk: + collection: BikeHorn + Sigh: + collection: MaleSigh Crying: - collection: MaleCry + collection: GoblinCry Whistle: collection: Whistles - Hiss: - collection: FelinidHisses - Meow: - collection: FelinidMeows - Mew: - collection: FelinidMews - Growl: - collection: FelinidGrowls - Purr: - collection: FelinidPurrs - Sigh: - collection: MaleSigh + Weh: + collection: Weh - type: emoteSounds - id: FemaleFelinid + id: FemaleGoblin params: variation: 0.125 sounds: Scream: - collection: FelinidScreams + collection: GoblinScreams Laugh: - collection: FemaleLaugh + collection: GoblinCackle Sneeze: collection: FemaleSneezes Cough: collection: FemaleCoughs + CatHisses: + collection: CatHisses + MonkeyScreeches: + collection: MonkeyScreeches + Yawn: + collection: FemaleYawn + Snore: + collection: Snores + Honk: + collection: CluwneHorn + Sigh: + collection: FemaleSigh Crying: - collection: FemaleCry + collection: GoblinCry Whistle: collection: Whistles - Hiss: - collection: FelinidHisses - Meow: - collection: FelinidMeows - Mew: - collection: FelinidMews - Growl: - collection: FelinidGrowls - Purr: - collection: FelinidPurrs - Sigh: - collection: FemaleSigh - -- type: emoteSounds - id: MaleMoth - params: - variation: 0.125 - sounds: - Scream: - path: /Audio/Voice/Moth/scream_moth.ogg - Laugh: - path: /Audio/Voice/Moth/laugh_moth.ogg - -- type: emoteSounds - id: FemaleMoth - params: - variation: 0.125 - sounds: - Scream: - path: /Audio/Voice/Moth/scream_moth.ogg - Laugh: - path: /Audio/Voice/Moth/laugh_moth.ogg + Weh: + collection: Weh - type: emoteSounds id: Cat diff --git a/Resources/Prototypes/_NF/Voice/speech_verbs.yml b/Resources/Prototypes/_NF/Voice/speech_verbs.yml new file mode 100644 index 00000000000..1ce605f5a6f --- /dev/null +++ b/Resources/Prototypes/_NF/Voice/speech_verbs.yml @@ -0,0 +1,9 @@ +- type: speechVerb + id: Goblin + name: chat-speech-verb-name-goblin + speechVerbStrings: + - chat-speech-verb-goblin-1 + - chat-speech-verb-goblin-2 + - chat-speech-verb-goblin-3 + - chat-speech-verb-goblin-4 + - chat-speech-verb-goblin-5 \ No newline at end of file diff --git a/Resources/Prototypes/_NF/ai_factions.yml b/Resources/Prototypes/_NF/ai_factions.yml index f81972dd77c..4a172dd6070 100644 --- a/Resources/Prototypes/_NF/ai_factions.yml +++ b/Resources/Prototypes/_NF/ai_factions.yml @@ -11,6 +11,7 @@ - Cat - Chicken - Monkey + - Goblin - type: npcFaction id: Dwarf @@ -30,6 +31,9 @@ - type: npcFaction id: Monkey +- type: npcFaction + id: Goblin + - type: npcFaction id: WizFedFaction hostile: @@ -42,6 +46,7 @@ - Revolutionary - Xeno - BloodCultNF + - Goblin - type: npcFaction id: BloodCultNF @@ -55,3 +60,4 @@ - Revolutionary - Xeno - WizFedFaction + - Goblin diff --git a/Resources/Prototypes/_NF/tags.yml b/Resources/Prototypes/_NF/tags.yml index 20ad3a2e53c..119bd41fc48 100644 --- a/Resources/Prototypes/_NF/tags.yml +++ b/Resources/Prototypes/_NF/tags.yml @@ -62,4 +62,7 @@ id: DroneUsable - type: Tag - id: LightReplacer \ No newline at end of file + id: LightReplacer + +- type: Tag + id: HoverbikeKeys \ No newline at end of file diff --git a/Resources/Prototypes/radio_channels.yml b/Resources/Prototypes/radio_channels.yml index 7788ca82208..585574a888f 100644 --- a/Resources/Prototypes/radio_channels.yml +++ b/Resources/Prototypes/radio_channels.yml @@ -68,7 +68,7 @@ keycode: 't' frequency: 1213 color: "#8f4a4b" - longRange: true +# longRange: true # Frontier - Move to Syndicate Base - type: radioChannel id: Handheld @@ -94,4 +94,4 @@ frequency: 1984 color: "#f6ce64" # long range since otherwise it'd defeat the point of a handheld radio independent of telecomms - longRange: true + #longRange: true # Frontier - Move to server on cove diff --git a/Resources/Textures/Objects/Vehicles/atv.rsi/meta.json b/Resources/Textures/Objects/Vehicles/atv.rsi/meta.json index 5bfcefc790d..0d831823ccd 100644 --- a/Resources/Textures/Objects/Vehicles/atv.rsi/meta.json +++ b/Resources/Textures/Objects/Vehicles/atv.rsi/meta.json @@ -41,4 +41,4 @@ "name": "keys" } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/_NF/Mobs/Customization/goblin_ears.rsi/goblin_ears_default.png b/Resources/Textures/_NF/Mobs/Customization/goblin_ears.rsi/goblin_ears_default.png new file mode 100644 index 00000000000..6853f2191b7 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Customization/goblin_ears.rsi/goblin_ears_default.png differ diff --git a/Resources/Textures/_NF/Mobs/Customization/goblin_ears.rsi/goblin_ears_default_alt.png b/Resources/Textures/_NF/Mobs/Customization/goblin_ears.rsi/goblin_ears_default_alt.png new file mode 100644 index 00000000000..a78ad8039df Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Customization/goblin_ears.rsi/goblin_ears_default_alt.png differ diff --git a/Resources/Textures/_NF/Mobs/Customization/goblin_ears.rsi/goblin_ears_long_01.png b/Resources/Textures/_NF/Mobs/Customization/goblin_ears.rsi/goblin_ears_long_01.png new file mode 100644 index 00000000000..f72a92c2a02 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Customization/goblin_ears.rsi/goblin_ears_long_01.png differ diff --git a/Resources/Textures/_NF/Mobs/Customization/goblin_ears.rsi/goblin_ears_long_02.png b/Resources/Textures/_NF/Mobs/Customization/goblin_ears.rsi/goblin_ears_long_02.png new file mode 100644 index 00000000000..d5a93bc82d4 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Customization/goblin_ears.rsi/goblin_ears_long_02.png differ diff --git a/Resources/Textures/_NF/Mobs/Customization/goblin_ears.rsi/meta.json b/Resources/Textures/_NF/Mobs/Customization/goblin_ears.rsi/meta.json new file mode 100644 index 00000000000..5ed9ae60691 --- /dev/null +++ b/Resources/Textures/_NF/Mobs/Customization/goblin_ears.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "copyright": "Sprited by erhardsteinhauer (discord)", + "license": "CC-BY-SA-4.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "goblin_ears_default", + "directions": 4 + }, + { + "name": "goblin_ears_default_alt", + "directions": 4 + }, + { + "name": "goblin_ears_long_01", + "directions": 4 + }, + { + "name": "goblin_ears_long_02", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Mobs/Customization/goblin_noses.rsi/goblin_nose_crooked.png b/Resources/Textures/_NF/Mobs/Customization/goblin_noses.rsi/goblin_nose_crooked.png new file mode 100644 index 00000000000..57391860376 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Customization/goblin_noses.rsi/goblin_nose_crooked.png differ diff --git a/Resources/Textures/_NF/Mobs/Customization/goblin_noses.rsi/goblin_nose_default.png b/Resources/Textures/_NF/Mobs/Customization/goblin_noses.rsi/goblin_nose_default.png new file mode 100644 index 00000000000..fdef1887b21 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Customization/goblin_noses.rsi/goblin_nose_default.png differ diff --git a/Resources/Textures/_NF/Mobs/Customization/goblin_noses.rsi/goblin_nose_long.png b/Resources/Textures/_NF/Mobs/Customization/goblin_noses.rsi/goblin_nose_long.png new file mode 100644 index 00000000000..0403c86463c Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Customization/goblin_noses.rsi/goblin_nose_long.png differ diff --git a/Resources/Textures/_NF/Mobs/Customization/goblin_noses.rsi/meta.json b/Resources/Textures/_NF/Mobs/Customization/goblin_noses.rsi/meta.json new file mode 100644 index 00000000000..4c1b829d8a2 --- /dev/null +++ b/Resources/Textures/_NF/Mobs/Customization/goblin_noses.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "copyright": "Sprited by erhardsteinhauer (discord)", + "license": "CC-BY-SA-4.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "goblin_nose_default", + "directions": 4 + }, + { + "name": "goblin_nose_crooked", + "directions": 4 + }, + { + "name": "goblin_nose_long", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Mobs/Customization/goblin_tusks.rsi/goblin_tusks_big.png b/Resources/Textures/_NF/Mobs/Customization/goblin_tusks.rsi/goblin_tusks_big.png new file mode 100644 index 00000000000..fb706ac649e Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Customization/goblin_tusks.rsi/goblin_tusks_big.png differ diff --git a/Resources/Textures/_NF/Mobs/Customization/goblin_tusks.rsi/goblin_tusks_none.png b/Resources/Textures/_NF/Mobs/Customization/goblin_tusks.rsi/goblin_tusks_none.png new file mode 100644 index 00000000000..c8b755b2283 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Customization/goblin_tusks.rsi/goblin_tusks_none.png differ diff --git a/Resources/Textures/_NF/Mobs/Customization/goblin_tusks.rsi/goblin_tusks_small.png b/Resources/Textures/_NF/Mobs/Customization/goblin_tusks.rsi/goblin_tusks_small.png new file mode 100644 index 00000000000..2b0a11239ad Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Customization/goblin_tusks.rsi/goblin_tusks_small.png differ diff --git a/Resources/Textures/_NF/Mobs/Customization/goblin_tusks.rsi/meta.json b/Resources/Textures/_NF/Mobs/Customization/goblin_tusks.rsi/meta.json new file mode 100644 index 00000000000..0983b297549 --- /dev/null +++ b/Resources/Textures/_NF/Mobs/Customization/goblin_tusks.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "copyright": "Sprited by erhardsteinhauer (discord)", + "license": "CC-BY-SA-4.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "goblin_tusks_small", + "directions": 4 + }, + { + "name": "goblin_tusks_big", + "directions": 4 + }, + { + "name": "goblin_tusks_none", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/appendix-inflamed.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/appendix-inflamed.png new file mode 100644 index 00000000000..b3cef608dbd Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/appendix-inflamed.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/appendix.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/appendix.png new file mode 100644 index 00000000000..6fd813e1874 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/appendix.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/brain-inhand-left.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/brain-inhand-left.png new file mode 100644 index 00000000000..d6285608ba1 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/brain-inhand-left.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/brain-inhand-right.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/brain-inhand-right.png new file mode 100644 index 00000000000..ad048dcbc72 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/brain-inhand-right.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/brain.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/brain.png new file mode 100644 index 00000000000..5c16590df34 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/brain.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/ears.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/ears.png new file mode 100644 index 00000000000..20f868ee96b Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/ears.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/eyeball-l.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/eyeball-l.png new file mode 100644 index 00000000000..31d52127744 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/eyeball-l.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/eyeball-r.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/eyeball-r.png new file mode 100644 index 00000000000..2fe98d341b3 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/eyeball-r.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/heart-off.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/heart-off.png new file mode 100644 index 00000000000..35aedf25554 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/heart-off.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/heart-on.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/heart-on.png new file mode 100644 index 00000000000..50573941160 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/heart-on.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/kidney-l.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/kidney-l.png new file mode 100644 index 00000000000..dd7041783e8 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/kidney-l.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/kidney-r.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/kidney-r.png new file mode 100644 index 00000000000..c940ca53215 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/kidney-r.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/liver.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/liver.png new file mode 100644 index 00000000000..eb0f89afb46 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/liver.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/lung-l.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/lung-l.png new file mode 100644 index 00000000000..6579fea5331 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/lung-l.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/lung-r.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/lung-r.png new file mode 100644 index 00000000000..c6205816c22 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/lung-r.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/meta.json b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/meta.json new file mode 100644 index 00000000000..c6774a6ff37 --- /dev/null +++ b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/meta.json @@ -0,0 +1,80 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation and cev-eris at https://github.com/tgstation/tgstation/commit/c4b7f3c41b6742aca260fe60cc358a778ba9b8c8 and https://github.com/discordia-space/CEV-Eris/commit/476e374cea95ff5e8b1603c48342bf700e2cd7af | modified by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "appendix" + }, + { + "name": "appendix-inflamed" + }, + { + "name": "brain" + }, + { + "name": "brain-inhand-left", + "directions": 4 + }, + { + "name": "brain-inhand-right", + "directions": 4 + }, + { + "name": "ears" + }, + { + "name": "eyeball-l" + }, + { + "name": "eyeball-r" + }, + { + "name": "heart-off" + }, + { + "name": "heart-on", + "delays": [ + [ + 0.6, + 0.1, + 0.1 + ] + ] + }, + { + "name": "kidney-l" + }, + { + "name": "kidney-r" + }, + { + "name": "liver" + }, + { + "name": "lung-l" + }, + { + "name": "lung-r" + }, + { + "name": "stomach" + }, + { + "name": "tongue" + }, + { + "name": "muscle" + }, + { + "name": "nerve" + }, + { + "name": "vessel" + } + ] +} diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/muscle.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/muscle.png new file mode 100644 index 00000000000..8164e919743 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/muscle.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/nerve.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/nerve.png new file mode 100644 index 00000000000..9dbc6643e9a Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/nerve.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/stomach.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/stomach.png new file mode 100644 index 00000000000..3b9d9d57231 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/stomach.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/tongue.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/tongue.png new file mode 100644 index 00000000000..0bc11733926 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/tongue.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/vessel.png b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/vessel.png new file mode 100644 index 00000000000..d69df5f6902 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/organs.rsi/vessel.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/eyes.png b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/eyes.png new file mode 100644 index 00000000000..6af803f9aae Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/eyes.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/full.png b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/full.png new file mode 100644 index 00000000000..cc61ee90dd4 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/full.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/head_f.png b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/head_f.png new file mode 100644 index 00000000000..f4d5cbf6e04 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/head_f.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/head_m.png b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/head_m.png new file mode 100644 index 00000000000..990343a7fd1 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/head_m.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/l_arm.png b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/l_arm.png new file mode 100644 index 00000000000..9e3dce618f4 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/l_foot.png b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/l_foot.png new file mode 100644 index 00000000000..53240792ff4 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/l_hand.png b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/l_hand.png new file mode 100644 index 00000000000..7481ebdb3bd Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/l_leg.png b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/l_leg.png new file mode 100644 index 00000000000..bbfa717c6b6 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/meta.json b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/meta.json new file mode 100644 index 00000000000..67edc25e62f --- /dev/null +++ b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/meta.json @@ -0,0 +1,66 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/tgstation/tgstation/blob/8024397cc81c5f47f74cf4279e35728487d0a1a7/icons/mob/human_parts_greyscale.dmi and modified by DrSmugleaf | modified by erhardsteinhauer (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "eyes", + "directions": 4 + }, + { + "name": "head_f", + "directions": 4 + }, + { + "name": "head_m", + "directions": 4 + }, + { + "name": "l_arm", + "directions": 4 + }, + { + "name": "l_foot", + "directions": 4 + }, + { + "name": "l_hand", + "directions": 4 + }, + { + "name": "l_leg", + "directions": 4 + }, + { + "name": "r_arm", + "directions": 4 + }, + { + "name": "r_foot", + "directions": 4 + }, + { + "name": "r_hand", + "directions": 4 + }, + { + "name": "r_leg", + "directions": 4 + }, + { + "name": "torso_f", + "directions": 4 + }, + { + "name": "torso_m", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/r_arm.png b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/r_arm.png new file mode 100644 index 00000000000..52a50ae774f Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/r_foot.png b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/r_foot.png new file mode 100644 index 00000000000..8ce0281786f Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/r_hand.png b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/r_hand.png new file mode 100644 index 00000000000..a3051625ce1 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/r_leg.png b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/r_leg.png new file mode 100644 index 00000000000..ae9a48d7232 Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/torso_f.png b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/torso_f.png new file mode 100644 index 00000000000..3c733d38eae Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/torso_m.png b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/torso_m.png new file mode 100644 index 00000000000..4d2302562ee Binary files /dev/null and b/Resources/Textures/_NF/Mobs/Species/Goblin/parts.rsi/torso_m.png differ diff --git a/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/bag.png b/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/bag.png new file mode 100644 index 00000000000..6b9013abb93 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/bag.png differ diff --git a/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/engine.png b/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/engine.png new file mode 100644 index 00000000000..e9b012e9d13 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/engine.png differ diff --git a/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/hull.png b/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/hull.png new file mode 100644 index 00000000000..5a527a340f8 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/hull.png differ diff --git a/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/keys.png b/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/keys.png new file mode 100644 index 00000000000..d1b314b8a2c Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/keys.png differ diff --git a/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/lights.png b/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/lights.png new file mode 100644 index 00000000000..d6ee0aff375 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/lights.png differ diff --git a/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/meta.json b/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/meta.json new file mode 100644 index 00000000000..b2660790a22 --- /dev/null +++ b/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/meta.json @@ -0,0 +1,64 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a, resprited by decortes (discord) | original sprite was split into hull and engine, added bag sprite, changes made by erhardsteinhauer", + "states": [ + { + "name": "vehicle", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "bag", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "hull", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "engine", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "lights", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "keys" + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/vehicle.png b/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/vehicle.png new file mode 100644 index 00000000000..88a0ffb48f4 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/atv.rsi/vehicle.png differ diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/bag.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/bag.png new file mode 100644 index 00000000000..ad49098910f Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/bag.png differ diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/engine.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/engine.png new file mode 100644 index 00000000000..ede223f454e Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/engine.png differ diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/hull.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/hull.png new file mode 100644 index 00000000000..96cdb9b0eb8 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/hull.png differ diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/keys.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/keys.png new file mode 100644 index 00000000000..514ce95d970 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/keys.png differ diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/lights.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/lights.png new file mode 100644 index 00000000000..5cae1728907 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/lights.png differ diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/mailgun.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/mailgun.png new file mode 100644 index 00000000000..1b499feb441 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/mailgun.png differ diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/mailtrim.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/mailtrim.png new file mode 100644 index 00000000000..1738f52fa5b Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/mailtrim.png differ diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/meta.json b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/meta.json new file mode 100644 index 00000000000..93c306e5887 --- /dev/null +++ b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/meta.json @@ -0,0 +1,98 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Sprited for New Frontier by erhardsteinhauer", + "states": [ + { + "name": "vehicle", + "directions": 4 + }, + { + "name": "bag", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "hull", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "engine", + "directions": 4, + "delays": [ + [ 0.1, 0.1, 0.2, 0.1 ], + [ 0.1, 0.1, 0.2, 0.1 ], + [ 0.1, 0.1, 0.2, 0.1 ], + [ 0.1, 0.1, 0.2, 0.1 ] + ] + }, + { + "name": "nfsdstar", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "nfsdbaton", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "mailtrim", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "mailgun", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "lights", + "directions": 4, + "delays": [ + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ], + [ 0.2, 0.2, 0.2, 0.2 ] + ] + }, + { + "name": "keys" + } + ] +} diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/nfsdbaton.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/nfsdbaton.png new file mode 100644 index 00000000000..1219614ecbd Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/nfsdbaton.png differ diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/nfsdstar.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/nfsdstar.png new file mode 100644 index 00000000000..5a4f6b53c5b Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/nfsdstar.png differ diff --git a/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/vehicle.png b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/vehicle.png new file mode 100644 index 00000000000..98f94d04164 Binary files /dev/null and b/Resources/Textures/_NF/Objects/Vehicles/hoverbike.rsi/vehicle.png differ diff --git a/Resources/Textures/_NF/Structures/Decoration/banner.rsi/banner_goblin.png b/Resources/Textures/_NF/Structures/Decoration/banner.rsi/banner_goblin.png new file mode 100644 index 00000000000..29807c1c30f Binary files /dev/null and b/Resources/Textures/_NF/Structures/Decoration/banner.rsi/banner_goblin.png differ diff --git a/Resources/Textures/_NF/Structures/Decoration/banner.rsi/meta.json b/Resources/Textures/_NF/Structures/Decoration/banner.rsi/meta.json index 7fc64c6765c..ee78029976c 100644 --- a/Resources/Textures/_NF/Structures/Decoration/banner.rsi/meta.json +++ b/Resources/Textures/_NF/Structures/Decoration/banner.rsi/meta.json @@ -1,13 +1,26 @@ { "version": 1, "license": "CC-BY-SA-4.0", - "copyright": "Created by Ghost Prince for Frontier Station.", + "copyright": "nfsd-banner and nfsd-flag Created by Ghost Prince for Frontier Station; banner_goblin sprited by erhardsteinhauer (discord/github) for Frontier Station, based on https://github.com/tgstation/tgstation/commit/fa9e44d937026d5a2ba72615afccf2f18a87c485", "size": { "x": 32, "y": 32 }, "states": [ { + "name": "banner_goblin", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { "name": "nfsd-banner" }, { diff --git a/Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/icon.png b/Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/icon.png similarity index 100% rename from Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/icon.png rename to Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/icon.png diff --git a/Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/meta.json b/Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/meta.json similarity index 100% rename from Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/meta.json rename to Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/meta.json diff --git a/Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/printing.png b/Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/printing.png similarity index 100% rename from Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/printing.png rename to Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/printing.png diff --git a/Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/unshaded.png b/Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/unshaded.png similarity index 100% rename from Resources/Textures/_NF/Structures/Machines/atm/illegal_wall_atm.rsi/unshaded.png rename to Resources/Textures/_NF/Structures/Machines/atm/wall_illegal_atm.rsi/unshaded.png diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/meta.json b/Resources/Textures/_NF/Structures/Storage/closet.rsi/meta.json index 0f165e76433..911c6b8e639 100644 --- a/Resources/Textures/_NF/Structures/Storage/closet.rsi/meta.json +++ b/Resources/Textures/_NF/Structures/Storage/closet.rsi/meta.json @@ -52,60 +52,60 @@ { "name": "mail_open" }, - { - "name": "nfsd" - }, - { - "name": "nfsd_door" - }, - { - "name": "nfsd_open" - }, - { - "name": "nfsd_brigmed" - }, - { - "name": "nfsd_brigmed_door" - }, - { - "name": "nfsd_brigmed_open" - }, - { - "name": "nfsd_copper" - }, - { - "name": "nfsd_copper_door" - }, - { - "name": "nfsd_copper_open" - }, - { - "name": "nfsd_silver" - }, - { - "name": "nfsd_silver_door" - }, - { - "name": "nfsd_silver_open" - }, - { - "name": "nfsd_gold" - }, - { - "name": "nfsd_gold_door" - }, - { - "name": "nfsd_gold_open" - }, - { - "name": "nfsd_sheriff" - }, - { - "name": "nfsd_sheriff_door" - }, - { - "name": "nfsd_sheriff_open" - }, + { + "name": "nfsd" + }, + { + "name": "nfsd_door" + }, + { + "name": "nfsd_open" + }, + { + "name": "nfsd_brigmed" + }, + { + "name": "nfsd_brigmed_door" + }, + { + "name": "nfsd_brigmed_open" + }, + { + "name": "nfsd_copper" + }, + { + "name": "nfsd_copper_door" + }, + { + "name": "nfsd_copper_open" + }, + { + "name": "nfsd_silver" + }, + { + "name": "nfsd_silver_door" + }, + { + "name": "nfsd_silver_open" + }, + { + "name": "nfsd_gold" + }, + { + "name": "nfsd_gold_door" + }, + { + "name": "nfsd_gold_open" + }, + { + "name": "nfsd_sheriff" + }, + { + "name": "nfsd_sheriff_door" + }, + { + "name": "nfsd_sheriff_open" + }, { "name": "unlocked" }, @@ -117,6 +117,15 @@ }, { "name": "sparking" + }, + { + "name": "sr" + }, + { + "name": "sr_open" + }, + { + "name": "sr_door" } ] } diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/sr.png b/Resources/Textures/_NF/Structures/Storage/closet.rsi/sr.png new file mode 100644 index 00000000000..9f59ded5ec9 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/closet.rsi/sr.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/sr_door.png b/Resources/Textures/_NF/Structures/Storage/closet.rsi/sr_door.png new file mode 100644 index 00000000000..355ccbc68b0 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/closet.rsi/sr_door.png differ diff --git a/Resources/Textures/_NF/Structures/Storage/closet.rsi/sr_open.png b/Resources/Textures/_NF/Structures/Storage/closet.rsi/sr_open.png new file mode 100644 index 00000000000..987c0b6d712 Binary files /dev/null and b/Resources/Textures/_NF/Structures/Storage/closet.rsi/sr_open.png differ