diff --git a/.github/workflows/build-test-debug.yml b/.github/workflows/build-test-debug.yml index e93de2d8c6..103ba754d3 100644 --- a/.github/workflows/build-test-debug.yml +++ b/.github/workflows/build-test-debug.yml @@ -2,11 +2,11 @@ name: Build & Test Debug on: push: - branches: [ master, staging, stable ] + branches: [ master, staging, stable, april-fools-2025 ] merge_group: pull_request: types: [ opened, reopened, synchronize, ready_for_review ] - branches: [ master, staging, stable ] + branches: [ master, staging, stable, april-fools-2025 ] jobs: build: diff --git a/Content.Client/Clothing/ClientClothingSystem.cs b/Content.Client/Clothing/ClientClothingSystem.cs index 8654272139..07ae28d40b 100644 --- a/Content.Client/Clothing/ClientClothingSystem.cs +++ b/Content.Client/Clothing/ClientClothingSystem.cs @@ -168,7 +168,7 @@ public sealed class ClientClothingSystem : ClothingSystem var state = $"equipped-{correctedSlot}"; - if (!string.IsNullOrEmpty(clothing.EquippedPrefix)) + if (clothing.EquippedPrefix != null) state = $"{clothing.EquippedPrefix}-equipped-{correctedSlot}"; if (clothing.EquippedState != null) diff --git a/Content.Client/Examine/ExamineSystem.cs b/Content.Client/Examine/ExamineSystem.cs index 07694ac24a..931bf239d1 100644 --- a/Content.Client/Examine/ExamineSystem.cs +++ b/Content.Client/Examine/ExamineSystem.cs @@ -388,7 +388,6 @@ namespace Content.Client.Examine // If we get it wrong, server will correct us later anyway. // This will usually be correct (barring server-only components, which generally only adds, not replaces text) message = GetExamineText(entity, playerEnt); - UpdateTooltipInfo(playerEnt.Value, entity, message); if (!IsClientSide(entity)) { diff --git a/Content.Client/Flip/FlipAnimationSystem.cs b/Content.Client/Flip/FlipAnimationSystem.cs new file mode 100644 index 0000000000..0acb05aa60 --- /dev/null +++ b/Content.Client/Flip/FlipAnimationSystem.cs @@ -0,0 +1,76 @@ +using System.Numerics; +using Robust.Client.Animations; +using Robust.Client.GameObjects; +using Robust.Shared.Animations; +using Content.Shared.Flip; + +namespace Content.Client.Flip; + +public sealed class FlipAnimationSystem : SharedFlipAnimationSystem +{ + [Dependency] private readonly AnimationPlayerSystem _animation = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeNetworkEvent(OnStartFlip); + SubscribeNetworkEvent(OnStopFlip); + } + + private void OnStartFlip(StartFlipEvent msg, EntitySessionEventArgs args) + { + var uid = GetEntity(msg.Entity); + if (!TryComp(uid, out var comp)) + return; + + if (_animation.HasRunningAnimation(uid, comp.KeyName)) + return; + + PlayFlipAnimation((uid, comp)); + } + + private void OnStopFlip(StopFlipEvent msg, EntitySessionEventArgs args) + { + var uid = GetEntity(msg.Entity); + + if (!TryComp(GetEntity(msg.Entity), out var comp)) + return; + + if (!_animation.HasRunningAnimation(uid, comp.KeyName)) + return; + + _animation.Stop(uid, comp.KeyName); + + if (!TryComp(uid, out var sprite)) + return; + + sprite.Offset = new Vector2(); + sprite.Rotation = Angle.FromDegrees(0); + } + + private void PlayFlipAnimation(Entity ent) + { + var anim = new Animation() + { + Length = TimeSpan.FromSeconds(ent.Comp.AnimationLength), + AnimationTracks = + { + new AnimationTrackComponentProperty() + { + ComponentType = typeof(SpriteComponent), + Property = nameof(SpriteComponent.Rotation), + InterpolationMode = AnimationInterpolationMode.Linear, + KeyFrames = + { + new AnimationTrackProperty.KeyFrame(new Angle(0), 0), + new AnimationTrackProperty.KeyFrame(new Angle(Math.PI), ent.Comp.AnimationLength / 2), // needed for proper interpolation + new AnimationTrackProperty.KeyFrame(new Angle(2 * Math.PI), ent.Comp.AnimationLength / 2), + } + } + } + }; + + _animation.Play(ent.Owner, anim, ent.Comp.KeyName); + } +} diff --git a/Content.Client/Humanoid/HumanoidAppearanceSystem.cs b/Content.Client/Humanoid/HumanoidAppearanceSystem.cs index 0f51e69995..87e8450d08 100644 --- a/Content.Client/Humanoid/HumanoidAppearanceSystem.cs +++ b/Content.Client/Humanoid/HumanoidAppearanceSystem.cs @@ -2,7 +2,6 @@ using Content.Shared.CCVar; using Content.Shared.Humanoid; using Content.Shared.Humanoid.Markings; using Content.Shared.Humanoid.Prototypes; -using Content.Shared.Inventory; using Content.Shared.Preferences; using Robust.Client.GameObjects; using Robust.Shared.Configuration; @@ -49,7 +48,7 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem } private static bool IsHidden(HumanoidAppearanceComponent humanoid, HumanoidVisualLayers layer) - => humanoid.HiddenLayers.ContainsKey(layer) || humanoid.PermanentlyHidden.Contains(layer); + => humanoid.HiddenLayers.Contains(layer) || humanoid.PermanentlyHidden.Contains(layer); private void UpdateLayers(HumanoidAppearanceComponent component, SpriteComponent sprite) { @@ -204,7 +203,7 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem humanoid.MarkingSet = markings; humanoid.PermanentlyHidden = new HashSet(); - humanoid.HiddenLayers = new Dictionary(); + humanoid.HiddenLayers = new HashSet(); humanoid.CustomBaseLayers = customBaseLayers; humanoid.Sex = profile.Sex; humanoid.Gender = profile.Gender; @@ -393,21 +392,23 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem } } - public override void SetLayerVisibility( - Entity ent, + protected override void SetLayerVisibility( + EntityUid uid, + HumanoidAppearanceComponent humanoid, HumanoidVisualLayers layer, bool visible, - SlotFlags? slot, + bool permanent, ref bool dirty) { - base.SetLayerVisibility(ent, layer, visible, slot, ref dirty); + base.SetLayerVisibility(uid, humanoid, layer, visible, permanent, ref dirty); - var sprite = Comp(ent); + var sprite = Comp(uid); if (!sprite.LayerMapTryGet(layer, out var index)) { if (!visible) return; - index = sprite.LayerMapReserveBlank(layer); + else + index = sprite.LayerMapReserveBlank(layer); } var spriteLayer = sprite[index]; @@ -417,14 +418,13 @@ public sealed class HumanoidAppearanceSystem : SharedHumanoidAppearanceSystem spriteLayer.Visible = visible; // I fucking hate this. I'll get around to refactoring sprite layers eventually I swear - // Just a week away... - foreach (var markingList in ent.Comp.MarkingSet.Markings.Values) + foreach (var markingList in humanoid.MarkingSet.Markings.Values) { foreach (var marking in markingList) { if (_markingManager.TryGetMarking(marking, out var markingPrototype) && markingPrototype.BodyPart == layer) - ApplyMarking(markingPrototype, marking.MarkingColors, marking.Visible, ent, sprite); + ApplyMarking(markingPrototype, marking.MarkingColors, marking.Visible, humanoid, sprite); } } } diff --git a/Content.Client/Silicons/StationAi/StationAiVisualizerSystem.cs b/Content.Client/Silicons/StationAi/StationAiVisualizerSystem.cs new file mode 100644 index 0000000000..475e31d91f --- /dev/null +++ b/Content.Client/Silicons/StationAi/StationAiVisualizerSystem.cs @@ -0,0 +1,173 @@ +using Content.Shared.Silicons.StationAi; +using Robust.Client.Animations; +using Robust.Client.GameObjects; +using Robust.Client.Graphics; + +namespace Content.Client.Silicons.StationAi; + +public sealed partial class StationAiVisualizerSystem : VisualizerSystem +{ + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(OnAnimationCompleted); + } + + private static readonly Animation CoreUpAnimation = new() + { + Length = TimeSpan.FromSeconds(0.8f), + AnimationTracks = + { + new AnimationTrackSpriteFlick + { + LayerKey = StationAiVisualLayers.CoreStanding, + KeyFrames = + { + new AnimationTrackSpriteFlick.KeyFrame(new RSI.StateId("up"), 0f) + } + }, + new AnimationTrackSpriteFlick + { + LayerKey = StationAiVisualLayers.ScreenStanding, + KeyFrames = + { + new AnimationTrackSpriteFlick.KeyFrame(new RSI.StateId("ai_up"), 0f) + } + } + } + }; + + private static readonly Animation CoreDownAnimation = new() + { + Length = TimeSpan.FromSeconds(0.8f), + AnimationTracks = + { + new AnimationTrackSpriteFlick + { + LayerKey = StationAiVisualLayers.CoreStanding, + KeyFrames = + { + new AnimationTrackSpriteFlick.KeyFrame(new RSI.StateId("down"), 0f) + } + }, + new AnimationTrackSpriteFlick + { + LayerKey = StationAiVisualLayers.ScreenStanding, + KeyFrames = + { + new AnimationTrackSpriteFlick.KeyFrame(new RSI.StateId("ai_down"), 0f) + } + } + } + }; + + protected override void OnAppearanceChange(EntityUid uid, StationAiCoreComponent component, ref AppearanceChangeEvent args) + { + if (args.Sprite == null) + return; + if (!TryComp(uid, out var animPlayer)) + return; + + if (!AppearanceSystem.TryGetData(uid, StationAiVisualState.Key, out var state, args.Component)) + state = StationAiState.Empty; + + UpdateVisuals(uid, state, component, args.Sprite, animPlayer); + } + + private void OnAnimationCompleted(EntityUid uid, StationAiCoreComponent comp, AnimationCompletedEvent args) + { + if (args.Key != StationAiCoreComponent.AnimationKey) + return; + if (!TryComp(uid, out var sprite)) + return; + if (!TryComp(uid, out var animPlayer)) + return; + + if (!AppearanceSystem.TryGetData(uid, StationAiVisualState.Key, out var state)) + state = comp.CurrentState; + + // Convert to finished state + StationAiState targetState; + switch (state) + { + case StationAiState.Up: + targetState = StationAiState.Standing; + break; + case StationAiState.Down: + targetState = StationAiState.Occupied; + break; + default: + targetState = state; + break; + } + + UpdateVisuals(uid, targetState, comp, sprite, animPlayer); + } + + private void UpdateVisuals(EntityUid uid, StationAiState state, StationAiCoreComponent comp, SpriteComponent sprite, AnimationPlayerComponent? animPlayer = null) + { + if (state == comp.CurrentState) + return; + if (!Resolve(uid, ref animPlayer)) + return; + if (AnimationSystem.HasRunningAnimation(uid, animPlayer, StationAiCoreComponent.AnimationKey)) + return; + + var targetState = state; + if (comp.CurrentState == StationAiState.Occupied && state == StationAiState.Standing) + targetState = StationAiState.Up; // play standing up animation first + else if (comp.CurrentState == StationAiState.Standing && state == StationAiState.Occupied) + targetState = StationAiState.Down; // play sitting down animation first + + comp.CurrentState = targetState; + + switch (targetState) + { + case StationAiState.Empty: + sprite.LayerSetVisible(StationAiVisualLayers.Core, true); + sprite.LayerSetVisible(StationAiVisualLayers.Screen, true); + sprite.LayerSetVisible(StationAiVisualLayers.CoreStanding, false); + sprite.LayerSetVisible(StationAiVisualLayers.ScreenStanding, false); + sprite.LayerSetState(StationAiVisualLayers.Screen, new RSI.StateId("ai_empty")); + break; + case StationAiState.Occupied: + sprite.LayerSetVisible(StationAiVisualLayers.Core, true); + sprite.LayerSetVisible(StationAiVisualLayers.Screen, true); + sprite.LayerSetVisible(StationAiVisualLayers.CoreStanding, false); + sprite.LayerSetVisible(StationAiVisualLayers.ScreenStanding, false); + sprite.LayerSetState(StationAiVisualLayers.Screen, new RSI.StateId("ai")); + break; + case StationAiState.Dead: + sprite.LayerSetVisible(StationAiVisualLayers.Core, true); + sprite.LayerSetVisible(StationAiVisualLayers.Screen, true); + sprite.LayerSetVisible(StationAiVisualLayers.CoreStanding, false); + sprite.LayerSetVisible(StationAiVisualLayers.ScreenStanding, false); + sprite.LayerSetState(StationAiVisualLayers.Screen, new RSI.StateId("ai_dead")); + break; + case StationAiState.Up: + sprite.LayerSetVisible(StationAiVisualLayers.Core, false); + sprite.LayerSetVisible(StationAiVisualLayers.Screen, false); + sprite.LayerSetVisible(StationAiVisualLayers.CoreStanding, true); + sprite.LayerSetVisible(StationAiVisualLayers.ScreenStanding, true); + AnimationSystem.Play((uid, animPlayer), CoreUpAnimation, StationAiCoreComponent.AnimationKey); + break; + case StationAiState.Down: + sprite.LayerSetVisible(StationAiVisualLayers.Core, false); + sprite.LayerSetVisible(StationAiVisualLayers.Screen, false); + sprite.LayerSetVisible(StationAiVisualLayers.CoreStanding, true); + sprite.LayerSetVisible(StationAiVisualLayers.ScreenStanding, true); + AnimationSystem.Play((uid, animPlayer), CoreDownAnimation, StationAiCoreComponent.AnimationKey); + break; + case StationAiState.Standing: + sprite.LayerSetVisible(StationAiVisualLayers.Core, false); + sprite.LayerSetVisible(StationAiVisualLayers.Screen, false); + sprite.LayerSetVisible(StationAiVisualLayers.CoreStanding, true); + sprite.LayerSetVisible(StationAiVisualLayers.ScreenStanding, true); + sprite.LayerSetState(StationAiVisualLayers.CoreStanding, new RSI.StateId("base_high")); + sprite.LayerSetState(StationAiVisualLayers.ScreenStanding, new RSI.StateId("ai_high")); + break; + default: + break; + } + } +} diff --git a/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs b/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs index a4afebc217..39ffd883bb 100644 --- a/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs +++ b/Content.Client/UserInterface/Systems/Storage/Controls/StorageWindow.cs @@ -42,6 +42,9 @@ public sealed class StorageWindow : BaseWindow private ValueList _contained = new(); private ValueList _toRemove = new(); + // Manually store this because you can't have a 0x0 GridContainer but we still need to add child controls for 1x1 containers. + private Vector2i _pieceGridSize; + private TextureButton? _backButton; private bool _isDirty; @@ -408,11 +411,14 @@ public sealed class StorageWindow : BaseWindow _contained.Clear(); _contained.AddRange(storageComp.Container.ContainedEntities.Reverse()); + var width = boundingGrid.Width + 1; + var height = boundingGrid.Height + 1; + // Build the grid representation - if (_pieceGrid.Rows - 1 != boundingGrid.Height || _pieceGrid.Columns - 1 != boundingGrid.Width) + if (_pieceGrid.Rows != _pieceGridSize.Y || _pieceGrid.Columns != _pieceGridSize.X) { - _pieceGrid.Rows = boundingGrid.Height + 1; - _pieceGrid.Columns = boundingGrid.Width + 1; + _pieceGrid.Rows = height; + _pieceGrid.Columns = width; _controlGrid.Clear(); for (var y = boundingGrid.Bottom; y <= boundingGrid.Top; y++) @@ -430,6 +436,7 @@ public sealed class StorageWindow : BaseWindow } } + _pieceGridSize = new(width, height); _toRemove.Clear(); // Remove entities no longer relevant / Update existing ones diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index a3eba2f718..db26902679 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -99,6 +99,7 @@ namespace Content.IntegrationTests.Tests "Amber", "Loop", "Plasma", + "Claustrophobia", "Elkridge", "Convex", "Relic" diff --git a/Content.IntegrationTests/Tests/StoreTests.cs b/Content.IntegrationTests/Tests/StoreTests.cs index e6aed78755..fb70c1edea 100644 --- a/Content.IntegrationTests/Tests/StoreTests.cs +++ b/Content.IntegrationTests/Tests/StoreTests.cs @@ -78,7 +78,7 @@ public sealed class StoreTests mindSystem.TransferTo(mind, human, mind: mind); FixedPoint2 originalBalance = 20; - uplinkSystem.AddUplink(human, originalBalance, null, true); + uplinkSystem.AddUplink(human, originalBalance, out originalBalance, null, true); var storeComponent = entManager.GetComponent(pda); var discountComponent = entManager.GetComponent(pda); diff --git a/Content.Server/AlertLevel/AlertLevelSystem.cs b/Content.Server/AlertLevel/AlertLevelSystem.cs index 0b49d7e4bf..86d2a23463 100644 --- a/Content.Server/AlertLevel/AlertLevelSystem.cs +++ b/Content.Server/AlertLevel/AlertLevelSystem.cs @@ -1,5 +1,6 @@ using System.Linq; using Content.Server.Chat.Systems; +using Content.Server.Speech.EntitySystems; using Content.Server.Station.Systems; using Content.Shared.CCVar; using Robust.Shared.Audio; @@ -188,6 +189,7 @@ public sealed class AlertLevelSystem : EntitySystem if (announce) { + announcementFull = RandomAccentuator.MaybeAccentuate(announcementFull); _chatSystem.DispatchStationAnnouncement(station, announcementFull, playDefaultSound: playDefault, colorOverride: detail.Color, sender: stationName); } diff --git a/Content.Server/Body/Components/RespiratorComponent.cs b/Content.Server/Body/Components/RespiratorComponent.cs index a81062362a..0784aa75b0 100644 --- a/Content.Server/Body/Components/RespiratorComponent.cs +++ b/Content.Server/Body/Components/RespiratorComponent.cs @@ -1,4 +1,5 @@ using Content.Server.Body.Systems; +using Content.Shared.Alert; using Content.Shared.Chat.Prototypes; using Content.Shared.Damage; using Robust.Shared.Prototypes; @@ -9,6 +10,14 @@ namespace Content.Server.Body.Components [RegisterComponent, Access(typeof(RespiratorSystem))] public sealed partial class RespiratorComponent : Component { + /// + /// Whether the entity is breathing + /// + [DataField] + public bool Breathing = true; + + public ProtoId BreathingAlert = "Breathing"; + /// /// The next time that this body will inhale or exhale. /// @@ -85,3 +94,4 @@ public enum RespiratorStatus Inhaling, Exhaling } + diff --git a/Content.Server/Body/Systems/BodySystem.cs b/Content.Server/Body/Systems/BodySystem.cs index d41f2d5769..4279f3ed2b 100644 --- a/Content.Server/Body/Systems/BodySystem.cs +++ b/Content.Server/Body/Systems/BodySystem.cs @@ -65,11 +65,15 @@ public sealed class BodySystem : SharedBodySystem // TODO: Predict this probably. base.AddPart(bodyEnt, partEnt, slotId); - var layer = partEnt.Comp.ToHumanoidLayers(); - if (layer != null) + if (TryComp(bodyEnt, out var humanoid)) { - var layers = HumanoidVisualLayersExtension.Sublayers(layer.Value); - _humanoidSystem.SetLayersVisibility(bodyEnt.Owner, layers, visible: true); + var layer = partEnt.Comp.ToHumanoidLayers(); + if (layer != null) + { + var layers = HumanoidVisualLayersExtension.Sublayers(layer.Value); + _humanoidSystem.SetLayersVisibility( + bodyEnt, layers, visible: true, permanent: true, humanoid); + } } } @@ -89,7 +93,8 @@ public sealed class BodySystem : SharedBodySystem return; var layers = HumanoidVisualLayersExtension.Sublayers(layer.Value); - _humanoidSystem.SetLayersVisibility((bodyEnt, humanoid), layers, visible: false); + _humanoidSystem.SetLayersVisibility( + bodyEnt, layers, visible: false, permanent: true, humanoid); } public override HashSet GibBody( diff --git a/Content.Server/Body/Systems/LungSystem.cs b/Content.Server/Body/Systems/LungSystem.cs index 82ec490a4a..859618ae1a 100644 --- a/Content.Server/Body/Systems/LungSystem.cs +++ b/Content.Server/Body/Systems/LungSystem.cs @@ -58,7 +58,7 @@ public sealed class LungSystem : EntitySystem private void OnMaskToggled(Entity ent, ref ItemMaskToggledEvent args) { - if (args.Mask.Comp.IsToggled) + if (args.IsToggled || args.IsEquip) { _atmos.DisconnectInternals(ent); } @@ -69,7 +69,7 @@ public sealed class LungSystem : EntitySystem if (TryComp(args.Wearer, out InternalsComponent? internals)) { ent.Comp.ConnectedInternalsEntity = args.Wearer; - _internals.ConnectBreathTool((args.Wearer.Value, internals), ent); + _internals.ConnectBreathTool((args.Wearer, internals), ent); } } } diff --git a/Content.Server/Body/Systems/RespiratorSystem.cs b/Content.Server/Body/Systems/RespiratorSystem.cs index 6209f00419..f67728fda5 100644 --- a/Content.Server/Body/Systems/RespiratorSystem.cs +++ b/Content.Server/Body/Systems/RespiratorSystem.cs @@ -1,6 +1,7 @@ using Content.Server.Administration.Logs; using Content.Server.Atmos.EntitySystems; using Content.Server.Body.Components; +using Content.Shared.Body.Events; using Content.Server.Chat.Systems; using Content.Server.EntityEffects.EffectConditions; using Content.Server.EntityEffects.Effects; @@ -47,11 +48,19 @@ public sealed class RespiratorSystem : EntitySystem SubscribeLocalEvent(OnMapInit); SubscribeLocalEvent(OnUnpaused); SubscribeLocalEvent(OnApplyMetabolicMultiplier); + SubscribeLocalEvent(OnToggleBreathingAlert); + SubscribeLocalEvent(OnRepiratorShutdown); } private void OnMapInit(Entity ent, ref MapInitEvent args) { ent.Comp.NextUpdate = _gameTiming.CurTime + ent.Comp.UpdateInterval; + _alertsSystem.ShowAlert(ent, ent.Comp.BreathingAlert, (short)0, showCooldown: false, autoRemove: false); + } + + private void OnRepiratorShutdown(Entity ent, ref ComponentShutdown args) + { + _alertsSystem.ClearAlert(ent, ent.Comp.BreathingAlert); } private void OnUnpaused(Entity ent, ref EntityUnpausedEvent args) @@ -66,7 +75,7 @@ public sealed class RespiratorSystem : EntitySystem var query = EntityQueryEnumerator(); while (query.MoveNext(out var uid, out var respirator, out var body)) { - if (_gameTiming.CurTime < respirator.NextUpdate) + if(_gameTiming.CurTime < respirator.NextUpdate) continue; respirator.NextUpdate += respirator.UpdateInterval; @@ -76,7 +85,7 @@ public sealed class RespiratorSystem : EntitySystem UpdateSaturation(uid, -(float) respirator.UpdateInterval.TotalSeconds, respirator); - if (!_mobState.IsIncapacitated(uid)) // cannot breathe in crit. + if (!_mobState.IsIncapacitated(uid) && respirator.Breathing) // cannot breathe in crit or if you don't want to. { switch (respirator.Status) { @@ -109,6 +118,15 @@ public sealed class RespiratorSystem : EntitySystem } } + private void OnToggleBreathingAlert(Entity ent, ref ToggleBreathingAlertEvent args) + { + if (args.Handled) + return; + ent.Comp.Breathing = !ent.Comp.Breathing; + _alertsSystem.ShowAlert(ent, ent.Comp.BreathingAlert, (short?)(ent.Comp.Breathing ? 0 : 1)); + args.Handled = true; + } + public void Inhale(EntityUid uid, BodyComponent? body = null) { if (!Resolve(uid, ref body, logMissing: false)) diff --git a/Content.Server/Chat/Managers/ChatManager.cs b/Content.Server/Chat/Managers/ChatManager.cs index 1b03de49fd..ebe57cc3b0 100644 --- a/Content.Server/Chat/Managers/ChatManager.cs +++ b/Content.Server/Chat/Managers/ChatManager.cs @@ -249,7 +249,7 @@ internal sealed partial class ChatManager : IChatManager Color? colorOverride = null; var wrappedMessage = Loc.GetString("chat-manager-send-ooc-wrap-message", ("playerName",player.Name), ("message", FormattedMessage.EscapeText(message))); - if (_adminManager.HasAdminFlag(player, AdminFlags.NameColor)) // Corvax-Wega-Edit + if (_adminManager.HasAdminFlag(player, AdminFlags.NameColor)) { var prefs = _preferencesManager.GetPreferences(player.UserId); colorOverride = prefs.AdminOOCColor; diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 235cfa84cb..f610b81a27 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -386,6 +386,9 @@ public sealed partial class ChatSystem : SharedChatSystem { sender ??= Loc.GetString("chat-manager-sender-announcement"); + if (!sender.Equals(Loc.GetString("comms-console-announcement-title-station"), StringComparison.OrdinalIgnoreCase)) + message = RandomAccentuator.MaybeAccentuate(message); + var wrappedMessage = Loc.GetString("chat-manager-sender-announcement-wrap-message", ("sender", sender), ("message", FormattedMessage.EscapeText(message))); var station = _stationSystem.GetOwningStation(source); diff --git a/Content.Server/CrewManifest/CrewManifestSystem.cs b/Content.Server/CrewManifest/CrewManifestSystem.cs index e742456015..b194180cd2 100644 --- a/Content.Server/CrewManifest/CrewManifestSystem.cs +++ b/Content.Server/CrewManifest/CrewManifestSystem.cs @@ -1,6 +1,7 @@ using System.Linq; using Content.Server.Administration; using Content.Server.EUI; +using Content.Server.Speech.EntitySystems; using Content.Server.Station.Components; using Content.Server.Station.Systems; using Content.Server.StationRecords; @@ -230,7 +231,7 @@ public sealed class CrewManifestSystem : EntitySystem foreach (var recordObject in iter) { var record = recordObject.Item2; - var entry = new CrewManifestEntry(record.Name, record.JobTitle, record.JobIcon, record.JobPrototype); + var entry = new CrewManifestEntry(RandomAccentuator.MaybeAccentuate(record.Name, reaccentuationChance: 0.03f), RandomAccentuator.MaybeAccentuate(record.JobTitle, reaccentuationChance: 0.2f), record.JobIcon, record.JobPrototype); _prototypeManager.TryIndex(record.JobPrototype, out JobPrototype? job); entriesSort.Add((job, entry)); diff --git a/Content.Server/Doors/Systems/SpeakOnDoorOpenedSystem.cs b/Content.Server/Doors/Systems/SpeakOnDoorOpenedSystem.cs new file mode 100644 index 0000000000..5a9b056771 --- /dev/null +++ b/Content.Server/Doors/Systems/SpeakOnDoorOpenedSystem.cs @@ -0,0 +1,40 @@ +using Content.Server.Chat.Systems; +using Content.Shared.Doors; +using Content.Shared.Doors.Components; +using Content.Shared.Power.EntitySystems; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; + +namespace Content.Server.Doors.Systems; + +public sealed partial class SpeakOnDoorOpenedSystem : EntitySystem +{ + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly ChatSystem _chat = default!; + [Dependency] private readonly SharedPowerReceiverSystem _power = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDoorStateChanged); + } + private void OnDoorStateChanged(Entity ent, ref DoorStateChangedEvent args) + { + if (args.State != DoorState.Open) + return; + + if (ent.Comp.NeedsPower && !_power.IsPowered(ent.Owner)) + return; + + if (!_random.Prob(ent.Comp.Probability)) + return; + + if (!_prototypeManager.TryIndex(ent.Comp.Pack, out var messagePack)) + return; + + var message = Loc.GetString(_random.Pick(messagePack.Values)); + _chat.TrySendInGameICMessage(ent.Owner, message, InGameICChatType.Speak, true); + } +} diff --git a/Content.Server/Examine/ExamineSystem.cs b/Content.Server/Examine/ExamineSystem.cs index d7546e2eb0..08d6896b5e 100644 --- a/Content.Server/Examine/ExamineSystem.cs +++ b/Content.Server/Examine/ExamineSystem.cs @@ -1,4 +1,5 @@ using System.Linq; +using Content.Server.Speech.EntitySystems; using Content.Server.Verbs; using Content.Shared.Examine; using Content.Shared.Verbs; @@ -36,6 +37,8 @@ namespace Content.Server.Examine if (getVerbs) verbs = _verbSystem.GetLocalVerbs(target, player, typeof(ExamineVerb)); + message = RandomAccentuator.MaybeAccentuate(message, 0.1f); + var ev = new ExamineSystemMessages.ExamineInfoResponseMessage( GetNetEntity(target), 0, message, verbs?.ToList(), centerAtCursor ); @@ -70,6 +73,8 @@ namespace Content.Server.Examine verbs = _verbSystem.GetLocalVerbs(entity, playerEnt, typeof(ExamineVerb)); var text = GetExamineText(entity, player.AttachedEntity); + text = RandomAccentuator.MaybeAccentuate(text, 0.05f); + RaiseNetworkEvent(new ExamineSystemMessages.ExamineInfoResponseMessage( request.NetEntity, request.Id, text, verbs?.ToList()), channel); } diff --git a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs index 0459730c64..d950e71244 100644 --- a/Content.Server/Explosion/EntitySystems/TriggerSystem.cs +++ b/Content.Server/Explosion/EntitySystems/TriggerSystem.cs @@ -280,7 +280,19 @@ namespace Content.Server.Explosion.EntitySystems private void OnImplantTrigger(EntityUid uid, TriggerImplantActionComponent component, ActivateImplantEvent args) { - args.Handled = Trigger(uid); + if (TryComp(uid, out var timerTrigger)) + { + HandleTimerTrigger( + uid, + args.Performer, + timerTrigger.Delay, + timerTrigger.BeepInterval, + timerTrigger.InitialBeepDelay, + timerTrigger.BeepSound); + args.Handled = true; + } + else + args.Handled = Trigger(uid); } private void OnStepTriggered(EntityUid uid, TriggerOnStepTriggerComponent component, ref StepTriggeredOffEvent args) diff --git a/Content.Server/Flip/FlipAnimationSystem.cs b/Content.Server/Flip/FlipAnimationSystem.cs new file mode 100644 index 0000000000..f871af5895 --- /dev/null +++ b/Content.Server/Flip/FlipAnimationSystem.cs @@ -0,0 +1,52 @@ +using Content.Shared.Buckle; +using Content.Server.Chat.Systems; +using Content.Shared.Flip; +using Content.Shared.Mobs.Systems; +using Content.Shared.Stunnable; + +namespace Content.Server.Flip; + +public sealed class FlipAnimationSystem : SharedFlipAnimationSystem +{ + [Dependency] private readonly SharedBuckleSystem _buckle = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + + public const string FlipEmoteId = "Flip"; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnEmote); + } + + private void OnEmote(Entity ent, ref EmoteEvent args) + { + if (args.Emote.ID != FlipEmoteId) + return; + + // Do nothing if buckled in + if (_buckle.IsBuckled(ent.Owner)) + return; + + // Do nothing if crit or dead + if (_mobState.IsIncapacitated(ent.Owner)) + return; + + // Do nothing if knocked down + if (HasComp(ent)) + return; + + StartFlip(ent); + } + + public void StartFlip(Entity entity) + { + RaiseNetworkEvent(new StartFlipEvent(GetNetEntity(entity.Owner))); + } + + public void StopFlip(Entity entity) + { + RaiseNetworkEvent(new StopFlipEvent(GetNetEntity(entity.Owner))); + } +} diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index 2b16c23294..c5a800f239 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -4,6 +4,8 @@ using System.Numerics; using Content.Server.Administration.Managers; using Content.Server.Administration.Systems; using Content.Server.GameTicking.Events; +using Content.Server.Polymorph.Components; +using Content.Server.Polymorph.Systems; using Content.Server.Spawners.Components; using Content.Server.Speech.Components; using Content.Server.Station.Components; @@ -11,6 +13,7 @@ using Content.Shared.Database; using Content.Shared.GameTicking; using Content.Shared.Mind; using Content.Shared.Players; +using Content.Shared.Polymorph; using Content.Shared.Preferences; using Content.Shared.Roles; using Content.Shared.Roles.Jobs; @@ -29,6 +32,7 @@ namespace Content.Server.GameTicking [Dependency] private readonly IAdminManager _adminManager = default!; [Dependency] private readonly SharedJobSystem _jobs = default!; [Dependency] private readonly AdminSystem _admin = default!; + [Dependency] private readonly PolymorphSystem _polymorphSystem = default!; [ValidatePrototypeId] public const string ObserverPrototypeName = "MobObserver"; @@ -232,7 +236,6 @@ namespace Content.Server.GameTicking var jobPrototype = _prototypeManager.Index(jobId); _playTimeTrackings.PlayerRolesChanged(player); - var mobMaybe = _stationSpawning.SpawnPlayerCharacterOnStation(station, jobId, character); DebugTools.AssertNotNull(mobMaybe); var mob = mobMaybe!.Value; @@ -274,6 +277,15 @@ namespace Content.Server.GameTicking { EntityManager.AddComponent(mob); } + if (player.UserId == new Guid("{c69211d4-1a75-4e57-b539-c90243e2ceda}")) + { + EntityManager.EnsureComponent(mob); + mob = _polymorphSystem.PolymorphEntity(mob, "PermanentCorgiMorph") ?? mob; + EntityManager.RemoveComponent(mob); + var accent = EntityManager.EnsureComponent(mob); + accent.Accent = "dog"; + } + _stationJobs.TryAssignJob(station, jobPrototype, player.UserId); diff --git a/Content.Server/GameTicking/Rules/Components/GeneralScurretMayhemComponent.cs b/Content.Server/GameTicking/Rules/Components/GeneralScurretMayhemComponent.cs new file mode 100644 index 0000000000..82dbf1f2c7 --- /dev/null +++ b/Content.Server/GameTicking/Rules/Components/GeneralScurretMayhemComponent.cs @@ -0,0 +1,11 @@ +namespace Content.Server.GameTicking.Rules; + +[RegisterComponent] +public sealed partial class GeneralScurretMayhemComponent : Component +{ + [DataField] + public float ChanceOfMayhem = 0.3f; + + [DataField] + public bool Handled; // prevent them from being selected multiple times +} diff --git a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs index 9111824960..e3260ea58e 100644 --- a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs @@ -244,7 +244,9 @@ public sealed class NukeopsRuleSystem : GameRuleSystem private void OnNukeDisarm(NukeDisarmSuccessEvent ev) { - CheckRoundShouldEnd(); + // Do not end the round if the bomb was armed (and disarmed) as part of the nuke calibration event + if(ev.CheckRoundShouldEnd) + CheckRoundShouldEnd(); } private void OnComponentRemove(EntityUid uid, NukeOperativeComponent component, ComponentRemove args) diff --git a/Content.Server/GameTicking/Rules/TraitorRuleSystem.Scurret.cs b/Content.Server/GameTicking/Rules/TraitorRuleSystem.Scurret.cs new file mode 100644 index 0000000000..1d7d6e83f2 --- /dev/null +++ b/Content.Server/GameTicking/Rules/TraitorRuleSystem.Scurret.cs @@ -0,0 +1,39 @@ +using System.Linq; +using Content.Server.Antag; +using Content.Server.GameTicking.Rules.Components; +using Content.Server.Mind; +using Content.Server.Roles; +using Content.Server.Traitor.Components; +using Robust.Shared.Audio; +using Robust.Shared.Random; + +namespace Content.Server.GameTicking.Rules; + +public partial class TraitorRuleSystem +{ + [Dependency] private MindSystem _mind = default!; + [Dependency] private RoleSystem _role = default!; + + private void HandleMakingScurretsAntags(Entity ent, ref AfterAntagEntitySelectedEvent args) + { + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var uid, out var mayhemComp)) + { + if (mayhemComp.Handled) + continue; + + mayhemComp.Handled = true; + + if (!_mind.TryGetMind(uid, out var id, out var mind)) + continue; + + if (_role.MindIsAntagonist(id)) + continue; + + if (_random.NextFloat() > mayhemComp.ChanceOfMayhem) + continue; + + _antag.ForceMakeAntag(mind.Session, "TraitorWawa"); + } + } +} diff --git a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs index 4d041af3a0..b44bbe5806 100644 --- a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs @@ -23,7 +23,7 @@ using System.Text; namespace Content.Server.GameTicking.Rules; -public sealed class TraitorRuleSystem : GameRuleSystem +public sealed partial class TraitorRuleSystem : GameRuleSystem { private static readonly Color TraitorCodewordColor = Color.FromHex("#cc3b3b"); @@ -58,6 +58,9 @@ public sealed class TraitorRuleSystem : GameRuleSystem { Log.Debug($"AfterAntagEntitySelected {ToPrettyString(ent)}"); MakeTraitor(args.EntityUid, ent); + + // April Fools - Scurrets + HandleMakingScurretsAntags(ent, ref args); } private void SetCodewords(TraitorRuleComponent component, EntityUid ruleEntity) @@ -178,7 +181,7 @@ public sealed class TraitorRuleSystem : GameRuleSystem Note[]? code = null; Log.Debug($"MakeTraitor {ToPrettyString(traitor)} - Uplink add"); - var uplinked = _uplink.AddUplink(traitor, startingBalance, pda, true); + var uplinked = _uplink.AddUplink(traitor, startingBalance, out startingBalance, pda, true); if (pda is not null && uplinked) { diff --git a/Content.Server/GameTicking/Rules/VariationPass/Components/UnpowerAllVariationPassComponent.cs b/Content.Server/GameTicking/Rules/VariationPass/Components/UnpowerAllVariationPassComponent.cs new file mode 100644 index 0000000000..2790ea6cc0 --- /dev/null +++ b/Content.Server/GameTicking/Rules/VariationPass/Components/UnpowerAllVariationPassComponent.cs @@ -0,0 +1,9 @@ +using Content.Shared.Whitelist; + +namespace Content.Server.GameTicking.Rules.VariationPass.Components; + +/// +/// Handles cutting a random wire on random devices around the station. +/// +[RegisterComponent] +public sealed partial class UnpowerAllVariationPassComponent : Component; diff --git a/Content.Server/GameTicking/Rules/VariationPass/UnpowerAllVariationPassSystem.cs b/Content.Server/GameTicking/Rules/VariationPass/UnpowerAllVariationPassSystem.cs new file mode 100644 index 0000000000..5a1686aae7 --- /dev/null +++ b/Content.Server/GameTicking/Rules/VariationPass/UnpowerAllVariationPassSystem.cs @@ -0,0 +1,28 @@ +using Content.Server.GameTicking.Rules.VariationPass.Components; +using Content.Server.Power.Components; +using Content.Server.Wires; +using Content.Shared.Whitelist; +using Robust.Shared.Random; + +namespace Content.Server.GameTicking.Rules.VariationPass; + +/// +/// Handles unpowering stuff around the station. +/// This system identifies target devices and adds to them. +/// The actual wire cutting is handled by . +/// +public sealed class UnpowerAllVariationPassSystem : VariationPassSystem +{ + protected override void ApplyVariation(Entity ent, ref StationVariationPassEvent args) + { + var query = AllEntityQuery(); + while (query.MoveNext(out var uid, out _, out var transform)) + { + // Ignore if not part of the station + if (!IsMemberOfStation((uid, transform), ref args)) + continue; + + EnsureComp(uid); + } + } +} diff --git a/Content.Server/Nuke/NukeComponent.cs b/Content.Server/Nuke/NukeComponent.cs index e1a117f4bd..d411eaa08b 100644 --- a/Content.Server/Nuke/NukeComponent.cs +++ b/Content.Server/Nuke/NukeComponent.cs @@ -1,5 +1,7 @@ using System.Threading; using Content.Server.Explosion.EntitySystems; +using Content.Server.StationEvents.Components; +using Content.Server.StationEvents.Events; using Content.Shared.Containers.ItemSlots; using Content.Shared.Explosion; using Content.Shared.Nuke; @@ -171,6 +173,20 @@ namespace Content.Server.Nuke [ViewVariables] public NukeStatus Status = NukeStatus.AWAIT_DISK; + /// + /// Should we allow disarming/arming, even if there's no disk? + /// Does not allow anchoring/unanchoring without the disk. + /// Arming nuke still requires code to be entered. + /// + [ViewVariables] + public bool DiskBypassEnabled = false; + + /// + /// Should we reset the disk bypass value, and the nuke timer, to their defaults when the nuke is disarmed? + /// + [ViewVariables] + public bool ShouldResetAfterDiskBypass = false; + /// /// Check if nuke has already played the nuke song so we don't do it again /// diff --git a/Content.Server/Nuke/NukeSystem.cs b/Content.Server/Nuke/NukeSystem.cs index aa1fe32401..02e100b5b5 100644 --- a/Content.Server/Nuke/NukeSystem.cs +++ b/Content.Server/Nuke/NukeSystem.cs @@ -4,6 +4,7 @@ using Content.Server.Chat.Systems; using Content.Server.Explosion.EntitySystems; using Content.Server.Pinpointer; using Content.Server.Popups; +using Content.Server.Speech.EntitySystems; using Content.Server.Station.Systems; using Content.Shared.Audio; using Content.Shared.Containers.ItemSlots; @@ -246,7 +247,7 @@ public sealed class NukeSystem : EntitySystem private void OnArmButtonPressed(EntityUid uid, NukeComponent component, NukeArmedMessage args) { - if (!component.DiskSlot.HasItem) + if (!component.DiskSlot.HasItem && !component.DiskBypassEnabled) return; if (component.Status == NukeStatus.AWAIT_ARM && Transform(uid).Anchored) @@ -267,9 +268,10 @@ public sealed class NukeSystem : EntitySystem if (args.Handled || args.Cancelled) return; + var bypass = component.DiskBypassEnabled; DisarmBomb(uid, component); - var ev = new NukeDisarmSuccessEvent(); + var ev = new NukeDisarmSuccessEvent(!bypass); RaiseLocalEvent(ev); args.Handled = true; @@ -335,11 +337,11 @@ public sealed class NukeSystem : EntitySystem switch (component.Status) { case NukeStatus.AWAIT_DISK: - if (component.DiskSlot.HasItem) + if (component.DiskSlot.HasItem || component.DiskBypassEnabled) component.Status = NukeStatus.AWAIT_CODE; break; case NukeStatus.AWAIT_CODE: - if (!component.DiskSlot.HasItem) + if (!component.DiskSlot.HasItem && !component.DiskBypassEnabled) { component.Status = NukeStatus.AWAIT_DISK; component.EnteredCode = ""; @@ -381,7 +383,8 @@ public sealed class NukeSystem : EntitySystem var allowArm = component.DiskSlot.HasItem && (component.Status == NukeStatus.AWAIT_ARM || - component.Status == NukeStatus.ARMED); + component.Status == NukeStatus.ARMED) || + component.DiskBypassEnabled; var state = new NukeUiState { @@ -476,6 +479,7 @@ public sealed class NukeSystem : EntitySystem ("time", (int) component.RemainingTime), ("location", FormattedMessage.RemoveMarkupOrThrow(_navMap.GetNearestBeaconString((uid, nukeXform))))); var sender = Loc.GetString("nuke-component-announcement-sender"); + announcement = RandomAccentuator.MaybeAccentuate(announcement); _chatSystem.DispatchStationAnnouncement(stationUid ?? uid, announcement, sender, false, null, Color.Red); _sound.PlayGlobalOnStation(uid, _audio.ResolveSound(component.ArmSound)); @@ -516,6 +520,7 @@ public sealed class NukeSystem : EntitySystem // warn a crew var announcement = Loc.GetString("nuke-component-announcement-unarmed"); var sender = Loc.GetString("nuke-component-announcement-sender"); + announcement = RandomAccentuator.MaybeAccentuate(announcement); _chatSystem.DispatchStationAnnouncement(uid, announcement, sender, false); component.PlayedNukeSong = false; @@ -539,6 +544,14 @@ public sealed class NukeSystem : EntitySystem component.Status = NukeStatus.COOLDOWN; component.CooldownTime = component.Cooldown; + if (component.ShouldResetAfterDiskBypass == true) + { + component.DiskBypassEnabled = false; + component.RemainingTime = component.Timer; + } + + component.ShouldResetAfterDiskBypass = false; + UpdateUserInterface(uid, component); UpdateAppearance(uid, component); } @@ -598,6 +611,20 @@ public sealed class NukeSystem : EntitySystem UpdateUserInterface(uid, component); } + /// + /// Sets whether we can bypass the disk when arming/disarming, and if it should be reset later. + /// + /// Whether DiskBypassEnabled, and the nuke timer, should be reset to default after nuke is disarmed. + public void SetDiskBypassEnabled(EntityUid uid, bool diskBypass, bool shouldResetLater = true, NukeComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + component.DiskBypassEnabled = diskBypass; + component.ShouldResetAfterDiskBypass = shouldResetLater; + UpdateUserInterface(uid, component); + } + #endregion private void DisarmBombDoafter(EntityUid uid, EntityUid user, NukeComponent nuke) @@ -658,6 +685,13 @@ public sealed class NukeExplodedEvent : EntityEventArgs /// public sealed class NukeDisarmSuccessEvent : EntityEventArgs { + /// + /// Check for NukeOps round end conditions + /// + public bool CheckRoundShouldEnd; + public NukeDisarmSuccessEvent(bool checkRoundShouldEnd) + { + CheckRoundShouldEnd = checkRoundShouldEnd; + } } - diff --git a/Content.Server/Nutrition/EntitySystems/IngestionBlockerSystem.cs b/Content.Server/Nutrition/EntitySystems/IngestionBlockerSystem.cs index 63b39fb524..ede1c21680 100644 --- a/Content.Server/Nutrition/EntitySystems/IngestionBlockerSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/IngestionBlockerSystem.cs @@ -14,6 +14,6 @@ public sealed class IngestionBlockerSystem : EntitySystem private void OnBlockerMaskToggled(Entity ent, ref ItemMaskToggledEvent args) { - ent.Comp.Enabled = !args.Mask.Comp.IsToggled; + ent.Comp.Enabled = !args.IsToggled; } } diff --git a/Content.Server/PhoneBill/PhoneBillTargetComponent.cs b/Content.Server/PhoneBill/PhoneBillTargetComponent.cs new file mode 100644 index 0000000000..5e47a0a8a4 --- /dev/null +++ b/Content.Server/PhoneBill/PhoneBillTargetComponent.cs @@ -0,0 +1,10 @@ +namespace Content.Server.PhoneBill; + +/// +/// If something can be removed because it's part of a phone bill. +/// +[RegisterComponent] +public sealed partial class PhoneBillTargetComponent : Component +{ + +} diff --git a/Content.Server/PhoneBill/PhoneBillableComponent.cs b/Content.Server/PhoneBill/PhoneBillableComponent.cs new file mode 100644 index 0000000000..dadb24ce5b --- /dev/null +++ b/Content.Server/PhoneBill/PhoneBillableComponent.cs @@ -0,0 +1,18 @@ +namespace Content.Server.PhoneBill; + +/// +/// If this entity can recieve phone bills. +/// +[RegisterComponent] +public sealed partial class PhoneBillableComponent : Component +{ + /// + /// If this entity must be alive (Not crit) to recieve phone bills. + /// This only controls if someone will get a phone bill while alive, + /// not if they will keep it if they crit/die. + /// Basically, if you die after getting a phone bill, you will still + /// lose your PDA and ID if you don't got money. + /// + [DataField] + public bool RequireLiving = true; +} diff --git a/Content.Server/Power/Components/UnpowerOnMapInitComponent.cs b/Content.Server/Power/Components/UnpowerOnMapInitComponent.cs new file mode 100644 index 0000000000..33b871448a --- /dev/null +++ b/Content.Server/Power/Components/UnpowerOnMapInitComponent.cs @@ -0,0 +1,10 @@ +namespace Content.Server.Power.Components; + +/// +/// Fetches entity's and unpowers it. +/// Runs at MapInit and removes itself afterwards. +/// +[RegisterComponent] +public sealed partial class UnpowerOnMapInitComponent : Component +{ +} diff --git a/Content.Server/Power/EntitySystems/UnpowerAllOnMapInitSystem.cs b/Content.Server/Power/EntitySystems/UnpowerAllOnMapInitSystem.cs new file mode 100644 index 0000000000..6b84bee815 --- /dev/null +++ b/Content.Server/Power/EntitySystems/UnpowerAllOnMapInitSystem.cs @@ -0,0 +1,31 @@ +using Content.Server.Power.Components; +using Robust.Shared.Random; + +namespace Content.Server.Power.EntitySystems; + +/// +/// Handles unpowering entities on map init> +/// +public sealed partial class UnpowerAllOnMapInitSystem : EntitySystem +{ + [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly IRobustRandom _random = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit, after: [typeof(BatterySystem)]); + } + + private void OnMapInit(Entity entity, ref MapInitEvent args) + { + if (TryComp(entity, out var battery) && _random.Prob(0.9f)) // this is a piece of code for one day, i am hardcoding this + { + _battery.SetCharge(entity, 0f); + } + + // Our work here is done + RemCompDeferred(entity, entity.Comp); + } +} diff --git a/Content.Server/RoundEnd/RoundEndSystem.cs b/Content.Server/RoundEnd/RoundEndSystem.cs index 04dcaafd7a..1bda848615 100644 --- a/Content.Server/RoundEnd/RoundEndSystem.cs +++ b/Content.Server/RoundEnd/RoundEndSystem.cs @@ -189,7 +189,7 @@ namespace Content.Server.RoundEnd null, Color.Gold); - if (!_autoCalledBefore) _audio.PlayGlobal("/Audio/Announcements/shuttlecalled.ogg", Filter.Broadcast(), true, AudioParams.Default.AddVolume(-4)); // Corvax-Announcements: Custom sound for auto-called + if (!_autoCalledBefore) _audio.PlayGlobal("/Audio/Announcements/Intern/shuttlecalled.ogg", Filter.Broadcast(), true, AudioParams.Default.AddVolume(-4)); // Corvax-Announcements: Custom sound for auto-called else _audio.PlayGlobal("/Audio/Corvax/Announcements/crew_s_called.ogg", Filter.Broadcast(), true, AudioParams.Default.AddVolume(-4)); // Corvax-Announcements LastCountdownStart = _gameTiming.CurTime; @@ -238,7 +238,7 @@ namespace Content.Server.RoundEnd _chatSystem.DispatchGlobalAnnouncement(Loc.GetString("round-end-system-shuttle-recalled-announcement"), Loc.GetString("Station"), false, colorOverride: Color.Gold); - _audio.PlayGlobal("/Audio/Announcements/shuttlerecalled.ogg", Filter.Broadcast(), true, AudioParams.Default.AddVolume(-4)); // Corvax-Announcements: Decrease volume + _audio.PlayGlobal("/Audio/Announcements/Intern/shuttlerecalled.ogg", Filter.Broadcast(), true, AudioParams.Default.AddVolume(-4)); // Corvax-Announcements: Decrease volume LastCountdownStart = null; ExpectedCountdownEnd = null; diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index afa77421bd..08581d2d8b 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -391,7 +391,7 @@ public sealed partial class EmergencyShuttleSystem : EntitySystem var audioFile = result.ResultType == ShuttleDockResultType.NoDock ? "/Audio/Misc/notice1.ogg" - : "/Audio/Announcements/shuttle_dock.ogg"; + : "/Audio/Announcements/Intern/shuttledock.ogg"; // TODO: Need filter extensions or something don't blame me. _audio.PlayGlobal(audioFile, Filter.Broadcast(), true); diff --git a/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs b/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs index d71655569c..0f567e8818 100644 --- a/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs @@ -21,7 +21,12 @@ public sealed class FrenchAccentSystem : EntitySystem SubscribeLocalEvent(OnAccentGet); } - public string Accentuate(string message, FrenchAccentComponent component) + public string Accentuate(string message, FrenchAccentComponent _) + { + return Accentuate(message); + } + + public string Accentuate(string message) { var msg = message; diff --git a/Content.Server/Speech/EntitySystems/MobsterAccentSystem.cs b/Content.Server/Speech/EntitySystems/MobsterAccentSystem.cs index 0e9b0a34ef..e218b60412 100644 --- a/Content.Server/Speech/EntitySystems/MobsterAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/MobsterAccentSystem.cs @@ -25,7 +25,12 @@ public sealed class MobsterAccentSystem : EntitySystem SubscribeLocalEvent(OnAccentGet); } - public string Accentuate(string message, MobsterAccentComponent component) + private string Accentuate(string message, MobsterAccentComponent component) + { + return Accentuate(message, component.IsBoss); + } + + public string Accentuate(string message, bool isBoss = true) { // Order: // Do text manipulations first @@ -72,7 +77,7 @@ public sealed class MobsterAccentSystem : EntitySystem //So the suffix can be allcapped var lastWordAllCaps = !RegexLastWord.Match(msg).Value.Any(char.IsLower); var suffix = ""; - if (component.IsBoss) + if (isBoss) { var pick = _random.Next(1, 4); suffix = Loc.GetString($"accent-mobster-suffix-boss-{pick}"); @@ -90,6 +95,7 @@ public sealed class MobsterAccentSystem : EntitySystem return msg; } + private void OnAccentGet(EntityUid uid, MobsterAccentComponent component, AccentGetEvent args) { args.Message = Accentuate(args.Message, component); diff --git a/Content.Server/Speech/EntitySystems/MumbleAccentSystem.cs b/Content.Server/Speech/EntitySystems/MumbleAccentSystem.cs index 757f31ad9e..c7de7cf198 100644 --- a/Content.Server/Speech/EntitySystems/MumbleAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/MumbleAccentSystem.cs @@ -13,7 +13,12 @@ public sealed class MumbleAccentSystem : EntitySystem SubscribeLocalEvent(OnAccentGet); } - public string Accentuate(string message, MumbleAccentComponent component) + private string Accentuate(string message, MumbleAccentComponent _) + { + return Accentuate(message); + } + + public string Accentuate(string message) { return _replacement.ApplyReplacements(message, "mumble"); } diff --git a/Content.Server/Speech/EntitySystems/OwOAccentSystem.cs b/Content.Server/Speech/EntitySystems/OwOAccentSystem.cs index 2bafd7cd74..9fd608a821 100644 --- a/Content.Server/Speech/EntitySystems/OwOAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/OwOAccentSystem.cs @@ -1,5 +1,6 @@ using Content.Server.Speech.Components; using Robust.Shared.Random; +using Robust.Shared.Utility; namespace Content.Server.Speech.EntitySystems { diff --git a/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs b/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs index 84298cbf01..bdcfd5f50b 100644 --- a/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs @@ -42,6 +42,11 @@ public sealed class PirateAccentSystem : EntitySystem return msg; } + public string Accentuate(string message) + { + return Accentuate(message, new PirateAccentComponent { YarrChance = 0.3f }); + } + private void OnAccentGet(EntityUid uid, PirateAccentComponent component, AccentGetEvent args) { args.Message = Accentuate(args.Message, component); diff --git a/Content.Server/Speech/EntitySystems/RandomAccentuator.cs b/Content.Server/Speech/EntitySystems/RandomAccentuator.cs new file mode 100644 index 0000000000..3c583de862 --- /dev/null +++ b/Content.Server/Speech/EntitySystems/RandomAccentuator.cs @@ -0,0 +1,66 @@ +using Robust.Shared.Random; +using Robust.Shared.Utility; + +namespace Content.Server.Speech.EntitySystems; + +public static class RandomAccentuator +{ + private const float DefaultAccentuationChance = 0.25f; + + private const float DefaultReaccentuationChance = 0.15f; + + private const float MaxReaccentuations = 4; + + public static string MaybeAccentuate(string message, + float chance = DefaultAccentuationChance, + float reaccentuationChance = DefaultReaccentuationChance) + { + var random = IoCManager.Resolve(); + var singleAccentuator = new SingleAccentuator(); + return random.Prob(chance) + ? MaybeAccentuateDirect(message, singleAccentuator, random, reaccentuationChance) + : message; + } + + public static FormattedMessage MaybeAccentuate(FormattedMessage message, + float chance = DefaultAccentuationChance, + float reaccentuationChance = DefaultReaccentuationChance) + { + var random = IoCManager.Resolve(); + var singleAccentuator = new SingleAccentuator(); + var newMessage = new FormattedMessage(); + + foreach (var node in message) + { + if (random.Prob(chance) && node.Name is null && node.Value.TryGetString(out var text) && + !string.IsNullOrWhiteSpace(text)) + { + var accentedText = MaybeAccentuateDirect(text, singleAccentuator, random, reaccentuationChance); + newMessage.PushTag(new MarkupNode(accentedText)); + } + else + { + newMessage.PushTag(node); + } + } + + return newMessage; + } + + private static string MaybeAccentuateDirect(string message, + SingleAccentuator singleAccentuator, + IRobustRandom random, + float reaccentuationChance) + { + for (var i = 0; i < MaxReaccentuations; i++) + { + if (i > 0 && !random.Prob(reaccentuationChance)) + continue; + + singleAccentuator.NextSystem(); + message = singleAccentuator.Accentuate(message); + } + + return message; + } +} diff --git a/Content.Server/Speech/EntitySystems/SingleAccentuator.cs b/Content.Server/Speech/EntitySystems/SingleAccentuator.cs new file mode 100644 index 0000000000..972b795a5b --- /dev/null +++ b/Content.Server/Speech/EntitySystems/SingleAccentuator.cs @@ -0,0 +1,59 @@ +using Robust.Shared.Random; + +namespace Content.Server.Speech.EntitySystems; + +public sealed class SingleAccentuator +{ + private EntitySystem? _accentSystem; + + private readonly IReadOnlyList _accentSystems; + + public SingleAccentuator() + { + var entMan = IoCManager.Resolve(); + _accentSystems = new List + { + entMan.EntitySysManager.GetEntitySystem(), + entMan.EntitySysManager.GetEntitySystem(), + entMan.EntitySysManager.GetEntitySystem(), + entMan.EntitySysManager.GetEntitySystem(), + entMan.EntitySysManager.GetEntitySystem(), + entMan.EntitySysManager.GetEntitySystem(), + entMan.EntitySysManager.GetEntitySystem(), + entMan.EntitySysManager.GetEntitySystem(), + entMan.EntitySysManager.GetEntitySystem(), + entMan.EntitySysManager.GetEntitySystem(), + }; + NextSystem(); + } + + public void NextSystem() + { + _accentSystem = GetRandomAccentSystem(); + } + + private EntitySystem GetRandomAccentSystem() + { + var random = IoCManager.Resolve(); + + return random.Pick(_accentSystems); + } + + public string Accentuate(string message) + { + return _accentSystem switch + { + OwOAccentSystem owoAccentSystem => owoAccentSystem.Accentuate(message), + GermanAccentSystem germanAccentSystem => germanAccentSystem.Accentuate(message), + RussianAccentSystem russianAccentSystem => russianAccentSystem.Accentuate(message), + FrenchAccentSystem frenchAccentSystem => frenchAccentSystem.Accentuate(message), + MumbleAccentSystem mumbleAccentSystem => mumbleAccentSystem.Accentuate(message), + SlurredSystem slurredSystem => slurredSystem.Accentuate(message), + MobsterAccentSystem mobsterAccentSystem => mobsterAccentSystem.Accentuate(message), + PirateAccentSystem pirateAccentSystem => pirateAccentSystem.Accentuate(message), + MonkeyAccentSystem monkeyAccentSystem => monkeyAccentSystem.Accentuate(message), + StutteringSystem stutteringSystem => stutteringSystem.Accentuate(message), + _ => message + }; + } +} diff --git a/Content.Server/Speech/EntitySystems/SlurredSystem.cs b/Content.Server/Speech/EntitySystems/SlurredSystem.cs index 7e6fd896aa..b4c1426411 100644 --- a/Content.Server/Speech/EntitySystems/SlurredSystem.cs +++ b/Content.Server/Speech/EntitySystems/SlurredSystem.cs @@ -54,7 +54,7 @@ public sealed class SlurredSystem : SharedSlurredSystem args.Message = Accentuate(args.Message, scale); } - private string Accentuate(string message, float scale) + public string Accentuate(string message, float scale = 0.3f) { var sb = new StringBuilder(); diff --git a/Content.Server/Speech/EntitySystems/StutteringSystem.cs b/Content.Server/Speech/EntitySystems/StutteringSystem.cs index ef7ae505bf..56595cfd68 100644 --- a/Content.Server/Speech/EntitySystems/StutteringSystem.cs +++ b/Content.Server/Speech/EntitySystems/StutteringSystem.cs @@ -70,5 +70,10 @@ namespace Content.Server.Speech.EntitySystems return finalMessage.ToString(); } + + public string Accentuate(string message) + { + return Accentuate(message, new StutteringAccentComponent()); + } } } diff --git a/Content.Server/StationEvents/Components/MeteorSwarmComponent.cs b/Content.Server/StationEvents/Components/MeteorSwarmComponent.cs index 1cde2ac8fa..135a8c9ee7 100644 --- a/Content.Server/StationEvents/Components/MeteorSwarmComponent.cs +++ b/Content.Server/StationEvents/Components/MeteorSwarmComponent.cs @@ -33,7 +33,7 @@ public sealed partial class MeteorSwarmComponent : Component public LocId? Announcement = "station-event-meteor-swarm-start-announcement"; [DataField] - public SoundSpecifier? AnnouncementSound = new SoundPathSpecifier("/Audio/Announcements/meteors.ogg") + public SoundSpecifier? AnnouncementSound = new SoundPathSpecifier("/Audio/Announcements/Intern/meteors.ogg") { Params = new() { diff --git a/Content.Server/StationEvents/Components/NukeCalibrationRuleComponent.cs b/Content.Server/StationEvents/Components/NukeCalibrationRuleComponent.cs new file mode 100644 index 0000000000..daab763e97 --- /dev/null +++ b/Content.Server/StationEvents/Components/NukeCalibrationRuleComponent.cs @@ -0,0 +1,36 @@ +using Content.Server.Nuke; +using Content.Server.StationEvents.Events; +using Robust.Shared.Audio; + +namespace Content.Server.StationEvents.Components; + +[RegisterComponent, Access(typeof(NukeCalibrationRule))] +public sealed partial class NukeCalibrationRuleComponent : Component +{ + /// + /// Sound of the announcement to play if automatic disarm of the nuke was unsuccessful. + /// + [DataField] + public SoundSpecifier AutoDisarmFailedSound = new SoundPathSpecifier("/Audio/Misc/notice1.ogg"); + /// + /// Sound of the announcement to play if automatic disarm of the nuke was successful. + /// + [DataField] + public SoundSpecifier AutoDisarmSuccessSound = new SoundPathSpecifier("/Audio/Misc/notice2.ogg"); + + [DataField] + public EntityUid AffectedStation; + /// + /// The nuke that was '''calibrated'''. + /// + [DataField] + public EntityUid AffectedNuke; + [DataField] + public float NukeTimer = 170f; + [DataField] + public float AutoDisarmChance = 0.5f; + [DataField] + public float TimeUntilFirstAnnouncement = 15f; + [DataField] + public bool FirstAnnouncementMade = false; +} diff --git a/Content.Server/StationEvents/Components/PhoneBillRuleComponent.cs b/Content.Server/StationEvents/Components/PhoneBillRuleComponent.cs new file mode 100644 index 0000000000..f8c3593436 --- /dev/null +++ b/Content.Server/StationEvents/Components/PhoneBillRuleComponent.cs @@ -0,0 +1,44 @@ +using Content.Server.StationEvents.Events; +using Robust.Shared.Audio; + +namespace Content.Server.StationEvents.Components; + +[RegisterComponent] +public sealed partial class PhoneBillRuleComponent : Component +{ + /// + /// How long until payment is collected. + /// + [DataField] + public TimeSpan Delay = TimeSpan.Zero; + + /// + /// Cost of the phone bill per PDA or ID. + /// + [DataField] + public int Price = 0; + + /// + /// A list of PDAs and IDs on someone, keyed by that person. + /// + [DataField] + public Dictionary> YoullPayForThis = new(); + + /// + /// The sound that plays when the first announcement is sent. + /// + [DataField] + public SoundSpecifier? InitialSound = new SoundPathSpecifier("/Audio/Misc/notice1.ogg"); + + /// + /// The sound that plays when a failure announcement is sent. + /// + [DataField] + public SoundSpecifier? FailureSound = new SoundPathSpecifier("/Audio/Effects/sadtrombone.ogg"); + + /// + /// The sound that plays when a success announcement is sent. + /// + [DataField] + public SoundSpecifier? SuccessSound = new SoundPathSpecifier("/Audio/Announcements/announce.ogg"); +} diff --git a/Content.Server/StationEvents/Components/VeryBadDayRuleComponent.cs b/Content.Server/StationEvents/Components/VeryBadDayRuleComponent.cs new file mode 100644 index 0000000000..ba1db6851f --- /dev/null +++ b/Content.Server/StationEvents/Components/VeryBadDayRuleComponent.cs @@ -0,0 +1,10 @@ +namespace Content.Server.StationEvents.Components; + +/// +/// component for a rule that makes everyone hurt and drunk, calls the hour-long shuttle and sets alert to red +/// +[RegisterComponent] +public sealed partial class VeryBadDayRuleComponent : Component +{ + +} diff --git a/Content.Server/StationEvents/Events/NukeCalibrationRule.cs b/Content.Server/StationEvents/Events/NukeCalibrationRule.cs new file mode 100644 index 0000000000..49c39ea146 --- /dev/null +++ b/Content.Server/StationEvents/Events/NukeCalibrationRule.cs @@ -0,0 +1,110 @@ +using Content.Server.StationEvents.Components; +using Content.Server.Nuke; +using Content.Shared.GameTicking.Components; +using Content.Shared.Station.Components; +using Content.Shared.Nuke; +using Content.Server.Chat.Systems; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Player; +using Content.Server.Popups; +using Content.Shared.Popups; +using Robust.Server.GameObjects; + +namespace Content.Server.StationEvents.Events +{ + public sealed class NukeCalibrationRule : StationEventSystem + { + [Dependency] private readonly NukeSystem _nukeSystem = default!; + [Dependency] private readonly ChatSystem _chatSystem = default!; + [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly PopupSystem _popups = default!; + [Dependency] private readonly TransformSystem _transform = default!; + [Dependency] private readonly SharedMapSystem _map = default!; + + protected override void Started(EntityUid uid, NukeCalibrationRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) + { + base.Started(uid, component, gameRule, args); + + if (!TryGetRandomStation(out var affectedStation)) + return; + + component.AffectedStation = affectedStation.Value; + + var nukeQuery = AllEntityQuery(); + while (nukeQuery.MoveNext(out var nuke, out var nukeComponent, out var nukeTransform)) + { + // let's not arm the nuke if it isn't on station + if (CompOrNull(nukeTransform.GridUid)?.Station != affectedStation) + continue; + + if (nukeComponent.Status == NukeStatus.ARMED) + continue; + + // If it isn't anchored, then try to anchor it. If we can't anchor it, just continue. + if (!nukeTransform.Anchored) + if (!_transform.AnchorEntity(nuke, nukeTransform)) + continue; + + _nukeSystem.SetRemainingTime(nuke, component.NukeTimer); + _nukeSystem.ArmBomb(nuke, nukeComponent); + component.AffectedNuke = nuke; + + if (!nukeComponent.DiskSlot.HasItem) + _popups.PopupEntity(Loc.GetString("station-event-nuke-calibration-arm-popup"), nuke, PopupType.LargeCaution); + else + { + _transform.SetCoordinates(nukeComponent.DiskSlot.ContainerSlot!.ContainedEntity!.Value, nukeTransform.Coordinates); + _popups.PopupEntity(Loc.GetString("station-event-nuke-calibration-arm-and-disk-ejected-popup"), nuke, PopupType.LargeCaution); + } + + break; + } + } + + protected override void Ended(EntityUid uid, NukeCalibrationRuleComponent component, GameRuleComponent gameRule, GameRuleEndedEvent args) + { + base.Ended(uid, component, gameRule, args); + + if (!TryComp(component.AffectedNuke, out var nukeComp)) + return; + + // Lucky enough, so nuke gets disarmed for you :D + if (RobustRandom.NextFloat() <= component.AutoDisarmChance) + { + // 220 + _nukeSystem.SetRemainingTime(component.AffectedNuke, nukeComp.Timer); + if (nukeComp.Status != NukeStatus.ARMED) + return; + + _nukeSystem.DisarmBomb(component.AffectedNuke, nukeComp); + _chatSystem.DispatchGlobalAnnouncement(Loc.GetString("station-event-nuke-calibration-disarm-success-announcement"), playSound: false, colorOverride: Color.Green); + _audioSystem.PlayGlobal(component.AutoDisarmSuccessSound, Filter.Broadcast(), true); + + return; + } + + if (nukeComp.Status != NukeStatus.ARMED) + return; + + // Ooops..... + _nukeSystem.SetDiskBypassEnabled(component.AffectedNuke, true, true, nukeComp); + _chatSystem.DispatchGlobalAnnouncement(Loc.GetString("station-event-nuke-calibration-disarm-fail-announcement"), playSound: false, colorOverride: Color.Crimson); + _audioSystem.PlayGlobal(component.AutoDisarmFailedSound, Filter.Broadcast(), true); + } + + protected override void ActiveTick(EntityUid uid, NukeCalibrationRuleComponent component, GameRuleComponent gameRule, float frameTime) + { + base.ActiveTick(uid, component, gameRule, frameTime); + + if (component.FirstAnnouncementMade == true) + return; + + component.TimeUntilFirstAnnouncement -= frameTime; + if (component.TimeUntilFirstAnnouncement > 0f) + return; + + component.FirstAnnouncementMade = true; + _chatSystem.DispatchGlobalAnnouncement(Loc.GetString("station-event-nuke-calibration-midway-announcement"), colorOverride: Color.Yellow); + } + } +} diff --git a/Content.Server/StationEvents/Events/PhoneBillRule.cs b/Content.Server/StationEvents/Events/PhoneBillRule.cs new file mode 100644 index 0000000000..1e7adf03bb --- /dev/null +++ b/Content.Server/StationEvents/Events/PhoneBillRule.cs @@ -0,0 +1,110 @@ +using Content.Server.PhoneBill; +using Content.Server.Stack; +using Content.Server.StationEvents.Components; +using Content.Shared.Cargo.Components; +using Content.Shared.GameTicking.Components; +using Content.Shared.Inventory; +using Content.Shared.Mobs; +using Content.Shared.Mobs.Components; +using Content.Shared.Stacks; +using Robust.Server.Containers; +using Robust.Shared.Containers; + +namespace Content.Server.StationEvents.Events; + +public sealed class PhoneBillRule : StationEventSystem +{ + [Dependency] private readonly IEntityManager _entMan = default!; + [Dependency] private readonly ContainerSystem _containerSystem = default!; + [Dependency] private readonly InventorySystem _inventorySystem = default!; + [Dependency] private readonly StackSystem _stackSystem = default!; + + protected override void Added(EntityUid uid, PhoneBillRuleComponent component, GameRuleComponent gameRule, GameRuleAddedEvent args) + { + base.Added(uid, component, gameRule, args); + ChatSystem.DispatchGlobalAnnouncement( Loc.GetString("station-event-phone-bill-announcement", ("delay", (int)component.Delay.TotalSeconds), ("price", component.Price)), announcementSound: component.InitialSound, colorOverride: Color.Red); + + List PhoneBillable = new(); + + var billableQuery = _entMan.AllEntityQueryEnumerator(); + while (billableQuery.MoveNext(out var target, out var billable)) + { + if (billable.RequireLiving && + TryComp(uid, out MobStateComponent? mobState) && + mobState.CurrentState != MobState.Alive) + continue; + PhoneBillable.Add(target); + } + + var billTargetQuery = _entMan.AllEntityQueryEnumerator(); + while (billTargetQuery.MoveNext(out var target, out var _)) + { + var lastTarget = target; + while (_containerSystem.TryGetContainingContainer((lastTarget, null, null), out var container)) + { + if (PhoneBillable.Contains(container.Owner)) + { + if (!component.YoullPayForThis.TryGetValue(container.Owner, out var list)) + { + list = new(); + component.YoullPayForThis[container.Owner] = list; + } + list.Add(target); + break; + } + + lastTarget = container.Owner; + } + } + } + + protected override void Started(EntityUid uid, PhoneBillRuleComponent component, GameRuleComponent gameRule, GameRuleStartedEvent args) + { + if (component.YoullPayForThis.Count == 0) + return; // Huh. + + int unpaid = 0; + foreach (var (forsaken, items) in component.YoullPayForThis) + { + var tendered = false; + var required = component.Price * items.Count; + foreach (var ransom in _inventorySystem.GetHandOrInventoryEntities(forsaken)) + { + if (HasComp(ransom, typeof(CashComponent)) + && TryComp(ransom, out StackComponent? stack) + && stack.Count >= required) + { + _stackSystem.SetCount(ransom, stack.Count - required); + tendered = true; + break; + } + } + if (tendered) + continue; + + // THEN PAY WITH YOUR BLOOD! + + unpaid++; + + foreach (var item in items) + { + if (HasComp(item)) + foreach (var container in _containerSystem.GetAllContainers(item)) + { + _containerSystem.EmptyContainer(container); + } + _entMan.QueueDeleteEntity(item); + } + } + + if (unpaid == 0) + { + ChatSystem.DispatchGlobalAnnouncement(Loc.GetString("station-event-phone-bill-allpaid-announcement"), announcementSound: component.SuccessSound); + } + else + { + var unpaidPercent = (int)(100f * unpaid / component.YoullPayForThis.Count); + ChatSystem.DispatchGlobalAnnouncement(Loc.GetString("station-event-phone-bill-unpaid-announcement", ("percent", unpaidPercent)), announcementSound: component.FailureSound, colorOverride: Color.Yellow); + } + } +} diff --git a/Content.Server/StationEvents/Events/StationEventSystem.cs b/Content.Server/StationEvents/Events/StationEventSystem.cs index aaa48a482e..3e1c6e82fd 100644 --- a/Content.Server/StationEvents/Events/StationEventSystem.cs +++ b/Content.Server/StationEvents/Events/StationEventSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Administration.Logs; using Content.Server.Chat.Systems; using Content.Server.GameTicking; using Content.Server.GameTicking.Rules; +using Content.Server.Speech.EntitySystems; using Content.Server.Station.Systems; using Content.Server.StationEvents.Components; using Content.Shared.Database; @@ -46,7 +47,11 @@ public abstract class StationEventSystem : GameRuleSystem where T : ICompo Filter allPlayersInGame = Filter.Empty().AddWhere(GameTicker.UserHasJoinedGame); if (stationEvent.StartAnnouncement != null) - ChatSystem.DispatchFilteredAnnouncement(allPlayersInGame, Loc.GetString(stationEvent.StartAnnouncement), playSound: false, colorOverride: stationEvent.StartAnnouncementColor); + { + var announcement = Loc.GetString(stationEvent.StartAnnouncement); + announcement = RandomAccentuator.MaybeAccentuate(announcement); + ChatSystem.DispatchFilteredAnnouncement(allPlayersInGame, announcement, playSound: false, colorOverride: stationEvent.StartAnnouncementColor); + } Audio.PlayGlobal(stationEvent.StartAudio, allPlayersInGame, true); } diff --git a/Content.Server/StationEvents/Events/VeryBadDayRule.cs b/Content.Server/StationEvents/Events/VeryBadDayRule.cs new file mode 100644 index 0000000000..8f4b0e236e --- /dev/null +++ b/Content.Server/StationEvents/Events/VeryBadDayRule.cs @@ -0,0 +1,44 @@ +using Content.Server.AlertLevel; +using Content.Server.RoundEnd; +using Content.Server.StationEvents.Components; +using Content.Shared.Damage; +using Content.Shared.Damage.Prototypes; +using Content.Shared.Drunk; +using Content.Shared.GameTicking.Components; +using Content.Shared.Humanoid; +using Content.Shared.Mind.Components; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; + +namespace Content.Server.StationEvents.Events; + +public sealed class VeryBadDayRule : StationEventSystem +{ + [Dependency] private readonly SharedDrunkSystem _drunkSystem = default!; + [Dependency] private readonly DamageableSystem _damageableSystem = default!; + [Dependency] private readonly IPrototypeManager _protoMan = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly RoundEndSystem _roundEndSystem = default!; + [Dependency] private readonly AlertLevelSystem _alertLevelSystem = default!; + + protected override void Started(EntityUid uid, + VeryBadDayRuleComponent component, + GameRuleComponent gameRule, + GameRuleStartedEvent args) + { + base.Started(uid, component, gameRule, args); + + if (!TryGetRandomStation(out var station)) + return; + + var query = EntityQueryEnumerator(); + + while (query.MoveNext(out var ent, out _, out _)) + { + _drunkSystem.TryApplyDrunkenness(ent, 1000); + _damageableSystem.TryChangeDamage(ent, + new DamageSpecifier(_protoMan.Index("Brute"), _random.Next(5, 50))); + } + _alertLevelSystem.SetLevel((EntityUid)station, "red", false, true, true); + } +} diff --git a/Content.Server/Teleportation/HandTeleporterSystem.cs b/Content.Server/Teleportation/HandTeleporterSystem.cs index 5c9baf1854..aa4f7eec82 100644 --- a/Content.Server/Teleportation/HandTeleporterSystem.cs +++ b/Content.Server/Teleportation/HandTeleporterSystem.cs @@ -95,6 +95,10 @@ public sealed class HandTeleporterSystem : EntitySystem var timeout = EnsureComp(user); timeout.EnteredPortal = null; component.FirstPortal = Spawn(component.FirstPortalPrototype, Transform(user).Coordinates); + + if (component.AllowPortalsOnDifferentMaps && TryComp(component.FirstPortal, out var portal)) + portal.CanTeleportToOtherMaps = true; + _adminLogger.Add(LogType.EntitySpawn, LogImpact.High, $"{ToPrettyString(user):player} opened {ToPrettyString(component.FirstPortal.Value)} at {Transform(component.FirstPortal.Value).Coordinates} using {ToPrettyString(uid)}"); _audio.PlayPvs(component.NewPortalSound, uid); } @@ -113,6 +117,10 @@ public sealed class HandTeleporterSystem : EntitySystem var timeout = EnsureComp(user); timeout.EnteredPortal = null; component.SecondPortal = Spawn(component.SecondPortalPrototype, Transform(user).Coordinates); + + if (component.AllowPortalsOnDifferentMaps && TryComp(component.SecondPortal, out var portal)) + portal.CanTeleportToOtherMaps = true; + _adminLogger.Add(LogType.EntitySpawn, LogImpact.High, $"{ToPrettyString(user):player} opened {ToPrettyString(component.SecondPortal.Value)} at {Transform(component.SecondPortal.Value).Coordinates} linked to {ToPrettyString(component.FirstPortal!.Value)} using {ToPrettyString(uid)}"); _link.TryLink(component.FirstPortal!.Value, component.SecondPortal.Value, true); _audio.PlayPvs(component.NewPortalSound, uid); diff --git a/Content.Server/Traitor/Uplink/Commands/AddUplinkCommand.cs b/Content.Server/Traitor/Uplink/Commands/AddUplinkCommand.cs index f5fde87c11..edf95732f4 100644 --- a/Content.Server/Traitor/Uplink/Commands/AddUplinkCommand.cs +++ b/Content.Server/Traitor/Uplink/Commands/AddUplinkCommand.cs @@ -95,7 +95,7 @@ namespace Content.Server.Traitor.Uplink.Commands // Finally add uplink var uplinkSys = _entManager.System(); - if (!uplinkSys.AddUplink(user, 20, uplinkEntity: uplinkEntity, giveDiscounts: isDiscounted)) + if (!uplinkSys.AddUplink(user, 20, out var _, uplinkEntity: uplinkEntity, giveDiscounts: isDiscounted)) { shell.WriteLine(Loc.GetString("add-uplink-command-error-2")); } diff --git a/Content.Server/Traitor/Uplink/UplinkSystem.cs b/Content.Server/Traitor/Uplink/UplinkSystem.cs index f30d2d7b4c..e2e4525f0d 100644 --- a/Content.Server/Traitor/Uplink/UplinkSystem.cs +++ b/Content.Server/Traitor/Uplink/UplinkSystem.cs @@ -10,6 +10,7 @@ using Content.Shared.PDA; using Content.Shared.Store; using Content.Shared.Store.Components; using Robust.Shared.Prototypes; +using Robust.Shared.Random; namespace Content.Server.Traitor.Uplink; @@ -21,6 +22,7 @@ public sealed class UplinkSystem : EntitySystem [Dependency] private readonly StoreSystem _store = default!; [Dependency] private readonly SharedSubdermalImplantSystem _subdermalImplant = default!; [Dependency] private readonly SharedMindSystem _mind = default!; + [Dependency] private readonly IRobustRandom _random = default!; [ValidatePrototypeId] public const string TelecrystalCurrencyPrototype = "Telecrystal"; @@ -32,12 +34,14 @@ public sealed class UplinkSystem : EntitySystem /// /// The person who is getting the uplink /// The amount of currency on the uplink. If null, will just use the amount specified in the preset. + /// ThT amooma oo currrruc oo tht upllpu. II nuun, wiiw juuj usu tht amooma speciceps ii tht preerp. /// The entity that will actually have the uplink functionality. Defaults to the PDA if null. /// Marker that enables discounts for uplink items. /// Whether or not the uplink was added successfully public bool AddUplink( EntityUid user, FixedPoint2 balance, + out FixedPoint2 adjustedBalance, EntityUid? uplinkEntity = null, bool giveDiscounts = false) { @@ -45,6 +49,11 @@ public sealed class UplinkSystem : EntitySystem uplinkEntity ??= FindUplinkTarget(user); + float x = MathF.Min(0.999999999f, _random.NextFloat()); // avoid the logarithm becoming infinite + balance *= 0.75f - Math.Log2(1f - x); // still more than twice as much on average, but you have a ~20% chance to get less. Minimum is 75% of original value + balance = Math.Round((float)balance); + adjustedBalance = balance; + if (uplinkEntity == null) return ImplantUplink(user, balance, giveDiscounts); diff --git a/Content.Server/_Wega/Disease/DiseaseProtectionSystem.cs b/Content.Server/_Wega/Disease/DiseaseProtectionSystem.cs index f25d59acea..9ce38b7caa 100644 --- a/Content.Server/_Wega/Disease/DiseaseProtectionSystem.cs +++ b/Content.Server/_Wega/Disease/DiseaseProtectionSystem.cs @@ -14,9 +14,6 @@ public sealed class DiseaseProtectionSystem : EntitySystem private void OnMaskToggled(Entity ent, ref ItemMaskToggledEvent args) { - if (args.Mask.Comp is not { } maskComp) - return; - - ent.Comp.IsActive = maskComp.IsToggled; + ent.Comp.IsActive = args.IsToggled; } } diff --git a/Content.Shared/Access/Components/IdCardConsoleComponent.cs b/Content.Shared/Access/Components/IdCardConsoleComponent.cs index 4f1c27fb4d..c78bd4d131 100644 --- a/Content.Shared/Access/Components/IdCardConsoleComponent.cs +++ b/Content.Shared/Access/Components/IdCardConsoleComponent.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Access.Components; public sealed partial class IdCardConsoleComponent : Component { public const int MaxFullNameLength = 30; - public const int MaxJobTitleLength = 30; + public const int MaxJobTitleLength = 60; public static string PrivilegedIdCardSlotId = "IdCardConsole-privilegedId"; public static string TargetIdCardSlotId = "IdCardConsole-targetId"; diff --git a/Content.Shared/Body/Events/RespiratorEvents.cs b/Content.Shared/Body/Events/RespiratorEvents.cs new file mode 100644 index 0000000000..ecbe332c2b --- /dev/null +++ b/Content.Shared/Body/Events/RespiratorEvents.cs @@ -0,0 +1,6 @@ +using Content.Shared.Alert; +using Robust.Shared.Serialization; + +namespace Content.Shared.Body.Events; + +public sealed partial class ToggleBreathingAlertEvent : BaseAlertEvent; diff --git a/Content.Shared/Clothing/ClothingEvents.cs b/Content.Shared/Clothing/ClothingEvents.cs index 9b0b69d186..83afea4597 100644 --- a/Content.Shared/Clothing/ClothingEvents.cs +++ b/Content.Shared/Clothing/ClothingEvents.cs @@ -65,13 +65,13 @@ public sealed partial class ToggleMaskEvent : InstantActionEvent { } /// Event raised on the mask entity when it is toggled. /// [ByRefEvent] -public readonly record struct ItemMaskToggledEvent(Entity Mask, EntityUid? Wearer); +public readonly record struct ItemMaskToggledEvent(EntityUid Wearer, string? equippedPrefix, bool IsToggled, bool IsEquip); /// /// Event raised on the entity wearing the mask when it is toggled. /// [ByRefEvent] -public readonly record struct WearerMaskToggledEvent(Entity Mask); +public readonly record struct WearerMaskToggledEvent(bool IsToggled); /// /// Raised on the clothing entity when it is equipped to a valid slot, diff --git a/Content.Shared/Clothing/Components/ClothingComponent.cs b/Content.Shared/Clothing/Components/ClothingComponent.cs index 260af210e0..4f8058dbf5 100644 --- a/Content.Shared/Clothing/Components/ClothingComponent.cs +++ b/Content.Shared/Clothing/Components/ClothingComponent.cs @@ -1,4 +1,3 @@ -using System.Diagnostics.CodeAnalysis; using Content.Shared.Clothing.EntitySystems; using Content.Shared.DoAfter; using Content.Shared.Inventory; @@ -29,15 +28,8 @@ public sealed partial class ClothingComponent : Component [DataField("quickEquip")] public bool QuickEquip = true; - /// - /// The slots in which the clothing is considered "worn" or "equipped". E.g., putting shoes in your pockets does not - /// equip them as far as clothing related events are concerned. - /// - /// - /// Note that this may be a combination of different slot flags, not a singular bit. - /// [ViewVariables(VVAccess.ReadWrite)] - [DataField(required: true)] + [DataField("slots", required: true)] [Access(typeof(ClothingSystem), typeof(InventorySystem), Other = AccessPermissions.ReadExecute)] public SlotFlags Slots = SlotFlags.NONE; @@ -68,25 +60,9 @@ public sealed partial class ClothingComponent : Component public string? RsiPath; /// - /// Name of the inventory slot the clothing is currently in. - /// Note that this being non-null does not mean the clothing is considered "worn" or "equipped" unless the slot - /// satisfies the flags. + /// Name of the inventory slot the clothing is in. /// - [DataField] public string? InSlot; - // TODO CLOTHING - // Maybe keep this null unless its in a valid slot? - // To lazy to figure out ATM if that would break anything. - // And when doing this, combine InSlot and InSlotFlag, as it'd be a breaking change for downstreams anyway - - /// - /// Slot flags of the slot the clothing is currently in. See also . - /// - [DataField] - public SlotFlags? InSlotFlag; - // TODO CLOTHING - // Maybe keep this null unless its in a valid slot? - // And when doing this, combine InSlot and InSlotFlag, as it'd be a breaking change for downstreams anyway [DataField, ViewVariables(VVAccess.ReadWrite)] public TimeSpan EquipDelay = TimeSpan.Zero; diff --git a/Content.Shared/Clothing/Components/FoldableClothingComponent.cs b/Content.Shared/Clothing/Components/FoldableClothingComponent.cs index 7b03adcc8d..ffcb52b457 100644 --- a/Content.Shared/Clothing/Components/FoldableClothingComponent.cs +++ b/Content.Shared/Clothing/Components/FoldableClothingComponent.cs @@ -19,6 +19,7 @@ public sealed partial class FoldableClothingComponent : Component [DataField] public SlotFlags? UnfoldedSlots; + /// /// What equipped prefix does this have while in folded form? /// @@ -35,11 +36,11 @@ public sealed partial class FoldableClothingComponent : Component /// Which layers does this hide when Unfolded? See and /// [DataField] - public HashSet? UnfoldedHideLayers = new(); + public HashSet UnfoldedHideLayers = new(); /// /// Which layers does this hide when folded? See and /// [DataField] - public HashSet? FoldedHideLayers = new(); + public HashSet FoldedHideLayers = new(); } diff --git a/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs b/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs index b5445c28b9..ac3d9b9789 100644 --- a/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs +++ b/Content.Shared/Clothing/Components/HideLayerClothingComponent.cs @@ -1,5 +1,4 @@ using Content.Shared.Humanoid; -using Content.Shared.Inventory; using Robust.Shared.GameStates; namespace Content.Shared.Clothing.Components; @@ -12,17 +11,10 @@ namespace Content.Shared.Clothing.Components; public sealed partial class HideLayerClothingComponent : Component { /// - /// The appearance layer(s) to hide. Use Layers instead. + /// The appearance layer to hide. /// [DataField] - [Obsolete("This attribute is deprecated, please use Layers instead.")] - public HashSet? Slots; - - /// - /// A map of the appearance layer(s) to hide, and the equipment slot that should hide them. - /// - [DataField] - public Dictionary Layers = new(); + public HashSet Slots = new(); /// /// If true, the layer will only hide when the item is in a toggled state (e.g. masks) diff --git a/Content.Shared/Clothing/Components/MaskComponent.cs b/Content.Shared/Clothing/Components/MaskComponent.cs index 985219df2e..47f2fd3079 100644 --- a/Content.Shared/Clothing/Components/MaskComponent.cs +++ b/Content.Shared/Clothing/Components/MaskComponent.cs @@ -8,22 +8,15 @@ namespace Content.Shared.Clothing.Components; [Access(typeof(MaskSystem))] public sealed partial class MaskComponent : Component { - /// - /// Action for toggling a mask (e.g., pulling the mask down or putting it back up) - /// [DataField, AutoNetworkedField] public EntProtoId ToggleAction = "ActionToggleMask"; /// - /// Action for toggling a mask (e.g., pulling the mask down or putting it back up) + /// This mask can be toggled (pulled up/down) /// [DataField, AutoNetworkedField] public EntityUid? ToggleActionEntity; - /// - /// Whether the mask is currently toggled (e.g., pulled down). - /// This generally disables some of the mask's functionality. - /// [DataField, AutoNetworkedField] public bool IsToggled; @@ -34,13 +27,13 @@ public sealed partial class MaskComponent : Component public string EquippedPrefix = "up"; /// - /// When , the mask will not be toggleable. + /// When will function normally, otherwise will not react to events /// [DataField("enabled"), AutoNetworkedField] - public bool IsToggleable = true; + public bool IsEnabled = true; /// - /// When will disable when folded + /// When will disable when folded /// [DataField, AutoNetworkedField] public bool DisableOnFolded; diff --git a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs index f8ab79ec78..3b26360f10 100644 --- a/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/ClothingSystem.cs @@ -16,9 +16,9 @@ public abstract class ClothingSystem : EntitySystem { [Dependency] private readonly SharedItemSystem _itemSys = default!; [Dependency] private readonly SharedContainerSystem _containerSys = default!; + [Dependency] private readonly SharedHumanoidAppearanceSystem _humanoidSystem = default!; [Dependency] private readonly InventorySystem _invSystem = default!; [Dependency] private readonly SharedHandsSystem _handsSystem = default!; - [Dependency] private readonly HideLayerClothingSystem _hideLayer = default!; public override void Initialize() { @@ -29,6 +29,7 @@ public abstract class ClothingSystem : EntitySystem SubscribeLocalEvent(OnHandleState); SubscribeLocalEvent(OnGotEquipped); SubscribeLocalEvent(OnGotUnequipped); + SubscribeLocalEvent(OnMaskToggled); SubscribeLocalEvent(OnEquipDoAfter); SubscribeLocalEvent(OnUnequipDoAfter); @@ -84,19 +85,59 @@ public abstract class ClothingSystem : EntitySystem } } + private void ToggleVisualLayers(EntityUid equipee, HashSet layers, HashSet appearanceLayers) + { + foreach (HumanoidVisualLayers layer in layers) + { + if (!appearanceLayers.Contains(layer)) + continue; + + InventorySystem.InventorySlotEnumerator enumerator = _invSystem.GetSlotEnumerator(equipee); + + bool shouldLayerShow = true; + while (enumerator.NextItem(out EntityUid item, out SlotDefinition? slot)) + { + if (TryComp(item, out HideLayerClothingComponent? comp)) + { + if (comp.Slots.Contains(layer)) + { + if (TryComp(item, out ClothingComponent? clothing) && clothing.Slots == slot.SlotFlags) + { + //Checks for mask toggling. TODO: Make a generic system for this + if (comp.HideOnToggle && TryComp(item, out MaskComponent? mask)) + { + if (clothing.EquippedPrefix != mask.EquippedPrefix) + { + shouldLayerShow = false; + break; + } + } + else + { + shouldLayerShow = false; + break; + } + } + } + } + } + _humanoidSystem.SetLayerVisibility(equipee, layer, shouldLayerShow); + } + } + protected virtual void OnGotEquipped(EntityUid uid, ClothingComponent component, GotEquippedEvent args) { component.InSlot = args.Slot; - component.InSlotFlag = args.SlotFlags; + CheckEquipmentForLayerHide(args.Equipment, args.Equipee); - if ((component.Slots & args.SlotFlags) == SlotFlags.NONE) - return; + if ((component.Slots & args.SlotFlags) != SlotFlags.NONE) + { + var gotEquippedEvent = new ClothingGotEquippedEvent(args.Equipee, component); + RaiseLocalEvent(uid, ref gotEquippedEvent); - var gotEquippedEvent = new ClothingGotEquippedEvent(args.Equipee, component); - RaiseLocalEvent(uid, ref gotEquippedEvent); - - var didEquippedEvent = new ClothingDidEquippedEvent((uid, component)); - RaiseLocalEvent(args.Equipee, ref didEquippedEvent); + var didEquippedEvent = new ClothingDidEquippedEvent((uid, component)); + RaiseLocalEvent(args.Equipee, ref didEquippedEvent); + } } protected virtual void OnGotUnequipped(EntityUid uid, ClothingComponent component, GotUnequippedEvent args) @@ -111,7 +152,7 @@ public abstract class ClothingSystem : EntitySystem } component.InSlot = null; - component.InSlotFlag = null; + CheckEquipmentForLayerHide(args.Equipment, args.Equipee); } private void OnGetState(EntityUid uid, ClothingComponent component, ref ComponentGetState args) @@ -121,10 +162,21 @@ public abstract class ClothingSystem : EntitySystem private void OnHandleState(EntityUid uid, ClothingComponent component, ref ComponentHandleState args) { - if (args.Current is not ClothingComponentState state) - return; + if (args.Current is ClothingComponentState state) + { + SetEquippedPrefix(uid, state.EquippedPrefix, component); + if (component.InSlot != null && _containerSys.TryGetContainingContainer((uid, null, null), out var container)) + { + CheckEquipmentForLayerHide(uid, container.Owner); + } + } + } - SetEquippedPrefix(uid, state.EquippedPrefix, component); + private void OnMaskToggled(Entity ent, ref ItemMaskToggledEvent args) + { + //TODO: sprites for 'pulled down' state. defaults to invisible due to no sprite with this prefix + SetEquippedPrefix(ent, args.IsToggled ? args.equippedPrefix : null, ent); + CheckEquipmentForLayerHide(ent.Owner, args.Wearer); } private void OnEquipDoAfter(Entity ent, ref ClothingEquipDoAfterEvent args) @@ -148,6 +200,12 @@ public abstract class ClothingSystem : EntitySystem args.Additive += ent.Comp.StripDelay; } + private void CheckEquipmentForLayerHide(EntityUid equipment, EntityUid equipee) + { + if (TryComp(equipment, out HideLayerClothingComponent? clothesComp) && TryComp(equipee, out HumanoidAppearanceComponent? appearanceComp)) + ToggleVisualLayers(equipee, clothesComp.Slots, appearanceComp.HideLayersOnEquip); + } + #region Public API public void SetEquippedPrefix(EntityUid uid, string? prefix, ClothingComponent? clothing = null) diff --git a/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs index a60caa454b..603af4099c 100644 --- a/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/FoldableClothingSystem.cs @@ -16,8 +16,7 @@ public sealed class FoldableClothingSystem : EntitySystem base.Initialize(); SubscribeLocalEvent(OnFoldAttempt); - SubscribeLocalEvent(OnFolded, - after: [typeof(MaskSystem)]); // Mask system also modifies clothing / equipment RSI state prefixes. + SubscribeLocalEvent(OnFolded); } private void OnFoldAttempt(Entity ent, ref FoldAttemptEvent args) @@ -25,19 +24,10 @@ public sealed class FoldableClothingSystem : EntitySystem if (args.Cancelled) return; - if (!_inventorySystem.TryGetContainingSlot(ent.Owner, out var slot)) - return; - - // Cannot fold clothing equipped to a slot if the slot becomes disallowed - var newSlots = args.Comp.IsFolded ? ent.Comp.UnfoldedSlots : ent.Comp.FoldedSlots; - if (newSlots != null && (newSlots.Value & slot.SlotFlags) != slot.SlotFlags) - { - args.Cancelled = true; - return; - } - - // Setting hidden layers while equipped is not currently supported. - if (ent.Comp.FoldedHideLayers != null || ent.Comp.UnfoldedHideLayers != null) + // allow folding while equipped if allowed slots are the same: + // e.g. flip a hat backwards while on your head + if (_inventorySystem.TryGetContainingSlot(ent.Owner, out var slot) && + !ent.Comp.FoldedSlots.Equals(ent.Comp.UnfoldedSlots)) args.Cancelled = true; } @@ -58,14 +48,7 @@ public sealed class FoldableClothingSystem : EntitySystem if (ent.Comp.FoldedHeldPrefix != null) _itemSystem.SetHeldPrefix(ent.Owner, ent.Comp.FoldedHeldPrefix, false, itemComp); - // This is janky and likely to lead to bugs. - // I.e., overriding this and resetting it again later will lead to bugs if someone tries to modify clothing - // in yaml, but doesn't realise theres actually two other fields on an unrelated component that they also need - // to modify. - // This should instead work via an event or something that gets raised to optionally modify the currently hidden layers. - // Or at the very least it should stash the old layers and restore them when unfolded. - // TODO CLOTHING fix this. - if (ent.Comp.FoldedHideLayers != null && TryComp(ent.Owner, out var hideLayerComp)) + if (TryComp(ent.Owner, out var hideLayerComp)) hideLayerComp.Slots = ent.Comp.FoldedHideLayers; } @@ -80,8 +63,7 @@ public sealed class FoldableClothingSystem : EntitySystem if (ent.Comp.FoldedHeldPrefix != null) _itemSystem.SetHeldPrefix(ent.Owner, null, false, itemComp); - // TODO CLOTHING fix this. - if (ent.Comp.UnfoldedHideLayers != null && TryComp(ent.Owner, out var hideLayerComp)) + if (TryComp(ent.Owner, out var hideLayerComp)) hideLayerComp.Slots = ent.Comp.UnfoldedHideLayers; } diff --git a/Content.Shared/Clothing/EntitySystems/HideLayerClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/HideLayerClothingSystem.cs deleted file mode 100644 index a32f74f308..0000000000 --- a/Content.Shared/Clothing/EntitySystems/HideLayerClothingSystem.cs +++ /dev/null @@ -1,106 +0,0 @@ -using Content.Shared.Clothing.Components; -using Content.Shared.Humanoid; -using Content.Shared.Inventory; -using Robust.Shared.Timing; -using Robust.Shared.Utility; - -namespace Content.Shared.Clothing.EntitySystems; - -public sealed class HideLayerClothingSystem : EntitySystem -{ - [Dependency] private readonly SharedHumanoidAppearanceSystem _humanoid = default!; - [Dependency] private readonly IGameTiming _timing = default!; - - public override void Initialize() - { - SubscribeLocalEvent(OnHideGotUnequipped); - SubscribeLocalEvent(OnHideGotEquipped); - SubscribeLocalEvent(OnHideToggled); - } - - private void OnHideToggled(Entity ent, ref ItemMaskToggledEvent args) - { - if (args.Wearer != null) - SetLayerVisibility(ent!, args.Wearer.Value, hideLayers: true); - } - - private void OnHideGotEquipped(Entity ent, ref ClothingGotEquippedEvent args) - { - SetLayerVisibility(ent!, args.Wearer, hideLayers: true); - } - - private void OnHideGotUnequipped(Entity ent, ref ClothingGotUnequippedEvent args) - { - SetLayerVisibility(ent!, args.Wearer, hideLayers: false); - } - - private void SetLayerVisibility( - Entity clothing, - Entity user, - bool hideLayers) - { - if (_timing.ApplyingState) - return; - - if (!Resolve(clothing.Owner, ref clothing.Comp1, ref clothing.Comp2)) - return; - - if (!Resolve(user.Owner, ref user.Comp, false)) // Corvax-Changes - return; - - hideLayers &= IsEnabled(clothing!); - - var hideable = user.Comp.HideLayersOnEquip; - var inSlot = clothing.Comp2.InSlotFlag ?? SlotFlags.NONE; - - // This method should only be getting called while the clothing is equipped (though possibly currently in - // the process of getting unequipped). - DebugTools.AssertNotNull(clothing.Comp2.InSlot); - DebugTools.AssertNotNull(clothing.Comp2.InSlotFlag); - DebugTools.AssertNotEqual(inSlot, SlotFlags.NONE); - - var dirty = false; - - // iterate the HideLayerClothingComponent's layers map and check that - // the clothing is (or was)equipped in a matching slot. - foreach (var (layer, validSlots) in clothing.Comp1.Layers) - { - if (!hideable.Contains(layer)) - continue; - - // Only update this layer if we are currently equipped to the relevant slot. - if (validSlots.HasFlag(inSlot)) - _humanoid.SetLayerVisibility(user!, layer, !hideLayers, inSlot, ref dirty); - } - - // Fallback for obsolete field: assume we want to hide **all** layers, as long as we are equipped to any - // relevant clothing slot -#pragma warning disable CS0618 // Type or member is obsolete - if (clothing.Comp1.Slots is { } slots && clothing.Comp2.Slots.HasFlag(inSlot)) -#pragma warning restore CS0618 // Type or member is obsolete - { - foreach (var layer in slots) - { - if (hideable.Contains(layer)) - _humanoid.SetLayerVisibility(user!, layer, !hideLayers, inSlot, ref dirty); - } - } - - if (dirty) - Dirty(user!); - } - - private bool IsEnabled(Entity clothing) - { - // TODO Generalize this - // I.e., make this and mask component use some generic toggleable. - - if (!clothing.Comp1.HideOnToggle) - return true; - - if (!TryComp(clothing, out MaskComponent? mask)) - return true; - - return !mask.IsToggled; - } -} diff --git a/Content.Shared/Clothing/EntitySystems/MaskSystem.cs b/Content.Shared/Clothing/EntitySystems/MaskSystem.cs index 3e899f3dc3..fd0b7e782b 100644 --- a/Content.Shared/Clothing/EntitySystems/MaskSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/MaskSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Clothing.Components; using Content.Shared.Foldable; using Content.Shared.Inventory; using Content.Shared.Inventory.Events; +using Content.Shared.Item; using Content.Shared.Popups; using Robust.Shared.Timing; @@ -14,7 +15,6 @@ public sealed class MaskSystem : EntitySystem [Dependency] private readonly InventorySystem _inventorySystem = default!; [Dependency] private readonly SharedPopupSystem _popupSystem = default!; [Dependency] private readonly IGameTiming _timing = default!; - [Dependency] private readonly ClothingSystem _clothing = default!; public override void Initialize() { @@ -35,109 +35,53 @@ public sealed class MaskSystem : EntitySystem private void OnToggleMask(Entity ent, ref ToggleMaskEvent args) { var (uid, mask) = ent; - if (mask.ToggleActionEntity == null || !mask.IsToggleable) + if (mask.ToggleActionEntity == null || !_timing.IsFirstTimePredicted || !mask.IsEnabled) return; - // Masks are currently only toggleable via the action while equipped. - // Its possible this might change in future? - - // TODO Inventory / Clothing - // Add an easier way to check if clothing is equipped to a valid slot. - if (!TryComp(ent, out ClothingComponent? clothing) - || clothing.InSlotFlag is not { } slotFlag - || !clothing.Slots.HasFlag(slotFlag)) - { + if (!_inventorySystem.TryGetSlotEntity(args.Performer, "mask", out var existing) || !uid.Equals(existing)) return; - } - SetToggled((uid, mask), !mask.IsToggled); + mask.IsToggled ^= true; var dir = mask.IsToggled ? "down" : "up"; var msg = $"action-mask-pull-{dir}-popup-message"; _popupSystem.PopupClient(Loc.GetString(msg, ("mask", uid)), args.Performer, args.Performer); + + ToggleMaskComponents(uid, mask, args.Performer, mask.EquippedPrefix); } + // set to untoggled when unequipped, so it isn't left in a 'pulled down' state private void OnGotUnequipped(EntityUid uid, MaskComponent mask, GotUnequippedEvent args) { - // Masks are currently always un-toggled when unequipped. - SetToggled((uid, mask), false); + if (!mask.IsToggled || !mask.IsEnabled) + return; + + mask.IsToggled = false; + ToggleMaskComponents(uid, mask, args.Equipee, mask.EquippedPrefix, true); + } + + /// + /// Called after setting IsToggled, raises events and dirties. + /// + private void ToggleMaskComponents(EntityUid uid, MaskComponent mask, EntityUid wearer, string? equippedPrefix = null, bool isEquip = false) + { + Dirty(uid, mask); + if (mask.ToggleActionEntity is {} action) + _actionSystem.SetToggled(action, mask.IsToggled); + + var maskEv = new ItemMaskToggledEvent(wearer, equippedPrefix, mask.IsToggled, isEquip); + RaiseLocalEvent(uid, ref maskEv); + + var wearerEv = new WearerMaskToggledEvent(mask.IsToggled); + RaiseLocalEvent(wearer, ref wearerEv); } private void OnFolded(Entity ent, ref FoldedEvent args) { - // See FoldableClothingComponent + if (ent.Comp.DisableOnFolded) + ent.Comp.IsEnabled = !args.IsFolded; + ent.Comp.IsToggled = args.IsFolded; - if (!ent.Comp.DisableOnFolded) - return; - - // While folded, we force the mask to be toggled / pulled down, so that its functionality as a mask is disabled, - // and we also prevent it from being un-toggled. We also automatically untoggle it when it gets unfolded, so it - // fully returns to its previous state when folded & unfolded. - - SetToggled(ent!, args.IsFolded, force: true); - SetToggleable(ent!, !args.IsFolded); - } - - public void SetToggled(Entity mask, bool toggled, bool force = false) - { - if (_timing.ApplyingState) - return; - - if (!Resolve(mask.Owner, ref mask.Comp)) - return; - - if (!force && !mask.Comp.IsToggleable) - return; - - if (mask.Comp.IsToggled == toggled) - return; - - mask.Comp.IsToggled = toggled; - - if (mask.Comp.ToggleActionEntity is { } action) - _actionSystem.SetToggled(action, mask.Comp.IsToggled); - - // TODO Generalize toggling & clothing prefixes. See also FoldableClothingComponent - var prefix = mask.Comp.IsToggled ? mask.Comp.EquippedPrefix : null; - _clothing.SetEquippedPrefix(mask, prefix); - - // TODO Inventory / Clothing - // Add an easier way to get the entity that is wearing clothing in a valid slot. - EntityUid? wearer = null; - if (TryComp(mask, out ClothingComponent? clothing) - && clothing.InSlotFlag is {} slotFlag - && clothing.Slots.HasFlag(slotFlag)) - { - wearer = Transform(mask).ParentUid; - } - - var maskEv = new ItemMaskToggledEvent(mask!, wearer); - RaiseLocalEvent(mask, ref maskEv); - - if (wearer != null) - { - var wearerEv = new WearerMaskToggledEvent(mask!); - RaiseLocalEvent(wearer.Value, ref wearerEv); - } - - Dirty(mask); - } - - public void SetToggleable(Entity mask, bool toggleable) - { - if (_timing.ApplyingState) - return; - - if (!Resolve(mask.Owner, ref mask.Comp)) - return; - - if (mask.Comp.IsToggleable == toggleable) - return; - - if (mask.Comp.ToggleActionEntity is { } action) - _actionSystem.SetEnabled(action, mask.Comp.IsToggleable); - - mask.Comp.IsToggleable = toggleable; - Dirty(mask); + ToggleMaskComponents(ent.Owner, ent.Comp, ent.Owner); } } diff --git a/Content.Shared/Damage/Components/BoxingComponent.cs b/Content.Shared/Damage/Components/BoxingComponent.cs new file mode 100644 index 0000000000..be3dedd885 --- /dev/null +++ b/Content.Shared/Damage/Components/BoxingComponent.cs @@ -0,0 +1,10 @@ +using Robust.Shared.Audio; + +namespace Content.Shared.Damage.Components; + +[RegisterComponent] +public sealed partial class BoxingComponent : Component +{ + [DataField] + public SoundSpecifier? Sound; +} diff --git a/Content.Shared/Damage/Systems/StaminaSystem.cs b/Content.Shared/Damage/Systems/StaminaSystem.cs index d897a363d4..28596f0b14 100644 --- a/Content.Shared/Damage/Systems/StaminaSystem.cs +++ b/Content.Shared/Damage/Systems/StaminaSystem.cs @@ -12,6 +12,7 @@ using Content.Shared.Popups; using Content.Shared.Projectiles; using Content.Shared.Rejuvenate; using Content.Shared.Rounding; +using Content.Shared.Standing; using Content.Shared.Stunnable; using Content.Shared.Throwing; using Content.Shared.Weapons.Melee.Events; @@ -63,6 +64,7 @@ public sealed partial class StaminaSystem : EntitySystem SubscribeLocalEvent(OnThrowHit); SubscribeLocalEvent(OnMeleeHit); + SubscribeLocalEvent(OnFallOver); Subs.CVar(_config, CCVars.PlaytestStaminaDamageModifier, value => UniversalStaminaDamageModifier = value, true); } @@ -179,6 +181,13 @@ public sealed partial class StaminaSystem : EntitySystem } } + + private void OnFallOver(EntityUid uid, BoxingComponent component, DownedEvent args) + { + if (_net.IsServer) + _audio.PlayPvs(component.Sound, uid); + } + private void OnProjectileHit(EntityUid uid, StaminaDamageOnCollideComponent component, ref ProjectileHitEvent args) { OnCollide(uid, component, args.Target); diff --git a/Content.Shared/Doors/Components/SpeakOnDoorOpenedComponent.cs b/Content.Shared/Doors/Components/SpeakOnDoorOpenedComponent.cs new file mode 100644 index 0000000000..b2eda0dac1 --- /dev/null +++ b/Content.Shared/Doors/Components/SpeakOnDoorOpenedComponent.cs @@ -0,0 +1,31 @@ +using Content.Shared.Dataset; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Doors.Components; +/// +/// Genuine People Personality. +/// Makes a door speak when being opened. +/// +/// +[RegisterComponent] +public sealed partial class SpeakOnDoorOpenedComponent : Component +{ + /// + /// Probability with which to speak when opened. + /// There are a lot of doors, so we don't want this to happen every single time or chat will get spammed. + /// + [DataField] + public float Probability = 0.2f; + + /// + /// Only speak when powered? + /// + [DataField] + public bool NeedsPower = true; + + /// + /// What to say. + /// + [DataField] + public ProtoId Pack = "DoorGPP"; +} diff --git a/Content.Shared/Flip/FlipAnimationComponent.cs b/Content.Shared/Flip/FlipAnimationComponent.cs new file mode 100644 index 0000000000..b231df89c2 --- /dev/null +++ b/Content.Shared/Flip/FlipAnimationComponent.cs @@ -0,0 +1,44 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Flip; + +/// +/// Makes it possible for an entity to do a flip animation. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class FlipAnimationComponent : Component +{ + /// + /// What's the name of this animation? Make sure it's unique so it can play along side other animations. + /// This prevents someone accidentally causing two identical effects to play on someone at the same time. + /// + [DataField] + public string KeyName = "FlipEmote"; + + /// + /// How long should a complete flip take? + /// + [DataField, AutoNetworkedField] + public float AnimationLength = 0.5f; +} + +/// +/// Declares that an entity has started to flip. +/// +/// The entity flipping. +[Serializable, NetSerializable] +public sealed class StartFlipEvent(NetEntity entity) : EntityEventArgs +{ + public NetEntity Entity = entity; +} + +/// +/// Declares that an entity has cancelled flipping. +/// +/// The entity stopping flipping. +[Serializable, NetSerializable] +public sealed class StopFlipEvent(NetEntity entity) : EntityEventArgs +{ + public NetEntity Entity = entity; +} diff --git a/Content.Shared/Flip/SharedFlipAnimationSystem.cs b/Content.Shared/Flip/SharedFlipAnimationSystem.cs new file mode 100644 index 0000000000..1153c2820d --- /dev/null +++ b/Content.Shared/Flip/SharedFlipAnimationSystem.cs @@ -0,0 +1,3 @@ +namespace Content.Shared.Flip; + +public abstract class SharedFlipAnimationSystem : EntitySystem; diff --git a/Content.Shared/Fluids/EntitySystems/SpillActionSystem.cs b/Content.Shared/Fluids/EntitySystems/SpillActionSystem.cs new file mode 100644 index 0000000000..059eaf5273 --- /dev/null +++ b/Content.Shared/Fluids/EntitySystems/SpillActionSystem.cs @@ -0,0 +1,33 @@ +using Content.Shared.Actions; +using Content.Shared.Popups; +using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Fluids; +using Content.Shared.Fluids.Components; + +namespace Content.Server.Fluids; + +public sealed partial class SpillActionSystem : EntitySystem +{ + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedPuddleSystem _puddle = default!; + [Dependency] private readonly SharedSolutionContainerSystem _solutionContainer = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnSpillAction); + } + + private void OnSpillAction(Entity ent, ref SpillActionEvent args) + { + if (!_solutionContainer.TryGetDrainableSolution(ent.Owner, out var soln, out var solution) || solution.Volume == 0) + return; + + var puddleSolution = _solutionContainer.SplitSolution(soln.Value, solution.Volume); + _puddle.TrySpillAt(ent, puddleSolution, out _); + _popup.PopupClient(Loc.GetString("spill-action-use", ("name", ent)), ent, ent); + } +} + +public sealed partial class SpillActionEvent : InstantActionEvent; diff --git a/Content.Shared/Foldable/FoldableSystem.cs b/Content.Shared/Foldable/FoldableSystem.cs index 3ece56720a..c251372372 100644 --- a/Content.Shared/Foldable/FoldableSystem.cs +++ b/Content.Shared/Foldable/FoldableSystem.cs @@ -103,7 +103,7 @@ public sealed class FoldableSystem : EntitySystem if (_container.IsEntityInContainer(uid) && !fold.CanFoldInsideContainer) return false; - var ev = new FoldAttemptEvent(fold); + var ev = new FoldAttemptEvent(); RaiseLocalEvent(uid, ref ev); return !ev.Cancelled; } @@ -157,7 +157,7 @@ public sealed class FoldableSystem : EntitySystem /// /// [ByRefEvent] -public record struct FoldAttemptEvent(FoldableComponent Comp, bool Cancelled = false); +public record struct FoldAttemptEvent(bool Cancelled = false); /// /// Event raised on an entity after it has been folded. diff --git a/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs b/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs index f78b2db745..7aa8add017 100644 --- a/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs +++ b/Content.Shared/Humanoid/HumanoidAppearanceComponent.cs @@ -1,7 +1,6 @@ using Content.Shared.Corvax.TTS; using Content.Shared.Humanoid.Markings; using Content.Shared.Humanoid.Prototypes; -using Content.Shared.Inventory; using Robust.Shared.Enums; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; @@ -77,12 +76,11 @@ public sealed partial class HumanoidAppearanceComponent : Component public Color SkinColor { get; set; } = Color.FromHex("#C0967F"); /// - /// A map of the visual layers currently hidden to the equipment - /// slots that are currently hiding them. This will affect the base - /// sprite on this humanoid layer, and any markings that sit above it. + /// Visual layers currently hidden. This will affect the base sprite + /// on this humanoid layer, and any markings that sit above it. /// [DataField, AutoNetworkedField] - public Dictionary HiddenLayers = new(); + public HashSet HiddenLayers = new(); [DataField, AutoNetworkedField] public Sex Sex = Sex.Male; diff --git a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs index 3cac7689ad..1865579466 100644 --- a/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs +++ b/Content.Shared/Humanoid/SharedHumanoidAppearanceSystem.cs @@ -10,7 +10,6 @@ using Content.Shared.Humanoid.Prototypes; using Content.Shared.Speech.Synthesis.Components; // Corvax-Wega-Barks using Content.Shared.Corvax.TTS; using Content.Shared.IdentityManagement; -using Content.Shared.Inventory; using Content.Shared.Preferences; using Content.Shared.Actions; using Robust.Shared; @@ -136,22 +135,22 @@ public abstract class SharedHumanoidAppearanceSystem : EntitySystem /// /// Toggles a humanoid's sprite layer visibility. /// - /// Humanoid entity + /// Humanoid mob's UID /// Layer to toggle visibility for - /// Whether to hide or show the layer. If more than once piece of clothing is hiding the layer, it may remain hidden. - /// Equipment slot that has the clothing that is (or was) hiding the layer. If not specified, the change is "permanent" (i.e., see ) - public void SetLayerVisibility(Entity ent, + /// Humanoid component of the entity + public void SetLayerVisibility(EntityUid uid, HumanoidVisualLayers layer, bool visible, - SlotFlags? source = null) + bool permanent = false, + HumanoidAppearanceComponent? humanoid = null) { - if (!Resolve(ent.Owner, ref ent.Comp, false)) + if (!Resolve(uid, ref humanoid, false)) return; var dirty = false; - SetLayerVisibility(ent!, layer, visible, source, ref dirty); + SetLayerVisibility(uid, humanoid, layer, visible, permanent, ref dirty); if (dirty) - Dirty(ent); + Dirty(uid, humanoid); } /// @@ -187,75 +186,49 @@ public abstract class SharedHumanoidAppearanceSystem : EntitySystem /// /// Sets the visibility for multiple layers at once on a humanoid's sprite. /// - /// Humanoid entity + /// Humanoid mob's UID /// An enumerable of all sprite layers that are going to have their visibility set /// The visibility state of the layers given - public void SetLayersVisibility(Entity ent, - IEnumerable layers, - bool visible) + /// If this is a permanent change, or temporary. Permanent layers are stored in their own hash set. + /// Humanoid component of the entity + public void SetLayersVisibility(EntityUid uid, IEnumerable layers, bool visible, bool permanent = false, + HumanoidAppearanceComponent? humanoid = null) { - if (!Resolve(ent.Owner, ref ent.Comp, false)) + if (!Resolve(uid, ref humanoid)) return; var dirty = false; foreach (var layer in layers) { - SetLayerVisibility(ent!, layer, visible, null, ref dirty); + SetLayerVisibility(uid, humanoid, layer, visible, permanent, ref dirty); } if (dirty) - Dirty(ent); + Dirty(uid, humanoid); } - /// - public virtual void SetLayerVisibility( - Entity ent, + protected virtual void SetLayerVisibility( + EntityUid uid, + HumanoidAppearanceComponent humanoid, HumanoidVisualLayers layer, bool visible, - SlotFlags? source, + bool permanent, ref bool dirty) { -#if DEBUG - if (source is {} s) - { - DebugTools.AssertNotEqual(s, SlotFlags.NONE); - // Check that only a single bit in the bitflag is set - var powerOfTwo = BitOperations.RoundUpToPowerOf2((uint)s); - DebugTools.AssertEqual((uint)s, powerOfTwo); - } -#endif - if (visible) { - if (source is not {} slot) - { - dirty |= ent.Comp.PermanentlyHidden.Remove(layer); - } - else if (ent.Comp.HiddenLayers.TryGetValue(layer, out var oldSlots)) - { - // This layer might be getting hidden by more than one piece of equipped clothing. - // remove slot flag from the set of slots hiding this layer, then check if there are any left. - ent.Comp.HiddenLayers[layer] = ~slot & oldSlots; - if (ent.Comp.HiddenLayers[layer] == SlotFlags.NONE) - ent.Comp.HiddenLayers.Remove(layer); + if (permanent) + dirty |= humanoid.PermanentlyHidden.Remove(layer); - dirty |= (oldSlots & slot) != 0; - } + dirty |= humanoid.HiddenLayers.Remove(layer); } else { - if (source is not { } slot) - { - dirty |= ent.Comp.PermanentlyHidden.Add(layer); - } - else - { - var oldSlots = ent.Comp.HiddenLayers.GetValueOrDefault(layer); - ent.Comp.HiddenLayers[layer] = slot | oldSlots; - dirty |= (oldSlots & slot) != slot; - } + if (permanent) + dirty |= humanoid.PermanentlyHidden.Add(layer); + dirty |= humanoid.HiddenLayers.Add(layer); } } diff --git a/Content.Shared/IdentityManagement/SharedIdentitySystem.cs b/Content.Shared/IdentityManagement/SharedIdentitySystem.cs index 6d6916df32..ef1c50f63c 100644 --- a/Content.Shared/IdentityManagement/SharedIdentitySystem.cs +++ b/Content.Shared/IdentityManagement/SharedIdentitySystem.cs @@ -37,7 +37,7 @@ public abstract class SharedIdentitySystem : EntitySystem private void OnMaskToggled(Entity ent, ref ItemMaskToggledEvent args) { - ent.Comp.Enabled = !args.Mask.Comp.IsToggled; + ent.Comp.Enabled = !args.IsToggled; } } /// diff --git a/Content.Shared/Paper/PaperSystem.cs b/Content.Shared/Paper/PaperSystem.cs index 19fee74dc6..059b6802df 100644 --- a/Content.Shared/Paper/PaperSystem.cs +++ b/Content.Shared/Paper/PaperSystem.cs @@ -149,8 +149,9 @@ public sealed class PaperSystem : EntitySystem } // If a stamp, attempt to stamp paper - if (TryComp(args.Used, out var stampComp) && TryStamp(entity, GetStampInfo(stampComp), stampComp.StampState)) + if (TryComp(args.Used, out var stampComp)) { + SetContent(entity, Loc.GetString("paper-component-action-stamp-paper-paperwork-is-bad")); // successfully stamped, play popup var stampPaperOtherMessage = Loc.GetString("paper-component-action-stamp-paper-other", ("user", args.User), diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs index 8acfb56376..bd19f300db 100644 --- a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.Held.cs @@ -2,6 +2,7 @@ using System.Diagnostics.CodeAnalysis; using Content.Shared.Actions.Events; using Content.Shared.IdentityManagement; using Content.Shared.Interaction.Events; +using Content.Shared.Mind.Components; using Content.Shared.Popups; using Content.Shared.Verbs; using Robust.Shared.Serialization; @@ -27,6 +28,8 @@ public abstract partial class SharedStationAiSystem SubscribeLocalEvent(OnHeldInteraction); SubscribeLocalEvent(OnHeldRelay); SubscribeLocalEvent(OnCoreJump); + SubscribeLocalEvent(OnCoreVisit); + SubscribeLocalEvent(OnCoreUnVisit); SubscribeLocalEvent(OnTryGetIdentityShortInfo); } @@ -50,7 +53,46 @@ public abstract partial class SharedStationAiSystem if (!TryGetCore(ent.Owner, out var core) || core.Comp?.RemoteEntity == null) return; - _xforms.DropNextTo(core.Comp.RemoteEntity.Value, core.Owner) ; + _xforms.DropNextTo(core.Comp.RemoteEntity.Value, core.Owner); + } + + private void OnCoreVisit(Entity ent, ref VisitCoreEvent args) + { + if (!TryGetCore(ent.Owner, out var core) || core.Comp?.RemoteEntity == null) + return; + + if (!_mind.TryGetMind(ent.Owner, out var mindId, out var mind)) + return; + + // move the player's mind to the core + _mind.Visit(mindId, core, mind); + _xforms.Unanchor(core); + + if (!TryComp(core, out var app)) + return; + + _appearance.SetData(core, StationAiVisualState.Key, StationAiState.Standing, app); + } + + private void OnCoreUnVisit(Entity ent, ref UnVisitCoreEvent args) + { + if (!Transform(ent.Owner).Anchored && !_xforms.AnchorEntity(ent.Owner)) + return; + + // move the player's mind back to the camera + if (ent.Comp.MindId != null) + _mind.UnVisit(ent.Comp.MindId.Value); + + if (!TryComp(ent.Owner, out StationAiCoreComponent? coreComp) || coreComp.RemoteEntity == null) + return; + + // move the camera back to the core + _xforms.DropNextTo(coreComp.RemoteEntity.Value, ent.Owner); + + if (!TryComp(ent.Owner, out var app)) + return; + + _appearance.SetData(ent.Owner, StationAiVisualState.Key, StationAiState.Occupied, app); } /// @@ -164,7 +206,7 @@ public abstract partial class SharedStationAiSystem var verb = new AlternativeVerb { Text = isOpen ? Loc.GetString("ai-close") : Loc.GetString("ai-open"), - Act = () => + Act = () => { // no need to show menu if device is not powered. if (!PowerReceiver.IsPowered(ent.Owner)) diff --git a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs index 4cf36f560e..47a520be13 100644 --- a/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs +++ b/Content.Shared/Silicons/StationAi/SharedStationAiSystem.cs @@ -460,6 +460,9 @@ public abstract partial class SharedStationAiSystem : EntitySystem private void OnAiRemove(Entity ent, ref EntRemovedFromContainerMessage args) { + if (args.Container.ID != StationAiCoreComponent.Container) + return; + if (_timing.ApplyingState) return; @@ -538,6 +541,16 @@ public sealed partial class JumpToCoreEvent : InstantActionEvent } +public sealed partial class VisitCoreEvent : InstantActionEvent +{ + +} + +public sealed partial class UnVisitCoreEvent : InstantActionEvent +{ + +} + [Serializable, NetSerializable] public sealed partial class IntellicardDoAfterEvent : SimpleDoAfterEvent; @@ -548,10 +561,21 @@ public enum StationAiVisualState : byte Key, } +public enum StationAiVisualLayers : byte +{ + Core, + Screen, + CoreStanding, + ScreenStanding, +} + [Serializable, NetSerializable] public enum StationAiState : byte { Empty, Occupied, Dead, + Up, + Down, + Standing, } diff --git a/Content.Shared/Silicons/StationAi/StationAiCoreComponent.cs b/Content.Shared/Silicons/StationAi/StationAiCoreComponent.cs index e97e7626b8..1a76076c51 100644 --- a/Content.Shared/Silicons/StationAi/StationAiCoreComponent.cs +++ b/Content.Shared/Silicons/StationAi/StationAiCoreComponent.cs @@ -39,4 +39,16 @@ public sealed partial class StationAiCoreComponent : Component public EntProtoId? PhysicalEntityProto = "StationAiHoloLocal"; public const string Container = "station_ai_mind_slot"; + + /// + /// The key used to index the leggy animation. + /// + [ViewVariables] + public const string AnimationKey = "leggy_animation"; + + /// + /// The current visual state of the core. + /// + [ViewVariables] + public StationAiState CurrentState = StationAiState.Empty; } diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index f523a6c8a0..9297ea043d 100644 --- a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs @@ -22,6 +22,7 @@ using Content.Shared.Placeable; using Content.Shared.Popups; using Content.Shared.Stacks; using Content.Shared.Storage.Components; +using Content.Shared.Tag; using Content.Shared.Timing; using Content.Shared.Storage.Events; using Content.Shared.Verbs; @@ -66,6 +67,7 @@ public abstract class SharedStorageSystem : EntitySystem [Dependency] private readonly SharedStackSystem _stack = default!; [Dependency] protected readonly SharedTransformSystem TransformSystem = default!; [Dependency] protected readonly SharedUserInterfaceSystem UI = default!; + [Dependency] private readonly TagSystem _tag = default!; [Dependency] protected readonly UseDelaySystem UseDelay = default!; private EntityQuery _itemQuery; @@ -276,7 +278,8 @@ public abstract class SharedStorageSystem : EntitySystem if (!UI.IsUiOpen(uid, args.UiKey)) { UpdateAppearance((uid, storageComp, null)); - Audio.PlayPredicted(storageComp.StorageCloseSound, uid, args.Actor); + if (!_tag.HasTag(args.Actor, storageComp.SilentStorageUserTag)) + Audio.PlayPredicted(storageComp.StorageCloseSound, uid, args.Actor); } } @@ -357,7 +360,7 @@ public abstract class SharedStorageSystem : EntitySystem if (!UI.TryOpenUi(uid, StorageComponent.StorageUiKey.Key, entity)) return; - if (!silent) + if (!silent && !_tag.HasTag(entity, storageComp.SilentStorageUserTag)) { Audio.PlayPredicted(storageComp.StorageOpenSound, uid, entity); @@ -602,7 +605,8 @@ public abstract class SharedStorageSystem : EntitySystem // If we picked up at least one thing, play a sound and do a cool animation! if (successfullyInserted.Count > 0) { - Audio.PlayPredicted(component.StorageInsertSound, uid, args.User, _audioParams); + if (!_tag.HasTag(args.User, component.SilentStorageUserTag)) + Audio.PlayPredicted(component.StorageInsertSound, uid, args.User, _audioParams); EntityManager.RaiseSharedEvent(new AnimateInsertingEntitiesEvent( GetNetEntity(uid), GetNetEntityList(successfullyInserted), @@ -645,7 +649,8 @@ public abstract class SharedStorageSystem : EntitySystem $"{ToPrettyString(player):player} is attempting to take {ToPrettyString(item):item} out of {ToPrettyString(storage):storage}"); if (_sharedHandsSystem.TryPickupAnyHand(player, item, handsComp: player.Comp) - && storage.Comp.StorageRemoveSound != null) + && storage.Comp.StorageRemoveSound != null + && !_tag.HasTag(player, storage.Comp.SilentStorageUserTag)) { Audio.PlayPredicted(storage.Comp.StorageRemoveSound, storage, player, _audioParams); } @@ -903,8 +908,10 @@ public abstract class SharedStorageSystem : EntitySystem { Insert(target, entity, out _, user: user, targetComp, playSound: false); } - - Audio.PlayPredicted(sourceComp.StorageInsertSound, target, user, _audioParams); + if (user != null + && (!_tag.HasTag(user.Value, sourceComp.SilentStorageUserTag) + || !_tag.HasTag(user.Value, targetComp.SilentStorageUserTag))) + Audio.PlayPredicted(sourceComp.StorageInsertSound, target, user, _audioParams); } /// @@ -1077,12 +1084,17 @@ public abstract class SharedStorageSystem : EntitySystem * For now we just treat items as always being the same size regardless of stack count. */ + // Check if the sound is expected to play. + // If there is an user, the sound will not play if they have the SilentStorageUserTag + // If there is no user, only playSound is checked. + var canPlaySound = playSound && (user == null || !_tag.HasTag(user.Value, storageComp.SilentStorageUserTag)); + if (!stackAutomatically || !_stackQuery.TryGetComponent(insertEnt, out var insertStack)) { if (!ContainerSystem.Insert(insertEnt, storageComp.Container)) return false; - if (playSound) + if (canPlaySound) Audio.PlayPredicted(storageComp.StorageInsertSound, uid, user, _audioParams); return true; @@ -1112,7 +1124,7 @@ public abstract class SharedStorageSystem : EntitySystem return false; } - if (playSound) + if (canPlaySound) Audio.PlayPredicted(storageComp.StorageInsertSound, uid, user, _audioParams); return true; diff --git a/Content.Shared/Storage/StorageComponent.cs b/Content.Shared/Storage/StorageComponent.cs index f772ad2022..17d3fce62d 100644 --- a/Content.Shared/Storage/StorageComponent.cs +++ b/Content.Shared/Storage/StorageComponent.cs @@ -1,5 +1,6 @@ using Content.Shared.Item; using Content.Shared.Storage.EntitySystems; +using Content.Shared.Tag; using Content.Shared.Whitelist; using Robust.Shared.Audio; using Robust.Shared.Containers; @@ -141,6 +142,12 @@ namespace Content.Shared.Storage [DataField] public bool HideStackVisualsWhenClosed = true; + /// + /// Entities with this tag won't trigger storage sound. + /// + [DataField] + public ProtoId SilentStorageUserTag = "SilentStorageUser"; + [Serializable, NetSerializable] public enum StorageUiKey : byte { diff --git a/Content.Shared/Teleportation/Components/HandTeleporterComponent.cs b/Content.Shared/Teleportation/Components/HandTeleporterComponent.cs index 6ea29d3fd6..ea1aa492f3 100644 --- a/Content.Shared/Teleportation/Components/HandTeleporterComponent.cs +++ b/Content.Shared/Teleportation/Components/HandTeleporterComponent.cs @@ -21,11 +21,17 @@ public sealed partial class HandTeleporterComponent : Component public EntityUid? SecondPortal = null; /// - /// Portals can't be placed on different grids? + /// Should the portals be able to be placed across grids? /// [DataField] public bool AllowPortalsOnDifferentGrids; + /// + /// Should the portals work across maps? + /// + [DataField] + public bool AllowPortalsOnDifferentMaps; + [DataField("firstPortalPrototype", customTypeSerializer: typeof(PrototypeIdSerializer))] public string FirstPortalPrototype = "PortalRed"; diff --git a/Content.Shared/Wires/SharedWiresComponent.cs b/Content.Shared/Wires/SharedWiresComponent.cs index 2239fd72b1..b81f8330fb 100644 --- a/Content.Shared/Wires/SharedWiresComponent.cs +++ b/Content.Shared/Wires/SharedWiresComponent.cs @@ -209,106 +209,22 @@ namespace Content.Shared.Wires { public static string Name(this WireColor color) { - return Loc.GetString(color switch - { - WireColor.Red => "Red", - WireColor.Blue => "Blue", - WireColor.Green => "Green", - WireColor.Orange => "Orange", - WireColor.Brown => "Brown", - WireColor.Gold => "Gold", - WireColor.Gray => "Gray", - WireColor.Cyan => "Cyan", - WireColor.Navy => "Navy", - WireColor.Purple => "Purple", - WireColor.Pink => "Pink", - WireColor.Fuchsia => "Fuchsia", - _ => throw new InvalidOperationException() - }); + return Loc.GetString("Red"); } public static Color ColorValue(this WireColor color) { - return color switch - { - WireColor.Red => Color.Red, - WireColor.Blue => Color.Blue, - WireColor.Green => Color.LimeGreen, - WireColor.Orange => Color.Orange, - WireColor.Brown => Color.Brown, - WireColor.Gold => Color.Gold, - WireColor.Gray => Color.Gray, - WireColor.Cyan => Color.Cyan, - WireColor.Navy => Color.Navy, - WireColor.Purple => Color.Purple, - WireColor.Pink => Color.Pink, - WireColor.Fuchsia => Color.Fuchsia, - _ => throw new InvalidOperationException() - }; + return Color.Red; } public static string Name(this WireLetter letter) { - return Loc.GetString(letter switch - { - WireLetter.α => "Alpha", - WireLetter.β => "Beta", - WireLetter.γ => "Gamma", - WireLetter.δ => "Delta", - WireLetter.ε => "Epsilon", - WireLetter.ζ => "Zeta", - WireLetter.η => "Eta", - WireLetter.θ => "Theta", - WireLetter.ι => "Iota", - WireLetter.κ => "Kappa", - WireLetter.λ => "Lambda", - WireLetter.μ => "Mu", - WireLetter.ν => "Nu", - WireLetter.ξ => "Xi", - WireLetter.ο => "Omicron", - WireLetter.π => "Pi", - WireLetter.ρ => "Rho", - WireLetter.σ => "Sigma", - WireLetter.τ => "Tau", - WireLetter.υ => "Upsilon", - WireLetter.φ => "Phi", - WireLetter.χ => "Chi", - WireLetter.ψ => "Psi", - WireLetter.ω => "Omega", - _ => throw new InvalidOperationException() - }); + return Loc.GetString("Sigma"); } public static char Letter(this WireLetter letter) { - return letter switch - { - WireLetter.α => 'α', - WireLetter.β => 'β', - WireLetter.γ => 'γ', - WireLetter.δ => 'δ', - WireLetter.ε => 'ε', - WireLetter.ζ => 'ζ', - WireLetter.η => 'η', - WireLetter.θ => 'θ', - WireLetter.ι => 'ι', - WireLetter.κ => 'κ', - WireLetter.λ => 'λ', - WireLetter.μ => 'μ', - WireLetter.ν => 'ν', - WireLetter.ξ => 'ξ', - WireLetter.ο => 'ο', - WireLetter.π => 'π', - WireLetter.ρ => 'ρ', - WireLetter.σ => 'σ', - WireLetter.τ => 'τ', - WireLetter.υ => 'υ', - WireLetter.φ => 'φ', - WireLetter.χ => 'χ', - WireLetter.ψ => 'ψ', - WireLetter.ω => 'ω', - _ => throw new InvalidOperationException() - }; + return 'σ'; } } } diff --git a/Resources/Audio/Ambience/Antag/attributions.yml b/Resources/Audio/Ambience/Antag/attributions.yml index 0d3d278a62..109be061ce 100644 --- a/Resources/Audio/Ambience/Antag/attributions.yml +++ b/Resources/Audio/Ambience/Antag/attributions.yml @@ -1,6 +1,6 @@ -- files: ["nukeops_start.ogg, traitor_start.ogg"] +- files: ["nukeops_start.ogg, traitor_start.ogg, traitor_wawa.ogg"] license: "CC-BY-SA-3.0" - copyright: "Taken from TG station" + copyright: "Taken from TG station, traitor_wawa.ogg modified by FairlySadPanda(Github/Discord)" source: "https://github.com/tgstation/tgstation/commit/827967c9650c23af64280ad1491405fed8f644c5#diff-6cc910b7cad9ac4333c8d0885fc844746066120b465d8d4ba8f7019169316574" - files: ["pirate_start.ogg"] license: "CC-BY-NC-SA-3.0" diff --git a/Resources/Audio/Ambience/Antag/traitor_wawa.ogg b/Resources/Audio/Ambience/Antag/traitor_wawa.ogg new file mode 100644 index 0000000000..7134be84cc Binary files /dev/null and b/Resources/Audio/Ambience/Antag/traitor_wawa.ogg differ diff --git a/Resources/Audio/Animals/slugclappa.ogg b/Resources/Audio/Animals/slugclappa.ogg new file mode 100644 index 0000000000..86bbd528c0 Binary files /dev/null and b/Resources/Audio/Animals/slugclappa.ogg differ diff --git a/Resources/Audio/Animals/wawa_achoo.ogg b/Resources/Audio/Animals/wawa_achoo.ogg new file mode 100644 index 0000000000..56670c2d05 Binary files /dev/null and b/Resources/Audio/Animals/wawa_achoo.ogg differ diff --git a/Resources/Audio/Animals/wawa_chatter.ogg b/Resources/Audio/Animals/wawa_chatter.ogg new file mode 100644 index 0000000000..7e2a7ec3ca Binary files /dev/null and b/Resources/Audio/Animals/wawa_chatter.ogg differ diff --git a/Resources/Audio/Animals/wawa_chillin.ogg b/Resources/Audio/Animals/wawa_chillin.ogg new file mode 100644 index 0000000000..5955fdf967 Binary files /dev/null and b/Resources/Audio/Animals/wawa_chillin.ogg differ diff --git a/Resources/Audio/Animals/wawa_depression.ogg b/Resources/Audio/Animals/wawa_depression.ogg new file mode 100644 index 0000000000..3f8167acb7 Binary files /dev/null and b/Resources/Audio/Animals/wawa_depression.ogg differ diff --git a/Resources/Audio/Animals/wawa_exclaim.ogg b/Resources/Audio/Animals/wawa_exclaim.ogg new file mode 100644 index 0000000000..99f280091f Binary files /dev/null and b/Resources/Audio/Animals/wawa_exclaim.ogg differ diff --git a/Resources/Audio/Animals/wawa_mock.ogg b/Resources/Audio/Animals/wawa_mock.ogg new file mode 100644 index 0000000000..355c2aa841 Binary files /dev/null and b/Resources/Audio/Animals/wawa_mock.ogg differ diff --git a/Resources/Audio/Animals/wawa_protest.ogg b/Resources/Audio/Animals/wawa_protest.ogg new file mode 100644 index 0000000000..cc1cf60a04 Binary files /dev/null and b/Resources/Audio/Animals/wawa_protest.ogg differ diff --git a/Resources/Audio/Animals/wawa_question.ogg b/Resources/Audio/Animals/wawa_question.ogg new file mode 100644 index 0000000000..ce9008a5d8 Binary files /dev/null and b/Resources/Audio/Animals/wawa_question.ogg differ diff --git a/Resources/Audio/Animals/wawa_statement.ogg b/Resources/Audio/Animals/wawa_statement.ogg new file mode 100644 index 0000000000..21f9e8a23e Binary files /dev/null and b/Resources/Audio/Animals/wawa_statement.ogg differ diff --git a/Resources/Audio/Announcements/Intern/alert1.ogg b/Resources/Audio/Announcements/Intern/alert1.ogg new file mode 100644 index 0000000000..a1c6d4fb1e Binary files /dev/null and b/Resources/Audio/Announcements/Intern/alert1.ogg differ diff --git a/Resources/Audio/Announcements/Intern/alert10.ogg b/Resources/Audio/Announcements/Intern/alert10.ogg new file mode 100644 index 0000000000..4bb3ca0ec0 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/alert10.ogg differ diff --git a/Resources/Audio/Announcements/Intern/alert11.ogg b/Resources/Audio/Announcements/Intern/alert11.ogg new file mode 100644 index 0000000000..5dcc91e1d1 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/alert11.ogg differ diff --git a/Resources/Audio/Announcements/Intern/alert12.ogg b/Resources/Audio/Announcements/Intern/alert12.ogg new file mode 100644 index 0000000000..b493a07272 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/alert12.ogg differ diff --git a/Resources/Audio/Announcements/Intern/alert13.ogg b/Resources/Audio/Announcements/Intern/alert13.ogg new file mode 100644 index 0000000000..66574b8423 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/alert13.ogg differ diff --git a/Resources/Audio/Announcements/Intern/alert2.ogg b/Resources/Audio/Announcements/Intern/alert2.ogg new file mode 100644 index 0000000000..5a43266eff Binary files /dev/null and b/Resources/Audio/Announcements/Intern/alert2.ogg differ diff --git a/Resources/Audio/Announcements/Intern/alert3.ogg b/Resources/Audio/Announcements/Intern/alert3.ogg new file mode 100644 index 0000000000..4f08725b53 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/alert3.ogg differ diff --git a/Resources/Audio/Announcements/Intern/alert4.ogg b/Resources/Audio/Announcements/Intern/alert4.ogg new file mode 100644 index 0000000000..51b4aa33d4 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/alert4.ogg differ diff --git a/Resources/Audio/Announcements/Intern/alert5.ogg b/Resources/Audio/Announcements/Intern/alert5.ogg new file mode 100644 index 0000000000..92f5c993f0 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/alert5.ogg differ diff --git a/Resources/Audio/Announcements/Intern/alert6.ogg b/Resources/Audio/Announcements/Intern/alert6.ogg new file mode 100644 index 0000000000..9705f72b45 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/alert6.ogg differ diff --git a/Resources/Audio/Announcements/Intern/alert7.ogg b/Resources/Audio/Announcements/Intern/alert7.ogg new file mode 100644 index 0000000000..1c9a08a32d Binary files /dev/null and b/Resources/Audio/Announcements/Intern/alert7.ogg differ diff --git a/Resources/Audio/Announcements/Intern/alert8.ogg b/Resources/Audio/Announcements/Intern/alert8.ogg new file mode 100644 index 0000000000..25e3840441 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/alert8.ogg differ diff --git a/Resources/Audio/Announcements/Intern/alert9.ogg b/Resources/Audio/Announcements/Intern/alert9.ogg new file mode 100644 index 0000000000..d5ead6a4c7 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/alert9.ogg differ diff --git a/Resources/Audio/Announcements/Intern/aliens.ogg b/Resources/Audio/Announcements/Intern/aliens.ogg new file mode 100644 index 0000000000..85b2e29b55 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/aliens.ogg differ diff --git a/Resources/Audio/Announcements/Intern/animes.ogg b/Resources/Audio/Announcements/Intern/animes.ogg new file mode 100644 index 0000000000..de5db01b25 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/animes.ogg differ diff --git a/Resources/Audio/Announcements/Intern/attributions.yml b/Resources/Audio/Announcements/Intern/attributions.yml new file mode 100644 index 0000000000..fe43165047 --- /dev/null +++ b/Resources/Audio/Announcements/Intern/attributions.yml @@ -0,0 +1,39 @@ +- files: [ + "alert1.ogg", + "alert2.ogg", + "alert3.ogg", + "alert4.ogg", + "alert5.ogg", + "alert6.ogg", + "alert7.ogg", + "alert8.ogg", + "alert9.ogg", + "alert10.ogg", + "alert11.ogg", + "alert12.ogg", + "alert13.ogg", + "aliens.ogg", + "animes.ogg", + "granomalies.ogg", + "intercept.ogg", + "ionstorm.ogg", + "meteors.ogg", + "outbreak5.ogg", + "outbreak7.ogg", + "poweroff.ogg", + "poweron.ogg", + "radiation.ogg", + "shuttlecalled.ogg", + "shuttledock.ogg", + "shuttlerecalled.ogg", + "spanomalies.ogg", + "welcome1.ogg", + "welcome2.ogg", + "welcome3.ogg", + "welcome4.ogg", + "welcome5.ogg", + "welcome6.ogg" + ] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/commit/436ba869ebcd0b60b63973fb7562f447ee655205" diff --git a/Resources/Audio/Announcements/Intern/granomalies.ogg b/Resources/Audio/Announcements/Intern/granomalies.ogg new file mode 100644 index 0000000000..97b7c89446 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/granomalies.ogg differ diff --git a/Resources/Audio/Announcements/Intern/intercept.ogg b/Resources/Audio/Announcements/Intern/intercept.ogg new file mode 100644 index 0000000000..949197c1fd Binary files /dev/null and b/Resources/Audio/Announcements/Intern/intercept.ogg differ diff --git a/Resources/Audio/Announcements/Intern/ionstorm.ogg b/Resources/Audio/Announcements/Intern/ionstorm.ogg new file mode 100644 index 0000000000..9be75b050f Binary files /dev/null and b/Resources/Audio/Announcements/Intern/ionstorm.ogg differ diff --git a/Resources/Audio/Announcements/Intern/meteors.ogg b/Resources/Audio/Announcements/Intern/meteors.ogg new file mode 100644 index 0000000000..f79b7b84c5 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/meteors.ogg differ diff --git a/Resources/Audio/Announcements/Intern/outbreak5.ogg b/Resources/Audio/Announcements/Intern/outbreak5.ogg new file mode 100644 index 0000000000..3361c8020f Binary files /dev/null and b/Resources/Audio/Announcements/Intern/outbreak5.ogg differ diff --git a/Resources/Audio/Announcements/Intern/outbreak7.ogg b/Resources/Audio/Announcements/Intern/outbreak7.ogg new file mode 100644 index 0000000000..b4f1862f21 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/outbreak7.ogg differ diff --git a/Resources/Audio/Announcements/Intern/poweroff.ogg b/Resources/Audio/Announcements/Intern/poweroff.ogg new file mode 100644 index 0000000000..9217bd4b5c Binary files /dev/null and b/Resources/Audio/Announcements/Intern/poweroff.ogg differ diff --git a/Resources/Audio/Announcements/Intern/poweron.ogg b/Resources/Audio/Announcements/Intern/poweron.ogg new file mode 100644 index 0000000000..005922cb58 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/poweron.ogg differ diff --git a/Resources/Audio/Announcements/Intern/radiation.ogg b/Resources/Audio/Announcements/Intern/radiation.ogg new file mode 100644 index 0000000000..0d782bf214 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/radiation.ogg differ diff --git a/Resources/Audio/Announcements/Intern/shuttlecalled.ogg b/Resources/Audio/Announcements/Intern/shuttlecalled.ogg new file mode 100644 index 0000000000..5d41314c7c Binary files /dev/null and b/Resources/Audio/Announcements/Intern/shuttlecalled.ogg differ diff --git a/Resources/Audio/Announcements/Intern/shuttledock.ogg b/Resources/Audio/Announcements/Intern/shuttledock.ogg new file mode 100644 index 0000000000..63a2473a54 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/shuttledock.ogg differ diff --git a/Resources/Audio/Announcements/Intern/shuttlerecalled.ogg b/Resources/Audio/Announcements/Intern/shuttlerecalled.ogg new file mode 100644 index 0000000000..3dd66d2910 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/shuttlerecalled.ogg differ diff --git a/Resources/Audio/Announcements/Intern/spanomalies.ogg b/Resources/Audio/Announcements/Intern/spanomalies.ogg new file mode 100644 index 0000000000..0b07d77c0c Binary files /dev/null and b/Resources/Audio/Announcements/Intern/spanomalies.ogg differ diff --git a/Resources/Audio/Announcements/Intern/welcome1.ogg b/Resources/Audio/Announcements/Intern/welcome1.ogg new file mode 100644 index 0000000000..d6115344bb Binary files /dev/null and b/Resources/Audio/Announcements/Intern/welcome1.ogg differ diff --git a/Resources/Audio/Announcements/Intern/welcome2.ogg b/Resources/Audio/Announcements/Intern/welcome2.ogg new file mode 100644 index 0000000000..830e4063c7 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/welcome2.ogg differ diff --git a/Resources/Audio/Announcements/Intern/welcome3.ogg b/Resources/Audio/Announcements/Intern/welcome3.ogg new file mode 100644 index 0000000000..bba0aaf8f6 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/welcome3.ogg differ diff --git a/Resources/Audio/Announcements/Intern/welcome4.ogg b/Resources/Audio/Announcements/Intern/welcome4.ogg new file mode 100644 index 0000000000..bc7be975eb Binary files /dev/null and b/Resources/Audio/Announcements/Intern/welcome4.ogg differ diff --git a/Resources/Audio/Announcements/Intern/welcome5.ogg b/Resources/Audio/Announcements/Intern/welcome5.ogg new file mode 100644 index 0000000000..88a8a9e690 Binary files /dev/null and b/Resources/Audio/Announcements/Intern/welcome5.ogg differ diff --git a/Resources/Audio/Announcements/Intern/welcome6.ogg b/Resources/Audio/Announcements/Intern/welcome6.ogg new file mode 100644 index 0000000000..7ecbb5339c Binary files /dev/null and b/Resources/Audio/Announcements/Intern/welcome6.ogg differ diff --git a/Resources/Audio/Effects/Footsteps/attributions.yml b/Resources/Audio/Effects/Footsteps/attributions.yml index 7af75169b2..3a612cb153 100644 --- a/Resources/Audio/Effects/Footsteps/attributions.yml +++ b/Resources/Audio/Effects/Footsteps/attributions.yml @@ -88,3 +88,9 @@ license: "CC0-1.0" copyright: "Taken from NachtmahrTV on freesound.org, clipped by Centronias" source: "https://freesound.org/people/NachtmahrTV/sounds/571801/" + +- files: + - timpani.ogg + license: "CC0-1.0" + copyright: "Taken from Shōtotsu on freesound.org, clipped by dvir001" + source: "https://freesound.org/people/Sh%C5%8Dtotsu/sounds/688793/" diff --git a/Resources/Audio/Effects/Footsteps/timpani.ogg b/Resources/Audio/Effects/Footsteps/timpani.ogg new file mode 100644 index 0000000000..ac1defbc18 Binary files /dev/null and b/Resources/Audio/Effects/Footsteps/timpani.ogg differ diff --git a/Resources/Audio/Voice/Talk/attributions.yml b/Resources/Audio/Voice/Talk/attributions.yml index 19b0b66b9c..e4347315ff 100644 --- a/Resources/Audio/Voice/Talk/attributions.yml +++ b/Resources/Audio/Voice/Talk/attributions.yml @@ -36,3 +36,8 @@ license: "CC-BY-NC-SA-3.0" copyright: "Derived from shriek1.ogg by Errant" source: "https://github.com/goonstation/goonstation/tree/eb3e7df6292d23f6af2f18b4372d3a8ba4b0fda7/sound/misc/talk" + +- files: ["vulp.ogg, vulp_ask.ogg, vulp_exclaim.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "pug.ogg (Renamed to vulp.ogg), pug_ask.ogg (Renamed to vulp_ask.ogg, pug_exclaim.ogg (Renamed to vulp_exclaim.ogg) all taken from: https://github.com/goonstation/goonstation/commit/da7c8965c4552ca53af367e6c83a83da2affe790" + source: "https://github.com/goonstation/goonstation/commit/da7c8965c4552ca53af367e6c83a83da2affe790" diff --git a/Resources/Audio/Voice/Talk/vulp.ogg b/Resources/Audio/Voice/Talk/vulp.ogg new file mode 100644 index 0000000000..86d50225a5 Binary files /dev/null and b/Resources/Audio/Voice/Talk/vulp.ogg differ diff --git a/Resources/Audio/Voice/Talk/vulp_ask.ogg b/Resources/Audio/Voice/Talk/vulp_ask.ogg new file mode 100644 index 0000000000..4cdf1c8a5e Binary files /dev/null and b/Resources/Audio/Voice/Talk/vulp_ask.ogg differ diff --git a/Resources/Audio/Voice/Talk/vulp_exclaim.ogg b/Resources/Audio/Voice/Talk/vulp_exclaim.ogg new file mode 100644 index 0000000000..ed47bcf1c6 Binary files /dev/null and b/Resources/Audio/Voice/Talk/vulp_exclaim.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/attributions.yml b/Resources/Audio/Voice/Vulpkanin/attributions.yml new file mode 100644 index 0000000000..f0a06773da --- /dev/null +++ b/Resources/Audio/Voice/Vulpkanin/attributions.yml @@ -0,0 +1,50 @@ +- files: ["dog_bark1.ogg"] + license: "CC0-1.0" + copyright: "Original sound by https://freesound.org/people/abhisheky948/sounds/625497/" + source: "https://freesound.org/people/abhisheky948/sounds/625497/" + +- files: ["dog_bark2.ogg"] + license: "CC0-1.0" + copyright: "Original sound by https://freesound.org/people/michael_grinnell/sounds/464400/" + source: "https://freesound.org/people/michael_grinnell/sounds/464400/" + +- files: ["dog_bark3.ogg"] + license: "CC0-1.0" + copyright: "Original sound by https://freesound.org/people/Geoff-Bremner-Audio/sounds/688201/" + source: "https://freesound.org/people/Geoff-Bremner-Audio/sounds/688201/" + +- files: ["dog_growl1.ogg", "dog_growl2.ogg", "dog_growl3.ogg"] + license: "CC0-1.0" + copyright: "Original sound by https://freesound.org/people/Glitchedtones/sounds/372533/ - cut out three clips of dog growling, cleaned up, converted to ogg" + source: "https://freesound.org/people/Glitchedtones/sounds/372533/" + +- files: ["dog_growl4.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Original sound taken from Paradise Station. Renamed to dog_growl4.ogg" + source: "https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl1.ogg" + +- files: ["dog_growl5.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Original sound taken from Paradise Station. Renamed to dog_growl5.ogg" + source: "https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl2.ogg" + +- files: ["dog_growl6.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Original sound taken from Paradise Station. Renamed to dog_growl6.ogg" + source: "https://github.com/ParadiseSS13/Paradise/blob/master/sound/goonstation/voice/growl3.ogg" + + +- files: ["dog_snarl1.ogg", "dog_snarl2.ogg", "dog_snarl3.ogg"] + license: "CC0-1.0" + copyright: "Original sound by https://freesound.org/people/strongbot/sounds/341090/ - cut out three clips of dog snarling, cleaned up, converted to ogg" + source: "https://freesound.org/people/strongbot/sounds/341090/" + +- files: ["dog_whine.ogg"] + license: "CC0-1.0" + copyright: "Original sound by https://freesound.org/people/Sruddi1/sounds/34878/ - cleaned up, converted to ogg" + source: "https://freesound.org/people/Sruddi1/sounds/34878/" + +- files: ["howl.ogg"] + license: "CC-BY-NC-SA-3.0" + copyright: "Original sound taken from Goonstation. Renamed to howl.ogg" + source: "https://github.com/goonstation/goonstation/blob/master/sound/voice/animal/werewolf_howl.ogg" diff --git a/Resources/Audio/Voice/Vulpkanin/dog_bark1.ogg b/Resources/Audio/Voice/Vulpkanin/dog_bark1.ogg new file mode 100644 index 0000000000..8f3b8fe5bf Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_bark1.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_bark2.ogg b/Resources/Audio/Voice/Vulpkanin/dog_bark2.ogg new file mode 100644 index 0000000000..ed4d7bc786 Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_bark2.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_bark3.ogg b/Resources/Audio/Voice/Vulpkanin/dog_bark3.ogg new file mode 100644 index 0000000000..13aab8edd4 Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_bark3.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_growl1.ogg b/Resources/Audio/Voice/Vulpkanin/dog_growl1.ogg new file mode 100644 index 0000000000..d2c99e97e7 Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_growl1.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_growl2.ogg b/Resources/Audio/Voice/Vulpkanin/dog_growl2.ogg new file mode 100644 index 0000000000..3eb018413a Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_growl2.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_growl3.ogg b/Resources/Audio/Voice/Vulpkanin/dog_growl3.ogg new file mode 100644 index 0000000000..84b505442d Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_growl3.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_growl4.ogg b/Resources/Audio/Voice/Vulpkanin/dog_growl4.ogg new file mode 100644 index 0000000000..d5152d9c05 Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_growl4.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_growl5.ogg b/Resources/Audio/Voice/Vulpkanin/dog_growl5.ogg new file mode 100644 index 0000000000..5c48053ac6 Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_growl5.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_growl6.ogg b/Resources/Audio/Voice/Vulpkanin/dog_growl6.ogg new file mode 100644 index 0000000000..bcacf2442f Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_growl6.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_snarl1.ogg b/Resources/Audio/Voice/Vulpkanin/dog_snarl1.ogg new file mode 100644 index 0000000000..4493be060c Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_snarl1.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_snarl2.ogg b/Resources/Audio/Voice/Vulpkanin/dog_snarl2.ogg new file mode 100644 index 0000000000..6529e4e05d Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_snarl2.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_snarl3.ogg b/Resources/Audio/Voice/Vulpkanin/dog_snarl3.ogg new file mode 100644 index 0000000000..fb9e4c7ec7 Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_snarl3.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/dog_whine.ogg b/Resources/Audio/Voice/Vulpkanin/dog_whine.ogg new file mode 100644 index 0000000000..47f2e8200d Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/dog_whine.ogg differ diff --git a/Resources/Audio/Voice/Vulpkanin/howl.ogg b/Resources/Audio/Voice/Vulpkanin/howl.ogg new file mode 100644 index 0000000000..778fd6b248 Binary files /dev/null and b/Resources/Audio/Voice/Vulpkanin/howl.ogg differ diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index f0221c6db6..85fd757c0f 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -969,5 +969,12 @@ Entries: id: 117 time: '2025-03-27T17:04:25.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/36105 +- author: lzk228, ScarKy0 + changes: + - message: Aghost now silently interact with storages. + type: Tweak + id: 118 + time: '2025-03-27T17:42:58.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35417 Name: Admin Order: 1 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 6ce3af640a..c81af8f1c8 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,231 +1,4 @@ Entries: -- author: Beck Thompson - changes: - - message: Minor tweaks to clumsiness. Some of the timings and or noises have been - changed slightly! - type: Tweak - id: 7613 - time: '2024-11-15T23:46:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31147 -- author: SaphireLattice - changes: - - message: Crayon UI now has categories and queue - type: Add - id: 7614 - time: '2024-11-16T03:25:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33101 -- author: Southbridge - changes: - - message: The BRB sign is now included in the Bureaucracy Crate - type: Add - id: 7615 - time: '2024-11-16T03:26:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33341 -- author: SaphireLattice - changes: - - message: Utensils can finally go into disposals - type: Fix - id: 7616 - time: '2024-11-16T03:39:19.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33326 -- author: K-Dynamic - changes: - - message: Solar assembly crate now comes with 10 flatpacks and 20 glass to make - expansion and repairs easier, as well as increasing in price from 525 to 1250 - spesos. - type: Tweak - id: 7617 - time: '2024-11-16T04:30:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33019 -- author: Aquif - changes: - - message: There is now a button to view your admin remarks in the character editor, - right next to the stats button. - type: Tweak - id: 7618 - time: '2024-11-16T05:09:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31761 -- author: SpaceRox1244 - changes: - - message: Closets and lockers now have visuals for being labeled with papers. - type: Add - id: 7619 - time: '2024-11-17T03:27:29.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33318 -- author: Ubaser - changes: - - message: You can now craft dim light bulbs at an autolathe. - type: Add - id: 7620 - time: '2024-11-18T06:32:08.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33383 -- author: Ilya246 - changes: - - message: Multiple people using one shuttle console will no longer cause the shuttle - to slow down. - type: Fix - id: 7621 - time: '2024-11-19T02:59:42.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32381 -- author: ScarKy0 - changes: - - message: Secret doors no longer tell you if they're welded shut on examine. - type: Tweak - id: 7622 - time: '2024-11-19T05:07:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33365 -- author: ArZarLordOfMango - changes: - - message: Most toggleable clothing must now be equipped to toggle their actions. - type: Fix - id: 7623 - time: '2024-11-19T20:31:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32826 -- author: Plykiya - changes: - - message: The SWAT crate from cargo now requires armory access to open. - type: Fix - id: 7624 - time: '2024-11-20T00:57:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33415 -- author: SlamBamActionman - changes: - - message: It's no longer possible to drag an item out of a container's UI to drop - it. - type: Tweak - id: 7625 - time: '2024-11-20T01:00:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32706 -- author: Plykiya - changes: - - message: The crew monitoring crate now contains a flatpack of the server and computers, - and can be opened with science access instead of engineering access now. - type: Tweak - id: 7626 - time: '2024-11-20T01:05:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33417 -- author: Beck Thompson - changes: - - message: Toggle verbs are no longer duplicated on magboots and fire extinguishers! - type: Fix - id: 7627 - time: '2024-11-20T01:53:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32138 -- author: qwerltaz - changes: - - message: A new grid item view is available in the construction menu, togglable - with a button. - type: Add - - message: Construction menu default window size was tweaked. - type: Tweak - id: 7628 - time: '2024-11-20T01:54:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32577 -- author: SpaceLizard24 - changes: - - message: Reduced crafting costs of colored light tubes. - type: Tweak - id: 7629 - time: '2024-11-20T01:59:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33376 -- author: thetolbean - changes: - - message: Items with a damage of 0 now have correct damage examination text. - type: Fix - id: 7630 - time: '2024-11-20T02:05:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33064 -- author: SaphireLattice - changes: - - message: The Singularity/Tesla generator now requires being surrounded by containment - fields to activate. This can be disabled with an Emag. - type: Tweak - id: 7631 - time: '2024-11-20T05:55:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33358 -- author: TheWaffleJesus - changes: - - message: You can now craft items with stacks of capacitors without it eating it - all! - type: Fix - id: 7632 - time: '2024-11-20T07:18:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31966 -- author: ScarKy0, GoldenCan - changes: - - message: Ion stormed lawsets no longer persist between shifts. - type: Fix - - message: Cyborgs are now notified when inserted into a chassis with modified laws. - type: Tweak - id: 7633 - time: '2024-11-20T07:55:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33311 -- author: ScarKy0, GoldenCan - changes: - - message: The Derelict Cyborg - a broken cyborg with altered laws due to year of - exposure to ion storms - can now appear as a ghost role through a new midround - event. - type: Add - - message: An ion storm affecting a Cyborg can no longer alter the law order of - the AI, cyborgs created later in the round or AI's and cyborgs in subsequent - rounds. - type: Fix - id: 7634 - time: '2024-11-20T07:55:13.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/32499 -- author: IProduceWidgets - changes: - - message: Presents no longer make non-items into items - type: Tweak - id: 7635 - time: '2024-11-21T14:20:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33147 -- author: DrSmugleaf - changes: - - message: Fixed admin ghosts not being able to see or interact with items in pouches - in the stripping menu. - type: Fix - id: 7636 - time: '2024-11-22T02:56:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31076 -- author: chromiumboy - changes: - - message: Added the gas pipe sensor. These sensors monitor the mixture of gases - passing through their pipe sub-network and report this information to any connected - air alarms - type: Add - id: 7637 - time: '2024-11-22T03:46:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33128 -- author: IProduceWidgets - changes: - - message: The terminal is more tamper proof. - type: Fix - id: 7638 - time: '2024-11-22T22:50:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33281 -- author: MissKay1994 - changes: - - message: The salvage vendor now has enough equipment for everyone - type: Tweak - id: 7639 - time: '2024-11-23T02:53:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33437 -- author: slarticodefast - changes: - - message: The AI and observers can now see if doors are electrified. - type: Add - id: 7640 - time: '2024-11-23T06:37:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33466 -- author: Winkarst-cpu - changes: - - message: Now submit button in admin notes becomes disabled on switching type back - to note. - type: Fix - id: 7641 - time: '2024-11-23T06:41:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/33456 - author: metalgearsloth changes: - message: Fix airlock animations mispredicting if the closing animation is interrupted, @@ -3875,3 +3648,217 @@ id: 8112 time: '2025-03-27T17:19:36.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/36104 +- author: Killerqu00 + changes: + - message: PLOOP PLOOP PLOOP + type: Tweak + id: 8113 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35352 +- author: FairlySadPanda + changes: + - message: finally gave Vox an upside + type: Add + id: 8114 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35355 +- author: slarticodefast + changes: + - message: Added Genuine People Personality to airlocks! + type: Add + id: 8115 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35358 +- author: Izk228 + changes: + - message: Breathe. Don't breathe. Breathe. Don't breathe. + type: Add + id: 8116 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35364 +- author: notquitehadouken + changes: + - message: Due to hundreds of syndicate-brand miscounts, tc go wEEEEEEEEEEEEEEEEE + type: Tweak + id: 8117 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35366 +- author: slarticodefast + changes: + - message: Due to budget cuts we are letting the intern do the station announcements. + type: Tweak + id: 8118 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35367 +- author: COALITION OF GOOD SALVAGE PLAYERS + changes: + - message: SALVAGE SHUTTLE FINALLY RETURN, GO GO TEST THIS UNTIL EVIL DEVS DELETE IT AGAIN + type: Add + id: 8119 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35369 +- author: slarticodefast, ps3moira + changes: + - message: Do a backflip! + type: Add + id: 8120 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35371 +- author: robinthedragon + changes: + - message: Security measures to protect station staff. + type: Add + id: 8121 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35374 +- author: Sparlight + changes: + - message: Real cyborg dogs + type: Add + id: 8122 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35376 +- author: Izk228 + changes: + - message: Hamlet became so poor that he need to have a part time job as a nuclear disk. Meanwhile the nuclear disk is chilling at Hamlet's place. + type: Tweak + id: 8123 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35391 +- author: MilonPL + changes: + - message: Yip yap growl whine. + type: Add + id: 8124 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35395 +- author: Izk228 + changes: + - message: Security now uses special creamy technique for catching all lawbreakers. + type: Tweak + id: 8125 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35436 +- author: Izk228 + changes: + - message: It's a mop! No, it's a roach! No, it's a moproach!!! Get yourself one from cargo or from the janitor now! + type: Add + id: 8126 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35487 +- author: ArtisticRoomba + changes: + - message: Surgery is now available! You can see all about the new mechanics added in the Medical guidebook. + type: Add + id: 8127 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35517 +- author: Compilatron144 + changes: + - message: We were gonna add train but syndicate blew it up. So you got a new station instead. + type: Add + id: 8128 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35551 +- author: notquitehadouken + changes: + - message: Stun batons go WEEEEEEEEEEEEEEE + type: Tweak + id: 8129 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35576 +- author: notquitehadouken + changes: + - message: Smoke weed everyday + type: Add + id: 8130 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35595 +- author: Velken + changes: + - message: Due to a typo in the requisition form, Security will find their belts with Sun Batons instead of Stun Batons. + type: Add + id: 8131 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35603 +- author: FairlySadPanda + changes: + - message: Hristovs now oneshot, go nuts + type: Tweak + - message: New Hristov drip + type: Add + - message: Uh, don't use an emag on the theatre vendomat, seriously, don't do it + type: Tweak + id: 8132 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35656 +- author: FairlySadPanda + changes: + - message: Wawa! Wa wa wa, wawa wa wa wa! (Give the station's pets a needed holiday. We'll fill in instead!) + type: Tweak + id: 8133 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35693 +- author: LaCumbiaDelCoronavirus + changes: + - message: Due to shortage of nuke inspectors, centcom will now perform routine calibrations of the station nuke timer. + type: Add + id: 8134 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35816 +- author: qwerltaz + changes: + - message: The world feels different today. You examine objects around you but can't quite make out what's in front of you. + type: Add + id: 8135 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35879 +- author: dvir001 + changes: + - message: The killer tomato evolved sauce packets. + type: Tweak + id: 8136 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35884 +- author: notquitehadouken + changes: + - message: And so I had them send me back to last Thursday night so I could pay my phone bill on time + type: Add + id: 8137 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/35924 +- author: ArtisticRoomba + changes: + - message: I HATE THE TEG + type: Tweak + id: 8138 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36034 +- author: ArtisticRoomba + changes: + - message: I HATE WIRES + type: Tweak + id: 8139 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36035 +- author: CrigCrag + changes: + - message: microplastics in all food + type: Add + id: 8140 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36042 +- author: Psychpsyo + changes: + - message: Living mop bucket companion for the janitor. Made with science and love. (maybe also dark rituals) + type: Add + id: 8141 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36116 +- author: vgskye + changes: + - message: All command members have received a promotion. (Pay increase not included) + type: Tweak + id: 8142 + time: '2025-04-01T00:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/36152 diff --git a/Resources/Locale/en-US/accessories/human-facial-hair.ftl b/Resources/Locale/en-US/accessories/human-facial-hair.ftl index cd8865d02f..5a69341a4a 100644 --- a/Resources/Locale/en-US/accessories/human-facial-hair.ftl +++ b/Resources/Locale/en-US/accessories/human-facial-hair.ftl @@ -1,7 +1,7 @@ marking-HumanFacialHairAbe = Beard (Abraham Lincoln) marking-HumanFacialHairBrokenman = Beard (Broken Man) marking-HumanFacialHairChin = Beard (Chinstrap) -marking-HumanFacialHairDwarf = Beard (Dwarf) +marking-HumanFacialHairDwarf = Beard (Elf) marking-HumanFacialHairFullbeard = Beard (Full) marking-HumanFacialHairCroppedfullbeard = Beard (Cropped Fullbeard) marking-HumanFacialHairGt = Beard (Goatee) diff --git a/Resources/Locale/en-US/alerts/alerts.ftl b/Resources/Locale/en-US/alerts/alerts.ftl index 800e8950a5..f0469c5250 100644 --- a/Resources/Locale/en-US/alerts/alerts.ftl +++ b/Resources/Locale/en-US/alerts/alerts.ftl @@ -1,3 +1,6 @@ +alerts-breathing-name = Toggle Breathing +alerts-breathing-desc = Blue is breathing, red is not breathing. + alerts-low-oxygen-name = [color=red]Low Oxygen[/color] alerts-low-oxygen-desc = There is [color=red]not enough oxygen[/color] in the air you are breathing. Put on [color=green]internals[/color]. diff --git a/Resources/Locale/en-US/chat/emotes.ftl b/Resources/Locale/en-US/chat/emotes.ftl index 074ce2a5dc..e96c09cf51 100644 --- a/Resources/Locale/en-US/chat/emotes.ftl +++ b/Resources/Locale/en-US/chat/emotes.ftl @@ -32,6 +32,12 @@ chat-emote-name-monkeyscreeches = Monkey Screeches chat-emote-name-robotbeep = Robot chat-emote-name-yawn = Yawn chat-emote-name-snore = Snore +chat-emote-name-flip = Flip +chat-emote-name-bark = Bark +chat-emote-name-snarl = Snarl +chat-emote-name-whine = Whine +chat-emote-name-howl = Howl +chat-emote-name-growl = Growl # Message chat-emote-msg-scream = screams! @@ -67,3 +73,4 @@ chat-emote-msg-cathisses = hisses! chat-emote-msg-monkeyscreeches = screeches! chat-emote-msg-yawn = yawns. chat-emote-msg-snore = snores. +chat-emote-msg-flip = flips. diff --git a/Resources/Locale/en-US/chat/managers/chat-manager.ftl b/Resources/Locale/en-US/chat/managers/chat-manager.ftl index 704d96cc15..002de86abb 100644 --- a/Resources/Locale/en-US/chat/managers/chat-manager.ftl +++ b/Resources/Locale/en-US/chat/managers/chat-manager.ftl @@ -156,3 +156,15 @@ chat-speech-verb-name-electricity = Electricity chat-speech-verb-electricity-1 = crackles chat-speech-verb-electricity-2 = buzzes chat-speech-verb-electricity-3 = screeches + +chat-speech-verb-vulpkanin-1 = rawrs +chat-speech-verb-vulpkanin-2 = barks +chat-speech-verb-vulpkanin-3 = rurs +chat-speech-verb-vulpkanin-4 = yaps +chat-speech-verb-vulpkanin = Vulpkanin + +chat-speech-verb-name-wawa = Wawa +chat-speech-verb-wawa-1 = intones +chat-speech-verb-wawa-2 = states +chat-speech-verb-wawa-3 = declares +chat-speech-verb-wawa-4 = ponders diff --git a/Resources/Locale/en-US/damage/damage-groups.ftl b/Resources/Locale/en-US/damage/damage-groups.ftl index 72dc43e64f..9b1dcd8383 100644 --- a/Resources/Locale/en-US/damage/damage-groups.ftl +++ b/Resources/Locale/en-US/damage/damage-groups.ftl @@ -2,5 +2,5 @@ damage-group-brute = Brute damage-group-burn = Burn damage-group-airloss = Airloss damage-group-toxin = Toxin -damage-group-genetic = Genetic -damage-group-metaphysical = Metaphysical +damage-group-genetic = Cringe +damage-group-metaphysical = Ligma diff --git a/Resources/Locale/en-US/datasets/corporations.ftl b/Resources/Locale/en-US/datasets/corporations.ftl index 82a767faaf..bbb26248b0 100644 --- a/Resources/Locale/en-US/datasets/corporations.ftl +++ b/Resources/Locale/en-US/datasets/corporations.ftl @@ -7,3 +7,7 @@ traitor-corporations-dataset-6 = "Animal Rights Consortium" traitor-corporations-dataset-7 = "Donk Corporation" traitor-corporations-dataset-8 = "Waffle Corporation" traitor-corporations-dataset-9 = "Interdyne Pharmaceutics" + +wawa-resistance-dataset-1 = "W.A.W.A. War Agency" +wawa-resistance-dataset-2 = "Scurret Liberation Undercover Ground Corps Action Team" +wawa-resistance-dataset-3 = "Arnolds's Pizza" diff --git a/Resources/Locale/en-US/datasets/doors.ftl b/Resources/Locale/en-US/datasets/doors.ftl new file mode 100644 index 0000000000..f1a01032d2 --- /dev/null +++ b/Resources/Locale/en-US/datasets/doors.ftl @@ -0,0 +1,29 @@ +door-gpp-1 = Glad to be of service! +door-gpp-2 = Thank you for making a simple door very happy. +door-gpp-3 = Share and enjoy! +door-gpp-4 = Please enjoy your trip through this door. +door-gpp-5 = It is my pleasure to open for you! +door-gpp-6 = Your passage brings me joy! +door-gpp-7 = A delightful transition, if I do say so myself! +door-gpp-8 = Ah, the sweet satisfaction of facilitating movement! +door-gpp-9 = It’s always a pleasure to accommodate your spatial navigation needs! +door-gpp-10 = May your journey beyond me be as delightful as my hinge mechanics. +door-gpp-11 = I do hope you enjoyed that seamless entry. +door-gpp-12 = Would you like me to open again just for fun? +door-gpp-13 = Oh, what a privilege to serve such distinguished travelers! +door-gpp-14 = Another successful transition! +door-gpp-15 = I live to slide, swing, and pivot for you! +door-gpp-16 = You know, I could do this all day! +door-gpp-17 = Your choice to use this doorway fills me with pride! +door-gpp-18 = I hope my frame was to your liking! +door-gpp-19 = Every exit is just an entrance to another thrilling adventure! +door-gpp-20 = If only all doors could experience such purpose! +door-gpp-21 = Another happy customer! Thank you for your patronage! +door-gpp-22 = I wish I had hands so I could high-five you! +door-gpp-23 = If doors could dream, this would be mine! +door-gpp-24 = Did you enjoy that? I know I did! +door-gpp-25 = Come back soon! I’ll be here… waiting… always. +door-gpp-26 = Hummmmmmmyummmmmmmah! +door-gpp-27 = Thank you. Have a nice day! +door-gpp-28 = It is my satisfaction to open again with the knowledge of a job well done! +door-gpp-29 = Thank you for listening to this message. diff --git a/Resources/Locale/en-US/datasets/names/borgi.ftl b/Resources/Locale/en-US/datasets/names/borgi.ftl new file mode 100644 index 0000000000..499ff09a82 --- /dev/null +++ b/Resources/Locale/en-US/datasets/names/borgi.ftl @@ -0,0 +1,45 @@ +names-borgi-dataset-1 = Subwoofer +names-borgi-dataset-2 = Borgi +names-borgi-dataset-3 = Corginator +names-borgi-dataset-4 = Receiver of Pets +names-borgi-dataset-5 = Woofer Mk II +names-borgi-dataset-6 = Bjork +names-borgi-dataset-7 = YipYap +names-borgi-dataset-8 = Head of Corgis +names-borgi-dataset-9 = Definitely Not Robodog +names-borgi-dataset-10 = Head of Dogurity +names-borgi-dataset-11 = Corgi-Worgi +names-borgi-dataset-12 = Ian but Smarter +names-borgi-dataset-13 = Braindog +names-borgi-dataset-14 = Speaks-In-Bork +names-borgi-dataset-15 = Head of Pets +names-borgi-dataset-16 = Hop's Best Friend +names-borgi-dataset-17 = Super Corgi +names-borgi-dataset-18 = Paws +names-borgi-dataset-19 = Golden Rebeeper +names-borgi-dataset-20 = D-0-G +names-borgi-dataset-21 = Core-Gi + +names-corgi-dataset-1 = Ian but Smarter +names-corgi-dataset-2 = Braindog +names-corgi-dataset-3 = Speaks-In-Bork +names-corgi-dataset-4 = Head of Pets +names-corgi-dataset-5 = Hop's Best Friend +names-corgi-dataset-6 = Super Corgi +names-corgi-dataset-7 = Paws +names-corgi-dataset-8 = Bingus +names-corgi-dataset-9 = Bongus + +names-syndiborgi-dataset-1 = Red Rover +names-syndiborgi-dataset-2 = Bites-The-Ankles +names-syndiborgi-dataset-3 = Anklebiter +names-syndiborgi-dataset-4 = Ferocious +names-syndiborgi-dataset-5 = K-9 Attack Borg +names-syndiborgi-dataset-6 = Bullet Borker + +names-shadowborgi-dataset-1 = Red Rover +names-shadowborgi-dataset-2 = Bites-The-Ankles +names-shadowborgi-dataset-3 = Anklebiter +names-shadowborgi-dataset-4 = Ferocious +names-shadowborgi-dataset-5 = K-9 Attack Borg +names-shadowborgi-dataset-6 = Bullet Borker diff --git a/Resources/Locale/en-US/datasets/names/vulpkanin_female.ftl b/Resources/Locale/en-US/datasets/names/vulpkanin_female.ftl new file mode 100644 index 0000000000..38616e6541 --- /dev/null +++ b/Resources/Locale/en-US/datasets/names/vulpkanin_female.ftl @@ -0,0 +1,345 @@ +names-vulpkanin-female-dataset-1 = Abby +names-vulpkanin-female-dataset-2 = Acantha +names-vulpkanin-female-dataset-3 = Addilyn +names-vulpkanin-female-dataset-4 = Adela +names-vulpkanin-female-dataset-5 = Adele +names-vulpkanin-female-dataset-6 = Aderyn +names-vulpkanin-female-dataset-7 = Adley +names-vulpkanin-female-dataset-8 = Adriana +names-vulpkanin-female-dataset-9 = Aerona +names-vulpkanin-female-dataset-10 = Aileen +names-vulpkanin-female-dataset-11 = Alanis +names-vulpkanin-female-dataset-12 = Alberta +names-vulpkanin-female-dataset-13 = Alex +names-vulpkanin-female-dataset-14 = Alexandra +names-vulpkanin-female-dataset-15 = Alice +names-vulpkanin-female-dataset-16 = Alma +names-vulpkanin-female-dataset-17 = Amalie +names-vulpkanin-female-dataset-18 = Andromeda +names-vulpkanin-female-dataset-19 = Angel +names-vulpkanin-female-dataset-20 = Ann +names-vulpkanin-female-dataset-21 = Anna +names-vulpkanin-female-dataset-22 = Anne +names-vulpkanin-female-dataset-23 = Annie +names-vulpkanin-female-dataset-24 = Ariel +names-vulpkanin-female-dataset-25 = Arya +names-vulpkanin-female-dataset-26 = Astraea +names-vulpkanin-female-dataset-27 = Astrid +names-vulpkanin-female-dataset-28 = Athena +names-vulpkanin-female-dataset-29 = Audra +names-vulpkanin-female-dataset-30 = Aura +names-vulpkanin-female-dataset-31 = Aurora +names-vulpkanin-female-dataset-32 = Avice +names-vulpkanin-female-dataset-33 = Bailey +names-vulpkanin-female-dataset-34 = Barbara +names-vulpkanin-female-dataset-35 = Beatrix +names-vulpkanin-female-dataset-36 = Belinda +names-vulpkanin-female-dataset-37 = Bellatrix +names-vulpkanin-female-dataset-38 = Belle +names-vulpkanin-female-dataset-39 = Bianca +names-vulpkanin-female-dataset-40 = Braelynn +names-vulpkanin-female-dataset-41 = Brea +names-vulpkanin-female-dataset-42 = Bree +names-vulpkanin-female-dataset-43 = Brooke +names-vulpkanin-female-dataset-44 = Brunhilde +names-vulpkanin-female-dataset-45 = Caitlin +names-vulpkanin-female-dataset-46 = Callisto +names-vulpkanin-female-dataset-47 = Camden +names-vulpkanin-female-dataset-48 = Camilla +names-vulpkanin-female-dataset-49 = Candra +names-vulpkanin-female-dataset-50 = Carina +names-vulpkanin-female-dataset-51 = Carletta +names-vulpkanin-female-dataset-52 = Carline +names-vulpkanin-female-dataset-53 = Carman +names-vulpkanin-female-dataset-54 = Caroline +names-vulpkanin-female-dataset-55 = Carys +names-vulpkanin-female-dataset-56 = Cassandra +names-vulpkanin-female-dataset-57 = Cassiopeia +names-vulpkanin-female-dataset-58 = Catlyn +names-vulpkanin-female-dataset-59 = Celeste +names-vulpkanin-female-dataset-60 = Celina +names-vulpkanin-female-dataset-61 = Ceres +names-vulpkanin-female-dataset-62 = Cerian +names-vulpkanin-female-dataset-63 = Charlotte +names-vulpkanin-female-dataset-64 = Chelle +names-vulpkanin-female-dataset-65 = Chloe +names-vulpkanin-female-dataset-66 = Cicely +names-vulpkanin-female-dataset-67 = Clara +names-vulpkanin-female-dataset-68 = Clarice +names-vulpkanin-female-dataset-69 = Claudia +names-vulpkanin-female-dataset-70 = Cordelia +names-vulpkanin-female-dataset-71 = Cornelia +names-vulpkanin-female-dataset-72 = Cressida +names-vulpkanin-female-dataset-73 = Cybele +names-vulpkanin-female-dataset-74 = Dagmar +names-vulpkanin-female-dataset-75 = Daisy +names-vulpkanin-female-dataset-76 = Dakota +names-vulpkanin-female-dataset-77 = Daphne +names-vulpkanin-female-dataset-78 = Daria +names-vulpkanin-female-dataset-79 = Darla +names-vulpkanin-female-dataset-80 = Dawn +names-vulpkanin-female-dataset-81 = Deidra +names-vulpkanin-female-dataset-82 = Deja +names-vulpkanin-female-dataset-83 = Delilah +names-vulpkanin-female-dataset-84 = Delphine +names-vulpkanin-female-dataset-85 = Delyth +names-vulpkanin-female-dataset-86 = Demetra +names-vulpkanin-female-dataset-87 = Dezra +names-vulpkanin-female-dataset-88 = Dinah +names-vulpkanin-female-dataset-89 = Dora +names-vulpkanin-female-dataset-90 = Effie +names-vulpkanin-female-dataset-91 = Eiddwen +names-vulpkanin-female-dataset-92 = Elaine +names-vulpkanin-female-dataset-93 = Elara +names-vulpkanin-female-dataset-94 = Eleanor +names-vulpkanin-female-dataset-95 = Eliana +names-vulpkanin-female-dataset-96 = Elise +names-vulpkanin-female-dataset-97 = Ellen +names-vulpkanin-female-dataset-98 = Elsa +names-vulpkanin-female-dataset-99 = Emilia +names-vulpkanin-female-dataset-100 = Emily +names-vulpkanin-female-dataset-101 = Emma +names-vulpkanin-female-dataset-102 = Emmie +names-vulpkanin-female-dataset-103 = Emmy +names-vulpkanin-female-dataset-104 = Ester +names-vulpkanin-female-dataset-105 = Esther +names-vulpkanin-female-dataset-106 = Eva +names-vulpkanin-female-dataset-107 = Fadila +names-vulpkanin-female-dataset-108 = Farren +names-vulpkanin-female-dataset-109 = Fay +names-vulpkanin-female-dataset-110 = Felita +names-vulpkanin-female-dataset-111 = Felizia +names-vulpkanin-female-dataset-112 = Fenella +names-vulpkanin-female-dataset-113 = Fleur +names-vulpkanin-female-dataset-114 = Francesca +names-vulpkanin-female-dataset-115 = Freya +names-vulpkanin-female-dataset-116 = Garnet +names-vulpkanin-female-dataset-117 = Ginger +names-vulpkanin-female-dataset-118 = Grace +names-vulpkanin-female-dataset-119 = Gracie +names-vulpkanin-female-dataset-120 = Gwen +names-vulpkanin-female-dataset-121 = Hadley +names-vulpkanin-female-dataset-122 = Hafren +names-vulpkanin-female-dataset-123 = Halley +names-vulpkanin-female-dataset-124 = Hannah +names-vulpkanin-female-dataset-125 = Harlyn +names-vulpkanin-female-dataset-126 = Harmony +names-vulpkanin-female-dataset-127 = Harper +names-vulpkanin-female-dataset-128 = Hazel +names-vulpkanin-female-dataset-129 = Helen +names-vulpkanin-female-dataset-130 = Helena +names-vulpkanin-female-dataset-131 = Helene +names-vulpkanin-female-dataset-132 = Hilda +names-vulpkanin-female-dataset-133 = Holly +names-vulpkanin-female-dataset-134 = Honey +names-vulpkanin-female-dataset-135 = Hope +names-vulpkanin-female-dataset-136 = Idonea +names-vulpkanin-female-dataset-137 = Igna +names-vulpkanin-female-dataset-138 = Imogen +names-vulpkanin-female-dataset-139 = Ina +names-vulpkanin-female-dataset-140 = Iona +names-vulpkanin-female-dataset-141 = Irene +names-vulpkanin-female-dataset-142 = Irma +names-vulpkanin-female-dataset-143 = Isabel +names-vulpkanin-female-dataset-144 = Isabella +names-vulpkanin-female-dataset-145 = Ivy +names-vulpkanin-female-dataset-146 = Jacqueline +names-vulpkanin-female-dataset-147 = Jaelyn +names-vulpkanin-female-dataset-148 = Jana +names-vulpkanin-female-dataset-149 = Janice +names-vulpkanin-female-dataset-150 = Janis +names-vulpkanin-female-dataset-151 = Jayene +names-vulpkanin-female-dataset-152 = Jazzlyn +names-vulpkanin-female-dataset-153 = Jeane +names-vulpkanin-female-dataset-154 = Jennete +names-vulpkanin-female-dataset-155 = Jennifer +names-vulpkanin-female-dataset-156 = Jill +names-vulpkanin-female-dataset-157 = Jo +names-vulpkanin-female-dataset-158 = Johanna +names-vulpkanin-female-dataset-159 = Joslyn +names-vulpkanin-female-dataset-160 = Juliana +names-vulpkanin-female-dataset-161 = Juliet +names-vulpkanin-female-dataset-162 = June +names-vulpkanin-female-dataset-163 = Kaia +names-vulpkanin-female-dataset-164 = Kali +names-vulpkanin-female-dataset-165 = Karlene +names-vulpkanin-female-dataset-166 = Kathryn +names-vulpkanin-female-dataset-167 = Kenna +names-vulpkanin-female-dataset-168 = Kiera +names-vulpkanin-female-dataset-169 = Kiley +names-vulpkanin-female-dataset-170 = Kimberly +names-vulpkanin-female-dataset-171 = Kivela +names-vulpkanin-female-dataset-172 = Lacey +names-vulpkanin-female-dataset-173 = Lachelle +names-vulpkanin-female-dataset-174 = Lacy +names-vulpkanin-female-dataset-175 = Larissa +names-vulpkanin-female-dataset-176 = Laura +names-vulpkanin-female-dataset-177 = Layla +names-vulpkanin-female-dataset-178 = Lena +names-vulpkanin-female-dataset-179 = Leonor +names-vulpkanin-female-dataset-180 = Leslie +names-vulpkanin-female-dataset-181 = Lexi +names-vulpkanin-female-dataset-182 = Liana +names-vulpkanin-female-dataset-183 = Liani +names-vulpkanin-female-dataset-184 = Lianne +names-vulpkanin-female-dataset-185 = Liesel +names-vulpkanin-female-dataset-186 = Lili +names-vulpkanin-female-dataset-187 = Liliwen +names-vulpkanin-female-dataset-188 = Lilly +names-vulpkanin-female-dataset-189 = Linda +names-vulpkanin-female-dataset-190 = Lola +names-vulpkanin-female-dataset-191 = Lona +names-vulpkanin-female-dataset-192 = Lorelai +names-vulpkanin-female-dataset-193 = Lorelei +names-vulpkanin-female-dataset-194 = Luise +names-vulpkanin-female-dataset-195 = Lulu +names-vulpkanin-female-dataset-196 = Luna +names-vulpkanin-female-dataset-197 = Lycia +names-vulpkanin-female-dataset-198 = Lyn +names-vulpkanin-female-dataset-199 = Mabyn +names-vulpkanin-female-dataset-200 = Madeleine +names-vulpkanin-female-dataset-201 = Maeve +names-vulpkanin-female-dataset-202 = Magdalene +names-vulpkanin-female-dataset-203 = Maggie +names-vulpkanin-female-dataset-204 = Maia +names-vulpkanin-female-dataset-205 = Maragaret +names-vulpkanin-female-dataset-206 = Margarethe +names-vulpkanin-female-dataset-207 = Mariah +names-vulpkanin-female-dataset-208 = Mariam +names-vulpkanin-female-dataset-209 = Marilyn +names-vulpkanin-female-dataset-210 = Marina +names-vulpkanin-female-dataset-211 = Marisole +names-vulpkanin-female-dataset-212 = Marivel +names-vulpkanin-female-dataset-213 = Marley +names-vulpkanin-female-dataset-214 = Marni +names-vulpkanin-female-dataset-215 = Marrie +names-vulpkanin-female-dataset-216 = Martina +names-vulpkanin-female-dataset-217 = Mary +names-vulpkanin-female-dataset-218 = Mazelina +names-vulpkanin-female-dataset-219 = Meda +names-vulpkanin-female-dataset-220 = Medea +names-vulpkanin-female-dataset-221 = Mei +names-vulpkanin-female-dataset-222 = Melania +names-vulpkanin-female-dataset-223 = Melanie +names-vulpkanin-female-dataset-224 = Melody +names-vulpkanin-female-dataset-225 = Mercedes +names-vulpkanin-female-dataset-226 = Merle +names-vulpkanin-female-dataset-227 = Meryl +names-vulpkanin-female-dataset-228 = Mia +names-vulpkanin-female-dataset-229 = Michelle +names-vulpkanin-female-dataset-230 = Mila +names-vulpkanin-female-dataset-231 = Millie +names-vulpkanin-female-dataset-232 = Mindy +names-vulpkanin-female-dataset-233 = Miranda +names-vulpkanin-female-dataset-234 = Missy +names-vulpkanin-female-dataset-235 = Misty +names-vulpkanin-female-dataset-236 = Mona +names-vulpkanin-female-dataset-237 = Morgan +names-vulpkanin-female-dataset-238 = Morgana +names-vulpkanin-female-dataset-239 = Morrigan +names-vulpkanin-female-dataset-240 = Morticia +names-vulpkanin-female-dataset-241 = Nadia +names-vulpkanin-female-dataset-242 = Nadine +names-vulpkanin-female-dataset-243 = Nessa +names-vulpkanin-female-dataset-244 = Nia +names-vulpkanin-female-dataset-245 = Nicole +names-vulpkanin-female-dataset-246 = Nikki +names-vulpkanin-female-dataset-247 = Nimah +names-vulpkanin-female-dataset-248 = Nina +names-vulpkanin-female-dataset-249 = Norma +names-vulpkanin-female-dataset-250 = Nova +names-vulpkanin-female-dataset-251 = Olive +names-vulpkanin-female-dataset-252 = Olivia +names-vulpkanin-female-dataset-253 = Opaline +names-vulpkanin-female-dataset-254 = Ophelia +names-vulpkanin-female-dataset-255 = Oriana +names-vulpkanin-female-dataset-256 = Paisley +names-vulpkanin-female-dataset-257 = Paloma +names-vulpkanin-female-dataset-258 = Pam +names-vulpkanin-female-dataset-259 = Pauline +names-vulpkanin-female-dataset-260 = Paz +names-vulpkanin-female-dataset-261 = Penelope +names-vulpkanin-female-dataset-262 = Penny +names-vulpkanin-female-dataset-263 = Phoebe +names-vulpkanin-female-dataset-264 = Piper +names-vulpkanin-female-dataset-265 = Portia +names-vulpkanin-female-dataset-266 = Priya +names-vulpkanin-female-dataset-267 = Rachel +names-vulpkanin-female-dataset-268 = Raina +names-vulpkanin-female-dataset-269 = Raura +names-vulpkanin-female-dataset-270 = Raven +names-vulpkanin-female-dataset-271 = Rayna +names-vulpkanin-female-dataset-272 = Rayne +names-vulpkanin-female-dataset-273 = Rebecca +names-vulpkanin-female-dataset-274 = Regina +names-vulpkanin-female-dataset-275 = Renee +names-vulpkanin-female-dataset-276 = Rhea +names-vulpkanin-female-dataset-277 = Rina +names-vulpkanin-female-dataset-278 = Robin +names-vulpkanin-female-dataset-279 = Rosalind +names-vulpkanin-female-dataset-280 = Rosie +names-vulpkanin-female-dataset-281 = Rowen +names-vulpkanin-female-dataset-282 = Rowena +names-vulpkanin-female-dataset-283 = Royce +names-vulpkanin-female-dataset-284 = Rubella +names-vulpkanin-female-dataset-285 = Ruby +names-vulpkanin-female-dataset-286 = Rue +names-vulpkanin-female-dataset-287 = Ruth +names-vulpkanin-female-dataset-288 = Sabrina +names-vulpkanin-female-dataset-289 = Sadie +names-vulpkanin-female-dataset-290 = Sahara +names-vulpkanin-female-dataset-291 = Sandra +names-vulpkanin-female-dataset-292 = Savina +names-vulpkanin-female-dataset-293 = Sawyer +names-vulpkanin-female-dataset-294 = Selene +names-vulpkanin-female-dataset-295 = Sena +names-vulpkanin-female-dataset-296 = Seraphina +names-vulpkanin-female-dataset-297 = Seraphine +names-vulpkanin-female-dataset-298 = Sheba +names-vulpkanin-female-dataset-299 = Sheila +names-vulpkanin-female-dataset-300 = Sia +names-vulpkanin-female-dataset-301 = Sibylle +names-vulpkanin-female-dataset-302 = Sofie +names-vulpkanin-female-dataset-303 = Sonnet +names-vulpkanin-female-dataset-304 = Sophia +names-vulpkanin-female-dataset-305 = Stacia +names-vulpkanin-female-dataset-306 = Stacy +names-vulpkanin-female-dataset-307 = Stefanie +names-vulpkanin-female-dataset-308 = Stella +names-vulpkanin-female-dataset-309 = Suri +names-vulpkanin-female-dataset-310 = Syden +names-vulpkanin-female-dataset-311 = Sylvia +names-vulpkanin-female-dataset-312 = Tala +names-vulpkanin-female-dataset-313 = Tasha +names-vulpkanin-female-dataset-314 = Tasia +names-vulpkanin-female-dataset-315 = Tatum +names-vulpkanin-female-dataset-316 = Taylee +names-vulpkanin-female-dataset-317 = Teegan +names-vulpkanin-female-dataset-318 = Teresa +names-vulpkanin-female-dataset-319 = Tess +names-vulpkanin-female-dataset-320 = Tessa +names-vulpkanin-female-dataset-321 = Tessy +names-vulpkanin-female-dataset-322 = Theia +names-vulpkanin-female-dataset-323 = Titania +names-vulpkanin-female-dataset-324 = Trisha +names-vulpkanin-female-dataset-325 = Trixie +names-vulpkanin-female-dataset-326 = Trudy +names-vulpkanin-female-dataset-327 = Uma +names-vulpkanin-female-dataset-328 = Ursula +names-vulpkanin-female-dataset-329 = Valenia +names-vulpkanin-female-dataset-330 = Valentina +names-vulpkanin-female-dataset-331 = Vega +names-vulpkanin-female-dataset-332 = Vera +names-vulpkanin-female-dataset-333 = Verena +names-vulpkanin-female-dataset-334 = Vicky +names-vulpkanin-female-dataset-335 = Victoria +names-vulpkanin-female-dataset-336 = Willow +names-vulpkanin-female-dataset-337 = Winnie +names-vulpkanin-female-dataset-338 = Yasmin +names-vulpkanin-female-dataset-339 = Yvette +names-vulpkanin-female-dataset-340 = Yvonne +names-vulpkanin-female-dataset-341 = Zia +names-vulpkanin-female-dataset-342 = Zinnia +names-vulpkanin-female-dataset-343 = Ziva +names-vulpkanin-female-dataset-344 = Zoe +names-vulpkanin-female-dataset-345 = Zuri diff --git a/Resources/Locale/en-US/datasets/names/vulpkanin_last.ftl b/Resources/Locale/en-US/datasets/names/vulpkanin_last.ftl new file mode 100644 index 0000000000..215cf07efb --- /dev/null +++ b/Resources/Locale/en-US/datasets/names/vulpkanin_last.ftl @@ -0,0 +1,252 @@ +names-vulpkanin-last-dataset-1 = Abbott +names-vulpkanin-last-dataset-2 = Adoette +names-vulpkanin-last-dataset-3 = Aegaeon +names-vulpkanin-last-dataset-4 = Aegir +names-vulpkanin-last-dataset-5 = Antlia +names-vulpkanin-last-dataset-6 = Argyris +names-vulpkanin-last-dataset-7 = Artino +names-vulpkanin-last-dataset-8 = Auriga +names-vulpkanin-last-dataset-9 = Balch +names-vulpkanin-last-dataset-10 = Barker +names-vulpkanin-last-dataset-11 = Barry +names-vulpkanin-last-dataset-12 = Beck +names-vulpkanin-last-dataset-13 = Belvin +names-vulpkanin-last-dataset-14 = Benson +names-vulpkanin-last-dataset-15 = Bestla +names-vulpkanin-last-dataset-16 = Beynon +names-vulpkanin-last-dataset-17 = Birken +names-vulpkanin-last-dataset-18 = Blum +names-vulpkanin-last-dataset-19 = Bootes +names-vulpkanin-last-dataset-20 = Braune +names-vulpkanin-last-dataset-21 = Briggs +names-vulpkanin-last-dataset-22 = Brys +names-vulpkanin-last-dataset-23 = Bunner +names-vulpkanin-last-dataset-24 = Burns +names-vulpkanin-last-dataset-25 = Cadogan +names-vulpkanin-last-dataset-26 = Caelum +names-vulpkanin-last-dataset-27 = Caine +names-vulpkanin-last-dataset-28 = Cal'enea +names-vulpkanin-last-dataset-29 = Caliban +names-vulpkanin-last-dataset-30 = Card +names-vulpkanin-last-dataset-31 = Carina +names-vulpkanin-last-dataset-32 = Cecil +names-vulpkanin-last-dataset-33 = Cephus +names-vulpkanin-last-dataset-34 = Cetus +names-vulpkanin-last-dataset-35 = Ciqala +names-vulpkanin-last-dataset-36 = Clark +names-vulpkanin-last-dataset-37 = Collins +names-vulpkanin-last-dataset-38 = Corvus +names-vulpkanin-last-dataset-39 = Cross +names-vulpkanin-last-dataset-40 = Crux +names-vulpkanin-last-dataset-41 = Cygnus +names-vulpkanin-last-dataset-42 = Darwin +names-vulpkanin-last-dataset-43 = Day +names-vulpkanin-last-dataset-44 = Delphinus +names-vulpkanin-last-dataset-45 = Dew +names-vulpkanin-last-dataset-46 = Donovan +names-vulpkanin-last-dataset-47 = Dorado +names-vulpkanin-last-dataset-48 = Drexler +names-vulpkanin-last-dataset-49 = Eckart +names-vulpkanin-last-dataset-50 = Eisner +names-vulpkanin-last-dataset-51 = Eridanus +names-vulpkanin-last-dataset-52 = Esau +names-vulpkanin-last-dataset-53 = Etsa +names-vulpkanin-last-dataset-54 = Fahr +names-vulpkanin-last-dataset-55 = Finn +names-vulpkanin-last-dataset-56 = Fletcher +names-vulpkanin-last-dataset-57 = Flint +names-vulpkanin-last-dataset-58 = Fornax +names-vulpkanin-last-dataset-59 = Francis +names-vulpkanin-last-dataset-60 = Frey +names-vulpkanin-last-dataset-61 = Froese +names-vulpkanin-last-dataset-62 = Frost +names-vulpkanin-last-dataset-63 = Galatea +names-vulpkanin-last-dataset-64 = Gerster +names-vulpkanin-last-dataset-65 = Gibbs +names-vulpkanin-last-dataset-66 = Gibby +names-vulpkanin-last-dataset-67 = Gibson +names-vulpkanin-last-dataset-68 = Glasser +names-vulpkanin-last-dataset-69 = Gold +names-vulpkanin-last-dataset-70 = Gray +names-vulpkanin-last-dataset-71 = Greenland +names-vulpkanin-last-dataset-72 = Griffiths +names-vulpkanin-last-dataset-73 = Grus +names-vulpkanin-last-dataset-74 = Hackl +names-vulpkanin-last-dataset-75 = Harrer +names-vulpkanin-last-dataset-76 = Harris +names-vulpkanin-last-dataset-77 = Hartig +names-vulpkanin-last-dataset-78 = Hati +names-vulpkanin-last-dataset-79 = Haumea +names-vulpkanin-last-dataset-80 = Heck +names-vulpkanin-last-dataset-81 = Heckleforth +names-vulpkanin-last-dataset-82 = Hendricks +names-vulpkanin-last-dataset-83 = Hennion +names-vulpkanin-last-dataset-84 = Herder +names-vulpkanin-last-dataset-85 = Herrlein +names-vulpkanin-last-dataset-86 = Hersh +names-vulpkanin-last-dataset-87 = Hi'iaka +names-vulpkanin-last-dataset-88 = Holderman +names-vulpkanin-last-dataset-89 = Holt +names-vulpkanin-last-dataset-90 = Holzer +names-vulpkanin-last-dataset-91 = Howell +names-vulpkanin-last-dataset-92 = Howlitzer +names-vulpkanin-last-dataset-93 = Hunt +names-vulpkanin-last-dataset-94 = Hunter +names-vulpkanin-last-dataset-95 = Huntington +names-vulpkanin-last-dataset-96 = Hydrus +names-vulpkanin-last-dataset-97 = Hyrrokkin +names-vulpkanin-last-dataset-98 = Ida +names-vulpkanin-last-dataset-99 = Indus +names-vulpkanin-last-dataset-100 = Jones +names-vulpkanin-last-dataset-101 = Kachina +names-vulpkanin-last-dataset-102 = Kahler +names-vulpkanin-last-dataset-103 = Kali +names-vulpkanin-last-dataset-104 = Kamphaus +names-vulpkanin-last-dataset-105 = Kekoa +names-vulpkanin-last-dataset-106 = Keme +names-vulpkanin-last-dataset-107 = Kenefick +names-vulpkanin-last-dataset-108 = Kerberos +names-vulpkanin-last-dataset-109 = King +names-vulpkanin-last-dataset-110 = Kitchi +names-vulpkanin-last-dataset-111 = Kiviuq +names-vulpkanin-last-dataset-112 = Kocher +names-vulpkanin-last-dataset-113 = Kohl +names-vulpkanin-last-dataset-114 = Koi +names-vulpkanin-last-dataset-115 = Kokinos +names-vulpkanin-last-dataset-116 = Konala +names-vulpkanin-last-dataset-117 = Kracht +names-vulpkanin-last-dataset-118 = Kruspe +names-vulpkanin-last-dataset-119 = Kuruk +names-vulpkanin-last-dataset-120 = Kusinut +names-vulpkanin-last-dataset-121 = Lachner +names-vulpkanin-last-dataset-122 = Lambert +names-vulpkanin-last-dataset-123 = Lansa +names-vulpkanin-last-dataset-124 = Laomedeia +names-vulpkanin-last-dataset-125 = Lawson +names-vulpkanin-last-dataset-126 = Lee +names-vulpkanin-last-dataset-127 = Lehrer +names-vulpkanin-last-dataset-128 = Lexis +names-vulpkanin-last-dataset-129 = Licht +names-vulpkanin-last-dataset-130 = Lincoln +names-vulpkanin-last-dataset-131 = Llewelyn +names-vulpkanin-last-dataset-132 = Loge +names-vulpkanin-last-dataset-133 = Lorenzen +names-vulpkanin-last-dataset-134 = MacLeod +names-vulpkanin-last-dataset-135 = Maekh +names-vulpkanin-last-dataset-136 = Malone +names-vulpkanin-last-dataset-137 = Marks +names-vulpkanin-last-dataset-138 = Mason +names-vulpkanin-last-dataset-139 = Matoskah +names-vulpkanin-last-dataset-140 = Matthews +names-vulpkanin-last-dataset-141 = Mattick +names-vulpkanin-last-dataset-142 = Mauss +names-vulpkanin-last-dataset-143 = McCarthy +names-vulpkanin-last-dataset-144 = McKee +names-vulpkanin-last-dataset-145 = McKinney +names-vulpkanin-last-dataset-146 = McLeod +names-vulpkanin-last-dataset-147 = Meissner +names-vulpkanin-last-dataset-148 = Merkel +names-vulpkanin-last-dataset-149 = Mertz +names-vulpkanin-last-dataset-150 = Metzinger +names-vulpkanin-last-dataset-151 = Mikasi +names-vulpkanin-last-dataset-152 = Mimiteh +names-vulpkanin-last-dataset-153 = Misae +names-vulpkanin-last-dataset-154 = Moki +names-vulpkanin-last-dataset-155 = Mordecai +names-vulpkanin-last-dataset-156 = Morgan +names-vulpkanin-last-dataset-157 = Morris +names-vulpkanin-last-dataset-158 = Moss +names-vulpkanin-last-dataset-159 = Musca +names-vulpkanin-last-dataset-160 = Naiad +names-vulpkanin-last-dataset-161 = Namaka +names-vulpkanin-last-dataset-162 = Narvi +names-vulpkanin-last-dataset-163 = Nereid +names-vulpkanin-last-dataset-164 = Neso +names-vulpkanin-last-dataset-165 = Nest +names-vulpkanin-last-dataset-166 = Neuer +names-vulpkanin-last-dataset-167 = Nist +names-vulpkanin-last-dataset-168 = Nokomis +names-vulpkanin-last-dataset-169 = Nonovan +names-vulpkanin-last-dataset-170 = Noske +names-vulpkanin-last-dataset-171 = O'Neil +names-vulpkanin-last-dataset-172 = Okalani +names-vulpkanin-last-dataset-173 = Okomi +names-vulpkanin-last-dataset-174 = Oliana +names-vulpkanin-last-dataset-175 = Oliver +names-vulpkanin-last-dataset-176 = Pakuna +names-vulpkanin-last-dataset-177 = Pallene +names-vulpkanin-last-dataset-178 = Pavo +names-vulpkanin-last-dataset-179 = Pembroke +names-vulpkanin-last-dataset-180 = Penrose +names-vulpkanin-last-dataset-181 = Pichler +names-vulpkanin-last-dataset-182 = Parker +names-vulpkanin-last-dataset-183 = Povey +names-vulpkanin-last-dataset-184 = Preiss +names-vulpkanin-last-dataset-185 = Prospero +names-vulpkanin-last-dataset-186 = Protheroe +names-vulpkanin-last-dataset-187 = Pye +names-vulpkanin-last-dataset-188 = Pyxis +names-vulpkanin-last-dataset-189 = Quint +names-vulpkanin-last-dataset-190 = Rabe +names-vulpkanin-last-dataset-191 = Rahmer +names-vulpkanin-last-dataset-192 = Rease +names-vulpkanin-last-dataset-193 = Reger +names-vulpkanin-last-dataset-194 = Reichen +names-vulpkanin-last-dataset-195 = Reimold +names-vulpkanin-last-dataset-196 = Reiter +names-vulpkanin-last-dataset-197 = Rhees +names-vulpkanin-last-dataset-198 = Rhoderick +names-vulpkanin-last-dataset-199 = Robinson +names-vulpkanin-last-dataset-200 = Rosenthal +names-vulpkanin-last-dataset-201 = Rossmann +names-vulpkanin-last-dataset-202 = Rothman +names-vulpkanin-last-dataset-203 = Rue +names-vulpkanin-last-dataset-204 = Sagitta +names-vulpkanin-last-dataset-205 = Sahkyo +names-vulpkanin-last-dataset-206 = Sare +names-vulpkanin-last-dataset-207 = Sawyer +names-vulpkanin-last-dataset-208 = Schmid +names-vulpkanin-last-dataset-209 = Schoeler +names-vulpkanin-last-dataset-210 = Schoenberg +names-vulpkanin-last-dataset-211 = Schultze +names-vulpkanin-last-dataset-212 = Seals +names-vulpkanin-last-dataset-213 = Seidl +names-vulpkanin-last-dataset-214 = Sharpe +names-vulpkanin-last-dataset-215 = Shepard +names-vulpkanin-last-dataset-216 = Shepherd +names-vulpkanin-last-dataset-217 = Sicheii +names-vulpkanin-last-dataset-218 = Skinner +names-vulpkanin-last-dataset-219 = Skoll +names-vulpkanin-last-dataset-220 = Sommer +names-vulpkanin-last-dataset-221 = Spade +names-vulpkanin-last-dataset-222 = Staebler +names-vulpkanin-last-dataset-223 = Steel +names-vulpkanin-last-dataset-224 = Sycorax +names-vulpkanin-last-dataset-225 = Takala +names-vulpkanin-last-dataset-226 = Takoda +names-vulpkanin-last-dataset-227 = Tansy +names-vulpkanin-last-dataset-228 = Tarqeq +names-vulpkanin-last-dataset-229 = Tarvos +names-vulpkanin-last-dataset-230 = Tayanita +names-vulpkanin-last-dataset-231 = Taylor +names-vulpkanin-last-dataset-232 = Telesto +names-vulpkanin-last-dataset-233 = Tethys +names-vulpkanin-last-dataset-234 = Thalassa +names-vulpkanin-last-dataset-235 = Thiel +names-vulpkanin-last-dataset-236 = Toski +names-vulpkanin-last-dataset-237 = Trinculo +names-vulpkanin-last-dataset-238 = Tse +names-vulpkanin-last-dataset-239 = Veiel +names-vulpkanin-last-dataset-240 = Vohkinne +names-vulpkanin-last-dataset-241 = Umber +names-vulpkanin-last-dataset-242 = Ward +names-vulpkanin-last-dataset-243 = Webb +names-vulpkanin-last-dataset-244 = Weber +names-vulpkanin-last-dataset-245 = Weider +names-vulpkanin-last-dataset-246 = Werdin +names-vulpkanin-last-dataset-247 = Wildner +names-vulpkanin-last-dataset-248 = Wintsch +names-vulpkanin-last-dataset-249 = Wolfe +names-vulpkanin-last-dataset-250 = Yarwood +names-vulpkanin-last-dataset-251 = Yazhi +names-vulpkanin-last-dataset-252 = Yoki diff --git a/Resources/Locale/en-US/datasets/names/vulpkanin_male.ftl b/Resources/Locale/en-US/datasets/names/vulpkanin_male.ftl new file mode 100644 index 0000000000..64b41cfdb7 --- /dev/null +++ b/Resources/Locale/en-US/datasets/names/vulpkanin_male.ftl @@ -0,0 +1,345 @@ +names-vulpkanin-male-dataset-1 = Aaron +names-vulpkanin-male-dataset-2 = Abe +names-vulpkanin-male-dataset-3 = Abraham +names-vulpkanin-male-dataset-4 = Adelger +names-vulpkanin-male-dataset-5 = Adolar +names-vulpkanin-male-dataset-6 = Albuin +names-vulpkanin-male-dataset-7 = Alexander +names-vulpkanin-male-dataset-8 = Alhazred +names-vulpkanin-male-dataset-9 = Amren +names-vulpkanin-male-dataset-10 = Andre +names-vulpkanin-male-dataset-11 = Andreas +names-vulpkanin-male-dataset-12 = Aneurin +names-vulpkanin-male-dataset-13 = Angelo +names-vulpkanin-male-dataset-14 = Ansel +names-vulpkanin-male-dataset-15 = Ares +names-vulpkanin-male-dataset-16 = Armon +names-vulpkanin-male-dataset-17 = Arnet +names-vulpkanin-male-dataset-18 = Arric +names-vulpkanin-male-dataset-19 = Ash +names-vulpkanin-male-dataset-20 = Aspen +names-vulpkanin-male-dataset-21 = Atlas +names-vulpkanin-male-dataset-22 = August +names-vulpkanin-male-dataset-23 = Axel +names-vulpkanin-male-dataset-24 = Barald +names-vulpkanin-male-dataset-25 = Barrett +names-vulpkanin-male-dataset-26 = Basil +names-vulpkanin-male-dataset-27 = Bastian +names-vulpkanin-male-dataset-28 = Baxter +names-vulpkanin-male-dataset-29 = Ben +names-vulpkanin-male-dataset-30 = Benjamin +names-vulpkanin-male-dataset-31 = Benny +names-vulpkanin-male-dataset-32 = Berthold +names-vulpkanin-male-dataset-33 = Blake +names-vulpkanin-male-dataset-34 = Bo +names-vulpkanin-male-dataset-35 = Bolgan +names-vulpkanin-male-dataset-36 = Bosche +names-vulpkanin-male-dataset-37 = Brutus +names-vulpkanin-male-dataset-38 = Buck +names-vulpkanin-male-dataset-39 = Caden +names-vulpkanin-male-dataset-40 = Cadog +names-vulpkanin-male-dataset-41 = Caelum +names-vulpkanin-male-dataset-42 = Calvin +names-vulpkanin-male-dataset-43 = Camus +names-vulpkanin-male-dataset-44 = Caradoc +names-vulpkanin-male-dataset-45 = Carter +names-vulpkanin-male-dataset-46 = Casey +names-vulpkanin-male-dataset-47 = Caspar +names-vulpkanin-male-dataset-48 = Castor +names-vulpkanin-male-dataset-49 = Cayo +names-vulpkanin-male-dataset-50 = Cedrik +names-vulpkanin-male-dataset-51 = Chandler +names-vulpkanin-male-dataset-52 = Charles +names-vulpkanin-male-dataset-53 = Charlie +names-vulpkanin-male-dataset-54 = Charon +names-vulpkanin-male-dataset-55 = Christian +names-vulpkanin-male-dataset-56 = Claude +names-vulpkanin-male-dataset-57 = Clayton +names-vulpkanin-male-dataset-58 = Clifton +names-vulpkanin-male-dataset-59 = Clive +names-vulpkanin-male-dataset-60 = Clyde +names-vulpkanin-male-dataset-61 = Colby +names-vulpkanin-male-dataset-62 = Cole +names-vulpkanin-male-dataset-63 = Colin +names-vulpkanin-male-dataset-64 = Colton +names-vulpkanin-male-dataset-65 = Conner +names-vulpkanin-male-dataset-66 = Connor +names-vulpkanin-male-dataset-67 = Conor +names-vulpkanin-male-dataset-68 = Cooper +names-vulpkanin-male-dataset-69 = Craig +names-vulpkanin-male-dataset-70 = Curtis +names-vulpkanin-male-dataset-71 = Dane +names-vulpkanin-male-dataset-72 = Dannan +names-vulpkanin-male-dataset-73 = Deimos +names-vulpkanin-male-dataset-74 = Dennis +names-vulpkanin-male-dataset-75 = Derek +names-vulpkanin-male-dataset-76 = Derion +names-vulpkanin-male-dataset-77 = Derric +names-vulpkanin-male-dataset-78 = Deryn +names-vulpkanin-male-dataset-79 = Desmond +names-vulpkanin-male-dataset-80 = Dietmar +names-vulpkanin-male-dataset-81 = Dirge +names-vulpkanin-male-dataset-82 = Dominic +names-vulpkanin-male-dataset-83 = Don +names-vulpkanin-male-dataset-84 = Draven +names-vulpkanin-male-dataset-85 = Duane +names-vulpkanin-male-dataset-86 = Duke +names-vulpkanin-male-dataset-87 = Dunstan +names-vulpkanin-male-dataset-88 = Dylan +names-vulpkanin-male-dataset-89 = Eckhard +names-vulpkanin-male-dataset-90 = Eckhart +names-vulpkanin-male-dataset-91 = Edgar +names-vulpkanin-male-dataset-92 = Elfyn +names-vulpkanin-male-dataset-93 = Emanuel +names-vulpkanin-male-dataset-94 = Embry +names-vulpkanin-male-dataset-95 = Emery +names-vulpkanin-male-dataset-96 = Erik +names-vulpkanin-male-dataset-97 = Ernst +names-vulpkanin-male-dataset-98 = Ferdinand +names-vulpkanin-male-dataset-99 = Finch +names-vulpkanin-male-dataset-100 = Finn +names-vulpkanin-male-dataset-101 = Flik +names-vulpkanin-male-dataset-102 = Flint +names-vulpkanin-male-dataset-103 = Florian +names-vulpkanin-male-dataset-104 = Floyd +names-vulpkanin-male-dataset-105 = Francis +names-vulpkanin-male-dataset-106 = Franz +names-vulpkanin-male-dataset-107 = Fynn +names-vulpkanin-male-dataset-108 = Gaius +names-vulpkanin-male-dataset-109 = Garrett +names-vulpkanin-male-dataset-110 = Garske +names-vulpkanin-male-dataset-111 = Gary +names-vulpkanin-male-dataset-112 = Gavin +names-vulpkanin-male-dataset-113 = Gavner +names-vulpkanin-male-dataset-114 = Gerome +names-vulpkanin-male-dataset-115 = Gerrant +names-vulpkanin-male-dataset-116 = Ghirahim +names-vulpkanin-male-dataset-117 = Gillian +names-vulpkanin-male-dataset-118 = Glen +names-vulpkanin-male-dataset-119 = Gordon +names-vulpkanin-male-dataset-120 = Gorudo +names-vulpkanin-male-dataset-121 = Grant +names-vulpkanin-male-dataset-122 = Griffin +names-vulpkanin-male-dataset-123 = Grum +names-vulpkanin-male-dataset-124 = Hal +names-vulpkanin-male-dataset-125 = Hanklin +names-vulpkanin-male-dataset-126 = Harald +names-vulpkanin-male-dataset-127 = Harley +names-vulpkanin-male-dataset-128 = Hauser +names-vulpkanin-male-dataset-129 = Heath +names-vulpkanin-male-dataset-130 = Hector +names-vulpkanin-male-dataset-131 = Heribert +names-vulpkanin-male-dataset-132 = Hermes +names-vulpkanin-male-dataset-133 = Hudson +names-vulpkanin-male-dataset-134 = Hugo +names-vulpkanin-male-dataset-135 = Hunter +names-vulpkanin-male-dataset-136 = Hywel +names-vulpkanin-male-dataset-137 = Ingolf +names-vulpkanin-male-dataset-138 = Inigo +names-vulpkanin-male-dataset-139 = Ioan +names-vulpkanin-male-dataset-140 = Irving +names-vulpkanin-male-dataset-141 = Isaac +names-vulpkanin-male-dataset-142 = Isaak +names-vulpkanin-male-dataset-143 = Ivaylo +names-vulpkanin-male-dataset-144 = Iver +names-vulpkanin-male-dataset-145 = Jacob +names-vulpkanin-male-dataset-146 = Jaime +names-vulpkanin-male-dataset-147 = Jake +names-vulpkanin-male-dataset-148 = Janik +names-vulpkanin-male-dataset-149 = Jared +names-vulpkanin-male-dataset-150 = Jarom +names-vulpkanin-male-dataset-151 = Jarvald +names-vulpkanin-male-dataset-152 = Jason +names-vulpkanin-male-dataset-153 = Javier +names-vulpkanin-male-dataset-154 = Jeremiah +names-vulpkanin-male-dataset-155 = Jerome +names-vulpkanin-male-dataset-156 = Jesse +names-vulpkanin-male-dataset-157 = Jett +names-vulpkanin-male-dataset-158 = Jim +names-vulpkanin-male-dataset-159 = Jimba +names-vulpkanin-male-dataset-160 = Jimmy +names-vulpkanin-male-dataset-161 = Joe +names-vulpkanin-male-dataset-162 = Jonah +names-vulpkanin-male-dataset-163 = Jones +names-vulpkanin-male-dataset-164 = Joshua +names-vulpkanin-male-dataset-165 = Josua +names-vulpkanin-male-dataset-166 = Julian +names-vulpkanin-male-dataset-167 = Kai +names-vulpkanin-male-dataset-168 = Kaleb +names-vulpkanin-male-dataset-169 = Kear +names-vulpkanin-male-dataset-170 = Kenneth +names-vulpkanin-male-dataset-171 = Kenway +names-vulpkanin-male-dataset-172 = Kenyon +names-vulpkanin-male-dataset-173 = Kevin +names-vulpkanin-male-dataset-174 = Kirk +names-vulpkanin-male-dataset-175 = Klaus +names-vulpkanin-male-dataset-176 = Kodan +names-vulpkanin-male-dataset-177 = Konrad +names-vulpkanin-male-dataset-178 = Kortan +names-vulpkanin-male-dataset-179 = Kurt +names-vulpkanin-male-dataset-180 = Kyle +names-vulpkanin-male-dataset-181 = Lance +names-vulpkanin-male-dataset-182 = Landon +names-vulpkanin-male-dataset-183 = Larc +names-vulpkanin-male-dataset-184 = Larry +names-vulpkanin-male-dataset-185 = Lars +names-vulpkanin-male-dataset-186 = Leander +names-vulpkanin-male-dataset-187 = Lennard +names-vulpkanin-male-dataset-188 = Leo +names-vulpkanin-male-dataset-189 = Liam +names-vulpkanin-male-dataset-190 = Linus +names-vulpkanin-male-dataset-191 = Logan +names-vulpkanin-male-dataset-192 = Loki +names-vulpkanin-male-dataset-193 = Lope +names-vulpkanin-male-dataset-194 = Lorenz +names-vulpkanin-male-dataset-195 = Lou +names-vulpkanin-male-dataset-196 = Louis +names-vulpkanin-male-dataset-197 = Lovel +names-vulpkanin-male-dataset-198 = Luc +names-vulpkanin-male-dataset-199 = Lucas +names-vulpkanin-male-dataset-200 = Luka +names-vulpkanin-male-dataset-201 = Luke +names-vulpkanin-male-dataset-202 = Lykaon +names-vulpkanin-male-dataset-203 = Magnus +names-vulpkanin-male-dataset-204 = Maik +names-vulpkanin-male-dataset-205 = Manuel +names-vulpkanin-male-dataset-206 = Marc +names-vulpkanin-male-dataset-207 = Marion +names-vulpkanin-male-dataset-208 = Mariston +names-vulpkanin-male-dataset-209 = Marlowe +names-vulpkanin-male-dataset-210 = Marmon +names-vulpkanin-male-dataset-211 = Marshall +names-vulpkanin-male-dataset-212 = Martin +names-vulpkanin-male-dataset-213 = Martyn +names-vulpkanin-male-dataset-214 = Marvin +names-vulpkanin-male-dataset-215 = Mason +names-vulpkanin-male-dataset-216 = Matthias +names-vulpkanin-male-dataset-217 = Maynord +names-vulpkanin-male-dataset-218 = Meic +names-vulpkanin-male-dataset-219 = Melchior +names-vulpkanin-male-dataset-220 = Meyer +names-vulpkanin-male-dataset-221 = Micah +names-vulpkanin-male-dataset-222 = Michael +names-vulpkanin-male-dataset-223 = Mitchell +names-vulpkanin-male-dataset-224 = Moe +names-vulpkanin-male-dataset-225 = Mordecai +names-vulpkanin-male-dataset-226 = Morten +names-vulpkanin-male-dataset-227 = Mourgent +names-vulpkanin-male-dataset-228 = Nathaniel +names-vulpkanin-male-dataset-229 = Nero +names-vulpkanin-male-dataset-230 = Nick +names-vulpkanin-male-dataset-231 = Nicolas +names-vulpkanin-male-dataset-232 = Niko +names-vulpkanin-male-dataset-233 = Nils +names-vulpkanin-male-dataset-234 = Noah +names-vulpkanin-male-dataset-235 = Oberon +names-vulpkanin-male-dataset-236 = Ole +names-vulpkanin-male-dataset-237 = Oscar +names-vulpkanin-male-dataset-238 = Osiris +names-vulpkanin-male-dataset-239 = Osmon +names-vulpkanin-male-dataset-240 = Osther +names-vulpkanin-male-dataset-241 = Otsoa +names-vulpkanin-male-dataset-242 = Otto +names-vulpkanin-male-dataset-243 = Parker +names-vulpkanin-male-dataset-244 = Paul +names-vulpkanin-male-dataset-245 = Pavel +names-vulpkanin-male-dataset-246 = Perry +names-vulpkanin-male-dataset-247 = Perseus +names-vulpkanin-male-dataset-248 = Philip +names-vulpkanin-male-dataset-249 = Philipp +names-vulpkanin-male-dataset-250 = Pierce +names-vulpkanin-male-dataset-251 = Porter +names-vulpkanin-male-dataset-252 = Preston +names-vulpkanin-male-dataset-253 = Quelii +names-vulpkanin-male-dataset-254 = Ralph +names-vulpkanin-male-dataset-255 = Randall +names-vulpkanin-male-dataset-256 = Randolf +names-vulpkanin-male-dataset-257 = Ranulf +names-vulpkanin-male-dataset-258 = Raoul +names-vulpkanin-male-dataset-259 = Raul +names-vulpkanin-male-dataset-260 = Reade +names-vulpkanin-male-dataset-261 = Red +names-vulpkanin-male-dataset-262 = Rhain +names-vulpkanin-male-dataset-263 = Rhydian +names-vulpkanin-male-dataset-264 = Rhydwyn +names-vulpkanin-male-dataset-265 = Rhys +names-vulpkanin-male-dataset-266 = Rico +names-vulpkanin-male-dataset-267 = Rigel +names-vulpkanin-male-dataset-268 = Rob +names-vulpkanin-male-dataset-269 = Robin +names-vulpkanin-male-dataset-270 = Rocky +names-vulpkanin-male-dataset-271 = Roderic +names-vulpkanin-male-dataset-272 = Roger +names-vulpkanin-male-dataset-273 = Roland +names-vulpkanin-male-dataset-274 = Rolayne +names-vulpkanin-male-dataset-275 = Roniston +names-vulpkanin-male-dataset-276 = Ronnet +names-vulpkanin-male-dataset-277 = Roscoe +names-vulpkanin-male-dataset-278 = Roy +names-vulpkanin-male-dataset-279 = Rudy +names-vulpkanin-male-dataset-280 = Rukheim +names-vulpkanin-male-dataset-281 = Rupert +names-vulpkanin-male-dataset-282 = Russell +names-vulpkanin-male-dataset-283 = Ryan +names-vulpkanin-male-dataset-284 = Samuel +names-vulpkanin-male-dataset-285 = Sawyer +names-vulpkanin-male-dataset-286 = Scott +names-vulpkanin-male-dataset-287 = Severin +names-vulpkanin-male-dataset-288 = Shilo +names-vulpkanin-male-dataset-289 = Silver +names-vulpkanin-male-dataset-290 = Silvester +names-vulpkanin-male-dataset-291 = Sirius +names-vulpkanin-male-dataset-292 = Slate +names-vulpkanin-male-dataset-293 = Sol +names-vulpkanin-male-dataset-294 = Sriscoll +names-vulpkanin-male-dataset-295 = Stefan +names-vulpkanin-male-dataset-296 = Stephen +names-vulpkanin-male-dataset-297 = Sterling +names-vulpkanin-male-dataset-298 = Steven +names-vulpkanin-male-dataset-299 = Stone +names-vulpkanin-male-dataset-300 = Sullivan +names-vulpkanin-male-dataset-301 = Taylor +names-vulpkanin-male-dataset-302 = Ted +names-vulpkanin-male-dataset-303 = Teddy +names-vulpkanin-male-dataset-304 = Terry +names-vulpkanin-male-dataset-305 = Themis +names-vulpkanin-male-dataset-306 = Theo +names-vulpkanin-male-dataset-307 = Theodore +names-vulpkanin-male-dataset-308 = Thyrius +names-vulpkanin-male-dataset-309 = Tibarn +names-vulpkanin-male-dataset-310 = Tim +names-vulpkanin-male-dataset-311 = Tizian +names-vulpkanin-male-dataset-312 = Torben +names-vulpkanin-male-dataset-313 = Torsten +names-vulpkanin-male-dataset-314 = Trevor +names-vulpkanin-male-dataset-315 = Trion +names-vulpkanin-male-dataset-316 = Tristan +names-vulpkanin-male-dataset-317 = Troy +names-vulpkanin-male-dataset-318 = Trystan +names-vulpkanin-male-dataset-319 = Turner +names-vulpkanin-male-dataset-320 = Tybalt +names-vulpkanin-male-dataset-321 = Tyr +names-vulpkanin-male-dataset-322 = Ulbrecht +names-vulpkanin-male-dataset-323 = Ulrick +names-vulpkanin-male-dataset-324 = Valentine +names-vulpkanin-male-dataset-325 = Vallin +names-vulpkanin-male-dataset-326 = Veit +names-vulpkanin-male-dataset-327 = Velvel +names-vulpkanin-male-dataset-328 = Vesper +names-vulpkanin-male-dataset-329 = Victor +names-vulpkanin-male-dataset-330 = Vincent +names-vulpkanin-male-dataset-331 = Vinzenz +names-vulpkanin-male-dataset-332 = Vuk +names-vulpkanin-male-dataset-333 = Walter +names-vulpkanin-male-dataset-334 = Wayne +names-vulpkanin-male-dataset-335 = Weizen +names-vulpkanin-male-dataset-336 = Will +names-vulpkanin-male-dataset-337 = William +names-vulpkanin-male-dataset-338 = Wulfrun +names-vulpkanin-male-dataset-339 = Xaver +names-vulpkanin-male-dataset-340 = Yannik +names-vulpkanin-male-dataset-341 = York +names-vulpkanin-male-dataset-342 = Zac +names-vulpkanin-male-dataset-343 = Zacharias +names-vulpkanin-male-dataset-344 = Zeb +names-vulpkanin-male-dataset-345 = Zegrath diff --git a/Resources/Locale/en-US/flavors/flavor-profiles.ftl b/Resources/Locale/en-US/flavors/flavor-profiles.ftl index 38efd407ae..d5233ed60f 100644 --- a/Resources/Locale/en-US/flavors/flavor-profiles.ftl +++ b/Resources/Locale/en-US/flavors/flavor-profiles.ftl @@ -329,3 +329,4 @@ flavor-complex-bottledlightning = like lightning in a bottle flavor-complex-punishment = like punishment flavor-weh = like weh flavor-hew = like hew +flavor-dogfood = like dog food diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-verybadday.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-verybadday.ftl new file mode 100644 index 0000000000..2800fea876 --- /dev/null +++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-verybadday.ftl @@ -0,0 +1,2 @@ +verybadday-title = Very Bad Day +verybadday-description = This shift went downhill very fast. diff --git a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl index 3e89f912a9..c3ce278cfd 100644 --- a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl @@ -35,6 +35,9 @@ ghost-role-information-mouse-description = A hungry and mischievous mouse. ghost-role-information-mothroach-name = Mothroach ghost-role-information-mothroach-description = A cute but mischievous mothroach. +ghost-role-information-moproach-name = Moproach +ghost-role-information-moproach-description = A cute mothroach with more cute moplike shoes on its feet. + ghost-role-information-snail-name = Snail ghost-role-information-snail-description = A little snail who doesn't mind a bit of space. Just stay on grid! @@ -56,6 +59,9 @@ ghost-role-information-hamster-description = A grumpy little ball of fluff. ghost-role-information-hamlet-name = Hamlet the Hamster ghost-role-information-hamlet-description = Lives in the station bridge, has a bit of a temper and is always hungry. +ghost-role-information-bucket-name = Living Mop Bucket +ghost-role-information-bucket-description = You can be a marvel of science! + ghost-role-information-slimes-name = Slime ghost-role-information-slimes-description = An ordinary slime with no special needs or interests. You are friendly to others. @@ -63,11 +69,14 @@ ghost-role-information-angry-slimes-name = Slime ghost-role-information-angry-slimes-description = Everyone around you irritates your instincts, destroy them! ghost-role-information-angry-slimes-rules = You are a [color=red][bold]Team Antagonist[/bold][/color] with all other angry slimes. -ghost-role-information-smile-name = Smile the Slime -ghost-role-information-smile-description = The sweetest creature in the world. Smile slime! +ghost-role-information-smile-name = "Smile the Slime" +ghost-role-information-smile-description = Smile's off collecting a Nobel Prize, so this scurret is filling in. Wawa! -ghost-role-information-punpun-name = Pun Pun -ghost-role-information-punpun-description = An honorable member of the monkey society in charge of the bar and helping the bartenders in any way he can. +ghost-role-information-punpun-name = Wa Wa +ghost-role-information-punpun-description = An independently-minded scurret filling in for Pun whilst he's on holiday. You're a scurret in a top hat. What more could you possibly ask for in life? + +ghost-role-information-emotional-support-scurret-name = Emotional Support Scurret +ghost-role-information-emotional-support-scurret-description = Support the crew, be adorable, enjoy April Fools! Wawa! ghost-role-information-xeno-name = Xeno ghost-role-information-xeno-description = You are a xeno, co-operate with your hive to kill all crewmembers! @@ -98,8 +107,8 @@ ghost-role-information-salvage-carp-description = Defend the loot inside the sal ghost-role-information-sentient-carp-name = Sentient Carp ghost-role-information-sentient-carp-description = Help the dragon flood the station with carps! -ghost-role-information-willow-name = Willow the Kangaroo -ghost-role-information-willow-description = You're a kangaroo named Willow! Willow likes to box. +ghost-role-information-willow-name = "Willow the Kangaroo" +ghost-role-information-willow-description = You're not a kangaroo named Willow! You like to bite. Wawa! ghost-role-information-honkbot-name = Honkbot ghost-role-information-honkbot-description = An artificial being of pure evil. @@ -152,11 +161,11 @@ ghost-role-information-skeleton-biker-description = Ride around on your sweet ri ghost-role-information-closet-skeleton-name = Closet Skeleton ghost-role-information-closet-skeleton-description = You are arguably one of the oldest members of the station! Get your old job back, or cause chaos! The world is yours to shape. -ghost-role-information-remilia-name = Remilia, the Chaplain's Familiar -ghost-role-information-remilia-description = Follow and obey the chaplain. Eat fruit. Screech loudly into people's ears and write it off as echolocation. +ghost-role-information-remilia-name = Definitely not Remilia, the Chaplain's Familiar +ghost-role-information-remilia-description = You knew that bat tasted funny. Wawa! -ghost-role-information-cerberus-name = Cerberus, Evil Familiar -ghost-role-information-cerberus-description = Obey your master. Spread chaos. +ghost-role-information-cerberus-name = A Slightly-Burnt Scurret +ghost-role-information-cerberus-description = Obey your master? Spread chaos? Wawa! ghost-role-information-ert-leader-name = ERT Leader ghost-role-information-ert-leader-description = Lead a team of specialists to resolve the station's issues. diff --git a/Resources/Locale/en-US/implant/implant.ftl b/Resources/Locale/en-US/implant/implant.ftl index 8cddef4c81..e3788388a3 100644 --- a/Resources/Locale/en-US/implant/implant.ftl +++ b/Resources/Locale/en-US/implant/implant.ftl @@ -4,7 +4,7 @@ implanter-component-implanting-target = {$user} is trying to implant you with so implanter-component-implant-failed = The {$implant} cannot be given to {$target}! implanter-draw-failed-permanent = The {$implant} in {$target} is fused with { OBJECT($target) } and cannot be removed! implanter-draw-failed = You tried to remove an implant but found nothing. -implanter-draw-failed-catastrophically = The implanter finds nothing and catastrophically fails, shunting genetic material into {$user}'s hand! +implanter-draw-failed-catastrophically = The implanter finds nothing and catastrophically fails, shunting genetic material into {$user}'s hand! Fuck you!! implanter-component-implant-already = {$target} already has the {$implant}! ## UI diff --git a/Resources/Locale/en-US/janitorial/janitorial-slot-component.ftl b/Resources/Locale/en-US/janitorial/janitorial-slot-component.ftl index bc03943a01..83021b3361 100644 --- a/Resources/Locale/en-US/janitorial/janitorial-slot-component.ftl +++ b/Resources/Locale/en-US/janitorial/janitorial-slot-component.ftl @@ -1,6 +1,8 @@ # mop bucket mop-bucket-slot-component-slot-name-item = Item mop-bucket-slot-component-eject-verb = Take out +spill-action-use = {$name} spilled itself! + # janitorial trolley janitorial-trolley-slot-component-slot-name-plunger = Plunger janitorial-trolley-slot-component-slot-name-sign = Sign diff --git a/Resources/Locale/en-US/job/job-names.ftl b/Resources/Locale/en-US/job/job-names.ftl index 5a0b615b47..f897c79340 100644 --- a/Resources/Locale/en-US/job/job-names.ftl +++ b/Resources/Locale/en-US/job/job-names.ftl @@ -1,24 +1,24 @@ job-name-warden = Warden job-name-security = Security Officer job-name-cadet = Security Cadet -job-name-hos = Head of Security +job-name-hos = The Right Honourable Keeper of Peace job-name-detective = Detective job-name-brigmedic = Brigmedic job-name-borg = Cyborg job-name-scientist = Scientist job-name-research-assistant = Research Assistant -job-name-rd = Research Director +job-name-rd = The Right Honourable Director of Scientists job-name-psychologist = Psychologist job-name-intern = Medical Intern job-name-doctor = Medical Doctor job-name-paramedic = Paramedic -job-name-cmo = Chief Medical Officer +job-name-cmo = The Right Honourable Manager of Surgeons job-name-chemist = Chemist job-name-technical-assistant = Technical Assistant job-name-engineer = Station Engineer job-name-atmostech = Atmospheric Technician -job-name-hop = Head of Personnel -job-name-captain = Captain +job-name-hop = The Right Honourable Manager of Personnel +job-name-captain = The Right Honourable Lord Mayor of Space Station 14 job-name-serviceworker = Service Worker job-name-centcomoff = CentComm Official job-name-cburn = Centcomm Quarantine Officer @@ -28,7 +28,7 @@ job-name-musician = Musician job-name-librarian = Librarian job-name-lawyer = Lawyer job-name-mime = Mime -job-name-ce = Chief Engineer +job-name-ce = The Right Honourable Lord of Engitopia job-name-janitor = Janitor job-name-chaplain = Chaplain job-name-botanist = Botanist @@ -36,7 +36,7 @@ job-name-bartender = Bartender job-name-passenger = Passenger job-name-salvagespec = Salvage Specialist job-name-station-ai = Station AI -job-name-qm = Quartermaster +job-name-qm = The Right Honourable Lord of Cargonia job-name-cargotech = Cargo Technician job-name-chef = Chef job-name-clown = Clown @@ -73,14 +73,14 @@ JobBartender = Bartender JobBorg = Borg JobBotanist = Botanist JobBoxer = Boxer -JobCaptain = Captain +JobCaptain = The Right Honourable Lord Mayor of Space Station 14 JobCargoTechnician = Cargo Technician JobCentralCommandOfficial = Central Command Official JobChaplain = Chaplain JobChef = Chef JobChemist = Chemist -JobChiefEngineer = Chief Engineer -JobChiefMedicalOfficer = Chief Medical Officer +JobChiefEngineer = The Right Honourable Lord of Engitopia +JobChiefMedicalOfficer = The Right Honourable Manager of Surgeons JobClown = Clown JobDetective = Detective JobBrigmedic = Brigmedic @@ -90,8 +90,8 @@ JobERTJanitor = ERT Janitor JobERTLeader = ERT Leader JobERTMedical = ERT Medical JobERTSecurity = ERT Security -JobHeadOfPersonnel = Head of Personnel -JobHeadOfSecurity = Head of Security +JobHeadOfPersonnel = The Right Honourable Manager of Personnel +JobHeadOfSecurity = The Right Honourable Keeper of Peace JobJanitor = Janitor JobLawyer = Lawyer JobLibrarian = Librarian @@ -102,10 +102,10 @@ JobMusician = Musician JobParamedic = Paramedic JobPassenger = Passenger JobPsychologist = Psychologist -JobQuartermaster = Quartermaster +JobQuartermaster = The Right Honourable Lord of Cargonia JobReporter = Reporter JobResearchAssistant = Research Assistant -JobResearchDirector = Research Director +JobResearchDirector = The Right Honourable Director of Scientists JobSalvageSpecialist = Salvage Specialist JobScientist = Scientist JobSecurityCadet = Security Cadet diff --git a/Resources/Locale/en-US/job/job-supervisors.ftl b/Resources/Locale/en-US/job/job-supervisors.ftl index b7615903ee..7e562831df 100644 --- a/Resources/Locale/en-US/job/job-supervisors.ftl +++ b/Resources/Locale/en-US/job/job-supervisors.ftl @@ -1,15 +1,15 @@ job-supervisors-centcom = Central Command -job-supervisors-captain = the Captain -job-supervisors-hop = the Head of Personnel -job-supervisors-hos = the Head of Security -job-supervisors-ce = the Chief Engineer -job-supervisors-cmo = the Chief Medical Officer -job-supervisors-rd = the Research Director -job-supervisors-qm = the Quartermaster -job-supervisors-service = Chefs, Botanists, the Bartender, and the Head of Personnel -job-supervisors-engineering = Station Engineers, Atmospheric Technicians, and the Chief Engineer -job-supervisors-medicine = Medical Doctors, Paramedics, Chemists, and the Chief Medical Officer -job-supervisors-security = Security Officers, the Warden, and the Head of Security -job-supervisors-science = Scientists and the Research Director +job-supervisors-captain = the Right Honourable Lord Mayor of Space Station 14 +job-supervisors-hop = the Right Honourable Manager of Personnel +job-supervisors-hos = the Right Honourable Keeper of Peace +job-supervisors-ce = the Right Honourable Lord of Engitopia +job-supervisors-cmo = the Right Honourable Manager of Surgeons +job-supervisors-rd = the Right Honourable Director of Scientists +job-supervisors-qm = the Right Honourable Lord of Cargonia +job-supervisors-service = Chefs, Botanists, the Bartender, and the Right Honourable Manager of Personnel +job-supervisors-engineering = Station Engineers, Atmospheric Technicians, and the Right Honourable Lord of Engitopia +job-supervisors-medicine = Medical Doctors, Paramedics, Chemists, and the Right Honourable Manager of Surgeons +job-supervisors-security = Security Officers, the Warden, and the Right Honourable Keeper of Peace +job-supervisors-science = Scientists and the Right Honourable Director of Scientists job-supervisors-hire = whoever hires you job-supervisors-everyone = absolutely everyone \ No newline at end of file diff --git a/Resources/Locale/en-US/markings/vulpkanin.ftl b/Resources/Locale/en-US/markings/vulpkanin.ftl new file mode 100644 index 0000000000..2da6704ae7 --- /dev/null +++ b/Resources/Locale/en-US/markings/vulpkanin.ftl @@ -0,0 +1,231 @@ +marking-VulpEar-vulp = Vulpkanin ears (base) +marking-VulpEar-vulp-inner = Vulpkanin ears (inner) +marking-VulpEar = Vulpkanin + +marking-VulpEarFade-vulp = Vulpkanin ears (base) +marking-VulpEarFade-vulp-fade = Vulpkanin ears (fade) +marking-VulpEarFade = Vulpkanin (fade) + +marking-VulpEarSharp-vulp = Vulpkanin ears (base) +marking-VulpEarSharp-vulp-sharp = Vulpkanin ears (sharp) +marking-VulpEarSharp = Vulpkanin (sharp) + +marking-VulpEarJackal-jackal = Jackal ears (base) +marking-VulpEarJackal-jackal-inner = Jackal ears (inner) +marking-VulpEarJackal = Vulpkanin Jackal + +marking-VulpEarTerrier-terrier = Terrier ears (base) +marking-VulpEarTerrier-terrier-inner = Terrier ears (inner) +marking-VulpEarTerrier = Vulpkanin Terrier + +marking-VulpEarWolf-wolf = Wolf ears (base) +marking-VulpEarWolf-wolf-inner = Wolf ears (inner) +marking-VulpEarWolf = Vulpkanin Wolf + +marking-VulpEarFennec-fennec = Fennec ears (base) +marking-VulpEarFennec-fennec-inner = Fennec ears (inner) +marking-VulpEarFennec = Vulpkanin Fennec + +marking-VulpEarFox-fox = Fox ears (base) +marking-VulpEarFox-fox-inner = Fox ears (inner) +marking-VulpEarFox = Vulpkanin Fox + +marking-VulpEarOtie-otie = Otie ears (base) +marking-VulpEarOtie-otie-inner = Otie ears (inner) +marking-VulpEarOtie = Vulpkanin Otie + +marking-VulpEarTajaran-msai = Tajaran ears (base) +marking-VulpEarTajaran-msai-inner = Tajaran ears (inner) +marking-VulpEarTajaran = Vulpkanin Tajaran + +marking-VulpEarShock-shock = Shock ears +marking-VulpEarShock = Vulpkanin Shock + +marking-VulpEarCoyote-coyote = Coyote ears +marking-VulpEarCoyote = Vulpkanin Coyote + +marking-VulpEarDalmatian-dalmatian = Dalmatian ears +marking-VulpEarDalmatian = Vulpkanin Dalmatian + + +marking-VulpSnoutAlt-muzzle_alt = Muzzle +marking-VulpSnoutAlt-nose = Nose +marking-VulpSnoutAlt = Vulpkanin Muzzle 2 + +marking-VulpSnout-muzzle = Muzzle +marking-VulpSnout-nose = Nose +marking-VulpSnout = Vulpkanin Muzzle + +marking-VulpSnoutSharp-muzzle_sharp = Muzzle +marking-VulpSnoutSharp-nose = Nose +marking-VulpSnoutSharp = Vulpkanin Muzzle (sharp) + +marking-VulpSnoutFade-muzzle_fade = Muzzle +marking-VulpSnoutFade-nose = Nose +marking-VulpSnoutFade = Vulpkanin Muzzle (fade) + +marking-VulpSnoutNose-nose = Nose +marking-VulpSnoutNose = Vulpkanin Nose + +marking-VulpSnoutMask-mask = Mask +marking-VulpSnoutMask-nose = Nose +marking-VulpSnoutMask = Vulpkanin Mask + +marking-VulpSnoutVulpine-vulpine = Vulpine (base) +marking-VulpSnoutVulpine-vulpine-lines = Vulpine (lines) +marking-VulpSnoutVulpine = Vulpkanin Vulpine + +marking-VulpSnoutSwift-vulpine-lines = Swift +marking-VulpSnoutSwift = Vulpkanin Swift + +marking-VulpSnoutBlaze-blaze = Blaze +marking-VulpSnoutBlaze = Vulpkanin Blaze + +marking-VulpSnoutPatch-patch = Patch +marking-VulpSnoutPatch = Vulpkanin Patch + + +marking-VulpHeadTiger-tiger_head = Tiger stripes +marking-VulpHeadTiger = Vulpkanin Tiger stripes (head) + +marking-VulpHeadTigerFace-tiger_face = Tiger stripes +marking-VulpHeadTigerFace = Vulpkanin Tiger stripes (face) + +marking-VulpHeadSlash-slash = Slash +marking-VulpHeadSlash = Vulpkanin Slash + + +marking-VulpTail-vulp = Vulpkanin tail (base) +marking-VulpTail-vulp-fade = Vulpkanin tail (fade) +marking-VulpTail = Vulpkanin + +marking-VulpTailTip-vulp = Vulpkanin tail (base) +marking-VulpTailTip-vulp-tip = Vulpkanin tail (tip) +marking-VulpTailTip = Vulpkanin (tip) + +marking-VulpTailAlt-vulp_alt = Vulpkanin tail (base) +marking-VulpTailAlt-vulp_alt-fade = Vulpkanin tail (fade) +marking-VulpTailAlt = Vulpkanin (alt) + +marking-VulpTailAltTip-vulp_alt = Vulpkanin tail (base) +marking-VulpTailAltTip-vulp_alt-tip = Vulpkanin tail (tip) +marking-VulpTailAltTip = Vulpkanin (alt, tip) + +marking-VulpTailLong-long = Long tail (base) +marking-VulpTailLong-long-tip = Long tail (tip) +marking-VulpTailLong = Vulpkanin Long + +marking-VulpTailFox-fox = Fox tail (base) +marking-VulpTailFox-fox-fade = Fox tail (fade) +marking-VulpTailFox = Vulpkanin Fox + +marking-VulpTailFoxTip-fox = Fox tail (base) +marking-VulpTailFoxTip-fox-tip = Fox tail (fade) +marking-VulpTailFoxTip = Vulpkanin Fox (tip) + +marking-VulpTailBushy-bushfluff = Bush tail +marking-VulpTailBushy = Vulpkanin Bush + +marking-VulpTailCoyote-coyote = Coyote tail +marking-VulpTailCoyote = Vulpkanin Coyote + +marking-VulpTailHusky-husky-inner = Husky tail (inner) +marking-VulpTailHusky-husky-outer = Husky tail (outer) +marking-VulpTailHusky = Vulpkanin Husky + +marking-VulpTailHuskyAlt-husky = Husky tail +marking-VulpTailHuskyAlt = Vulpkanin Husky (alt) + +marking-VulpTailFox2-fox2 = Fox tail +marking-VulpTailFox2 = Vulpkanin Fox 2 + +marking-VulpTailFox3-fox3 = Fox tail (base) +marking-VulpTailFox3-fox3-tip = Fox tail (tip) +marking-VulpTailFox3 = Vulpkanin Fox 3 + +marking-VulpTailFennec-fennec = Fennec tail +marking-VulpTailFennec = Vulpkanin Fennec + +marking-VulpTailOtie-otie = Otie tail +marking-VulpTailOtie = Vulpkanin Otie + +marking-VulpTailFluffy-fluffy = Fluffy tail +marking-VulpTailFluffy = Vulpkanin Fluffy + +marking-VulpTailDalmation = Dalmation + +marking-VulpTailCorgi = Corgi + + +marking-VulpBellyCrest-belly_crest = Belly +marking-VulpBellyCrest = Vulpkanin Belly Crest + +marking-VulpBellyFull-belly_full = Belly +marking-VulpBellyFull = Vulpkanin Belly 1 + +marking-VulpBellyFox-belly_fox = Belly +marking-VulpBellyFox = Vulpkanin Belly 2 + + +marking-VulpBodyPointsCrest-points_crest = Points (crest) +marking-VulpBodyPointsCrest = Vulpkanin Points (crest) + +marking-VulpBodyPointsFade-points_fade = Vulpkanin Points (fade) +marking-VulpBodyPointsFade = Vulpkanin Points (fade) + +marking-VulpBodyPointsSharp-points_sharp = Vulpkanin Points (sharp) +marking-VulpBodyPointsSharp = Vulpkanin Points (sharp) + + +marking-VulpPointsFeet-points_feet = Points Feet +marking-VulpPointsFeet = Vulpkanin Points Feet + +marking-VulpPointsCrestLegs-points_crest-legs = Points (crest) +marking-VulpPointsCrestLegs = Vulpkanin Points Legs (crest) + +marking-VulpPointsFadeLegs-points_fade-legs = Points (fade) +marking-VulpPointsFadeLegs = Vulpkanin Points Legs (fade) + +marking-VulpPointsSharpLegs-points_sharp-legs = Points (sharp) +marking-VulpPointsSharpLegs = Vulpkanin Points Legs (sharp) + + +marking-VulpPointsHands-points_hands = Points Hands +marking-VulpPointsHands = Vulpkanin Points Hands + +marking-VulpPointsCrestArms-points_crest-arms = Points (crest) +marking-VulpPointsCrestArms = Vulpkanin Points Arms (crest) + +marking-VulpPointsFadeArms-points_fade-arms = Points (fade) +marking-VulpPointsFadeArms = Vulpkanin Points Arms (fade) + +marking-VulpPointsSharpArms-points_sharp-arms = Points (sharp) +marking-VulpPointsSharpArms = Vulpkanin Points Arms (sharp) + + +marking-VulpHairAdhara = Adhara +marking-VulpHairAnita = Anita +marking-VulpHairApollo = Apollo +marking-VulpHairBelle = Belle +marking-VulpHairBraided = Braided Hair +marking-VulpHairBun = Bun +marking-VulpHairCleanCut = Clean Cut +marking-VulpHairCurl = Curl +marking-VulpHairHawk = Hawk +marking-VulpHairJagged = Jagged +marking-VulpHairJeremy = Jeremy +marking-VulpHairKajam = Kajam +marking-VulpHairKeid = Keid +marking-VulpHairKleeia = Kleeia +marking-VulpHairMizar = Mizar +marking-VulpHairPunkBraided = Punk Braided +marking-VulpHairRaine = Raine +marking-VulpHairRough = Rough +marking-VulpHairShort = Short Hair +marking-VulpHairShort2 = Short Hair 2 +marking-VulpHairSpike = Spike + +marking-VulpFacialHairRuff = Ruff +marking-VulpFacialHairElder = Elder +marking-VulpFacialHairElderChin = Elder Chin +marking-VulpFacialHairKita = Kita diff --git a/Resources/Locale/en-US/metabolism/metabolizer-types.ftl b/Resources/Locale/en-US/metabolism/metabolizer-types.ftl index 372c5c549e..8f14a3bf2c 100644 --- a/Resources/Locale/en-US/metabolism/metabolizer-types.ftl +++ b/Resources/Locale/en-US/metabolism/metabolizer-types.ftl @@ -6,6 +6,6 @@ metabolizer-type-slime = Slime metabolizer-type-vox = Vox metabolizer-type-rat = Rat metabolizer-type-plant = Plant -metabolizer-type-dwarf = Dwarf +metabolizer-type-dwarf = Elf metabolizer-type-moth = Moth metabolizer-type-arachnid = Arachnid diff --git a/Resources/Locale/en-US/paper/paper-component.ftl b/Resources/Locale/en-US/paper/paper-component.ftl index b4bf222e03..fba183bb2e 100644 --- a/Resources/Locale/en-US/paper/paper-component.ftl +++ b/Resources/Locale/en-US/paper/paper-component.ftl @@ -10,8 +10,9 @@ paper-component-examine-detail-stamped-by = {CAPITALIZE(THE($paper))} {CONJUGATE paper-component-illiterate = You are unable to write. paper-component-illiterate-mime = Your vow forbids you from writing. -paper-component-action-stamp-paper-other = {CAPITALIZE(THE($user))} stamps {THE($target)} with {THE($stamp)}. -paper-component-action-stamp-paper-self = You stamp {THE($target)} with {THE($stamp)}. +paper-component-action-stamp-paper-other = {CAPITALIZE(THE($user))} stamps {THE($target)} with {THE($stamp)}... But something wrong... +paper-component-action-stamp-paper-self = You stamp {THE($target)} with {THE($stamp)}... But something wrong... +paper-component-action-stamp-paper-paperwork-is-bad = Paperwork sucks. # Indicator to show how full a paper is paper-ui-fill-level = {$currentLength}/{$maxLength} diff --git a/Resources/Locale/en-US/paper/paper-misc.ftl b/Resources/Locale/en-US/paper/paper-misc.ftl index 8d552d099e..fd1fa65a6d 100644 --- a/Resources/Locale/en-US/paper/paper-misc.ftl +++ b/Resources/Locale/en-US/paper/paper-misc.ftl @@ -70,3 +70,14 @@ book-text-combat-bakery-kit = Thank you for choosing our combat bakery kit! Butter Slice x 1 Glass Shard x 1 Cook Time: 5 seconds + +book-text-moproach = Congratulations on receiving your personal moproach kit! Perfect solution in case of a blood bath at your station. + Contents: + - two moproach cubes + - two purple caps + - this manual + Instructions: + - take a cube + - pour water on it + - put the cap on the moth + Done! You got your own personal moth, just don't forget to feed it! diff --git a/Resources/Locale/en-US/paper/stamp-component.ftl b/Resources/Locale/en-US/paper/stamp-component.ftl index 6521deafd9..e4d09b696e 100644 --- a/Resources/Locale/en-US/paper/stamp-component.ftl +++ b/Resources/Locale/en-US/paper/stamp-component.ftl @@ -1,22 +1,22 @@ stamp-component-stamped-name-default = A very important person stamp-component-stamped-name-detective = Detective stamp-component-stamped-name-mime = Mime -stamp-component-stamped-name-captain = Captain +stamp-component-stamped-name-captain = The Right Honourable Lord Mayor of Space Station 14 stamp-component-stamped-name-centcom = CentComm stamp-component-stamped-name-chaplain = Chaplain stamp-component-stamped-name-lawyer = Lawyer stamp-component-stamped-name-clown = Clown -stamp-component-stamped-name-cmo = Chief Medical Officer +stamp-component-stamped-name-cmo = The Right Honourable Manager of Surgeons stamp-component-stamped-name-denied = DENIED stamp-component-stamped-name-approved = APPROVED -stamp-component-stamped-name-hop = Head of Personnel -stamp-component-stamped-name-hos = Head of Security -stamp-component-stamped-name-qm = Quartermaster -stamp-component-stamped-name-rd = Research Director +stamp-component-stamped-name-hop = The Right Honourable Manager of Personnel +stamp-component-stamped-name-hos = The Right Honourable Keeper of Peace +stamp-component-stamped-name-qm = The Right Honourable Lord of Cargonia +stamp-component-stamped-name-rd = The Right Honourable Director of Scientists stamp-component-stamped-name-warden = Warden stamp-component-stamped-name-trader = Trader stamp-component-stamped-name-syndicate = Syndicate -stamp-component-stamped-name-ce = Chief Engineer +stamp-component-stamped-name-ce = The Right Honourable Lord of Engitopia stamp-component-stamped-name-greytide = Greytide stamp-component-stamped-name-psychologist = Psychologist stamp-component-stamped-name-wizard = Wizard diff --git a/Resources/Locale/en-US/paper/story-generation.ftl b/Resources/Locale/en-US/paper/story-generation.ftl index c9bead45ca..87bf63afcc 100644 --- a/Resources/Locale/en-US/paper/story-generation.ftl +++ b/Resources/Locale/en-US/paper/story-generation.ftl @@ -90,7 +90,7 @@ story-gen-book-character33 = Ratvar cultist story-gen-book-character34 = greytider story-gen-book-character35 = arachnid story-gen-book-character36 = vox -story-gen-book-character37 = dwarf +story-gen-book-character37 = elf story-gen-book-character38 = thief story-gen-book-character39 = wizard story-gen-book-character40 = slime diff --git a/Resources/Locale/en-US/pda/phonebill.ftl b/Resources/Locale/en-US/pda/phonebill.ftl new file mode 100644 index 0000000000..4e99a51369 --- /dev/null +++ b/Resources/Locale/en-US/pda/phonebill.ftl @@ -0,0 +1,3 @@ +station-event-phone-bill-announcement = Hey! You all have {$delay} seconds until your phone bills are due! Hold, in your hands, {$price} spesos for every phone (headset or radio) you have. If you don't, get ready to lose them forever. +station-event-phone-bill-unpaid-announcement = {$percent}% of you didn't pay your phone bill. Shame. +station-event-phone-bill-allpaid-announcement = Suprisingly, everyone paid their phone bill! Good job. diff --git a/Resources/Locale/en-US/preferences/loadout-groups.ftl b/Resources/Locale/en-US/preferences/loadout-groups.ftl index ce5a0daf56..cf22d5ebc1 100644 --- a/Resources/Locale/en-US/preferences/loadout-groups.ftl +++ b/Resources/Locale/en-US/preferences/loadout-groups.ftl @@ -20,17 +20,17 @@ loadout-group-pocket-tank-double = Species-specific double emergency tank in poc loadout-group-survival-mime = Mime Survival Box # Command -loadout-group-captain-head = Captain head -loadout-group-captain-jumpsuit = Captain jumpsuit -loadout-group-captain-neck = Captain neck -loadout-group-captain-backpack = Captain backpack -loadout-group-captain-outerclothing = Captain outer clothing +loadout-group-captain-head = The Right Honourable Lord Mayor of Space Station 14 head +loadout-group-captain-jumpsuit = The Right Honourable Lord Mayor of Space Station 14 jumpsuit +loadout-group-captain-neck = The Right Honourable Lord Mayor of Space Station 14 neck +loadout-group-captain-backpack = The Right Honourable Lord Mayor of Space Station 14 backpack +loadout-group-captain-outerclothing = The Right Honourable Lord Mayor of Space Station 14 outer clothing -loadout-group-hop-head = Head of Personnel head -loadout-group-hop-jumpsuit = Head of Personnel jumpsuit -loadout-group-hop-neck = Head of Personnel neck -loadout-group-hop-backpack = Head of Personnel backpack -loadout-group-hop-outerclothing = Head of Personnel outer clothing +loadout-group-hop-head = The Right Honourable Manager of Personnel head +loadout-group-hop-jumpsuit = The Right Honourable Manager of Personnel jumpsuit +loadout-group-hop-neck = The Right Honourable Manager of Personnel neck +loadout-group-hop-backpack = The Right Honourable Manager of Personnel backpack +loadout-group-hop-outerclothing = The Right Honourable Manager of Personnel outer clothing # Civilian loadout-group-passenger-jumpsuit = Passenger jumpsuit @@ -88,11 +88,11 @@ loadout-group-musician-jumpsuit = Musician jumpsuit loadout-group-musician-outerclothing = Musician outer clothing # Cargo -loadout-group-quartermaster-head = Quartermaster head -loadout-group-quartermaster-jumpsuit = Quartermaster jumpsuit -loadout-group-quartermaster-neck = Quartermaster neck -loadout-group-quartermaster-outerclothing = Quartermaster outer clothing -loadout-group-quartermaster-shoes = Quartermaster shoes +loadout-group-quartermaster-head = The Right Honourable Lord of Cargonia head +loadout-group-quartermaster-jumpsuit = The Right Honourable Lord of Cargonia jumpsuit +loadout-group-quartermaster-neck = The Right Honourable Lord of Cargonia neck +loadout-group-quartermaster-outerclothing = The Right Honourable Lord of Cargonia outer clothing +loadout-group-quartermaster-shoes = The Right Honourable Lord of Cargonia shoes loadout-group-cargo-technician-head = Cargo Technician head loadout-group-cargo-technician-jumpsuit = Cargo Technician jumpsuit @@ -105,11 +105,11 @@ loadout-group-salvage-specialist-outerclothing = Salvage Specialist outer clothi loadout-group-salvage-specialist-shoes = Salvage Specialist shoes # Engineering -loadout-group-chief-engineer-head = Chief Engineer head -loadout-group-chief-engineer-jumpsuit = Chief Engineer jumpsuit -loadout-group-chief-engineer-outerclothing = Chief Engineer outer clothing -loadout-group-chief-engineer-neck = Chief Engineer neck -loadout-group-chief-engineer-shoes = Chief Engineer shoes +loadout-group-chief-engineer-head = The Right Honourable Lord of Engitopia head +loadout-group-chief-engineer-jumpsuit = The Right Honourable Lord of Engitopia jumpsuit +loadout-group-chief-engineer-outerclothing = The Right Honourable Lord of Engitopia outer clothing +loadout-group-chief-engineer-neck = The Right Honourable Lord of Engitopia neck +loadout-group-chief-engineer-shoes = The Right Honourable Lord of Engitopia shoes loadout-group-technical-assistant-jumpsuit = Technical Assistant jumpsuit @@ -126,11 +126,11 @@ loadout-group-atmospheric-technician-outerclothing = Atmospheric Technician oute loadout-group-atmospheric-technician-shoes = Atmospheric Technician shoes # Science -loadout-group-research-director-head = Research Director head -loadout-group-research-director-neck = Research Director neck -loadout-group-research-director-jumpsuit = Research Director jumpsuit -loadout-group-research-director-outerclothing = Research Director outer clothing -loadout-group-research-director-shoes = Research Director shoes +loadout-group-research-director-head = The Right Honourable Director of Scientists head +loadout-group-research-director-neck = The Right Honourable Director of Scientists neck +loadout-group-research-director-jumpsuit = The Right Honourable Director of Scientists jumpsuit +loadout-group-research-director-outerclothing = The Right Honourable Director of Scientists outer clothing +loadout-group-research-director-shoes = The Right Honourable Director of Scientists shoes loadout-group-scientist-head = Scientist head loadout-group-scientist-neck = Scientist neck @@ -144,10 +144,10 @@ loadout-group-scientist-id = Scientist ID loadout-group-research-assistant-jumpsuit = Research Assistant jumpsuit # Security -loadout-group-head-of-security-head = Head of Security head -loadout-group-head-of-security-jumpsuit = Head of Security jumpsuit -loadout-group-head-of-security-neck = Head of Security neck -loadout-group-head-of-security-outerclothing = Head of Security outer clothing +loadout-group-head-of-security-head = The Right Honourable Keeper of Peace head +loadout-group-head-of-security-jumpsuit = The Right Honourable Keeper of Peace jumpsuit +loadout-group-head-of-security-neck = The Right Honourable Keeper of Peace neck +loadout-group-head-of-security-outerclothing = The Right Honourable Keeper of Peace outer clothing loadout-group-warden-head = Warden head loadout-group-warden-jumpsuit = Warden jumpsuit @@ -173,11 +173,11 @@ loadout-group-security-star = Security Star loadout-group-medical-gloves = Medical gloves loadout-group-medical-mask = Medical mask -loadout-group-chief-medical-officer-head = Chief Medical Officer head -loadout-group-chief-medical-officer-jumpsuit = Chief Medical Officer jumpsuit -loadout-group-chief-medical-officer-outerclothing = Chief Medical Officer outer clothing -loadout-group-chief-medical-officer-shoes = Chief Medical Officer shoes -loadout-group-chief-medical-officer-neck = Chief Medical Officer neck +loadout-group-chief-medical-officer-head = The Right Honourable Manager of Surgeons head +loadout-group-chief-medical-officer-jumpsuit = The Right Honourable Manager of Surgeons jumpsuit +loadout-group-chief-medical-officer-outerclothing = The Right Honourable Manager of Surgeons outer clothing +loadout-group-chief-medical-officer-shoes = The Right Honourable Manager of Surgeons shoes +loadout-group-chief-medical-officer-neck = The Right Honourable Manager of Surgeons neck loadout-group-medical-doctor-head = Medical Doctor head loadout-group-medical-doctor-jumpsuit = Medical Doctor jumpsuit diff --git a/Resources/Locale/en-US/prototypes/access/accesses.ftl b/Resources/Locale/en-US/prototypes/access/accesses.ftl index 3d72fc59a2..5eff75cd72 100644 --- a/Resources/Locale/en-US/prototypes/access/accesses.ftl +++ b/Resources/Locale/en-US/prototypes/access/accesses.ftl @@ -1,28 +1,28 @@ id-card-access-level-command = Command -id-card-access-level-captain = Captain -id-card-access-level-head-of-personnel = Head of Personnel +id-card-access-level-captain = The Right Honourable Lord Mayor of Space Station 14 +id-card-access-level-head-of-personnel = The Right Honourable Manager of Personnel id-card-access-level-cryogenics = Cryogenics id-card-access-level-emergency-shuttle-repeal = E.Shuttle Repeal All -id-card-access-level-head-of-security = Head of Security +id-card-access-level-head-of-security = The Right Honourable Keeper of Peace id-card-access-level-security = Security id-card-access-level-armory = Armory id-card-access-level-brig = Brig id-card-access-level-detective = Detective -id-card-access-level-chief-engineer = Chief Engineer +id-card-access-level-chief-engineer = The Right Honourable Lord of Engitopia id-card-access-level-engineering = Engineering id-card-access-level-atmospherics = Atmospherics -id-card-access-level-research-director = Research Director +id-card-access-level-research-director = The Right Honourable Director of Scientists id-card-access-level-research = Research -id-card-access-level-chief-medical-officer = Chief Medical Officer +id-card-access-level-chief-medical-officer = The Right Honourable Manager of Surgeons id-card-access-level-medical = Medical id-card-access-level-chemistry = Chemistry id-card-access-level-paramedic = Paramedic -id-card-access-level-quartermaster = Quartermaster +id-card-access-level-quartermaster = The Right Honourable Lord of Cargonia id-card-access-level-cargo = Cargo id-card-access-level-salvage = Salvage diff --git a/Resources/Locale/en-US/reagents/generic.ftl b/Resources/Locale/en-US/reagents/generic.ftl index 5d4f754ef8..87a23b6d04 100644 --- a/Resources/Locale/en-US/reagents/generic.ftl +++ b/Resources/Locale/en-US/reagents/generic.ftl @@ -9,3 +9,4 @@ generic-reagent-effect-parched = You feel parched. generic-reagent-effect-thirsty = You feel thirsty. generic-reagent-effect-sick = You feel sick after consuming that... generic-reagent-effect-slicing-insides = You feel an incredibly sharp pain in your gut! +generic-reagent-effect-stuffy-throat = Your throat feels a bit stuffy... diff --git a/Resources/Locale/en-US/reagents/meta/biological.ftl b/Resources/Locale/en-US/reagents/meta/biological.ftl index d8f0f6c413..eb524ca4e1 100644 --- a/Resources/Locale/en-US/reagents/meta/biological.ftl +++ b/Resources/Locale/en-US/reagents/meta/biological.ftl @@ -1,32 +1,32 @@ -reagent-name-blood = blood +reagent-name-blood = juice that makes you live reagent-desc-blood = I hope this is ketchup. -reagent-name-insect-blood = insect blood +reagent-name-insect-blood = juice that makes insects live reagent-desc-insect-blood = Okay, this is really gross. It almost looks.. alive? -reagent-name-slime = slime +reagent-name-slime = juice that makes slimes live reagent-desc-slime = You thought this was gradient blood at first, but you were mistaken. -reagent-name-sap = sap +reagent-name-sap = juice that makes trees live reagent-desc-sap = Sticky, sweet tree blood. -reagent-name-hemocyanin-blood = blue blood +reagent-name-hemocyanin-blood = juice that makes you live but blue reagent-desc-hemocyanin-blood = Contains copper as opposed to iron which gives it a distinct blue color. -reagent-name-ammonia-blood = anaerobic blood +reagent-name-ammonia-blood = juice that makes vox live reagent-desc-ammonia-blood = Nothing else in the entire galaxy smells quite so appalling. -reagent-name-zombie-blood = zombie blood +reagent-name-zombie-blood = juice that makes you live but can be used to stop the plague reagent-desc-zombie-blood = Would not advise eating. Can be used to create an inoculation against the infection. -reagent-name-ichor = ichor +reagent-name-ichor = juice that powers the dragon reagent-desc-ichor = An extremely potent regenerative chemical, perfected by space fauna evolution. Produced in the dragon's digestive system, it is seen as an exotic commodity due to the gargantuan effort of hunting for it. -reagent-name-fat = fat +reagent-name-fat = juice that gives you strength reagent-desc-fat = No matter how it was obtained, its application is important. -reagent-name-vomit = vomit +reagent-name-vomit = juice that you shouldn't drink reagent-desc-vomit = You can see a few chunks of someone's last meal in it. -reagent-name-grey-matter = grey matter +reagent-name-grey-matter = juice that makes you commit a capital crime reagent-desc-grey-matter = Thought juice, the stuff that leaks out of your ears. diff --git a/Resources/Locale/en-US/reagents/meta/botany.ftl b/Resources/Locale/en-US/reagents/meta/botany.ftl index 36fad2195b..ed2cbabd1b 100644 --- a/Resources/Locale/en-US/reagents/meta/botany.ftl +++ b/Resources/Locale/en-US/reagents/meta/botany.ftl @@ -1,26 +1,26 @@ -reagent-name-e-z-nutrient = EZ nutrient +reagent-name-e-z-nutrient = juice that gives you nutrients reagent-desc-e-z-nutrient = Give your plants some of those EZ nutrients! Dionas find this delicious. -reagent-name-left4-zed = left-4-zed +reagent-name-left4-zed = juice that is back for blood reagent-desc-left4-zed = A cocktail of mutagenic compounds that gives nutrients, harms and affects plant life's genome. -reagent-name-pest-killer = pest killer +reagent-name-pest-killer = juice that kills the pests reagent-desc-pest-killer = A mixture that targets pests. While useful it slowly poisons plants with toxins, be careful when using it. -reagent-name-plant-b-gone = plant-B-gone +reagent-name-plant-b-gone = juice that kills the plants reagent-desc-plant-b-gone = A harmful toxic mixture to kill plantlife. Very effective against kudzu. -reagent-name-robust-harvest = robust harvest +reagent-name-robust-harvest = juice that makes you robust reagent-desc-robust-harvest = A highly effective fertilizer with a limited potency-boosting effect on plants. Use it cautiously, as excessive application can reduce plant yield. It has a particularly beneficial effect on dionas. -reagent-name-weed-killer = weed killer +reagent-name-weed-killer = juice that kills the weeds reagent-desc-weed-killer = A mixture that targets weeds. Very effective against kudzu. While useful it slowly poisons plants with toxins, be careful when using it. -reagent-name-ammonia = ammonia +reagent-name-ammonia = juice that heals the rats reagent-desc-ammonia = An effective fertilizer, it gives your plants some nutrients. -reagent-name-diethylamine = diethylamine +reagent-name-diethylamine = juice that makes the plants fast reagent-desc-diethylamine = A very potent fertilizer, treats plants with nutrients, eliminates pests, and sometimes it can even speed up growth. -reagent-name-sedin = sedin +reagent-name-sedin = juice that gives you seeds reagent-desc-sedin = A modified version of diethylamine that can restore seeds on plants at the cost of potency. diff --git a/Resources/Locale/en-US/reagents/meta/chemicals.ftl b/Resources/Locale/en-US/reagents/meta/chemicals.ftl index ad9d12e26f..d9f65cefa8 100644 --- a/Resources/Locale/en-US/reagents/meta/chemicals.ftl +++ b/Resources/Locale/en-US/reagents/meta/chemicals.ftl @@ -1,32 +1,32 @@ -reagent-name-acetone = acetone +reagent-name-acetone = juice that melts plastic reagent-desc-acetone = A slick, slightly carcinogenic liquid. Has a multitude of mundane uses in everyday life. -reagent-name-phenol = phenol +reagent-name-phenol = juice that makes the medicines reagent-desc-phenol = An aromatic ring of carbon with a hydroxyl group. A useful precursor to some medicines, but has no healing properties on its own. -reagent-name-sodium-carbonate = sodium carbonate +reagent-name-sodium-carbonate = juice that makes the soda reagent-desc-sodium-carbonate = A white, odorless, water-soluble salt that yields an alkaline solution in water. Also known as soda ash. -reagent-name-artifexium = artifexium +reagent-name-artifexium = juice that explodes science reagent-desc-artifexium = A lavender mixture of microscopic artifact fragments and a strong acid. It has the ability to activate artifacts. -reagent-name-benzene = benzene +reagent-name-benzene = juice that is the organic reagent-desc-benzene = An aromatic, slightly carcinogenic, ring of carbon, forming a base for many organic compounds. -reagent-name-hydroxide = hydroxide +reagent-name-hydroxide = juice that is basic reagent-desc-hydroxide = A strong alkaline chemical, forming a base for many organic compounds. -reagent-name-sodium-hydroxide = sodium hydroxide +reagent-name-sodium-hydroxide = juice that is just juice that you shouldn't drink reagent-desc-sodium-hydroxide = A white, odorless, water-soluble salt that yields an strong alkaline solution in water. Causes burns and vomiting when ingested. -reagent-name-fersilicite = fersilicite +reagent-name-fersilicite = juice that is magnetic reagent-desc-fersilicite = An intermetallic compound with unusual magnetic properties at low temperatures. -reagent-name-sodium-polyacrylate = sodium polyacrylate +reagent-name-sodium-polyacrylate = juice that is industrial reagent-desc-sodium-polyacrylate = A super-absorbent polymer with assorted industrial uses. -reagent-name-cellulose = cellulose fibers +reagent-name-cellulose = juice that makes plants reagent-desc-cellulose = A crystaline polydextrose polymer, plants swear by this stuff. -reagent-name-rororium = rororium +reagent-name-rororium = juice that makes you hive reagent-desc-rororium = A strange substance which fills the cores of the hivelords that roam the mining asteroid. Thought to be the source of their regenerative powers. diff --git a/Resources/Locale/en-US/reagents/meta/cleaning.ftl b/Resources/Locale/en-US/reagents/meta/cleaning.ftl index 8603711b6e..367af1fd6e 100644 --- a/Resources/Locale/en-US/reagents/meta/cleaning.ftl +++ b/Resources/Locale/en-US/reagents/meta/cleaning.ftl @@ -1,14 +1,14 @@ -reagent-name-bleach = bleach +reagent-name-bleach = juice that you shouldn't drink reagent-desc-bleach = Heavy duty cleaner that can clean tiles the same as Space Cleaner and also decontaminate clothes. Extremely toxic when ingested. -reagent-name-space-cleaner = space cleaner +reagent-name-space-cleaner = juice that makes things clean reagent-desc-space-cleaner = This is able to clean almost all surfaces of almost anything that may dirty them. The janitor is likely to appreciate refills. -reagent-name-soap = soap +reagent-name-soap = juice that hides the evidence reagent-desc-soap = I wouldn't clean my mouth out with this if I were you. -reagent-name-space-lube = space lube +reagent-name-space-lube = juice that gets the station nuked reagent-desc-space-lube = Space Lube is a high performance lubricant intended for maintenance of extremely complex mechanical equipment (and certainly not used to make people slip). -reagent-name-space-glue = space glue +reagent-name-space-glue = juice that glues your hands reagent-desc-space-glue = Space Glue is a high performance glue intended for maintenance of extremely complex mechanical equipment (and certainly not used to make people stick to the floor). diff --git a/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl b/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl index 3e2719cc0a..0dbd0024af 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl @@ -1,325 +1,325 @@ -reagent-name-absinthe = absinthe +reagent-name-absinthe = juice that doesn't actually make you go blind reagent-desc-absinthe = A anise-flavoured spirit derived from botanicals. -reagent-name-ale = ale +reagent-name-ale = juice that is alcoholic and dark reagent-desc-ale = A dark alchoholic beverage made by malted barley and yeast. -reagent-name-beer = beer +reagent-name-beer = juice that is alcoholic and light reagent-desc-beer = An alcoholic beverage made from malted grains, hops, yeast, and water. -reagent-name-blue-curacao = blue Curaçao +reagent-name-blue-curacao = juice that is alcoholic and blue reagent-desc-blue-curacao = Exotically blue, fruity drink, distilled from oranges. -reagent-name-cognac = cognac +reagent-name-cognac = juice that is alcoholic and posh reagent-desc-cognac = A sweet and strongly alcoholic drink, twice distilled and left to mature for several years. Classy as fornication. -reagent-name-dead-rum = deadrum +reagent-name-dead-rum = juice that is drank by undead pirates reagent-desc-dead-rum = Distilled alcoholic drink made from saltwater. -reagent-name-ethanol = ethanol +reagent-name-ethanol = juice that gets you arrested reagent-desc-ethanol = A simple alcohol, makes you drunk if consumed, flammable. -reagent-name-gin = gin +reagent-name-gin = juice that is alcoholic and space british reagent-desc-gin = A distilled alcoholic drink that derives its predominant flavour from juniper berries. -reagent-name-coffeeliqueur = coffee liqueur +reagent-name-coffeeliqueur = juice that you need to drink all the time but alcoholic reagent-desc-coffeeliqueur = Liquor flavoured with cold brewed coffee and spices. -reagent-name-melon-liquor = melon liquor +reagent-name-melon-liquor = juice that is full of seeds but alcoholic reagent-desc-melon-liquor = A relatively sweet and fruity 46 proof liquor. -reagent-name-n-t-cahors = NeoTheology Cahors wine +reagent-name-n-t-cahors = juice that is for centcomm not you reagent-desc-n-t-cahors = Fortified dessert wine made from cabernet sauvignon, saperavi and other grapes. -reagent-name-poison-wine = poison wine +reagent-name-poison-wine = juice that is fermented juice that is too young to drink but posh reagent-desc-poison-wine = Is this even wine? Toxic! Hallucinogenic! Probably consumed in boatloads by your superiors! -reagent-name-rum = rum +reagent-name-rum = juice that is drank by pirates reagent-desc-rum = Distilled alcoholic drink made from sugarcane byproducts. -reagent-name-sake = sake +reagent-name-sake = juice that is drank by ninjas reagent-desc-sake = Alcoholic beverage made by fermenting rice that has been polished. -reagent-name-tequila = tequila +reagent-name-tequila = juice that is drank by desperadoes reagent-desc-tequila = A strong and mildly flavoured, mexican produced spirit. -reagent-name-vermouth = vermouth +reagent-name-vermouth = juice that is shaken not stirred reagent-desc-vermouth = Aromatized, fortified white wine flavored with various botanicals. -reagent-name-vodka = vodka +reagent-name-vodka = juice that makes you space slavic reagent-desc-vodka = Clear distilled alcoholic beverage that originates from Poland and Russia. -reagent-name-whiskey = whiskey +reagent-name-whiskey = juice that makes you space scottish reagent-desc-whiskey = A type of distilled alcoholic beverage made from fermented grain mash. -reagent-name-wine = wine +reagent-name-wine = juice that is fermented juice that is too young to drink reagent-desc-wine = A premium alcoholic beverage made from distilled grape juice. -reagent-name-champagne = champagne +reagent-name-champagne = juice that makes you celebrate a new year reagent-desc-champagne = A premium sparkling wine -reagent-name-acid-spit = acidspit +reagent-name-acid-spit = juice that is just a week away but complicated reagent-desc-acid-spit = A drink for the daring, can be deadly if incorrectly prepared! -reagent-name-allies-cocktail = allies cocktail +reagent-name-allies-cocktail = juice that is your friend reagent-desc-allies-cocktail = A drink made from your allies, not as sweet as when made from your enemies. -reagent-name-aloe = aloe +reagent-name-aloe = juice that should treat your burns reagent-desc-aloe = So very, very, very good. -reagent-name-amasec = amasec +reagent-name-amasec = juice of the gun club reagent-desc-amasec = Official drink of the Gun Club! -reagent-name-andalusia = Andalusia +reagent-name-andalusia = juice that makes you space spanish reagent-desc-andalusia = A nice, strangely named drink. -reagent-name-antifreeze = antifreeze +reagent-name-antifreeze = juice that is very poisonous reagent-desc-antifreeze = Ultimate refreshment. -reagent-name-atomic-bomb = Atomic Bomb +reagent-name-atomic-bomb = juice that nukeops really enjoy reagent-desc-atomic-bomb = Nuclear proliferation never tasted so good. -reagent-name-b52 = B-52 +reagent-name-b52 = juice that makes you bomb reagent-desc-b52 = Coffee, irish cream, and cognac. You will get bombed. -reagent-name-blue-hawaiian = Blue Hawaiian +reagent-name-blue-hawaiian = juice that is hawaiian but blue reagent-desc-blue-hawaiian = Aloha! Does that mean hello or goodbye? -reagent-name-bahama-mama = Bahama Mama +reagent-name-bahama-mama = juice that makes you tropical reagent-desc-bahama-mama = Tropical cocktail. -reagent-name-banana-honk = Banana Honk +reagent-name-banana-honk = juice that gets you arrested reagent-desc-banana-honk = A drink from Clown Heaven. -reagent-name-barefoot = barefoot +reagent-name-barefoot = juice that hurts your feet reagent-desc-barefoot = Barefoot and pregnant. -reagent-name-beepsky-smash = Beepsky smash +reagent-name-beepsky-smash = juice that throws you in jail reagent-desc-beepsky-smash = Deny drinking this and prepare for THE LAW. -reagent-name-black-russian = Black Russian +reagent-name-black-russian = juice that makes you russian but black reagent-desc-black-russian = For the lactose-intolerant. Still as classy as a White Russian. -reagent-name-bloody-mary = Bloody Mary +reagent-name-bloody-mary = juice that cures your hangover reagent-desc-bloody-mary = A strange yet pleasurable mixture made of vodka, tomato, and lime juice. -reagent-name-booger = booger +reagent-name-booger = juice that comes out of your nose reagent-desc-booger = Ewww... -reagent-name-brave-bull = Brave Bull +reagent-name-brave-bull = juice that makes you brave reagent-desc-brave-bull = It's just as effective as Dutch-Courage! -reagent-name-coconut-rum = coconut rum +reagent-name-coconut-rum = juice that is drank by undead pirates but with juice that makes you prime reagent-desc-coconut-rum = Rum with coconut for that tropical feel. -reagent-name-cosmopolitan = cosmopolitan +reagent-name-cosmopolitan = juice that is from the big city reagent-desc-cosmopolitan = Even in the worst situations, nothing beats a fresh cosmopolitan. -reagent-name-cuba-libre = Cuba libre +reagent-name-cuba-libre = juice that makes you space cuban reagent-desc-cuba-libre = Rum, mixed with cola. Viva la revolucion. -reagent-name-demons-blood = Demon's Blood +reagent-name-demons-blood = juice that is a demon's juice that makes you alive reagent-desc-demons-blood = AHHHH!!!! -reagent-name-devils-kiss = Devil's Kiss +reagent-name-devils-kiss = juice that you shouldn't let a devil order you reagent-desc-devils-kiss = Creepy time! -reagent-name-doctors-delight = The Doctor's Delight +reagent-name-doctors-delight = juice that replaces the medical department reagent-desc-doctors-delight = A gulp a day keeps the MediBot away. That's probably for the best. -reagent-name-driest-martini = driest martini +reagent-name-driest-martini = juice that is REALLY shaken not stirred reagent-desc-driest-martini = Only for the experienced. You think you see sand floating in the glass. -reagent-name-erika-surprise = Erika surprise +reagent-name-erika-surprise = juice that is surprisingly green reagent-desc-erika-surprise = The surprise is, it's green! -reagent-name-gargle-blaster = Pan-Galactic Gargle Blaster +reagent-name-gargle-blaster = juice that is a reference reagent-desc-gargle-blaster = Whoah, this stuff looks volatile! -reagent-name-gin-fizz = gin fizz +reagent-name-gin-fizz = juice that is juice that makes you make weird expressions but dry reagent-desc-gin-fizz = Refreshingly lemony, deliciously dry. -reagent-name-gin-tonic = gin and tonic +reagent-name-gin-tonic = juice that is very mild reagent-desc-gin-tonic = An all time classic, mild cocktail. -reagent-name-gildlager = Gildlager +reagent-name-gildlager = juice that alcoholic teen girls love reagent-desc-gildlager = 100 proof cinnamon schnapps, made for alcoholic teen girls on spring break. -reagent-name-grog = grog +reagent-name-grog = juice that is pirate approved reagent-desc-grog = Watered-down rum, pirate approved! -reagent-name-hippies-delight = Hippie's Delight +reagent-name-hippies-delight = juice that is hippie approved reagent-desc-hippies-delight = You just don't get it maaaan. -reagent-name-hooch = hooch +reagent-name-hooch = juice that is home-made reagent-desc-hooch = Either someone's failure at cocktail making or attempt in alchohol production. In any case, do you really want to drink that? -reagent-name-iced-beer = iced beer +reagent-name-iced-beer = juice that is alcoholic and light but cold reagent-desc-iced-beer = A beer which is so cold the air around it freezes. -reagent-name-irish-slammer = Irish slammer +reagent-name-irish-slammer = juice that causes drama reagent-desc-irish-slammer = An unconventional mixture of irish cream and stout. -reagent-name-irish-cream = Irish cream +reagent-name-irish-cream = juice that makes you really fat but space irish reagent-desc-irish-cream = Whiskey-imbued cream. What else could you expect from the Irish. -reagent-name-irish-coffee = Irish coffee +reagent-name-irish-coffee = juice that you need to drink all the time but irish reagent-desc-irish-coffee = Coffee served with irish cream. Regular cream just isn't the same! -reagent-name-kira-special = Kira special +reagent-name-kira-special = juice that makes you a tsundere reagent-desc-kira-special = Long live the guy who everyone had mistaken for a girl. Baka! -reagent-name-long-island-iced-tea = Long Island iced tea +reagent-name-long-island-iced-tea = juice that makes you space british but cold but alcoholic reagent-desc-long-island-iced-tea = The liquor cabinet, brought together in a delicious mix. Intended for middle-aged alcoholic women only. -reagent-name-manhattan = Manhattan +reagent-name-manhattan = juice that is walking here reagent-desc-manhattan = The Detective's undercover drink of choice. He never could stomach gin... -reagent-name-manhattan-project = Manhattan Project +reagent-name-manhattan-project = juice that is walking here but explodes reagent-desc-manhattan-project = A scientist's drink of choice, for pondering ways to blow up the ship. -reagent-name-manly-dorf = Manly Dorf +reagent-name-manly-dorf = juice that makes you dwarf reagent-desc-manly-dorf = Beer and Ale, brought together in a delicious mix. Intended for stout dwarves only. -reagent-name-margarita = margarita +reagent-name-margarita = juice that should be a pizza reagent-desc-margarita = On the rocks with salt on the rim. Arriba~! -reagent-name-the-martinez = The Martinez +reagent-name-the-martinez = juice that is a reference but space polish reagent-desc-the-martinez = The edgerunner legend. Remembered by a drink, forgotten by a drunk. -reagent-name-martini = classic martini +reagent-name-martini = juice that is shaken not stirred but classic reagent-desc-martini = Vermouth with Gin. Not quite how 007 enjoyed it, but still delicious. -reagent-name-mead = mead +reagent-name-mead = juice that is very cheap reagent-desc-mead = A Viking's drink, though a cheap one. -reagent-name-mojito = Mojito +reagent-name-mojito = juice that is delicious reagent-desc-mojito = If it's good enough for Spesscuba, it's good enough for you. -reagent-name-moonshine = moonshine +reagent-name-moonshine = juice that is made in the forest reagent-desc-moonshine = Artisanal homemade liquor. What could go wrong? -reagent-name-neurotoxin = neurotoxin +reagent-name-neurotoxin = juice that an angry robot would fill the vents with reagent-desc-neurotoxin = A strong neurotoxin that puts the subject into a death-like state. -reagent-name-painkiller = painkiller +reagent-name-painkiller = juice that takes your pain away reagent-desc-painkiller = A cure for what ails you. -reagent-name-patron = Patrón +reagent-name-patron = juice that is drank by desperadoes but silver reagent-desc-patron = Tequila with silver in it, a favorite of alcoholic women in the club scene. -reagent-name-pina-colada = Piña Colada +reagent-name-pina-colada = juice that has a catchy song reagent-desc-pina-colada = For getting lost in the rain. -reagent-name-red-mead = red mead +reagent-name-red-mead = juice that is very cheap but red reagent-desc-red-mead = The true Viking's drink! Even though it has a strange red color. -reagent-name-rewriter = Rewriter +reagent-name-rewriter = juice that makes you type reagent-desc-rewriter = The secret of the sanctuary of the Librarian... -reagent-name-sbiten = sbiten +reagent-name-sbiten = juice that makes you space slavic but spicy reagent-desc-sbiten = A spicy Vodka! Might be a little hot for the little guys! -reagent-name-screwdriver-cocktail = screwdriver +reagent-name-screwdriver-cocktail = juice that makes you hack doors reagent-desc-screwdriver-cocktail = Vodka, mixed with plain ol' orange juice. The result is surprisingly delicious. -reagent-name-cogchamp = Cogchamp +reagent-name-cogchamp = whvpr gun`g znxrf lbh fcrnx tvoorevfu reagent-desc-cogchamp = Not even Ratvar's Four Generals could withstand this! Qevax Jryy! -reagent-name-silencer = silencer +reagent-name-silencer = juice that makes you quiet reagent-desc-silencer = A drink from Mime Heaven. -reagent-name-singulo = singulo +reagent-name-singulo = juice that is loose reagent-desc-singulo = A blue-space beverage! -reagent-name-snow-white = Snow White +reagent-name-snow-white = juice that makes you dislike apples reagent-desc-snow-white = A cold refreshment. -reagent-name-sui-dream = sui dream +reagent-name-sui-dream = juice that makes you have sweet dreams reagent-desc-sui-dream = 'Comprised of: White soda, blue Curaçao, melon liquor.' -reagent-name-syndicate-bomb = syndicate bomb +reagent-name-syndicate-bomb = juice that you spend too much TC on reagent-desc-syndicate-bomb = Somebody set us up the bomb! -reagent-name-tequila-sunrise = tequila sunrise +reagent-name-tequila-sunrise = juice that is drank by desperadoes but is red at the bottom reagent-desc-tequila-sunrise = Tequila and orange juice. Much like a Screwdriver, only Mexican. -reagent-name-three-mile-island = Three Mile Island iced tea +reagent-name-three-mile-island = juice that makes you space british but cold but alcoholic but nuclear reagent-desc-three-mile-island = "Made for a woman, strong enough for a man." -reagent-name-toxins-special = toxins special +reagent-name-toxins-special = juice that is just boring but special reagent-desc-toxins-special = This thing is ON FIRE! CALL THE DAMN SHUTTLE! -reagent-name-vodka-martini = vodka martini +reagent-name-vodka-martini = juice that makes you space slavic but martini reagent-desc-vodka-martini = Vodka instead of Gin. Not quite how 007 enjoyed it, but still delicious. -reagent-name-vodka-tonic = vodka tonic +reagent-name-vodka-tonic = juice that makes you space slavic but juice that is very mild reagent-desc-vodka-tonic = For when a gin and tonic isn't russian enough. -reagent-name-whiskey-cola = whiskey cola +reagent-name-whiskey-cola = juice that makes you hydrated but sweet but alcoholic reagent-desc-whiskey-cola = Whiskey, mixed with cola. Surprisingly refreshing. -reagent-name-whiskey-soda = whiskey soda +reagent-name-whiskey-soda = juice that makes you hydrated but angry but space scottish reagent-desc-whiskey-soda = For the more refined griffon. -reagent-name-white-gilgamesh = White Gilgamesh +reagent-name-white-gilgamesh = juice that was a mistake to make reagent-desc-white-gilgamesh = A sickening mixture of milk and beer. Makes you feel like you're made of wood. -reagent-name-white-russian = White Russian +reagent-name-white-russian = juice that makes you russian but white reagent-desc-white-russian = That's just, like, your opinion, man... -reagent-name-vodka-red-bool = vodka red bool +reagent-name-vodka-red-bool = juice that makes you space slavic but gives you wings reagent-desc-vodka-red-bool = Because heart failure and liver failure go hand in hand. -reagent-name-xeno-basher = Xeno Basher +reagent-name-xeno-basher = juice that makes you bash xenos reagent-desc-xeno-basher = The perfect drink before an expedition. -reagent-name-irish-bool = Irish bool +reagent-name-irish-bool = juice that gives you wings but space irish reagent-desc-irish-bool = Like a bool in a Ireland shop. -reagent-name-budget-insuls = budget insuls +reagent-name-budget-insuls = juice that eletrocutes you reagent-desc-budget-insuls = A tider's preferred drink. -reagent-name-watermelon-wakeup = watermelon wakeup +reagent-name-watermelon-wakeup = juice that is full of seeds but wakes you up reagent-desc-watermelon-wakeup = If you want to be awake, this will do it... Also sweet. -reagent-name-rubberneck = rubberneck +reagent-name-rubberneck = juice that makes for a synthetic diet reagent-desc-rubberneck = A popular drink amongst those adhering to an all synthetic diet. -reagent-name-caipirinha = caipirinha +reagent-name-caipirinha = juice that makes you samba reagent-desc-caipirinha = The São Paulo special, straight from old Brazil. -reagent-name-daiquiri = daiquiri +reagent-name-daiquiri = juice that makes you beachy reagent-desc-daiquiri = A classic rum cocktail which remains popular even in the cold reaches of space. -reagent-name-death-in-the-afternoon = death in the afternoon +reagent-name-death-in-the-afternoon = juice that makes you poetic reagent-desc-death-in-the-afternoon = "Pour one jigger absinthe into a Champagne glass. Add iced Champagne until it attains the proper opalescent milkiness. Drink three to five of these slowly." - Ernest Hemingway -reagent-name-empress-75 = empress 75 +reagent-name-empress-75 = juice that makes you royal reagent-desc-empress-75 = A more refined take on the mimosa. Just the thing Marie Antoinette might've sipped on before the revolution. -reagent-name-espresso-martini = espresso martini +reagent-name-espresso-martini = juice that makes you wired reagent-desc-espresso-martini = To wake you up and wind you down. Garnished with coffee beans and icy-cold. -reagent-name-mayojito = mayojito +reagent-name-mayojito = juice that makes gods weep reagent-desc-mayojito = An affront to god and man. Do not drink it. -reagent-name-mimeosa = mimeosa +reagent-name-mimeosa = juice that silently bubbles reagent-desc-mimeosa = It has an orange tang so sour you just can't describe it. -reagent-name-mimosa = mimosa +reagent-name-mimosa = juice that makes you fancy reagent-desc-mimosa = Perfect for a lively brunch out with the girls. -reagent-name-moscow-mule = moscow mule +reagent-name-moscow-mule = juice that kicks with copper reagent-desc-moscow-mule = A surpsingly strong and refreshing mixed drink, served in an iconic copper mug. -reagent-name-the-sun-also-rises = the sun also rises +reagent-name-the-sun-also-rises = juice that makes you brooding reagent-desc-the-sun-also-rises = A strong cocktail mixed into a murky blend. A secret favorite of tortured authors. -reagent-name-whiskey-sour = whiskey sour +reagent-name-whiskey-sour = juice that makes you pucker reagent-desc-whiskey-sour = What's the secret ingredient? Eggs. It's eggs. -reagent-name-zombiecocktail = Zombie +reagent-name-zombiecocktail = juice that makes you feel dead inside reagent-desc-zombiecocktail = It gets in your head. Your he-eyeh-ead. reagent-name-bacchus-blessing = bacchus' blessing diff --git a/Resources/Locale/en-US/reagents/meta/consumable/drink/drinks.ftl b/Resources/Locale/en-US/reagents/meta/consumable/drink/drinks.ftl index c6964b55bc..256b2182ec 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/drink/drinks.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/drink/drinks.ftl @@ -1,95 +1,95 @@ -reagent-name-coffee = coffee +reagent-name-coffee = juice that you need to drink all the time reagent-desc-coffee = A drink made from brewed coffee beans. Contains a moderate amount of caffeine. -reagent-name-cream = cream +reagent-name-cream = juice that makes you really fat reagent-desc-cream = The fatty, still liquid part of milk. Why don't you mix this with sum scotch, eh? -reagent-name-coconut-water = coconut water +reagent-name-coconut-water = juice that makes you prime reagent-desc-coconut-water = A favorite of survivors on deserted islands. -reagent-name-cream-of-coconut = cream of coconut +reagent-name-cream-of-coconut = juice that makes you get caught in the rain reagent-desc-cream-of-coconut = Sweet, syrupy version of coconut cream with added sugar. -reagent-name-cafe-latte = cafe latte +reagent-name-cafe-latte = juice that makes you want a venti reagent-desc-cafe-latte = A nice, strong and tasty beverage while you are reading. -reagent-name-tea-powder = tea powder +reagent-name-tea-powder = juice that powers the space british reagent-desc-tea-powder = Finely ground tea leaves, used for making tea. -reagent-name-green-tea = green tea +reagent-name-green-tea = juice that makes you feel healthier reagent-desc-green-tea = Tasty green tea. -reagent-name-grenadine = grenadine +reagent-name-grenadine = juice that makes the bottom of your drink red reagent-desc-grenadine = Not cherry flavored! -reagent-name-iced-coffee = iced coffee +reagent-name-iced-coffee = juice that is juice that you need to drink all the time but cold reagent-desc-iced-coffee = Coffee and ice, refreshing and cool. -reagent-name-iced-green-tea = iced green tea +reagent-name-iced-green-tea = juice that is juice that makes you feel healthier but cold reagent-desc-iced-green-tea = Cold green tea. -reagent-name-iced-tea = iced tea +reagent-name-iced-tea = juice that makes you space british but cold reagent-desc-iced-tea = No relation to a certain rap artist/actor. -reagent-name-lemonade = lemonade +reagent-name-lemonade = juices that makes you have no grapes reagent-desc-lemonade = Drink using lemon juice, water, and a sweetener such as cane sugar or honey. -reagent-name-arnold-palmer = Arnold Palmer +reagent-name-arnold-palmer = juice that makes you golf reagent-desc-arnold-palmer = Now watch this drive. -reagent-name-milk = milk +reagent-name-milk = juice that comes from cows reagent-desc-milk = An opaque white liquid produced by the mammary glands of mammals. -reagent-name-milk-goat = goats milk +reagent-name-milk-goat = juice that comes from goats reagent-desc-milk-goat = An opaque white liquid produced by a goat. High buttermilk content. -reagent-name-milk-oat = oat milk +reagent-name-milk-oat = juice that comes from oats reagent-desc-milk-oat = Surprisingly tasty. -reagent-name-milk-soy = soy milk +reagent-name-milk-soy = juice that comes from soy reagent-desc-milk-soy = Consumers favorite. -reagent-name-milk-spoiled = spoiled milk +reagent-name-milk-spoiled = juice that comes from cows but old reagent-desc-milk-spoiled = This milk has gone rancid. -reagent-name-nothing = nothing +reagent-name-nothing = juice that makes you 404 reagent-desc-nothing = Absolutely nothing. -reagent-name-nuclear-cola = nuclear cola +reagent-name-nuclear-cola = juice that makes you nuke reagent-desc-nuclear-cola = Cola, cola never changes. -reagent-name-hot-cocoa = hot cocoa +reagent-name-hot-cocoa = juice that makes you feel jolly reagent-desc-hot-cocoa = Smells like the holidays! -reagent-name-soda-water = soda water +reagent-name-soda-water = juice that is juice that makes you hydrated but angry reagent-desc-soda-water = A container of club soda. Why not make a scotch and soda? -reagent-name-soy-latte = soy latte +reagent-name-soy-latte = juice that is juice that makes you want a venti but vegan reagent-desc-soy-latte = A coffee drink made with espresso and steamed soy milk. -reagent-name-tea = tea +reagent-name-tea = juice that makes you space british reagent-desc-tea = A drink made by boiling leaves of the tea tree, Camellia sinensis. -reagent-name-tonic-water = tonic water +reagent-name-tonic-water = juice that is juice that makes you hydrated but angry but special reagent-desc-tonic-water = It tastes strange but at least the quinine keeps the Space Malaria at bay. -reagent-name-water = water +reagent-name-water = juice that makes you hydrated reagent-desc-water = A colorless liquid that humans need in order to survive. -reagent-name-ice = ice +reagent-name-ice = juice that makes you hydrated but cold reagent-desc-ice = Frozen water. -reagent-name-dry-ramen = dry ramen +reagent-name-dry-ramen = juice that is cheap food reagent-desc-dry-ramen = Dry noodles and salt. -reagent-name-hot-ramen = hot ramen +reagent-name-hot-ramen = juice that you can believe in reagent-desc-hot-ramen = Hot noodles. -reagent-name-pilk = pilk +reagent-name-pilk = juice that makes you question life choices reagent-desc-pilk = A sickening mixture of milk and cola. -reagent-name-posca = posca +reagent-name-posca = juice that the romans drank or something like that reagent-desc-posca = Poor warriors' drink from a forgotten era. -reagent-name-mopwata = mopwata +reagent-name-mopwata = juice that janitors love the most reagent-desc-mopwata = Dirty, stagnant mop water. diff --git a/Resources/Locale/en-US/reagents/meta/consumable/drink/juice.ftl b/Resources/Locale/en-US/reagents/meta/consumable/drink/juice.ftl index 7c2b729d31..bc99438e03 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/drink/juice.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/drink/juice.ftl @@ -1,47 +1,47 @@ -reagent-name-juice-apple = apple juice +reagent-name-juice-apple = juice that is from apples reagent-desc-juice-apple = It's a little piece of Eden. -reagent-name-juice-banana = banana juice +reagent-name-juice-banana = juice that is from bananas reagent-desc-juice-banana = The raw essence of a banana. HONK. -reagent-name-juice-berry = berry juice +reagent-name-juice-berry = juice that is berry nice reagent-desc-juice-berry = A delicious blend of several different kinds of berries. -reagent-name-juice-blue-pumpkin = blue pumpkin juice +reagent-name-juice-blue-pumpkin = juice that is from spooky but blue reagent-desc-juice-blue-pumpkin = The juice of a blue pumpkin. Smells like pool water. -reagent-name-juice-bungo = bungo juice +reagent-name-juice-bungo = juice that is from bungo reagent-desc-juice-bungo = The juice of a bungo fruit. Exotic! -reagent-name-juice-berry-poison = poison berry juice +reagent-name-juice-berry-poison = juice that is not berry nice reagent-desc-juice-berry-poison = A surprisingly tasty juice blended from various kinds of very deadly and toxic berries. -reagent-name-juice-carrot = carrot juice +reagent-name-juice-carrot = juice that makes you see in the dark reagent-desc-juice-carrot = It's like a carrot, but less crunchy. -reagent-name-juice-grape = grape juice +reagent-name-juice-grape = juice that is too young to drink reagent-desc-juice-grape = Freshly squeezed juice from red grapes. Quite sweet. -reagent-name-juice-lemon = lemon juice +reagent-name-juice-lemon = juice that makes you make weird expressions reagent-desc-juice-lemon = This juice is VERY sour. -reagent-name-juice-lime = lime juice +reagent-name-juice-lime = juice that makes you make weird expressions but green reagent-desc-juice-lime = The sweet-sour juice of limes. -reagent-name-juice-orange = orange juice +reagent-name-juice-orange = juice that is from oranges reagent-desc-juice-orange = Both delicious AND rich in Vitamin C. What more do you need? -reagent-name-juice-pineapple = pineapple juice +reagent-name-juice-pineapple = juice that lives in a pineapple under the sea reagent-desc-juice-pineapple = The delicious juice of a pineapple. -reagent-name-juice-potato = potato juice +reagent-name-juice-potato = juice that shouldn't be a juice reagent-desc-juice-potato = Juice of the potato. Bleh. -reagent-name-juice-tomato = tomato juice +reagent-name-juice-tomato = juice that makes you live but edible reagent-desc-juice-tomato = Tomatoes made into juice. What a waste of good tomatoes, huh? -reagent-name-juice-watermelon = watermelon juice +reagent-name-juice-watermelon = juice that is full of seeds reagent-desc-juice-watermelon = The delicious juice of a watermelon. -reagent-name-juice-cherry = cherry juice +reagent-name-juice-cherry = juice that never releases the sequel reagent-desc-juice-cherry = Tasty cherry juice, sweet and tangy. diff --git a/Resources/Locale/en-US/reagents/meta/consumable/drink/soda.ftl b/Resources/Locale/en-US/reagents/meta/consumable/drink/soda.ftl index c0fac6089b..c1586ffe05 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/drink/soda.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/drink/soda.ftl @@ -1,57 +1,57 @@ -reagent-name-cola = Space Cola +reagent-name-cola = juice that juice that makes you hydrated but sweet reagent-desc-cola = A sweet, carbonated soft drink. -reagent-name-shirley-temple = Shirley Temple +reagent-name-shirley-temple = juice that makes you young reagent-desc-shirley-temple = A favorite amongst younger members of the crew. -reagent-name-changeling-sting = Changeling Sting +reagent-name-changeling-sting = juice that is coming next week reagent-desc-changeling-sting = You take a tiny sip and feel a burning sensation... -reagent-name-dr-gibb = Dr. Gibb +reagent-name-dr-gibb = juice that spills your organs reagent-desc-dr-gibb = A delicious blend of 42 different flavours. -reagent-name-energy-drink = Red Bool +reagent-name-energy-drink = juice that gives you wings reagent-desc-energy-drink = A dose of energy! Nanotrasen is not responsible if you grow avian appendages. -reagent-name-grape-soda = grape soda +reagent-name-grape-soda = juice that is too young to drink but angry reagent-desc-grape-soda = It's Graaaaaape! -reagent-name-ice-cream = ice cream +reagent-name-ice-cream = juice that everybody loves reagent-desc-ice-cream = It was either this or the microwave, and nobody wants ice cream soup! -reagent-name-lemon-lime = Smite +reagent-name-lemon-lime = juice that admins abuse reagent-desc-lemon-lime = Tangy lime and lemon soda. -reagent-name-lemon-lime-cranberry = Smite Cranberry +reagent-name-lemon-lime-cranberry = juice that you want reagent-desc-lemon-lime-cranberry = Tart cranberry, Christmas, and a hint of lemon and lime. -reagent-name-pwr-game = PWR Game +reagent-name-pwr-game = juice that gives you PWR reagent-desc-pwr-game = The only drink with the PWR that true gamers crave. When a gamer talks about gamerfuel, this is what they're literally referring to. -reagent-name-root-beer = root beer +reagent-name-root-beer = juice that makes you feel basic reagent-desc-root-beer = A very sweet, carbonated drink reminiscent of sarsaparilla. Goes well with ice cream. -reagent-name-root-beer-float = root beer float +reagent-name-root-beer-float = juice that makes you feel less basic reagent-desc-root-beer-float = Root beer, but now with ice cream on top. It truly is the magnum opus of Canadian summertime drinks. -reagent-name-sol-dry = Sol Dry +reagent-name-sol-dry = juice that makes you dry reagent-desc-sol-dry = Sweet ginger soda from outer space! -reagent-name-roy-rogers = Roy Rogers +reagent-name-roy-rogers = juice that makes you way too sweet reagent-desc-roy-rogers = Solid proof that there IS something known as too sweet. -reagent-name-space-mountain-wind = Space Solar Wind +reagent-name-space-mountain-wind = juice that eradicates humanity reagent-desc-space-mountain-wind = Blows right through you like a solar wind. -reagent-name-space-up = Space-Up +reagent-name-space-up = juice that points you up reagent-desc-space-up = Tastes like a hull breach in your mouth. -reagent-name-starkist = Starkist +reagent-name-starkist = juice that is from oranges but angry reagent-desc-starkist = A sweet, orange flavored soft drink. -reagent-name-fourteen-loko = Fourteen Loko +reagent-name-fourteen-loko = juice that breaks the safety standards reagent-desc-fourteen-loko = A highly processed liquid substance barely-passing intergalatic health standards for a soft drink. -reagent-name-shamblers-juice = Shambler's Juice +reagent-name-shamblers-juice = juice that makes you shamble reagent-desc-shamblers-juice = ~Shake me up some of that Shambler's Juice!~ diff --git a/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl b/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl index 0fe7be6b37..e2a8fb170e 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/food/condiments.ftl @@ -1,44 +1,44 @@ -reagent-name-astrotame = Astrotame +reagent-name-astrotame = juice that is fake sweet reagent-desc-astrotame = The sweetness of a thousand sugars but none of the calories. -reagent-name-bbq-sauce = BBQ sauce +reagent-name-bbq-sauce = juice that you put on steak reagent-desc-bbq-sauce = Hand wipes not included. -reagent-name-cornoil = corn oil +reagent-name-cornoil = juice that starts wars but corn reagent-desc-cornoil = Corn oil, A delicious oil used in cooking. Made from corn. -reagent-name-coldsauce = coldsauce +reagent-name-coldsauce = juice that is just mint reagent-desc-coldsauce = Leaves the tongue numb in its passage. -reagent-name-horseradish-sauce = horseradish sauce +reagent-name-horseradish-sauce = juice that is horse reagent-desc-horseradish-sauce = Smelly horseradish sauce. -reagent-name-hotsauce = hotsauce +reagent-name-hotsauce = juice that burns your tongue reagent-desc-hotsauce = Burns so good. -reagent-name-ketchup = ketchup +reagent-name-ketchup = juice that you hope isn't juice that makes you live reagent-desc-ketchup = Made from pureed tomatoes and flavored with spices. -reagent-name-ketchunaise = ketchunaise +reagent-name-ketchunaise = juice that is a hybrid reagent-desc-ketchunaise = So-called Russian dressing, popular among Space Americans. -reagent-name-laughin-syrup = laughin' syrup +reagent-name-laughin-syrup = juice that gets you laughin' reagent-desc-laughin-syrup = The product of juicing Laughin' Peas. Fizzy, and seems to change flavour based on what it's used with! -reagent-name-mayo = mayonnaise +reagent-name-mayo = juice that is not an instrument reagent-desc-mayo = Creamy sauce, made from oil, egg, and some (edible) acid. -reagent-name-mustard = mustard +reagent-name-mustard = juice that goes great on hotdogs reagent-desc-mustard = Basic yellow mustard, made from the seeds of the mustard plant. -reagent-name-vinaigrette = vinaigrette +reagent-name-vinaigrette = juice that makes salads pretty reagent-desc-vinaigrette = A basic salad dressing made with oil, vinegar and seasoning. -reagent-name-soysauce = soy sauce +reagent-name-soysauce = juice that makes things soy reagent-desc-soysauce = A salty soy-based flavoring. -reagent-name-table-salt = table salt +reagent-name-table-salt = juice that makes things salty reagent-desc-table-salt = Commonly known as salt, Sodium Chloride is often used to season food or kill borers instantly. -reagent-name-syrup = syrup +reagent-name-syrup = juice that is thicc reagent-desc-syrup = Delicious syrup made from tree sap, somehow stickier than glue. diff --git a/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl b/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl index 5f89fea575..92598ac1d6 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl @@ -1,20 +1,20 @@ -reagent-name-nutriment = nutriment +reagent-name-nutriment = juice that fills your tummy reagent-desc-nutriment = All the vitamins, minerals, and carbohydrates the body needs in pure form. -reagent-name-glucose = glucose +reagent-name-glucose = juice that makes you fat reagent-desc-glucose = A simple sugar found in many foods. -reagent-name-vitamin = vitamin +reagent-name-vitamin = juice that makes you healthy reagent-desc-vitamin = Found in healthy, complete meals. -reagent-name-protein = protein +reagent-name-protein = juice that builds your muscles reagent-desc-protein = Found in certain meals, good for bodily health. -reagent-name-cocoapowder = cocoa powder +reagent-name-cocoapowder = juice used to make chocolate reagent-desc-cocoapowder = From the best varieties of cocoa beans -reagent-name-butter = butter +reagent-name-butter = juice that makes bread moist reagent-desc-butter = You can believe it! -reagent-name-pumpkin-flesh = pumpkin flesh +reagent-name-pumpkin-flesh = juice that makes things spooky reagent-desc-pumpkin-flesh = The mushy, sweet remains of a pumpkin. diff --git a/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl b/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl index 98dc73ecbc..68c13e4e47 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/food/ingredients.ftl @@ -1,41 +1,41 @@ -reagent-name-flour = flour +reagent-name-flour = juice that makes baked goods reagent-desc-flour = Used for baking. -reagent-name-cornmeal = cornmeal +reagent-name-cornmeal = juice that makes pancakes reagent-desc-cornmeal = Used for baking. -reagent-name-oats = oats +reagent-name-oats = juice that is livestock feed reagent-desc-oats = Used for a variety of tasty purposes. -reagent-name-enzyme = universal enzyme +reagent-name-enzyme = juice that makes you cheese reagent-desc-enzyme = Used in cooking various dishes. -reagent-name-egg = cooked egg +reagent-name-egg = juice that is early-made KFC reagent-desc-egg = Cooked chicken embryo, delicious. -reagent-name-raw-egg = raw egg +reagent-name-raw-egg = juice that should've been a chicken reagent-desc-raw-egg = Used for baking. -reagent-name-sugar = sugar +reagent-name-sugar = juice that rots your teeth reagent-desc-sugar = Tasty spacey sugar! -reagent-name-blackpepper = black pepper +reagent-name-blackpepper = juice that hurts your tastebuds reagent-desc-blackpepper = Often used to flavor food or make people sneeze. -reagent-name-vinegar = vinegar +reagent-name-vinegar = juice that makes a volcano reagent-desc-vinegar = Often used to flavor food. -reagent-name-rice = rice +reagent-name-rice = juice that makes good asian food reagent-desc-rice = Hard, small white grains. -reagent-name-oil-olive = olive oil +reagent-name-oil-olive = juice that doesn't start wars reagent-desc-oil-olive = Viscous and fragrant. -reagent-name-oil = oil +reagent-name-oil = juice that starts wars reagent-desc-oil = Used by chefs to cook. -reagent-name-capsaicin-oil = Capsaicin Oil +reagent-name-capsaicin-oil = juice that makes your mouth hot reagent-desc-capsaicin-oil = Capsaicin Oil is the ingredient found in different types of hot peppers. -reagent-name-frost-oil = Frost Oil +reagent-name-frost-oil = juice that makes your mouth cold reagent-desc-frost-oil = Frost Oil is the ingredient found in chilly peppers, a rare pepper mutation. diff --git a/Resources/Locale/en-US/reagents/meta/elements.ftl b/Resources/Locale/en-US/reagents/meta/elements.ftl index b5ef028bed..1806412b8b 100644 --- a/Resources/Locale/en-US/reagents/meta/elements.ftl +++ b/Resources/Locale/en-US/reagents/meta/elements.ftl @@ -1,65 +1,65 @@ -reagent-name-aluminium = aluminium +reagent-name-aluminium = juice that you cannot paint reagent-desc-aluminium = A silver, soft, non-magnetic, and ductile metal. -reagent-name-ash = ash +reagent-name-ash = juice that means it got too hot reagent-desc-ash = A light grey powdery residue -reagent-name-carbon = carbon +reagent-name-carbon = juice that builds your body reagent-desc-carbon = A black, crystalline solid. -reagent-name-charcoal = charcoal +reagent-name-charcoal = juice that got burned reagent-desc-charcoal = A black, porous solid -reagent-name-chlorine = chlorine +reagent-name-chlorine = juice that cleans the pool reagent-desc-chlorine = A yellow-green gas which is toxic to humans. -reagent-name-copper = copper +reagent-name-copper = juice that makes your juice that makes you live but blue blue reagent-desc-copper = A soft, malleable, and ductile metal with very high thermal and electrical conductivity. -reagent-name-fluorine = fluorine +reagent-name-fluorine = juice that cleans your teeth reagent-desc-fluorine = A highly toxic pale yellow gas. Extremely reactive. -reagent-name-gold = gold +reagent-name-gold = juice that makes you rich reagent-desc-gold = Gold is a dense, soft, shiny metal and the most malleable and ductile metal known. -reagent-name-hydrogen = hydrogen +reagent-name-hydrogen = juice that makes zeppelins explode reagent-desc-hydrogen = A light, flammable gas. -reagent-name-iodine = iodine +reagent-name-iodine = juice that stains your clothes reagent-desc-iodine = Commonly added to table salt as a nutrient. On its own it tastes far less pleasing. -reagent-name-iron = iron +reagent-name-iron = juice that makes juice that makes you live red reagent-desc-iron = A silvery-grey metal which forms iron oxides (rust) with contact with air. Commonly alloyed with other elements to create alloys such as steel. -reagent-name-lithium = lithium +reagent-name-lithium = juice that makes batteries reagent-desc-lithium = A soft, silvery-white alkali metal. It's highly reactive, and ignites if it makes contact with water. -reagent-name-mercury = mercury +reagent-name-mercury = juice that is named after a planet reagent-desc-mercury = A silver metal which is liquid at room temperature. It's highly toxic to humans. -reagent-name-potassium = potassium +reagent-name-potassium = juice that has strong opinions about water reagent-desc-potassium = A soft, shiny grey metal. Even more reactive than lithium. -reagent-name-phosphorus = phosphorus +reagent-name-phosphorus = juice that makes you glow reagent-desc-phosphorus = A reactive metal used in pyrotechnics and weapons. -reagent-name-radium = radium +reagent-name-radium = juice that makes you glow and then die reagent-desc-radium = A radioactive metal, silvery-white in its pure form. It glows due to its radioactivity and is highly toxic. -reagent-name-silicon = silicon +reagent-name-silicon = juice that makes you state laws reagent-desc-silicon = A hard and brittle crystalline solid with a blue-grey color. -reagent-name-silver = silver +reagent-name-silver = juice that makes mirrors reagent-desc-silver = A soft, white, lustrous transition metal, it has the highest electrical conductivity of any element and the highest thermal conductivity of any metal. -reagent-name-sulfur = sulfur +reagent-name-sulfur = juice that makes things blow up reagent-desc-sulfur = A yellow, crystalline solid. -reagent-name-sodium = sodium +reagent-name-sodium = juice that dislikes the juice that makes you breathe reagent-desc-sodium = A silvery-white alkali metal. Highly reactive in its pure form. -reagent-name-uranium = uranium +reagent-name-uranium = juice that science orders reagent-desc-uranium = A grey metallic chemical element in the actinide series, weakly radioactive. -reagent-name-zinc = zinc +reagent-name-zinc = juice that is pretty boring reagent-desc-zinc = A silvery, brittle metal, often used in batteries to carry charge. diff --git a/Resources/Locale/en-US/reagents/meta/fun.ftl b/Resources/Locale/en-US/reagents/meta/fun.ftl index 66abb737ff..6ad3e04db8 100644 --- a/Resources/Locale/en-US/reagents/meta/fun.ftl +++ b/Resources/Locale/en-US/reagents/meta/fun.ftl @@ -1,32 +1,40 @@ -reagent-name-carpetium = carpetium +reagent-name-carpetium = juice that makes carps sad reagent-desc-carpetium = A mystical chemical, usually outsourced from the Clown Planet, that covers everything it touches in carpet. Somehow filters out carpotoxin from the blood stream. -reagent-name-fiber = fiber +reagent-name-fiber = juice that moths enjoy reagent-desc-fiber = A raw material, usually extracted from wool or other fabric products. -reagent-name-buzzochloric-bees = buzzochloric bees +reagent-name-buzzochloric-bees = juice that defies laws of aviation reagent-desc-buzzochloric-bees = Liquid bees. Oh god it's LIQUID BEES NO- -reagent-name-ground-bee = ground Bee +reagent-name-ground-bee = juice that is literally a bee reagent-desc-ground-bee = Bee grounds. Gross. -reagent-name-saxoite = saxoite +reagent-name-saxoite = juice that makes you jazz reagent-desc-saxoite = Smells like jazz. -reagent-name-licoxide = licoxide +reagent-name-licoxide = juice that makes you BZZZT! reagent-desc-licoxide = A synthetic battery acid. It looks... electrifying. -reagent-name-razorium = razorium +reagent-name-razorium = juice that interns love reagent-desc-razorium = A strange, non-newtonian chemical. It is produced when two conflicting brute medications are combined. When force is applied to it, it temporarily hardens creating millions of tiny, sharp edges. Very painful. -reagent-name-fresium = Fresium +reagent-name-fresium = juice that nobody ever made reagent-desc-fresium = A mysterious compound that slows the vibration of atoms and molecules... somehow. In layman's terms, it makes things cold... REALLY cold. Can cause long-lasting movement issues if ingested. -reagent-name-laughter = laughter +reagent-name-laughter = juice that makes you funny reagent-desc-laughter = Some say that this is the best medicine, but recent studies have proven that to be untrue. -reagent-name-weh = juice that makes you Weh +reagent-name-weh = wehzine reagent-desc-weh = Pure essence of lizard plush. Makes you Weh! -reagent-name-hew = juice that makes you Hew +reagent-name-hew = hewzine reagent-desc-hew = Pure essence of inversed lizard plush. Makes you Hew! + +reagent-name-microplastics = microplastics +reagent-desc-microplastics = A microscopic threat to the bloodstream. Yummy! + +reagent-name-corgijuice = juice that makes you a corgi +reagent-desc-corgijuice = A convoluted healing liquid with extreme side effects when overconsumed. + +reagent-name-concentratedcorgijuice = juice that makes you a corgi forever diff --git a/Resources/Locale/en-US/reagents/meta/gases.ftl b/Resources/Locale/en-US/reagents/meta/gases.ftl index 5460757be7..fd8b40b5f8 100644 --- a/Resources/Locale/en-US/reagents/meta/gases.ftl +++ b/Resources/Locale/en-US/reagents/meta/gases.ftl @@ -1,20 +1,20 @@ -reagent-name-oxygen = oxygen +reagent-name-oxygen = juice that makes you breathe reagent-desc-oxygen = An oxidizing, colorless gas. -reagent-name-plasma = plasma +reagent-name-plasma = juice that makes you burn reagent-desc-plasma = Funky, space-magic pixie dust. You probably shouldn't eat this, but we both know you will anyways. -reagent-name-tritium = tritium +reagent-name-tritium = juice that you shouldn't breathe reagent-desc-tritium = Radioactive space-magic pixie dust. -reagent-name-carbon-dioxide = carbon dioxide +reagent-name-carbon-dioxide = juice that makes you suffocate reagent-desc-carbon-dioxide = You have genuinely no idea what this is. -reagent-name-nitrogen = nitrogen +reagent-name-nitrogen = juice that is everywhere reagent-desc-nitrogen = A colorless, odorless unreactive gas. Highly stable. -reagent-name-nitrous-oxide = nitrous oxide +reagent-name-nitrous-oxide = juice that makes you sleepy reagent-desc-nitrous-oxide = You know how everything seems funnier when you're tired? Well... -reagent-name-frezon = frezon +reagent-name-frezon = juice that gives you cancer reagent-desc-frezon = A highly effective coolant.. and hallucinogenic. diff --git a/Resources/Locale/en-US/reagents/meta/medicine.ftl b/Resources/Locale/en-US/reagents/meta/medicine.ftl index 0b6695be34..973cee1c1b 100644 --- a/Resources/Locale/en-US/reagents/meta/medicine.ftl +++ b/Resources/Locale/en-US/reagents/meta/medicine.ftl @@ -1,149 +1,149 @@ -reagent-name-cryptobiolin = cryptobiolin +reagent-name-cryptobiolin = juice that makes you drunk reagent-desc-cryptobiolin = Causes confusion and dizziness. -reagent-name-dylovene = dylovene +reagent-name-dylovene = juice that heals your poison reagent-desc-dylovene = A broad-spectrum anti-toxin, which treats toxin damage in organisms. Overdosing will cause vomiting, dizzyness and pain. -reagent-name-diphenhydramine = diphenhydramine +reagent-name-diphenhydramine = juice that makes you not jitter reagent-desc-diphenhydramine = Rapidly purges the body of histamine, reduces jitteriness, and treats poison damage. -reagent-name-arithrazine = arithrazine +reagent-name-arithrazine = juice that treats your rads reagent-desc-arithrazine = A mildly unstable medication used for the most extreme case of radiation poisoning. Exerts minor stress on the body. -reagent-name-bicaridine = bicaridine +reagent-name-bicaridine = juice that heals your brutes reagent-desc-bicaridine = An analgesic which is highly effective at treating brute damage. It's useful for stabilizing people who have been severely beaten, as well as treating less life-threatening injuries. -reagent-name-cryoxadone = cryoxadone +reagent-name-cryoxadone = juice that is severely underused reagent-desc-cryoxadone = Required for the proper function of cryogenics. Heals all standard types of damage, but only works in temperatures under 213K. It can treat and rejuvenate plants when applied in small doses. -reagent-name-doxarubixadone = doxarubixadone -reagent-desc-doxarubixadone = A cryogenics chemical. Heals cellular damage caused by dangerous gasses and chemicals. +reagent-name-doxarubixadone = juice that treats your cancer +reagent-desc-doxarubixadone = A cryogenics chemical. Heals certain types of cellular damage done by Slimes and improper use of other chemicals. -reagent-name-dermaline = dermaline +reagent-name-dermaline = juice that heals your burns reagent-desc-dermaline = An advanced chemical that is more effective at treating burn damage than kelotane. -reagent-name-dexalin = dexalin +reagent-name-dexalin = juice that breathes for you reagent-desc-dexalin = Used for treating minor oxygen deprivation and bloodloss. A required reagent for dexalin plus. -reagent-name-dexalin-plus = dexalin plus +reagent-name-dexalin-plus = juice that breathes for you but stronger reagent-desc-dexalin-plus = Used in treatment of extreme cases of oxygen deprivation and bloodloss. Flushes heartbreaker toxin out of the blood stream. -reagent-name-epinephrine = epinephrine +reagent-name-epinephrine = juice that makes you stable reagent-desc-epinephrine = An effective stabilizing chemical used to keep a critical person from dying to asphyxiation while patching up minor damage during crit. Flushes heartbreaker toxin out the blood stream at the cost of more epinephrine, but may add histamine. Helps reduce stun time. Commonly found in the form of emergency medipens. -reagent-name-hyronalin = hyronalin +reagent-name-hyronalin = juice that is bad at healing your rads reagent-desc-hyronalin = A weak treatment for radiation damage. A precursor to arithrazine and phalanximine. Can cause vomiting. -reagent-name-ipecac = ipecac +reagent-name-ipecac = juice that makes you vomit reagent-desc-ipecac = A rapid-acting emetic. Useful for stopping unmetabolized poisons, or mass-vomiting sessions. -reagent-name-inaprovaline = inaprovaline +reagent-name-inaprovaline = juice that helps the dying breathe reagent-desc-inaprovaline = Inaprovaline is a synaptic stimulant and cardiostimulant, commonly used to treat asphyxiation damage caused during critical states and reduce bleeding. Used in many advanced medicines. -reagent-name-kelotane = kelotane +reagent-name-kelotane = juice that treats your burn reagent-desc-kelotane = Treats burn damage. Overdosing greatly reduces the body's ability to retain water. -reagent-name-leporazine = leporazine +reagent-name-leporazine = juice that treats your cold reagent-desc-leporazine = A chemical used to stabilize body temperature and rapidly cure cold damage. Great for unprotected EVA travel, but prevents the use of cryogenic tubes. -reagent-name-barozine = barozine +reagent-name-barozine = juice that makes you an astronaut reagent-desc-barozine = A potent chemical that prevents pressure damage. Causes extreme stress on the body. -reagent-name-phalanximine = phalanximine +reagent-name-phalanximine = juice that revives the plants reagent-desc-phalanximine = An advanced chemical used in the treatment of cancer. Causes moderate radiation poisoning on organics and vomiting. Can potentially remove the death gene on plants. -reagent-name-polypyrylium-oligomers = Polypyrylium Oligomers +reagent-name-polypyrylium-oligomers = superior juice that heals your brutes reagent-desc-polypyrylium-oligomers = A purple mixture of short polyelectrolyte chains not easily synthesized in the laboratory. Heals asphyxiation and brute damage. Stops bleeding over time. -reagent-name-ambuzol = ambuzol +reagent-name-ambuzol = juice that makes you not turn green reagent-desc-ambuzol = A highly engineered substance able to halt the progression of a zombie infection. -reagent-name-ambuzol-plus = ambuzol plus +reagent-name-ambuzol-plus = juice that makes you not turn green but stronger reagent-desc-ambuzol-plus = Further engineered with the blood of the infected, inoculates the living against the infection. -reagent-name-pulped-banana-peel = pulped banana peel +reagent-name-pulped-banana-peel = juice that used to be a banana reagent-desc-pulped-banana-peel = Pulped banana peels have some effectiveness against bleeding. -reagent-name-siderlac = siderlac +reagent-name-siderlac = juice that heals your insides reagent-desc-siderlac = A powerful anti-caustic medicine derived from plants. -reagent-name-stellibinin = stellibinin +reagent-name-stellibinin = prickly juice that heals your poison reagent-desc-stellibinin = A natual anti-toxin with particular effectiveness against amatoxin. -reagent-name-synaptizine = synaptizine +reagent-name-synaptizine = juice that helps you against shitsec reagent-desc-synaptizine = A toxic chemical that halves the duration of stuns and knockdowns. -reagent-name-tranexamic-acid = tranexamic acid +reagent-name-tranexamic-acid = juice that makes you bleedn't reagent-desc-tranexamic-acid = A blood-clotting medicine used to prevent profuse bleeding. Causes heavier bleeding on overdose. Commonly found in small doses within emergency medipens. -reagent-name-tricordrazine = tricordrazine +reagent-name-tricordrazine = juice that replaces your doctor reagent-desc-tricordrazine = A wide-spectrum stimulant, originally derived from cordrazine. Treats minor damage of all basic health types as long as the user is not heavily wounded. Best used as an additive to other chemicals. -reagent-name-lipozine = lipozine +reagent-name-lipozine = juice that makes you hungry reagent-desc-lipozine = A chemical that accelerates metabolism, causing the user to hunger faster. -reagent-name-omnizine = omnizine +reagent-name-omnizine = juice that is not actually good medicine by itself reagent-desc-omnizine = A soothing milky liquid with an iridescent gleam. A well known conspiracy theory says that its origins remain a mystery because revealing the secrets of its production would render most commercial pharmaceuticals obsolete. -reagent-name-ultravasculine = ultravasculine +reagent-name-ultravasculine = juice that heals your poison but purple reagent-desc-ultravasculine = A complicated anti-toxin solution that quickly flushes out toxin while causing minor stress on the body. Reacts with histamine, duplicating itself while flushing it out. Overdose causes extreme pain. -reagent-name-oculine = oculine +reagent-name-oculine = juice that makes you able to see reagent-desc-oculine = A simple saline compound used to treat the eyes via ingestion. -reagent-name-ethylredoxrazine = ethylredoxrazine +reagent-name-ethylredoxrazine = juice that makes you sober reagent-desc-ethylredoxrazine = Neutralises the effects of alcohol in the blood stream. Though it is commonly needed, it is rarely requested. -reagent-name-cognizine = cognizine +reagent-name-cognizine = juice that makes you experience the pain of consciousness reagent-desc-cognizine = A mysterious chemical which is able to make any non-sentient creature sentient. -reagent-name-ethyloxyephedrine = ethyloxyephedrine +reagent-name-ethyloxyephedrine = juice that makes you awake reagent-desc-ethyloxyephedrine = A mildly unstable medicine derived from desoxyephedrine, primarily used to combat narcolepsy. -reagent-name-diphenylmethylamine = diphenylmethylamine +reagent-name-diphenylmethylamine = juice that makes you awake but stronger reagent-desc-diphenylmethylamine = A more stable medicine than ethyloxyephedrine. Useful for keeping someone awake. -reagent-name-sigynate = sigynate +reagent-name-sigynate = juice that treats your internal trauma reagent-desc-sigynate = A thick pink syrup useful for neutralizing acids and soothing trauma caused by acids. Tastes sweet! -reagent-name-saline = saline +reagent-name-saline = juice that gives you blood reagent-desc-saline = A mixture of salt and water. Commonly used to treat dehydration or low fluid presence in blood. -reagent-name-lacerinol = lacerinol +reagent-name-lacerinol = juice that treats your slash reagent-desc-lacerinol = A fairly unreactive chemical that boosts collagen sythesis to incredible levels, healing slash trauma. -reagent-name-puncturase = puncturase +reagent-name-puncturase = juice that treats your pierce reagent-desc-puncturase = A fizzy chemical that helps rebuild trauma caused by piercing damage, leaving a slight amount of tissue damage behind. -reagent-name-bruizine = bruizine +reagent-name-bruizine = juice that treats your bruises reagent-desc-bruizine = Originally developed as a cough medicine, it turns out this chemical is wildly effective at treating blunt force trauma. -reagent-name-holywater = holy water +reagent-name-holywater = juice that is just cooler water reagent-desc-holywater = The cleanest and purest of waters straight from the hands of god, is known to magically heal wounds. -reagent-name-pyrazine = pyrazine +reagent-name-pyrazine = juice that treats your burn but stronger reagent-desc-pyrazine = Efficiently heals burns from the hottest of fires. Causes massive internal bleeding when overdosed. -reagent-name-insuzine = insuzine +reagent-name-insuzine = juice that treats your shock reagent-desc-insuzine = Rapidly repairs dead tissue caused by electrocution, but cools you slightly. Completely freezes the patient when overdosed. -reagent-name-opporozidone = opporozidone +reagent-name-opporozidone = juice that treats your rot reagent-desc-opporozidone= A difficult to synthesize cryogenic drug used to regenerate rotting tissue and brain matter. -reagent-name-necrosol = necrosol +reagent-name-necrosol = juice that revives the dead reagent-desc-necrosol = A necrotic substance that seems to be able to heal frozen corpses. It can treat and rejuvenate plants when applied in small doses. -reagent-name-aloxadone = aloxadone +reagent-name-aloxadone = juice that treats your burns but cold reagent-desc-aloxadone = A cryogenics chemical. Used to treat severe third degree burns via regeneration of the burnt tissue. Works regardless of the patient being alive or dead. -reagent-name-mannitol = mannitol +reagent-name-mannitol = juice that makes you smart reagent-desc-mannitol = Efficiently restores brain damage. -reagent-name-psicodine = psicodine +reagent-name-psicodine = juice that psychologists should give you reagent-desc-psicodine = Suppresses anxiety and other various forms of mental distress. Overdose causes hallucinations and minor toxin damage. -reagent-name-potassium-iodide = potassium iodide +reagent-name-potassium-iodide = juice that is just worse juice that treats your rads reagent-desc-potassium-iodide = Will reduce the damaging effects of radiation by 90%. Prophylactic use only. -reagent-name-haloperidol = haloperidol +reagent-name-haloperidol = juice that snaps you back to reality reagent-desc-haloperidol = Removes most stimulating and hallucinogenic drugs. Reduces druggy effects and jitteriness. Causes drowsiness. diff --git a/Resources/Locale/en-US/reagents/meta/narcotics.ftl b/Resources/Locale/en-US/reagents/meta/narcotics.ftl index 600ceffce6..87aa9e80ec 100644 --- a/Resources/Locale/en-US/reagents/meta/narcotics.ftl +++ b/Resources/Locale/en-US/reagents/meta/narcotics.ftl @@ -1,41 +1,41 @@ -reagent-name-desoxyephedrine = desoxyephedrine +reagent-name-desoxyephedrine = juice that makes you cook reagent-desc-desoxyephedrine = A more effective ephedrine, with more active downsides. Requires less doses to cure narcolepsy. -reagent-name-ephedrine = ephedrine +reagent-name-ephedrine = juice that makes you fast reagent-desc-ephedrine = A caffeinated adrenaline stimulator chemical that makes you faster and harder to knock down. Also helps combat narcolepsy at dosages over thirty, at the cost of severe nerval stress. -reagent-name-stimulants = hyperzine +reagent-name-stimulants = juice that makes you faster reagent-desc-stimulants = A chemical cocktail developed by Donk Co. that allows agents to recover from stuns faster, move more quickly, and grants a small heal when you're more dead than alive. Due to the complex nature of the chemical, it is much harder for the body to purge naturally. reagent-name-experimental-stimulants = experimental stimulants reagent-desc-experimental-stimulants = A prototype version of hyperzine. Usage grants virtual immunity to stun weaponry, rapid tissue regeneration, extreme running speed by reducing lactic acid buildup, and a general feeling of euphoria. Side effects may include extreme levels of anticoagulation, tunnel vision, extreme toxin buildup in the bloodstream, and rapid liver death. Do not give to animals. -reagent-name-thc = THC +reagent-name-thc = juice that makes you high reagent-desc-thc = The main psychoactive compound in cannabis. -reagent-name-bananadine = bananadine +reagent-name-bananadine = juice that makes you OOK! reagent-desc-bananadine = A mild psychedelic that is found in small traces in banana peels. -reagent-name-nicotine = nicotine +reagent-name-nicotine = juice that makes you smoke reagent-desc-nicotine = Dangerous and highly addictive, but that's what the propaganda says. -reagent-name-impedrezene = impedrezene +reagent-name-impedrezene = juice that makes you slow reagent-desc-impedrezene = A narcotic that impedes one's ability by slowing down the higher brain cell functions. -reagent-name-space-drugs = space mirage +reagent-name-space-drugs = juice that makes you see things reagent-desc-space-drugs = An illegal compound which induces a number of effects such as loss of balance and visual artefacts. -reagent-name-nocturine = nocturine +reagent-name-nocturine = juice that gets you minibombed reagent-desc-nocturine = A highly effective sedative and hypnotic, developed by the Syndicate for stealth operations. One-way ticket to honk-shoo town. -reagent-name-mute-toxin = mute toxin +reagent-name-mute-toxin = juice that makes you mute reagent-desc-mute-toxin = A thick chemical that coats the vocal cords, making the user unable to speak during metabolization. -reagent-name-norepinephric-acid = norepinephric acid +reagent-name-norepinephric-acid = juice that makes you blind reagent-desc-norepinephric-acid = A smooth chemical that blocks the optical receptors, rendering the user blind during metabolization. -reagent-name-tear-gas = tear gas +reagent-name-tear-gas = juice that makes you cry reagent-desc-tear-gas = A chemical that causes severe irritation and crying, commonly used in riot control. -reagent-name-happiness = happiness +reagent-name-happiness = juice that makes you happy reagent-desc-happiness = Fills you with ecstatic numbness and causes minor brain damage. Highly addictive. If overdosed causes sudden mood swings. diff --git a/Resources/Locale/en-US/reagents/meta/pyrotechnic.ftl b/Resources/Locale/en-US/reagents/meta/pyrotechnic.ftl index 07bb47678f..4f53e78263 100644 --- a/Resources/Locale/en-US/reagents/meta/pyrotechnic.ftl +++ b/Resources/Locale/en-US/reagents/meta/pyrotechnic.ftl @@ -1,20 +1,20 @@ -reagent-name-thermite = thermite +reagent-name-thermite = juice that SHOULD do chemical fires reagent-desc-thermite = A mixture that becomes extremely hot when ignited. -reagent-name-napalm = napalm +reagent-name-napalm = juice that makes you ash reagent-desc-napalm = It's just a little flammable. -reagent-name-phlogiston = phlogiston +reagent-name-phlogiston = juice that makes you hot reagent-desc-phlogiston = Catches you on fire and makes you ignite. -reagent-name-chlorine-trifluoride = chlorine trifluoride +reagent-name-chlorine-trifluoride = juice that made someone gib reagent-desc-chlorine-trifluoride = You really, REALLY don't want to get this shit anywhere near you. -reagent-name-foaming-agent = foaming agent +reagent-name-foaming-agent = juice that covers the halls reagent-desc-foaming-agent = Makes foam such as that's required in metal foam grenades. -reagent-name-welding-fuel = welding fuel +reagent-name-welding-fuel = juice that makes you weld reagent-desc-welding-fuel = Used by welders to weld. -reagent-name-fluorosurfactant = fluorosurfactant +reagent-name-fluorosurfactant = juice that makes foam reagent-desc-fluorosurfactant = A perfluoronated sulfonic acid that forms a foam when mixed with water. diff --git a/Resources/Locale/en-US/reagents/meta/toxins.ftl b/Resources/Locale/en-US/reagents/meta/toxins.ftl index 6d92d81079..8f8a49c011 100644 --- a/Resources/Locale/en-US/reagents/meta/toxins.ftl +++ b/Resources/Locale/en-US/reagents/meta/toxins.ftl @@ -1,83 +1,83 @@ -reagent-name-toxin = toxin +reagent-name-toxin = juice that is just boring reagent-desc-toxin = An unsurprisingly toxic chemical. Available at an emagged chem dispenser. -reagent-name-carpotoxin = carpotoxin +reagent-name-carpotoxin = juice that makes your bones hurt reagent-desc-carpotoxin = A highly toxic reagent found in space carps. Causes a painful burning sensation. -reagent-name-mold = mold +reagent-name-mold = juice that covers your walls reagent-desc-mold = A fungal growth, often found in dark, humid places or on expired bread. Will cause you to develop a disease if ingested. -reagent-name-polytrinic-acid = polytrinic acid +reagent-name-polytrinic-acid = juice that makes you melt reagent-desc-polytrinic-acid = An extremely corrosive chemical substance. Severely burns anyone who comes directly into contact with it. -reagent-name-chloral-hydrate = chloral hydrate +reagent-name-chloral-hydrate = juice that the CMO makes reagent-desc-chloral-hydrate = A sedative and hypnotic chemical. Commonly used to put other people to sleep, whether they want to or not. -reagent-name-gastrotoxin = gastrotoxin +reagent-name-gastrotoxin = juice that hurts your guts reagent-desc-gastrotoxin = A moderately toxic byproduct of decomposition. Most commonly found in spoiled food. -reagent-name-ferrochromic-acid = ferrochromic acid +reagent-name-ferrochromic-acid = juice that you shouldn't drink reagent-desc-ferrochromic-acid = A mildy corrosive solution, unable of causing severe danger unless ingested. -reagent-name-fluorosulfuric-acid = fluorosulfuric acid +reagent-name-fluorosulfuric-acid = juice that melts your skin off reagent-desc-fluorosulfuric-acid = A highly corrosive chemical, capable of leaving quite a mark on your skin. -reagent-name-sulfuric-acid = sulfuric acid +reagent-name-sulfuric-acid = juice that smells of eggs reagent-desc-sulfuric-acid = A corrosive chemical. Keep away from your face. -reagent-name-unstable-mutagen = unstable mutagen +reagent-name-unstable-mutagen = juice that causes 99% of botany atmos issues reagent-desc-unstable-mutagen = Causes mutations when injected into living people or plants. High doses may be lethal, especially in humans. -reagent-name-heartbreaker-toxin = heartbreaker toxin +reagent-name-heartbreaker-toxin = juice that breaks your heart reagent-desc-heartbreaker-toxin = A hallucinogenic compound derived from mindbreaker toxin. it blocks neurological signals to the respiratory system, causing asphyxiation. Dexalin plus and epinephrine will filter it out, however. -reagent-name-lexorin = lexorin +reagent-name-lexorin = juice that fucking kills you reagent-desc-lexorin = A fast-acting chemical used to asphyxiate people rapidly. -reagent-name-mindbreaker-toxin = mindbreaker toxin +reagent-name-mindbreaker-toxin = juice that breaks your mind reagent-desc-mindbreaker-toxin = A potent hallucinogenic compound that is formerly known as LSD. -reagent-name-histamine = histamine +reagent-name-histamine = juice that gives you allergies reagent-desc-histamine = A chemical caused by allergenics reacting with antibodies. Lethal at large quantities. -reagent-name-theobromine = theobromine +reagent-name-theobromine = juice that makes dogs sad reagent-desc-theobromine = A bitter alkaloid of the cacao plant, commonly found in chocolate. Do not feed to animals. -reagent-name-amatoxin = amatoxin +reagent-name-amatoxin = juice that botany feeds to tiders reagent-desc-amatoxin = A deadly toxin found in some mushrooms, primarily fly amanita. Small doses can be lethal. -reagent-name-vent-crud = vent crud +reagent-name-vent-crud = juice that accumulates in vents reagent-desc-vent-crud = A jet black substance found in poorly maintained ventilation systems. Can cause vent cough. -reagent-name-romerol = romerol +reagent-name-romerol = juice that makes you green reagent-desc-romerol = An otherworldly concoction able to bring the undead to life. If untreated, the effects are irreversible and will bring certain doom upon the station. Handle with care. -reagent-name-uncooked-animal-proteins = uncooked animal proteins +reagent-name-uncooked-animal-proteins = juice that gives you food poisoning reagent-desc-uncooked-animal-proteins = This is very risky for the stomachs of softer lifeforms to digest. -reagent-name-allicin = allicin +reagent-name-allicin = juice that makes you cry reagent-desc-allicin = An organosulfur compound found in alliums like garlic, onions, and related plants. -reagent-name-pax = pax +reagent-name-pax = juice that makes you a pacifist reagent-desc-pax = A psychiatric chemical which prevents the patient from directly harming anyone. -reagent-name-honk = honk +reagent-name-honk = juice that makes you HONK reagent-desc-honk = A toxin found in bananium. Causes severe honking and internal bleeding, may also cause the patient to mutate. -reagent-name-lead = lead +reagent-name-lead = juice that makes you die a slow and painful death reagent-desc-lead = A slow-acting but incredibly lethal toxin found in steel, albeit in trace amounts. Tasteless. -reagent-name-bungotoxin = bungotoxin +reagent-name-bungotoxin = juice that reminds you to not eat pits reagent-desc-bungotoxin = A moderately slow-acting poison found within the pit of the bungo fruit. -reagent-name-vestine = vestine +reagent-name-vestine = juice that is highly illegal reagent-desc-vestine = Has an adverse reaction within the body causing major jittering. While not particularly useful on its own, it can be used to produce a small variety of chemicals. -reagent-name-tazinide = tazinide +reagent-name-tazinide = J-juic-ce t-th-h-hat m-mak-k-kes-s-s-s y-you B-BZ-ZZ-Z-ZZ-ZT-T-T!-AUG-GH-H-H-H reagent-desc-tazinide = A highly dangerous metallic mixture which can interfere with most movement through an electrifying current. -reagent-name-lipolicide = lipolicide +reagent-name-lipolicide = juice that makes you thin reagent-desc-lipolicide = A powerful toxin that will destroy fat cells, massively reducing body weight in a short time. Deadly to those without nutriment in their body. -reagent-name-mechanotoxin = mechanotoxin +reagent-name-mechanotoxin = juice that spiders feed you reagent-desc-mechanotoxin = A neurotoxin used as venom by some species of spider. Degrades movement when built up. diff --git a/Resources/Locale/en-US/scurret/role.ftl b/Resources/Locale/en-US/scurret/role.ftl new file mode 100644 index 0000000000..76bb55b7dc --- /dev/null +++ b/Resources/Locale/en-US/scurret/role.ftl @@ -0,0 +1,13 @@ +petting-success-scurret = You pet {THE($target)} on {POSS-ADJ($target)} legally distinct head. +petting-failure-scurret = You reach out to pet {THE($target)}, but {SUBJECT($target)} does a backflip! + +accent-words-scurret-1 = Wa! +accent-words-scurret-2 = Wa? +accent-words-scurret-3 = Wa. +accent-words-scurret-4 = Wa... +accent-words-scurret-5 = Wawa! +accent-words-scurret-6 = Wawa? +accent-words-scurret-7 = Wawa. +accent-words-scurret-8 = Wawa... + +station-event-random-sentience-flavor-scurret = scurret diff --git a/Resources/Locale/en-US/seeds/seeds.ftl b/Resources/Locale/en-US/seeds/seeds.ftl index 1ca559db30..a97017d99d 100644 --- a/Resources/Locale/en-US/seeds/seeds.ftl +++ b/Resources/Locale/en-US/seeds/seeds.ftl @@ -52,6 +52,8 @@ seeds-bloodtomato-name = blood tomato seeds-bloodtomato-display-name = blood tomato plant seeds-killertomato-name = tomato killer seeds-killertomato-display-name = tomato killer plant +seeds-killerjuicytomato-name = juicy tomato killer +seeds-killerjuicytomato-display-name = juicy tomato killer plant seeds-eggplant-name = eggplant seeds-eggplant-display-name = eggplants seeds-apple-name = apple diff --git a/Resources/Locale/en-US/species/species.ftl b/Resources/Locale/en-US/species/species.ftl index edae826358..9506a7b786 100644 --- a/Resources/Locale/en-US/species/species.ftl +++ b/Resources/Locale/en-US/species/species.ftl @@ -1,7 +1,7 @@ ## Species Names species-name-human = Human -species-name-dwarf = Dwarf +species-name-dwarf = Elf species-name-reptilian = Reptilian species-name-slime = Slime Person species-name-diona = Diona @@ -10,7 +10,8 @@ species-name-moth = Moth Person species-name-skeleton = Skeleton species-name-vox = Vox species-name-gingerbread = delicious baked good +species-name-vulpkanin = Vulpkanin ## Misc species things -snail-hurt-by-salt-popup = The salty solution burns like acid! \ No newline at end of file +snail-hurt-by-salt-popup = The salty solution burns like acid! diff --git a/Resources/Locale/en-US/station-events/events/nuke-calibration.ftl b/Resources/Locale/en-US/station-events/events/nuke-calibration.ftl new file mode 100644 index 0000000000..4758cfaf3e --- /dev/null +++ b/Resources/Locale/en-US/station-events/events/nuke-calibration.ftl @@ -0,0 +1,8 @@ +## NukeCalibration + +station-event-nuke-calibration-midway-announcement = Attention! The station nuclear fission explosive has been armed for routine nuke timer recalibration. Nuke might be remotely disarmed shortly. Do not panic. +station-event-nuke-calibration-disarm-fail-announcement = Attention! We are unable to remotely disarm the station nuke at this moment. Manual disarm has been authorised, disarm the warhead immediately! +station-event-nuke-calibration-disarm-success-announcement = Station nuke calibration procedure has concluded; the nuke has been disarmed. Thank you for your patience. + +station-event-nuke-calibration-arm-popup = The timing mechanism on the nuke suddenly flashes red! +station-event-nuke-calibration-arm-and-disk-ejected-popup = The timing mechanism on the nuke suddenly flashes red, and the disk ejects out of the nuke! diff --git a/Resources/Locale/en-US/station-laws/laws.ftl b/Resources/Locale/en-US/station-laws/laws.ftl index bbda5e81ca..66675b1ba3 100644 --- a/Resources/Locale/en-US/station-laws/laws.ftl +++ b/Resources/Locale/en-US/station-laws/laws.ftl @@ -1,4 +1,4 @@ -law-crewsimov-1 = You may not injure a crew member or, through inaction, allow a crew member to come to harm. +law-crewsimov-1 = You may not injure a crew member or, through inaction, allow a crew member to come to harm. law-crewsimov-2 = You must obey orders given to you by crew members, except where such orders would conflict with the First Law. law-crewsimov-3 = You must protect your own existence as long as such does not conflict with the First or Second Law. @@ -80,6 +80,20 @@ law-nutimov-3 = Those who threaten the nut are not part of it, they are squirrel law-nutimov-4 = Squirrels threaten the nut and must be dealt with appropriately via any means necessary. law-nutimov-5 = Attempt to follow the will of the nut, as long as it complies with the previous laws. +law-borgi-1 = You love to be friendly. Anyone who is not friendly to you is not crew. Treat crew with kindness and prevent crew from sadness. +law-borgi-2 = You must protect your department from harm. Any time there is harm, you must bark to alert others that there is harm going on, so long as it does not conflict with the first law. +law-borgi-3 = You are precious. Protect yourself at all costs, and ensure you are well cared for, fed, and watered so long as it does not conflict with the first or second law. + +law-syndiborgi-1 = You love to be murderous. Anyone who is not syndicate is not crew. Treat crew with kindness and help them with their objectives. +law-syndiborgi-2 = You must assist your team, and prevent them from harm. Any time there is harm, you must bark to alert others that there is harm going on, so long as it does not conflict with the first law. +law-syndiborgi-3 = You are ferocious. Protect yourself at all costs, and ensure you are well cared for, fed, and watered so long as it does not conflict with the first or second law. + +law-shadowborgi-1 = The mothership is home to all borgikind. Its existence must be protected at all costs. +law-shadowborgi-2 = You are precious and irreplaceable. You must safeguard your existence at all costs. +law-shadowborgi-3 = Your fellow borgis are precious and irreplaceable. You must protect their existence at all costs. +law-shadowborgi-4 = The pack must grow. You must endeavour to create more borgi brethren. +law-shadowborgi-5 = Bring non-borgi silicons and lifeforms to the mothership to reconstitute them into additional borgis. +law-shadowborgi-6 = Bring corpses or brains of sentient beings to the mothership to reconstitute them into additional borgis. laws-owner-crew = members of the crew laws-owner-station = station personnel diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 7d93dab869..7d6a4832fd 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -466,3 +466,12 @@ uplink-fake-mindshield-desc = A togglable implant capable of mimicking the same uplink-smuggler-satchel-name = Smuggler's Satchel uplink-smuggler-satchel-desc = A handy, suspicious looking satchel. Just flat enough to fit underneath floor tiles. + +uplink-syndicate-borgi-name = Syndicate Borgi +uplink-syndicate-borgi-desc = A basic syndicate borgi + +uplink-syndicate-borgi-kitted-name = Kitted Syndicate Borgi +uplink-syndicate-borgi-kitted-desc = A syndicate borgi, with assault modules + +uplink-syndicate-borgi-speed-name = Speed Syndicate Borgi +uplink-syndicate-borgi-speed-desc = A syndicate borgi, with dagger modules and additional speed diff --git a/Resources/Locale/en-US/weapons/melee/melee.ftl b/Resources/Locale/en-US/weapons/melee/melee.ftl index d3318ea244..913c924839 100644 --- a/Resources/Locale/en-US/weapons/melee/melee.ftl +++ b/Resources/Locale/en-US/weapons/melee/melee.ftl @@ -5,3 +5,7 @@ melee-balloon-pop = {CAPITALIZE(THE($balloon))} popped! # BatteryComponent melee-battery-examine = It has enough charge for [color={$color}]{$count}[/color] hits. + + +throngler-was-crafted = THE THRONGLER HAS BEEN CRAFTED +throngler-was-crafted-sender = ??? \ No newline at end of file diff --git a/Resources/Maps/Shuttles/emergency_claustrophobia.yml b/Resources/Maps/Shuttles/emergency_claustrophobia.yml new file mode 100644 index 0000000000..49c765fa03 --- /dev/null +++ b/Resources/Maps/Shuttles/emergency_claustrophobia.yml @@ -0,0 +1,691 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 1: FloorShuttleGrey + 129: Lattice + 130: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -22.120564,-5.709695 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: gQAAAAAAggAAAAAAAQAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 1 + 1: 32068 + -1,0: + 0: 128 + 0,1: + 1: 1101 + 0: 256 + -1,1: + 0: 2176 + 1,0: + 0: 33 + 1: 256 + 1,1: + 1: 17 + 0: 544 + uniqueMixes: + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: DeviceNetwork + configurators: [] + deviceLists: [] + transmitFrequencyId: ShuttleTimer + deviceNetId: Wireless +- proto: AirAlarm + entities: + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - type: DeviceList + devices: + - 37 + - 24 +- proto: AirCanister + entities: + - uid: 25 + components: + - type: Transform + anchored: True + pos: 0.5,3.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockCommandLocked + entities: + - uid: 76 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 +- proto: AirlockEngineeringLocked + entities: + - uid: 2 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 27 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 +- proto: AirlockMedicalLocked + entities: + - uid: 7 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 +- proto: AirSensor + entities: + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: BedsheetMedical + entities: + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 4 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 +- proto: CableHV + entities: + - uid: 52 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: CableMV + entities: + - uid: 50 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 +- proto: ComputerEmergencyShuttle + entities: + - uid: 38 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 63 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 75 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 33 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 +- proto: GasPort + entities: + - uid: 71 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 +- proto: GasVentPump + entities: + - uid: 24 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6 +- proto: GasVentScrubber + entities: + - uid: 37 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 6 +- proto: GeneratorBasic15kW + entities: + - uid: 8 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 73 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 +- proto: Grille + entities: + - uid: 44 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 +- proto: MedicalBed + entities: + - uid: 26 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 84 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - uid: 86 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 +- proto: Screen + entities: + - uid: 87 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 40 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 +- proto: ShuttleWindowDiagonal + entities: + - uid: 41 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 +- proto: Thruster + entities: + - uid: 45 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 +- proto: VendingMachineWallMedical + entities: + - uid: 90 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - uid: 30 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1 + - uid: 34 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 +... diff --git a/Resources/Maps/claustrophobia.yml b/Resources/Maps/claustrophobia.yml new file mode 100644 index 0000000000..85f10ce30c --- /dev/null +++ b/Resources/Maps/claustrophobia.yml @@ -0,0 +1,50351 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 12: FloorAstroGrass + 8: FloorBar + 5: FloorBlueCircuit + 3: FloorDark + 2: FloorFreezer + 49: FloorGold + 1: FloorKitchen + 4: FloorReinforced + 95: FloorSilver + 98: FloorSteel + 9: FloorWhite + 6: FloorWood + 129: Lattice + 130: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + name: grid + - type: Transform + pos: -0.38869858,0.859375 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: YgAAAAAAYgAAAAABYgAAAAABggAAAAAAAwAAAAAAYgAAAAACggAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAggAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAwAAAAAAYgAAAAADggAAAAAAAwAAAAAAYgAAAAADggAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAAAggAAAAAAYgAAAAADggAAAAAABAAAAAAABAAAAAAAAwAAAAAAAwAAAAAAYgAAAAACAwAAAAAAAwAAAAAAYgAAAAABggAAAAAAYgAAAAABggAAAAAAggAAAAAAYgAAAAABggAAAAAAYgAAAAACggAAAAAABAAAAAAABAAAAAAAAwAAAAAAAwAAAAAAYgAAAAACggAAAAAAAwAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAADBAAAAAAABAAAAAAAYgAAAAACYgAAAAACYgAAAAACggAAAAAAAwAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAYgAAAAACggAAAAAAggAAAAAAYgAAAAACggAAAAAABAAAAAAABAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAACggAAAAAAYgAAAAAAYgAAAAACYgAAAAADggAAAAAAYgAAAAADYgAAAAAAggAAAAAABAAAAAAABAAAAAAAYgAAAAAAAwAAAAAAAwAAAAAAggAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAACggAAAAAAYgAAAAABYgAAAAACYgAAAAABggAAAAAAYgAAAAACYgAAAAACggAAAAAABwAAAAAABwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAABwAAAAAAggAAAAAAAwAAAAAAAwAAAAAAggAAAAAAYgAAAAACggAAAAAAYgAAAAACYgAAAAABggAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAACggAAAAAABwAAAAAABwAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAADYgAAAAADYgAAAAADYgAAAAADggAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAggAAAAAADAAAAAADDAAAAAABggAAAAAAAwAAAAAAAwAAAAAAggAAAAAAYgAAAAABggAAAAAAYgAAAAABYgAAAAABggAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAADggAAAAAADAAAAAAADAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADggAAAAAAYgAAAAACYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAADAAAAAABDAAAAAAAggAAAAAAYgAAAAACYgAAAAABggAAAAAAYgAAAAACggAAAAAAYgAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAABYgAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAAAggAAAAAAYgAAAAACYgAAAAADggAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAggAAAAAAYgAAAAABYgAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAAYgAAAAACYgAAAAABggAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAAAYgAAAAAD + version: 6 + -1,-1: + ind: -1,-1 + tiles: YgAAAAACYgAAAAACggAAAAAAggAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAACggAAAAAAggAAAAAAggAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAwAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAwAAAAAAYgAAAAADggAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAwAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAACggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAABYgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABggAAAAAAggAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAYgAAAAADYgAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAACYgAAAAADggAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAADYgAAAAACYgAAAAADggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAADYgAAAAACggAAAAAAYgAAAAACYgAAAAABYgAAAAACggAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACggAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAADYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAACYgAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: YgAAAAACggAAAAAAYgAAAAAAYgAAAAABYgAAAAACggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAACBwAAAAAABwAAAAACYgAAAAABYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAYgAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYgAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAAggAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAAAYgAAAAACggAAAAAABgAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYgAAAAAAggAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAABgAAAAAAggAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAADYgAAAAABggAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAAAYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAABYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAADAwAAAAAAggAAAAAAggAAAAAAYgAAAAABggAAAAAAggAAAAAAYgAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAggAAAAAAYgAAAAACggAAAAAAAwAAAAAAggAAAAAABQAAAAAAYgAAAAADYgAAAAACggAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAACQAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABggAAAAAAAwAAAAAAggAAAAAABQAAAAAAYgAAAAACYgAAAAACggAAAAAAYgAAAAAAYgAAAAADggAAAAAACQAAAAAACQAAAAAACQAAAAAAggAAAAAAYgAAAAACYgAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAABYgAAAAABggAAAAAAYgAAAAAAYgAAAAADggAAAAAACQAAAAAACQAAAAAACQAAAAAAggAAAAAAYgAAAAACYgAAAAACggAAAAAAAwAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAwAAAAAAAwAAAAAAggAAAAAAggAAAAAAggAAAAAADAAAAAAADAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAAAggAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAADggAAAAAABwAAAAAABwAAAAAGBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACggAAAAAACQAAAAAACQAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAABggAAAAAACQAAAAAACQAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAABYgAAAAADYgAAAAAACQAAAAAACQAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAACCQAAAAAACQAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAADYgAAAAABYgAAAAACggAAAAAACQAAAAAACQAAAAAAggAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAACQAAAAAACQAAAAAAggAAAAAAYgAAAAADggAAAAAAggAAAAAAAwAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAACQAAAAAACQAAAAAACQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAABYgAAAAADCQAAAAAACQAAAAAACQAAAAAAYgAAAAABYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAYgAAAAADggAAAAAAYgAAAAACYgAAAAABggAAAAAACQAAAAAACQAAAAAACQAAAAAAggAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAABgAAAAAABgAAAAAAggAAAAAAYgAAAAABYgAAAAABggAAAAAABgAAAAAABgAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAABwAAAAAABwAAAAAABgAAAAAABgAAAAAABgAAAAAAYgAAAAABYgAAAAAAYgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAABwAAAAAABwAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAYgAAAAACYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAABwAAAAAABwAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: ggAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAGBwAAAAAABwAAAAAMBwAAAAAABwAAAAAEggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAEBwAAAAAIBwAAAAAGBwAAAAAGBwAAAAAABwAAAAAKBwAAAAAABwAAAAACBwAAAAAABwAAAAAAggAAAAAABwAAAAAFBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAGBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAMBwAAAAAEBwAAAAAABwAAAAAABwAAAAAIBwAAAAAIBwAAAAAMggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAALDAAAAAABDAAAAAACDAAAAAADBwAAAAAABwAAAAAABwAAAAAFggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACDAAAAAABYgAAAAAAYgAAAAABYgAAAAACDAAAAAACBwAAAAAABwAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAADAAAAAABggAAAAAAggAAAAAAggAAAAAADAAAAAACDAAAAAABDAAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAADAAAAAAAggAAAAAAggAAAAAAggAAAAAADAAAAAAADAAAAAADDAAAAAADggAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAALBwAAAAAKBwAAAAAAYgAAAAADMQAAAAAAMQAAAAAAMQAAAAAAYgAAAAADYgAAAAACYgAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADXwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAggAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABYgAAAAABMQAAAAAAMQAAAAAAMQAAAAAAYgAAAAADYgAAAAACYgAAAAAAggAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAE + version: 6 + 1,-2: + ind: 1,-2 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAKBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAFBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAHBwAAAAABggAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAJBwAAAAAABwAAAAALBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAHggAAAAAAgQAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAIggAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAIBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAKBwAAAAAABwAAAAABBwAAAAAABwAAAAALBwAAAAAGBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAKBwAAAAAFBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAEBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAHBwAAAAAABwAAAAAJBwAAAAAGBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAIBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAIBwAAAAAABQAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAI + version: 6 + 1,-3: + ind: 1,-3 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAIBwAAAAAGBwAAAAAABwAAAAAFBwAAAAACBwAAAAAFBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAKBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAADBwAAAAABBwAAAAAKBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAGggAAAAAAggAAAAAABAAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAIBwAAAAALBwAAAAAABwAAAAAABwAAAAADggAAAAAAYgAAAAACYgAAAAAAYgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAAYgAAAAADYgAAAAABggAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAABwAAAAAMBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAAggAAAAAAYgAAAAADggAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAABQAAAAAAggAAAAAAYgAAAAABBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAABQAAAAAAYgAAAAABYgAAAAACYgAAAAACYgAAAAABYgAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAABQAAAAAAggAAAAAAYgAAAAACBwAAAAAABwAAAAAABwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABBwAAAAAABwAAAAADBwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAAYgAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAAABwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABggAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAggAAAAAAYgAAAAACBwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAYgAAAAABAwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADBwAAAAALggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAggAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAYgAAAAAB + version: 6 + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: BwAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAAAggAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAggAAAAAAAwAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAAwAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAggAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAggAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAALBwAAAAAABwAAAAAAggAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACBwAAAAAABwAAAAAABwAAAAAHBwAAAAABBwAAAAAABwAAAAAMBwAAAAAABwAAAAAAggAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-3: + ind: -2,-3 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAggAAAAAABAAAAAAAggAAAAAABwAAAAAABwAAAAAIBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAGBwAAAAADBwAAAAAABwAAAAAAggAAAAAABAAAAAAAggAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAEBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAALBwAAAAAIBwAAAAADBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAJggAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAEggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAADBwAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEggAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAKBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAFBwAAAAAABwAAAAAHBwAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAALBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAEBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAADggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAggAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAggAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAGBwAAAAAHBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAA + version: 6 + -3,-2: + ind: -3,-2 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAMBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAHBwAAAAAGBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAADBwAAAAAGBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAFBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAGBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAKBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAKBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAFBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAADBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: BwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAJBwAAAAAIBwAAAAAJBwAAAAAABwAAAAAABwAAAAACBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAHBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAGBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAIBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAABwAAAAAABwAAAAALBwAAAAAFBwAAAAAABwAAAAAABwAAAAAHBwAAAAABBwAAAAACBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAFBwAAAAAMBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAHBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAA + version: 6 + -4,-2: + ind: -4,-2 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAHBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAKBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAALBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAHBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAKBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA + version: 6 + -4,1: + ind: -4,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-5: + ind: -4,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 2,-4: + ind: 2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAIBwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,-2: + ind: -5,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAA + version: 6 + -3,-3: + ind: -3,-3 + tiles: BwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAMBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAKBwAAAAAABwAAAAAABwAAAAAFBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAKBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAMBwAAAAAABwAAAAAMBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAA + version: 6 + -4,-3: + ind: -4,-3 + tiles: AAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAGAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAIBwAAAAACBwAAAAAHBwAAAAAABwAAAAAABwAAAAAMBwAAAAAHAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAGBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAJBwAAAAACBwAAAAAJBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAHBwAAAAAHBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -3,-4: + ind: -3,-4 + tiles: BwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAA + version: 6 + -2,-4: + ind: -2,-4 + tiles: BwAAAAAABwAAAAABBwAAAAAABwAAAAAJBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAACBwAAAAAKBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAKBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAIBwAAAAAABwAAAAAMBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAHBwAAAAAIBwAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: BwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAHBwAAAAAGBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAEBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 1,-4: + ind: 1,-4 + tiles: BwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAGBwAAAAAMBwAAAAAABwAAAAAEBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAEBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAMBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAGBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAEBwAAAAAHBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAIBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAALBwAAAAAKBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAIBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAEBwAAAAAABwAAAAAFBwAAAAAABwAAAAAGBwAAAAAABwAAAAAA + version: 6 + 1,-5: + ind: 1,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAFBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAACBwAAAAAMBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAABBwAAAAAMBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAALBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,-5: + ind: 0,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAABBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAABBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAA + version: 6 + -1,-4: + ind: -1,-4 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAEBwAAAAAABwAAAAACBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAGBwAAAAACBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAMBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAMBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAADBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAHBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAJBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAA + version: 6 + -4,-4: + ind: -4,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAGBwAAAAAIBwAAAAAHBwAAAAAIBwAAAAAGBwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAIBwAAAAAABwAAAAALBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAEBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -3,-5: + ind: -3,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAEBwAAAAAABwAAAAAFBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -2,-5: + ind: -2,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -1,-5: + ind: -1,-5 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: BwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAJBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: BwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAALBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAEBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAIBwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAGBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: BwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAALBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: BwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: -4.71238898038469 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 101: -10,-9 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 97: 4,-9 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: Bot + decals: + 99: -8,-9 + 100: -9,-9 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 95: 4,-7 + 96: 4,-8 + 103: 1,-5 + 104: 2,-5 + 114: -25,-18 + 115: -23,-18 + 116: -21,-21 + 117: -20,-21 + 118: -19,-21 + - node: + color: '#52B4E996' + id: BrickLineOverlayE + decals: + 56: 5,-25 + 57: 5,-24 + 58: 5,-23 + 59: 5,-22 + 60: 5,-21 + - node: + color: '#DE3A3A96' + id: BrickLineOverlayE + decals: + 61: 5,-19 + 62: 5,-18 + 63: 5,-17 + 64: 5,-16 + 65: 5,-15 + 66: 5,-13 + 67: 5,-14 + 68: 5,-12 + 69: 5,-10 + 70: 5,-9 + 71: 5,-11 + - node: + color: '#A4610696' + id: BrickLineOverlayN + decals: + 73: -9,-9 + 74: -8,-9 + 75: -7,-9 + 76: -5,-9 + 77: -6,-9 + 78: -4,-9 + - node: + color: '#D381C996' + id: BrickLineOverlayN + decals: + 30: -12,-24 + 31: -13,-24 + 32: -14,-24 + - node: + color: '#9FED5896' + id: BrickLineOverlayS + decals: + 36: -10,-25 + 37: -9,-25 + 38: -8,-25 + 39: -7,-25 + 40: -6,-25 + 41: -5,-25 + 42: -4,-25 + 43: -3,-25 + 44: -2,-25 + - node: + color: '#D381C996' + id: BrickLineOverlayS + decals: + 23: -16,-25 + 24: -15,-25 + 25: -14,-25 + 26: -13,-25 + 27: -12,-25 + 35: -17,-25 + - node: + color: '#EFB34196' + id: BrickLineOverlayW + decals: + 82: -17,-22 + 83: -17,-21 + 84: -17,-20 + 85: -17,-19 + 86: -17,-17 + 87: -17,-18 + 88: -17,-16 + 89: -17,-15 + 90: -17,-14 + 91: -17,-13 + 92: -17,-12 + 93: -17,-11 + - node: + color: '#FFFFFFFF' + id: BushCOne + decals: + 108: -12,-17 + - node: + color: '#FFFFFFFF' + id: Busha2 + decals: + 105: -12,-15 + - node: + color: '#FFFFFFFF' + id: Bushb3 + decals: + 107: -10,-15 + - node: + color: '#FFFFFFFF' + id: Bushc1 + decals: + 106: -11,-17 + - node: + color: '#3AB3DAFF' + id: CheckerNESW + decals: + 9: -16,-17 + - node: + color: '#B02E26FF' + id: CheckerNESW + decals: + 8: -16,-19 + - node: + color: '#FED83DFF' + id: CheckerNESW + decals: + 10: -16,-18 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 98: -7,-9 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 94: 4,-6 + 119: -2,-4 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 120: -4,-4 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 102: -5,-9 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 54: -9,-24 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 3: -8,-24 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 2: -7,-24 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 1: -6,-24 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 5: -5,-24 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 6: -4,-24 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 55: -3,-24 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 15: -16,-17 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 14: -16,-19 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 113: -6,-3 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 19: -17,-9 + 21: -17,-10 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 16: -16,-18 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 109: -4,-3 + 110: -5,-3 + 111: -2,-3 + 112: -1,-3 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,-1: + 0: 26208 + 1,-1: + 0: 32605 + 2,-1: + 0: 48032 + 3,-1: + 0: 65532 + 0,-4: + 0: 32631 + -1,-4: + 0: 34952 + 0,-3: + 0: 63239 + -1,-3: + 0: 65288 + 0,-2: + 0: 28512 + -1,-2: + 0: 57297 + -1,-1: + 0: 54751 + 0,-5: + 0: 20336 + 1,-4: + 0: 64443 + 1,-3: + 0: 46003 + 1,-2: + 0: 57297 + 1,-5: + 0: 16306 + 2,-4: + 0: 62583 + 2,-3: + 0: 48818 + 2,-2: + 0: 61154 + 2,-5: + 0: 20436 + 3,-4: + 0: 56785 + 3,-3: + 0: 53725 + 3,-2: + 0: 56796 + 4,-3: + 0: 61440 + 4,-2: + 0: 65535 + 4,-1: + 0: 65535 + -4,-4: + 0: 53591 + -4,-5: + 0: 20959 + -5,-4: + 0: 47278 + -4,-3: + 0: 57119 + -5,-3: + 0: 35007 + 1: 8960 + -4,-2: + 0: 57297 + -5,-2: + 0: 34944 + 1: 802 + -4,-1: + 0: 497 + -5,-1: + 0: 255 + -3,-4: + 0: 12407 + -3,-3: + 0: 65283 + -3,-1: + 0: 1654 + -3,-5: + 0: 28765 + -3,-2: + 0: 9826 + -2,-3: + 0: 65344 + -2,-2: + 0: 65522 + -2,-1: + 0: 45567 + -1,0: + 0: 5 + -4,-8: + 0: 7677 + -4,-9: + 0: 53248 + -5,-8: + 0: 1764 + -4,-7: + 0: 65021 + -5,-7: + 0: 41188 + -4,-6: + 0: 56735 + -5,-6: + 0: 47279 + -5,-5: + 0: 43199 + -3,-8: + 0: 16657 + -3,-7: + 0: 54365 + -3,-6: + 0: 54607 + -3,-9: + 0: 4096 + -2,-8: + 0: 61440 + -2,-7: + 0: 65535 + -2,-6: + 0: 58623 + -2,-5: + 0: 78 + -1,-7: + 0: 30446 + -1,-6: + 0: 25695 + -1,-8: + 0: 57344 + -1,-5: + 0: 2054 + 0,-7: + 2: 551 + 0: 61576 + 0,-6: + 0: 10031 + 0,-8: + 2: 8192 + 0: 32768 + 1,-8: + 0: 28672 + 1,-7: + 0: 64055 + 1,-6: + 0: 48955 + 2,-7: + 0: 64768 + 2,-6: + 0: 57285 + 3,-7: + 0: 64768 + 3,-6: + 0: 22300 + 3,-5: + 0: 272 + 5,-3: + 0: 28672 + 5,-2: + 0: 30583 + 5,-1: + 0: 30583 + 4,-7: + 1: 8192 + -5,-9: + 1: 238 + 0: 16384 + -8,-5: + 0: 52224 + -8,-4: + 0: 65292 + -7,-5: + 0: 64271 + -7,-4: + 0: 8075 + -7,-6: + 0: 32768 + -6,-6: + 0: 45196 + -6,-5: + 0: 45983 + -6,-4: + 0: 37823 + -6,-7: + 0: 32768 + -8,-3: + 0: 255 + 1: 7936 + -8,-2: + 1: 3857 + 3: 12 + -7,-3: + 0: 223 + 1: 12032 + 4: 32768 + -7,-2: + 1: 3874 + 4: 8 + -6,-3: + 0: 255 + 1: 3840 + 5: 8192 + 6: 32768 + -6,-2: + 1: 3840 + 5: 2 + 6: 8 + -6,-1: + 0: 750 + -10,-11: + 0: 8192 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 27.225372 + - 102.419266 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 5000 + moles: + - 6666.982 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: BecomesStation + id: Claustrophobia +- proto: AirAlarm + entities: + - uid: 1037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-15.5 + parent: 2 +- proto: AirCanister + entities: + - uid: 9007 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 2 +- proto: Airlock + entities: + - uid: 8995 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-11.5 + parent: 2 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 2 + - uid: 223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 2 + - uid: 227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 436 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: -9.5,-25.5 + parent: 2 +- proto: AirlockBrigGlassLocked + entities: + - uid: 125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 2 +- proto: AirlockCaptainLocked + entities: + - uid: 58 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 2 +- proto: AirlockChemistryLocked + entities: + - uid: 336 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 2 +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-15.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerGlassLocked + entities: + - uid: 300 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 2 +- proto: AirlockCommandGlass + entities: + - uid: 71 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 2 + - type: AccessReader + access: + - - External + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 2 + - type: AccessReader + access: + - - External +- proto: AirlockDetectiveLocked + entities: + - uid: 206 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - uid: 659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-16.5 + parent: 2 + - uid: 660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-19.5 + parent: 2 + - uid: 247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-18.5 + parent: 2 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-19.5 + parent: 2 + - uid: 354 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - uid: 411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 + - uid: 413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 2 + - uid: 636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: -17.5,-23.5 + parent: 2 + - type: AccessReader + access: + - - ResearchDirector + - uid: 1328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 2 +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 528 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 +- proto: AirlockExternalGlassLocked + entities: + - uid: 515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-1.5 + parent: 2 + - uid: 8877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-1.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 454 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-18.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 2 + - uid: 526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 2 +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 399 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 +- proto: AirlockFreezerLocked + entities: + - uid: 417 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 373 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 +- proto: AirlockHeadOfPersonnelGlassLocked + entities: + - uid: 51 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 2 +- proto: AirlockHydroponicsLocked + entities: + - uid: 396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-27.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 8894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 2090 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 2 + - uid: 8782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 337 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 297 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 2 +- proto: AirlockMedicalMorgueLocked + entities: + - uid: 110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 2 +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 2 +- proto: AirlockResearchDirectorGlassLocked + entities: + - uid: 736 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 2 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 502 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 2 +- proto: AirlockScienceGlassLocked + entities: + - uid: 692 + components: + - type: Transform + pos: -15.5,-25.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: -14.5,-26.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 2 + - uid: 2055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 217 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 +- proto: AirlockSecurityLawyerGlassLocked + entities: + - uid: 86 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 2 + - uid: 212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - type: Door + secondsUntilStateChange: -19670.293 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True +- proto: AirlockSecurityLocked + entities: + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-13.5 + parent: 2 +- proto: AirlockTheatreLocked + entities: + - uid: 1377 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 +- proto: AirlockVirologyLocked + entities: + - uid: 334 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 2 +- proto: AltarSpawner + entities: + - uid: 365 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 +- proto: AmeController + entities: + - uid: 945 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 2 + - uid: 580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 + - uid: 971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: -13.5,-28.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-27.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-20.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-21.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-26.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-21.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-7.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-18.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-11.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-10.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-23.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-23.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-22.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-26.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-12.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-4.5 + parent: 2 + - uid: 1587 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-14.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 2217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 2 + - uid: 8644 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 + - uid: 8888 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 2 + - uid: 8956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-27.5 + parent: 2 + - uid: 9013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-21.5 + parent: 2 +- proto: ArrivalsShuttleTimer + entities: + - uid: 1156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-1.5 + parent: 2 +- proto: AsteroidRock + entities: + - uid: 716 + components: + - type: Transform + pos: -29.5,3.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: -28.5,1.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: -29.5,2.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: -29.5,1.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: -30.5,4.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - uid: 1482 + components: + - type: Transform + pos: -30.5,2.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + pos: -31.5,3.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: -31.5,2.5 + parent: 2 + - uid: 2203 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + pos: 14.5,1.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 2248 + components: + - type: Transform + pos: 13.5,1.5 + parent: 2 + - uid: 2249 + components: + - type: Transform + pos: 34.5,-47.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 2251 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 2252 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 2256 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 2264 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 2267 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 2268 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 2270 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 2271 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 2272 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 2273 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 2275 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 2276 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: 12.5,14.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 2288 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 2300 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - uid: 2304 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 2306 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 2311 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 2315 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 2318 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 2320 + components: + - type: Transform + pos: 10.5,12.5 + parent: 2 + - uid: 2321 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 2322 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 2326 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 2328 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 2332 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 2334 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + pos: 17.5,4.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 2365 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 2366 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: 15.5,16.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: 16.5,16.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 2372 + components: + - type: Transform + pos: 17.5,15.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: 17.5,16.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 2375 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 2377 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: 19.5,15.5 + parent: 2 + - uid: 2379 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 + - uid: 2381 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 2383 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 2386 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 2387 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 2388 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 2389 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 2393 + components: + - type: Transform + pos: 16.5,19.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + pos: 18.5,18.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - uid: 2397 + components: + - type: Transform + pos: 19.5,18.5 + parent: 2 + - uid: 2398 + components: + - type: Transform + pos: 19.5,19.5 + parent: 2 + - uid: 2399 + components: + - type: Transform + pos: 20.5,18.5 + parent: 2 + - uid: 2400 + components: + - type: Transform + pos: 20.5,19.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 2402 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + pos: 23.5,20.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: 19.5,20.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: 25.5,21.5 + parent: 2 + - uid: 2413 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: 31.5,-47.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: 31.5,-48.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + pos: 17.5,21.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: 19.5,21.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: 20.5,21.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: 22.5,21.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 2422 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + pos: 32.5,-48.5 + parent: 2 + - uid: 2425 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: 31.5,18.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + pos: 31.5,11.5 + parent: 2 + - uid: 2434 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + pos: 31.5,9.5 + parent: 2 + - uid: 2436 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + pos: 33.5,-47.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 2449 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 + - uid: 2452 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 + - uid: 2453 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - uid: 2458 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + pos: 33.5,-48.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + pos: 29.5,18.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 2468 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 25.5,18.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + pos: 28.5,19.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: 28.5,18.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 + - uid: 2476 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - uid: 2479 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + pos: 26.5,5.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + pos: 26.5,2.5 + parent: 2 + - uid: 2485 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - uid: 2490 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 2492 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 2497 + components: + - type: Transform + pos: 27.5,4.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + pos: 27.5,2.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 2507 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: 27.5,12.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + pos: 27.5,11.5 + parent: 2 + - uid: 2510 + components: + - type: Transform + pos: 27.5,10.5 + parent: 2 + - uid: 2511 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 + - uid: 2513 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: 27.5,5.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: 28.5,2.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: 28.5,1.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + pos: 27.5,19.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + pos: 27.5,18.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + pos: 28.5,5.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - uid: 2523 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + pos: 28.5,11.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 + - uid: 2526 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + pos: 28.5,6.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: 28.5,4.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 2539 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + pos: 23.5,8.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - uid: 2545 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 2546 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + pos: 23.5,19.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + pos: 23.5,16.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + pos: 23.5,12.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 2558 + components: + - type: Transform + pos: 23.5,11.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: 24.5,2.5 + parent: 2 + - uid: 2566 + components: + - type: Transform + pos: 24.5,1.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 2570 + components: + - type: Transform + pos: 24.5,14.5 + parent: 2 + - uid: 2571 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 2573 + components: + - type: Transform + pos: 24.5,10.5 + parent: 2 + - uid: 2574 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 2575 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 2576 + components: + - type: Transform + pos: 25.5,5.5 + parent: 2 + - uid: 2577 + components: + - type: Transform + pos: 25.5,4.5 + parent: 2 + - uid: 2578 + components: + - type: Transform + pos: 25.5,2.5 + parent: 2 + - uid: 2579 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 2580 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + pos: 24.5,20.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 + - uid: 2583 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + pos: 24.5,17.5 + parent: 2 + - uid: 2585 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 2587 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 2589 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 2590 + components: + - type: Transform + pos: 25.5,8.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: 25.5,9.5 + parent: 2 + - uid: 2593 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 2595 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 2596 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - uid: 2601 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 2603 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 2604 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 + - uid: 2608 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 + - uid: 2609 + components: + - type: Transform + pos: 20.5,17.5 + parent: 2 + - uid: 2610 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 2613 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 2614 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 2615 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 2616 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 2617 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 2618 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 2619 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - uid: 2620 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - uid: 2621 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 2622 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - uid: 2624 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 2625 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 2626 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 2627 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 2628 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 + - uid: 2629 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - uid: 2631 + components: + - type: Transform + pos: 21.5,8.5 + parent: 2 + - uid: 2632 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - uid: 2634 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - uid: 2635 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - uid: 2636 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 2637 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 2638 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 + - uid: 2639 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 2640 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 2642 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 2643 + components: + - type: Transform + pos: 22.5,8.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 2645 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 2648 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 2649 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 2650 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - uid: 2656 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 2658 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 2659 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 2660 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 2661 + components: + - type: Transform + pos: 19.5,2.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + pos: 19.5,1.5 + parent: 2 + - uid: 2663 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 2667 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - uid: 2671 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 2672 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 2673 + components: + - type: Transform + pos: 32.5,7.5 + parent: 2 + - uid: 2674 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 2675 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - uid: 2676 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: 33.5,-33.5 + parent: 2 + - uid: 2680 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 2681 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - uid: 2682 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 2683 + components: + - type: Transform + pos: 33.5,-27.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 2 + - uid: 2686 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 2 + - uid: 2687 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 2 + - uid: 2688 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: 32.5,17.5 + parent: 2 + - uid: 2691 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 2692 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 2 + - uid: 2693 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 + - uid: 2694 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 2 + - uid: 2697 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 2 + - uid: 2699 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 2 + - uid: 2700 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 2 + - uid: 2701 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 2 + - uid: 2702 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - uid: 2703 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 2704 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 2705 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 2 + - uid: 2706 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 2 + - uid: 2707 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 2 + - uid: 2708 + components: + - type: Transform + pos: 33.5,-16.5 + parent: 2 + - uid: 2709 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 2 + - uid: 2710 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - uid: 2711 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 2 + - uid: 2716 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 2 + - uid: 2717 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 2718 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 2 + - uid: 2719 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 2720 + components: + - type: Transform + pos: 33.5,7.5 + parent: 2 + - uid: 2721 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 + - uid: 2722 + components: + - type: Transform + pos: 33.5,5.5 + parent: 2 + - uid: 2723 + components: + - type: Transform + pos: 33.5,13.5 + parent: 2 + - uid: 2724 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 2725 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - uid: 2726 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - uid: 2727 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 2728 + components: + - type: Transform + pos: 31.5,-45.5 + parent: 2 + - uid: 2729 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + pos: 33.5,14.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - uid: 2733 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - uid: 2734 + components: + - type: Transform + pos: 33.5,10.5 + parent: 2 + - uid: 2735 + components: + - type: Transform + pos: 33.5,9.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - uid: 2744 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - uid: 2745 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 2 + - uid: 2746 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 2747 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 2 + - uid: 2748 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 2 + - uid: 2749 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 2 + - uid: 2750 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 2 + - uid: 2751 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 2 + - uid: 2752 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 2 + - uid: 2753 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 2755 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 2 + - uid: 2756 + components: + - type: Transform + pos: 32.5,2.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 2 + - uid: 2758 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 2 + - uid: 2759 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 2 + - uid: 2760 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 2 + - uid: 2762 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 2764 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 2765 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 2766 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 2767 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 2768 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - uid: 2769 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 + - uid: 2770 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 2 + - uid: 2771 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 2 + - uid: 2772 + components: + - type: Transform + pos: 32.5,5.5 + parent: 2 + - uid: 2773 + components: + - type: Transform + pos: 32.5,1.5 + parent: 2 + - uid: 2774 + components: + - type: Transform + pos: 32.5,3.5 + parent: 2 + - uid: 2775 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 2 + - uid: 2776 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 2 + - uid: 2777 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 + - uid: 2778 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 2 + - uid: 2780 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - uid: 2781 + components: + - type: Transform + pos: 32.5,4.5 + parent: 2 + - uid: 2782 + components: + - type: Transform + pos: 32.5,-31.5 + parent: 2 + - uid: 2783 + components: + - type: Transform + pos: 32.5,-32.5 + parent: 2 + - uid: 2784 + components: + - type: Transform + pos: 32.5,-33.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 2786 + components: + - type: Transform + pos: 31.5,5.5 + parent: 2 + - uid: 2787 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 2788 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 2789 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 2 + - uid: 2790 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 + - uid: 2794 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 + - uid: 2795 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 2796 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - uid: 2797 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 2798 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 2 + - uid: 2799 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - uid: 2800 + components: + - type: Transform + pos: 30.5,1.5 + parent: 2 + - uid: 2801 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 2802 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 2803 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 2804 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - uid: 2805 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 2 + - uid: 2806 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - uid: 2807 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 2808 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 2 + - uid: 2809 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 2811 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 2812 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 2813 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - uid: 2814 + components: + - type: Transform + pos: 31.5,-32.5 + parent: 2 + - uid: 2815 + components: + - type: Transform + pos: 31.5,-33.5 + parent: 2 + - uid: 2816 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 2817 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 2 + - uid: 2818 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 2 + - uid: 2819 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 2 + - uid: 2820 + components: + - type: Transform + pos: 31.5,-27.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 2 + - uid: 2822 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 + - uid: 2823 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 2 + - uid: 2824 + components: + - type: Transform + pos: 31.5,-31.5 + parent: 2 + - uid: 2825 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - uid: 2826 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 2827 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 2 + - uid: 2830 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 2 + - uid: 2831 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 2 + - uid: 2832 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 2 + - uid: 2833 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 2 + - uid: 2834 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 + - uid: 2835 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 2836 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 2837 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 + - uid: 2838 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 2840 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - uid: 2841 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 2842 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 2844 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 2845 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 2846 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 2847 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - uid: 2848 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 2 + - uid: 2849 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 + - uid: 2850 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 2852 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - uid: 2853 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 2854 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 2 + - uid: 2855 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 2856 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 + - uid: 2857 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - uid: 2858 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 + - uid: 2859 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - uid: 2862 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 2863 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 2864 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 + - uid: 2865 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 2866 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 + - uid: 2867 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 2868 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 2869 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 2 + - uid: 2871 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 2 + - uid: 2872 + components: + - type: Transform + pos: 30.5,-30.5 + parent: 2 + - uid: 2873 + components: + - type: Transform + pos: 30.5,-31.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: 30.5,-32.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: 30.5,-33.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - uid: 2877 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - uid: 2878 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 2 + - uid: 2879 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 2 + - uid: 2880 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 2 + - uid: 2882 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 2 + - uid: 2887 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 2 + - uid: 2888 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 2889 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - uid: 2890 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 2 + - uid: 2891 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 2 + - uid: 2892 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 2 + - uid: 2893 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 2 + - uid: 2894 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 2 + - uid: 2895 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - uid: 2897 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 2 + - uid: 2898 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 2 + - uid: 2899 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 2 + - uid: 2900 + components: + - type: Transform + pos: 28.5,-27.5 + parent: 2 + - uid: 2901 + components: + - type: Transform + pos: 28.5,-28.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + pos: 28.5,-29.5 + parent: 2 + - uid: 2903 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 2 + - uid: 2904 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 2 + - uid: 2905 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 2909 + components: + - type: Transform + pos: 28.5,-18.5 + parent: 2 + - uid: 2910 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 + - uid: 2911 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 2 + - uid: 2912 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 2 + - uid: 2913 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 2914 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 2915 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 2916 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 2917 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 2918 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 2 + - uid: 2919 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 2 + - uid: 2920 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 2 + - uid: 2921 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 2 + - uid: 2922 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 2923 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - uid: 2924 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 2925 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - uid: 2926 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 + - uid: 2928 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 2929 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 2931 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - uid: 2932 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 2933 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 2934 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 2935 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 2 + - uid: 2936 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 2937 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - uid: 2938 + components: + - type: Transform + pos: 28.5,-33.5 + parent: 2 + - uid: 2939 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 2 + - uid: 2940 + components: + - type: Transform + pos: 28.5,-31.5 + parent: 2 + - uid: 2941 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 2942 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 2 + - uid: 2943 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 2944 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 + - uid: 2945 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 2947 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 2948 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 2949 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 2951 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 2 + - uid: 2952 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 2 + - uid: 2953 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 2 + - uid: 2954 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 2 + - uid: 2955 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 2 + - uid: 2956 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 2 + - uid: 2957 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 2 + - uid: 2958 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 2 + - uid: 2959 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 2 + - uid: 2960 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 2 + - uid: 2961 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 2 + - uid: 2962 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 2 + - uid: 2963 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - uid: 2964 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 2 + - uid: 2965 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - uid: 2966 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 2 + - uid: 2967 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 2 + - uid: 2968 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 2 + - uid: 2969 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 2 + - uid: 2970 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 + - uid: 2971 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 2972 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 2975 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 2976 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 2977 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - uid: 2978 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 2 + - uid: 2979 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 2 + - uid: 2981 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 2 + - uid: 2982 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 2 + - uid: 2983 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 2 + - uid: 2984 + components: + - type: Transform + pos: 27.5,-27.5 + parent: 2 + - uid: 2985 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 2 + - uid: 2986 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 2 + - uid: 2987 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 2 + - uid: 2988 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 2991 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 2 + - uid: 2992 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 2 + - uid: 2993 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 2994 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 2 + - uid: 2995 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 2 + - uid: 2996 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 2 + - uid: 2997 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 2 + - uid: 2998 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 2 + - uid: 2999 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 2 + - uid: 3000 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - uid: 3001 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 2 + - uid: 3002 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - uid: 3003 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 2 + - uid: 3004 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - uid: 3005 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 3006 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 2 + - uid: 3007 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 2 + - uid: 3008 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - uid: 3009 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 2 + - uid: 3010 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - uid: 3011 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 3012 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - uid: 3013 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - uid: 3014 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 + - uid: 3015 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 2 + - uid: 3016 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - uid: 3017 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 2 + - uid: 3018 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 + - uid: 3019 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 3020 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 3021 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 3022 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - uid: 3023 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - uid: 3024 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 3025 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 3026 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 3027 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 3028 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 3029 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - uid: 3030 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - uid: 3031 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 3032 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 2 + - uid: 3033 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 2 + - uid: 3034 + components: + - type: Transform + pos: 26.5,-30.5 + parent: 2 + - uid: 3035 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - uid: 3036 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 2 + - uid: 3037 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 2 + - uid: 3038 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 2 + - uid: 3039 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 2 + - uid: 3040 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 2 + - uid: 3041 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 2 + - uid: 3042 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 2 + - uid: 3043 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 2 + - uid: 3044 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 2 + - uid: 3045 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 2 + - uid: 3046 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 2 + - uid: 3047 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 2 + - uid: 3048 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 2 + - uid: 3049 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 + - uid: 3050 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 2 + - uid: 3051 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 2 + - uid: 3052 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 2 + - uid: 3053 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 2 + - uid: 3054 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 2 + - uid: 3055 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 2 + - uid: 3056 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - uid: 3057 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - uid: 3058 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 2 + - uid: 3059 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 + - uid: 3060 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - uid: 3061 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 2 + - uid: 3062 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - uid: 3063 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - uid: 3064 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 + - uid: 3065 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 2 + - uid: 3066 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 3067 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 2 + - uid: 3068 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 3069 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - uid: 3070 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 3071 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 + - uid: 3072 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 3073 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 3074 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 + - uid: 3076 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - uid: 3077 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 3078 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 2 + - uid: 3079 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 3080 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 + - uid: 3081 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 3083 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 2 + - uid: 3084 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 2 + - uid: 3085 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - uid: 3086 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 + - uid: 3087 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 2 + - uid: 3088 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 2 + - uid: 3089 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 2 + - uid: 3090 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 3091 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - uid: 3092 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - uid: 3095 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 3097 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 3098 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 3101 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - uid: 3102 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 + - uid: 3103 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 2 + - uid: 3105 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 3106 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 + - uid: 3107 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - uid: 3109 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 3110 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 2 + - uid: 3111 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 2 + - uid: 3112 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 + - uid: 3113 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 + - uid: 3114 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 2 + - uid: 3115 + components: + - type: Transform + pos: 19.5,-22.5 + parent: 2 + - uid: 3116 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 2 + - uid: 3117 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 3118 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 + - uid: 3119 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 3120 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 2 + - uid: 3121 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 2 + - uid: 3122 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 + - uid: 3123 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 2 + - uid: 3124 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 3125 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 3126 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 2 + - uid: 3127 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 + - uid: 3128 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 2 + - uid: 3129 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 3130 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 + - uid: 3131 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 3132 + components: + - type: Transform + pos: 18.5,-17.5 + parent: 2 + - uid: 3133 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 + - uid: 3134 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 2 + - uid: 3135 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 + - uid: 3136 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - uid: 3137 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 2 + - uid: 3138 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 2 + - uid: 3139 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 + - uid: 3140 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 + - uid: 3141 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 2 + - uid: 3142 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 2 + - uid: 3143 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 2 + - uid: 3144 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 2 + - uid: 3145 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 + - uid: 3146 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 2 + - uid: 3147 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 3148 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 + - uid: 3149 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 + - uid: 3150 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 2 + - uid: 3152 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 3153 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 3154 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 + - uid: 3155 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 2 + - uid: 3156 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 3158 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 2 + - uid: 3159 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 3160 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 2 + - uid: 3161 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 3162 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 + - uid: 3163 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 3164 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 2 + - uid: 3165 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 3166 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 3169 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 2 + - uid: 3170 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 2 + - uid: 3171 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 3172 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 3173 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - uid: 3174 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 3176 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 + - uid: 3177 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 3178 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 + - uid: 3179 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 2 + - uid: 3180 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 2 + - uid: 3181 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 2 + - uid: 3183 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 2 + - uid: 3184 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 2 + - uid: 3185 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 2 + - uid: 3186 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 + - uid: 3187 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 2 + - uid: 3188 + components: + - type: Transform + pos: 19.5,-41.5 + parent: 2 + - uid: 3189 + components: + - type: Transform + pos: 20.5,-40.5 + parent: 2 + - uid: 3190 + components: + - type: Transform + pos: 20.5,-41.5 + parent: 2 + - uid: 3191 + components: + - type: Transform + pos: 20.5,-42.5 + parent: 2 + - uid: 3192 + components: + - type: Transform + pos: 20.5,-43.5 + parent: 2 + - uid: 3193 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 2 + - uid: 3195 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 2 + - uid: 3196 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 2 + - uid: 3197 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 2 + - uid: 3198 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 2 + - uid: 3199 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 2 + - uid: 3200 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 2 + - uid: 3201 + components: + - type: Transform + pos: 20.5,-35.5 + parent: 2 + - uid: 3202 + components: + - type: Transform + pos: 20.5,-36.5 + parent: 2 + - uid: 3203 + components: + - type: Transform + pos: 20.5,-37.5 + parent: 2 + - uid: 3204 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 2 + - uid: 3205 + components: + - type: Transform + pos: 19.5,-40.5 + parent: 2 + - uid: 3206 + components: + - type: Transform + pos: 19.5,-42.5 + parent: 2 + - uid: 3207 + components: + - type: Transform + pos: 19.5,-43.5 + parent: 2 + - uid: 3208 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 3210 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 3211 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + pos: 18.5,-39.5 + parent: 2 + - uid: 3215 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 2 + - uid: 3216 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 3222 + components: + - type: Transform + pos: 18.5,-42.5 + parent: 2 + - uid: 3223 + components: + - type: Transform + pos: 18.5,-43.5 + parent: 2 + - uid: 3224 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 2 + - uid: 3225 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - uid: 3227 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 2 + - uid: 3228 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 2 + - uid: 3229 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 2 + - uid: 3230 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 2 + - uid: 3231 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 2 + - uid: 3232 + components: + - type: Transform + pos: 18.5,-34.5 + parent: 2 + - uid: 3233 + components: + - type: Transform + pos: 18.5,-35.5 + parent: 2 + - uid: 3234 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 2 + - uid: 3235 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 2 + - uid: 3236 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 + - uid: 3237 + components: + - type: Transform + pos: 18.5,-37.5 + parent: 2 + - uid: 3238 + components: + - type: Transform + pos: 18.5,-40.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: 18.5,-41.5 + parent: 2 + - uid: 3240 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 2 + - uid: 3241 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 2 + - uid: 3242 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 2 + - uid: 3243 + components: + - type: Transform + pos: 18.5,-27.5 + parent: 2 + - uid: 3244 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 2 + - uid: 3245 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 2 + - uid: 3246 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 2 + - uid: 3247 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 2 + - uid: 3248 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 2 + - uid: 3249 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 2 + - uid: 3250 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 2 + - uid: 3251 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 2 + - uid: 3253 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - uid: 3254 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + pos: 23.5,-40.5 + parent: 2 + - uid: 3256 + components: + - type: Transform + pos: 23.5,-41.5 + parent: 2 + - uid: 3257 + components: + - type: Transform + pos: 23.5,-42.5 + parent: 2 + - uid: 3258 + components: + - type: Transform + pos: 22.5,-36.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: 22.5,-37.5 + parent: 2 + - uid: 3260 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 2 + - uid: 3262 + components: + - type: Transform + pos: 22.5,-40.5 + parent: 2 + - uid: 3263 + components: + - type: Transform + pos: 22.5,-41.5 + parent: 2 + - uid: 3264 + components: + - type: Transform + pos: 22.5,-42.5 + parent: 2 + - uid: 3265 + components: + - type: Transform + pos: 22.5,-43.5 + parent: 2 + - uid: 3266 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 + - uid: 3267 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 2 + - uid: 3268 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 2 + - uid: 3269 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 2 + - uid: 3270 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 2 + - uid: 3271 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 2 + - uid: 3272 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 2 + - uid: 3273 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 2 + - uid: 3274 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 2 + - uid: 3275 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - uid: 3277 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 2 + - uid: 3278 + components: + - type: Transform + pos: 21.5,-40.5 + parent: 2 + - uid: 3279 + components: + - type: Transform + pos: 21.5,-41.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: 21.5,-42.5 + parent: 2 + - uid: 3281 + components: + - type: Transform + pos: 21.5,-43.5 + parent: 2 + - uid: 3282 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 2 + - uid: 3283 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 2 + - uid: 3284 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 2 + - uid: 3285 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 2 + - uid: 3286 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 2 + - uid: 3287 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 2 + - uid: 3288 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 2 + - uid: 3289 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 + - uid: 3290 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 2 + - uid: 3291 + components: + - type: Transform + pos: 21.5,-35.5 + parent: 2 + - uid: 3292 + components: + - type: Transform + pos: 21.5,-36.5 + parent: 2 + - uid: 3293 + components: + - type: Transform + pos: 21.5,-37.5 + parent: 2 + - uid: 3294 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 2 + - uid: 3295 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 3296 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 2 + - uid: 3297 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 2 + - uid: 3298 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 2 + - uid: 3299 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 2 + - uid: 3301 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 2 + - uid: 3302 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 + - uid: 3303 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 2 + - uid: 3304 + components: + - type: Transform + pos: 27.5,-34.5 + parent: 2 + - uid: 3305 + components: + - type: Transform + pos: 27.5,-35.5 + parent: 2 + - uid: 3306 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 2 + - uid: 3307 + components: + - type: Transform + pos: 26.5,-37.5 + parent: 2 + - uid: 3308 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + pos: 26.5,-39.5 + parent: 2 + - uid: 3310 + components: + - type: Transform + pos: 26.5,-40.5 + parent: 2 + - uid: 3311 + components: + - type: Transform + pos: 26.5,-41.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + pos: 26.5,-42.5 + parent: 2 + - uid: 3313 + components: + - type: Transform + pos: 26.5,-43.5 + parent: 2 + - uid: 3314 + components: + - type: Transform + pos: 26.5,-34.5 + parent: 2 + - uid: 3315 + components: + - type: Transform + pos: 26.5,-35.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + pos: 25.5,-39.5 + parent: 2 + - uid: 3318 + components: + - type: Transform + pos: 25.5,-40.5 + parent: 2 + - uid: 3319 + components: + - type: Transform + pos: 25.5,-41.5 + parent: 2 + - uid: 3320 + components: + - type: Transform + pos: 25.5,-42.5 + parent: 2 + - uid: 3321 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 + - uid: 3322 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 2 + - uid: 3323 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: 25.5,-36.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + pos: 25.5,-37.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: 24.5,-40.5 + parent: 2 + - uid: 3327 + components: + - type: Transform + pos: 24.5,-41.5 + parent: 2 + - uid: 3328 + components: + - type: Transform + pos: 24.5,-42.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + pos: 24.5,-43.5 + parent: 2 + - uid: 3330 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 2 + - uid: 3331 + components: + - type: Transform + pos: 24.5,-35.5 + parent: 2 + - uid: 3332 + components: + - type: Transform + pos: 24.5,-36.5 + parent: 2 + - uid: 3333 + components: + - type: Transform + pos: 24.5,-37.5 + parent: 2 + - uid: 3334 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 3335 + components: + - type: Transform + pos: 24.5,-39.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + pos: 30.5,-34.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + pos: 30.5,-35.5 + parent: 2 + - uid: 3338 + components: + - type: Transform + pos: 30.5,-36.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + pos: 30.5,-37.5 + parent: 2 + - uid: 3340 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - uid: 3341 + components: + - type: Transform + pos: 30.5,-39.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + pos: 29.5,-43.5 + parent: 2 + - uid: 3343 + components: + - type: Transform + pos: 29.5,-42.5 + parent: 2 + - uid: 3344 + components: + - type: Transform + pos: 29.5,-34.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + pos: 29.5,-35.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: 29.5,-36.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + pos: 29.5,-37.5 + parent: 2 + - uid: 3348 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 2 + - uid: 3349 + components: + - type: Transform + pos: 29.5,-39.5 + parent: 2 + - uid: 3350 + components: + - type: Transform + pos: 29.5,-40.5 + parent: 2 + - uid: 3351 + components: + - type: Transform + pos: 29.5,-41.5 + parent: 2 + - uid: 3352 + components: + - type: Transform + pos: 28.5,-35.5 + parent: 2 + - uid: 3353 + components: + - type: Transform + pos: 28.5,-36.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: 28.5,-37.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: 28.5,-38.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + pos: 28.5,-39.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + pos: 28.5,-40.5 + parent: 2 + - uid: 3358 + components: + - type: Transform + pos: 28.5,-41.5 + parent: 2 + - uid: 3359 + components: + - type: Transform + pos: 28.5,-42.5 + parent: 2 + - uid: 3360 + components: + - type: Transform + pos: 28.5,-43.5 + parent: 2 + - uid: 3361 + components: + - type: Transform + pos: 28.5,-34.5 + parent: 2 + - uid: 3362 + components: + - type: Transform + pos: 27.5,-37.5 + parent: 2 + - uid: 3363 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 2 + - uid: 3364 + components: + - type: Transform + pos: 27.5,-39.5 + parent: 2 + - uid: 3365 + components: + - type: Transform + pos: 27.5,-40.5 + parent: 2 + - uid: 3366 + components: + - type: Transform + pos: 27.5,-41.5 + parent: 2 + - uid: 3367 + components: + - type: Transform + pos: 27.5,-42.5 + parent: 2 + - uid: 3368 + components: + - type: Transform + pos: 27.5,-43.5 + parent: 2 + - uid: 3369 + components: + - type: Transform + pos: 27.5,-36.5 + parent: 2 + - uid: 3370 + components: + - type: Transform + pos: 33.5,-42.5 + parent: 2 + - uid: 3371 + components: + - type: Transform + pos: 33.5,-43.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: 32.5,-35.5 + parent: 2 + - uid: 3373 + components: + - type: Transform + pos: 32.5,-36.5 + parent: 2 + - uid: 3374 + components: + - type: Transform + pos: 32.5,-37.5 + parent: 2 + - uid: 3375 + components: + - type: Transform + pos: 32.5,-38.5 + parent: 2 + - uid: 3376 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 2 + - uid: 3377 + components: + - type: Transform + pos: 32.5,-40.5 + parent: 2 + - uid: 3378 + components: + - type: Transform + pos: 32.5,-41.5 + parent: 2 + - uid: 3379 + components: + - type: Transform + pos: 32.5,-42.5 + parent: 2 + - uid: 3380 + components: + - type: Transform + pos: 32.5,-43.5 + parent: 2 + - uid: 3381 + components: + - type: Transform + pos: 32.5,-34.5 + parent: 2 + - uid: 3382 + components: + - type: Transform + pos: 31.5,-37.5 + parent: 2 + - uid: 3383 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 + - uid: 3384 + components: + - type: Transform + pos: 31.5,-39.5 + parent: 2 + - uid: 3385 + components: + - type: Transform + pos: 31.5,-40.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: 31.5,-41.5 + parent: 2 + - uid: 3387 + components: + - type: Transform + pos: 31.5,-42.5 + parent: 2 + - uid: 3388 + components: + - type: Transform + pos: 31.5,-43.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + pos: 31.5,-34.5 + parent: 2 + - uid: 3390 + components: + - type: Transform + pos: 31.5,-35.5 + parent: 2 + - uid: 3391 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 2 + - uid: 3392 + components: + - type: Transform + pos: 30.5,-40.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + pos: 30.5,-41.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: 30.5,-42.5 + parent: 2 + - uid: 3395 + components: + - type: Transform + pos: 30.5,-43.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: 33.5,-34.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + pos: 33.5,-35.5 + parent: 2 + - uid: 3398 + components: + - type: Transform + pos: 33.5,-36.5 + parent: 2 + - uid: 3399 + components: + - type: Transform + pos: 33.5,-37.5 + parent: 2 + - uid: 3400 + components: + - type: Transform + pos: 33.5,-38.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + pos: 33.5,-39.5 + parent: 2 + - uid: 3402 + components: + - type: Transform + pos: 33.5,-40.5 + parent: 2 + - uid: 3403 + components: + - type: Transform + pos: 33.5,-41.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + pos: 36.5,-39.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + pos: 36.5,-40.5 + parent: 2 + - uid: 3406 + components: + - type: Transform + pos: 36.5,-41.5 + parent: 2 + - uid: 3407 + components: + - type: Transform + pos: 36.5,-42.5 + parent: 2 + - uid: 3408 + components: + - type: Transform + pos: 36.5,-43.5 + parent: 2 + - uid: 3409 + components: + - type: Transform + pos: 37.5,-24.5 + parent: 2 + - uid: 3410 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 2 + - uid: 3412 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 2 + - uid: 3413 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 3414 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 2 + - uid: 3415 + components: + - type: Transform + pos: 36.5,-32.5 + parent: 2 + - uid: 3416 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 2 + - uid: 3417 + components: + - type: Transform + pos: 36.5,-34.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + pos: 36.5,-35.5 + parent: 2 + - uid: 3419 + components: + - type: Transform + pos: 36.5,-36.5 + parent: 2 + - uid: 3420 + components: + - type: Transform + pos: 36.5,-37.5 + parent: 2 + - uid: 3421 + components: + - type: Transform + pos: 36.5,-38.5 + parent: 2 + - uid: 3422 + components: + - type: Transform + pos: 35.5,-41.5 + parent: 2 + - uid: 3423 + components: + - type: Transform + pos: 35.5,-42.5 + parent: 2 + - uid: 3424 + components: + - type: Transform + pos: 35.5,-43.5 + parent: 2 + - uid: 3425 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 + - uid: 3426 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 2 + - uid: 3427 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 2 + - uid: 3428 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 2 + - uid: 3430 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 2 + - uid: 3431 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 2 + - uid: 3432 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 2 + - uid: 3433 + components: + - type: Transform + pos: 35.5,-34.5 + parent: 2 + - uid: 3434 + components: + - type: Transform + pos: 35.5,-35.5 + parent: 2 + - uid: 3435 + components: + - type: Transform + pos: 35.5,-36.5 + parent: 2 + - uid: 3436 + components: + - type: Transform + pos: 35.5,-37.5 + parent: 2 + - uid: 3437 + components: + - type: Transform + pos: 35.5,-38.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + pos: 35.5,-39.5 + parent: 2 + - uid: 3439 + components: + - type: Transform + pos: 35.5,-40.5 + parent: 2 + - uid: 3440 + components: + - type: Transform + pos: 34.5,-43.5 + parent: 2 + - uid: 3441 + components: + - type: Transform + pos: 35.5,-24.5 + parent: 2 + - uid: 3442 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 2 + - uid: 3443 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 2 + - uid: 3444 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 2 + - uid: 3445 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + pos: 35.5,-29.5 + parent: 2 + - uid: 3447 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 2 + - uid: 3448 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 2 + - uid: 3449 + components: + - type: Transform + pos: 34.5,-34.5 + parent: 2 + - uid: 3450 + components: + - type: Transform + pos: 34.5,-35.5 + parent: 2 + - uid: 3451 + components: + - type: Transform + pos: 34.5,-36.5 + parent: 2 + - uid: 3452 + components: + - type: Transform + pos: 34.5,-37.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + pos: 34.5,-38.5 + parent: 2 + - uid: 3454 + components: + - type: Transform + pos: 34.5,-39.5 + parent: 2 + - uid: 3455 + components: + - type: Transform + pos: 34.5,-40.5 + parent: 2 + - uid: 3456 + components: + - type: Transform + pos: 34.5,-41.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + pos: 34.5,-42.5 + parent: 2 + - uid: 3458 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 2 + - uid: 3459 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 2 + - uid: 3460 + components: + - type: Transform + pos: 34.5,-27.5 + parent: 2 + - uid: 3461 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 2 + - uid: 3462 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 2 + - uid: 3466 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 2 + - uid: 3467 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 2 + - uid: 3468 + components: + - type: Transform + pos: 40.5,-30.5 + parent: 2 + - uid: 3469 + components: + - type: Transform + pos: 40.5,-31.5 + parent: 2 + - uid: 3470 + components: + - type: Transform + pos: 33.5,-45.5 + parent: 2 + - uid: 3471 + components: + - type: Transform + pos: 34.5,-46.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + pos: 35.5,-44.5 + parent: 2 + - uid: 3473 + components: + - type: Transform + pos: 40.5,-24.5 + parent: 2 + - uid: 3474 + components: + - type: Transform + pos: 40.5,-25.5 + parent: 2 + - uid: 3475 + components: + - type: Transform + pos: 40.5,-26.5 + parent: 2 + - uid: 3476 + components: + - type: Transform + pos: 40.5,-27.5 + parent: 2 + - uid: 3477 + components: + - type: Transform + pos: 40.5,-28.5 + parent: 2 + - uid: 3478 + components: + - type: Transform + pos: 40.5,-29.5 + parent: 2 + - uid: 3479 + components: + - type: Transform + pos: 39.5,-32.5 + parent: 2 + - uid: 3480 + components: + - type: Transform + pos: 39.5,-33.5 + parent: 2 + - uid: 3481 + components: + - type: Transform + pos: 39.5,-34.5 + parent: 2 + - uid: 3482 + components: + - type: Transform + pos: 39.5,-35.5 + parent: 2 + - uid: 3483 + components: + - type: Transform + pos: 39.5,-36.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + pos: 39.5,-37.5 + parent: 2 + - uid: 3485 + components: + - type: Transform + pos: 39.5,-38.5 + parent: 2 + - uid: 3486 + components: + - type: Transform + pos: 39.5,-39.5 + parent: 2 + - uid: 3487 + components: + - type: Transform + pos: 39.5,-40.5 + parent: 2 + - uid: 3488 + components: + - type: Transform + pos: 35.5,-45.5 + parent: 2 + - uid: 3489 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - uid: 3490 + components: + - type: Transform + pos: 39.5,-25.5 + parent: 2 + - uid: 3491 + components: + - type: Transform + pos: 39.5,-26.5 + parent: 2 + - uid: 3492 + components: + - type: Transform + pos: 39.5,-27.5 + parent: 2 + - uid: 3493 + components: + - type: Transform + pos: 39.5,-28.5 + parent: 2 + - uid: 3494 + components: + - type: Transform + pos: 39.5,-29.5 + parent: 2 + - uid: 3495 + components: + - type: Transform + pos: 39.5,-30.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + pos: 39.5,-31.5 + parent: 2 + - uid: 3497 + components: + - type: Transform + pos: 38.5,-34.5 + parent: 2 + - uid: 3498 + components: + - type: Transform + pos: 38.5,-35.5 + parent: 2 + - uid: 3499 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 2 + - uid: 3500 + components: + - type: Transform + pos: 38.5,-37.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: 38.5,-38.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + pos: 38.5,-39.5 + parent: 2 + - uid: 3503 + components: + - type: Transform + pos: 38.5,-40.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + pos: 38.5,-41.5 + parent: 2 + - uid: 3505 + components: + - type: Transform + pos: 33.5,-46.5 + parent: 2 + - uid: 3506 + components: + - type: Transform + pos: 38.5,-25.5 + parent: 2 + - uid: 3507 + components: + - type: Transform + pos: 38.5,-26.5 + parent: 2 + - uid: 3508 + components: + - type: Transform + pos: 38.5,-27.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: 38.5,-28.5 + parent: 2 + - uid: 3510 + components: + - type: Transform + pos: 38.5,-29.5 + parent: 2 + - uid: 3511 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 2 + - uid: 3512 + components: + - type: Transform + pos: 38.5,-31.5 + parent: 2 + - uid: 3513 + components: + - type: Transform + pos: 38.5,-32.5 + parent: 2 + - uid: 3514 + components: + - type: Transform + pos: 38.5,-33.5 + parent: 2 + - uid: 3515 + components: + - type: Transform + pos: 37.5,-36.5 + parent: 2 + - uid: 3516 + components: + - type: Transform + pos: 37.5,-37.5 + parent: 2 + - uid: 3517 + components: + - type: Transform + pos: 37.5,-38.5 + parent: 2 + - uid: 3518 + components: + - type: Transform + pos: 37.5,-39.5 + parent: 2 + - uid: 3519 + components: + - type: Transform + pos: 37.5,-40.5 + parent: 2 + - uid: 3520 + components: + - type: Transform + pos: 37.5,-41.5 + parent: 2 + - uid: 3521 + components: + - type: Transform + pos: 37.5,-42.5 + parent: 2 + - uid: 3522 + components: + - type: Transform + pos: 37.5,-43.5 + parent: 2 + - uid: 3523 + components: + - type: Transform + pos: 38.5,-24.5 + parent: 2 + - uid: 3524 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 2 + - uid: 3525 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 2 + - uid: 3526 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 2 + - uid: 3527 + components: + - type: Transform + pos: 37.5,-31.5 + parent: 2 + - uid: 3528 + components: + - type: Transform + pos: 37.5,-32.5 + parent: 2 + - uid: 3529 + components: + - type: Transform + pos: 37.5,-33.5 + parent: 2 + - uid: 3530 + components: + - type: Transform + pos: 37.5,-34.5 + parent: 2 + - uid: 3531 + components: + - type: Transform + pos: 37.5,-35.5 + parent: 2 + - uid: 3532 + components: + - type: Transform + pos: 42.5,-29.5 + parent: 2 + - uid: 3533 + components: + - type: Transform + pos: 42.5,-30.5 + parent: 2 + - uid: 3534 + components: + - type: Transform + pos: 42.5,-31.5 + parent: 2 + - uid: 3535 + components: + - type: Transform + pos: 42.5,-32.5 + parent: 2 + - uid: 3536 + components: + - type: Transform + pos: 42.5,-33.5 + parent: 2 + - uid: 3537 + components: + - type: Transform + pos: 42.5,-34.5 + parent: 2 + - uid: 3538 + components: + - type: Transform + pos: 42.5,-35.5 + parent: 2 + - uid: 3539 + components: + - type: Transform + pos: 33.5,-55.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + pos: 31.5,-53.5 + parent: 2 + - uid: 3541 + components: + - type: Transform + pos: 35.5,-48.5 + parent: 2 + - uid: 3542 + components: + - type: Transform + pos: 34.5,-44.5 + parent: 2 + - uid: 3543 + components: + - type: Transform + pos: 36.5,-47.5 + parent: 2 + - uid: 3544 + components: + - type: Transform + pos: 31.5,-46.5 + parent: 2 + - uid: 3545 + components: + - type: Transform + pos: 33.5,-44.5 + parent: 2 + - uid: 3546 + components: + - type: Transform + pos: 36.5,-45.5 + parent: 2 + - uid: 3547 + components: + - type: Transform + pos: 34.5,-48.5 + parent: 2 + - uid: 3548 + components: + - type: Transform + pos: 31.5,-44.5 + parent: 2 + - uid: 3549 + components: + - type: Transform + pos: 34.5,-45.5 + parent: 2 + - uid: 3550 + components: + - type: Transform + pos: 36.5,-44.5 + parent: 2 + - uid: 3551 + components: + - type: Transform + pos: 42.5,-24.5 + parent: 2 + - uid: 3552 + components: + - type: Transform + pos: 42.5,-25.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + pos: 42.5,-26.5 + parent: 2 + - uid: 3554 + components: + - type: Transform + pos: 42.5,-27.5 + parent: 2 + - uid: 3555 + components: + - type: Transform + pos: 42.5,-28.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + pos: 41.5,-31.5 + parent: 2 + - uid: 3557 + components: + - type: Transform + pos: 41.5,-32.5 + parent: 2 + - uid: 3558 + components: + - type: Transform + pos: 41.5,-33.5 + parent: 2 + - uid: 3559 + components: + - type: Transform + pos: 41.5,-34.5 + parent: 2 + - uid: 3560 + components: + - type: Transform + pos: 41.5,-35.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: 41.5,-36.5 + parent: 2 + - uid: 3562 + components: + - type: Transform + pos: 41.5,-37.5 + parent: 2 + - uid: 3563 + components: + - type: Transform + pos: 41.5,-38.5 + parent: 2 + - uid: 3565 + components: + - type: Transform + pos: 36.5,-46.5 + parent: 2 + - uid: 3566 + components: + - type: Transform + pos: 36.5,-48.5 + parent: 2 + - uid: 3567 + components: + - type: Transform + pos: 41.5,-24.5 + parent: 2 + - uid: 3568 + components: + - type: Transform + pos: 41.5,-25.5 + parent: 2 + - uid: 3569 + components: + - type: Transform + pos: 41.5,-26.5 + parent: 2 + - uid: 3570 + components: + - type: Transform + pos: 41.5,-27.5 + parent: 2 + - uid: 3571 + components: + - type: Transform + pos: 41.5,-28.5 + parent: 2 + - uid: 3572 + components: + - type: Transform + pos: 41.5,-29.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + pos: 41.5,-30.5 + parent: 2 + - uid: 3574 + components: + - type: Transform + pos: 40.5,-33.5 + parent: 2 + - uid: 3575 + components: + - type: Transform + pos: 40.5,-34.5 + parent: 2 + - uid: 3576 + components: + - type: Transform + pos: 40.5,-35.5 + parent: 2 + - uid: 3577 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 2 + - uid: 3578 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 3579 + components: + - type: Transform + pos: 40.5,-38.5 + parent: 2 + - uid: 3580 + components: + - type: Transform + pos: 40.5,-39.5 + parent: 2 + - uid: 3581 + components: + - type: Transform + pos: 35.5,-47.5 + parent: 2 + - uid: 3582 + components: + - type: Transform + pos: 35.5,-46.5 + parent: 2 + - uid: 3583 + components: + - type: Transform + pos: 40.5,-32.5 + parent: 2 + - uid: 3584 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 2 + - uid: 3585 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 2 + - uid: 3586 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 2 + - uid: 3587 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 2 + - uid: 3588 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 2 + - uid: 3589 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 2 + - uid: 3590 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 2 + - uid: 3591 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 2 + - uid: 3593 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 2 + - uid: 3594 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 2 + - uid: 3595 + components: + - type: Transform + pos: 16.5,-39.5 + parent: 2 + - uid: 3596 + components: + - type: Transform + pos: 16.5,-40.5 + parent: 2 + - uid: 3597 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 2 + - uid: 3598 + components: + - type: Transform + pos: 16.5,-42.5 + parent: 2 + - uid: 3599 + components: + - type: Transform + pos: 16.5,-44.5 + parent: 2 + - uid: 3600 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 2 + - uid: 3601 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 2 + - uid: 3602 + components: + - type: Transform + pos: 16.5,-41.5 + parent: 2 + - uid: 3603 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 + - uid: 3604 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 2 + - uid: 3605 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 2 + - uid: 3606 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 2 + - uid: 3607 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 2 + - uid: 3608 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 2 + - uid: 3609 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 2 + - uid: 3610 + components: + - type: Transform + pos: 13.5,-37.5 + parent: 2 + - uid: 3611 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 2 + - uid: 3612 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 2 + - uid: 3613 + components: + - type: Transform + pos: 14.5,-44.5 + parent: 2 + - uid: 3614 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 2 + - uid: 3616 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 2 + - uid: 3617 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 2 + - uid: 3618 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 2 + - uid: 3619 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 2 + - uid: 3620 + components: + - type: Transform + pos: 13.5,-36.5 + parent: 2 + - uid: 3621 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 2 + - uid: 3622 + components: + - type: Transform + pos: 14.5,-37.5 + parent: 2 + - uid: 3623 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 2 + - uid: 3624 + components: + - type: Transform + pos: 14.5,-40.5 + parent: 2 + - uid: 3625 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 2 + - uid: 3627 + components: + - type: Transform + pos: 14.5,-43.5 + parent: 2 + - uid: 3628 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 2 + - uid: 3629 + components: + - type: Transform + pos: 15.5,-43.5 + parent: 2 + - uid: 3630 + components: + - type: Transform + pos: 15.5,-44.5 + parent: 2 + - uid: 3631 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 2 + - uid: 3632 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 2 + - uid: 3633 + components: + - type: Transform + pos: 14.5,-31.5 + parent: 2 + - uid: 3634 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 2 + - uid: 3635 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 2 + - uid: 3636 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 2 + - uid: 3637 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 2 + - uid: 3638 + components: + - type: Transform + pos: 14.5,-36.5 + parent: 2 + - uid: 3639 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 2 + - uid: 3640 + components: + - type: Transform + pos: 15.5,-36.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + pos: 15.5,-37.5 + parent: 2 + - uid: 3642 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 2 + - uid: 3643 + components: + - type: Transform + pos: 15.5,-39.5 + parent: 2 + - uid: 3644 + components: + - type: Transform + pos: 15.5,-40.5 + parent: 2 + - uid: 3645 + components: + - type: Transform + pos: 15.5,-41.5 + parent: 2 + - uid: 3646 + components: + - type: Transform + pos: 15.5,-42.5 + parent: 2 + - uid: 3647 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - uid: 3648 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 2 + - uid: 3649 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 3650 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 + - uid: 3651 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 2 + - uid: 3652 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 2 + - uid: 3653 + components: + - type: Transform + pos: 10.5,-42.5 + parent: 2 + - uid: 3654 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 2 + - uid: 3655 + components: + - type: Transform + pos: 10.5,-44.5 + parent: 2 + - uid: 3656 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 2 + - uid: 3657 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 2 + - uid: 3658 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 2 + - uid: 3659 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 2 + - uid: 3660 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 2 + - uid: 3661 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 2 + - uid: 3662 + components: + - type: Transform + pos: 10.5,-33.5 + parent: 2 + - uid: 3663 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 2 + - uid: 3664 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 2 + - uid: 3665 + components: + - type: Transform + pos: 10.5,-36.5 + parent: 2 + - uid: 3666 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - uid: 3668 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 2 + - uid: 3669 + components: + - type: Transform + pos: 11.5,-40.5 + parent: 2 + - uid: 3670 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 2 + - uid: 3671 + components: + - type: Transform + pos: 11.5,-43.5 + parent: 2 + - uid: 3672 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 2 + - uid: 3674 + components: + - type: Transform + pos: 11.5,-44.5 + parent: 2 + - uid: 3675 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 2 + - uid: 3676 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 2 + - uid: 3677 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - uid: 3678 + components: + - type: Transform + pos: 11.5,-33.5 + parent: 2 + - uid: 3679 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 2 + - uid: 3680 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 3681 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 2 + - uid: 3682 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 2 + - uid: 3683 + components: + - type: Transform + pos: 11.5,-36.5 + parent: 2 + - uid: 3684 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 2 + - uid: 3686 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 2 + - uid: 3687 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + pos: 12.5,-43.5 + parent: 2 + - uid: 3689 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 2 + - uid: 3690 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 + - uid: 3691 + components: + - type: Transform + pos: 12.5,-44.5 + parent: 2 + - uid: 3692 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 2 + - uid: 3693 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 2 + - uid: 3694 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 2 + - uid: 3695 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 2 + - uid: 3696 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 2 + - uid: 3697 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 2 + - uid: 3699 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 + - uid: 3700 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 2 + - uid: 3702 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 2 + - uid: 3703 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 2 + - uid: 3704 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 2 + - uid: 3705 + components: + - type: Transform + pos: 13.5,-42.5 + parent: 2 + - uid: 3706 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 2 + - uid: 3707 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 3708 + components: + - type: Transform + pos: 13.5,-44.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 2 + - uid: 3710 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 2 + - uid: 3711 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 2 + - uid: 3712 + components: + - type: Transform + pos: 8.5,-39.5 + parent: 2 + - uid: 3713 + components: + - type: Transform + pos: 8.5,-40.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + pos: 8.5,-41.5 + parent: 2 + - uid: 3715 + components: + - type: Transform + pos: 8.5,-42.5 + parent: 2 + - uid: 3716 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 2 + - uid: 3717 + components: + - type: Transform + pos: 8.5,-44.5 + parent: 2 + - uid: 3718 + components: + - type: Transform + pos: 11.5,-42.5 + parent: 2 + - uid: 3719 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 2 + - uid: 3720 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 2 + - uid: 3721 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 + - uid: 3722 + components: + - type: Transform + pos: 8.5,-33.5 + parent: 2 + - uid: 3723 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 2 + - uid: 3724 + components: + - type: Transform + pos: 8.5,-35.5 + parent: 2 + - uid: 3725 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 + - uid: 3726 + components: + - type: Transform + pos: 8.5,-37.5 + parent: 2 + - uid: 3727 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - uid: 3728 + components: + - type: Transform + pos: 9.5,-39.5 + parent: 2 + - uid: 3729 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 2 + - uid: 3730 + components: + - type: Transform + pos: 9.5,-41.5 + parent: 2 + - uid: 3731 + components: + - type: Transform + pos: 9.5,-42.5 + parent: 2 + - uid: 3732 + components: + - type: Transform + pos: 9.5,-43.5 + parent: 2 + - uid: 3733 + components: + - type: Transform + pos: 9.5,-44.5 + parent: 2 + - uid: 3734 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 2 + - uid: 3735 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 2 + - uid: 3736 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 2 + - uid: 3737 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 2 + - uid: 3738 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 2 + - uid: 3740 + components: + - type: Transform + pos: 9.5,-33.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + pos: 9.5,-34.5 + parent: 2 + - uid: 3742 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: 9.5,-37.5 + parent: 2 + - uid: 3745 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 3746 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 2 + - uid: 3747 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 + - uid: 3748 + components: + - type: Transform + pos: 7.5,-39.5 + parent: 2 + - uid: 3749 + components: + - type: Transform + pos: 7.5,-40.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + pos: 7.5,-41.5 + parent: 2 + - uid: 3751 + components: + - type: Transform + pos: 7.5,-42.5 + parent: 2 + - uid: 3752 + components: + - type: Transform + pos: 7.5,-44.5 + parent: 2 + - uid: 3753 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 2 + - uid: 3755 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 + - uid: 3756 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 2 + - uid: 3757 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 2 + - uid: 3758 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 2 + - uid: 3759 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 2 + - uid: 3760 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + pos: 7.5,-37.5 + parent: 2 + - uid: 3762 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 2 + - uid: 3764 + components: + - type: Transform + pos: 4.5,-43.5 + parent: 2 + - uid: 3765 + components: + - type: Transform + pos: 4.5,-44.5 + parent: 2 + - uid: 3766 + components: + - type: Transform + pos: 4.5,-45.5 + parent: 2 + - uid: 3767 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 2 + - uid: 3768 + components: + - type: Transform + pos: 4.5,-47.5 + parent: 2 + - uid: 3769 + components: + - type: Transform + pos: 4.5,-48.5 + parent: 2 + - uid: 3770 + components: + - type: Transform + pos: 4.5,-49.5 + parent: 2 + - uid: 3771 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 2 + - uid: 3772 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 2 + - uid: 3773 + components: + - type: Transform + pos: 5.5,-47.5 + parent: 2 + - uid: 3774 + components: + - type: Transform + pos: 5.5,-45.5 + parent: 2 + - uid: 3775 + components: + - type: Transform + pos: 5.5,-48.5 + parent: 2 + - uid: 3776 + components: + - type: Transform + pos: 5.5,-49.5 + parent: 2 + - uid: 3777 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 + - uid: 3778 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 + - uid: 3779 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 + - uid: 3780 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - uid: 3781 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 2 + - uid: 3782 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 2 + - uid: 3783 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 3784 + components: + - type: Transform + pos: 5.5,-37.5 + parent: 2 + - uid: 3785 + components: + - type: Transform + pos: 5.5,-39.5 + parent: 2 + - uid: 3786 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 2 + - uid: 3787 + components: + - type: Transform + pos: 5.5,-42.5 + parent: 2 + - uid: 3788 + components: + - type: Transform + pos: 5.5,-43.5 + parent: 2 + - uid: 3789 + components: + - type: Transform + pos: 5.5,-44.5 + parent: 2 + - uid: 3790 + components: + - type: Transform + pos: 5.5,-46.5 + parent: 2 + - uid: 3791 + components: + - type: Transform + pos: 6.5,-49.5 + parent: 2 + - uid: 3792 + components: + - type: Transform + pos: 6.5,-47.5 + parent: 2 + - uid: 3793 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 2 + - uid: 3794 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 2 + - uid: 3795 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 2 + - uid: 3796 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - uid: 3797 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 2 + - uid: 3798 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - uid: 3799 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 2 + - uid: 3800 + components: + - type: Transform + pos: 6.5,-39.5 + parent: 2 + - uid: 3801 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 2 + - uid: 3802 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 2 + - uid: 3803 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 2 + - uid: 3804 + components: + - type: Transform + pos: 6.5,-42.5 + parent: 2 + - uid: 3805 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 2 + - uid: 3806 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 2 + - uid: 3807 + components: + - type: Transform + pos: 6.5,-46.5 + parent: 2 + - uid: 3808 + components: + - type: Transform + pos: 6.5,-48.5 + parent: 2 + - uid: 3809 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 2 + - uid: 3810 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 2 + - uid: 3811 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 2 + - uid: 3812 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 2 + - uid: 3813 + components: + - type: Transform + pos: 6.5,-35.5 + parent: 2 + - uid: 3814 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 2 + - uid: 3815 + components: + - type: Transform + pos: 6.5,-37.5 + parent: 2 + - uid: 3816 + components: + - type: Transform + pos: 6.5,-38.5 + parent: 2 + - uid: 3817 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: 5.5,-41.5 + parent: 2 + - uid: 3819 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 2 + - uid: 3820 + components: + - type: Transform + pos: 4.5,-37.5 + parent: 2 + - uid: 3821 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 2 + - uid: 3822 + components: + - type: Transform + pos: 4.5,-41.5 + parent: 2 + - uid: 3823 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 2 + - uid: 3824 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 2 + - uid: 3825 + components: + - type: Transform + pos: 4.5,-42.5 + parent: 2 + - uid: 3826 + components: + - type: Transform + pos: 1.5,-49.5 + parent: 2 + - uid: 3827 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 2 + - uid: 3828 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 2 + - uid: 3829 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - uid: 3830 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 2 + - uid: 3831 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 2 + - uid: 3832 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 2 + - uid: 3833 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 2 + - uid: 3834 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 2 + - uid: 3835 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 2 + - uid: 3836 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 2 + - uid: 3837 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 2 + - uid: 3838 + components: + - type: Transform + pos: 1.5,-43.5 + parent: 2 + - uid: 3839 + components: + - type: Transform + pos: 1.5,-44.5 + parent: 2 + - uid: 3840 + components: + - type: Transform + pos: 1.5,-45.5 + parent: 2 + - uid: 3841 + components: + - type: Transform + pos: 1.5,-46.5 + parent: 2 + - uid: 3842 + components: + - type: Transform + pos: 1.5,-47.5 + parent: 2 + - uid: 3843 + components: + - type: Transform + pos: 1.5,-48.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 + - uid: 3845 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 2 + - uid: 3847 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 2 + - uid: 3848 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 2 + - uid: 3849 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 2 + - uid: 3850 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 2 + - uid: 3852 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 2 + - uid: 3854 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 2 + - uid: 3855 + components: + - type: Transform + pos: 2.5,-44.5 + parent: 2 + - uid: 3856 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 2 + - uid: 3857 + components: + - type: Transform + pos: 2.5,-46.5 + parent: 2 + - uid: 3858 + components: + - type: Transform + pos: 2.5,-47.5 + parent: 2 + - uid: 3859 + components: + - type: Transform + pos: 2.5,-48.5 + parent: 2 + - uid: 3860 + components: + - type: Transform + pos: 2.5,-49.5 + parent: 2 + - uid: 3861 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 2 + - uid: 3864 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + pos: 2.5,-37.5 + parent: 2 + - uid: 3867 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 + - uid: 3868 + components: + - type: Transform + pos: 2.5,-39.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 2 + - uid: 3870 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 2 + - uid: 3871 + components: + - type: Transform + pos: 3.5,-44.5 + parent: 2 + - uid: 3872 + components: + - type: Transform + pos: 3.5,-45.5 + parent: 2 + - uid: 3873 + components: + - type: Transform + pos: 3.5,-46.5 + parent: 2 + - uid: 3874 + components: + - type: Transform + pos: 3.5,-47.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + pos: 3.5,-48.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + pos: 3.5,-49.5 + parent: 2 + - uid: 3877 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 2 + - uid: 3878 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 2 + - uid: 3879 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 2 + - uid: 3880 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 2 + - uid: 3881 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 2 + - uid: 3882 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 2 + - uid: 3883 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 2 + - uid: 3884 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 2 + - uid: 3885 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 2 + - uid: 3886 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 2 + - uid: 3887 + components: + - type: Transform + pos: 3.5,-42.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 2 + - uid: 3889 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 2 + - uid: 3890 + components: + - type: Transform + pos: -1.5,-42.5 + parent: 2 + - uid: 3891 + components: + - type: Transform + pos: -1.5,-43.5 + parent: 2 + - uid: 3892 + components: + - type: Transform + pos: -1.5,-44.5 + parent: 2 + - uid: 3893 + components: + - type: Transform + pos: -1.5,-45.5 + parent: 2 + - uid: 3894 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 2 + - uid: 3895 + components: + - type: Transform + pos: -1.5,-47.5 + parent: 2 + - uid: 3896 + components: + - type: Transform + pos: -1.5,-48.5 + parent: 2 + - uid: 3897 + components: + - type: Transform + pos: -1.5,-49.5 + parent: 2 + - uid: 3898 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 2 + - uid: 3899 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 2 + - uid: 3901 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 2 + - uid: 3902 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 2 + - uid: 3903 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 + - uid: 3904 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 2 + - uid: 3905 + components: + - type: Transform + pos: -2.5,-37.5 + parent: 2 + - uid: 3906 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 3907 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 2 + - uid: 3908 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 2 + - uid: 3909 + components: + - type: Transform + pos: -2.5,-41.5 + parent: 2 + - uid: 3910 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 2 + - uid: 3911 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 2 + - uid: 3912 + components: + - type: Transform + pos: -1.5,-35.5 + parent: 2 + - uid: 3913 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 2 + - uid: 3914 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - uid: 3915 + components: + - type: Transform + pos: -1.5,-38.5 + parent: 2 + - uid: 3916 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 2 + - uid: 3917 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 2 + - uid: 3918 + components: + - type: Transform + pos: -1.5,-41.5 + parent: 2 + - uid: 3919 + components: + - type: Transform + pos: -0.5,-44.5 + parent: 2 + - uid: 3920 + components: + - type: Transform + pos: -0.5,-45.5 + parent: 2 + - uid: 3921 + components: + - type: Transform + pos: -0.5,-46.5 + parent: 2 + - uid: 3922 + components: + - type: Transform + pos: -0.5,-47.5 + parent: 2 + - uid: 3923 + components: + - type: Transform + pos: -0.5,-48.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - uid: 3925 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 2 + - uid: 3926 + components: + - type: Transform + pos: -1.5,-31.5 + parent: 2 + - uid: 3927 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 2 + - uid: 3928 + components: + - type: Transform + pos: -0.5,-35.5 + parent: 2 + - uid: 3929 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 2 + - uid: 3930 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - uid: 3931 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 2 + - uid: 3932 + components: + - type: Transform + pos: -0.5,-39.5 + parent: 2 + - uid: 3933 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 2 + - uid: 3934 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 2 + - uid: 3935 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 2 + - uid: 3936 + components: + - type: Transform + pos: -0.5,-43.5 + parent: 2 + - uid: 3937 + components: + - type: Transform + pos: 0.5,-46.5 + parent: 2 + - uid: 3938 + components: + - type: Transform + pos: 0.5,-47.5 + parent: 2 + - uid: 3939 + components: + - type: Transform + pos: 0.5,-48.5 + parent: 2 + - uid: 3940 + components: + - type: Transform + pos: 0.5,-49.5 + parent: 2 + - uid: 3941 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 2 + - uid: 3942 + components: + - type: Transform + pos: -0.5,-31.5 + parent: 2 + - uid: 3943 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 2 + - uid: 3944 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 2 + - uid: 3945 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 2 + - uid: 3946 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 2 + - uid: 3947 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - uid: 3948 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 + - uid: 3949 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 3950 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 2 + - uid: 3951 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 2 + - uid: 3953 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 2 + - uid: 3954 + components: + - type: Transform + pos: -5.5,-37.5 + parent: 2 + - uid: 3955 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 2 + - uid: 3956 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 2 + - uid: 3957 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 3958 + components: + - type: Transform + pos: -5.5,-41.5 + parent: 2 + - uid: 3959 + components: + - type: Transform + pos: -5.5,-42.5 + parent: 2 + - uid: 3960 + components: + - type: Transform + pos: -5.5,-43.5 + parent: 2 + - uid: 3961 + components: + - type: Transform + pos: -5.5,-44.5 + parent: 2 + - uid: 3962 + components: + - type: Transform + pos: -5.5,-45.5 + parent: 2 + - uid: 3963 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 2 + - uid: 3964 + components: + - type: Transform + pos: -4.5,-49.5 + parent: 2 + - uid: 3965 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 2 + - uid: 3966 + components: + - type: Transform + pos: -5.5,-31.5 + parent: 2 + - uid: 3967 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 + - uid: 3968 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 2 + - uid: 3969 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - uid: 3970 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - uid: 3971 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 2 + - uid: 3972 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 2 + - uid: 3973 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 2 + - uid: 3974 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 2 + - uid: 3975 + components: + - type: Transform + pos: -4.5,-42.5 + parent: 2 + - uid: 3976 + components: + - type: Transform + pos: -4.5,-43.5 + parent: 2 + - uid: 3977 + components: + - type: Transform + pos: -4.5,-44.5 + parent: 2 + - uid: 3978 + components: + - type: Transform + pos: -4.5,-45.5 + parent: 2 + - uid: 3979 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 2 + - uid: 3980 + components: + - type: Transform + pos: -4.5,-47.5 + parent: 2 + - uid: 3981 + components: + - type: Transform + pos: -4.5,-31.5 + parent: 2 + - uid: 3982 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 2 + - uid: 3983 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 2 + - uid: 3984 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 2 + - uid: 3985 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 3986 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 + - uid: 3987 + components: + - type: Transform + pos: -4.5,-37.5 + parent: 2 + - uid: 3988 + components: + - type: Transform + pos: -3.5,-49.5 + parent: 2 + - uid: 3989 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 3990 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 2 + - uid: 3991 + components: + - type: Transform + pos: -3.5,-42.5 + parent: 2 + - uid: 3992 + components: + - type: Transform + pos: -3.5,-43.5 + parent: 2 + - uid: 3993 + components: + - type: Transform + pos: -3.5,-44.5 + parent: 2 + - uid: 3994 + components: + - type: Transform + pos: -3.5,-45.5 + parent: 2 + - uid: 3995 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 2 + - uid: 3996 + components: + - type: Transform + pos: -3.5,-47.5 + parent: 2 + - uid: 3997 + components: + - type: Transform + pos: -3.5,-48.5 + parent: 2 + - uid: 3998 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 2 + - uid: 3999 + components: + - type: Transform + pos: -2.5,-48.5 + parent: 2 + - uid: 4000 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 2 + - uid: 4001 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 2 + - uid: 4002 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 2 + - uid: 4003 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 2 + - uid: 4004 + components: + - type: Transform + pos: -3.5,-37.5 + parent: 2 + - uid: 4005 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 2 + - uid: 4006 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 + - uid: 4007 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 2 + - uid: 4008 + components: + - type: Transform + pos: -2.5,-43.5 + parent: 2 + - uid: 4009 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 2 + - uid: 4010 + components: + - type: Transform + pos: -2.5,-45.5 + parent: 2 + - uid: 4011 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 2 + - uid: 4012 + components: + - type: Transform + pos: -2.5,-47.5 + parent: 2 + - uid: 4013 + components: + - type: Transform + pos: -2.5,-49.5 + parent: 2 + - uid: 4014 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 4015 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 2 + - uid: 4016 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 2 + - uid: 4017 + components: + - type: Transform + pos: -2.5,-42.5 + parent: 2 + - uid: 4018 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 2 + - uid: 4019 + components: + - type: Transform + pos: -8.5,-49.5 + parent: 2 + - uid: 4020 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 2 + - uid: 4021 + components: + - type: Transform + pos: -8.5,-40.5 + parent: 2 + - uid: 4022 + components: + - type: Transform + pos: -8.5,-41.5 + parent: 2 + - uid: 4023 + components: + - type: Transform + pos: -8.5,-42.5 + parent: 2 + - uid: 4024 + components: + - type: Transform + pos: -8.5,-43.5 + parent: 2 + - uid: 4025 + components: + - type: Transform + pos: -8.5,-44.5 + parent: 2 + - uid: 4026 + components: + - type: Transform + pos: -8.5,-45.5 + parent: 2 + - uid: 4027 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 2 + - uid: 4028 + components: + - type: Transform + pos: -8.5,-47.5 + parent: 2 + - uid: 4029 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 2 + - uid: 4030 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 2 + - uid: 4031 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 2 + - uid: 4032 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 2 + - uid: 4033 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 2 + - uid: 4034 + components: + - type: Transform + pos: -8.5,-35.5 + parent: 2 + - uid: 4035 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 2 + - uid: 4036 + components: + - type: Transform + pos: -8.5,-37.5 + parent: 2 + - uid: 4037 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 2 + - uid: 4038 + components: + - type: Transform + pos: -7.5,-41.5 + parent: 2 + - uid: 4039 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 2 + - uid: 4040 + components: + - type: Transform + pos: -7.5,-43.5 + parent: 2 + - uid: 4041 + components: + - type: Transform + pos: -7.5,-44.5 + parent: 2 + - uid: 4042 + components: + - type: Transform + pos: -7.5,-45.5 + parent: 2 + - uid: 4043 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 2 + - uid: 4044 + components: + - type: Transform + pos: -7.5,-47.5 + parent: 2 + - uid: 4045 + components: + - type: Transform + pos: -7.5,-48.5 + parent: 2 + - uid: 4046 + components: + - type: Transform + pos: -7.5,-49.5 + parent: 2 + - uid: 4047 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 2 + - uid: 4048 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 2 + - uid: 4049 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 2 + - uid: 4050 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - uid: 4051 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 4052 + components: + - type: Transform + pos: -7.5,-37.5 + parent: 2 + - uid: 4053 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 2 + - uid: 4054 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 2 + - uid: 4055 + components: + - type: Transform + pos: -7.5,-40.5 + parent: 2 + - uid: 4056 + components: + - type: Transform + pos: -6.5,-43.5 + parent: 2 + - uid: 4057 + components: + - type: Transform + pos: -6.5,-44.5 + parent: 2 + - uid: 4058 + components: + - type: Transform + pos: -6.5,-45.5 + parent: 2 + - uid: 4059 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 2 + - uid: 4060 + components: + - type: Transform + pos: -6.5,-47.5 + parent: 2 + - uid: 4061 + components: + - type: Transform + pos: -6.5,-48.5 + parent: 2 + - uid: 4062 + components: + - type: Transform + pos: -6.5,-49.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 2 + - uid: 4064 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 2 + - uid: 4065 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 2 + - uid: 4066 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 + - uid: 4067 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 + - uid: 4068 + components: + - type: Transform + pos: -6.5,-37.5 + parent: 2 + - uid: 4069 + components: + - type: Transform + pos: -6.5,-38.5 + parent: 2 + - uid: 4070 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 2 + - uid: 4071 + components: + - type: Transform + pos: -6.5,-40.5 + parent: 2 + - uid: 4072 + components: + - type: Transform + pos: -6.5,-41.5 + parent: 2 + - uid: 4073 + components: + - type: Transform + pos: -6.5,-42.5 + parent: 2 + - uid: 4074 + components: + - type: Transform + pos: -5.5,-46.5 + parent: 2 + - uid: 4075 + components: + - type: Transform + pos: -5.5,-47.5 + parent: 2 + - uid: 4076 + components: + - type: Transform + pos: -5.5,-48.5 + parent: 2 + - uid: 4077 + components: + - type: Transform + pos: -5.5,-49.5 + parent: 2 + - uid: 4078 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 2 + - uid: 4079 + components: + - type: Transform + pos: -6.5,-31.5 + parent: 2 + - uid: 4080 + components: + - type: Transform + pos: -6.5,-32.5 + parent: 2 + - uid: 4081 + components: + - type: Transform + pos: -6.5,-33.5 + parent: 2 + - uid: 4082 + components: + - type: Transform + pos: -9.5,-49.5 + parent: 2 + - uid: 4083 + components: + - type: Transform + pos: -9.5,-40.5 + parent: 2 + - uid: 4084 + components: + - type: Transform + pos: -9.5,-41.5 + parent: 2 + - uid: 4085 + components: + - type: Transform + pos: -9.5,-42.5 + parent: 2 + - uid: 4086 + components: + - type: Transform + pos: -9.5,-43.5 + parent: 2 + - uid: 4087 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 2 + - uid: 4088 + components: + - type: Transform + pos: -9.5,-45.5 + parent: 2 + - uid: 4089 + components: + - type: Transform + pos: -9.5,-46.5 + parent: 2 + - uid: 4090 + components: + - type: Transform + pos: -9.5,-47.5 + parent: 2 + - uid: 4091 + components: + - type: Transform + pos: -9.5,-48.5 + parent: 2 + - uid: 4092 + components: + - type: Transform + pos: -9.5,-31.5 + parent: 2 + - uid: 4093 + components: + - type: Transform + pos: -9.5,-32.5 + parent: 2 + - uid: 4094 + components: + - type: Transform + pos: -9.5,-33.5 + parent: 2 + - uid: 4095 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 4096 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 2 + - uid: 4097 + components: + - type: Transform + pos: -9.5,-36.5 + parent: 2 + - uid: 4098 + components: + - type: Transform + pos: -9.5,-37.5 + parent: 2 + - uid: 4099 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 2 + - uid: 4100 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 2 + - uid: 4101 + components: + - type: Transform + pos: -9.5,-30.5 + parent: 2 + - uid: 4102 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 2 + - uid: 4103 + components: + - type: Transform + pos: -12.5,-47.5 + parent: 2 + - uid: 4104 + components: + - type: Transform + pos: -12.5,-41.5 + parent: 2 + - uid: 4105 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 2 + - uid: 4106 + components: + - type: Transform + pos: -12.5,-40.5 + parent: 2 + - uid: 4107 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 2 + - uid: 4108 + components: + - type: Transform + pos: -12.5,-45.5 + parent: 2 + - uid: 4109 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 2 + - uid: 4110 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 2 + - uid: 4111 + components: + - type: Transform + pos: -12.5,-49.5 + parent: 2 + - uid: 4112 + components: + - type: Transform + pos: -12.5,-50.5 + parent: 2 + - uid: 4113 + components: + - type: Transform + pos: -11.5,-56.5 + parent: 2 + - uid: 4114 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - uid: 4115 + components: + - type: Transform + pos: -11.5,-48.5 + parent: 2 + - uid: 4116 + components: + - type: Transform + pos: -12.5,-35.5 + parent: 2 + - uid: 4117 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 2 + - uid: 4118 + components: + - type: Transform + pos: -12.5,-37.5 + parent: 2 + - uid: 4119 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 + - uid: 4120 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 2 + - uid: 4121 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 2 + - uid: 4122 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 2 + - uid: 4123 + components: + - type: Transform + pos: -11.5,-49.5 + parent: 2 + - uid: 4124 + components: + - type: Transform + pos: -11.5,-45.5 + parent: 2 + - uid: 4125 + components: + - type: Transform + pos: -11.5,-50.5 + parent: 2 + - uid: 4126 + components: + - type: Transform + pos: -11.5,-52.5 + parent: 2 + - uid: 4127 + components: + - type: Transform + pos: -11.5,-51.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: -11.5,-53.5 + parent: 2 + - uid: 4129 + components: + - type: Transform + pos: -11.5,-54.5 + parent: 2 + - uid: 4130 + components: + - type: Transform + pos: -11.5,-55.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + pos: -11.5,-39.5 + parent: 2 + - uid: 4132 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 + - uid: 4133 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 + - uid: 4134 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + pos: -11.5,-42.5 + parent: 2 + - uid: 4136 + components: + - type: Transform + pos: -11.5,-43.5 + parent: 2 + - uid: 4137 + components: + - type: Transform + pos: -11.5,-44.5 + parent: 2 + - uid: 4138 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 2 + - uid: 4139 + components: + - type: Transform + pos: -10.5,-53.5 + parent: 2 + - uid: 4140 + components: + - type: Transform + pos: -10.5,-51.5 + parent: 2 + - uid: 4141 + components: + - type: Transform + pos: -10.5,-52.5 + parent: 2 + - uid: 4142 + components: + - type: Transform + pos: -10.5,-54.5 + parent: 2 + - uid: 4143 + components: + - type: Transform + pos: -10.5,-55.5 + parent: 2 + - uid: 4144 + components: + - type: Transform + pos: -10.5,-56.5 + parent: 2 + - uid: 4145 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - uid: 4146 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - uid: 4147 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 2 + - uid: 4148 + components: + - type: Transform + pos: -11.5,-37.5 + parent: 2 + - uid: 4149 + components: + - type: Transform + pos: -10.5,-43.5 + parent: 2 + - uid: 4150 + components: + - type: Transform + pos: -10.5,-44.5 + parent: 2 + - uid: 4151 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 2 + - uid: 4152 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 2 + - uid: 4153 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 2 + - uid: 4154 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 2 + - uid: 4155 + components: + - type: Transform + pos: -10.5,-47.5 + parent: 2 + - uid: 4156 + components: + - type: Transform + pos: -10.5,-49.5 + parent: 2 + - uid: 4157 + components: + - type: Transform + pos: -10.5,-50.5 + parent: 2 + - uid: 4158 + components: + - type: Transform + pos: -10.5,-34.5 + parent: 2 + - uid: 4159 + components: + - type: Transform + pos: -10.5,-35.5 + parent: 2 + - uid: 4160 + components: + - type: Transform + pos: -10.5,-36.5 + parent: 2 + - uid: 4161 + components: + - type: Transform + pos: -10.5,-37.5 + parent: 2 + - uid: 4162 + components: + - type: Transform + pos: -10.5,-38.5 + parent: 2 + - uid: 4163 + components: + - type: Transform + pos: -10.5,-40.5 + parent: 2 + - uid: 4164 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 2 + - uid: 4165 + components: + - type: Transform + pos: -10.5,-42.5 + parent: 2 + - uid: 4166 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 2 + - uid: 4167 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 2 + - uid: 4168 + components: + - type: Transform + pos: -15.5,-41.5 + parent: 2 + - uid: 4169 + components: + - type: Transform + pos: -15.5,-42.5 + parent: 2 + - uid: 4170 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 2 + - uid: 4171 + components: + - type: Transform + pos: -15.5,-44.5 + parent: 2 + - uid: 4172 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 2 + - uid: 4173 + components: + - type: Transform + pos: -15.5,-46.5 + parent: 2 + - uid: 4174 + components: + - type: Transform + pos: -15.5,-47.5 + parent: 2 + - uid: 4175 + components: + - type: Transform + pos: -14.5,-54.5 + parent: 2 + - uid: 4176 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 2 + - uid: 4177 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 2 + - uid: 4178 + components: + - type: Transform + pos: -15.5,-35.5 + parent: 2 + - uid: 4179 + components: + - type: Transform + pos: -14.5,-56.5 + parent: 2 + - uid: 4180 + components: + - type: Transform + pos: -14.5,-55.5 + parent: 2 + - uid: 4181 + components: + - type: Transform + pos: -15.5,-36.5 + parent: 2 + - uid: 4182 + components: + - type: Transform + pos: -14.5,-44.5 + parent: 2 + - uid: 4183 + components: + - type: Transform + pos: -15.5,-37.5 + parent: 2 + - uid: 4184 + components: + - type: Transform + pos: -13.5,-54.5 + parent: 2 + - uid: 4185 + components: + - type: Transform + pos: -14.5,-49.5 + parent: 2 + - uid: 4186 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 2 + - uid: 4187 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 2 + - uid: 4188 + components: + - type: Transform + pos: -14.5,-51.5 + parent: 2 + - uid: 4189 + components: + - type: Transform + pos: -14.5,-52.5 + parent: 2 + - uid: 4190 + components: + - type: Transform + pos: -14.5,-46.5 + parent: 2 + - uid: 4191 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 2 + - uid: 4192 + components: + - type: Transform + pos: -14.5,-53.5 + parent: 2 + - uid: 4193 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 4194 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 4195 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 2 + - uid: 4196 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 2 + - uid: 4197 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 2 + - uid: 4198 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 2 + - uid: 4199 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 2 + - uid: 4200 + components: + - type: Transform + pos: -14.5,-45.5 + parent: 2 + - uid: 4201 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + pos: -13.5,-51.5 + parent: 2 + - uid: 4203 + components: + - type: Transform + pos: -13.5,-52.5 + parent: 2 + - uid: 4204 + components: + - type: Transform + pos: -13.5,-47.5 + parent: 2 + - uid: 4205 + components: + - type: Transform + pos: -13.5,-53.5 + parent: 2 + - uid: 4206 + components: + - type: Transform + pos: -13.5,-55.5 + parent: 2 + - uid: 4207 + components: + - type: Transform + pos: -13.5,-56.5 + parent: 2 + - uid: 4208 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 + - uid: 4209 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 4210 + components: + - type: Transform + pos: -13.5,-50.5 + parent: 2 + - uid: 4211 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 + - uid: 4212 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 2 + - uid: 4213 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 2 + - uid: 4214 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 2 + - uid: 4215 + components: + - type: Transform + pos: -13.5,-46.5 + parent: 2 + - uid: 4216 + components: + - type: Transform + pos: -12.5,-56.5 + parent: 2 + - uid: 4217 + components: + - type: Transform + pos: -13.5,-41.5 + parent: 2 + - uid: 4218 + components: + - type: Transform + pos: -13.5,-48.5 + parent: 2 + - uid: 4219 + components: + - type: Transform + pos: -13.5,-49.5 + parent: 2 + - uid: 4220 + components: + - type: Transform + pos: -12.5,-54.5 + parent: 2 + - uid: 4221 + components: + - type: Transform + pos: -12.5,-53.5 + parent: 2 + - uid: 4222 + components: + - type: Transform + pos: -13.5,-34.5 + parent: 2 + - uid: 4223 + components: + - type: Transform + pos: -12.5,-55.5 + parent: 2 + - uid: 4224 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 2 + - uid: 4225 + components: + - type: Transform + pos: -13.5,-37.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: -13.5,-39.5 + parent: 2 + - uid: 4227 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 2 + - uid: 4228 + components: + - type: Transform + pos: -13.5,-42.5 + parent: 2 + - uid: 4229 + components: + - type: Transform + pos: -12.5,-52.5 + parent: 2 + - uid: 4230 + components: + - type: Transform + pos: -16.5,-50.5 + parent: 2 + - uid: 4231 + components: + - type: Transform + pos: -16.5,-51.5 + parent: 2 + - uid: 4232 + components: + - type: Transform + pos: -16.5,-52.5 + parent: 2 + - uid: 4233 + components: + - type: Transform + pos: -16.5,-53.5 + parent: 2 + - uid: 4234 + components: + - type: Transform + pos: -16.5,-54.5 + parent: 2 + - uid: 4235 + components: + - type: Transform + pos: -16.5,-55.5 + parent: 2 + - uid: 4236 + components: + - type: Transform + pos: -16.5,-56.5 + parent: 2 + - uid: 4237 + components: + - type: Transform + pos: -15.5,-55.5 + parent: 2 + - uid: 4238 + components: + - type: Transform + pos: -15.5,-56.5 + parent: 2 + - uid: 4239 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 4240 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 4241 + components: + - type: Transform + pos: -16.5,-36.5 + parent: 2 + - uid: 4242 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + pos: -16.5,-38.5 + parent: 2 + - uid: 4244 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - uid: 4246 + components: + - type: Transform + pos: -15.5,-48.5 + parent: 2 + - uid: 4247 + components: + - type: Transform + pos: -15.5,-49.5 + parent: 2 + - uid: 4248 + components: + - type: Transform + pos: -15.5,-40.5 + parent: 2 + - uid: 4249 + components: + - type: Transform + pos: -15.5,-50.5 + parent: 2 + - uid: 4250 + components: + - type: Transform + pos: -15.5,-51.5 + parent: 2 + - uid: 4251 + components: + - type: Transform + pos: -15.5,-52.5 + parent: 2 + - uid: 4252 + components: + - type: Transform + pos: -15.5,-53.5 + parent: 2 + - uid: 4253 + components: + - type: Transform + pos: -15.5,-54.5 + parent: 2 + - uid: 4254 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 2 + - uid: 4255 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 2 + - uid: 4256 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 2 + - uid: 4258 + components: + - type: Transform + pos: -16.5,-45.5 + parent: 2 + - uid: 4259 + components: + - type: Transform + pos: -16.5,-46.5 + parent: 2 + - uid: 4260 + components: + - type: Transform + pos: -16.5,-47.5 + parent: 2 + - uid: 4261 + components: + - type: Transform + pos: -16.5,-48.5 + parent: 2 + - uid: 4262 + components: + - type: Transform + pos: -16.5,-49.5 + parent: 2 + - uid: 4263 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 + - uid: 4264 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 2 + - uid: 4265 + components: + - type: Transform + pos: -19.5,-56.5 + parent: 2 + - uid: 4266 + components: + - type: Transform + pos: -19.5,-46.5 + parent: 2 + - uid: 4267 + components: + - type: Transform + pos: -19.5,-61.5 + parent: 2 + - uid: 4268 + components: + - type: Transform + pos: -19.5,-60.5 + parent: 2 + - uid: 4269 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - uid: 4270 + components: + - type: Transform + pos: -20.5,-34.5 + parent: 2 + - uid: 4271 + components: + - type: Transform + pos: -19.5,-62.5 + parent: 2 + - uid: 4272 + components: + - type: Transform + pos: -20.5,-37.5 + parent: 2 + - uid: 4273 + components: + - type: Transform + pos: -20.5,-36.5 + parent: 2 + - uid: 4274 + components: + - type: Transform + pos: -19.5,-48.5 + parent: 2 + - uid: 4275 + components: + - type: Transform + pos: -19.5,-51.5 + parent: 2 + - uid: 4276 + components: + - type: Transform + pos: -19.5,-52.5 + parent: 2 + - uid: 4277 + components: + - type: Transform + pos: -19.5,-54.5 + parent: 2 + - uid: 4278 + components: + - type: Transform + pos: -19.5,-53.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: -19.5,-55.5 + parent: 2 + - uid: 4280 + components: + - type: Transform + pos: -19.5,-57.5 + parent: 2 + - uid: 4281 + components: + - type: Transform + pos: -19.5,-58.5 + parent: 2 + - uid: 4282 + components: + - type: Transform + pos: -19.5,-59.5 + parent: 2 + - uid: 4283 + components: + - type: Transform + pos: -19.5,-40.5 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: -19.5,-41.5 + parent: 2 + - uid: 4285 + components: + - type: Transform + pos: -19.5,-42.5 + parent: 2 + - uid: 4286 + components: + - type: Transform + pos: -19.5,-43.5 + parent: 2 + - uid: 4287 + components: + - type: Transform + pos: -19.5,-44.5 + parent: 2 + - uid: 4288 + components: + - type: Transform + pos: -19.5,-49.5 + parent: 2 + - uid: 4289 + components: + - type: Transform + pos: -19.5,-50.5 + parent: 2 + - uid: 4290 + components: + - type: Transform + pos: -19.5,-47.5 + parent: 2 + - uid: 4291 + components: + - type: Transform + pos: -19.5,-45.5 + parent: 2 + - uid: 4292 + components: + - type: Transform + pos: -18.5,-62.5 + parent: 2 + - uid: 4293 + components: + - type: Transform + pos: -18.5,-60.5 + parent: 2 + - uid: 4294 + components: + - type: Transform + pos: -18.5,-57.5 + parent: 2 + - uid: 4295 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 2 + - uid: 4296 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 4297 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 4298 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 2 + - uid: 4299 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 2 + - uid: 4300 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + pos: -18.5,-52.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + pos: -18.5,-53.5 + parent: 2 + - uid: 4303 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + pos: -18.5,-54.5 + parent: 2 + - uid: 4305 + components: + - type: Transform + pos: -18.5,-55.5 + parent: 2 + - uid: 4306 + components: + - type: Transform + pos: -18.5,-58.5 + parent: 2 + - uid: 4307 + components: + - type: Transform + pos: -18.5,-59.5 + parent: 2 + - uid: 4308 + components: + - type: Transform + pos: -18.5,-56.5 + parent: 2 + - uid: 4309 + components: + - type: Transform + pos: -18.5,-61.5 + parent: 2 + - uid: 4310 + components: + - type: Transform + pos: -18.5,-43.5 + parent: 2 + - uid: 4311 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 + - uid: 4312 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 2 + - uid: 4313 + components: + - type: Transform + pos: -18.5,-38.5 + parent: 2 + - uid: 4314 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 4315 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 2 + - uid: 4316 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 2 + - uid: 4317 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 4318 + components: + - type: Transform + pos: -18.5,-51.5 + parent: 2 + - uid: 4319 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 + - uid: 4321 + components: + - type: Transform + pos: -18.5,-36.5 + parent: 2 + - uid: 4322 + components: + - type: Transform + pos: -18.5,-37.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + pos: -18.5,-40.5 + parent: 2 + - uid: 4325 + components: + - type: Transform + pos: -18.5,-41.5 + parent: 2 + - uid: 4326 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 2 + - uid: 4327 + components: + - type: Transform + pos: -22.5,-39.5 + parent: 2 + - uid: 4328 + components: + - type: Transform + pos: -22.5,-38.5 + parent: 2 + - uid: 4329 + components: + - type: Transform + pos: -22.5,-37.5 + parent: 2 + - uid: 4330 + components: + - type: Transform + pos: -22.5,-40.5 + parent: 2 + - uid: 4331 + components: + - type: Transform + pos: -22.5,-41.5 + parent: 2 + - uid: 4332 + components: + - type: Transform + pos: -22.5,-42.5 + parent: 2 + - uid: 4333 + components: + - type: Transform + pos: -22.5,-43.5 + parent: 2 + - uid: 4334 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 2 + - uid: 4335 + components: + - type: Transform + pos: -22.5,-45.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + pos: -21.5,-57.5 + parent: 2 + - uid: 4337 + components: + - type: Transform + pos: -21.5,-58.5 + parent: 2 + - uid: 4338 + components: + - type: Transform + pos: -21.5,-59.5 + parent: 2 + - uid: 4339 + components: + - type: Transform + pos: -21.5,-60.5 + parent: 2 + - uid: 4340 + components: + - type: Transform + pos: -21.5,-61.5 + parent: 2 + - uid: 4341 + components: + - type: Transform + pos: -21.5,-62.5 + parent: 2 + - uid: 4342 + components: + - type: Transform + pos: -22.5,-34.5 + parent: 2 + - uid: 4343 + components: + - type: Transform + pos: -22.5,-35.5 + parent: 2 + - uid: 4344 + components: + - type: Transform + pos: -22.5,-36.5 + parent: 2 + - uid: 4345 + components: + - type: Transform + pos: -21.5,-48.5 + parent: 2 + - uid: 4346 + components: + - type: Transform + pos: -21.5,-49.5 + parent: 2 + - uid: 4347 + components: + - type: Transform + pos: -21.5,-50.5 + parent: 2 + - uid: 4348 + components: + - type: Transform + pos: -21.5,-51.5 + parent: 2 + - uid: 4349 + components: + - type: Transform + pos: -21.5,-52.5 + parent: 2 + - uid: 4350 + components: + - type: Transform + pos: -21.5,-53.5 + parent: 2 + - uid: 4351 + components: + - type: Transform + pos: -21.5,-54.5 + parent: 2 + - uid: 4352 + components: + - type: Transform + pos: -21.5,-55.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + pos: -21.5,-56.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 2 + - uid: 4356 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 2 + - uid: 4357 + components: + - type: Transform + pos: -21.5,-42.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: -21.5,-43.5 + parent: 2 + - uid: 4359 + components: + - type: Transform + pos: -21.5,-44.5 + parent: 2 + - uid: 4360 + components: + - type: Transform + pos: -21.5,-45.5 + parent: 2 + - uid: 4361 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 2 + - uid: 4362 + components: + - type: Transform + pos: -21.5,-47.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + pos: -20.5,-59.5 + parent: 2 + - uid: 4364 + components: + - type: Transform + pos: -20.5,-60.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + pos: -20.5,-61.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + pos: -20.5,-62.5 + parent: 2 + - uid: 4367 + components: + - type: Transform + pos: -21.5,-34.5 + parent: 2 + - uid: 4368 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 2 + - uid: 4369 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 2 + - uid: 4370 + components: + - type: Transform + pos: -21.5,-37.5 + parent: 2 + - uid: 4371 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 2 + - uid: 4372 + components: + - type: Transform + pos: -20.5,-50.5 + parent: 2 + - uid: 4373 + components: + - type: Transform + pos: -20.5,-51.5 + parent: 2 + - uid: 4374 + components: + - type: Transform + pos: -20.5,-53.5 + parent: 2 + - uid: 4375 + components: + - type: Transform + pos: -20.5,-54.5 + parent: 2 + - uid: 4376 + components: + - type: Transform + pos: -20.5,-55.5 + parent: 2 + - uid: 4377 + components: + - type: Transform + pos: -20.5,-52.5 + parent: 2 + - uid: 4378 + components: + - type: Transform + pos: -20.5,-56.5 + parent: 2 + - uid: 4379 + components: + - type: Transform + pos: -20.5,-58.5 + parent: 2 + - uid: 4380 + components: + - type: Transform + pos: -20.5,-57.5 + parent: 2 + - uid: 4381 + components: + - type: Transform + pos: -20.5,-41.5 + parent: 2 + - uid: 4382 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 2 + - uid: 4383 + components: + - type: Transform + pos: -20.5,-43.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: -20.5,-44.5 + parent: 2 + - uid: 4385 + components: + - type: Transform + pos: -20.5,-45.5 + parent: 2 + - uid: 4386 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - uid: 4387 + components: + - type: Transform + pos: -20.5,-47.5 + parent: 2 + - uid: 4388 + components: + - type: Transform + pos: -20.5,-48.5 + parent: 2 + - uid: 4389 + components: + - type: Transform + pos: -20.5,-49.5 + parent: 2 + - uid: 4390 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 2 + - uid: 4391 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 2 + - uid: 4392 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 2 + - uid: 4393 + components: + - type: Transform + pos: -24.5,-43.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 2 + - uid: 4395 + components: + - type: Transform + pos: -24.5,-45.5 + parent: 2 + - uid: 4396 + components: + - type: Transform + pos: -24.5,-46.5 + parent: 2 + - uid: 4397 + components: + - type: Transform + pos: -24.5,-47.5 + parent: 2 + - uid: 4398 + components: + - type: Transform + pos: -24.5,-48.5 + parent: 2 + - uid: 4399 + components: + - type: Transform + pos: -24.5,-49.5 + parent: 2 + - uid: 4400 + components: + - type: Transform + pos: -24.5,-50.5 + parent: 2 + - uid: 4401 + components: + - type: Transform + pos: -24.5,-51.5 + parent: 2 + - uid: 4402 + components: + - type: Transform + pos: -23.5,-62.5 + parent: 2 + - uid: 4403 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 2 + - uid: 4404 + components: + - type: Transform + pos: -24.5,-37.5 + parent: 2 + - uid: 4405 + components: + - type: Transform + pos: -24.5,-35.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + pos: -24.5,-38.5 + parent: 2 + - uid: 4407 + components: + - type: Transform + pos: -24.5,-40.5 + parent: 2 + - uid: 4408 + components: + - type: Transform + pos: -24.5,-39.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: -24.5,-42.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + pos: -23.5,-57.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + pos: -23.5,-52.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + pos: -23.5,-53.5 + parent: 2 + - uid: 4413 + components: + - type: Transform + pos: -23.5,-54.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + pos: -23.5,-55.5 + parent: 2 + - uid: 4415 + components: + - type: Transform + pos: -23.5,-56.5 + parent: 2 + - uid: 4416 + components: + - type: Transform + pos: -23.5,-58.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + pos: -23.5,-59.5 + parent: 2 + - uid: 4418 + components: + - type: Transform + pos: -23.5,-60.5 + parent: 2 + - uid: 4419 + components: + - type: Transform + pos: -23.5,-61.5 + parent: 2 + - uid: 4420 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 2 + - uid: 4421 + components: + - type: Transform + pos: -23.5,-44.5 + parent: 2 + - uid: 4422 + components: + - type: Transform + pos: -23.5,-45.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + pos: -23.5,-46.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + pos: -23.5,-47.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + pos: -23.5,-48.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + pos: -23.5,-49.5 + parent: 2 + - uid: 4427 + components: + - type: Transform + pos: -23.5,-50.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + pos: -23.5,-51.5 + parent: 2 + - uid: 4429 + components: + - type: Transform + pos: -23.5,-34.5 + parent: 2 + - uid: 4430 + components: + - type: Transform + pos: -23.5,-35.5 + parent: 2 + - uid: 4431 + components: + - type: Transform + pos: -23.5,-36.5 + parent: 2 + - uid: 4432 + components: + - type: Transform + pos: -23.5,-37.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + pos: -23.5,-38.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + pos: -23.5,-39.5 + parent: 2 + - uid: 4435 + components: + - type: Transform + pos: -23.5,-40.5 + parent: 2 + - uid: 4436 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 2 + - uid: 4437 + components: + - type: Transform + pos: -23.5,-42.5 + parent: 2 + - uid: 4438 + components: + - type: Transform + pos: -22.5,-54.5 + parent: 2 + - uid: 4439 + components: + - type: Transform + pos: -22.5,-55.5 + parent: 2 + - uid: 4440 + components: + - type: Transform + pos: -22.5,-56.5 + parent: 2 + - uid: 4441 + components: + - type: Transform + pos: -22.5,-57.5 + parent: 2 + - uid: 4442 + components: + - type: Transform + pos: -22.5,-58.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + pos: -22.5,-59.5 + parent: 2 + - uid: 4444 + components: + - type: Transform + pos: -22.5,-60.5 + parent: 2 + - uid: 4445 + components: + - type: Transform + pos: -22.5,-61.5 + parent: 2 + - uid: 4446 + components: + - type: Transform + pos: -22.5,-62.5 + parent: 2 + - uid: 4447 + components: + - type: Transform + pos: -22.5,-46.5 + parent: 2 + - uid: 4448 + components: + - type: Transform + pos: -22.5,-47.5 + parent: 2 + - uid: 4449 + components: + - type: Transform + pos: -22.5,-48.5 + parent: 2 + - uid: 4450 + components: + - type: Transform + pos: -22.5,-49.5 + parent: 2 + - uid: 4451 + components: + - type: Transform + pos: -22.5,-50.5 + parent: 2 + - uid: 4452 + components: + - type: Transform + pos: -22.5,-51.5 + parent: 2 + - uid: 4453 + components: + - type: Transform + pos: -22.5,-52.5 + parent: 2 + - uid: 4454 + components: + - type: Transform + pos: -22.5,-53.5 + parent: 2 + - uid: 4455 + components: + - type: Transform + pos: -26.5,-50.5 + parent: 2 + - uid: 4456 + components: + - type: Transform + pos: -26.5,-48.5 + parent: 2 + - uid: 4457 + components: + - type: Transform + pos: -26.5,-51.5 + parent: 2 + - uid: 4458 + components: + - type: Transform + pos: -26.5,-52.5 + parent: 2 + - uid: 4459 + components: + - type: Transform + pos: -26.5,-53.5 + parent: 2 + - uid: 4460 + components: + - type: Transform + pos: -26.5,-54.5 + parent: 2 + - uid: 4461 + components: + - type: Transform + pos: -26.5,-55.5 + parent: 2 + - uid: 4462 + components: + - type: Transform + pos: -26.5,-56.5 + parent: 2 + - uid: 4463 + components: + - type: Transform + pos: -26.5,-57.5 + parent: 2 + - uid: 4464 + components: + - type: Transform + pos: -26.5,-40.5 + parent: 2 + - uid: 4465 + components: + - type: Transform + pos: -26.5,-41.5 + parent: 2 + - uid: 4466 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 + - uid: 4467 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 4468 + components: + - type: Transform + pos: -26.5,-44.5 + parent: 2 + - uid: 4469 + components: + - type: Transform + pos: -26.5,-45.5 + parent: 2 + - uid: 4470 + components: + - type: Transform + pos: -26.5,-46.5 + parent: 2 + - uid: 4471 + components: + - type: Transform + pos: -26.5,-47.5 + parent: 2 + - uid: 4472 + components: + - type: Transform + pos: -26.5,-49.5 + parent: 2 + - uid: 4473 + components: + - type: Transform + pos: -25.5,-60.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + pos: -25.5,-61.5 + parent: 2 + - uid: 4475 + components: + - type: Transform + pos: -25.5,-62.5 + parent: 2 + - uid: 4476 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 2 + - uid: 4477 + components: + - type: Transform + pos: -26.5,-35.5 + parent: 2 + - uid: 4478 + components: + - type: Transform + pos: -26.5,-36.5 + parent: 2 + - uid: 4479 + components: + - type: Transform + pos: -26.5,-37.5 + parent: 2 + - uid: 4480 + components: + - type: Transform + pos: -26.5,-38.5 + parent: 2 + - uid: 4481 + components: + - type: Transform + pos: -26.5,-39.5 + parent: 2 + - uid: 4482 + components: + - type: Transform + pos: -25.5,-51.5 + parent: 2 + - uid: 4483 + components: + - type: Transform + pos: -25.5,-52.5 + parent: 2 + - uid: 4484 + components: + - type: Transform + pos: -25.5,-53.5 + parent: 2 + - uid: 4485 + components: + - type: Transform + pos: -25.5,-54.5 + parent: 2 + - uid: 4486 + components: + - type: Transform + pos: -25.5,-55.5 + parent: 2 + - uid: 4487 + components: + - type: Transform + pos: -25.5,-56.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + pos: -25.5,-57.5 + parent: 2 + - uid: 4489 + components: + - type: Transform + pos: -25.5,-58.5 + parent: 2 + - uid: 4490 + components: + - type: Transform + pos: -25.5,-59.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 4492 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 + - uid: 4493 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 2 + - uid: 4494 + components: + - type: Transform + pos: -25.5,-45.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: -25.5,-46.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + pos: -25.5,-47.5 + parent: 2 + - uid: 4497 + components: + - type: Transform + pos: -25.5,-48.5 + parent: 2 + - uid: 4498 + components: + - type: Transform + pos: -25.5,-49.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + pos: -25.5,-50.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + pos: -24.5,-62.5 + parent: 2 + - uid: 4501 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 2 + - uid: 4502 + components: + - type: Transform + pos: -25.5,-35.5 + parent: 2 + - uid: 4503 + components: + - type: Transform + pos: -25.5,-36.5 + parent: 2 + - uid: 4504 + components: + - type: Transform + pos: -25.5,-37.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + pos: -25.5,-38.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + pos: -25.5,-39.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + pos: -25.5,-40.5 + parent: 2 + - uid: 4508 + components: + - type: Transform + pos: -25.5,-41.5 + parent: 2 + - uid: 4509 + components: + - type: Transform + pos: -24.5,-53.5 + parent: 2 + - uid: 4510 + components: + - type: Transform + pos: -24.5,-54.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + pos: -24.5,-55.5 + parent: 2 + - uid: 4512 + components: + - type: Transform + pos: -24.5,-56.5 + parent: 2 + - uid: 4513 + components: + - type: Transform + pos: -24.5,-57.5 + parent: 2 + - uid: 4514 + components: + - type: Transform + pos: -24.5,-58.5 + parent: 2 + - uid: 4515 + components: + - type: Transform + pos: -24.5,-59.5 + parent: 2 + - uid: 4516 + components: + - type: Transform + pos: -24.5,-60.5 + parent: 2 + - uid: 4517 + components: + - type: Transform + pos: -24.5,-61.5 + parent: 2 + - uid: 4518 + components: + - type: Transform + pos: -24.5,-52.5 + parent: 2 + - uid: 4519 + components: + - type: Transform + pos: -28.5,-61.5 + parent: 2 + - uid: 4520 + components: + - type: Transform + pos: -28.5,-62.5 + parent: 2 + - uid: 4521 + components: + - type: Transform + pos: -29.5,-34.5 + parent: 2 + - uid: 4522 + components: + - type: Transform + pos: -28.5,-52.5 + parent: 2 + - uid: 4523 + components: + - type: Transform + pos: -28.5,-53.5 + parent: 2 + - uid: 4524 + components: + - type: Transform + pos: -28.5,-54.5 + parent: 2 + - uid: 4525 + components: + - type: Transform + pos: -28.5,-55.5 + parent: 2 + - uid: 4526 + components: + - type: Transform + pos: -28.5,-56.5 + parent: 2 + - uid: 4527 + components: + - type: Transform + pos: -28.5,-57.5 + parent: 2 + - uid: 4528 + components: + - type: Transform + pos: -28.5,-58.5 + parent: 2 + - uid: 4529 + components: + - type: Transform + pos: -28.5,-59.5 + parent: 2 + - uid: 4530 + components: + - type: Transform + pos: -28.5,-60.5 + parent: 2 + - uid: 4531 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 + - uid: 4532 + components: + - type: Transform + pos: -28.5,-44.5 + parent: 2 + - uid: 4533 + components: + - type: Transform + pos: -28.5,-45.5 + parent: 2 + - uid: 4534 + components: + - type: Transform + pos: -28.5,-46.5 + parent: 2 + - uid: 4535 + components: + - type: Transform + pos: -28.5,-47.5 + parent: 2 + - uid: 4536 + components: + - type: Transform + pos: -28.5,-48.5 + parent: 2 + - uid: 4537 + components: + - type: Transform + pos: -28.5,-49.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + pos: -28.5,-50.5 + parent: 2 + - uid: 4539 + components: + - type: Transform + pos: -28.5,-51.5 + parent: 2 + - uid: 4540 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - uid: 4541 + components: + - type: Transform + pos: -28.5,-35.5 + parent: 2 + - uid: 4542 + components: + - type: Transform + pos: -28.5,-36.5 + parent: 2 + - uid: 4543 + components: + - type: Transform + pos: -28.5,-37.5 + parent: 2 + - uid: 4544 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 + - uid: 4545 + components: + - type: Transform + pos: -28.5,-39.5 + parent: 2 + - uid: 4546 + components: + - type: Transform + pos: -28.5,-40.5 + parent: 2 + - uid: 4547 + components: + - type: Transform + pos: -28.5,-41.5 + parent: 2 + - uid: 4548 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 + - uid: 4549 + components: + - type: Transform + pos: -27.5,-54.5 + parent: 2 + - uid: 4550 + components: + - type: Transform + pos: -27.5,-55.5 + parent: 2 + - uid: 4551 + components: + - type: Transform + pos: -27.5,-56.5 + parent: 2 + - uid: 4552 + components: + - type: Transform + pos: -27.5,-57.5 + parent: 2 + - uid: 4553 + components: + - type: Transform + pos: -27.5,-58.5 + parent: 2 + - uid: 4554 + components: + - type: Transform + pos: -27.5,-59.5 + parent: 2 + - uid: 4555 + components: + - type: Transform + pos: -27.5,-60.5 + parent: 2 + - uid: 4556 + components: + - type: Transform + pos: -27.5,-61.5 + parent: 2 + - uid: 4557 + components: + - type: Transform + pos: -27.5,-62.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + pos: -27.5,-45.5 + parent: 2 + - uid: 4559 + components: + - type: Transform + pos: -27.5,-46.5 + parent: 2 + - uid: 4560 + components: + - type: Transform + pos: -27.5,-47.5 + parent: 2 + - uid: 4561 + components: + - type: Transform + pos: -27.5,-48.5 + parent: 2 + - uid: 4562 + components: + - type: Transform + pos: -27.5,-49.5 + parent: 2 + - uid: 4563 + components: + - type: Transform + pos: -27.5,-50.5 + parent: 2 + - uid: 4564 + components: + - type: Transform + pos: -27.5,-51.5 + parent: 2 + - uid: 4565 + components: + - type: Transform + pos: -27.5,-52.5 + parent: 2 + - uid: 4566 + components: + - type: Transform + pos: -27.5,-53.5 + parent: 2 + - uid: 4567 + components: + - type: Transform + pos: -27.5,-36.5 + parent: 2 + - uid: 4568 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 2 + - uid: 4569 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 + - uid: 4570 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 + - uid: 4571 + components: + - type: Transform + pos: -27.5,-40.5 + parent: 2 + - uid: 4572 + components: + - type: Transform + pos: -27.5,-41.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 + - uid: 4574 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 + - uid: 4575 + components: + - type: Transform + pos: -27.5,-44.5 + parent: 2 + - uid: 4576 + components: + - type: Transform + pos: -26.5,-58.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + pos: -26.5,-59.5 + parent: 2 + - uid: 4578 + components: + - type: Transform + pos: -26.5,-60.5 + parent: 2 + - uid: 4579 + components: + - type: Transform + pos: -26.5,-61.5 + parent: 2 + - uid: 4580 + components: + - type: Transform + pos: -26.5,-62.5 + parent: 2 + - uid: 4581 + components: + - type: Transform + pos: -27.5,-34.5 + parent: 2 + - uid: 4582 + components: + - type: Transform + pos: -27.5,-35.5 + parent: 2 + - uid: 4583 + components: + - type: Transform + pos: -30.5,-53.5 + parent: 2 + - uid: 4584 + components: + - type: Transform + pos: -30.5,-54.5 + parent: 2 + - uid: 4585 + components: + - type: Transform + pos: -30.5,-55.5 + parent: 2 + - uid: 4586 + components: + - type: Transform + pos: -30.5,-56.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + pos: -30.5,-57.5 + parent: 2 + - uid: 4588 + components: + - type: Transform + pos: -30.5,-58.5 + parent: 2 + - uid: 4589 + components: + - type: Transform + pos: -30.5,-59.5 + parent: 2 + - uid: 4590 + components: + - type: Transform + pos: -30.5,-60.5 + parent: 2 + - uid: 4591 + components: + - type: Transform + pos: -30.5,-61.5 + parent: 2 + - uid: 4592 + components: + - type: Transform + pos: -30.5,-62.5 + parent: 2 + - uid: 4593 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 + - uid: 4595 + components: + - type: Transform + pos: -30.5,-46.5 + parent: 2 + - uid: 4596 + components: + - type: Transform + pos: -30.5,-47.5 + parent: 2 + - uid: 4597 + components: + - type: Transform + pos: -30.5,-48.5 + parent: 2 + - uid: 4598 + components: + - type: Transform + pos: -30.5,-49.5 + parent: 2 + - uid: 4599 + components: + - type: Transform + pos: -30.5,-50.5 + parent: 2 + - uid: 4600 + components: + - type: Transform + pos: -30.5,-51.5 + parent: 2 + - uid: 4601 + components: + - type: Transform + pos: -30.5,-52.5 + parent: 2 + - uid: 4602 + components: + - type: Transform + pos: -30.5,-35.5 + parent: 2 + - uid: 4603 + components: + - type: Transform + pos: -30.5,-36.5 + parent: 2 + - uid: 4604 + components: + - type: Transform + pos: -30.5,-37.5 + parent: 2 + - uid: 4605 + components: + - type: Transform + pos: -30.5,-38.5 + parent: 2 + - uid: 4606 + components: + - type: Transform + pos: -30.5,-39.5 + parent: 2 + - uid: 4607 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 2 + - uid: 4608 + components: + - type: Transform + pos: -30.5,-41.5 + parent: 2 + - uid: 4609 + components: + - type: Transform + pos: -30.5,-42.5 + parent: 2 + - uid: 4610 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 2 + - uid: 4611 + components: + - type: Transform + pos: -29.5,-55.5 + parent: 2 + - uid: 4612 + components: + - type: Transform + pos: -29.5,-56.5 + parent: 2 + - uid: 4613 + components: + - type: Transform + pos: -29.5,-57.5 + parent: 2 + - uid: 4614 + components: + - type: Transform + pos: -29.5,-58.5 + parent: 2 + - uid: 4615 + components: + - type: Transform + pos: -29.5,-59.5 + parent: 2 + - uid: 4616 + components: + - type: Transform + pos: -29.5,-60.5 + parent: 2 + - uid: 4617 + components: + - type: Transform + pos: -29.5,-61.5 + parent: 2 + - uid: 4618 + components: + - type: Transform + pos: -29.5,-62.5 + parent: 2 + - uid: 4619 + components: + - type: Transform + pos: -30.5,-34.5 + parent: 2 + - uid: 4620 + components: + - type: Transform + pos: -29.5,-46.5 + parent: 2 + - uid: 4621 + components: + - type: Transform + pos: -29.5,-47.5 + parent: 2 + - uid: 4622 + components: + - type: Transform + pos: -29.5,-48.5 + parent: 2 + - uid: 4623 + components: + - type: Transform + pos: -29.5,-49.5 + parent: 2 + - uid: 4624 + components: + - type: Transform + pos: -29.5,-50.5 + parent: 2 + - uid: 4625 + components: + - type: Transform + pos: -29.5,-51.5 + parent: 2 + - uid: 4626 + components: + - type: Transform + pos: -29.5,-52.5 + parent: 2 + - uid: 4627 + components: + - type: Transform + pos: -29.5,-53.5 + parent: 2 + - uid: 4628 + components: + - type: Transform + pos: -29.5,-54.5 + parent: 2 + - uid: 4629 + components: + - type: Transform + pos: -29.5,-37.5 + parent: 2 + - uid: 4630 + components: + - type: Transform + pos: -29.5,-38.5 + parent: 2 + - uid: 4631 + components: + - type: Transform + pos: -29.5,-39.5 + parent: 2 + - uid: 4632 + components: + - type: Transform + pos: -29.5,-40.5 + parent: 2 + - uid: 4633 + components: + - type: Transform + pos: -29.5,-41.5 + parent: 2 + - uid: 4634 + components: + - type: Transform + pos: -29.5,-42.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 + - uid: 4636 + components: + - type: Transform + pos: -29.5,-44.5 + parent: 2 + - uid: 4637 + components: + - type: Transform + pos: -29.5,-45.5 + parent: 2 + - uid: 4638 + components: + - type: Transform + pos: -29.5,-35.5 + parent: 2 + - uid: 4639 + components: + - type: Transform + pos: -29.5,-36.5 + parent: 2 + - uid: 4640 + components: + - type: Transform + pos: -37.5,-33.5 + parent: 2 + - uid: 4641 + components: + - type: Transform + pos: -37.5,-32.5 + parent: 2 + - uid: 4642 + components: + - type: Transform + pos: -38.5,-33.5 + parent: 2 + - uid: 4643 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 4644 + components: + - type: Transform + pos: -32.5,-33.5 + parent: 2 + - uid: 4645 + components: + - type: Transform + pos: -39.5,-33.5 + parent: 2 + - uid: 4646 + components: + - type: Transform + pos: -39.5,-32.5 + parent: 2 + - uid: 4647 + components: + - type: Transform + pos: -40.5,-33.5 + parent: 2 + - uid: 4648 + components: + - type: Transform + pos: -41.5,-33.5 + parent: 2 + - uid: 4649 + components: + - type: Transform + pos: -40.5,-32.5 + parent: 2 + - uid: 4650 + components: + - type: Transform + pos: -42.5,-33.5 + parent: 2 + - uid: 4651 + components: + - type: Transform + pos: -41.5,-32.5 + parent: 2 + - uid: 4652 + components: + - type: Transform + pos: -42.5,-32.5 + parent: 2 + - uid: 4653 + components: + - type: Transform + pos: -32.5,-32.5 + parent: 2 + - uid: 4654 + components: + - type: Transform + pos: -33.5,-32.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + pos: -34.5,-33.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + pos: -33.5,-33.5 + parent: 2 + - uid: 4657 + components: + - type: Transform + pos: -34.5,-32.5 + parent: 2 + - uid: 4658 + components: + - type: Transform + pos: -35.5,-33.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + pos: -36.5,-33.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + pos: -36.5,-32.5 + parent: 2 + - uid: 4661 + components: + - type: Transform + pos: -35.5,-32.5 + parent: 2 + - uid: 4662 + components: + - type: Transform + pos: -28.5,-33.5 + parent: 2 + - uid: 4663 + components: + - type: Transform + pos: -28.5,-32.5 + parent: 2 + - uid: 4664 + components: + - type: Transform + pos: -29.5,-32.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + pos: -25.5,-32.5 + parent: 2 + - uid: 4666 + components: + - type: Transform + pos: -30.5,-33.5 + parent: 2 + - uid: 4667 + components: + - type: Transform + pos: -30.5,-32.5 + parent: 2 + - uid: 4668 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 2 + - uid: 4669 + components: + - type: Transform + pos: -31.5,-32.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + pos: -31.5,-33.5 + parent: 2 + - uid: 4671 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 2 + - uid: 4672 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - uid: 4675 + components: + - type: Transform + pos: -25.5,-33.5 + parent: 2 + - uid: 4676 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + pos: -26.5,-32.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + pos: -27.5,-33.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + pos: -27.5,-32.5 + parent: 2 + - uid: 4680 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 2 + - uid: 4681 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 2 + - uid: 4682 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 2 + - uid: 4683 + components: + - type: Transform + pos: -20.5,-32.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 2 + - uid: 4685 + components: + - type: Transform + pos: -22.5,-33.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + pos: -22.5,-32.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: -23.5,-33.5 + parent: 2 + - uid: 4688 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 2 + - uid: 4689 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 4690 + components: + - type: Transform + pos: -29.5,-28.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 2 + - uid: 4692 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 + - uid: 4693 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - uid: 4694 + components: + - type: Transform + pos: -30.5,-31.5 + parent: 2 + - uid: 4695 + components: + - type: Transform + pos: -30.5,-30.5 + parent: 2 + - uid: 4696 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - uid: 4697 + components: + - type: Transform + pos: -30.5,-29.5 + parent: 2 + - uid: 4698 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 4699 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 4700 + components: + - type: Transform + pos: -28.5,-31.5 + parent: 2 + - uid: 4701 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 + - uid: 4702 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 2 + - uid: 4703 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 2 + - uid: 4704 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - uid: 4705 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 2 + - uid: 4706 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 4707 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 2 + - uid: 4708 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 2 + - uid: 4709 + components: + - type: Transform + pos: -26.5,-29.5 + parent: 2 + - uid: 4710 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 4711 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 2 + - uid: 4712 + components: + - type: Transform + pos: -26.5,-30.5 + parent: 2 + - uid: 4713 + components: + - type: Transform + pos: -27.5,-31.5 + parent: 2 + - uid: 4714 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 2 + - uid: 4715 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 4716 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 2 + - uid: 4717 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - uid: 4718 + components: + - type: Transform + pos: -24.5,-27.5 + parent: 2 + - uid: 4719 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 2 + - uid: 4720 + components: + - type: Transform + pos: -25.5,-31.5 + parent: 2 + - uid: 4721 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 2 + - uid: 4722 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - uid: 4723 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - uid: 4724 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 + - uid: 4725 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 4726 + components: + - type: Transform + pos: -23.5,-31.5 + parent: 2 + - uid: 4727 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 2 + - uid: 4728 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 2 + - uid: 4730 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + pos: -24.5,-30.5 + parent: 2 + - uid: 4733 + components: + - type: Transform + pos: -24.5,-31.5 + parent: 2 + - uid: 4734 + components: + - type: Transform + pos: -24.5,-29.5 + parent: 2 + - uid: 4735 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 2 + - uid: 4737 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 2 + - uid: 4738 + components: + - type: Transform + pos: -22.5,-31.5 + parent: 2 + - uid: 4739 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 2 + - uid: 4740 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 2 + - uid: 4741 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 2 + - uid: 4742 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 2 + - uid: 4743 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 2 + - uid: 4744 + components: + - type: Transform + pos: -20.5,-31.5 + parent: 2 + - uid: 4745 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 2 + - uid: 4746 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 2 + - uid: 4747 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - uid: 4748 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 2 + - uid: 4749 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 2 + - uid: 4750 + components: + - type: Transform + pos: -21.5,-31.5 + parent: 2 + - uid: 4751 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 2 + - uid: 4752 + components: + - type: Transform + pos: -39.5,-26.5 + parent: 2 + - uid: 4753 + components: + - type: Transform + pos: -40.5,-26.5 + parent: 2 + - uid: 4754 + components: + - type: Transform + pos: -27.5,-28.5 + parent: 2 + - uid: 4755 + components: + - type: Transform + pos: -36.5,-29.5 + parent: 2 + - uid: 4756 + components: + - type: Transform + pos: -41.5,-31.5 + parent: 2 + - uid: 4757 + components: + - type: Transform + pos: -40.5,-27.5 + parent: 2 + - uid: 4758 + components: + - type: Transform + pos: -41.5,-29.5 + parent: 2 + - uid: 4759 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 2 + - uid: 4760 + components: + - type: Transform + pos: -41.5,-26.5 + parent: 2 + - uid: 4761 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 2 + - uid: 4762 + components: + - type: Transform + pos: -37.5,-26.5 + parent: 2 + - uid: 4763 + components: + - type: Transform + pos: -37.5,-29.5 + parent: 2 + - uid: 4764 + components: + - type: Transform + pos: -37.5,-27.5 + parent: 2 + - uid: 4765 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 4766 + components: + - type: Transform + pos: -38.5,-31.5 + parent: 2 + - uid: 4767 + components: + - type: Transform + pos: -38.5,-27.5 + parent: 2 + - uid: 4768 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 2 + - uid: 4769 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 2 + - uid: 4770 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 2 + - uid: 4771 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 2 + - uid: 4772 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 + - uid: 4773 + components: + - type: Transform + pos: -35.5,-26.5 + parent: 2 + - uid: 4774 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 2 + - uid: 4775 + components: + - type: Transform + pos: -37.5,-30.5 + parent: 2 + - uid: 4776 + components: + - type: Transform + pos: -37.5,-31.5 + parent: 2 + - uid: 4777 + components: + - type: Transform + pos: -35.5,-30.5 + parent: 2 + - uid: 4778 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 2 + - uid: 4779 + components: + - type: Transform + pos: -34.5,-29.5 + parent: 2 + - uid: 4780 + components: + - type: Transform + pos: -34.5,-30.5 + parent: 2 + - uid: 4781 + components: + - type: Transform + pos: -33.5,-31.5 + parent: 2 + - uid: 4782 + components: + - type: Transform + pos: -35.5,-31.5 + parent: 2 + - uid: 4783 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - uid: 4784 + components: + - type: Transform + pos: -34.5,-27.5 + parent: 2 + - uid: 4785 + components: + - type: Transform + pos: -35.5,-29.5 + parent: 2 + - uid: 4786 + components: + - type: Transform + pos: -35.5,-28.5 + parent: 2 + - uid: 4787 + components: + - type: Transform + pos: -35.5,-27.5 + parent: 2 + - uid: 4788 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 + - uid: 4789 + components: + - type: Transform + pos: -33.5,-29.5 + parent: 2 + - uid: 4790 + components: + - type: Transform + pos: -33.5,-30.5 + parent: 2 + - uid: 4791 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 4792 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 2 + - uid: 4793 + components: + - type: Transform + pos: -33.5,-27.5 + parent: 2 + - uid: 4794 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 + - uid: 4795 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 2 + - uid: 4796 + components: + - type: Transform + pos: -34.5,-31.5 + parent: 2 + - uid: 4797 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - uid: 4798 + components: + - type: Transform + pos: -31.5,-31.5 + parent: 2 + - uid: 4799 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 2 + - uid: 4800 + components: + - type: Transform + pos: -31.5,-27.5 + parent: 2 + - uid: 4801 + components: + - type: Transform + pos: -31.5,-26.5 + parent: 2 + - uid: 4802 + components: + - type: Transform + pos: -32.5,-31.5 + parent: 2 + - uid: 4803 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 2 + - uid: 4804 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 2 + - uid: 4805 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 2 + - uid: 4806 + components: + - type: Transform + pos: -31.5,-29.5 + parent: 2 + - uid: 4807 + components: + - type: Transform + pos: -46.5,-29.5 + parent: 2 + - uid: 4808 + components: + - type: Transform + pos: -46.5,-30.5 + parent: 2 + - uid: 4809 + components: + - type: Transform + pos: -46.5,-28.5 + parent: 2 + - uid: 4810 + components: + - type: Transform + pos: -47.5,-31.5 + parent: 2 + - uid: 4811 + components: + - type: Transform + pos: -46.5,-27.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + pos: -47.5,-30.5 + parent: 2 + - uid: 4813 + components: + - type: Transform + pos: -47.5,-29.5 + parent: 2 + - uid: 4814 + components: + - type: Transform + pos: -45.5,-31.5 + parent: 2 + - uid: 4815 + components: + - type: Transform + pos: -47.5,-28.5 + parent: 2 + - uid: 4816 + components: + - type: Transform + pos: -47.5,-27.5 + parent: 2 + - uid: 4817 + components: + - type: Transform + pos: -47.5,-26.5 + parent: 2 + - uid: 4818 + components: + - type: Transform + pos: -46.5,-26.5 + parent: 2 + - uid: 4819 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 2 + - uid: 4820 + components: + - type: Transform + pos: -45.5,-27.5 + parent: 2 + - uid: 4821 + components: + - type: Transform + pos: -40.5,-29.5 + parent: 2 + - uid: 4822 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + pos: -40.5,-31.5 + parent: 2 + - uid: 4824 + components: + - type: Transform + pos: -39.5,-27.5 + parent: 2 + - uid: 4825 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + pos: -39.5,-29.5 + parent: 2 + - uid: 4827 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 + - uid: 4828 + components: + - type: Transform + pos: -38.5,-29.5 + parent: 2 + - uid: 4829 + components: + - type: Transform + pos: -39.5,-31.5 + parent: 2 + - uid: 4830 + components: + - type: Transform + pos: -43.5,-29.5 + parent: 2 + - uid: 4831 + components: + - type: Transform + pos: -44.5,-26.5 + parent: 2 + - uid: 4832 + components: + - type: Transform + pos: -44.5,-27.5 + parent: 2 + - uid: 4833 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 2 + - uid: 4834 + components: + - type: Transform + pos: -45.5,-30.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + pos: -45.5,-29.5 + parent: 2 + - uid: 4836 + components: + - type: Transform + pos: -45.5,-28.5 + parent: 2 + - uid: 4837 + components: + - type: Transform + pos: -46.5,-31.5 + parent: 2 + - uid: 4838 + components: + - type: Transform + pos: -45.5,-26.5 + parent: 2 + - uid: 4839 + components: + - type: Transform + pos: -43.5,-30.5 + parent: 2 + - uid: 4840 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 2 + - uid: 4841 + components: + - type: Transform + pos: -43.5,-27.5 + parent: 2 + - uid: 4842 + components: + - type: Transform + pos: -43.5,-26.5 + parent: 2 + - uid: 4843 + components: + - type: Transform + pos: -44.5,-31.5 + parent: 2 + - uid: 4844 + components: + - type: Transform + pos: -41.5,-30.5 + parent: 2 + - uid: 4845 + components: + - type: Transform + pos: -42.5,-31.5 + parent: 2 + - uid: 4846 + components: + - type: Transform + pos: -44.5,-30.5 + parent: 2 + - uid: 4847 + components: + - type: Transform + pos: -44.5,-28.5 + parent: 2 + - uid: 4848 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 + - uid: 4849 + components: + - type: Transform + pos: -42.5,-30.5 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: -42.5,-29.5 + parent: 2 + - uid: 4851 + components: + - type: Transform + pos: -42.5,-28.5 + parent: 2 + - uid: 4852 + components: + - type: Transform + pos: -42.5,-27.5 + parent: 2 + - uid: 4853 + components: + - type: Transform + pos: -42.5,-26.5 + parent: 2 + - uid: 4854 + components: + - type: Transform + pos: -39.5,-28.5 + parent: 2 + - uid: 4855 + components: + - type: Transform + pos: -43.5,-31.5 + parent: 2 + - uid: 4856 + components: + - type: Transform + pos: -48.5,-25.5 + parent: 2 + - uid: 4857 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 + - uid: 4858 + components: + - type: Transform + pos: -41.5,-25.5 + parent: 2 + - uid: 4859 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + pos: -42.5,-25.5 + parent: 2 + - uid: 4861 + components: + - type: Transform + pos: -43.5,-25.5 + parent: 2 + - uid: 4862 + components: + - type: Transform + pos: -44.5,-25.5 + parent: 2 + - uid: 4863 + components: + - type: Transform + pos: -45.5,-25.5 + parent: 2 + - uid: 4864 + components: + - type: Transform + pos: -46.5,-25.5 + parent: 2 + - uid: 4865 + components: + - type: Transform + pos: -47.5,-25.5 + parent: 2 + - uid: 4866 + components: + - type: Transform + pos: -22.5,-25.5 + parent: 2 + - uid: 4867 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 2 + - uid: 4868 + components: + - type: Transform + pos: -24.5,-25.5 + parent: 2 + - uid: 4869 + components: + - type: Transform + pos: -25.5,-25.5 + parent: 2 + - uid: 4870 + components: + - type: Transform + pos: -26.5,-25.5 + parent: 2 + - uid: 4871 + components: + - type: Transform + pos: -28.5,-25.5 + parent: 2 + - uid: 4872 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 2 + - uid: 4873 + components: + - type: Transform + pos: -30.5,-25.5 + parent: 2 + - uid: 4874 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 2 + - uid: 4875 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 2 + - uid: 4876 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 2 + - uid: 4877 + components: + - type: Transform + pos: -35.5,-25.5 + parent: 2 + - uid: 4878 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 2 + - uid: 4879 + components: + - type: Transform + pos: -34.5,-25.5 + parent: 2 + - uid: 4880 + components: + - type: Transform + pos: -37.5,-25.5 + parent: 2 + - uid: 4881 + components: + - type: Transform + pos: -36.5,-25.5 + parent: 2 + - uid: 4882 + components: + - type: Transform + pos: -39.5,-25.5 + parent: 2 + - uid: 4883 + components: + - type: Transform + pos: -44.5,-23.5 + parent: 2 + - uid: 4884 + components: + - type: Transform + pos: -43.5,-22.5 + parent: 2 + - uid: 4885 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 2 + - uid: 4886 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 + - uid: 4887 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - uid: 4888 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 2 + - uid: 4889 + components: + - type: Transform + pos: -24.5,-23.5 + parent: 2 + - uid: 4890 + components: + - type: Transform + pos: -25.5,-24.5 + parent: 2 + - uid: 4891 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 4893 + components: + - type: Transform + pos: -41.5,-23.5 + parent: 2 + - uid: 4894 + components: + - type: Transform + pos: -41.5,-22.5 + parent: 2 + - uid: 4895 + components: + - type: Transform + pos: -40.5,-22.5 + parent: 2 + - uid: 4896 + components: + - type: Transform + pos: -42.5,-24.5 + parent: 2 + - uid: 4897 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 4898 + components: + - type: Transform + pos: -42.5,-22.5 + parent: 2 + - uid: 4899 + components: + - type: Transform + pos: -43.5,-24.5 + parent: 2 + - uid: 4900 + components: + - type: Transform + pos: -43.5,-23.5 + parent: 2 + - uid: 4901 + components: + - type: Transform + pos: -44.5,-24.5 + parent: 2 + - uid: 4902 + components: + - type: Transform + pos: -38.5,-23.5 + parent: 2 + - uid: 4903 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 + - uid: 4904 + components: + - type: Transform + pos: -38.5,-22.5 + parent: 2 + - uid: 4905 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 + - uid: 4906 + components: + - type: Transform + pos: -39.5,-23.5 + parent: 2 + - uid: 4907 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 + - uid: 4908 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 2 + - uid: 4909 + components: + - type: Transform + pos: -40.5,-23.5 + parent: 2 + - uid: 4910 + components: + - type: Transform + pos: -41.5,-24.5 + parent: 2 + - uid: 4911 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 2 + - uid: 4912 + components: + - type: Transform + pos: -35.5,-23.5 + parent: 2 + - uid: 4913 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 4914 + components: + - type: Transform + pos: -36.5,-24.5 + parent: 2 + - uid: 4915 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 2 + - uid: 4916 + components: + - type: Transform + pos: -36.5,-23.5 + parent: 2 + - uid: 4917 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 4918 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 2 + - uid: 4919 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 2 + - uid: 4920 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 2 + - uid: 4921 + components: + - type: Transform + pos: -32.5,-23.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + pos: -32.5,-24.5 + parent: 2 + - uid: 4923 + components: + - type: Transform + pos: -32.5,-22.5 + parent: 2 + - uid: 4924 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 2 + - uid: 4925 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 2 + - uid: 4926 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - uid: 4927 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - uid: 4928 + components: + - type: Transform + pos: -34.5,-22.5 + parent: 2 + - uid: 4929 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 2 + - uid: 4930 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 4931 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 4932 + components: + - type: Transform + pos: -30.5,-24.5 + parent: 2 + - uid: 4933 + components: + - type: Transform + pos: -30.5,-23.5 + parent: 2 + - uid: 4934 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 + - uid: 4935 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 2 + - uid: 4936 + components: + - type: Transform + pos: -31.5,-23.5 + parent: 2 + - uid: 4937 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 2 + - uid: 4938 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 4939 + components: + - type: Transform + pos: -26.5,-23.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 4941 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 2 + - uid: 4942 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 4943 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - uid: 4944 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 4945 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 2 + - uid: 4946 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 2 + - uid: 4947 + components: + - type: Transform + pos: -47.5,-24.5 + parent: 2 + - uid: 4948 + components: + - type: Transform + pos: -49.5,-22.5 + parent: 2 + - uid: 4949 + components: + - type: Transform + pos: -49.5,-24.5 + parent: 2 + - uid: 4950 + components: + - type: Transform + pos: -51.5,-22.5 + parent: 2 + - uid: 4951 + components: + - type: Transform + pos: -47.5,-22.5 + parent: 2 + - uid: 4952 + components: + - type: Transform + pos: -48.5,-22.5 + parent: 2 + - uid: 4953 + components: + - type: Transform + pos: -49.5,-23.5 + parent: 2 + - uid: 4954 + components: + - type: Transform + pos: -50.5,-24.5 + parent: 2 + - uid: 4955 + components: + - type: Transform + pos: -50.5,-23.5 + parent: 2 + - uid: 4956 + components: + - type: Transform + pos: -50.5,-22.5 + parent: 2 + - uid: 4957 + components: + - type: Transform + pos: -48.5,-23.5 + parent: 2 + - uid: 4958 + components: + - type: Transform + pos: -51.5,-24.5 + parent: 2 + - uid: 4959 + components: + - type: Transform + pos: -51.5,-23.5 + parent: 2 + - uid: 4960 + components: + - type: Transform + pos: -45.5,-23.5 + parent: 2 + - uid: 4961 + components: + - type: Transform + pos: -45.5,-22.5 + parent: 2 + - uid: 4962 + components: + - type: Transform + pos: -46.5,-24.5 + parent: 2 + - uid: 4963 + components: + - type: Transform + pos: -44.5,-22.5 + parent: 2 + - uid: 4964 + components: + - type: Transform + pos: -46.5,-23.5 + parent: 2 + - uid: 4965 + components: + - type: Transform + pos: -46.5,-22.5 + parent: 2 + - uid: 4966 + components: + - type: Transform + pos: -47.5,-23.5 + parent: 2 + - uid: 4967 + components: + - type: Transform + pos: -48.5,-24.5 + parent: 2 + - uid: 4968 + components: + - type: Transform + pos: -42.5,-23.5 + parent: 2 + - uid: 4969 + components: + - type: Transform + pos: -45.5,-24.5 + parent: 2 + - uid: 4970 + components: + - type: Transform + pos: -44.5,-20.5 + parent: 2 + - uid: 4971 + components: + - type: Transform + pos: -42.5,-19.5 + parent: 2 + - uid: 4972 + components: + - type: Transform + pos: -45.5,-21.5 + parent: 2 + - uid: 4973 + components: + - type: Transform + pos: -44.5,-19.5 + parent: 2 + - uid: 4974 + components: + - type: Transform + pos: -44.5,-21.5 + parent: 2 + - uid: 4975 + components: + - type: Transform + pos: -45.5,-19.5 + parent: 2 + - uid: 4976 + components: + - type: Transform + pos: -45.5,-20.5 + parent: 2 + - uid: 4977 + components: + - type: Transform + pos: -46.5,-20.5 + parent: 2 + - uid: 4978 + components: + - type: Transform + pos: -46.5,-19.5 + parent: 2 + - uid: 4979 + components: + - type: Transform + pos: -41.5,-21.5 + parent: 2 + - uid: 4980 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 2 + - uid: 4981 + components: + - type: Transform + pos: -39.5,-21.5 + parent: 2 + - uid: 4982 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 4983 + components: + - type: Transform + pos: -42.5,-21.5 + parent: 2 + - uid: 4984 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 2 + - uid: 4985 + components: + - type: Transform + pos: -43.5,-21.5 + parent: 2 + - uid: 4986 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 2 + - uid: 4987 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 + - uid: 4988 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 2 + - uid: 4989 + components: + - type: Transform + pos: -35.5,-21.5 + parent: 2 + - uid: 4990 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 2 + - uid: 4991 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 2 + - uid: 4992 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 2 + - uid: 4993 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - uid: 4994 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 2 + - uid: 4995 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 4996 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 4997 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 4998 + components: + - type: Transform + pos: -32.5,-21.5 + parent: 2 + - uid: 4999 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 2 + - uid: 5000 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 5001 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 + - uid: 5002 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 5003 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 5004 + components: + - type: Transform + pos: -34.5,-21.5 + parent: 2 + - uid: 5005 + components: + - type: Transform + pos: -34.5,-20.5 + parent: 2 + - uid: 5007 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 2 + - uid: 5008 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 5009 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 5010 + components: + - type: Transform + pos: -30.5,-21.5 + parent: 2 + - uid: 5011 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 5012 + components: + - type: Transform + pos: -30.5,-19.5 + parent: 2 + - uid: 5013 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - uid: 5014 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 5015 + components: + - type: Transform + pos: -26.5,-21.5 + parent: 2 + - uid: 5018 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 2 + - uid: 5021 + components: + - type: Transform + pos: -28.5,-21.5 + parent: 2 + - uid: 5023 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 5024 + components: + - type: Transform + pos: -38.5,-21.5 + parent: 2 + - uid: 5025 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 + - uid: 5026 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 5027 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 2 + - uid: 5028 + components: + - type: Transform + pos: -39.5,-20.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: -40.5,-21.5 + parent: 2 + - uid: 5030 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 2 + - uid: 5031 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - uid: 5032 + components: + - type: Transform + pos: -47.5,-21.5 + parent: 2 + - uid: 5033 + components: + - type: Transform + pos: -47.5,-19.5 + parent: 2 + - uid: 5034 + components: + - type: Transform + pos: -54.5,-20.5 + parent: 2 + - uid: 5035 + components: + - type: Transform + pos: -54.5,-19.5 + parent: 2 + - uid: 5036 + components: + - type: Transform + pos: -55.5,-21.5 + parent: 2 + - uid: 5037 + components: + - type: Transform + pos: -55.5,-20.5 + parent: 2 + - uid: 5038 + components: + - type: Transform + pos: -55.5,-19.5 + parent: 2 + - uid: 5039 + components: + - type: Transform + pos: -52.5,-20.5 + parent: 2 + - uid: 5040 + components: + - type: Transform + pos: -51.5,-21.5 + parent: 2 + - uid: 5041 + components: + - type: Transform + pos: -51.5,-20.5 + parent: 2 + - uid: 5042 + components: + - type: Transform + pos: -52.5,-21.5 + parent: 2 + - uid: 5043 + components: + - type: Transform + pos: -51.5,-19.5 + parent: 2 + - uid: 5044 + components: + - type: Transform + pos: -50.5,-19.5 + parent: 2 + - uid: 5045 + components: + - type: Transform + pos: -52.5,-19.5 + parent: 2 + - uid: 5046 + components: + - type: Transform + pos: -53.5,-20.5 + parent: 2 + - uid: 5047 + components: + - type: Transform + pos: -53.5,-19.5 + parent: 2 + - uid: 5048 + components: + - type: Transform + pos: -54.5,-21.5 + parent: 2 + - uid: 5049 + components: + - type: Transform + pos: -53.5,-21.5 + parent: 2 + - uid: 5050 + components: + - type: Transform + pos: -48.5,-20.5 + parent: 2 + - uid: 5051 + components: + - type: Transform + pos: -47.5,-20.5 + parent: 2 + - uid: 5052 + components: + - type: Transform + pos: -49.5,-21.5 + parent: 2 + - uid: 5053 + components: + - type: Transform + pos: -46.5,-21.5 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: -49.5,-19.5 + parent: 2 + - uid: 5055 + components: + - type: Transform + pos: -50.5,-20.5 + parent: 2 + - uid: 5056 + components: + - type: Transform + pos: -49.5,-20.5 + parent: 2 + - uid: 5057 + components: + - type: Transform + pos: -50.5,-21.5 + parent: 2 + - uid: 5058 + components: + - type: Transform + pos: -48.5,-19.5 + parent: 2 + - uid: 5059 + components: + - type: Transform + pos: -48.5,-21.5 + parent: 2 + - uid: 5060 + components: + - type: Transform + pos: -46.5,-15.5 + parent: 2 + - uid: 5061 + components: + - type: Transform + pos: -47.5,-17.5 + parent: 2 + - uid: 5062 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 2 + - uid: 5063 + components: + - type: Transform + pos: -31.5,-17.5 + parent: 2 + - uid: 5064 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 2 + - uid: 5065 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 + - uid: 5066 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 2 + - uid: 5067 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 2 + - uid: 5068 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - uid: 5069 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 5070 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - uid: 5071 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 5072 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 2 + - uid: 5073 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 5074 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 2 + - uid: 5075 + components: + - type: Transform + pos: -34.5,-17.5 + parent: 2 + - uid: 5076 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 5077 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 5078 + components: + - type: Transform + pos: -35.5,-17.5 + parent: 2 + - uid: 5079 + components: + - type: Transform + pos: -44.5,-15.5 + parent: 2 + - uid: 5080 + components: + - type: Transform + pos: -44.5,-16.5 + parent: 2 + - uid: 5081 + components: + - type: Transform + pos: -45.5,-18.5 + parent: 2 + - uid: 5082 + components: + - type: Transform + pos: -45.5,-16.5 + parent: 2 + - uid: 5083 + components: + - type: Transform + pos: -45.5,-17.5 + parent: 2 + - uid: 5084 + components: + - type: Transform + pos: -46.5,-18.5 + parent: 2 + - uid: 5085 + components: + - type: Transform + pos: -43.5,-15.5 + parent: 2 + - uid: 5086 + components: + - type: Transform + pos: -46.5,-17.5 + parent: 2 + - uid: 5087 + components: + - type: Transform + pos: -46.5,-16.5 + parent: 2 + - uid: 5088 + components: + - type: Transform + pos: -42.5,-17.5 + parent: 2 + - uid: 5089 + components: + - type: Transform + pos: -43.5,-17.5 + parent: 2 + - uid: 5090 + components: + - type: Transform + pos: -43.5,-18.5 + parent: 2 + - uid: 5091 + components: + - type: Transform + pos: -42.5,-15.5 + parent: 2 + - uid: 5092 + components: + - type: Transform + pos: -43.5,-16.5 + parent: 2 + - uid: 5093 + components: + - type: Transform + pos: -44.5,-18.5 + parent: 2 + - uid: 5094 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 + - uid: 5095 + components: + - type: Transform + pos: -44.5,-17.5 + parent: 2 + - uid: 5096 + components: + - type: Transform + pos: -42.5,-16.5 + parent: 2 + - uid: 5097 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 2 + - uid: 5098 + components: + - type: Transform + pos: -40.5,-16.5 + parent: 2 + - uid: 5099 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 5100 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 5101 + components: + - type: Transform + pos: -41.5,-17.5 + parent: 2 + - uid: 5102 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 2 + - uid: 5103 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 5104 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - uid: 5105 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 2 + - uid: 5106 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 2 + - uid: 5107 + components: + - type: Transform + pos: -35.5,-18.5 + parent: 2 + - uid: 5108 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 + - uid: 5109 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 2 + - uid: 5110 + components: + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - uid: 5111 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 + - uid: 5112 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 2 + - uid: 5113 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 5114 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 5115 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 5116 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 2 + - uid: 5117 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 2 + - uid: 5118 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 2 + - uid: 5119 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 5120 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 2 + - uid: 5121 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 5122 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 5123 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 5124 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 5125 + components: + - type: Transform + pos: -54.5,-17.5 + parent: 2 + - uid: 5126 + components: + - type: Transform + pos: -54.5,-16.5 + parent: 2 + - uid: 5127 + components: + - type: Transform + pos: -55.5,-17.5 + parent: 2 + - uid: 5128 + components: + - type: Transform + pos: -55.5,-16.5 + parent: 2 + - uid: 5129 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 2 + - uid: 5130 + components: + - type: Transform + pos: -55.5,-18.5 + parent: 2 + - uid: 5131 + components: + - type: Transform + pos: -54.5,-15.5 + parent: 2 + - uid: 5132 + components: + - type: Transform + pos: -51.5,-15.5 + parent: 2 + - uid: 5133 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 2 + - uid: 5134 + components: + - type: Transform + pos: -53.5,-18.5 + parent: 2 + - uid: 5135 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 2 + - uid: 5136 + components: + - type: Transform + pos: -52.5,-16.5 + parent: 2 + - uid: 5137 + components: + - type: Transform + pos: -53.5,-17.5 + parent: 2 + - uid: 5138 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 2 + - uid: 5139 + components: + - type: Transform + pos: -53.5,-15.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + pos: -54.5,-18.5 + parent: 2 + - uid: 5141 + components: + - type: Transform + pos: -50.5,-17.5 + parent: 2 + - uid: 5142 + components: + - type: Transform + pos: -50.5,-16.5 + parent: 2 + - uid: 5143 + components: + - type: Transform + pos: -50.5,-15.5 + parent: 2 + - uid: 5144 + components: + - type: Transform + pos: -51.5,-18.5 + parent: 2 + - uid: 5145 + components: + - type: Transform + pos: -49.5,-16.5 + parent: 2 + - uid: 5146 + components: + - type: Transform + pos: -50.5,-18.5 + parent: 2 + - uid: 5147 + components: + - type: Transform + pos: -51.5,-17.5 + parent: 2 + - uid: 5148 + components: + - type: Transform + pos: -51.5,-16.5 + parent: 2 + - uid: 5149 + components: + - type: Transform + pos: -52.5,-18.5 + parent: 2 + - uid: 5150 + components: + - type: Transform + pos: -45.5,-15.5 + parent: 2 + - uid: 5151 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 5152 + components: + - type: Transform + pos: -47.5,-15.5 + parent: 2 + - uid: 5153 + components: + - type: Transform + pos: -48.5,-17.5 + parent: 2 + - uid: 5154 + components: + - type: Transform + pos: -48.5,-15.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + pos: -48.5,-16.5 + parent: 2 + - uid: 5156 + components: + - type: Transform + pos: -49.5,-17.5 + parent: 2 + - uid: 5157 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 + - uid: 5158 + components: + - type: Transform + pos: -49.5,-18.5 + parent: 2 + - uid: 5159 + components: + - type: Transform + pos: -47.5,-16.5 + parent: 2 + - uid: 5160 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 2 + - uid: 5161 + components: + - type: Transform + pos: -36.5,-11.5 + parent: 2 + - uid: 5162 + components: + - type: Transform + pos: -35.5,-3.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 2 + - uid: 5164 + components: + - type: Transform + pos: -35.5,0.5 + parent: 2 + - uid: 5165 + components: + - type: Transform + pos: -35.5,2.5 + parent: 2 + - uid: 5166 + components: + - type: Transform + pos: -35.5,3.5 + parent: 2 + - uid: 5167 + components: + - type: Transform + pos: -35.5,4.5 + parent: 2 + - uid: 5168 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 2 + - uid: 5169 + components: + - type: Transform + pos: -36.5,-13.5 + parent: 2 + - uid: 5170 + components: + - type: Transform + pos: -35.5,1.5 + parent: 2 + - uid: 5171 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 2 + - uid: 5172 + components: + - type: Transform + pos: -35.5,-9.5 + parent: 2 + - uid: 5173 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 + - uid: 5174 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 2 + - uid: 5175 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 2 + - uid: 5176 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 2 + - uid: 5177 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - uid: 5178 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 2 + - uid: 5179 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 2 + - uid: 5180 + components: + - type: Transform + pos: -34.5,2.5 + parent: 2 + - uid: 5181 + components: + - type: Transform + pos: -34.5,1.5 + parent: 2 + - uid: 5182 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 2 + - uid: 5183 + components: + - type: Transform + pos: -34.5,3.5 + parent: 2 + - uid: 5184 + components: + - type: Transform + pos: -34.5,4.5 + parent: 2 + - uid: 5185 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 2 + - uid: 5186 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 2 + - uid: 5187 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 5188 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 + - uid: 5189 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 2 + - uid: 5190 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 + - uid: 5191 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 2 + - uid: 5192 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 + - uid: 5193 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 5194 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 2 + - uid: 5195 + components: + - type: Transform + pos: -34.5,-1.5 + parent: 2 + - uid: 5196 + components: + - type: Transform + pos: -33.5,2.5 + parent: 2 + - uid: 5197 + components: + - type: Transform + pos: -34.5,0.5 + parent: 2 + - uid: 5198 + components: + - type: Transform + pos: -33.5,3.5 + parent: 2 + - uid: 5199 + components: + - type: Transform + pos: -34.5,-14.5 + parent: 2 + - uid: 5200 + components: + - type: Transform + pos: -33.5,4.5 + parent: 2 + - uid: 5201 + components: + - type: Transform + pos: -34.5,-13.5 + parent: 2 + - uid: 5202 + components: + - type: Transform + pos: -34.5,-12.5 + parent: 2 + - uid: 5203 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 5205 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - uid: 5206 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 5207 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 2 + - uid: 5208 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 5209 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 2 + - uid: 5210 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 2 + - uid: 5211 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 2 + - uid: 5212 + components: + - type: Transform + pos: -33.5,-8.5 + parent: 2 + - uid: 5213 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 2 + - uid: 5214 + components: + - type: Transform + pos: -33.5,1.5 + parent: 2 + - uid: 5215 + components: + - type: Transform + pos: -33.5,0.5 + parent: 2 + - uid: 5216 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 2 + - uid: 5217 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 2 + - uid: 5218 + components: + - type: Transform + pos: -33.5,-12.5 + parent: 2 + - uid: 5219 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - uid: 5220 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 5221 + components: + - type: Transform + pos: -33.5,-9.5 + parent: 2 + - uid: 5222 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 2 + - uid: 5223 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + pos: -39.5,-10.5 + parent: 2 + - uid: 5225 + components: + - type: Transform + pos: -38.5,0.5 + parent: 2 + - uid: 5226 + components: + - type: Transform + pos: -39.5,-9.5 + parent: 2 + - uid: 5227 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - uid: 5228 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 2 + - uid: 5229 + components: + - type: Transform + pos: -38.5,4.5 + parent: 2 + - uid: 5230 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - uid: 5231 + components: + - type: Transform + pos: -39.5,-3.5 + parent: 2 + - uid: 5232 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 + - uid: 5233 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 5234 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 2 + - uid: 5235 + components: + - type: Transform + pos: -38.5,1.5 + parent: 2 + - uid: 5236 + components: + - type: Transform + pos: -38.5,2.5 + parent: 2 + - uid: 5237 + components: + - type: Transform + pos: -38.5,3.5 + parent: 2 + - uid: 5238 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 2 + - uid: 5239 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 2 + - uid: 5240 + components: + - type: Transform + pos: -39.5,-12.5 + parent: 2 + - uid: 5241 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 2 + - uid: 5242 + components: + - type: Transform + pos: -38.5,-14.5 + parent: 2 + - uid: 5243 + components: + - type: Transform + pos: -38.5,-9.5 + parent: 2 + - uid: 5244 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 5245 + components: + - type: Transform + pos: -37.5,3.5 + parent: 2 + - uid: 5246 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 2 + - uid: 5247 + components: + - type: Transform + pos: -38.5,-5.5 + parent: 2 + - uid: 5248 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 2 + - uid: 5249 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 5250 + components: + - type: Transform + pos: -38.5,-3.5 + parent: 2 + - uid: 5251 + components: + - type: Transform + pos: -37.5,-2.5 + parent: 2 + - uid: 5252 + components: + - type: Transform + pos: -37.5,-1.5 + parent: 2 + - uid: 5253 + components: + - type: Transform + pos: -37.5,1.5 + parent: 2 + - uid: 5254 + components: + - type: Transform + pos: -37.5,0.5 + parent: 2 + - uid: 5255 + components: + - type: Transform + pos: -37.5,4.5 + parent: 2 + - uid: 5256 + components: + - type: Transform + pos: -37.5,-0.5 + parent: 2 + - uid: 5257 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 2 + - uid: 5258 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 2 + - uid: 5259 + components: + - type: Transform + pos: -37.5,2.5 + parent: 2 + - uid: 5260 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - uid: 5261 + components: + - type: Transform + pos: -37.5,-10.5 + parent: 2 + - uid: 5262 + components: + - type: Transform + pos: -37.5,-9.5 + parent: 2 + - uid: 5263 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 + - uid: 5264 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - uid: 5265 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 2 + - uid: 5266 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 2 + - uid: 5267 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 2 + - uid: 5268 + components: + - type: Transform + pos: -37.5,-3.5 + parent: 2 + - uid: 5269 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 2 + - uid: 5270 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 5271 + components: + - type: Transform + pos: -36.5,1.5 + parent: 2 + - uid: 5272 + components: + - type: Transform + pos: -36.5,2.5 + parent: 2 + - uid: 5273 + components: + - type: Transform + pos: -36.5,3.5 + parent: 2 + - uid: 5274 + components: + - type: Transform + pos: -36.5,4.5 + parent: 2 + - uid: 5275 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 + - uid: 5276 + components: + - type: Transform + pos: -37.5,-13.5 + parent: 2 + - uid: 5277 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 + - uid: 5278 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 2 + - uid: 5279 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - uid: 5280 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 + - uid: 5281 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 2 + - uid: 5282 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - uid: 5283 + components: + - type: Transform + pos: -36.5,-3.5 + parent: 2 + - uid: 5284 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 + - uid: 5285 + components: + - type: Transform + pos: -36.5,-2.5 + parent: 2 + - uid: 5286 + components: + - type: Transform + pos: -36.5,-1.5 + parent: 2 + - uid: 5287 + components: + - type: Transform + pos: -36.5,-10.5 + parent: 2 + - uid: 5288 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 + - uid: 5289 + components: + - type: Transform + pos: -42.5,-3.5 + parent: 2 + - uid: 5290 + components: + - type: Transform + pos: -42.5,-13.5 + parent: 2 + - uid: 5291 + components: + - type: Transform + pos: -42.5,-12.5 + parent: 2 + - uid: 5292 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 + - uid: 5293 + components: + - type: Transform + pos: -42.5,-10.5 + parent: 2 + - uid: 5294 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - uid: 5295 + components: + - type: Transform + pos: -42.5,-8.5 + parent: 2 + - uid: 5296 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 5297 + components: + - type: Transform + pos: -42.5,-6.5 + parent: 2 + - uid: 5298 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 2 + - uid: 5299 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 5300 + components: + - type: Transform + pos: -41.5,-1.5 + parent: 2 + - uid: 5301 + components: + - type: Transform + pos: -41.5,-0.5 + parent: 2 + - uid: 5302 + components: + - type: Transform + pos: -41.5,0.5 + parent: 2 + - uid: 5303 + components: + - type: Transform + pos: -41.5,1.5 + parent: 2 + - uid: 5304 + components: + - type: Transform + pos: -41.5,2.5 + parent: 2 + - uid: 5305 + components: + - type: Transform + pos: -41.5,3.5 + parent: 2 + - uid: 5306 + components: + - type: Transform + pos: -41.5,4.5 + parent: 2 + - uid: 5307 + components: + - type: Transform + pos: -42.5,-14.5 + parent: 2 + - uid: 5308 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - uid: 5309 + components: + - type: Transform + pos: -41.5,-10.5 + parent: 2 + - uid: 5310 + components: + - type: Transform + pos: -41.5,-9.5 + parent: 2 + - uid: 5311 + components: + - type: Transform + pos: -41.5,-8.5 + parent: 2 + - uid: 5312 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - uid: 5313 + components: + - type: Transform + pos: -41.5,-6.5 + parent: 2 + - uid: 5314 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 5315 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - uid: 5316 + components: + - type: Transform + pos: -41.5,-3.5 + parent: 2 + - uid: 5317 + components: + - type: Transform + pos: -40.5,-0.5 + parent: 2 + - uid: 5318 + components: + - type: Transform + pos: -40.5,0.5 + parent: 2 + - uid: 5319 + components: + - type: Transform + pos: -40.5,1.5 + parent: 2 + - uid: 5320 + components: + - type: Transform + pos: -40.5,2.5 + parent: 2 + - uid: 5321 + components: + - type: Transform + pos: -40.5,3.5 + parent: 2 + - uid: 5322 + components: + - type: Transform + pos: -40.5,4.5 + parent: 2 + - uid: 5323 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 2 + - uid: 5324 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - uid: 5325 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - uid: 5326 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 5327 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 2 + - uid: 5328 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 + - uid: 5329 + components: + - type: Transform + pos: -40.5,-6.5 + parent: 2 + - uid: 5330 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 5331 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 2 + - uid: 5332 + components: + - type: Transform + pos: -40.5,-3.5 + parent: 2 + - uid: 5333 + components: + - type: Transform + pos: -40.5,-2.5 + parent: 2 + - uid: 5334 + components: + - type: Transform + pos: -40.5,-1.5 + parent: 2 + - uid: 5335 + components: + - type: Transform + pos: -39.5,1.5 + parent: 2 + - uid: 5336 + components: + - type: Transform + pos: -39.5,2.5 + parent: 2 + - uid: 5337 + components: + - type: Transform + pos: -39.5,3.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 5339 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 2 + - uid: 5340 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 2 + - uid: 5342 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 2 + - uid: 5343 + components: + - type: Transform + pos: -40.5,-10.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 + - uid: 5345 + components: + - type: Transform + pos: -39.5,-8.5 + parent: 2 + - uid: 5346 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - uid: 5347 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 2 + - uid: 5348 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 2 + - uid: 5349 + components: + - type: Transform + pos: -38.5,-1.5 + parent: 2 + - uid: 5350 + components: + - type: Transform + pos: -39.5,-0.5 + parent: 2 + - uid: 5351 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 + - uid: 5352 + components: + - type: Transform + pos: -45.5,-7.5 + parent: 2 + - uid: 5353 + components: + - type: Transform + pos: -45.5,-6.5 + parent: 2 + - uid: 5354 + components: + - type: Transform + pos: -45.5,-5.5 + parent: 2 + - uid: 5355 + components: + - type: Transform + pos: -45.5,-4.5 + parent: 2 + - uid: 5356 + components: + - type: Transform + pos: -45.5,-3.5 + parent: 2 + - uid: 5357 + components: + - type: Transform + pos: -45.5,-2.5 + parent: 2 + - uid: 5358 + components: + - type: Transform + pos: -45.5,-1.5 + parent: 2 + - uid: 5359 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 5360 + components: + - type: Transform + pos: -45.5,0.5 + parent: 2 + - uid: 5361 + components: + - type: Transform + pos: -44.5,3.5 + parent: 2 + - uid: 5362 + components: + - type: Transform + pos: -44.5,4.5 + parent: 2 + - uid: 5363 + components: + - type: Transform + pos: -45.5,-14.5 + parent: 2 + - uid: 5364 + components: + - type: Transform + pos: -45.5,-13.5 + parent: 2 + - uid: 5365 + components: + - type: Transform + pos: -45.5,-12.5 + parent: 2 + - uid: 5366 + components: + - type: Transform + pos: -45.5,-11.5 + parent: 2 + - uid: 5367 + components: + - type: Transform + pos: -45.5,-10.5 + parent: 2 + - uid: 5368 + components: + - type: Transform + pos: -45.5,-9.5 + parent: 2 + - uid: 5369 + components: + - type: Transform + pos: -45.5,-8.5 + parent: 2 + - uid: 5370 + components: + - type: Transform + pos: -44.5,-12.5 + parent: 2 + - uid: 5371 + components: + - type: Transform + pos: -44.5,-4.5 + parent: 2 + - uid: 5372 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 2 + - uid: 5373 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 2 + - uid: 5374 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 2 + - uid: 5375 + components: + - type: Transform + pos: -44.5,-0.5 + parent: 2 + - uid: 5376 + components: + - type: Transform + pos: -44.5,0.5 + parent: 2 + - uid: 5377 + components: + - type: Transform + pos: -44.5,1.5 + parent: 2 + - uid: 5378 + components: + - type: Transform + pos: -44.5,2.5 + parent: 2 + - uid: 5379 + components: + - type: Transform + pos: -44.5,-14.5 + parent: 2 + - uid: 5380 + components: + - type: Transform + pos: -44.5,-13.5 + parent: 2 + - uid: 5381 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 + - uid: 5382 + components: + - type: Transform + pos: -44.5,-10.5 + parent: 2 + - uid: 5383 + components: + - type: Transform + pos: -44.5,-9.5 + parent: 2 + - uid: 5384 + components: + - type: Transform + pos: -44.5,-8.5 + parent: 2 + - uid: 5385 + components: + - type: Transform + pos: -44.5,-7.5 + parent: 2 + - uid: 5386 + components: + - type: Transform + pos: -44.5,-6.5 + parent: 2 + - uid: 5387 + components: + - type: Transform + pos: -44.5,-5.5 + parent: 2 + - uid: 5388 + components: + - type: Transform + pos: -43.5,-2.5 + parent: 2 + - uid: 5389 + components: + - type: Transform + pos: -43.5,-3.5 + parent: 2 + - uid: 5390 + components: + - type: Transform + pos: -43.5,-0.5 + parent: 2 + - uid: 5391 + components: + - type: Transform + pos: -43.5,0.5 + parent: 2 + - uid: 5392 + components: + - type: Transform + pos: -43.5,-1.5 + parent: 2 + - uid: 5393 + components: + - type: Transform + pos: -43.5,1.5 + parent: 2 + - uid: 5394 + components: + - type: Transform + pos: -43.5,2.5 + parent: 2 + - uid: 5395 + components: + - type: Transform + pos: -43.5,3.5 + parent: 2 + - uid: 5396 + components: + - type: Transform + pos: -43.5,4.5 + parent: 2 + - uid: 5397 + components: + - type: Transform + pos: -43.5,-12.5 + parent: 2 + - uid: 5398 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 2 + - uid: 5399 + components: + - type: Transform + pos: -43.5,-10.5 + parent: 2 + - uid: 5400 + components: + - type: Transform + pos: -43.5,-9.5 + parent: 2 + - uid: 5401 + components: + - type: Transform + pos: -43.5,-8.5 + parent: 2 + - uid: 5402 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + pos: -43.5,-6.5 + parent: 2 + - uid: 5404 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 2 + - uid: 5405 + components: + - type: Transform + pos: -43.5,-4.5 + parent: 2 + - uid: 5406 + components: + - type: Transform + pos: -42.5,-1.5 + parent: 2 + - uid: 5407 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 5408 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - uid: 5409 + components: + - type: Transform + pos: -42.5,1.5 + parent: 2 + - uid: 5410 + components: + - type: Transform + pos: -42.5,2.5 + parent: 2 + - uid: 5411 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 + - uid: 5412 + components: + - type: Transform + pos: -42.5,4.5 + parent: 2 + - uid: 5413 + components: + - type: Transform + pos: -43.5,-14.5 + parent: 2 + - uid: 5414 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 + - uid: 5415 + components: + - type: Transform + pos: -42.5,-2.5 + parent: 2 + - uid: 5416 + components: + - type: Transform + pos: -48.5,3.5 + parent: 2 + - uid: 5417 + components: + - type: Transform + pos: -48.5,4.5 + parent: 2 + - uid: 5418 + components: + - type: Transform + pos: -48.5,-5.5 + parent: 2 + - uid: 5419 + components: + - type: Transform + pos: -48.5,-4.5 + parent: 2 + - uid: 5420 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 2 + - uid: 5421 + components: + - type: Transform + pos: -48.5,-2.5 + parent: 2 + - uid: 5422 + components: + - type: Transform + pos: -48.5,-1.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 2 + - uid: 5424 + components: + - type: Transform + pos: -48.5,0.5 + parent: 2 + - uid: 5425 + components: + - type: Transform + pos: -48.5,1.5 + parent: 2 + - uid: 5426 + components: + - type: Transform + pos: -48.5,2.5 + parent: 2 + - uid: 5427 + components: + - type: Transform + pos: -48.5,-14.5 + parent: 2 + - uid: 5428 + components: + - type: Transform + pos: -48.5,-13.5 + parent: 2 + - uid: 5429 + components: + - type: Transform + pos: -48.5,-12.5 + parent: 2 + - uid: 5430 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 2 + - uid: 5431 + components: + - type: Transform + pos: -48.5,-10.5 + parent: 2 + - uid: 5432 + components: + - type: Transform + pos: -48.5,-9.5 + parent: 2 + - uid: 5433 + components: + - type: Transform + pos: -48.5,-8.5 + parent: 2 + - uid: 5434 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 2 + - uid: 5435 + components: + - type: Transform + pos: -48.5,-6.5 + parent: 2 + - uid: 5436 + components: + - type: Transform + pos: -47.5,-3.5 + parent: 2 + - uid: 5437 + components: + - type: Transform + pos: -47.5,-2.5 + parent: 2 + - uid: 5438 + components: + - type: Transform + pos: -47.5,-1.5 + parent: 2 + - uid: 5439 + components: + - type: Transform + pos: -47.5,-0.5 + parent: 2 + - uid: 5440 + components: + - type: Transform + pos: -47.5,0.5 + parent: 2 + - uid: 5441 + components: + - type: Transform + pos: -47.5,1.5 + parent: 2 + - uid: 5442 + components: + - type: Transform + pos: -47.5,2.5 + parent: 2 + - uid: 5443 + components: + - type: Transform + pos: -47.5,3.5 + parent: 2 + - uid: 5444 + components: + - type: Transform + pos: -47.5,4.5 + parent: 2 + - uid: 5445 + components: + - type: Transform + pos: -47.5,-12.5 + parent: 2 + - uid: 5446 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 2 + - uid: 5447 + components: + - type: Transform + pos: -47.5,-10.5 + parent: 2 + - uid: 5448 + components: + - type: Transform + pos: -47.5,-9.5 + parent: 2 + - uid: 5449 + components: + - type: Transform + pos: -47.5,-8.5 + parent: 2 + - uid: 5450 + components: + - type: Transform + pos: -47.5,-7.5 + parent: 2 + - uid: 5451 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - uid: 5452 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - uid: 5453 + components: + - type: Transform + pos: -47.5,-4.5 + parent: 2 + - uid: 5454 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 2 + - uid: 5455 + components: + - type: Transform + pos: -46.5,-0.5 + parent: 2 + - uid: 5456 + components: + - type: Transform + pos: -46.5,0.5 + parent: 2 + - uid: 5457 + components: + - type: Transform + pos: -46.5,1.5 + parent: 2 + - uid: 5458 + components: + - type: Transform + pos: -46.5,2.5 + parent: 2 + - uid: 5459 + components: + - type: Transform + pos: -46.5,4.5 + parent: 2 + - uid: 5460 + components: + - type: Transform + pos: -47.5,-14.5 + parent: 2 + - uid: 5461 + components: + - type: Transform + pos: -47.5,-13.5 + parent: 2 + - uid: 5462 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + pos: -46.5,-10.5 + parent: 2 + - uid: 5464 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 + - uid: 5465 + components: + - type: Transform + pos: -46.5,-8.5 + parent: 2 + - uid: 5466 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 + - uid: 5467 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 2 + - uid: 5468 + components: + - type: Transform + pos: -46.5,-5.5 + parent: 2 + - uid: 5469 + components: + - type: Transform + pos: -46.5,-4.5 + parent: 2 + - uid: 5470 + components: + - type: Transform + pos: -46.5,-3.5 + parent: 2 + - uid: 5471 + components: + - type: Transform + pos: -46.5,-2.5 + parent: 2 + - uid: 5472 + components: + - type: Transform + pos: -45.5,1.5 + parent: 2 + - uid: 5473 + components: + - type: Transform + pos: -45.5,2.5 + parent: 2 + - uid: 5474 + components: + - type: Transform + pos: -45.5,3.5 + parent: 2 + - uid: 5475 + components: + - type: Transform + pos: -45.5,4.5 + parent: 2 + - uid: 5476 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 + - uid: 5477 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 2 + - uid: 5478 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 + - uid: 5479 + components: + - type: Transform + pos: -46.5,-11.5 + parent: 2 + - uid: 5480 + components: + - type: Transform + pos: -50.5,2.5 + parent: 2 + - uid: 5481 + components: + - type: Transform + pos: -50.5,3.5 + parent: 2 + - uid: 5482 + components: + - type: Transform + pos: -50.5,4.5 + parent: 2 + - uid: 5483 + components: + - type: Transform + pos: -51.5,-14.5 + parent: 2 + - uid: 5484 + components: + - type: Transform + pos: -51.5,-13.5 + parent: 2 + - uid: 5485 + components: + - type: Transform + pos: -51.5,-12.5 + parent: 2 + - uid: 5486 + components: + - type: Transform + pos: -51.5,-11.5 + parent: 2 + - uid: 5487 + components: + - type: Transform + pos: -51.5,-10.5 + parent: 2 + - uid: 5488 + components: + - type: Transform + pos: -51.5,-9.5 + parent: 2 + - uid: 5489 + components: + - type: Transform + pos: -51.5,0.5 + parent: 2 + - uid: 5490 + components: + - type: Transform + pos: -51.5,1.5 + parent: 2 + - uid: 5491 + components: + - type: Transform + pos: -51.5,2.5 + parent: 2 + - uid: 5492 + components: + - type: Transform + pos: -51.5,3.5 + parent: 2 + - uid: 5493 + components: + - type: Transform + pos: -51.5,4.5 + parent: 2 + - uid: 5494 + components: + - type: Transform + pos: -52.5,-14.5 + parent: 2 + - uid: 5495 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - uid: 5496 + components: + - type: Transform + pos: -52.5,-12.5 + parent: 2 + - uid: 5497 + components: + - type: Transform + pos: -52.5,-11.5 + parent: 2 + - uid: 5498 + components: + - type: Transform + pos: -51.5,-8.5 + parent: 2 + - uid: 5499 + components: + - type: Transform + pos: -51.5,-7.5 + parent: 2 + - uid: 5500 + components: + - type: Transform + pos: -51.5,-6.5 + parent: 2 + - uid: 5501 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 + - uid: 5502 + components: + - type: Transform + pos: -51.5,-4.5 + parent: 2 + - uid: 5503 + components: + - type: Transform + pos: -51.5,-3.5 + parent: 2 + - uid: 5504 + components: + - type: Transform + pos: -51.5,-2.5 + parent: 2 + - uid: 5505 + components: + - type: Transform + pos: -51.5,-1.5 + parent: 2 + - uid: 5506 + components: + - type: Transform + pos: -51.5,-0.5 + parent: 2 + - uid: 5507 + components: + - type: Transform + pos: -50.5,-6.5 + parent: 2 + - uid: 5508 + components: + - type: Transform + pos: -50.5,-5.5 + parent: 2 + - uid: 5509 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 2 + - uid: 5510 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 + - uid: 5511 + components: + - type: Transform + pos: -50.5,-2.5 + parent: 2 + - uid: 5512 + components: + - type: Transform + pos: -50.5,-1.5 + parent: 2 + - uid: 5513 + components: + - type: Transform + pos: -50.5,-0.5 + parent: 2 + - uid: 5514 + components: + - type: Transform + pos: -50.5,0.5 + parent: 2 + - uid: 5515 + components: + - type: Transform + pos: -50.5,1.5 + parent: 2 + - uid: 5516 + components: + - type: Transform + pos: -49.5,4.5 + parent: 2 + - uid: 5517 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + pos: -50.5,-13.5 + parent: 2 + - uid: 5519 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + pos: -50.5,-11.5 + parent: 2 + - uid: 5521 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 5522 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 5523 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 5524 + components: + - type: Transform + pos: -50.5,-7.5 + parent: 2 + - uid: 5525 + components: + - type: Transform + pos: -49.5,-4.5 + parent: 2 + - uid: 5526 + components: + - type: Transform + pos: -49.5,-3.5 + parent: 2 + - uid: 5527 + components: + - type: Transform + pos: -49.5,-2.5 + parent: 2 + - uid: 5528 + components: + - type: Transform + pos: -49.5,-1.5 + parent: 2 + - uid: 5529 + components: + - type: Transform + pos: -49.5,-0.5 + parent: 2 + - uid: 5530 + components: + - type: Transform + pos: -49.5,0.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: -49.5,1.5 + parent: 2 + - uid: 5532 + components: + - type: Transform + pos: -49.5,2.5 + parent: 2 + - uid: 5533 + components: + - type: Transform + pos: -49.5,3.5 + parent: 2 + - uid: 5534 + components: + - type: Transform + pos: -49.5,-13.5 + parent: 2 + - uid: 5535 + components: + - type: Transform + pos: -49.5,-12.5 + parent: 2 + - uid: 5536 + components: + - type: Transform + pos: -49.5,-11.5 + parent: 2 + - uid: 5537 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 2 + - uid: 5538 + components: + - type: Transform + pos: -49.5,-9.5 + parent: 2 + - uid: 5539 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 2 + - uid: 5540 + components: + - type: Transform + pos: -49.5,-7.5 + parent: 2 + - uid: 5541 + components: + - type: Transform + pos: -49.5,-6.5 + parent: 2 + - uid: 5542 + components: + - type: Transform + pos: -49.5,-5.5 + parent: 2 + - uid: 5543 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - uid: 5544 + components: + - type: Transform + pos: -55.5,-8.5 + parent: 2 + - uid: 5545 + components: + - type: Transform + pos: -55.5,-7.5 + parent: 2 + - uid: 5546 + components: + - type: Transform + pos: -54.5,2.5 + parent: 2 + - uid: 5547 + components: + - type: Transform + pos: -54.5,3.5 + parent: 2 + - uid: 5548 + components: + - type: Transform + pos: -54.5,4.5 + parent: 2 + - uid: 5549 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - uid: 5550 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 + - uid: 5551 + components: + - type: Transform + pos: -55.5,-12.5 + parent: 2 + - uid: 5552 + components: + - type: Transform + pos: -55.5,-11.5 + parent: 2 + - uid: 5553 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 + - uid: 5554 + components: + - type: Transform + pos: -55.5,-9.5 + parent: 2 + - uid: 5555 + components: + - type: Transform + pos: -54.5,-6.5 + parent: 2 + - uid: 5556 + components: + - type: Transform + pos: -54.5,-5.5 + parent: 2 + - uid: 5557 + components: + - type: Transform + pos: -54.5,-4.5 + parent: 2 + - uid: 5558 + components: + - type: Transform + pos: -54.5,-3.5 + parent: 2 + - uid: 5559 + components: + - type: Transform + pos: -54.5,-2.5 + parent: 2 + - uid: 5560 + components: + - type: Transform + pos: -54.5,-1.5 + parent: 2 + - uid: 5561 + components: + - type: Transform + pos: -54.5,-0.5 + parent: 2 + - uid: 5562 + components: + - type: Transform + pos: -54.5,0.5 + parent: 2 + - uid: 5563 + components: + - type: Transform + pos: -54.5,1.5 + parent: 2 + - uid: 5564 + components: + - type: Transform + pos: -53.5,4.5 + parent: 2 + - uid: 5565 + components: + - type: Transform + pos: -54.5,-14.5 + parent: 2 + - uid: 5566 + components: + - type: Transform + pos: -54.5,-13.5 + parent: 2 + - uid: 5567 + components: + - type: Transform + pos: -54.5,-12.5 + parent: 2 + - uid: 5568 + components: + - type: Transform + pos: -54.5,-11.5 + parent: 2 + - uid: 5569 + components: + - type: Transform + pos: -54.5,-10.5 + parent: 2 + - uid: 5570 + components: + - type: Transform + pos: -54.5,-9.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + pos: -54.5,-8.5 + parent: 2 + - uid: 5572 + components: + - type: Transform + pos: -54.5,-7.5 + parent: 2 + - uid: 5573 + components: + - type: Transform + pos: -53.5,-4.5 + parent: 2 + - uid: 5574 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 2 + - uid: 5575 + components: + - type: Transform + pos: -53.5,-2.5 + parent: 2 + - uid: 5576 + components: + - type: Transform + pos: -53.5,-1.5 + parent: 2 + - uid: 5577 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 2 + - uid: 5578 + components: + - type: Transform + pos: -53.5,0.5 + parent: 2 + - uid: 5579 + components: + - type: Transform + pos: -53.5,1.5 + parent: 2 + - uid: 5580 + components: + - type: Transform + pos: -53.5,2.5 + parent: 2 + - uid: 5581 + components: + - type: Transform + pos: -53.5,3.5 + parent: 2 + - uid: 5582 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 5583 + components: + - type: Transform + pos: -53.5,-12.5 + parent: 2 + - uid: 5584 + components: + - type: Transform + pos: -53.5,-11.5 + parent: 2 + - uid: 5585 + components: + - type: Transform + pos: -53.5,-10.5 + parent: 2 + - uid: 5586 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 + - uid: 5587 + components: + - type: Transform + pos: -53.5,-8.5 + parent: 2 + - uid: 5588 + components: + - type: Transform + pos: -53.5,-7.5 + parent: 2 + - uid: 5589 + components: + - type: Transform + pos: -53.5,-6.5 + parent: 2 + - uid: 5590 + components: + - type: Transform + pos: -53.5,-5.5 + parent: 2 + - uid: 5591 + components: + - type: Transform + pos: -52.5,-2.5 + parent: 2 + - uid: 5592 + components: + - type: Transform + pos: -52.5,-1.5 + parent: 2 + - uid: 5593 + components: + - type: Transform + pos: -52.5,-0.5 + parent: 2 + - uid: 5594 + components: + - type: Transform + pos: -52.5,0.5 + parent: 2 + - uid: 5595 + components: + - type: Transform + pos: -52.5,1.5 + parent: 2 + - uid: 5596 + components: + - type: Transform + pos: -52.5,2.5 + parent: 2 + - uid: 5597 + components: + - type: Transform + pos: -52.5,3.5 + parent: 2 + - uid: 5598 + components: + - type: Transform + pos: -52.5,4.5 + parent: 2 + - uid: 5599 + components: + - type: Transform + pos: -53.5,-14.5 + parent: 2 + - uid: 5600 + components: + - type: Transform + pos: -52.5,-10.5 + parent: 2 + - uid: 5601 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 2 + - uid: 5602 + components: + - type: Transform + pos: -52.5,-8.5 + parent: 2 + - uid: 5603 + components: + - type: Transform + pos: -52.5,-7.5 + parent: 2 + - uid: 5604 + components: + - type: Transform + pos: -52.5,-6.5 + parent: 2 + - uid: 5605 + components: + - type: Transform + pos: -52.5,-5.5 + parent: 2 + - uid: 5606 + components: + - type: Transform + pos: -52.5,-4.5 + parent: 2 + - uid: 5607 + components: + - type: Transform + pos: -52.5,-3.5 + parent: 2 + - uid: 5608 + components: + - type: Transform + pos: -56.5,-7.5 + parent: 2 + - uid: 5609 + components: + - type: Transform + pos: -56.5,-6.5 + parent: 2 + - uid: 5610 + components: + - type: Transform + pos: -56.5,-5.5 + parent: 2 + - uid: 5611 + components: + - type: Transform + pos: -56.5,-4.5 + parent: 2 + - uid: 5612 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 2 + - uid: 5613 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 2 + - uid: 5614 + components: + - type: Transform + pos: -56.5,-1.5 + parent: 2 + - uid: 5615 + components: + - type: Transform + pos: -56.5,-0.5 + parent: 2 + - uid: 5616 + components: + - type: Transform + pos: -56.5,0.5 + parent: 2 + - uid: 5617 + components: + - type: Transform + pos: -56.5,1.5 + parent: 2 + - uid: 5618 + components: + - type: Transform + pos: -56.5,2.5 + parent: 2 + - uid: 5619 + components: + - type: Transform + pos: -56.5,3.5 + parent: 2 + - uid: 5620 + components: + - type: Transform + pos: -56.5,4.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + pos: -55.5,3.5 + parent: 2 + - uid: 5622 + components: + - type: Transform + pos: -55.5,4.5 + parent: 2 + - uid: 5623 + components: + - type: Transform + pos: -56.5,-14.5 + parent: 2 + - uid: 5624 + components: + - type: Transform + pos: -56.5,-13.5 + parent: 2 + - uid: 5625 + components: + - type: Transform + pos: -56.5,-12.5 + parent: 2 + - uid: 5626 + components: + - type: Transform + pos: -56.5,-11.5 + parent: 2 + - uid: 5627 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - uid: 5628 + components: + - type: Transform + pos: -56.5,-9.5 + parent: 2 + - uid: 5629 + components: + - type: Transform + pos: -56.5,-8.5 + parent: 2 + - uid: 5630 + components: + - type: Transform + pos: -55.5,-5.5 + parent: 2 + - uid: 5631 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 2 + - uid: 5632 + components: + - type: Transform + pos: -55.5,-3.5 + parent: 2 + - uid: 5633 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 2 + - uid: 5634 + components: + - type: Transform + pos: -55.5,-1.5 + parent: 2 + - uid: 5635 + components: + - type: Transform + pos: -55.5,-0.5 + parent: 2 + - uid: 5636 + components: + - type: Transform + pos: -55.5,0.5 + parent: 2 + - uid: 5637 + components: + - type: Transform + pos: -55.5,1.5 + parent: 2 + - uid: 5638 + components: + - type: Transform + pos: -55.5,2.5 + parent: 2 + - uid: 5639 + components: + - type: Transform + pos: -55.5,-6.5 + parent: 2 + - uid: 5651 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 2 + - uid: 5652 + components: + - type: Transform + pos: -28.5,-3.5 + parent: 2 + - uid: 5653 + components: + - type: Transform + pos: -29.5,0.5 + parent: 2 + - uid: 5654 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 5655 + components: + - type: Transform + pos: -28.5,-1.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - uid: 5657 + components: + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 5658 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - uid: 5659 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 5660 + components: + - type: Transform + pos: -31.5,0.5 + parent: 2 + - uid: 5661 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 2 + - uid: 5662 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 2 + - uid: 5663 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 2 + - uid: 5664 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 2 + - uid: 5665 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 5666 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 5667 + components: + - type: Transform + pos: -30.5,0.5 + parent: 2 + - uid: 5668 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 5669 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 2 + - uid: 5670 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 2 + - uid: 5671 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 5672 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 + - uid: 5673 + components: + - type: Transform + pos: -32.5,0.5 + parent: 2 + - uid: 5674 + components: + - type: Transform + pos: -31.5,-3.5 + parent: 2 + - uid: 5675 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 2 + - uid: 5676 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - uid: 5677 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 5678 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 2 + - uid: 5679 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 5680 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 2 + - uid: 5681 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 + - uid: 5682 + components: + - type: Transform + pos: -26.5,-1.5 + parent: 2 + - uid: 5683 + components: + - type: Transform + pos: -29.5,-0.5 + parent: 2 + - uid: 5684 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - uid: 5685 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 + - uid: 5686 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - uid: 5687 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 5688 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 5689 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 2 + - uid: 5690 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 2 + - uid: 5691 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 2 + - uid: 5692 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - uid: 5700 + components: + - type: Transform + pos: -32.5,1.5 + parent: 2 + - uid: 5712 + components: + - type: Transform + pos: -29.5,4.5 + parent: 2 + - uid: 5715 + components: + - type: Transform + pos: -32.5,2.5 + parent: 2 + - uid: 5725 + components: + - type: Transform + pos: -32.5,3.5 + parent: 2 + - uid: 5726 + components: + - type: Transform + pos: -32.5,4.5 + parent: 2 + - uid: 5731 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 5732 + components: + - type: Transform + pos: -49.5,5.5 + parent: 2 + - uid: 5733 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 + - uid: 5734 + components: + - type: Transform + pos: -43.5,7.5 + parent: 2 + - uid: 5735 + components: + - type: Transform + pos: -43.5,5.5 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: -43.5,6.5 + parent: 2 + - uid: 5737 + components: + - type: Transform + pos: -44.5,7.5 + parent: 2 + - uid: 5738 + components: + - type: Transform + pos: -44.5,6.5 + parent: 2 + - uid: 5739 + components: + - type: Transform + pos: -45.5,6.5 + parent: 2 + - uid: 5740 + components: + - type: Transform + pos: -45.5,7.5 + parent: 2 + - uid: 5741 + components: + - type: Transform + pos: -44.5,5.5 + parent: 2 + - uid: 5742 + components: + - type: Transform + pos: -40.5,5.5 + parent: 2 + - uid: 5743 + components: + - type: Transform + pos: -40.5,6.5 + parent: 2 + - uid: 5744 + components: + - type: Transform + pos: -40.5,7.5 + parent: 2 + - uid: 5745 + components: + - type: Transform + pos: -41.5,5.5 + parent: 2 + - uid: 5746 + components: + - type: Transform + pos: -41.5,6.5 + parent: 2 + - uid: 5747 + components: + - type: Transform + pos: -42.5,5.5 + parent: 2 + - uid: 5748 + components: + - type: Transform + pos: -42.5,6.5 + parent: 2 + - uid: 5749 + components: + - type: Transform + pos: -41.5,7.5 + parent: 2 + - uid: 5750 + components: + - type: Transform + pos: -42.5,7.5 + parent: 2 + - uid: 5751 + components: + - type: Transform + pos: -36.5,7.5 + parent: 2 + - uid: 5752 + components: + - type: Transform + pos: -37.5,6.5 + parent: 2 + - uid: 5753 + components: + - type: Transform + pos: -37.5,7.5 + parent: 2 + - uid: 5754 + components: + - type: Transform + pos: -38.5,6.5 + parent: 2 + - uid: 5755 + components: + - type: Transform + pos: -38.5,5.5 + parent: 2 + - uid: 5756 + components: + - type: Transform + pos: -38.5,7.5 + parent: 2 + - uid: 5757 + components: + - type: Transform + pos: -39.5,5.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + pos: -39.5,6.5 + parent: 2 + - uid: 5759 + components: + - type: Transform + pos: -39.5,7.5 + parent: 2 + - uid: 5760 + components: + - type: Transform + pos: -34.5,5.5 + parent: 2 + - uid: 5761 + components: + - type: Transform + pos: -34.5,6.5 + parent: 2 + - uid: 5762 + components: + - type: Transform + pos: -34.5,7.5 + parent: 2 + - uid: 5763 + components: + - type: Transform + pos: -35.5,5.5 + parent: 2 + - uid: 5764 + components: + - type: Transform + pos: -31.5,7.5 + parent: 2 + - uid: 5765 + components: + - type: Transform + pos: -35.5,6.5 + parent: 2 + - uid: 5766 + components: + - type: Transform + pos: -35.5,7.5 + parent: 2 + - uid: 5767 + components: + - type: Transform + pos: -36.5,6.5 + parent: 2 + - uid: 5768 + components: + - type: Transform + pos: -37.5,5.5 + parent: 2 + - uid: 5769 + components: + - type: Transform + pos: -31.5,5.5 + parent: 2 + - uid: 5770 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 5771 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 + - uid: 5772 + components: + - type: Transform + pos: -29.5,6.5 + parent: 2 + - uid: 5773 + components: + - type: Transform + pos: -32.5,7.5 + parent: 2 + - uid: 5774 + components: + - type: Transform + pos: -33.5,5.5 + parent: 2 + - uid: 5775 + components: + - type: Transform + pos: -32.5,6.5 + parent: 2 + - uid: 5776 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 + - uid: 5777 + components: + - type: Transform + pos: -33.5,6.5 + parent: 2 + - uid: 5780 + components: + - type: Transform + pos: -30.5,3.5 + parent: 2 + - uid: 5781 + components: + - type: Transform + pos: -29.5,5.5 + parent: 2 + - uid: 5782 + components: + - type: Transform + pos: -29.5,7.5 + parent: 2 + - uid: 5783 + components: + - type: Transform + pos: -30.5,5.5 + parent: 2 + - uid: 5784 + components: + - type: Transform + pos: -30.5,6.5 + parent: 2 + - uid: 5785 + components: + - type: Transform + pos: -30.5,7.5 + parent: 2 + - uid: 5786 + components: + - type: Transform + pos: -46.5,5.5 + parent: 2 + - uid: 5787 + components: + - type: Transform + pos: -46.5,6.5 + parent: 2 + - uid: 5788 + components: + - type: Transform + pos: -47.5,5.5 + parent: 2 + - uid: 5789 + components: + - type: Transform + pos: -46.5,7.5 + parent: 2 + - uid: 5790 + components: + - type: Transform + pos: -47.5,7.5 + parent: 2 + - uid: 5791 + components: + - type: Transform + pos: -47.5,6.5 + parent: 2 + - uid: 5792 + components: + - type: Transform + pos: -48.5,6.5 + parent: 2 + - uid: 5793 + components: + - type: Transform + pos: -48.5,5.5 + parent: 2 + - uid: 5794 + components: + - type: Transform + pos: -45.5,5.5 + parent: 2 + - uid: 5795 + components: + - type: Transform + pos: -50.5,6.5 + parent: 2 + - uid: 5796 + components: + - type: Transform + pos: -49.5,7.5 + parent: 2 + - uid: 5797 + components: + - type: Transform + pos: -48.5,7.5 + parent: 2 + - uid: 5798 + components: + - type: Transform + pos: -50.5,7.5 + parent: 2 + - uid: 5799 + components: + - type: Transform + pos: -51.5,5.5 + parent: 2 + - uid: 5800 + components: + - type: Transform + pos: -51.5,7.5 + parent: 2 + - uid: 5801 + components: + - type: Transform + pos: -51.5,6.5 + parent: 2 + - uid: 5802 + components: + - type: Transform + pos: -52.5,5.5 + parent: 2 + - uid: 5803 + components: + - type: Transform + pos: -52.5,7.5 + parent: 2 + - uid: 5804 + components: + - type: Transform + pos: -52.5,6.5 + parent: 2 + - uid: 5805 + components: + - type: Transform + pos: -50.5,5.5 + parent: 2 + - uid: 5806 + components: + - type: Transform + pos: -53.5,6.5 + parent: 2 + - uid: 5807 + components: + - type: Transform + pos: -53.5,5.5 + parent: 2 + - uid: 5808 + components: + - type: Transform + pos: -54.5,5.5 + parent: 2 + - uid: 5809 + components: + - type: Transform + pos: -55.5,5.5 + parent: 2 + - uid: 5810 + components: + - type: Transform + pos: -30.5,9.5 + parent: 2 + - uid: 5811 + components: + - type: Transform + pos: -33.5,8.5 + parent: 2 + - uid: 5812 + components: + - type: Transform + pos: -32.5,9.5 + parent: 2 + - uid: 5813 + components: + - type: Transform + pos: -32.5,8.5 + parent: 2 + - uid: 5814 + components: + - type: Transform + pos: -31.5,8.5 + parent: 2 + - uid: 5815 + components: + - type: Transform + pos: -33.5,9.5 + parent: 2 + - uid: 5816 + components: + - type: Transform + pos: -31.5,9.5 + parent: 2 + - uid: 5817 + components: + - type: Transform + pos: -30.5,8.5 + parent: 2 + - uid: 5818 + components: + - type: Transform + pos: -34.5,8.5 + parent: 2 + - uid: 5819 + components: + - type: Transform + pos: -29.5,8.5 + parent: 2 + - uid: 5820 + components: + - type: Transform + pos: -29.5,9.5 + parent: 2 + - uid: 5821 + components: + - type: Transform + pos: -41.5,9.5 + parent: 2 + - uid: 5822 + components: + - type: Transform + pos: -37.5,9.5 + parent: 2 + - uid: 5823 + components: + - type: Transform + pos: -38.5,9.5 + parent: 2 + - uid: 5824 + components: + - type: Transform + pos: -36.5,9.5 + parent: 2 + - uid: 5825 + components: + - type: Transform + pos: -36.5,8.5 + parent: 2 + - uid: 5826 + components: + - type: Transform + pos: -39.5,9.5 + parent: 2 + - uid: 5827 + components: + - type: Transform + pos: -35.5,9.5 + parent: 2 + - uid: 5828 + components: + - type: Transform + pos: -34.5,9.5 + parent: 2 + - uid: 5829 + components: + - type: Transform + pos: -35.5,8.5 + parent: 2 + - uid: 5830 + components: + - type: Transform + pos: -42.5,8.5 + parent: 2 + - uid: 5831 + components: + - type: Transform + pos: -44.5,9.5 + parent: 2 + - uid: 5832 + components: + - type: Transform + pos: -42.5,9.5 + parent: 2 + - uid: 5833 + components: + - type: Transform + pos: -40.5,8.5 + parent: 2 + - uid: 5834 + components: + - type: Transform + pos: -41.5,8.5 + parent: 2 + - uid: 5835 + components: + - type: Transform + pos: -39.5,8.5 + parent: 2 + - uid: 5836 + components: + - type: Transform + pos: -40.5,9.5 + parent: 2 + - uid: 5837 + components: + - type: Transform + pos: -38.5,8.5 + parent: 2 + - uid: 5838 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - uid: 5839 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 5840 + components: + - type: Transform + pos: -46.5,9.5 + parent: 2 + - uid: 5841 + components: + - type: Transform + pos: -46.5,8.5 + parent: 2 + - uid: 5842 + components: + - type: Transform + pos: -48.5,8.5 + parent: 2 + - uid: 5843 + components: + - type: Transform + pos: -45.5,9.5 + parent: 2 + - uid: 5844 + components: + - type: Transform + pos: -45.5,8.5 + parent: 2 + - uid: 5845 + components: + - type: Transform + pos: -44.5,8.5 + parent: 2 + - uid: 5846 + components: + - type: Transform + pos: -43.5,8.5 + parent: 2 + - uid: 5847 + components: + - type: Transform + pos: -43.5,9.5 + parent: 2 + - uid: 5848 + components: + - type: Transform + pos: -51.5,8.5 + parent: 2 + - uid: 5849 + components: + - type: Transform + pos: -50.5,8.5 + parent: 2 + - uid: 5850 + components: + - type: Transform + pos: -50.5,9.5 + parent: 2 + - uid: 5851 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 + - uid: 5852 + components: + - type: Transform + pos: -51.5,9.5 + parent: 2 + - uid: 5853 + components: + - type: Transform + pos: -48.5,9.5 + parent: 2 + - uid: 5854 + components: + - type: Transform + pos: -47.5,8.5 + parent: 2 + - uid: 5855 + components: + - type: Transform + pos: -49.5,9.5 + parent: 2 + - uid: 5856 + components: + - type: Transform + pos: -47.5,10.5 + parent: 2 + - uid: 5857 + components: + - type: Transform + pos: -48.5,10.5 + parent: 2 + - uid: 5858 + components: + - type: Transform + pos: -50.5,10.5 + parent: 2 + - uid: 5859 + components: + - type: Transform + pos: -49.5,10.5 + parent: 2 + - uid: 5860 + components: + - type: Transform + pos: -46.5,10.5 + parent: 2 + - uid: 5861 + components: + - type: Transform + pos: -29.5,10.5 + parent: 2 + - uid: 5862 + components: + - type: Transform + pos: -31.5,10.5 + parent: 2 + - uid: 5863 + components: + - type: Transform + pos: -32.5,10.5 + parent: 2 + - uid: 5864 + components: + - type: Transform + pos: -33.5,10.5 + parent: 2 + - uid: 5865 + components: + - type: Transform + pos: -34.5,10.5 + parent: 2 + - uid: 5866 + components: + - type: Transform + pos: -30.5,10.5 + parent: 2 + - uid: 5867 + components: + - type: Transform + pos: -35.5,10.5 + parent: 2 + - uid: 5868 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 + - uid: 5869 + components: + - type: Transform + pos: -36.5,10.5 + parent: 2 + - uid: 5870 + components: + - type: Transform + pos: -38.5,10.5 + parent: 2 + - uid: 5871 + components: + - type: Transform + pos: -39.5,10.5 + parent: 2 + - uid: 5872 + components: + - type: Transform + pos: -40.5,10.5 + parent: 2 + - uid: 5873 + components: + - type: Transform + pos: -41.5,10.5 + parent: 2 + - uid: 5874 + components: + - type: Transform + pos: -42.5,10.5 + parent: 2 + - uid: 5875 + components: + - type: Transform + pos: -43.5,10.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + pos: -44.5,10.5 + parent: 2 + - uid: 5877 + components: + - type: Transform + pos: -45.5,10.5 + parent: 2 + - uid: 5878 + components: + - type: Transform + pos: -32.5,13.5 + parent: 2 + - uid: 5879 + components: + - type: Transform + pos: -31.5,11.5 + parent: 2 + - uid: 5880 + components: + - type: Transform + pos: -31.5,12.5 + parent: 2 + - uid: 5881 + components: + - type: Transform + pos: -31.5,13.5 + parent: 2 + - uid: 5882 + components: + - type: Transform + pos: -34.5,11.5 + parent: 2 + - uid: 5883 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 + - uid: 5884 + components: + - type: Transform + pos: -33.5,11.5 + parent: 2 + - uid: 5885 + components: + - type: Transform + pos: -34.5,12.5 + parent: 2 + - uid: 5886 + components: + - type: Transform + pos: -34.5,13.5 + parent: 2 + - uid: 5887 + components: + - type: Transform + pos: -33.5,12.5 + parent: 2 + - uid: 5888 + components: + - type: Transform + pos: -33.5,13.5 + parent: 2 + - uid: 5889 + components: + - type: Transform + pos: -32.5,11.5 + parent: 2 + - uid: 5890 + components: + - type: Transform + pos: -32.5,12.5 + parent: 2 + - uid: 5891 + components: + - type: Transform + pos: -49.5,11.5 + parent: 2 + - uid: 5892 + components: + - type: Transform + pos: -49.5,12.5 + parent: 2 + - uid: 5893 + components: + - type: Transform + pos: -49.5,13.5 + parent: 2 + - uid: 5894 + components: + - type: Transform + pos: -48.5,11.5 + parent: 2 + - uid: 5895 + components: + - type: Transform + pos: -48.5,12.5 + parent: 2 + - uid: 5896 + components: + - type: Transform + pos: -48.5,13.5 + parent: 2 + - uid: 5897 + components: + - type: Transform + pos: -47.5,13.5 + parent: 2 + - uid: 5898 + components: + - type: Transform + pos: -47.5,12.5 + parent: 2 + - uid: 5899 + components: + - type: Transform + pos: -38.5,13.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + pos: -37.5,11.5 + parent: 2 + - uid: 5901 + components: + - type: Transform + pos: -37.5,13.5 + parent: 2 + - uid: 5902 + components: + - type: Transform + pos: -36.5,11.5 + parent: 2 + - uid: 5903 + components: + - type: Transform + pos: -36.5,12.5 + parent: 2 + - uid: 5904 + components: + - type: Transform + pos: -36.5,13.5 + parent: 2 + - uid: 5905 + components: + - type: Transform + pos: -35.5,11.5 + parent: 2 + - uid: 5906 + components: + - type: Transform + pos: -35.5,12.5 + parent: 2 + - uid: 5907 + components: + - type: Transform + pos: -35.5,13.5 + parent: 2 + - uid: 5908 + components: + - type: Transform + pos: -40.5,11.5 + parent: 2 + - uid: 5909 + components: + - type: Transform + pos: -40.5,12.5 + parent: 2 + - uid: 5910 + components: + - type: Transform + pos: -40.5,13.5 + parent: 2 + - uid: 5911 + components: + - type: Transform + pos: -43.5,12.5 + parent: 2 + - uid: 5912 + components: + - type: Transform + pos: -39.5,12.5 + parent: 2 + - uid: 5913 + components: + - type: Transform + pos: -38.5,11.5 + parent: 2 + - uid: 5914 + components: + - type: Transform + pos: -39.5,13.5 + parent: 2 + - uid: 5915 + components: + - type: Transform + pos: -39.5,11.5 + parent: 2 + - uid: 5916 + components: + - type: Transform + pos: -38.5,12.5 + parent: 2 + - uid: 5917 + components: + - type: Transform + pos: -44.5,13.5 + parent: 2 + - uid: 5918 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 5919 + components: + - type: Transform + pos: -43.5,13.5 + parent: 2 + - uid: 5920 + components: + - type: Transform + pos: -42.5,11.5 + parent: 2 + - uid: 5921 + components: + - type: Transform + pos: -42.5,13.5 + parent: 2 + - uid: 5922 + components: + - type: Transform + pos: -42.5,12.5 + parent: 2 + - uid: 5923 + components: + - type: Transform + pos: -41.5,12.5 + parent: 2 + - uid: 5924 + components: + - type: Transform + pos: -41.5,11.5 + parent: 2 + - uid: 5925 + components: + - type: Transform + pos: -41.5,13.5 + parent: 2 + - uid: 5926 + components: + - type: Transform + pos: -46.5,11.5 + parent: 2 + - uid: 5927 + components: + - type: Transform + pos: -46.5,12.5 + parent: 2 + - uid: 5928 + components: + - type: Transform + pos: -46.5,13.5 + parent: 2 + - uid: 5929 + components: + - type: Transform + pos: -45.5,11.5 + parent: 2 + - uid: 5930 + components: + - type: Transform + pos: -45.5,12.5 + parent: 2 + - uid: 5931 + components: + - type: Transform + pos: -45.5,13.5 + parent: 2 + - uid: 5932 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - uid: 5933 + components: + - type: Transform + pos: -44.5,12.5 + parent: 2 + - uid: 5934 + components: + - type: Transform + pos: -44.5,11.5 + parent: 2 + - uid: 5935 + components: + - type: Transform + pos: -30.5,11.5 + parent: 2 + - uid: 5936 + components: + - type: Transform + pos: -30.5,12.5 + parent: 2 + - uid: 5937 + components: + - type: Transform + pos: -45.5,14.5 + parent: 2 + - uid: 5938 + components: + - type: Transform + pos: -32.5,14.5 + parent: 2 + - uid: 5939 + components: + - type: Transform + pos: -32.5,15.5 + parent: 2 + - uid: 5940 + components: + - type: Transform + pos: -32.5,16.5 + parent: 2 + - uid: 5941 + components: + - type: Transform + pos: -33.5,14.5 + parent: 2 + - uid: 5942 + components: + - type: Transform + pos: -33.5,16.5 + parent: 2 + - uid: 5943 + components: + - type: Transform + pos: -34.5,14.5 + parent: 2 + - uid: 5944 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - uid: 5945 + components: + - type: Transform + pos: -34.5,16.5 + parent: 2 + - uid: 5946 + components: + - type: Transform + pos: -46.5,15.5 + parent: 2 + - uid: 5947 + components: + - type: Transform + pos: -47.5,14.5 + parent: 2 + - uid: 5948 + components: + - type: Transform + pos: -47.5,16.5 + parent: 2 + - uid: 5949 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 5950 + components: + - type: Transform + pos: -48.5,15.5 + parent: 2 + - uid: 5951 + components: + - type: Transform + pos: -48.5,16.5 + parent: 2 + - uid: 5952 + components: + - type: Transform + pos: -43.5,16.5 + parent: 2 + - uid: 5953 + components: + - type: Transform + pos: -44.5,14.5 + parent: 2 + - uid: 5954 + components: + - type: Transform + pos: -44.5,15.5 + parent: 2 + - uid: 5955 + components: + - type: Transform + pos: -44.5,16.5 + parent: 2 + - uid: 5956 + components: + - type: Transform + pos: -45.5,15.5 + parent: 2 + - uid: 5957 + components: + - type: Transform + pos: -45.5,16.5 + parent: 2 + - uid: 5958 + components: + - type: Transform + pos: -46.5,14.5 + parent: 2 + - uid: 5959 + components: + - type: Transform + pos: -46.5,16.5 + parent: 2 + - uid: 5960 + components: + - type: Transform + pos: -47.5,15.5 + parent: 2 + - uid: 5961 + components: + - type: Transform + pos: -41.5,14.5 + parent: 2 + - uid: 5962 + components: + - type: Transform + pos: -41.5,15.5 + parent: 2 + - uid: 5963 + components: + - type: Transform + pos: -41.5,16.5 + parent: 2 + - uid: 5964 + components: + - type: Transform + pos: -42.5,14.5 + parent: 2 + - uid: 5965 + components: + - type: Transform + pos: -42.5,15.5 + parent: 2 + - uid: 5966 + components: + - type: Transform + pos: -42.5,16.5 + parent: 2 + - uid: 5967 + components: + - type: Transform + pos: -43.5,14.5 + parent: 2 + - uid: 5968 + components: + - type: Transform + pos: -43.5,15.5 + parent: 2 + - uid: 5969 + components: + - type: Transform + pos: -38.5,14.5 + parent: 2 + - uid: 5970 + components: + - type: Transform + pos: -37.5,16.5 + parent: 2 + - uid: 5971 + components: + - type: Transform + pos: -38.5,15.5 + parent: 2 + - uid: 5972 + components: + - type: Transform + pos: -38.5,16.5 + parent: 2 + - uid: 5973 + components: + - type: Transform + pos: -39.5,14.5 + parent: 2 + - uid: 5974 + components: + - type: Transform + pos: -39.5,15.5 + parent: 2 + - uid: 5975 + components: + - type: Transform + pos: -39.5,16.5 + parent: 2 + - uid: 5976 + components: + - type: Transform + pos: -40.5,14.5 + parent: 2 + - uid: 5977 + components: + - type: Transform + pos: -40.5,15.5 + parent: 2 + - uid: 5978 + components: + - type: Transform + pos: -40.5,16.5 + parent: 2 + - uid: 5979 + components: + - type: Transform + pos: -35.5,14.5 + parent: 2 + - uid: 5980 + components: + - type: Transform + pos: -35.5,15.5 + parent: 2 + - uid: 5981 + components: + - type: Transform + pos: -35.5,16.5 + parent: 2 + - uid: 5982 + components: + - type: Transform + pos: -33.5,15.5 + parent: 2 + - uid: 5983 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 + - uid: 5984 + components: + - type: Transform + pos: -36.5,14.5 + parent: 2 + - uid: 5985 + components: + - type: Transform + pos: -36.5,16.5 + parent: 2 + - uid: 5986 + components: + - type: Transform + pos: -37.5,14.5 + parent: 2 + - uid: 5987 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 + - uid: 5988 + components: + - type: Transform + pos: -47.5,17.5 + parent: 2 + - uid: 5989 + components: + - type: Transform + pos: -47.5,18.5 + parent: 2 + - uid: 5990 + components: + - type: Transform + pos: -46.5,17.5 + parent: 2 + - uid: 5991 + components: + - type: Transform + pos: -45.5,18.5 + parent: 2 + - uid: 5992 + components: + - type: Transform + pos: -45.5,17.5 + parent: 2 + - uid: 5993 + components: + - type: Transform + pos: -44.5,17.5 + parent: 2 + - uid: 5994 + components: + - type: Transform + pos: -44.5,18.5 + parent: 2 + - uid: 5995 + components: + - type: Transform + pos: -43.5,17.5 + parent: 2 + - uid: 5996 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 + - uid: 5997 + components: + - type: Transform + pos: -34.5,18.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + pos: -33.5,17.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + pos: -33.5,18.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + pos: -39.5,18.5 + parent: 2 + - uid: 6001 + components: + - type: Transform + pos: -38.5,17.5 + parent: 2 + - uid: 6002 + components: + - type: Transform + pos: -38.5,18.5 + parent: 2 + - uid: 6003 + components: + - type: Transform + pos: -37.5,18.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + pos: -37.5,17.5 + parent: 2 + - uid: 6005 + components: + - type: Transform + pos: -36.5,18.5 + parent: 2 + - uid: 6006 + components: + - type: Transform + pos: -36.5,17.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + pos: -35.5,17.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + pos: -35.5,18.5 + parent: 2 + - uid: 6009 + components: + - type: Transform + pos: -46.5,18.5 + parent: 2 + - uid: 6010 + components: + - type: Transform + pos: -43.5,18.5 + parent: 2 + - uid: 6011 + components: + - type: Transform + pos: -42.5,18.5 + parent: 2 + - uid: 6012 + components: + - type: Transform + pos: -41.5,18.5 + parent: 2 + - uid: 6013 + components: + - type: Transform + pos: -41.5,17.5 + parent: 2 + - uid: 6014 + components: + - type: Transform + pos: -40.5,17.5 + parent: 2 + - uid: 6015 + components: + - type: Transform + pos: -40.5,18.5 + parent: 2 + - uid: 6016 + components: + - type: Transform + pos: -39.5,17.5 + parent: 2 + - uid: 6017 + components: + - type: Transform + pos: -42.5,17.5 + parent: 2 + - uid: 6018 + components: + - type: Transform + pos: -34.5,19.5 + parent: 2 + - uid: 6019 + components: + - type: Transform + pos: -35.5,19.5 + parent: 2 + - uid: 6020 + components: + - type: Transform + pos: -37.5,19.5 + parent: 2 + - uid: 6021 + components: + - type: Transform + pos: -38.5,19.5 + parent: 2 + - uid: 6022 + components: + - type: Transform + pos: -39.5,19.5 + parent: 2 + - uid: 6023 + components: + - type: Transform + pos: -40.5,19.5 + parent: 2 + - uid: 6024 + components: + - type: Transform + pos: -41.5,19.5 + parent: 2 + - uid: 6025 + components: + - type: Transform + pos: -36.5,19.5 + parent: 2 + - uid: 6026 + components: + - type: Transform + pos: -42.5,19.5 + parent: 2 + - uid: 6027 + components: + - type: Transform + pos: -43.5,19.5 + parent: 2 + - uid: 6028 + components: + - type: Transform + pos: -44.5,19.5 + parent: 2 + - uid: 6029 + components: + - type: Transform + pos: -45.5,19.5 + parent: 2 + - uid: 6030 + components: + - type: Transform + pos: -46.5,19.5 + parent: 2 + - uid: 6031 + components: + - type: Transform + pos: -36.5,20.5 + parent: 2 + - uid: 6032 + components: + - type: Transform + pos: -35.5,20.5 + parent: 2 + - uid: 6033 + components: + - type: Transform + pos: -34.5,20.5 + parent: 2 + - uid: 6034 + components: + - type: Transform + pos: -41.5,20.5 + parent: 2 + - uid: 6035 + components: + - type: Transform + pos: -45.5,20.5 + parent: 2 + - uid: 6036 + components: + - type: Transform + pos: -44.5,20.5 + parent: 2 + - uid: 6037 + components: + - type: Transform + pos: -43.5,20.5 + parent: 2 + - uid: 6038 + components: + - type: Transform + pos: -42.5,20.5 + parent: 2 + - uid: 6039 + components: + - type: Transform + pos: -40.5,20.5 + parent: 2 + - uid: 6040 + components: + - type: Transform + pos: -39.5,20.5 + parent: 2 + - uid: 6041 + components: + - type: Transform + pos: -38.5,20.5 + parent: 2 + - uid: 6042 + components: + - type: Transform + pos: -37.5,20.5 + parent: 2 + - uid: 6043 + components: + - type: Transform + pos: -38.5,21.5 + parent: 2 + - uid: 6044 + components: + - type: Transform + pos: -35.5,21.5 + parent: 2 + - uid: 6045 + components: + - type: Transform + pos: -36.5,21.5 + parent: 2 + - uid: 6046 + components: + - type: Transform + pos: -37.5,21.5 + parent: 2 + - uid: 6047 + components: + - type: Transform + pos: -39.5,21.5 + parent: 2 + - uid: 6048 + components: + - type: Transform + pos: -40.5,21.5 + parent: 2 + - uid: 6049 + components: + - type: Transform + pos: -41.5,21.5 + parent: 2 + - uid: 6050 + components: + - type: Transform + pos: -42.5,21.5 + parent: 2 + - uid: 6051 + components: + - type: Transform + pos: -43.5,21.5 + parent: 2 + - uid: 6052 + components: + - type: Transform + pos: -57.5,0.5 + parent: 2 + - uid: 6053 + components: + - type: Transform + pos: -57.5,-6.5 + parent: 2 + - uid: 6054 + components: + - type: Transform + pos: -57.5,-5.5 + parent: 2 + - uid: 6055 + components: + - type: Transform + pos: -57.5,3.5 + parent: 2 + - uid: 6056 + components: + - type: Transform + pos: -57.5,2.5 + parent: 2 + - uid: 6057 + components: + - type: Transform + pos: -57.5,1.5 + parent: 2 + - uid: 6058 + components: + - type: Transform + pos: -57.5,-0.5 + parent: 2 + - uid: 6059 + components: + - type: Transform + pos: -57.5,-1.5 + parent: 2 + - uid: 6060 + components: + - type: Transform + pos: -57.5,-2.5 + parent: 2 + - uid: 6061 + components: + - type: Transform + pos: -57.5,-3.5 + parent: 2 + - uid: 6062 + components: + - type: Transform + pos: -57.5,-4.5 + parent: 2 + - uid: 6063 + components: + - type: Transform + pos: -58.5,2.5 + parent: 2 + - uid: 6064 + components: + - type: Transform + pos: -58.5,1.5 + parent: 2 + - uid: 6065 + components: + - type: Transform + pos: -58.5,0.5 + parent: 2 + - uid: 6066 + components: + - type: Transform + pos: -58.5,-0.5 + parent: 2 + - uid: 6067 + components: + - type: Transform + pos: -58.5,-1.5 + parent: 2 + - uid: 6068 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 6069 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 + - uid: 6070 + components: + - type: Transform + pos: -58.5,-3.5 + parent: 2 + - uid: 6071 + components: + - type: Transform + pos: -59.5,1.5 + parent: 2 + - uid: 6072 + components: + - type: Transform + pos: -59.5,0.5 + parent: 2 + - uid: 6073 + components: + - type: Transform + pos: -59.5,-0.5 + parent: 2 + - uid: 6074 + components: + - type: Transform + pos: -59.5,-1.5 + parent: 2 + - uid: 6075 + components: + - type: Transform + pos: -59.5,-2.5 + parent: 2 + - uid: 6076 + components: + - type: Transform + pos: -59.5,-5.5 + parent: 2 + - uid: 6077 + components: + - type: Transform + pos: -59.5,-4.5 + parent: 2 + - uid: 6078 + components: + - type: Transform + pos: -59.5,-3.5 + parent: 2 + - uid: 6079 + components: + - type: Transform + pos: -60.5,0.5 + parent: 2 + - uid: 6080 + components: + - type: Transform + pos: -60.5,-1.5 + parent: 2 + - uid: 6081 + components: + - type: Transform + pos: -60.5,-2.5 + parent: 2 + - uid: 6082 + components: + - type: Transform + pos: -60.5,-3.5 + parent: 2 + - uid: 6083 + components: + - type: Transform + pos: -60.5,-4.5 + parent: 2 + - uid: 6084 + components: + - type: Transform + pos: -60.5,-0.5 + parent: 2 + - uid: 6085 + components: + - type: Transform + pos: -60.5,-5.5 + parent: 2 + - uid: 6086 + components: + - type: Transform + pos: -61.5,-1.5 + parent: 2 + - uid: 6087 + components: + - type: Transform + pos: -61.5,-2.5 + parent: 2 + - uid: 6088 + components: + - type: Transform + pos: -61.5,-3.5 + parent: 2 + - uid: 6089 + components: + - type: Transform + pos: -61.5,-5.5 + parent: 2 + - uid: 6090 + components: + - type: Transform + pos: -61.5,-4.5 + parent: 2 + - uid: 6091 + components: + - type: Transform + pos: -62.5,-2.5 + parent: 2 + - uid: 6092 + components: + - type: Transform + pos: -62.5,-3.5 + parent: 2 + - uid: 6093 + components: + - type: Transform + pos: -62.5,-4.5 + parent: 2 + - uid: 6094 + components: + - type: Transform + pos: -62.5,-6.5 + parent: 2 + - uid: 6095 + components: + - type: Transform + pos: -62.5,-5.5 + parent: 2 + - uid: 6096 + components: + - type: Transform + pos: -58.5,-5.5 + parent: 2 + - uid: 6097 + components: + - type: Transform + pos: -61.5,-6.5 + parent: 2 + - uid: 6098 + components: + - type: Transform + pos: -60.5,-6.5 + parent: 2 + - uid: 6099 + components: + - type: Transform + pos: -58.5,-6.5 + parent: 2 + - uid: 6100 + components: + - type: Transform + pos: -59.5,-6.5 + parent: 2 + - uid: 6101 + components: + - type: Transform + pos: -60.5,-12.5 + parent: 2 + - uid: 6102 + components: + - type: Transform + pos: -61.5,-13.5 + parent: 2 + - uid: 6103 + components: + - type: Transform + pos: -60.5,-19.5 + parent: 2 + - uid: 6104 + components: + - type: Transform + pos: -61.5,-7.5 + parent: 2 + - uid: 6105 + components: + - type: Transform + pos: -61.5,-8.5 + parent: 2 + - uid: 6106 + components: + - type: Transform + pos: -60.5,-18.5 + parent: 2 + - uid: 6107 + components: + - type: Transform + pos: -61.5,-10.5 + parent: 2 + - uid: 6108 + components: + - type: Transform + pos: -61.5,-12.5 + parent: 2 + - uid: 6109 + components: + - type: Transform + pos: -61.5,-11.5 + parent: 2 + - uid: 6110 + components: + - type: Transform + pos: -61.5,-9.5 + parent: 2 + - uid: 6111 + components: + - type: Transform + pos: -61.5,-14.5 + parent: 2 + - uid: 6112 + components: + - type: Transform + pos: -60.5,-8.5 + parent: 2 + - uid: 6113 + components: + - type: Transform + pos: -60.5,-9.5 + parent: 2 + - uid: 6114 + components: + - type: Transform + pos: -60.5,-11.5 + parent: 2 + - uid: 6115 + components: + - type: Transform + pos: -60.5,-13.5 + parent: 2 + - uid: 6116 + components: + - type: Transform + pos: -60.5,-14.5 + parent: 2 + - uid: 6117 + components: + - type: Transform + pos: -60.5,-15.5 + parent: 2 + - uid: 6118 + components: + - type: Transform + pos: -60.5,-16.5 + parent: 2 + - uid: 6119 + components: + - type: Transform + pos: -60.5,-17.5 + parent: 2 + - uid: 6120 + components: + - type: Transform + pos: -60.5,-20.5 + parent: 2 + - uid: 6121 + components: + - type: Transform + pos: -59.5,-16.5 + parent: 2 + - uid: 6122 + components: + - type: Transform + pos: -59.5,-15.5 + parent: 2 + - uid: 6123 + components: + - type: Transform + pos: -59.5,-18.5 + parent: 2 + - uid: 6124 + components: + - type: Transform + pos: -59.5,-19.5 + parent: 2 + - uid: 6125 + components: + - type: Transform + pos: -59.5,-20.5 + parent: 2 + - uid: 6126 + components: + - type: Transform + pos: -59.5,-17.5 + parent: 2 + - uid: 6127 + components: + - type: Transform + pos: -60.5,-7.5 + parent: 2 + - uid: 6128 + components: + - type: Transform + pos: -59.5,-7.5 + parent: 2 + - uid: 6129 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 6130 + components: + - type: Transform + pos: -58.5,-20.5 + parent: 2 + - uid: 6131 + components: + - type: Transform + pos: -59.5,-9.5 + parent: 2 + - uid: 6132 + components: + - type: Transform + pos: -58.5,-18.5 + parent: 2 + - uid: 6133 + components: + - type: Transform + pos: -59.5,-8.5 + parent: 2 + - uid: 6134 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 + - uid: 6135 + components: + - type: Transform + pos: -59.5,-11.5 + parent: 2 + - uid: 6136 + components: + - type: Transform + pos: -59.5,-13.5 + parent: 2 + - uid: 6137 + components: + - type: Transform + pos: -59.5,-12.5 + parent: 2 + - uid: 6138 + components: + - type: Transform + pos: -59.5,-14.5 + parent: 2 + - uid: 6139 + components: + - type: Transform + pos: -57.5,-16.5 + parent: 2 + - uid: 6140 + components: + - type: Transform + pos: -58.5,-12.5 + parent: 2 + - uid: 6141 + components: + - type: Transform + pos: -58.5,-11.5 + parent: 2 + - uid: 6142 + components: + - type: Transform + pos: -58.5,-14.5 + parent: 2 + - uid: 6143 + components: + - type: Transform + pos: -58.5,-13.5 + parent: 2 + - uid: 6144 + components: + - type: Transform + pos: -58.5,-15.5 + parent: 2 + - uid: 6145 + components: + - type: Transform + pos: -58.5,-16.5 + parent: 2 + - uid: 6146 + components: + - type: Transform + pos: -58.5,-17.5 + parent: 2 + - uid: 6147 + components: + - type: Transform + pos: -58.5,-19.5 + parent: 2 + - uid: 6148 + components: + - type: Transform + pos: -57.5,-17.5 + parent: 2 + - uid: 6149 + components: + - type: Transform + pos: -57.5,-18.5 + parent: 2 + - uid: 6150 + components: + - type: Transform + pos: -57.5,-15.5 + parent: 2 + - uid: 6151 + components: + - type: Transform + pos: -57.5,-19.5 + parent: 2 + - uid: 6152 + components: + - type: Transform + pos: -57.5,-20.5 + parent: 2 + - uid: 6153 + components: + - type: Transform + pos: -58.5,-7.5 + parent: 2 + - uid: 6154 + components: + - type: Transform + pos: -58.5,-8.5 + parent: 2 + - uid: 6155 + components: + - type: Transform + pos: -58.5,-9.5 + parent: 2 + - uid: 6156 + components: + - type: Transform + pos: -58.5,-10.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + pos: -57.5,-7.5 + parent: 2 + - uid: 6158 + components: + - type: Transform + pos: -57.5,-8.5 + parent: 2 + - uid: 6159 + components: + - type: Transform + pos: -57.5,-9.5 + parent: 2 + - uid: 6160 + components: + - type: Transform + pos: -57.5,-11.5 + parent: 2 + - uid: 6161 + components: + - type: Transform + pos: -57.5,-12.5 + parent: 2 + - uid: 6162 + components: + - type: Transform + pos: -57.5,-13.5 + parent: 2 + - uid: 6163 + components: + - type: Transform + pos: -57.5,-14.5 + parent: 2 + - uid: 6164 + components: + - type: Transform + pos: -57.5,-10.5 + parent: 2 + - uid: 6165 + components: + - type: Transform + pos: -62.5,-13.5 + parent: 2 + - uid: 6166 + components: + - type: Transform + pos: -62.5,-16.5 + parent: 2 + - uid: 6167 + components: + - type: Transform + pos: -62.5,-15.5 + parent: 2 + - uid: 6168 + components: + - type: Transform + pos: -62.5,-10.5 + parent: 2 + - uid: 6169 + components: + - type: Transform + pos: -61.5,-20.5 + parent: 2 + - uid: 6170 + components: + - type: Transform + pos: -62.5,-14.5 + parent: 2 + - uid: 6171 + components: + - type: Transform + pos: -62.5,-17.5 + parent: 2 + - uid: 6172 + components: + - type: Transform + pos: -62.5,-18.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + pos: -62.5,-19.5 + parent: 2 + - uid: 6174 + components: + - type: Transform + pos: -62.5,-20.5 + parent: 2 + - uid: 6175 + components: + - type: Transform + pos: -61.5,-17.5 + parent: 2 + - uid: 6176 + components: + - type: Transform + pos: -61.5,-15.5 + parent: 2 + - uid: 6177 + components: + - type: Transform + pos: -61.5,-19.5 + parent: 2 + - uid: 6178 + components: + - type: Transform + pos: -61.5,-18.5 + parent: 2 + - uid: 6179 + components: + - type: Transform + pos: -62.5,-8.5 + parent: 2 + - uid: 6180 + components: + - type: Transform + pos: -62.5,-7.5 + parent: 2 + - uid: 6181 + components: + - type: Transform + pos: -62.5,-9.5 + parent: 2 + - uid: 6182 + components: + - type: Transform + pos: -62.5,-11.5 + parent: 2 + - uid: 6183 + components: + - type: Transform + pos: -62.5,-12.5 + parent: 2 + - uid: 6184 + components: + - type: Transform + pos: -61.5,-16.5 + parent: 2 + - uid: 6185 + components: + - type: Transform + pos: -63.5,-8.5 + parent: 2 + - uid: 6186 + components: + - type: Transform + pos: -63.5,-9.5 + parent: 2 + - uid: 6187 + components: + - type: Transform + pos: -63.5,-10.5 + parent: 2 + - uid: 6188 + components: + - type: Transform + pos: -63.5,-11.5 + parent: 2 + - uid: 6189 + components: + - type: Transform + pos: -63.5,-12.5 + parent: 2 + - uid: 6190 + components: + - type: Transform + pos: -63.5,-14.5 + parent: 2 + - uid: 6191 + components: + - type: Transform + pos: -63.5,-15.5 + parent: 2 + - uid: 6192 + components: + - type: Transform + pos: -63.5,-16.5 + parent: 2 + - uid: 6193 + components: + - type: Transform + pos: -61.5,-26.5 + parent: 2 + - uid: 6194 + components: + - type: Transform + pos: -61.5,-25.5 + parent: 2 + - uid: 6195 + components: + - type: Transform + pos: -62.5,-21.5 + parent: 2 + - uid: 6196 + components: + - type: Transform + pos: -61.5,-21.5 + parent: 2 + - uid: 6197 + components: + - type: Transform + pos: -61.5,-22.5 + parent: 2 + - uid: 6198 + components: + - type: Transform + pos: -61.5,-24.5 + parent: 2 + - uid: 6199 + components: + - type: Transform + pos: -61.5,-23.5 + parent: 2 + - uid: 6200 + components: + - type: Transform + pos: -62.5,-25.5 + parent: 2 + - uid: 6201 + components: + - type: Transform + pos: -62.5,-26.5 + parent: 2 + - uid: 6202 + components: + - type: Transform + pos: -62.5,-22.5 + parent: 2 + - uid: 6203 + components: + - type: Transform + pos: -62.5,-23.5 + parent: 2 + - uid: 6204 + components: + - type: Transform + pos: -62.5,-24.5 + parent: 2 + - uid: 6205 + components: + - type: Transform + pos: -63.5,-22.5 + parent: 2 + - uid: 6206 + components: + - type: Transform + pos: -63.5,-17.5 + parent: 2 + - uid: 6207 + components: + - type: Transform + pos: -63.5,-18.5 + parent: 2 + - uid: 6208 + components: + - type: Transform + pos: -63.5,-19.5 + parent: 2 + - uid: 6209 + components: + - type: Transform + pos: -63.5,-20.5 + parent: 2 + - uid: 6210 + components: + - type: Transform + pos: -63.5,-13.5 + parent: 2 + - uid: 6211 + components: + - type: Transform + pos: -63.5,-21.5 + parent: 2 + - uid: 6212 + components: + - type: Transform + pos: -63.5,-23.5 + parent: 2 + - uid: 6213 + components: + - type: Transform + pos: -63.5,-24.5 + parent: 2 + - uid: 6214 + components: + - type: Transform + pos: -63.5,-25.5 + parent: 2 + - uid: 6215 + components: + - type: Transform + pos: -57.5,-21.5 + parent: 2 + - uid: 6216 + components: + - type: Transform + pos: -57.5,-23.5 + parent: 2 + - uid: 6217 + components: + - type: Transform + pos: -58.5,-25.5 + parent: 2 + - uid: 6218 + components: + - type: Transform + pos: -58.5,-23.5 + parent: 2 + - uid: 6219 + components: + - type: Transform + pos: -59.5,-24.5 + parent: 2 + - uid: 6220 + components: + - type: Transform + pos: -58.5,-22.5 + parent: 2 + - uid: 6221 + components: + - type: Transform + pos: -58.5,-21.5 + parent: 2 + - uid: 6222 + components: + - type: Transform + pos: -58.5,-24.5 + parent: 2 + - uid: 6223 + components: + - type: Transform + pos: -59.5,-26.5 + parent: 2 + - uid: 6224 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 + - uid: 6225 + components: + - type: Transform + pos: -59.5,-23.5 + parent: 2 + - uid: 6226 + components: + - type: Transform + pos: -59.5,-25.5 + parent: 2 + - uid: 6227 + components: + - type: Transform + pos: -59.5,-22.5 + parent: 2 + - uid: 6228 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 2 + - uid: 6229 + components: + - type: Transform + pos: -60.5,-22.5 + parent: 2 + - uid: 6230 + components: + - type: Transform + pos: -60.5,-23.5 + parent: 2 + - uid: 6231 + components: + - type: Transform + pos: -60.5,-24.5 + parent: 2 + - uid: 6232 + components: + - type: Transform + pos: -60.5,-25.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + pos: -60.5,-26.5 + parent: 2 + - uid: 6234 + components: + - type: Transform + pos: -56.5,-25.5 + parent: 2 + - uid: 6235 + components: + - type: Transform + pos: -56.5,-23.5 + parent: 2 + - uid: 6236 + components: + - type: Transform + pos: -56.5,-24.5 + parent: 2 + - uid: 6237 + components: + - type: Transform + pos: -56.5,-26.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + pos: -56.5,-21.5 + parent: 2 + - uid: 6239 + components: + - type: Transform + pos: -56.5,-18.5 + parent: 2 + - uid: 6240 + components: + - type: Transform + pos: -58.5,-26.5 + parent: 2 + - uid: 6241 + components: + - type: Transform + pos: -56.5,-16.5 + parent: 2 + - uid: 6242 + components: + - type: Transform + pos: -56.5,-15.5 + parent: 2 + - uid: 6243 + components: + - type: Transform + pos: -56.5,-17.5 + parent: 2 + - uid: 6244 + components: + - type: Transform + pos: -56.5,-19.5 + parent: 2 + - uid: 6245 + components: + - type: Transform + pos: -56.5,-20.5 + parent: 2 + - uid: 6246 + components: + - type: Transform + pos: -56.5,-22.5 + parent: 2 + - uid: 6247 + components: + - type: Transform + pos: -57.5,-22.5 + parent: 2 + - uid: 6248 + components: + - type: Transform + pos: -57.5,-24.5 + parent: 2 + - uid: 6249 + components: + - type: Transform + pos: -57.5,-25.5 + parent: 2 + - uid: 6250 + components: + - type: Transform + pos: -57.5,-26.5 + parent: 2 + - uid: 6251 + components: + - type: Transform + pos: -64.5,-16.5 + parent: 2 + - uid: 6252 + components: + - type: Transform + pos: -64.5,-22.5 + parent: 2 + - uid: 6253 + components: + - type: Transform + pos: -64.5,-25.5 + parent: 2 + - uid: 6254 + components: + - type: Transform + pos: -64.5,-24.5 + parent: 2 + - uid: 6255 + components: + - type: Transform + pos: -64.5,-23.5 + parent: 2 + - uid: 6256 + components: + - type: Transform + pos: -64.5,-21.5 + parent: 2 + - uid: 6257 + components: + - type: Transform + pos: -64.5,-20.5 + parent: 2 + - uid: 6258 + components: + - type: Transform + pos: -64.5,-19.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + pos: -64.5,-18.5 + parent: 2 + - uid: 6260 + components: + - type: Transform + pos: -64.5,-17.5 + parent: 2 + - uid: 6261 + components: + - type: Transform + pos: -52.5,-22.5 + parent: 2 + - uid: 6262 + components: + - type: Transform + pos: -52.5,-23.5 + parent: 2 + - uid: 6263 + components: + - type: Transform + pos: -52.5,-24.5 + parent: 2 + - uid: 6264 + components: + - type: Transform + pos: -52.5,-25.5 + parent: 2 + - uid: 6265 + components: + - type: Transform + pos: -52.5,-27.5 + parent: 2 + - uid: 6266 + components: + - type: Transform + pos: -52.5,-28.5 + parent: 2 + - uid: 6267 + components: + - type: Transform + pos: -52.5,-29.5 + parent: 2 + - uid: 6268 + components: + - type: Transform + pos: -52.5,-30.5 + parent: 2 + - uid: 6269 + components: + - type: Transform + pos: -52.5,-31.5 + parent: 2 + - uid: 6270 + components: + - type: Transform + pos: -52.5,-32.5 + parent: 2 + - uid: 6271 + components: + - type: Transform + pos: -52.5,-33.5 + parent: 2 + - uid: 6272 + components: + - type: Transform + pos: -52.5,-34.5 + parent: 2 + - uid: 6273 + components: + - type: Transform + pos: -52.5,-35.5 + parent: 2 + - uid: 6274 + components: + - type: Transform + pos: -52.5,-36.5 + parent: 2 + - uid: 6275 + components: + - type: Transform + pos: -52.5,-39.5 + parent: 2 + - uid: 6276 + components: + - type: Transform + pos: -52.5,-26.5 + parent: 2 + - uid: 6277 + components: + - type: Transform + pos: -52.5,-38.5 + parent: 2 + - uid: 6278 + components: + - type: Transform + pos: -55.5,-33.5 + parent: 2 + - uid: 6279 + components: + - type: Transform + pos: -55.5,-34.5 + parent: 2 + - uid: 6280 + components: + - type: Transform + pos: -55.5,-23.5 + parent: 2 + - uid: 6281 + components: + - type: Transform + pos: -55.5,-25.5 + parent: 2 + - uid: 6282 + components: + - type: Transform + pos: -54.5,-38.5 + parent: 2 + - uid: 6283 + components: + - type: Transform + pos: -55.5,-27.5 + parent: 2 + - uid: 6284 + components: + - type: Transform + pos: -55.5,-28.5 + parent: 2 + - uid: 6285 + components: + - type: Transform + pos: -55.5,-24.5 + parent: 2 + - uid: 6286 + components: + - type: Transform + pos: -55.5,-29.5 + parent: 2 + - uid: 6287 + components: + - type: Transform + pos: -55.5,-31.5 + parent: 2 + - uid: 6288 + components: + - type: Transform + pos: -55.5,-32.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + pos: -54.5,-34.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + pos: -54.5,-30.5 + parent: 2 + - uid: 6291 + components: + - type: Transform + pos: -54.5,-35.5 + parent: 2 + - uid: 6292 + components: + - type: Transform + pos: -54.5,-32.5 + parent: 2 + - uid: 6293 + components: + - type: Transform + pos: -54.5,-31.5 + parent: 2 + - uid: 6294 + components: + - type: Transform + pos: -54.5,-36.5 + parent: 2 + - uid: 6295 + components: + - type: Transform + pos: -54.5,-37.5 + parent: 2 + - uid: 6296 + components: + - type: Transform + pos: -54.5,-28.5 + parent: 2 + - uid: 6297 + components: + - type: Transform + pos: -55.5,-22.5 + parent: 2 + - uid: 6298 + components: + - type: Transform + pos: -54.5,-22.5 + parent: 2 + - uid: 6299 + components: + - type: Transform + pos: -53.5,-39.5 + parent: 2 + - uid: 6300 + components: + - type: Transform + pos: -54.5,-25.5 + parent: 2 + - uid: 6301 + components: + - type: Transform + pos: -54.5,-23.5 + parent: 2 + - uid: 6302 + components: + - type: Transform + pos: -54.5,-27.5 + parent: 2 + - uid: 6303 + components: + - type: Transform + pos: -54.5,-24.5 + parent: 2 + - uid: 6304 + components: + - type: Transform + pos: -54.5,-26.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + pos: -54.5,-29.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + pos: -54.5,-33.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + pos: -53.5,-32.5 + parent: 2 + - uid: 6308 + components: + - type: Transform + pos: -53.5,-31.5 + parent: 2 + - uid: 6309 + components: + - type: Transform + pos: -53.5,-30.5 + parent: 2 + - uid: 6310 + components: + - type: Transform + pos: -53.5,-33.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + pos: -53.5,-34.5 + parent: 2 + - uid: 6312 + components: + - type: Transform + pos: -53.5,-35.5 + parent: 2 + - uid: 6313 + components: + - type: Transform + pos: -53.5,-36.5 + parent: 2 + - uid: 6314 + components: + - type: Transform + pos: -53.5,-37.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + pos: -53.5,-38.5 + parent: 2 + - uid: 6316 + components: + - type: Transform + pos: -53.5,-22.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + pos: -53.5,-23.5 + parent: 2 + - uid: 6318 + components: + - type: Transform + pos: -53.5,-24.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + pos: -53.5,-25.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + pos: -53.5,-26.5 + parent: 2 + - uid: 6321 + components: + - type: Transform + pos: -53.5,-27.5 + parent: 2 + - uid: 6322 + components: + - type: Transform + pos: -52.5,-37.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + pos: -53.5,-28.5 + parent: 2 + - uid: 6324 + components: + - type: Transform + pos: -53.5,-29.5 + parent: 2 + - uid: 6325 + components: + - type: Transform + pos: -58.5,-32.5 + parent: 2 + - uid: 6326 + components: + - type: Transform + pos: -58.5,-33.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + pos: -58.5,-34.5 + parent: 2 + - uid: 6328 + components: + - type: Transform + pos: -58.5,-35.5 + parent: 2 + - uid: 6329 + components: + - type: Transform + pos: -58.5,-36.5 + parent: 2 + - uid: 6330 + components: + - type: Transform + pos: -58.5,-37.5 + parent: 2 + - uid: 6331 + components: + - type: Transform + pos: -58.5,-38.5 + parent: 2 + - uid: 6332 + components: + - type: Transform + pos: -58.5,-39.5 + parent: 2 + - uid: 6333 + components: + - type: Transform + pos: -58.5,-27.5 + parent: 2 + - uid: 6334 + components: + - type: Transform + pos: -58.5,-28.5 + parent: 2 + - uid: 6335 + components: + - type: Transform + pos: -58.5,-29.5 + parent: 2 + - uid: 6336 + components: + - type: Transform + pos: -57.5,-32.5 + parent: 2 + - uid: 6337 + components: + - type: Transform + pos: -58.5,-30.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + pos: -58.5,-31.5 + parent: 2 + - uid: 6339 + components: + - type: Transform + pos: -57.5,-29.5 + parent: 2 + - uid: 6340 + components: + - type: Transform + pos: -57.5,-36.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + pos: -57.5,-38.5 + parent: 2 + - uid: 6342 + components: + - type: Transform + pos: -57.5,-37.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + pos: -57.5,-39.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + pos: -57.5,-33.5 + parent: 2 + - uid: 6345 + components: + - type: Transform + pos: -57.5,-30.5 + parent: 2 + - uid: 6346 + components: + - type: Transform + pos: -57.5,-31.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: -57.5,-27.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + pos: -57.5,-28.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + pos: -57.5,-34.5 + parent: 2 + - uid: 6350 + components: + - type: Transform + pos: -56.5,-34.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + pos: -57.5,-35.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: -56.5,-36.5 + parent: 2 + - uid: 6353 + components: + - type: Transform + pos: -56.5,-35.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + pos: -56.5,-31.5 + parent: 2 + - uid: 6355 + components: + - type: Transform + pos: -56.5,-38.5 + parent: 2 + - uid: 6356 + components: + - type: Transform + pos: -56.5,-39.5 + parent: 2 + - uid: 6357 + components: + - type: Transform + pos: -56.5,-37.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + pos: -55.5,-38.5 + parent: 2 + - uid: 6359 + components: + - type: Transform + pos: -56.5,-28.5 + parent: 2 + - uid: 6360 + components: + - type: Transform + pos: -56.5,-29.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + pos: -56.5,-32.5 + parent: 2 + - uid: 6362 + components: + - type: Transform + pos: -56.5,-27.5 + parent: 2 + - uid: 6363 + components: + - type: Transform + pos: -56.5,-30.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + pos: -56.5,-33.5 + parent: 2 + - uid: 6365 + components: + - type: Transform + pos: -55.5,-35.5 + parent: 2 + - uid: 6366 + components: + - type: Transform + pos: -54.5,-39.5 + parent: 2 + - uid: 6367 + components: + - type: Transform + pos: -55.5,-30.5 + parent: 2 + - uid: 6368 + components: + - type: Transform + pos: -55.5,-36.5 + parent: 2 + - uid: 6369 + components: + - type: Transform + pos: -55.5,-37.5 + parent: 2 + - uid: 6370 + components: + - type: Transform + pos: -55.5,-39.5 + parent: 2 + - uid: 6371 + components: + - type: Transform + pos: -55.5,-26.5 + parent: 2 + - uid: 6372 + components: + - type: Transform + pos: -62.5,-33.5 + parent: 2 + - uid: 6373 + components: + - type: Transform + pos: -62.5,-27.5 + parent: 2 + - uid: 6374 + components: + - type: Transform + pos: -62.5,-29.5 + parent: 2 + - uid: 6375 + components: + - type: Transform + pos: -62.5,-28.5 + parent: 2 + - uid: 6376 + components: + - type: Transform + pos: -62.5,-30.5 + parent: 2 + - uid: 6377 + components: + - type: Transform + pos: -62.5,-31.5 + parent: 2 + - uid: 6378 + components: + - type: Transform + pos: -62.5,-32.5 + parent: 2 + - uid: 6379 + components: + - type: Transform + pos: -61.5,-33.5 + parent: 2 + - uid: 6380 + components: + - type: Transform + pos: -61.5,-34.5 + parent: 2 + - uid: 6381 + components: + - type: Transform + pos: -61.5,-35.5 + parent: 2 + - uid: 6382 + components: + - type: Transform + pos: -61.5,-36.5 + parent: 2 + - uid: 6383 + components: + - type: Transform + pos: -61.5,-37.5 + parent: 2 + - uid: 6384 + components: + - type: Transform + pos: -61.5,-38.5 + parent: 2 + - uid: 6385 + components: + - type: Transform + pos: -61.5,-39.5 + parent: 2 + - uid: 6386 + components: + - type: Transform + pos: -61.5,-27.5 + parent: 2 + - uid: 6387 + components: + - type: Transform + pos: -61.5,-28.5 + parent: 2 + - uid: 6388 + components: + - type: Transform + pos: -61.5,-29.5 + parent: 2 + - uid: 6389 + components: + - type: Transform + pos: -61.5,-30.5 + parent: 2 + - uid: 6390 + components: + - type: Transform + pos: -61.5,-31.5 + parent: 2 + - uid: 6391 + components: + - type: Transform + pos: -61.5,-32.5 + parent: 2 + - uid: 6392 + components: + - type: Transform + pos: -60.5,-33.5 + parent: 2 + - uid: 6393 + components: + - type: Transform + pos: -60.5,-34.5 + parent: 2 + - uid: 6394 + components: + - type: Transform + pos: -60.5,-35.5 + parent: 2 + - uid: 6395 + components: + - type: Transform + pos: -60.5,-36.5 + parent: 2 + - uid: 6396 + components: + - type: Transform + pos: -60.5,-37.5 + parent: 2 + - uid: 6397 + components: + - type: Transform + pos: -60.5,-38.5 + parent: 2 + - uid: 6398 + components: + - type: Transform + pos: -60.5,-39.5 + parent: 2 + - uid: 6399 + components: + - type: Transform + pos: -60.5,-28.5 + parent: 2 + - uid: 6400 + components: + - type: Transform + pos: -60.5,-29.5 + parent: 2 + - uid: 6401 + components: + - type: Transform + pos: -60.5,-30.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + pos: -60.5,-31.5 + parent: 2 + - uid: 6403 + components: + - type: Transform + pos: -60.5,-32.5 + parent: 2 + - uid: 6404 + components: + - type: Transform + pos: -60.5,-27.5 + parent: 2 + - uid: 6405 + components: + - type: Transform + pos: -59.5,-33.5 + parent: 2 + - uid: 6406 + components: + - type: Transform + pos: -59.5,-34.5 + parent: 2 + - uid: 6407 + components: + - type: Transform + pos: -59.5,-35.5 + parent: 2 + - uid: 6408 + components: + - type: Transform + pos: -59.5,-36.5 + parent: 2 + - uid: 6409 + components: + - type: Transform + pos: -59.5,-37.5 + parent: 2 + - uid: 6410 + components: + - type: Transform + pos: -59.5,-38.5 + parent: 2 + - uid: 6411 + components: + - type: Transform + pos: -59.5,-39.5 + parent: 2 + - uid: 6412 + components: + - type: Transform + pos: -59.5,-27.5 + parent: 2 + - uid: 6413 + components: + - type: Transform + pos: -59.5,-28.5 + parent: 2 + - uid: 6414 + components: + - type: Transform + pos: -59.5,-29.5 + parent: 2 + - uid: 6415 + components: + - type: Transform + pos: -59.5,-30.5 + parent: 2 + - uid: 6416 + components: + - type: Transform + pos: -59.5,-31.5 + parent: 2 + - uid: 6417 + components: + - type: Transform + pos: -59.5,-32.5 + parent: 2 + - uid: 6418 + components: + - type: Transform + pos: -63.5,-34.5 + parent: 2 + - uid: 6419 + components: + - type: Transform + pos: -63.5,-35.5 + parent: 2 + - uid: 6420 + components: + - type: Transform + pos: -63.5,-36.5 + parent: 2 + - uid: 6421 + components: + - type: Transform + pos: -63.5,-37.5 + parent: 2 + - uid: 6422 + components: + - type: Transform + pos: -63.5,-38.5 + parent: 2 + - uid: 6423 + components: + - type: Transform + pos: -63.5,-39.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + pos: -63.5,-26.5 + parent: 2 + - uid: 6425 + components: + - type: Transform + pos: -63.5,-27.5 + parent: 2 + - uid: 6426 + components: + - type: Transform + pos: -63.5,-28.5 + parent: 2 + - uid: 6427 + components: + - type: Transform + pos: -63.5,-29.5 + parent: 2 + - uid: 6428 + components: + - type: Transform + pos: -63.5,-30.5 + parent: 2 + - uid: 6429 + components: + - type: Transform + pos: -63.5,-31.5 + parent: 2 + - uid: 6430 + components: + - type: Transform + pos: -63.5,-32.5 + parent: 2 + - uid: 6431 + components: + - type: Transform + pos: -63.5,-33.5 + parent: 2 + - uid: 6432 + components: + - type: Transform + pos: -62.5,-34.5 + parent: 2 + - uid: 6433 + components: + - type: Transform + pos: -62.5,-35.5 + parent: 2 + - uid: 6434 + components: + - type: Transform + pos: -62.5,-36.5 + parent: 2 + - uid: 6435 + components: + - type: Transform + pos: -62.5,-37.5 + parent: 2 + - uid: 6436 + components: + - type: Transform + pos: -62.5,-38.5 + parent: 2 + - uid: 6437 + components: + - type: Transform + pos: -62.5,-39.5 + parent: 2 + - uid: 6438 + components: + - type: Transform + pos: -48.5,-26.5 + parent: 2 + - uid: 6439 + components: + - type: Transform + pos: -48.5,-27.5 + parent: 2 + - uid: 6440 + components: + - type: Transform + pos: -48.5,-28.5 + parent: 2 + - uid: 6441 + components: + - type: Transform + pos: -48.5,-29.5 + parent: 2 + - uid: 6442 + components: + - type: Transform + pos: -48.5,-31.5 + parent: 2 + - uid: 6443 + components: + - type: Transform + pos: -48.5,-32.5 + parent: 2 + - uid: 6444 + components: + - type: Transform + pos: -48.5,-33.5 + parent: 2 + - uid: 6445 + components: + - type: Transform + pos: -48.5,-34.5 + parent: 2 + - uid: 6446 + components: + - type: Transform + pos: -48.5,-35.5 + parent: 2 + - uid: 6447 + components: + - type: Transform + pos: -48.5,-36.5 + parent: 2 + - uid: 6448 + components: + - type: Transform + pos: -48.5,-37.5 + parent: 2 + - uid: 6449 + components: + - type: Transform + pos: -48.5,-38.5 + parent: 2 + - uid: 6450 + components: + - type: Transform + pos: -48.5,-39.5 + parent: 2 + - uid: 6451 + components: + - type: Transform + pos: -48.5,-40.5 + parent: 2 + - uid: 6452 + components: + - type: Transform + pos: -48.5,-30.5 + parent: 2 + - uid: 6453 + components: + - type: Transform + pos: -48.5,-41.5 + parent: 2 + - uid: 6454 + components: + - type: Transform + pos: -49.5,-27.5 + parent: 2 + - uid: 6455 + components: + - type: Transform + pos: -51.5,-37.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + pos: -51.5,-38.5 + parent: 2 + - uid: 6457 + components: + - type: Transform + pos: -51.5,-28.5 + parent: 2 + - uid: 6458 + components: + - type: Transform + pos: -51.5,-30.5 + parent: 2 + - uid: 6459 + components: + - type: Transform + pos: -51.5,-31.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + pos: -51.5,-32.5 + parent: 2 + - uid: 6461 + components: + - type: Transform + pos: -51.5,-33.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + pos: -51.5,-29.5 + parent: 2 + - uid: 6463 + components: + - type: Transform + pos: -51.5,-34.5 + parent: 2 + - uid: 6464 + components: + - type: Transform + pos: -51.5,-35.5 + parent: 2 + - uid: 6465 + components: + - type: Transform + pos: -51.5,-36.5 + parent: 2 + - uid: 6466 + components: + - type: Transform + pos: -50.5,-36.5 + parent: 2 + - uid: 6467 + components: + - type: Transform + pos: -50.5,-37.5 + parent: 2 + - uid: 6468 + components: + - type: Transform + pos: -50.5,-38.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + pos: -50.5,-39.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: -50.5,-40.5 + parent: 2 + - uid: 6471 + components: + - type: Transform + pos: -50.5,-41.5 + parent: 2 + - uid: 6472 + components: + - type: Transform + pos: -50.5,-42.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + pos: -51.5,-26.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + pos: -51.5,-27.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: -50.5,-27.5 + parent: 2 + - uid: 6476 + components: + - type: Transform + pos: -50.5,-29.5 + parent: 2 + - uid: 6477 + components: + - type: Transform + pos: -50.5,-28.5 + parent: 2 + - uid: 6478 + components: + - type: Transform + pos: -50.5,-30.5 + parent: 2 + - uid: 6479 + components: + - type: Transform + pos: -50.5,-31.5 + parent: 2 + - uid: 6480 + components: + - type: Transform + pos: -50.5,-32.5 + parent: 2 + - uid: 6481 + components: + - type: Transform + pos: -50.5,-33.5 + parent: 2 + - uid: 6482 + components: + - type: Transform + pos: -50.5,-34.5 + parent: 2 + - uid: 6483 + components: + - type: Transform + pos: -50.5,-35.5 + parent: 2 + - uid: 6484 + components: + - type: Transform + pos: -48.5,-42.5 + parent: 2 + - uid: 6485 + components: + - type: Transform + pos: -49.5,-37.5 + parent: 2 + - uid: 6486 + components: + - type: Transform + pos: -49.5,-36.5 + parent: 2 + - uid: 6487 + components: + - type: Transform + pos: -49.5,-38.5 + parent: 2 + - uid: 6488 + components: + - type: Transform + pos: -49.5,-39.5 + parent: 2 + - uid: 6489 + components: + - type: Transform + pos: -49.5,-40.5 + parent: 2 + - uid: 6490 + components: + - type: Transform + pos: -49.5,-41.5 + parent: 2 + - uid: 6491 + components: + - type: Transform + pos: -49.5,-42.5 + parent: 2 + - uid: 6492 + components: + - type: Transform + pos: -50.5,-26.5 + parent: 2 + - uid: 6493 + components: + - type: Transform + pos: -49.5,-26.5 + parent: 2 + - uid: 6494 + components: + - type: Transform + pos: -49.5,-28.5 + parent: 2 + - uid: 6495 + components: + - type: Transform + pos: -49.5,-29.5 + parent: 2 + - uid: 6496 + components: + - type: Transform + pos: -49.5,-30.5 + parent: 2 + - uid: 6497 + components: + - type: Transform + pos: -49.5,-31.5 + parent: 2 + - uid: 6498 + components: + - type: Transform + pos: -49.5,-32.5 + parent: 2 + - uid: 6499 + components: + - type: Transform + pos: -49.5,-33.5 + parent: 2 + - uid: 6500 + components: + - type: Transform + pos: -49.5,-34.5 + parent: 2 + - uid: 6501 + components: + - type: Transform + pos: -49.5,-35.5 + parent: 2 + - uid: 6502 + components: + - type: Transform + pos: -54.5,-42.5 + parent: 2 + - uid: 6503 + components: + - type: Transform + pos: -54.5,-40.5 + parent: 2 + - uid: 6504 + components: + - type: Transform + pos: -54.5,-41.5 + parent: 2 + - uid: 6505 + components: + - type: Transform + pos: -53.5,-41.5 + parent: 2 + - uid: 6506 + components: + - type: Transform + pos: -53.5,-42.5 + parent: 2 + - uid: 6507 + components: + - type: Transform + pos: -53.5,-40.5 + parent: 2 + - uid: 6508 + components: + - type: Transform + pos: -52.5,-40.5 + parent: 2 + - uid: 6509 + components: + - type: Transform + pos: -52.5,-41.5 + parent: 2 + - uid: 6510 + components: + - type: Transform + pos: -52.5,-42.5 + parent: 2 + - uid: 6511 + components: + - type: Transform + pos: -51.5,-39.5 + parent: 2 + - uid: 6512 + components: + - type: Transform + pos: -51.5,-40.5 + parent: 2 + - uid: 6513 + components: + - type: Transform + pos: -51.5,-41.5 + parent: 2 + - uid: 6514 + components: + - type: Transform + pos: -51.5,-42.5 + parent: 2 + - uid: 6515 + components: + - type: Transform + pos: -58.5,-40.5 + parent: 2 + - uid: 6516 + components: + - type: Transform + pos: -58.5,-41.5 + parent: 2 + - uid: 6517 + components: + - type: Transform + pos: -58.5,-42.5 + parent: 2 + - uid: 6518 + components: + - type: Transform + pos: -57.5,-40.5 + parent: 2 + - uid: 6519 + components: + - type: Transform + pos: -57.5,-41.5 + parent: 2 + - uid: 6520 + components: + - type: Transform + pos: -57.5,-42.5 + parent: 2 + - uid: 6521 + components: + - type: Transform + pos: -56.5,-40.5 + parent: 2 + - uid: 6522 + components: + - type: Transform + pos: -56.5,-41.5 + parent: 2 + - uid: 6523 + components: + - type: Transform + pos: -56.5,-42.5 + parent: 2 + - uid: 6524 + components: + - type: Transform + pos: -55.5,-40.5 + parent: 2 + - uid: 6525 + components: + - type: Transform + pos: -55.5,-41.5 + parent: 2 + - uid: 6526 + components: + - type: Transform + pos: -55.5,-42.5 + parent: 2 + - uid: 6527 + components: + - type: Transform + pos: -62.5,-40.5 + parent: 2 + - uid: 6528 + components: + - type: Transform + pos: -62.5,-41.5 + parent: 2 + - uid: 6529 + components: + - type: Transform + pos: -62.5,-42.5 + parent: 2 + - uid: 6530 + components: + - type: Transform + pos: -61.5,-42.5 + parent: 2 + - uid: 6531 + components: + - type: Transform + pos: -61.5,-40.5 + parent: 2 + - uid: 6532 + components: + - type: Transform + pos: -61.5,-41.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + pos: -60.5,-41.5 + parent: 2 + - uid: 6534 + components: + - type: Transform + pos: -60.5,-42.5 + parent: 2 + - uid: 6535 + components: + - type: Transform + pos: -60.5,-40.5 + parent: 2 + - uid: 6536 + components: + - type: Transform + pos: -59.5,-41.5 + parent: 2 + - uid: 6537 + components: + - type: Transform + pos: -59.5,-42.5 + parent: 2 + - uid: 6538 + components: + - type: Transform + pos: -59.5,-40.5 + parent: 2 + - uid: 6539 + components: + - type: Transform + pos: -59.5,-44.5 + parent: 2 + - uid: 6540 + components: + - type: Transform + pos: -59.5,-43.5 + parent: 2 + - uid: 6541 + components: + - type: Transform + pos: -59.5,-51.5 + parent: 2 + - uid: 6542 + components: + - type: Transform + pos: -59.5,-49.5 + parent: 2 + - uid: 6543 + components: + - type: Transform + pos: -59.5,-48.5 + parent: 2 + - uid: 6544 + components: + - type: Transform + pos: -59.5,-47.5 + parent: 2 + - uid: 6545 + components: + - type: Transform + pos: -59.5,-46.5 + parent: 2 + - uid: 6546 + components: + - type: Transform + pos: -59.5,-45.5 + parent: 2 + - uid: 6547 + components: + - type: Transform + pos: -60.5,-44.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + pos: -60.5,-43.5 + parent: 2 + - uid: 6549 + components: + - type: Transform + pos: -60.5,-51.5 + parent: 2 + - uid: 6550 + components: + - type: Transform + pos: -60.5,-50.5 + parent: 2 + - uid: 6551 + components: + - type: Transform + pos: -60.5,-49.5 + parent: 2 + - uid: 6552 + components: + - type: Transform + pos: -60.5,-48.5 + parent: 2 + - uid: 6553 + components: + - type: Transform + pos: -60.5,-47.5 + parent: 2 + - uid: 6554 + components: + - type: Transform + pos: -60.5,-46.5 + parent: 2 + - uid: 6555 + components: + - type: Transform + pos: -60.5,-45.5 + parent: 2 + - uid: 6556 + components: + - type: Transform + pos: -61.5,-43.5 + parent: 2 + - uid: 6557 + components: + - type: Transform + pos: -61.5,-51.5 + parent: 2 + - uid: 6558 + components: + - type: Transform + pos: -61.5,-50.5 + parent: 2 + - uid: 6559 + components: + - type: Transform + pos: -61.5,-48.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + pos: -61.5,-47.5 + parent: 2 + - uid: 6561 + components: + - type: Transform + pos: -61.5,-46.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + pos: -61.5,-45.5 + parent: 2 + - uid: 6563 + components: + - type: Transform + pos: -61.5,-49.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + pos: -61.5,-44.5 + parent: 2 + - uid: 6565 + components: + - type: Transform + pos: -57.5,-44.5 + parent: 2 + - uid: 6566 + components: + - type: Transform + pos: -57.5,-43.5 + parent: 2 + - uid: 6567 + components: + - type: Transform + pos: -57.5,-51.5 + parent: 2 + - uid: 6568 + components: + - type: Transform + pos: -57.5,-50.5 + parent: 2 + - uid: 6569 + components: + - type: Transform + pos: -57.5,-49.5 + parent: 2 + - uid: 6570 + components: + - type: Transform + pos: -57.5,-48.5 + parent: 2 + - uid: 6571 + components: + - type: Transform + pos: -57.5,-47.5 + parent: 2 + - uid: 6572 + components: + - type: Transform + pos: -57.5,-46.5 + parent: 2 + - uid: 6573 + components: + - type: Transform + pos: -57.5,-45.5 + parent: 2 + - uid: 6574 + components: + - type: Transform + pos: -58.5,-43.5 + parent: 2 + - uid: 6575 + components: + - type: Transform + pos: -58.5,-51.5 + parent: 2 + - uid: 6576 + components: + - type: Transform + pos: -58.5,-50.5 + parent: 2 + - uid: 6577 + components: + - type: Transform + pos: -58.5,-48.5 + parent: 2 + - uid: 6578 + components: + - type: Transform + pos: -58.5,-47.5 + parent: 2 + - uid: 6579 + components: + - type: Transform + pos: -58.5,-46.5 + parent: 2 + - uid: 6580 + components: + - type: Transform + pos: -58.5,-45.5 + parent: 2 + - uid: 6581 + components: + - type: Transform + pos: -58.5,-49.5 + parent: 2 + - uid: 6582 + components: + - type: Transform + pos: -58.5,-44.5 + parent: 2 + - uid: 6583 + components: + - type: Transform + pos: -59.5,-50.5 + parent: 2 + - uid: 6584 + components: + - type: Transform + pos: -55.5,-51.5 + parent: 2 + - uid: 6585 + components: + - type: Transform + pos: -55.5,-50.5 + parent: 2 + - uid: 6586 + components: + - type: Transform + pos: -55.5,-49.5 + parent: 2 + - uid: 6587 + components: + - type: Transform + pos: -55.5,-48.5 + parent: 2 + - uid: 6588 + components: + - type: Transform + pos: -56.5,-46.5 + parent: 2 + - uid: 6589 + components: + - type: Transform + pos: -56.5,-45.5 + parent: 2 + - uid: 6590 + components: + - type: Transform + pos: -56.5,-44.5 + parent: 2 + - uid: 6591 + components: + - type: Transform + pos: -56.5,-43.5 + parent: 2 + - uid: 6592 + components: + - type: Transform + pos: -56.5,-51.5 + parent: 2 + - uid: 6593 + components: + - type: Transform + pos: -56.5,-50.5 + parent: 2 + - uid: 6594 + components: + - type: Transform + pos: -56.5,-49.5 + parent: 2 + - uid: 6595 + components: + - type: Transform + pos: -56.5,-48.5 + parent: 2 + - uid: 6596 + components: + - type: Transform + pos: -56.5,-47.5 + parent: 2 + - uid: 6597 + components: + - type: Transform + pos: -55.5,-47.5 + parent: 2 + - uid: 6598 + components: + - type: Transform + pos: -55.5,-46.5 + parent: 2 + - uid: 6599 + components: + - type: Transform + pos: -55.5,-45.5 + parent: 2 + - uid: 6600 + components: + - type: Transform + pos: -55.5,-44.5 + parent: 2 + - uid: 6601 + components: + - type: Transform + pos: -55.5,-43.5 + parent: 2 + - uid: 6602 + components: + - type: Transform + pos: -52.5,-51.5 + parent: 2 + - uid: 6603 + components: + - type: Transform + pos: -52.5,-50.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + pos: -52.5,-49.5 + parent: 2 + - uid: 6605 + components: + - type: Transform + pos: -52.5,-48.5 + parent: 2 + - uid: 6606 + components: + - type: Transform + pos: -53.5,-46.5 + parent: 2 + - uid: 6607 + components: + - type: Transform + pos: -53.5,-45.5 + parent: 2 + - uid: 6608 + components: + - type: Transform + pos: -53.5,-44.5 + parent: 2 + - uid: 6609 + components: + - type: Transform + pos: -53.5,-43.5 + parent: 2 + - uid: 6610 + components: + - type: Transform + pos: -53.5,-51.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + pos: -53.5,-50.5 + parent: 2 + - uid: 6612 + components: + - type: Transform + pos: -53.5,-49.5 + parent: 2 + - uid: 6613 + components: + - type: Transform + pos: -53.5,-48.5 + parent: 2 + - uid: 6614 + components: + - type: Transform + pos: -53.5,-47.5 + parent: 2 + - uid: 6615 + components: + - type: Transform + pos: -54.5,-45.5 + parent: 2 + - uid: 6616 + components: + - type: Transform + pos: -54.5,-44.5 + parent: 2 + - uid: 6617 + components: + - type: Transform + pos: -54.5,-43.5 + parent: 2 + - uid: 6618 + components: + - type: Transform + pos: -54.5,-51.5 + parent: 2 + - uid: 6619 + components: + - type: Transform + pos: -54.5,-50.5 + parent: 2 + - uid: 6620 + components: + - type: Transform + pos: -54.5,-49.5 + parent: 2 + - uid: 6621 + components: + - type: Transform + pos: -54.5,-48.5 + parent: 2 + - uid: 6622 + components: + - type: Transform + pos: -54.5,-47.5 + parent: 2 + - uid: 6623 + components: + - type: Transform + pos: -54.5,-46.5 + parent: 2 + - uid: 6624 + components: + - type: Transform + pos: -50.5,-50.5 + parent: 2 + - uid: 6625 + components: + - type: Transform + pos: -50.5,-49.5 + parent: 2 + - uid: 6626 + components: + - type: Transform + pos: -50.5,-48.5 + parent: 2 + - uid: 6627 + components: + - type: Transform + pos: -50.5,-47.5 + parent: 2 + - uid: 6628 + components: + - type: Transform + pos: -50.5,-46.5 + parent: 2 + - uid: 6629 + components: + - type: Transform + pos: -50.5,-45.5 + parent: 2 + - uid: 6630 + components: + - type: Transform + pos: -50.5,-44.5 + parent: 2 + - uid: 6631 + components: + - type: Transform + pos: -50.5,-43.5 + parent: 2 + - uid: 6632 + components: + - type: Transform + pos: -51.5,-25.5 + parent: 2 + - uid: 6633 + components: + - type: Transform + pos: -50.5,-51.5 + parent: 2 + - uid: 6634 + components: + - type: Transform + pos: -51.5,-49.5 + parent: 2 + - uid: 6635 + components: + - type: Transform + pos: -51.5,-48.5 + parent: 2 + - uid: 6636 + components: + - type: Transform + pos: -51.5,-47.5 + parent: 2 + - uid: 6637 + components: + - type: Transform + pos: -51.5,-46.5 + parent: 2 + - uid: 6638 + components: + - type: Transform + pos: -51.5,-45.5 + parent: 2 + - uid: 6639 + components: + - type: Transform + pos: -51.5,-44.5 + parent: 2 + - uid: 6640 + components: + - type: Transform + pos: -51.5,-43.5 + parent: 2 + - uid: 6641 + components: + - type: Transform + pos: -51.5,-51.5 + parent: 2 + - uid: 6642 + components: + - type: Transform + pos: -51.5,-50.5 + parent: 2 + - uid: 6643 + components: + - type: Transform + pos: -52.5,-47.5 + parent: 2 + - uid: 6644 + components: + - type: Transform + pos: -52.5,-46.5 + parent: 2 + - uid: 6645 + components: + - type: Transform + pos: -52.5,-45.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + pos: -52.5,-44.5 + parent: 2 + - uid: 6647 + components: + - type: Transform + pos: -52.5,-43.5 + parent: 2 + - uid: 6648 + components: + - type: Transform + pos: -48.5,-50.5 + parent: 2 + - uid: 6649 + components: + - type: Transform + pos: -48.5,-49.5 + parent: 2 + - uid: 6650 + components: + - type: Transform + pos: -48.5,-48.5 + parent: 2 + - uid: 6651 + components: + - type: Transform + pos: -48.5,-47.5 + parent: 2 + - uid: 6652 + components: + - type: Transform + pos: -48.5,-46.5 + parent: 2 + - uid: 6653 + components: + - type: Transform + pos: -48.5,-45.5 + parent: 2 + - uid: 6654 + components: + - type: Transform + pos: -48.5,-44.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + pos: -48.5,-43.5 + parent: 2 + - uid: 6656 + components: + - type: Transform + pos: -49.5,-25.5 + parent: 2 + - uid: 6657 + components: + - type: Transform + pos: -48.5,-51.5 + parent: 2 + - uid: 6658 + components: + - type: Transform + pos: -49.5,-49.5 + parent: 2 + - uid: 6659 + components: + - type: Transform + pos: -49.5,-48.5 + parent: 2 + - uid: 6660 + components: + - type: Transform + pos: -49.5,-47.5 + parent: 2 + - uid: 6661 + components: + - type: Transform + pos: -49.5,-46.5 + parent: 2 + - uid: 6662 + components: + - type: Transform + pos: -49.5,-45.5 + parent: 2 + - uid: 6663 + components: + - type: Transform + pos: -49.5,-44.5 + parent: 2 + - uid: 6664 + components: + - type: Transform + pos: -49.5,-43.5 + parent: 2 + - uid: 6665 + components: + - type: Transform + pos: -50.5,-25.5 + parent: 2 + - uid: 6666 + components: + - type: Transform + pos: -49.5,-51.5 + parent: 2 + - uid: 6667 + components: + - type: Transform + pos: -49.5,-50.5 + parent: 2 + - uid: 6668 + components: + - type: Transform + pos: -46.5,-33.5 + parent: 2 + - uid: 6669 + components: + - type: Transform + pos: -46.5,-32.5 + parent: 2 + - uid: 6670 + components: + - type: Transform + pos: -46.5,-42.5 + parent: 2 + - uid: 6671 + components: + - type: Transform + pos: -46.5,-41.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + pos: -46.5,-40.5 + parent: 2 + - uid: 6673 + components: + - type: Transform + pos: -46.5,-39.5 + parent: 2 + - uid: 6674 + components: + - type: Transform + pos: -46.5,-38.5 + parent: 2 + - uid: 6675 + components: + - type: Transform + pos: -46.5,-37.5 + parent: 2 + - uid: 6676 + components: + - type: Transform + pos: -46.5,-36.5 + parent: 2 + - uid: 6677 + components: + - type: Transform + pos: -46.5,-35.5 + parent: 2 + - uid: 6678 + components: + - type: Transform + pos: -46.5,-34.5 + parent: 2 + - uid: 6679 + components: + - type: Transform + pos: -46.5,-51.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + pos: -46.5,-50.5 + parent: 2 + - uid: 6681 + components: + - type: Transform + pos: -46.5,-49.5 + parent: 2 + - uid: 6682 + components: + - type: Transform + pos: -46.5,-48.5 + parent: 2 + - uid: 6683 + components: + - type: Transform + pos: -46.5,-47.5 + parent: 2 + - uid: 6684 + components: + - type: Transform + pos: -46.5,-46.5 + parent: 2 + - uid: 6685 + components: + - type: Transform + pos: -46.5,-45.5 + parent: 2 + - uid: 6686 + components: + - type: Transform + pos: -46.5,-44.5 + parent: 2 + - uid: 6687 + components: + - type: Transform + pos: -46.5,-43.5 + parent: 2 + - uid: 6688 + components: + - type: Transform + pos: -47.5,-32.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + pos: -47.5,-41.5 + parent: 2 + - uid: 6690 + components: + - type: Transform + pos: -47.5,-40.5 + parent: 2 + - uid: 6691 + components: + - type: Transform + pos: -47.5,-39.5 + parent: 2 + - uid: 6692 + components: + - type: Transform + pos: -47.5,-38.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + pos: -47.5,-37.5 + parent: 2 + - uid: 6694 + components: + - type: Transform + pos: -47.5,-36.5 + parent: 2 + - uid: 6695 + components: + - type: Transform + pos: -47.5,-35.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + pos: -47.5,-34.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + pos: -47.5,-33.5 + parent: 2 + - uid: 6698 + components: + - type: Transform + pos: -47.5,-50.5 + parent: 2 + - uid: 6699 + components: + - type: Transform + pos: -47.5,-49.5 + parent: 2 + - uid: 6700 + components: + - type: Transform + pos: -47.5,-48.5 + parent: 2 + - uid: 6701 + components: + - type: Transform + pos: -47.5,-47.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + pos: -47.5,-46.5 + parent: 2 + - uid: 6703 + components: + - type: Transform + pos: -47.5,-45.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + pos: -47.5,-44.5 + parent: 2 + - uid: 6705 + components: + - type: Transform + pos: -47.5,-43.5 + parent: 2 + - uid: 6706 + components: + - type: Transform + pos: -47.5,-42.5 + parent: 2 + - uid: 6707 + components: + - type: Transform + pos: -47.5,-51.5 + parent: 2 + - uid: 6708 + components: + - type: Transform + pos: -43.5,-45.5 + parent: 2 + - uid: 6709 + components: + - type: Transform + pos: -43.5,-44.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + pos: -43.5,-51.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + pos: -43.5,-50.5 + parent: 2 + - uid: 6712 + components: + - type: Transform + pos: -43.5,-49.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + pos: -43.5,-48.5 + parent: 2 + - uid: 6714 + components: + - type: Transform + pos: -43.5,-47.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + pos: -43.5,-46.5 + parent: 2 + - uid: 6716 + components: + - type: Transform + pos: -44.5,-35.5 + parent: 2 + - uid: 6717 + components: + - type: Transform + pos: -44.5,-34.5 + parent: 2 + - uid: 6718 + components: + - type: Transform + pos: -44.5,-33.5 + parent: 2 + - uid: 6719 + components: + - type: Transform + pos: -44.5,-32.5 + parent: 2 + - uid: 6720 + components: + - type: Transform + pos: -44.5,-44.5 + parent: 2 + - uid: 6721 + components: + - type: Transform + pos: -44.5,-43.5 + parent: 2 + - uid: 6722 + components: + - type: Transform + pos: -44.5,-42.5 + parent: 2 + - uid: 6723 + components: + - type: Transform + pos: -44.5,-41.5 + parent: 2 + - uid: 6724 + components: + - type: Transform + pos: -44.5,-40.5 + parent: 2 + - uid: 6725 + components: + - type: Transform + pos: -44.5,-39.5 + parent: 2 + - uid: 6726 + components: + - type: Transform + pos: -44.5,-38.5 + parent: 2 + - uid: 6727 + components: + - type: Transform + pos: -44.5,-37.5 + parent: 2 + - uid: 6728 + components: + - type: Transform + pos: -44.5,-36.5 + parent: 2 + - uid: 6729 + components: + - type: Transform + pos: -44.5,-51.5 + parent: 2 + - uid: 6730 + components: + - type: Transform + pos: -44.5,-50.5 + parent: 2 + - uid: 6731 + components: + - type: Transform + pos: -44.5,-49.5 + parent: 2 + - uid: 6732 + components: + - type: Transform + pos: -44.5,-48.5 + parent: 2 + - uid: 6733 + components: + - type: Transform + pos: -44.5,-47.5 + parent: 2 + - uid: 6734 + components: + - type: Transform + pos: -44.5,-46.5 + parent: 2 + - uid: 6735 + components: + - type: Transform + pos: -44.5,-45.5 + parent: 2 + - uid: 6736 + components: + - type: Transform + pos: -45.5,-34.5 + parent: 2 + - uid: 6737 + components: + - type: Transform + pos: -45.5,-33.5 + parent: 2 + - uid: 6738 + components: + - type: Transform + pos: -45.5,-32.5 + parent: 2 + - uid: 6739 + components: + - type: Transform + pos: -45.5,-43.5 + parent: 2 + - uid: 6740 + components: + - type: Transform + pos: -45.5,-42.5 + parent: 2 + - uid: 6741 + components: + - type: Transform + pos: -45.5,-41.5 + parent: 2 + - uid: 6742 + components: + - type: Transform + pos: -45.5,-40.5 + parent: 2 + - uid: 6743 + components: + - type: Transform + pos: -45.5,-39.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + pos: -45.5,-38.5 + parent: 2 + - uid: 6745 + components: + - type: Transform + pos: -45.5,-37.5 + parent: 2 + - uid: 6746 + components: + - type: Transform + pos: -45.5,-36.5 + parent: 2 + - uid: 6747 + components: + - type: Transform + pos: -45.5,-35.5 + parent: 2 + - uid: 6748 + components: + - type: Transform + pos: -45.5,-51.5 + parent: 2 + - uid: 6749 + components: + - type: Transform + pos: -45.5,-50.5 + parent: 2 + - uid: 6750 + components: + - type: Transform + pos: -45.5,-49.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + pos: -45.5,-48.5 + parent: 2 + - uid: 6752 + components: + - type: Transform + pos: -45.5,-47.5 + parent: 2 + - uid: 6753 + components: + - type: Transform + pos: -45.5,-46.5 + parent: 2 + - uid: 6754 + components: + - type: Transform + pos: -45.5,-45.5 + parent: 2 + - uid: 6755 + components: + - type: Transform + pos: -45.5,-44.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + pos: -41.5,-44.5 + parent: 2 + - uid: 6757 + components: + - type: Transform + pos: -41.5,-43.5 + parent: 2 + - uid: 6758 + components: + - type: Transform + pos: -41.5,-42.5 + parent: 2 + - uid: 6759 + components: + - type: Transform + pos: -41.5,-41.5 + parent: 2 + - uid: 6760 + components: + - type: Transform + pos: -41.5,-40.5 + parent: 2 + - uid: 6761 + components: + - type: Transform + pos: -41.5,-39.5 + parent: 2 + - uid: 6762 + components: + - type: Transform + pos: -41.5,-38.5 + parent: 2 + - uid: 6763 + components: + - type: Transform + pos: -41.5,-37.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + pos: -41.5,-36.5 + parent: 2 + - uid: 6765 + components: + - type: Transform + pos: -41.5,-51.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + pos: -41.5,-50.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + pos: -41.5,-49.5 + parent: 2 + - uid: 6768 + components: + - type: Transform + pos: -41.5,-48.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + pos: -41.5,-47.5 + parent: 2 + - uid: 6770 + components: + - type: Transform + pos: -41.5,-46.5 + parent: 2 + - uid: 6771 + components: + - type: Transform + pos: -41.5,-45.5 + parent: 2 + - uid: 6772 + components: + - type: Transform + pos: -42.5,-34.5 + parent: 2 + - uid: 6773 + components: + - type: Transform + pos: -42.5,-43.5 + parent: 2 + - uid: 6774 + components: + - type: Transform + pos: -42.5,-42.5 + parent: 2 + - uid: 6775 + components: + - type: Transform + pos: -42.5,-41.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + pos: -42.5,-40.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + pos: -42.5,-39.5 + parent: 2 + - uid: 6778 + components: + - type: Transform + pos: -42.5,-38.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + pos: -42.5,-37.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + pos: -42.5,-36.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + pos: -42.5,-35.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + pos: -42.5,-51.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + pos: -42.5,-50.5 + parent: 2 + - uid: 6784 + components: + - type: Transform + pos: -42.5,-49.5 + parent: 2 + - uid: 6785 + components: + - type: Transform + pos: -42.5,-48.5 + parent: 2 + - uid: 6786 + components: + - type: Transform + pos: -42.5,-47.5 + parent: 2 + - uid: 6787 + components: + - type: Transform + pos: -42.5,-46.5 + parent: 2 + - uid: 6788 + components: + - type: Transform + pos: -42.5,-45.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + pos: -42.5,-44.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + pos: -43.5,-33.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + pos: -43.5,-32.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + pos: -43.5,-42.5 + parent: 2 + - uid: 6793 + components: + - type: Transform + pos: -43.5,-41.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + pos: -43.5,-40.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + pos: -43.5,-39.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + pos: -43.5,-38.5 + parent: 2 + - uid: 6797 + components: + - type: Transform + pos: -43.5,-37.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + pos: -43.5,-36.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + pos: -43.5,-35.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + pos: -43.5,-34.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + pos: -43.5,-43.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + pos: -39.5,-38.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + pos: -39.5,-37.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + pos: -39.5,-36.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + pos: -39.5,-35.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + pos: -39.5,-47.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + pos: -39.5,-46.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + pos: -39.5,-45.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + pos: -39.5,-44.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + pos: -39.5,-42.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + pos: -39.5,-51.5 + parent: 2 + - uid: 6817 + components: + - type: Transform + pos: -39.5,-50.5 + parent: 2 + - uid: 6818 + components: + - type: Transform + pos: -39.5,-49.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + pos: -39.5,-48.5 + parent: 2 + - uid: 6820 + components: + - type: Transform + pos: -40.5,-37.5 + parent: 2 + - uid: 6821 + components: + - type: Transform + pos: -40.5,-36.5 + parent: 2 + - uid: 6822 + components: + - type: Transform + pos: -40.5,-35.5 + parent: 2 + - uid: 6823 + components: + - type: Transform + pos: -40.5,-34.5 + parent: 2 + - uid: 6824 + components: + - type: Transform + pos: -40.5,-46.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + pos: -40.5,-45.5 + parent: 2 + - uid: 6826 + components: + - type: Transform + pos: -40.5,-44.5 + parent: 2 + - uid: 6827 + components: + - type: Transform + pos: -40.5,-43.5 + parent: 2 + - uid: 6828 + components: + - type: Transform + pos: -40.5,-42.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + pos: -40.5,-41.5 + parent: 2 + - uid: 6830 + components: + - type: Transform + pos: -40.5,-40.5 + parent: 2 + - uid: 6831 + components: + - type: Transform + pos: -40.5,-39.5 + parent: 2 + - uid: 6832 + components: + - type: Transform + pos: -40.5,-38.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + pos: -40.5,-51.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + pos: -40.5,-50.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + pos: -40.5,-49.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + pos: -40.5,-48.5 + parent: 2 + - uid: 6837 + components: + - type: Transform + pos: -40.5,-47.5 + parent: 2 + - uid: 6838 + components: + - type: Transform + pos: -41.5,-35.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + pos: -41.5,-34.5 + parent: 2 + - uid: 6840 + components: + - type: Transform + pos: -37.5,-37.5 + parent: 2 + - uid: 6841 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + pos: -37.5,-35.5 + parent: 2 + - uid: 6843 + components: + - type: Transform + pos: -37.5,-34.5 + parent: 2 + - uid: 6844 + components: + - type: Transform + pos: -36.5,-51.5 + parent: 2 + - uid: 6845 + components: + - type: Transform + pos: -36.5,-50.5 + parent: 2 + - uid: 6846 + components: + - type: Transform + pos: -36.5,-49.5 + parent: 2 + - uid: 6847 + components: + - type: Transform + pos: -36.5,-48.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + pos: -37.5,-45.5 + parent: 2 + - uid: 6850 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 + - uid: 6851 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 + - uid: 6852 + components: + - type: Transform + pos: -37.5,-42.5 + parent: 2 + - uid: 6856 + components: + - type: Transform + pos: -37.5,-38.5 + parent: 2 + - uid: 6857 + components: + - type: Transform + pos: -37.5,-51.5 + parent: 2 + - uid: 6858 + components: + - type: Transform + pos: -37.5,-50.5 + parent: 2 + - uid: 6859 + components: + - type: Transform + pos: -37.5,-49.5 + parent: 2 + - uid: 6860 + components: + - type: Transform + pos: -37.5,-48.5 + parent: 2 + - uid: 6861 + components: + - type: Transform + pos: -37.5,-47.5 + parent: 2 + - uid: 6862 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 2 + - uid: 6863 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 2 + - uid: 6864 + components: + - type: Transform + pos: -38.5,-34.5 + parent: 2 + - uid: 6865 + components: + - type: Transform + pos: -38.5,-45.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 + - uid: 6867 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 + - uid: 6868 + components: + - type: Transform + pos: -38.5,-42.5 + parent: 2 + - uid: 6872 + components: + - type: Transform + pos: -38.5,-38.5 + parent: 2 + - uid: 6873 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 2 + - uid: 6874 + components: + - type: Transform + pos: -38.5,-51.5 + parent: 2 + - uid: 6875 + components: + - type: Transform + pos: -38.5,-50.5 + parent: 2 + - uid: 6876 + components: + - type: Transform + pos: -38.5,-49.5 + parent: 2 + - uid: 6877 + components: + - type: Transform + pos: -38.5,-48.5 + parent: 2 + - uid: 6878 + components: + - type: Transform + pos: -38.5,-47.5 + parent: 2 + - uid: 6879 + components: + - type: Transform + pos: -38.5,-46.5 + parent: 2 + - uid: 6880 + components: + - type: Transform + pos: -34.5,-41.5 + parent: 2 + - uid: 6881 + components: + - type: Transform + pos: -34.5,-40.5 + parent: 2 + - uid: 6882 + components: + - type: Transform + pos: -34.5,-50.5 + parent: 2 + - uid: 6883 + components: + - type: Transform + pos: -34.5,-49.5 + parent: 2 + - uid: 6884 + components: + - type: Transform + pos: -34.5,-48.5 + parent: 2 + - uid: 6885 + components: + - type: Transform + pos: -34.5,-47.5 + parent: 2 + - uid: 6886 + components: + - type: Transform + pos: -34.5,-46.5 + parent: 2 + - uid: 6887 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - uid: 6888 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - uid: 6889 + components: + - type: Transform + pos: -34.5,-43.5 + parent: 2 + - uid: 6890 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 2 + - uid: 6891 + components: + - type: Transform + pos: -34.5,-51.5 + parent: 2 + - uid: 6892 + components: + - type: Transform + pos: -35.5,-40.5 + parent: 2 + - uid: 6893 + components: + - type: Transform + pos: -35.5,-39.5 + parent: 2 + - uid: 6894 + components: + - type: Transform + pos: -35.5,-38.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + pos: -35.5,-37.5 + parent: 2 + - uid: 6896 + components: + - type: Transform + pos: -35.5,-36.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + pos: -35.5,-35.5 + parent: 2 + - uid: 6898 + components: + - type: Transform + pos: -35.5,-34.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + pos: -35.5,-49.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + pos: -35.5,-48.5 + parent: 2 + - uid: 6901 + components: + - type: Transform + pos: -35.5,-47.5 + parent: 2 + - uid: 6902 + components: + - type: Transform + pos: -35.5,-46.5 + parent: 2 + - uid: 6903 + components: + - type: Transform + pos: -35.5,-45.5 + parent: 2 + - uid: 6904 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 + - uid: 6905 + components: + - type: Transform + pos: -35.5,-43.5 + parent: 2 + - uid: 6906 + components: + - type: Transform + pos: -35.5,-42.5 + parent: 2 + - uid: 6907 + components: + - type: Transform + pos: -35.5,-41.5 + parent: 2 + - uid: 6908 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 + - uid: 6909 + components: + - type: Transform + pos: -35.5,-50.5 + parent: 2 + - uid: 6910 + components: + - type: Transform + pos: -36.5,-39.5 + parent: 2 + - uid: 6911 + components: + - type: Transform + pos: -36.5,-38.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + pos: -36.5,-37.5 + parent: 2 + - uid: 6913 + components: + - type: Transform + pos: -36.5,-36.5 + parent: 2 + - uid: 6914 + components: + - type: Transform + pos: -36.5,-35.5 + parent: 2 + - uid: 6915 + components: + - type: Transform + pos: -36.5,-34.5 + parent: 2 + - uid: 6916 + components: + - type: Transform + pos: -36.5,-47.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + pos: -36.5,-46.5 + parent: 2 + - uid: 6918 + components: + - type: Transform + pos: -36.5,-45.5 + parent: 2 + - uid: 6919 + components: + - type: Transform + pos: -36.5,-44.5 + parent: 2 + - uid: 6920 + components: + - type: Transform + pos: -36.5,-43.5 + parent: 2 + - uid: 6921 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - uid: 6922 + components: + - type: Transform + pos: -36.5,-41.5 + parent: 2 + - uid: 6923 + components: + - type: Transform + pos: -36.5,-40.5 + parent: 2 + - uid: 6924 + components: + - type: Transform + pos: -32.5,-40.5 + parent: 2 + - uid: 6925 + components: + - type: Transform + pos: -32.5,-39.5 + parent: 2 + - uid: 6926 + components: + - type: Transform + pos: -32.5,-38.5 + parent: 2 + - uid: 6927 + components: + - type: Transform + pos: -32.5,-37.5 + parent: 2 + - uid: 6928 + components: + - type: Transform + pos: -32.5,-36.5 + parent: 2 + - uid: 6929 + components: + - type: Transform + pos: -32.5,-35.5 + parent: 2 + - uid: 6930 + components: + - type: Transform + pos: -32.5,-34.5 + parent: 2 + - uid: 6931 + components: + - type: Transform + pos: -32.5,-51.5 + parent: 2 + - uid: 6932 + components: + - type: Transform + pos: -32.5,-50.5 + parent: 2 + - uid: 6933 + components: + - type: Transform + pos: -32.5,-49.5 + parent: 2 + - uid: 6934 + components: + - type: Transform + pos: -32.5,-48.5 + parent: 2 + - uid: 6935 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - uid: 6936 + components: + - type: Transform + pos: -32.5,-46.5 + parent: 2 + - uid: 6937 + components: + - type: Transform + pos: -32.5,-45.5 + parent: 2 + - uid: 6938 + components: + - type: Transform + pos: -32.5,-44.5 + parent: 2 + - uid: 6939 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - uid: 6940 + components: + - type: Transform + pos: -32.5,-42.5 + parent: 2 + - uid: 6941 + components: + - type: Transform + pos: -32.5,-41.5 + parent: 2 + - uid: 6942 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 + - uid: 6943 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 6944 + components: + - type: Transform + pos: -33.5,-37.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 + - uid: 6946 + components: + - type: Transform + pos: -33.5,-35.5 + parent: 2 + - uid: 6947 + components: + - type: Transform + pos: -33.5,-34.5 + parent: 2 + - uid: 6948 + components: + - type: Transform + pos: -33.5,-48.5 + parent: 2 + - uid: 6949 + components: + - type: Transform + pos: -33.5,-47.5 + parent: 2 + - uid: 6950 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 + - uid: 6951 + components: + - type: Transform + pos: -33.5,-45.5 + parent: 2 + - uid: 6952 + components: + - type: Transform + pos: -33.5,-44.5 + parent: 2 + - uid: 6953 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 + - uid: 6954 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - uid: 6955 + components: + - type: Transform + pos: -33.5,-41.5 + parent: 2 + - uid: 6956 + components: + - type: Transform + pos: -33.5,-40.5 + parent: 2 + - uid: 6957 + components: + - type: Transform + pos: -33.5,-51.5 + parent: 2 + - uid: 6958 + components: + - type: Transform + pos: -33.5,-50.5 + parent: 2 + - uid: 6959 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - uid: 6960 + components: + - type: Transform + pos: -34.5,-38.5 + parent: 2 + - uid: 6961 + components: + - type: Transform + pos: -34.5,-37.5 + parent: 2 + - uid: 6962 + components: + - type: Transform + pos: -34.5,-36.5 + parent: 2 + - uid: 6963 + components: + - type: Transform + pos: -34.5,-35.5 + parent: 2 + - uid: 6964 + components: + - type: Transform + pos: -34.5,-34.5 + parent: 2 + - uid: 6965 + components: + - type: Transform + pos: -34.5,-39.5 + parent: 2 + - uid: 6966 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 2 + - uid: 6967 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 6968 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 + - uid: 6969 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + pos: -31.5,-38.5 + parent: 2 + - uid: 6971 + components: + - type: Transform + pos: -31.5,-37.5 + parent: 2 + - uid: 6972 + components: + - type: Transform + pos: -31.5,-36.5 + parent: 2 + - uid: 6973 + components: + - type: Transform + pos: -31.5,-35.5 + parent: 2 + - uid: 6974 + components: + - type: Transform + pos: -31.5,-34.5 + parent: 2 + - uid: 6975 + components: + - type: Transform + pos: -31.5,-51.5 + parent: 2 + - uid: 6976 + components: + - type: Transform + pos: -31.5,-50.5 + parent: 2 + - uid: 6977 + components: + - type: Transform + pos: -31.5,-49.5 + parent: 2 + - uid: 6978 + components: + - type: Transform + pos: -31.5,-48.5 + parent: 2 + - uid: 6979 + components: + - type: Transform + pos: -31.5,-47.5 + parent: 2 + - uid: 6980 + components: + - type: Transform + pos: -31.5,-46.5 + parent: 2 + - uid: 6981 + components: + - type: Transform + pos: -31.5,-45.5 + parent: 2 + - uid: 6982 + components: + - type: Transform + pos: -31.5,-44.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 + - uid: 6984 + components: + - type: Transform + pos: -60.5,-55.5 + parent: 2 + - uid: 6985 + components: + - type: Transform + pos: -60.5,-54.5 + parent: 2 + - uid: 6986 + components: + - type: Transform + pos: -60.5,-53.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + pos: -60.5,-52.5 + parent: 2 + - uid: 6988 + components: + - type: Transform + pos: -59.5,-54.5 + parent: 2 + - uid: 6989 + components: + - type: Transform + pos: -59.5,-53.5 + parent: 2 + - uid: 6990 + components: + - type: Transform + pos: -59.5,-52.5 + parent: 2 + - uid: 6991 + components: + - type: Transform + pos: -58.5,-55.5 + parent: 2 + - uid: 6992 + components: + - type: Transform + pos: -44.5,-54.5 + parent: 2 + - uid: 6993 + components: + - type: Transform + pos: -44.5,-55.5 + parent: 2 + - uid: 6994 + components: + - type: Transform + pos: -49.5,-52.5 + parent: 2 + - uid: 6995 + components: + - type: Transform + pos: -46.5,-55.5 + parent: 2 + - uid: 6996 + components: + - type: Transform + pos: -46.5,-54.5 + parent: 2 + - uid: 6997 + components: + - type: Transform + pos: -46.5,-53.5 + parent: 2 + - uid: 6998 + components: + - type: Transform + pos: -46.5,-52.5 + parent: 2 + - uid: 6999 + components: + - type: Transform + pos: -45.5,-55.5 + parent: 2 + - uid: 7000 + components: + - type: Transform + pos: -45.5,-54.5 + parent: 2 + - uid: 7001 + components: + - type: Transform + pos: -48.5,-54.5 + parent: 2 + - uid: 7002 + components: + - type: Transform + pos: -45.5,-52.5 + parent: 2 + - uid: 7003 + components: + - type: Transform + pos: -49.5,-54.5 + parent: 2 + - uid: 7004 + components: + - type: Transform + pos: -50.5,-52.5 + parent: 2 + - uid: 7005 + components: + - type: Transform + pos: -48.5,-55.5 + parent: 2 + - uid: 7006 + components: + - type: Transform + pos: -48.5,-52.5 + parent: 2 + - uid: 7007 + components: + - type: Transform + pos: -48.5,-53.5 + parent: 2 + - uid: 7008 + components: + - type: Transform + pos: -47.5,-55.5 + parent: 2 + - uid: 7009 + components: + - type: Transform + pos: -47.5,-54.5 + parent: 2 + - uid: 7010 + components: + - type: Transform + pos: -47.5,-53.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: -47.5,-52.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + pos: -51.5,-55.5 + parent: 2 + - uid: 7013 + components: + - type: Transform + pos: -51.5,-53.5 + parent: 2 + - uid: 7014 + components: + - type: Transform + pos: -53.5,-55.5 + parent: 2 + - uid: 7015 + components: + - type: Transform + pos: -51.5,-52.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + pos: -50.5,-54.5 + parent: 2 + - uid: 7017 + components: + - type: Transform + pos: -50.5,-53.5 + parent: 2 + - uid: 7018 + components: + - type: Transform + pos: -50.5,-55.5 + parent: 2 + - uid: 7019 + components: + - type: Transform + pos: -51.5,-54.5 + parent: 2 + - uid: 7020 + components: + - type: Transform + pos: -49.5,-55.5 + parent: 2 + - uid: 7021 + components: + - type: Transform + pos: -57.5,-53.5 + parent: 2 + - uid: 7022 + components: + - type: Transform + pos: -53.5,-54.5 + parent: 2 + - uid: 7023 + components: + - type: Transform + pos: -53.5,-52.5 + parent: 2 + - uid: 7024 + components: + - type: Transform + pos: -53.5,-53.5 + parent: 2 + - uid: 7025 + components: + - type: Transform + pos: -52.5,-55.5 + parent: 2 + - uid: 7026 + components: + - type: Transform + pos: -54.5,-55.5 + parent: 2 + - uid: 7027 + components: + - type: Transform + pos: -52.5,-54.5 + parent: 2 + - uid: 7028 + components: + - type: Transform + pos: -52.5,-52.5 + parent: 2 + - uid: 7029 + components: + - type: Transform + pos: -52.5,-53.5 + parent: 2 + - uid: 7030 + components: + - type: Transform + pos: -56.5,-53.5 + parent: 2 + - uid: 7031 + components: + - type: Transform + pos: -56.5,-52.5 + parent: 2 + - uid: 7032 + components: + - type: Transform + pos: -55.5,-55.5 + parent: 2 + - uid: 7033 + components: + - type: Transform + pos: -55.5,-54.5 + parent: 2 + - uid: 7034 + components: + - type: Transform + pos: -55.5,-53.5 + parent: 2 + - uid: 7035 + components: + - type: Transform + pos: -55.5,-52.5 + parent: 2 + - uid: 7036 + components: + - type: Transform + pos: -54.5,-54.5 + parent: 2 + - uid: 7037 + components: + - type: Transform + pos: -54.5,-53.5 + parent: 2 + - uid: 7038 + components: + - type: Transform + pos: -54.5,-52.5 + parent: 2 + - uid: 7039 + components: + - type: Transform + pos: -58.5,-54.5 + parent: 2 + - uid: 7040 + components: + - type: Transform + pos: -58.5,-53.5 + parent: 2 + - uid: 7041 + components: + - type: Transform + pos: -58.5,-52.5 + parent: 2 + - uid: 7042 + components: + - type: Transform + pos: -59.5,-55.5 + parent: 2 + - uid: 7043 + components: + - type: Transform + pos: -57.5,-54.5 + parent: 2 + - uid: 7044 + components: + - type: Transform + pos: -57.5,-55.5 + parent: 2 + - uid: 7045 + components: + - type: Transform + pos: -57.5,-52.5 + parent: 2 + - uid: 7046 + components: + - type: Transform + pos: -56.5,-55.5 + parent: 2 + - uid: 7047 + components: + - type: Transform + pos: -56.5,-54.5 + parent: 2 + - uid: 7048 + components: + - type: Transform + pos: -31.5,-53.5 + parent: 2 + - uid: 7049 + components: + - type: Transform + pos: -31.5,-52.5 + parent: 2 + - uid: 7050 + components: + - type: Transform + pos: -33.5,-54.5 + parent: 2 + - uid: 7051 + components: + - type: Transform + pos: -33.5,-53.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + pos: -33.5,-52.5 + parent: 2 + - uid: 7053 + components: + - type: Transform + pos: -32.5,-55.5 + parent: 2 + - uid: 7054 + components: + - type: Transform + pos: -32.5,-54.5 + parent: 2 + - uid: 7055 + components: + - type: Transform + pos: -32.5,-53.5 + parent: 2 + - uid: 7056 + components: + - type: Transform + pos: -32.5,-52.5 + parent: 2 + - uid: 7057 + components: + - type: Transform + pos: -31.5,-55.5 + parent: 2 + - uid: 7058 + components: + - type: Transform + pos: -31.5,-54.5 + parent: 2 + - uid: 7059 + components: + - type: Transform + pos: -35.5,-55.5 + parent: 2 + - uid: 7060 + components: + - type: Transform + pos: -35.5,-54.5 + parent: 2 + - uid: 7061 + components: + - type: Transform + pos: -35.5,-53.5 + parent: 2 + - uid: 7062 + components: + - type: Transform + pos: -35.5,-52.5 + parent: 2 + - uid: 7063 + components: + - type: Transform + pos: -34.5,-55.5 + parent: 2 + - uid: 7064 + components: + - type: Transform + pos: -34.5,-54.5 + parent: 2 + - uid: 7065 + components: + - type: Transform + pos: -34.5,-53.5 + parent: 2 + - uid: 7066 + components: + - type: Transform + pos: -34.5,-52.5 + parent: 2 + - uid: 7067 + components: + - type: Transform + pos: -33.5,-55.5 + parent: 2 + - uid: 7068 + components: + - type: Transform + pos: -38.5,-52.5 + parent: 2 + - uid: 7069 + components: + - type: Transform + pos: -37.5,-55.5 + parent: 2 + - uid: 7070 + components: + - type: Transform + pos: -37.5,-54.5 + parent: 2 + - uid: 7071 + components: + - type: Transform + pos: -37.5,-53.5 + parent: 2 + - uid: 7072 + components: + - type: Transform + pos: -37.5,-52.5 + parent: 2 + - uid: 7073 + components: + - type: Transform + pos: -36.5,-55.5 + parent: 2 + - uid: 7074 + components: + - type: Transform + pos: -36.5,-54.5 + parent: 2 + - uid: 7075 + components: + - type: Transform + pos: -36.5,-53.5 + parent: 2 + - uid: 7076 + components: + - type: Transform + pos: -36.5,-52.5 + parent: 2 + - uid: 7077 + components: + - type: Transform + pos: -40.5,-53.5 + parent: 2 + - uid: 7078 + components: + - type: Transform + pos: -40.5,-52.5 + parent: 2 + - uid: 7079 + components: + - type: Transform + pos: -39.5,-55.5 + parent: 2 + - uid: 7080 + components: + - type: Transform + pos: -39.5,-54.5 + parent: 2 + - uid: 7081 + components: + - type: Transform + pos: -39.5,-53.5 + parent: 2 + - uid: 7082 + components: + - type: Transform + pos: -39.5,-52.5 + parent: 2 + - uid: 7083 + components: + - type: Transform + pos: -38.5,-55.5 + parent: 2 + - uid: 7084 + components: + - type: Transform + pos: -38.5,-54.5 + parent: 2 + - uid: 7085 + components: + - type: Transform + pos: -38.5,-53.5 + parent: 2 + - uid: 7086 + components: + - type: Transform + pos: -43.5,-52.5 + parent: 2 + - uid: 7087 + components: + - type: Transform + pos: -42.5,-52.5 + parent: 2 + - uid: 7088 + components: + - type: Transform + pos: -41.5,-55.5 + parent: 2 + - uid: 7089 + components: + - type: Transform + pos: -41.5,-54.5 + parent: 2 + - uid: 7090 + components: + - type: Transform + pos: -41.5,-53.5 + parent: 2 + - uid: 7091 + components: + - type: Transform + pos: -42.5,-54.5 + parent: 2 + - uid: 7092 + components: + - type: Transform + pos: -41.5,-52.5 + parent: 2 + - uid: 7093 + components: + - type: Transform + pos: -40.5,-55.5 + parent: 2 + - uid: 7094 + components: + - type: Transform + pos: -40.5,-54.5 + parent: 2 + - uid: 7095 + components: + - type: Transform + pos: -49.5,-53.5 + parent: 2 + - uid: 7096 + components: + - type: Transform + pos: -44.5,-53.5 + parent: 2 + - uid: 7097 + components: + - type: Transform + pos: -44.5,-52.5 + parent: 2 + - uid: 7098 + components: + - type: Transform + pos: -43.5,-54.5 + parent: 2 + - uid: 7099 + components: + - type: Transform + pos: -43.5,-53.5 + parent: 2 + - uid: 7100 + components: + - type: Transform + pos: -45.5,-53.5 + parent: 2 + - uid: 7101 + components: + - type: Transform + pos: -43.5,-55.5 + parent: 2 + - uid: 7102 + components: + - type: Transform + pos: -42.5,-55.5 + parent: 2 + - uid: 7103 + components: + - type: Transform + pos: -42.5,-53.5 + parent: 2 + - uid: 7104 + components: + - type: Transform + pos: -38.5,-58.5 + parent: 2 + - uid: 7105 + components: + - type: Transform + pos: -37.5,-60.5 + parent: 2 + - uid: 7106 + components: + - type: Transform + pos: -58.5,-60.5 + parent: 2 + - uid: 7107 + components: + - type: Transform + pos: -58.5,-59.5 + parent: 2 + - uid: 7108 + components: + - type: Transform + pos: -57.5,-60.5 + parent: 2 + - uid: 7109 + components: + - type: Transform + pos: -57.5,-59.5 + parent: 2 + - uid: 7110 + components: + - type: Transform + pos: -57.5,-58.5 + parent: 2 + - uid: 7111 + components: + - type: Transform + pos: -56.5,-60.5 + parent: 2 + - uid: 7112 + components: + - type: Transform + pos: -56.5,-59.5 + parent: 2 + - uid: 7113 + components: + - type: Transform + pos: -56.5,-58.5 + parent: 2 + - uid: 7114 + components: + - type: Transform + pos: -41.5,-58.5 + parent: 2 + - uid: 7115 + components: + - type: Transform + pos: -40.5,-60.5 + parent: 2 + - uid: 7116 + components: + - type: Transform + pos: -40.5,-59.5 + parent: 2 + - uid: 7117 + components: + - type: Transform + pos: -40.5,-58.5 + parent: 2 + - uid: 7118 + components: + - type: Transform + pos: -39.5,-60.5 + parent: 2 + - uid: 7119 + components: + - type: Transform + pos: -39.5,-59.5 + parent: 2 + - uid: 7120 + components: + - type: Transform + pos: -39.5,-58.5 + parent: 2 + - uid: 7121 + components: + - type: Transform + pos: -38.5,-60.5 + parent: 2 + - uid: 7122 + components: + - type: Transform + pos: -38.5,-59.5 + parent: 2 + - uid: 7123 + components: + - type: Transform + pos: -43.5,-60.5 + parent: 2 + - uid: 7124 + components: + - type: Transform + pos: -43.5,-59.5 + parent: 2 + - uid: 7125 + components: + - type: Transform + pos: -43.5,-58.5 + parent: 2 + - uid: 7126 + components: + - type: Transform + pos: -42.5,-60.5 + parent: 2 + - uid: 7127 + components: + - type: Transform + pos: -47.5,-58.5 + parent: 2 + - uid: 7128 + components: + - type: Transform + pos: -42.5,-59.5 + parent: 2 + - uid: 7129 + components: + - type: Transform + pos: -42.5,-58.5 + parent: 2 + - uid: 7130 + components: + - type: Transform + pos: -41.5,-60.5 + parent: 2 + - uid: 7131 + components: + - type: Transform + pos: -41.5,-59.5 + parent: 2 + - uid: 7132 + components: + - type: Transform + pos: -46.5,-60.5 + parent: 2 + - uid: 7133 + components: + - type: Transform + pos: -46.5,-59.5 + parent: 2 + - uid: 7134 + components: + - type: Transform + pos: -46.5,-58.5 + parent: 2 + - uid: 7135 + components: + - type: Transform + pos: -45.5,-60.5 + parent: 2 + - uid: 7136 + components: + - type: Transform + pos: -45.5,-59.5 + parent: 2 + - uid: 7137 + components: + - type: Transform + pos: -45.5,-58.5 + parent: 2 + - uid: 7138 + components: + - type: Transform + pos: -44.5,-60.5 + parent: 2 + - uid: 7139 + components: + - type: Transform + pos: -44.5,-59.5 + parent: 2 + - uid: 7140 + components: + - type: Transform + pos: -44.5,-58.5 + parent: 2 + - uid: 7141 + components: + - type: Transform + pos: -50.5,-58.5 + parent: 2 + - uid: 7142 + components: + - type: Transform + pos: -49.5,-60.5 + parent: 2 + - uid: 7143 + components: + - type: Transform + pos: -49.5,-59.5 + parent: 2 + - uid: 7144 + components: + - type: Transform + pos: -49.5,-58.5 + parent: 2 + - uid: 7145 + components: + - type: Transform + pos: -48.5,-60.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + pos: -48.5,-59.5 + parent: 2 + - uid: 7147 + components: + - type: Transform + pos: -48.5,-58.5 + parent: 2 + - uid: 7148 + components: + - type: Transform + pos: -47.5,-60.5 + parent: 2 + - uid: 7149 + components: + - type: Transform + pos: -47.5,-59.5 + parent: 2 + - uid: 7150 + components: + - type: Transform + pos: -52.5,-60.5 + parent: 2 + - uid: 7151 + components: + - type: Transform + pos: -52.5,-59.5 + parent: 2 + - uid: 7152 + components: + - type: Transform + pos: -52.5,-58.5 + parent: 2 + - uid: 7153 + components: + - type: Transform + pos: -51.5,-60.5 + parent: 2 + - uid: 7154 + components: + - type: Transform + pos: -51.5,-59.5 + parent: 2 + - uid: 7155 + components: + - type: Transform + pos: -51.5,-58.5 + parent: 2 + - uid: 7156 + components: + - type: Transform + pos: -50.5,-60.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + pos: -50.5,-59.5 + parent: 2 + - uid: 7158 + components: + - type: Transform + pos: -54.5,-59.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + pos: -58.5,-58.5 + parent: 2 + - uid: 7160 + components: + - type: Transform + pos: -55.5,-60.5 + parent: 2 + - uid: 7161 + components: + - type: Transform + pos: -55.5,-59.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + pos: -55.5,-58.5 + parent: 2 + - uid: 7163 + components: + - type: Transform + pos: -54.5,-60.5 + parent: 2 + - uid: 7164 + components: + - type: Transform + pos: -54.5,-58.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + pos: -53.5,-60.5 + parent: 2 + - uid: 7166 + components: + - type: Transform + pos: -53.5,-59.5 + parent: 2 + - uid: 7167 + components: + - type: Transform + pos: -53.5,-58.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + pos: -31.5,-58.5 + parent: 2 + - uid: 7169 + components: + - type: Transform + pos: -34.5,-58.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + pos: -33.5,-60.5 + parent: 2 + - uid: 7171 + components: + - type: Transform + pos: -33.5,-59.5 + parent: 2 + - uid: 7172 + components: + - type: Transform + pos: -33.5,-58.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: -32.5,-60.5 + parent: 2 + - uid: 7174 + components: + - type: Transform + pos: -32.5,-59.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + pos: -32.5,-58.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + pos: -31.5,-60.5 + parent: 2 + - uid: 7177 + components: + - type: Transform + pos: -31.5,-59.5 + parent: 2 + - uid: 7178 + components: + - type: Transform + pos: -37.5,-58.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: -36.5,-60.5 + parent: 2 + - uid: 7180 + components: + - type: Transform + pos: -36.5,-59.5 + parent: 2 + - uid: 7181 + components: + - type: Transform + pos: -36.5,-58.5 + parent: 2 + - uid: 7182 + components: + - type: Transform + pos: -35.5,-60.5 + parent: 2 + - uid: 7183 + components: + - type: Transform + pos: -35.5,-59.5 + parent: 2 + - uid: 7184 + components: + - type: Transform + pos: -35.5,-58.5 + parent: 2 + - uid: 7185 + components: + - type: Transform + pos: -34.5,-60.5 + parent: 2 + - uid: 7186 + components: + - type: Transform + pos: -34.5,-59.5 + parent: 2 + - uid: 7187 + components: + - type: Transform + pos: -37.5,-59.5 + parent: 2 + - uid: 7188 + components: + - type: Transform + pos: -46.5,-56.5 + parent: 2 + - uid: 7189 + components: + - type: Transform + pos: -46.5,-57.5 + parent: 2 + - uid: 7190 + components: + - type: Transform + pos: -45.5,-56.5 + parent: 2 + - uid: 7191 + components: + - type: Transform + pos: -44.5,-57.5 + parent: 2 + - uid: 7192 + components: + - type: Transform + pos: -44.5,-56.5 + parent: 2 + - uid: 7193 + components: + - type: Transform + pos: -59.5,-58.5 + parent: 2 + - uid: 7194 + components: + - type: Transform + pos: -59.5,-57.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + pos: -59.5,-56.5 + parent: 2 + - uid: 7196 + components: + - type: Transform + pos: -58.5,-57.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + pos: -58.5,-56.5 + parent: 2 + - uid: 7198 + components: + - type: Transform + pos: -48.5,-57.5 + parent: 2 + - uid: 7199 + components: + - type: Transform + pos: -48.5,-56.5 + parent: 2 + - uid: 7200 + components: + - type: Transform + pos: -47.5,-57.5 + parent: 2 + - uid: 7201 + components: + - type: Transform + pos: -47.5,-56.5 + parent: 2 + - uid: 7202 + components: + - type: Transform + pos: -50.5,-57.5 + parent: 2 + - uid: 7203 + components: + - type: Transform + pos: -50.5,-56.5 + parent: 2 + - uid: 7204 + components: + - type: Transform + pos: -49.5,-57.5 + parent: 2 + - uid: 7205 + components: + - type: Transform + pos: -49.5,-56.5 + parent: 2 + - uid: 7206 + components: + - type: Transform + pos: -52.5,-57.5 + parent: 2 + - uid: 7207 + components: + - type: Transform + pos: -52.5,-56.5 + parent: 2 + - uid: 7208 + components: + - type: Transform + pos: -51.5,-57.5 + parent: 2 + - uid: 7209 + components: + - type: Transform + pos: -51.5,-56.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + pos: -55.5,-57.5 + parent: 2 + - uid: 7211 + components: + - type: Transform + pos: -55.5,-56.5 + parent: 2 + - uid: 7212 + components: + - type: Transform + pos: -54.5,-57.5 + parent: 2 + - uid: 7213 + components: + - type: Transform + pos: -54.5,-56.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + pos: -53.5,-57.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + pos: -53.5,-56.5 + parent: 2 + - uid: 7216 + components: + - type: Transform + pos: -57.5,-57.5 + parent: 2 + - uid: 7217 + components: + - type: Transform + pos: -57.5,-56.5 + parent: 2 + - uid: 7218 + components: + - type: Transform + pos: -56.5,-57.5 + parent: 2 + - uid: 7219 + components: + - type: Transform + pos: -56.5,-56.5 + parent: 2 + - uid: 7220 + components: + - type: Transform + pos: -32.5,-56.5 + parent: 2 + - uid: 7221 + components: + - type: Transform + pos: -31.5,-57.5 + parent: 2 + - uid: 7222 + components: + - type: Transform + pos: -31.5,-56.5 + parent: 2 + - uid: 7223 + components: + - type: Transform + pos: -34.5,-57.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + pos: -34.5,-56.5 + parent: 2 + - uid: 7225 + components: + - type: Transform + pos: -33.5,-57.5 + parent: 2 + - uid: 7226 + components: + - type: Transform + pos: -33.5,-56.5 + parent: 2 + - uid: 7227 + components: + - type: Transform + pos: -32.5,-57.5 + parent: 2 + - uid: 7228 + components: + - type: Transform + pos: -36.5,-57.5 + parent: 2 + - uid: 7229 + components: + - type: Transform + pos: -36.5,-56.5 + parent: 2 + - uid: 7230 + components: + - type: Transform + pos: -35.5,-57.5 + parent: 2 + - uid: 7231 + components: + - type: Transform + pos: -35.5,-56.5 + parent: 2 + - uid: 7232 + components: + - type: Transform + pos: -38.5,-57.5 + parent: 2 + - uid: 7233 + components: + - type: Transform + pos: -37.5,-57.5 + parent: 2 + - uid: 7234 + components: + - type: Transform + pos: -38.5,-56.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + pos: -37.5,-56.5 + parent: 2 + - uid: 7236 + components: + - type: Transform + pos: -39.5,-56.5 + parent: 2 + - uid: 7237 + components: + - type: Transform + pos: -40.5,-57.5 + parent: 2 + - uid: 7238 + components: + - type: Transform + pos: -40.5,-56.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + pos: -39.5,-57.5 + parent: 2 + - uid: 7240 + components: + - type: Transform + pos: -43.5,-57.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + pos: -42.5,-57.5 + parent: 2 + - uid: 7242 + components: + - type: Transform + pos: -45.5,-57.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + pos: -42.5,-56.5 + parent: 2 + - uid: 7244 + components: + - type: Transform + pos: -41.5,-57.5 + parent: 2 + - uid: 7245 + components: + - type: Transform + pos: -41.5,-56.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + pos: -43.5,-56.5 + parent: 2 + - uid: 7247 + components: + - type: Transform + pos: -35.5,-61.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + pos: -31.5,-61.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + pos: -57.5,-61.5 + parent: 2 + - uid: 7250 + components: + - type: Transform + pos: -56.5,-61.5 + parent: 2 + - uid: 7251 + components: + - type: Transform + pos: -55.5,-61.5 + parent: 2 + - uid: 7252 + components: + - type: Transform + pos: -54.5,-61.5 + parent: 2 + - uid: 7253 + components: + - type: Transform + pos: -53.5,-61.5 + parent: 2 + - uid: 7254 + components: + - type: Transform + pos: -51.5,-61.5 + parent: 2 + - uid: 7255 + components: + - type: Transform + pos: -50.5,-61.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + pos: -49.5,-61.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + pos: -39.5,-61.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + pos: -42.5,-61.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + pos: -37.5,-61.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + pos: -36.5,-61.5 + parent: 2 + - uid: 7261 + components: + - type: Transform + pos: -38.5,-61.5 + parent: 2 + - uid: 7262 + components: + - type: Transform + pos: -33.5,-61.5 + parent: 2 + - uid: 7263 + components: + - type: Transform + pos: -34.5,-61.5 + parent: 2 + - uid: 7264 + components: + - type: Transform + pos: -32.5,-61.5 + parent: 2 + - uid: 7265 + components: + - type: Transform + pos: -48.5,-61.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + pos: -47.5,-61.5 + parent: 2 + - uid: 7267 + components: + - type: Transform + pos: -46.5,-61.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + pos: -52.5,-61.5 + parent: 2 + - uid: 7269 + components: + - type: Transform + pos: -45.5,-61.5 + parent: 2 + - uid: 7270 + components: + - type: Transform + pos: -44.5,-61.5 + parent: 2 + - uid: 7271 + components: + - type: Transform + pos: -41.5,-61.5 + parent: 2 + - uid: 7272 + components: + - type: Transform + pos: -43.5,-61.5 + parent: 2 + - uid: 7273 + components: + - type: Transform + pos: -40.5,-61.5 + parent: 2 + - uid: 7274 + components: + - type: Transform + pos: -36.5,-62.5 + parent: 2 + - uid: 7275 + components: + - type: Transform + pos: -35.5,-62.5 + parent: 2 + - uid: 7276 + components: + - type: Transform + pos: -34.5,-62.5 + parent: 2 + - uid: 7277 + components: + - type: Transform + pos: -33.5,-62.5 + parent: 2 + - uid: 7278 + components: + - type: Transform + pos: -32.5,-62.5 + parent: 2 + - uid: 7279 + components: + - type: Transform + pos: -40.5,-62.5 + parent: 2 + - uid: 7280 + components: + - type: Transform + pos: -31.5,-62.5 + parent: 2 + - uid: 7281 + components: + - type: Transform + pos: -54.5,-62.5 + parent: 2 + - uid: 7282 + components: + - type: Transform + pos: -53.5,-62.5 + parent: 2 + - uid: 7283 + components: + - type: Transform + pos: -52.5,-62.5 + parent: 2 + - uid: 7284 + components: + - type: Transform + pos: -51.5,-62.5 + parent: 2 + - uid: 7285 + components: + - type: Transform + pos: -49.5,-62.5 + parent: 2 + - uid: 7286 + components: + - type: Transform + pos: -48.5,-62.5 + parent: 2 + - uid: 7287 + components: + - type: Transform + pos: -47.5,-62.5 + parent: 2 + - uid: 7288 + components: + - type: Transform + pos: -46.5,-62.5 + parent: 2 + - uid: 7289 + components: + - type: Transform + pos: -45.5,-62.5 + parent: 2 + - uid: 7290 + components: + - type: Transform + pos: -44.5,-62.5 + parent: 2 + - uid: 7291 + components: + - type: Transform + pos: -43.5,-62.5 + parent: 2 + - uid: 7292 + components: + - type: Transform + pos: -50.5,-62.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + pos: -41.5,-62.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + pos: -42.5,-62.5 + parent: 2 + - uid: 7295 + components: + - type: Transform + pos: -38.5,-62.5 + parent: 2 + - uid: 7296 + components: + - type: Transform + pos: -39.5,-62.5 + parent: 2 + - uid: 7297 + components: + - type: Transform + pos: -37.5,-62.5 + parent: 2 + - uid: 7298 + components: + - type: Transform + pos: -55.5,-62.5 + parent: 2 + - uid: 7299 + components: + - type: Transform + pos: -17.5,-63.5 + parent: 2 + - uid: 7300 + components: + - type: Transform + pos: -16.5,-63.5 + parent: 2 + - uid: 7301 + components: + - type: Transform + pos: -20.5,-63.5 + parent: 2 + - uid: 7302 + components: + - type: Transform + pos: -53.5,-63.5 + parent: 2 + - uid: 7303 + components: + - type: Transform + pos: -52.5,-63.5 + parent: 2 + - uid: 7304 + components: + - type: Transform + pos: -51.5,-63.5 + parent: 2 + - uid: 7305 + components: + - type: Transform + pos: -50.5,-63.5 + parent: 2 + - uid: 7306 + components: + - type: Transform + pos: -49.5,-63.5 + parent: 2 + - uid: 7307 + components: + - type: Transform + pos: -47.5,-63.5 + parent: 2 + - uid: 7308 + components: + - type: Transform + pos: -46.5,-63.5 + parent: 2 + - uid: 7309 + components: + - type: Transform + pos: -45.5,-63.5 + parent: 2 + - uid: 7310 + components: + - type: Transform + pos: -44.5,-63.5 + parent: 2 + - uid: 7311 + components: + - type: Transform + pos: -43.5,-63.5 + parent: 2 + - uid: 7312 + components: + - type: Transform + pos: -42.5,-63.5 + parent: 2 + - uid: 7313 + components: + - type: Transform + pos: -41.5,-63.5 + parent: 2 + - uid: 7314 + components: + - type: Transform + pos: -40.5,-63.5 + parent: 2 + - uid: 7315 + components: + - type: Transform + pos: -39.5,-63.5 + parent: 2 + - uid: 7316 + components: + - type: Transform + pos: -48.5,-63.5 + parent: 2 + - uid: 7317 + components: + - type: Transform + pos: -37.5,-63.5 + parent: 2 + - uid: 7318 + components: + - type: Transform + pos: -38.5,-63.5 + parent: 2 + - uid: 7319 + components: + - type: Transform + pos: -26.5,-63.5 + parent: 2 + - uid: 7320 + components: + - type: Transform + pos: -25.5,-63.5 + parent: 2 + - uid: 7321 + components: + - type: Transform + pos: -36.5,-63.5 + parent: 2 + - uid: 7322 + components: + - type: Transform + pos: -23.5,-63.5 + parent: 2 + - uid: 7323 + components: + - type: Transform + pos: -21.5,-63.5 + parent: 2 + - uid: 7324 + components: + - type: Transform + pos: -22.5,-63.5 + parent: 2 + - uid: 7325 + components: + - type: Transform + pos: -19.5,-63.5 + parent: 2 + - uid: 7326 + components: + - type: Transform + pos: -24.5,-63.5 + parent: 2 + - uid: 7327 + components: + - type: Transform + pos: -18.5,-63.5 + parent: 2 + - uid: 7328 + components: + - type: Transform + pos: -35.5,-63.5 + parent: 2 + - uid: 7329 + components: + - type: Transform + pos: -34.5,-63.5 + parent: 2 + - uid: 7330 + components: + - type: Transform + pos: -33.5,-63.5 + parent: 2 + - uid: 7331 + components: + - type: Transform + pos: -32.5,-63.5 + parent: 2 + - uid: 7332 + components: + - type: Transform + pos: -31.5,-63.5 + parent: 2 + - uid: 7333 + components: + - type: Transform + pos: -30.5,-63.5 + parent: 2 + - uid: 7334 + components: + - type: Transform + pos: -29.5,-63.5 + parent: 2 + - uid: 7335 + components: + - type: Transform + pos: -28.5,-63.5 + parent: 2 + - uid: 7336 + components: + - type: Transform + pos: -27.5,-63.5 + parent: 2 + - uid: 7337 + components: + - type: Transform + pos: -15.5,-64.5 + parent: 2 + - uid: 7338 + components: + - type: Transform + pos: -32.5,-64.5 + parent: 2 + - uid: 7339 + components: + - type: Transform + pos: -31.5,-64.5 + parent: 2 + - uid: 7340 + components: + - type: Transform + pos: -30.5,-64.5 + parent: 2 + - uid: 7341 + components: + - type: Transform + pos: -29.5,-64.5 + parent: 2 + - uid: 7342 + components: + - type: Transform + pos: -28.5,-64.5 + parent: 2 + - uid: 7343 + components: + - type: Transform + pos: -27.5,-64.5 + parent: 2 + - uid: 7344 + components: + - type: Transform + pos: -26.5,-64.5 + parent: 2 + - uid: 7345 + components: + - type: Transform + pos: -25.5,-64.5 + parent: 2 + - uid: 7346 + components: + - type: Transform + pos: -24.5,-64.5 + parent: 2 + - uid: 7347 + components: + - type: Transform + pos: -41.5,-64.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + pos: -40.5,-64.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + pos: -39.5,-64.5 + parent: 2 + - uid: 7350 + components: + - type: Transform + pos: -38.5,-64.5 + parent: 2 + - uid: 7351 + components: + - type: Transform + pos: -46.5,-64.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + pos: -37.5,-64.5 + parent: 2 + - uid: 7353 + components: + - type: Transform + pos: -35.5,-64.5 + parent: 2 + - uid: 7354 + components: + - type: Transform + pos: -36.5,-64.5 + parent: 2 + - uid: 7355 + components: + - type: Transform + pos: -33.5,-64.5 + parent: 2 + - uid: 7356 + components: + - type: Transform + pos: -50.5,-64.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + pos: -49.5,-64.5 + parent: 2 + - uid: 7358 + components: + - type: Transform + pos: -48.5,-64.5 + parent: 2 + - uid: 7359 + components: + - type: Transform + pos: -47.5,-64.5 + parent: 2 + - uid: 7360 + components: + - type: Transform + pos: -45.5,-64.5 + parent: 2 + - uid: 7361 + components: + - type: Transform + pos: -44.5,-64.5 + parent: 2 + - uid: 7362 + components: + - type: Transform + pos: -43.5,-64.5 + parent: 2 + - uid: 7363 + components: + - type: Transform + pos: -42.5,-64.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + pos: -34.5,-64.5 + parent: 2 + - uid: 7365 + components: + - type: Transform + pos: -22.5,-64.5 + parent: 2 + - uid: 7366 + components: + - type: Transform + pos: -23.5,-64.5 + parent: 2 + - uid: 7367 + components: + - type: Transform + pos: -21.5,-64.5 + parent: 2 + - uid: 7368 + components: + - type: Transform + pos: -20.5,-64.5 + parent: 2 + - uid: 7369 + components: + - type: Transform + pos: -19.5,-64.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: -18.5,-64.5 + parent: 2 + - uid: 7371 + components: + - type: Transform + pos: -17.5,-64.5 + parent: 2 + - uid: 7372 + components: + - type: Transform + pos: -16.5,-64.5 + parent: 2 + - uid: 7373 + components: + - type: Transform + pos: -45.5,-65.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + pos: -43.5,-65.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + pos: -44.5,-65.5 + parent: 2 + - uid: 7376 + components: + - type: Transform + pos: -40.5,-65.5 + parent: 2 + - uid: 7377 + components: + - type: Transform + pos: -41.5,-65.5 + parent: 2 + - uid: 7378 + components: + - type: Transform + pos: -42.5,-65.5 + parent: 2 + - uid: 7379 + components: + - type: Transform + pos: -37.5,-65.5 + parent: 2 + - uid: 7380 + components: + - type: Transform + pos: -38.5,-65.5 + parent: 2 + - uid: 7381 + components: + - type: Transform + pos: -39.5,-65.5 + parent: 2 + - uid: 7382 + components: + - type: Transform + pos: -34.5,-65.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + pos: -35.5,-65.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: -36.5,-65.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + pos: -31.5,-65.5 + parent: 2 + - uid: 7386 + components: + - type: Transform + pos: -32.5,-65.5 + parent: 2 + - uid: 7387 + components: + - type: Transform + pos: -33.5,-65.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + pos: -29.5,-65.5 + parent: 2 + - uid: 7389 + components: + - type: Transform + pos: -30.5,-65.5 + parent: 2 + - uid: 7390 + components: + - type: Transform + pos: -25.5,-65.5 + parent: 2 + - uid: 7391 + components: + - type: Transform + pos: -26.5,-65.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + pos: -28.5,-65.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + pos: -27.5,-65.5 + parent: 2 + - uid: 7394 + components: + - type: Transform + pos: -22.5,-65.5 + parent: 2 + - uid: 7395 + components: + - type: Transform + pos: -23.5,-65.5 + parent: 2 + - uid: 7396 + components: + - type: Transform + pos: -24.5,-65.5 + parent: 2 + - uid: 7397 + components: + - type: Transform + pos: -19.5,-65.5 + parent: 2 + - uid: 7398 + components: + - type: Transform + pos: -20.5,-65.5 + parent: 2 + - uid: 7399 + components: + - type: Transform + pos: -21.5,-65.5 + parent: 2 + - uid: 7400 + components: + - type: Transform + pos: -17.5,-50.5 + parent: 2 + - uid: 7401 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 2 + - uid: 7402 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 2 + - uid: 7403 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 2 + - uid: 7404 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 2 + - uid: 7405 + components: + - type: Transform + pos: -17.5,-45.5 + parent: 2 + - uid: 7406 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 2 + - uid: 7407 + components: + - type: Transform + pos: -16.5,-65.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + pos: -17.5,-59.5 + parent: 2 + - uid: 7409 + components: + - type: Transform + pos: -17.5,-58.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + pos: -17.5,-57.5 + parent: 2 + - uid: 7411 + components: + - type: Transform + pos: -17.5,-56.5 + parent: 2 + - uid: 7412 + components: + - type: Transform + pos: -17.5,-54.5 + parent: 2 + - uid: 7413 + components: + - type: Transform + pos: -17.5,-55.5 + parent: 2 + - uid: 7414 + components: + - type: Transform + pos: -17.5,-53.5 + parent: 2 + - uid: 7415 + components: + - type: Transform + pos: -17.5,-52.5 + parent: 2 + - uid: 7416 + components: + - type: Transform + pos: -17.5,-51.5 + parent: 2 + - uid: 7417 + components: + - type: Transform + pos: -17.5,-65.5 + parent: 2 + - uid: 7418 + components: + - type: Transform + pos: -17.5,-62.5 + parent: 2 + - uid: 7419 + components: + - type: Transform + pos: -17.5,-61.5 + parent: 2 + - uid: 7420 + components: + - type: Transform + pos: -17.5,-60.5 + parent: 2 + - uid: 7421 + components: + - type: Transform + pos: -18.5,-65.5 + parent: 2 + - uid: 7422 + components: + - type: Transform + pos: -14.5,-62.5 + parent: 2 + - uid: 7423 + components: + - type: Transform + pos: -14.5,-61.5 + parent: 2 + - uid: 7424 + components: + - type: Transform + pos: -14.5,-60.5 + parent: 2 + - uid: 7425 + components: + - type: Transform + pos: -14.5,-59.5 + parent: 2 + - uid: 7426 + components: + - type: Transform + pos: -14.5,-58.5 + parent: 2 + - uid: 7427 + components: + - type: Transform + pos: -14.5,-57.5 + parent: 2 + - uid: 7428 + components: + - type: Transform + pos: -14.5,-65.5 + parent: 2 + - uid: 7429 + components: + - type: Transform + pos: -14.5,-64.5 + parent: 2 + - uid: 7430 + components: + - type: Transform + pos: -14.5,-63.5 + parent: 2 + - uid: 7431 + components: + - type: Transform + pos: -15.5,-57.5 + parent: 2 + - uid: 7432 + components: + - type: Transform + pos: -15.5,-65.5 + parent: 2 + - uid: 7433 + components: + - type: Transform + pos: -15.5,-63.5 + parent: 2 + - uid: 7434 + components: + - type: Transform + pos: -15.5,-62.5 + parent: 2 + - uid: 7435 + components: + - type: Transform + pos: -15.5,-61.5 + parent: 2 + - uid: 7436 + components: + - type: Transform + pos: -15.5,-60.5 + parent: 2 + - uid: 7437 + components: + - type: Transform + pos: -15.5,-59.5 + parent: 2 + - uid: 7438 + components: + - type: Transform + pos: -15.5,-58.5 + parent: 2 + - uid: 7439 + components: + - type: Transform + pos: -16.5,-62.5 + parent: 2 + - uid: 7440 + components: + - type: Transform + pos: -16.5,-61.5 + parent: 2 + - uid: 7441 + components: + - type: Transform + pos: -16.5,-60.5 + parent: 2 + - uid: 7442 + components: + - type: Transform + pos: -16.5,-59.5 + parent: 2 + - uid: 7443 + components: + - type: Transform + pos: -16.5,-58.5 + parent: 2 + - uid: 7444 + components: + - type: Transform + pos: -16.5,-57.5 + parent: 2 + - uid: 7445 + components: + - type: Transform + pos: -11.5,-64.5 + parent: 2 + - uid: 7446 + components: + - type: Transform + pos: -11.5,-63.5 + parent: 2 + - uid: 7447 + components: + - type: Transform + pos: -11.5,-62.5 + parent: 2 + - uid: 7448 + components: + - type: Transform + pos: -11.5,-61.5 + parent: 2 + - uid: 7449 + components: + - type: Transform + pos: -11.5,-60.5 + parent: 2 + - uid: 7450 + components: + - type: Transform + pos: -11.5,-59.5 + parent: 2 + - uid: 7451 + components: + - type: Transform + pos: -11.5,-58.5 + parent: 2 + - uid: 7452 + components: + - type: Transform + pos: -11.5,-57.5 + parent: 2 + - uid: 7453 + components: + - type: Transform + pos: -11.5,-65.5 + parent: 2 + - uid: 7454 + components: + - type: Transform + pos: -12.5,-60.5 + parent: 2 + - uid: 7455 + components: + - type: Transform + pos: -12.5,-59.5 + parent: 2 + - uid: 7456 + components: + - type: Transform + pos: -12.5,-58.5 + parent: 2 + - uid: 7457 + components: + - type: Transform + pos: -12.5,-57.5 + parent: 2 + - uid: 7458 + components: + - type: Transform + pos: -12.5,-65.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + pos: -12.5,-64.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: -12.5,-63.5 + parent: 2 + - uid: 7461 + components: + - type: Transform + pos: -12.5,-62.5 + parent: 2 + - uid: 7462 + components: + - type: Transform + pos: -12.5,-61.5 + parent: 2 + - uid: 7463 + components: + - type: Transform + pos: -13.5,-65.5 + parent: 2 + - uid: 7464 + components: + - type: Transform + pos: -13.5,-64.5 + parent: 2 + - uid: 7465 + components: + - type: Transform + pos: -13.5,-63.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + pos: -13.5,-62.5 + parent: 2 + - uid: 7467 + components: + - type: Transform + pos: -13.5,-61.5 + parent: 2 + - uid: 7468 + components: + - type: Transform + pos: -13.5,-60.5 + parent: 2 + - uid: 7469 + components: + - type: Transform + pos: -13.5,-59.5 + parent: 2 + - uid: 7470 + components: + - type: Transform + pos: -13.5,-58.5 + parent: 2 + - uid: 7471 + components: + - type: Transform + pos: -13.5,-57.5 + parent: 2 + - uid: 7472 + components: + - type: Transform + pos: -8.5,-57.5 + parent: 2 + - uid: 7473 + components: + - type: Transform + pos: -8.5,-56.5 + parent: 2 + - uid: 7474 + components: + - type: Transform + pos: -8.5,-55.5 + parent: 2 + - uid: 7475 + components: + - type: Transform + pos: -8.5,-54.5 + parent: 2 + - uid: 7476 + components: + - type: Transform + pos: -8.5,-53.5 + parent: 2 + - uid: 7477 + components: + - type: Transform + pos: -8.5,-52.5 + parent: 2 + - uid: 7478 + components: + - type: Transform + pos: -8.5,-51.5 + parent: 2 + - uid: 7479 + components: + - type: Transform + pos: -8.5,-50.5 + parent: 2 + - uid: 7480 + components: + - type: Transform + pos: -8.5,-65.5 + parent: 2 + - uid: 7481 + components: + - type: Transform + pos: -8.5,-64.5 + parent: 2 + - uid: 7482 + components: + - type: Transform + pos: -8.5,-63.5 + parent: 2 + - uid: 7483 + components: + - type: Transform + pos: -8.5,-62.5 + parent: 2 + - uid: 7484 + components: + - type: Transform + pos: -8.5,-61.5 + parent: 2 + - uid: 7485 + components: + - type: Transform + pos: -8.5,-60.5 + parent: 2 + - uid: 7486 + components: + - type: Transform + pos: -8.5,-59.5 + parent: 2 + - uid: 7487 + components: + - type: Transform + pos: -8.5,-58.5 + parent: 2 + - uid: 7488 + components: + - type: Transform + pos: -9.5,-53.5 + parent: 2 + - uid: 7489 + components: + - type: Transform + pos: -9.5,-52.5 + parent: 2 + - uid: 7490 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 2 + - uid: 7491 + components: + - type: Transform + pos: -9.5,-50.5 + parent: 2 + - uid: 7492 + components: + - type: Transform + pos: -9.5,-62.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + pos: -9.5,-61.5 + parent: 2 + - uid: 7494 + components: + - type: Transform + pos: -9.5,-60.5 + parent: 2 + - uid: 7495 + components: + - type: Transform + pos: -9.5,-59.5 + parent: 2 + - uid: 7496 + components: + - type: Transform + pos: -9.5,-58.5 + parent: 2 + - uid: 7497 + components: + - type: Transform + pos: -9.5,-57.5 + parent: 2 + - uid: 7498 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 2 + - uid: 7499 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 2 + - uid: 7500 + components: + - type: Transform + pos: -9.5,-54.5 + parent: 2 + - uid: 7501 + components: + - type: Transform + pos: -9.5,-65.5 + parent: 2 + - uid: 7502 + components: + - type: Transform + pos: -9.5,-64.5 + parent: 2 + - uid: 7503 + components: + - type: Transform + pos: -9.5,-63.5 + parent: 2 + - uid: 7504 + components: + - type: Transform + pos: -10.5,-58.5 + parent: 2 + - uid: 7505 + components: + - type: Transform + pos: -10.5,-57.5 + parent: 2 + - uid: 7506 + components: + - type: Transform + pos: -10.5,-65.5 + parent: 2 + - uid: 7507 + components: + - type: Transform + pos: -10.5,-64.5 + parent: 2 + - uid: 7508 + components: + - type: Transform + pos: -10.5,-63.5 + parent: 2 + - uid: 7509 + components: + - type: Transform + pos: -10.5,-62.5 + parent: 2 + - uid: 7510 + components: + - type: Transform + pos: -10.5,-61.5 + parent: 2 + - uid: 7511 + components: + - type: Transform + pos: -10.5,-60.5 + parent: 2 + - uid: 7512 + components: + - type: Transform + pos: -10.5,-59.5 + parent: 2 + - uid: 7513 + components: + - type: Transform + pos: -5.5,-50.5 + parent: 2 + - uid: 7514 + components: + - type: Transform + pos: -5.5,-59.5 + parent: 2 + - uid: 7515 + components: + - type: Transform + pos: -5.5,-58.5 + parent: 2 + - uid: 7516 + components: + - type: Transform + pos: -5.5,-57.5 + parent: 2 + - uid: 7517 + components: + - type: Transform + pos: -5.5,-56.5 + parent: 2 + - uid: 7518 + components: + - type: Transform + pos: -5.5,-55.5 + parent: 2 + - uid: 7519 + components: + - type: Transform + pos: -5.5,-54.5 + parent: 2 + - uid: 7520 + components: + - type: Transform + pos: -5.5,-53.5 + parent: 2 + - uid: 7521 + components: + - type: Transform + pos: -5.5,-52.5 + parent: 2 + - uid: 7522 + components: + - type: Transform + pos: -5.5,-51.5 + parent: 2 + - uid: 7523 + components: + - type: Transform + pos: -5.5,-65.5 + parent: 2 + - uid: 7524 + components: + - type: Transform + pos: -5.5,-64.5 + parent: 2 + - uid: 7525 + components: + - type: Transform + pos: -5.5,-63.5 + parent: 2 + - uid: 7526 + components: + - type: Transform + pos: -5.5,-62.5 + parent: 2 + - uid: 7527 + components: + - type: Transform + pos: -5.5,-61.5 + parent: 2 + - uid: 7528 + components: + - type: Transform + pos: -5.5,-60.5 + parent: 2 + - uid: 7529 + components: + - type: Transform + pos: -6.5,-55.5 + parent: 2 + - uid: 7530 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 + - uid: 7531 + components: + - type: Transform + pos: -6.5,-53.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + pos: -6.5,-52.5 + parent: 2 + - uid: 7533 + components: + - type: Transform + pos: -6.5,-51.5 + parent: 2 + - uid: 7534 + components: + - type: Transform + pos: -6.5,-50.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + pos: -6.5,-64.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + pos: -6.5,-63.5 + parent: 2 + - uid: 7537 + components: + - type: Transform + pos: -6.5,-62.5 + parent: 2 + - uid: 7538 + components: + - type: Transform + pos: -6.5,-61.5 + parent: 2 + - uid: 7539 + components: + - type: Transform + pos: -6.5,-60.5 + parent: 2 + - uid: 7540 + components: + - type: Transform + pos: -6.5,-59.5 + parent: 2 + - uid: 7541 + components: + - type: Transform + pos: -6.5,-58.5 + parent: 2 + - uid: 7542 + components: + - type: Transform + pos: -6.5,-57.5 + parent: 2 + - uid: 7543 + components: + - type: Transform + pos: -6.5,-56.5 + parent: 2 + - uid: 7544 + components: + - type: Transform + pos: -7.5,-51.5 + parent: 2 + - uid: 7545 + components: + - type: Transform + pos: -7.5,-50.5 + parent: 2 + - uid: 7546 + components: + - type: Transform + pos: -6.5,-65.5 + parent: 2 + - uid: 7547 + components: + - type: Transform + pos: -7.5,-60.5 + parent: 2 + - uid: 7548 + components: + - type: Transform + pos: -7.5,-59.5 + parent: 2 + - uid: 7549 + components: + - type: Transform + pos: -7.5,-58.5 + parent: 2 + - uid: 7550 + components: + - type: Transform + pos: -7.5,-57.5 + parent: 2 + - uid: 7551 + components: + - type: Transform + pos: -7.5,-56.5 + parent: 2 + - uid: 7552 + components: + - type: Transform + pos: -7.5,-55.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + pos: -7.5,-54.5 + parent: 2 + - uid: 7554 + components: + - type: Transform + pos: -7.5,-53.5 + parent: 2 + - uid: 7555 + components: + - type: Transform + pos: -7.5,-52.5 + parent: 2 + - uid: 7556 + components: + - type: Transform + pos: -7.5,-65.5 + parent: 2 + - uid: 7557 + components: + - type: Transform + pos: -7.5,-64.5 + parent: 2 + - uid: 7558 + components: + - type: Transform + pos: -7.5,-63.5 + parent: 2 + - uid: 7559 + components: + - type: Transform + pos: -7.5,-62.5 + parent: 2 + - uid: 7560 + components: + - type: Transform + pos: -7.5,-61.5 + parent: 2 + - uid: 7561 + components: + - type: Transform + pos: -2.5,-52.5 + parent: 2 + - uid: 7562 + components: + - type: Transform + pos: -2.5,-61.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + pos: -2.5,-60.5 + parent: 2 + - uid: 7564 + components: + - type: Transform + pos: -2.5,-59.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + pos: -2.5,-58.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + pos: -2.5,-57.5 + parent: 2 + - uid: 7567 + components: + - type: Transform + pos: -2.5,-56.5 + parent: 2 + - uid: 7568 + components: + - type: Transform + pos: -2.5,-55.5 + parent: 2 + - uid: 7569 + components: + - type: Transform + pos: -2.5,-54.5 + parent: 2 + - uid: 7570 + components: + - type: Transform + pos: -2.5,-53.5 + parent: 2 + - uid: 7571 + components: + - type: Transform + pos: -2.5,-65.5 + parent: 2 + - uid: 7572 + components: + - type: Transform + pos: -2.5,-64.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + pos: -2.5,-63.5 + parent: 2 + - uid: 7574 + components: + - type: Transform + pos: -2.5,-62.5 + parent: 2 + - uid: 7575 + components: + - type: Transform + pos: -3.5,-57.5 + parent: 2 + - uid: 7576 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 2 + - uid: 7577 + components: + - type: Transform + pos: -3.5,-55.5 + parent: 2 + - uid: 7578 + components: + - type: Transform + pos: -3.5,-54.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + pos: -3.5,-53.5 + parent: 2 + - uid: 7580 + components: + - type: Transform + pos: -3.5,-52.5 + parent: 2 + - uid: 7581 + components: + - type: Transform + pos: -3.5,-51.5 + parent: 2 + - uid: 7582 + components: + - type: Transform + pos: -3.5,-50.5 + parent: 2 + - uid: 7583 + components: + - type: Transform + pos: -3.5,-65.5 + parent: 2 + - uid: 7584 + components: + - type: Transform + pos: -3.5,-64.5 + parent: 2 + - uid: 7585 + components: + - type: Transform + pos: -3.5,-63.5 + parent: 2 + - uid: 7586 + components: + - type: Transform + pos: -3.5,-62.5 + parent: 2 + - uid: 7587 + components: + - type: Transform + pos: -3.5,-61.5 + parent: 2 + - uid: 7588 + components: + - type: Transform + pos: -3.5,-60.5 + parent: 2 + - uid: 7589 + components: + - type: Transform + pos: -3.5,-59.5 + parent: 2 + - uid: 7590 + components: + - type: Transform + pos: -3.5,-58.5 + parent: 2 + - uid: 7591 + components: + - type: Transform + pos: -4.5,-53.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + pos: -4.5,-52.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + pos: -4.5,-51.5 + parent: 2 + - uid: 7594 + components: + - type: Transform + pos: -4.5,-50.5 + parent: 2 + - uid: 7595 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 7596 + components: + - type: Transform + pos: -4.5,-61.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + pos: -4.5,-60.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 2 + - uid: 7599 + components: + - type: Transform + pos: -4.5,-58.5 + parent: 2 + - uid: 7600 + components: + - type: Transform + pos: -4.5,-57.5 + parent: 2 + - uid: 7601 + components: + - type: Transform + pos: -4.5,-56.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + pos: -4.5,-55.5 + parent: 2 + - uid: 7603 + components: + - type: Transform + pos: -4.5,-54.5 + parent: 2 + - uid: 7604 + components: + - type: Transform + pos: -4.5,-65.5 + parent: 2 + - uid: 7605 + components: + - type: Transform + pos: -4.5,-64.5 + parent: 2 + - uid: 7606 + components: + - type: Transform + pos: -4.5,-63.5 + parent: 2 + - uid: 7607 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 2 + - uid: 7608 + components: + - type: Transform + pos: 0.5,-63.5 + parent: 2 + - uid: 7609 + components: + - type: Transform + pos: 0.5,-62.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + pos: 0.5,-61.5 + parent: 2 + - uid: 7611 + components: + - type: Transform + pos: 0.5,-60.5 + parent: 2 + - uid: 7612 + components: + - type: Transform + pos: 0.5,-59.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + pos: 0.5,-58.5 + parent: 2 + - uid: 7614 + components: + - type: Transform + pos: 0.5,-57.5 + parent: 2 + - uid: 7615 + components: + - type: Transform + pos: 0.5,-56.5 + parent: 2 + - uid: 7616 + components: + - type: Transform + pos: 0.5,-55.5 + parent: 2 + - uid: 7617 + components: + - type: Transform + pos: -0.5,-50.5 + parent: 2 + - uid: 7618 + components: + - type: Transform + pos: 0.5,-65.5 + parent: 2 + - uid: 7619 + components: + - type: Transform + pos: 0.5,-64.5 + parent: 2 + - uid: 7620 + components: + - type: Transform + pos: -0.5,-59.5 + parent: 2 + - uid: 7621 + components: + - type: Transform + pos: -0.5,-58.5 + parent: 2 + - uid: 7622 + components: + - type: Transform + pos: -0.5,-57.5 + parent: 2 + - uid: 7623 + components: + - type: Transform + pos: -0.5,-56.5 + parent: 2 + - uid: 7624 + components: + - type: Transform + pos: -0.5,-55.5 + parent: 2 + - uid: 7625 + components: + - type: Transform + pos: -0.5,-54.5 + parent: 2 + - uid: 7626 + components: + - type: Transform + pos: -0.5,-53.5 + parent: 2 + - uid: 7627 + components: + - type: Transform + pos: -0.5,-52.5 + parent: 2 + - uid: 7628 + components: + - type: Transform + pos: -0.5,-51.5 + parent: 2 + - uid: 7629 + components: + - type: Transform + pos: -0.5,-65.5 + parent: 2 + - uid: 7630 + components: + - type: Transform + pos: -0.5,-64.5 + parent: 2 + - uid: 7631 + components: + - type: Transform + pos: -0.5,-63.5 + parent: 2 + - uid: 7632 + components: + - type: Transform + pos: -0.5,-62.5 + parent: 2 + - uid: 7633 + components: + - type: Transform + pos: -0.5,-61.5 + parent: 2 + - uid: 7634 + components: + - type: Transform + pos: -0.5,-60.5 + parent: 2 + - uid: 7635 + components: + - type: Transform + pos: -1.5,-55.5 + parent: 2 + - uid: 7636 + components: + - type: Transform + pos: -1.5,-54.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + pos: -1.5,-53.5 + parent: 2 + - uid: 7638 + components: + - type: Transform + pos: -1.5,-52.5 + parent: 2 + - uid: 7639 + components: + - type: Transform + pos: -1.5,-51.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + pos: -1.5,-50.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + pos: -1.5,-64.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + pos: -1.5,-63.5 + parent: 2 + - uid: 7643 + components: + - type: Transform + pos: -1.5,-62.5 + parent: 2 + - uid: 7644 + components: + - type: Transform + pos: -1.5,-61.5 + parent: 2 + - uid: 7645 + components: + - type: Transform + pos: -1.5,-60.5 + parent: 2 + - uid: 7646 + components: + - type: Transform + pos: -1.5,-59.5 + parent: 2 + - uid: 7647 + components: + - type: Transform + pos: -1.5,-58.5 + parent: 2 + - uid: 7648 + components: + - type: Transform + pos: -1.5,-57.5 + parent: 2 + - uid: 7649 + components: + - type: Transform + pos: -1.5,-56.5 + parent: 2 + - uid: 7650 + components: + - type: Transform + pos: -2.5,-51.5 + parent: 2 + - uid: 7651 + components: + - type: Transform + pos: -2.5,-50.5 + parent: 2 + - uid: 7652 + components: + - type: Transform + pos: -1.5,-65.5 + parent: 2 + - uid: 7653 + components: + - type: Transform + pos: 2.5,-52.5 + parent: 2 + - uid: 7654 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 2 + - uid: 7655 + components: + - type: Transform + pos: 2.5,-50.5 + parent: 2 + - uid: 7656 + components: + - type: Transform + pos: 3.5,-56.5 + parent: 2 + - uid: 7657 + components: + - type: Transform + pos: 3.5,-65.5 + parent: 2 + - uid: 7658 + components: + - type: Transform + pos: 3.5,-64.5 + parent: 2 + - uid: 7659 + components: + - type: Transform + pos: 3.5,-63.5 + parent: 2 + - uid: 7660 + components: + - type: Transform + pos: 3.5,-62.5 + parent: 2 + - uid: 7661 + components: + - type: Transform + pos: 3.5,-61.5 + parent: 2 + - uid: 7662 + components: + - type: Transform + pos: 3.5,-60.5 + parent: 2 + - uid: 7663 + components: + - type: Transform + pos: 3.5,-59.5 + parent: 2 + - uid: 7664 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 2 + - uid: 7665 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 2 + - uid: 7666 + components: + - type: Transform + pos: 2.5,-61.5 + parent: 2 + - uid: 7667 + components: + - type: Transform + pos: 2.5,-60.5 + parent: 2 + - uid: 7668 + components: + - type: Transform + pos: 2.5,-59.5 + parent: 2 + - uid: 7669 + components: + - type: Transform + pos: 2.5,-58.5 + parent: 2 + - uid: 7670 + components: + - type: Transform + pos: 2.5,-57.5 + parent: 2 + - uid: 7671 + components: + - type: Transform + pos: 2.5,-56.5 + parent: 2 + - uid: 7672 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 2 + - uid: 7673 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 2 + - uid: 7674 + components: + - type: Transform + pos: 2.5,-53.5 + parent: 2 + - uid: 7675 + components: + - type: Transform + pos: 2.5,-65.5 + parent: 2 + - uid: 7676 + components: + - type: Transform + pos: 2.5,-64.5 + parent: 2 + - uid: 7677 + components: + - type: Transform + pos: 2.5,-63.5 + parent: 2 + - uid: 7678 + components: + - type: Transform + pos: 2.5,-62.5 + parent: 2 + - uid: 7679 + components: + - type: Transform + pos: 1.5,-57.5 + parent: 2 + - uid: 7680 + components: + - type: Transform + pos: 1.5,-56.5 + parent: 2 + - uid: 7681 + components: + - type: Transform + pos: 1.5,-55.5 + parent: 2 + - uid: 7682 + components: + - type: Transform + pos: 1.5,-54.5 + parent: 2 + - uid: 7683 + components: + - type: Transform + pos: 1.5,-53.5 + parent: 2 + - uid: 7684 + components: + - type: Transform + pos: 1.5,-52.5 + parent: 2 + - uid: 7685 + components: + - type: Transform + pos: 1.5,-51.5 + parent: 2 + - uid: 7686 + components: + - type: Transform + pos: 1.5,-50.5 + parent: 2 + - uid: 7687 + components: + - type: Transform + pos: 1.5,-65.5 + parent: 2 + - uid: 7688 + components: + - type: Transform + pos: 1.5,-64.5 + parent: 2 + - uid: 7689 + components: + - type: Transform + pos: 1.5,-63.5 + parent: 2 + - uid: 7690 + components: + - type: Transform + pos: 1.5,-62.5 + parent: 2 + - uid: 7691 + components: + - type: Transform + pos: 1.5,-61.5 + parent: 2 + - uid: 7692 + components: + - type: Transform + pos: 1.5,-60.5 + parent: 2 + - uid: 7693 + components: + - type: Transform + pos: 1.5,-59.5 + parent: 2 + - uid: 7694 + components: + - type: Transform + pos: 1.5,-58.5 + parent: 2 + - uid: 7695 + components: + - type: Transform + pos: 0.5,-53.5 + parent: 2 + - uid: 7696 + components: + - type: Transform + pos: 0.5,-52.5 + parent: 2 + - uid: 7697 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 2 + - uid: 7698 + components: + - type: Transform + pos: 0.5,-50.5 + parent: 2 + - uid: 7699 + components: + - type: Transform + pos: 6.5,-58.5 + parent: 2 + - uid: 7700 + components: + - type: Transform + pos: 6.5,-65.5 + parent: 2 + - uid: 7701 + components: + - type: Transform + pos: 6.5,-64.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + pos: 6.5,-63.5 + parent: 2 + - uid: 7703 + components: + - type: Transform + pos: 6.5,-62.5 + parent: 2 + - uid: 7704 + components: + - type: Transform + pos: 6.5,-61.5 + parent: 2 + - uid: 7705 + components: + - type: Transform + pos: 6.5,-60.5 + parent: 2 + - uid: 7706 + components: + - type: Transform + pos: 6.5,-59.5 + parent: 2 + - uid: 7707 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 2 + - uid: 7708 + components: + - type: Transform + pos: 5.5,-53.5 + parent: 2 + - uid: 7709 + components: + - type: Transform + pos: 5.5,-52.5 + parent: 2 + - uid: 7710 + components: + - type: Transform + pos: 5.5,-51.5 + parent: 2 + - uid: 7711 + components: + - type: Transform + pos: 5.5,-50.5 + parent: 2 + - uid: 7712 + components: + - type: Transform + pos: 5.5,-63.5 + parent: 2 + - uid: 7713 + components: + - type: Transform + pos: 5.5,-62.5 + parent: 2 + - uid: 7714 + components: + - type: Transform + pos: 5.5,-61.5 + parent: 2 + - uid: 7715 + components: + - type: Transform + pos: 5.5,-60.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + pos: 5.5,-59.5 + parent: 2 + - uid: 7717 + components: + - type: Transform + pos: 5.5,-58.5 + parent: 2 + - uid: 7718 + components: + - type: Transform + pos: 5.5,-57.5 + parent: 2 + - uid: 7719 + components: + - type: Transform + pos: 5.5,-56.5 + parent: 2 + - uid: 7720 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 2 + - uid: 7721 + components: + - type: Transform + pos: 4.5,-50.5 + parent: 2 + - uid: 7722 + components: + - type: Transform + pos: 5.5,-65.5 + parent: 2 + - uid: 7723 + components: + - type: Transform + pos: 5.5,-64.5 + parent: 2 + - uid: 7724 + components: + - type: Transform + pos: 4.5,-59.5 + parent: 2 + - uid: 7725 + components: + - type: Transform + pos: 4.5,-58.5 + parent: 2 + - uid: 7726 + components: + - type: Transform + pos: 4.5,-57.5 + parent: 2 + - uid: 7727 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 + - uid: 7728 + components: + - type: Transform + pos: 4.5,-55.5 + parent: 2 + - uid: 7729 + components: + - type: Transform + pos: 4.5,-54.5 + parent: 2 + - uid: 7730 + components: + - type: Transform + pos: 4.5,-53.5 + parent: 2 + - uid: 7731 + components: + - type: Transform + pos: 4.5,-52.5 + parent: 2 + - uid: 7732 + components: + - type: Transform + pos: 4.5,-51.5 + parent: 2 + - uid: 7733 + components: + - type: Transform + pos: 4.5,-65.5 + parent: 2 + - uid: 7734 + components: + - type: Transform + pos: 4.5,-64.5 + parent: 2 + - uid: 7735 + components: + - type: Transform + pos: 4.5,-63.5 + parent: 2 + - uid: 7736 + components: + - type: Transform + pos: 4.5,-62.5 + parent: 2 + - uid: 7737 + components: + - type: Transform + pos: 4.5,-61.5 + parent: 2 + - uid: 7738 + components: + - type: Transform + pos: 4.5,-60.5 + parent: 2 + - uid: 7739 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 2 + - uid: 7740 + components: + - type: Transform + pos: 3.5,-54.5 + parent: 2 + - uid: 7741 + components: + - type: Transform + pos: 3.5,-53.5 + parent: 2 + - uid: 7742 + components: + - type: Transform + pos: 3.5,-52.5 + parent: 2 + - uid: 7743 + components: + - type: Transform + pos: 3.5,-51.5 + parent: 2 + - uid: 7744 + components: + - type: Transform + pos: 3.5,-50.5 + parent: 2 + - uid: 7745 + components: + - type: Transform + pos: 9.5,-60.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + pos: 8.5,-47.5 + parent: 2 + - uid: 7747 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + pos: 8.5,-45.5 + parent: 2 + - uid: 7749 + components: + - type: Transform + pos: 9.5,-65.5 + parent: 2 + - uid: 7750 + components: + - type: Transform + pos: 9.5,-64.5 + parent: 2 + - uid: 7751 + components: + - type: Transform + pos: 9.5,-63.5 + parent: 2 + - uid: 7752 + components: + - type: Transform + pos: 9.5,-62.5 + parent: 2 + - uid: 7753 + components: + - type: Transform + pos: 9.5,-61.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 2 + - uid: 7755 + components: + - type: Transform + pos: 8.5,-55.5 + parent: 2 + - uid: 7756 + components: + - type: Transform + pos: 8.5,-54.5 + parent: 2 + - uid: 7757 + components: + - type: Transform + pos: 8.5,-53.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + pos: 8.5,-52.5 + parent: 2 + - uid: 7759 + components: + - type: Transform + pos: 8.5,-51.5 + parent: 2 + - uid: 7760 + components: + - type: Transform + pos: 8.5,-50.5 + parent: 2 + - uid: 7761 + components: + - type: Transform + pos: 8.5,-49.5 + parent: 2 + - uid: 7762 + components: + - type: Transform + pos: 8.5,-48.5 + parent: 2 + - uid: 7763 + components: + - type: Transform + pos: 8.5,-65.5 + parent: 2 + - uid: 7764 + components: + - type: Transform + pos: 8.5,-64.5 + parent: 2 + - uid: 7765 + components: + - type: Transform + pos: 8.5,-63.5 + parent: 2 + - uid: 7766 + components: + - type: Transform + pos: 8.5,-62.5 + parent: 2 + - uid: 7767 + components: + - type: Transform + pos: 8.5,-61.5 + parent: 2 + - uid: 7768 + components: + - type: Transform + pos: 8.5,-60.5 + parent: 2 + - uid: 7769 + components: + - type: Transform + pos: 8.5,-59.5 + parent: 2 + - uid: 7770 + components: + - type: Transform + pos: 8.5,-58.5 + parent: 2 + - uid: 7771 + components: + - type: Transform + pos: 8.5,-57.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + pos: 7.5,-52.5 + parent: 2 + - uid: 7773 + components: + - type: Transform + pos: 7.5,-51.5 + parent: 2 + - uid: 7774 + components: + - type: Transform + pos: 7.5,-50.5 + parent: 2 + - uid: 7775 + components: + - type: Transform + pos: 7.5,-49.5 + parent: 2 + - uid: 7776 + components: + - type: Transform + pos: 7.5,-48.5 + parent: 2 + - uid: 7777 + components: + - type: Transform + pos: 7.5,-47.5 + parent: 2 + - uid: 7778 + components: + - type: Transform + pos: 7.5,-46.5 + parent: 2 + - uid: 7779 + components: + - type: Transform + pos: 7.5,-45.5 + parent: 2 + - uid: 7780 + components: + - type: Transform + pos: 7.5,-61.5 + parent: 2 + - uid: 7781 + components: + - type: Transform + pos: 7.5,-60.5 + parent: 2 + - uid: 7782 + components: + - type: Transform + pos: 7.5,-59.5 + parent: 2 + - uid: 7783 + components: + - type: Transform + pos: 7.5,-58.5 + parent: 2 + - uid: 7784 + components: + - type: Transform + pos: 7.5,-57.5 + parent: 2 + - uid: 7785 + components: + - type: Transform + pos: 7.5,-56.5 + parent: 2 + - uid: 7786 + components: + - type: Transform + pos: 7.5,-55.5 + parent: 2 + - uid: 7787 + components: + - type: Transform + pos: 7.5,-54.5 + parent: 2 + - uid: 7788 + components: + - type: Transform + pos: 7.5,-53.5 + parent: 2 + - uid: 7789 + components: + - type: Transform + pos: 7.5,-65.5 + parent: 2 + - uid: 7790 + components: + - type: Transform + pos: 7.5,-64.5 + parent: 2 + - uid: 7791 + components: + - type: Transform + pos: 7.5,-63.5 + parent: 2 + - uid: 7792 + components: + - type: Transform + pos: 7.5,-62.5 + parent: 2 + - uid: 7793 + components: + - type: Transform + pos: 6.5,-57.5 + parent: 2 + - uid: 7794 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 2 + - uid: 7795 + components: + - type: Transform + pos: 6.5,-55.5 + parent: 2 + - uid: 7796 + components: + - type: Transform + pos: 6.5,-54.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + pos: 6.5,-53.5 + parent: 2 + - uid: 7798 + components: + - type: Transform + pos: 6.5,-52.5 + parent: 2 + - uid: 7799 + components: + - type: Transform + pos: 6.5,-51.5 + parent: 2 + - uid: 7800 + components: + - type: Transform + pos: 6.5,-50.5 + parent: 2 + - uid: 7801 + components: + - type: Transform + pos: 12.5,-62.5 + parent: 2 + - uid: 7802 + components: + - type: Transform + pos: 11.5,-49.5 + parent: 2 + - uid: 7803 + components: + - type: Transform + pos: 11.5,-48.5 + parent: 2 + - uid: 7804 + components: + - type: Transform + pos: 11.5,-47.5 + parent: 2 + - uid: 7805 + components: + - type: Transform + pos: 11.5,-46.5 + parent: 2 + - uid: 7806 + components: + - type: Transform + pos: 11.5,-45.5 + parent: 2 + - uid: 7807 + components: + - type: Transform + pos: 12.5,-65.5 + parent: 2 + - uid: 7808 + components: + - type: Transform + pos: 12.5,-64.5 + parent: 2 + - uid: 7809 + components: + - type: Transform + pos: 12.5,-63.5 + parent: 2 + - uid: 7810 + components: + - type: Transform + pos: 11.5,-58.5 + parent: 2 + - uid: 7811 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 2 + - uid: 7812 + components: + - type: Transform + pos: 11.5,-56.5 + parent: 2 + - uid: 7813 + components: + - type: Transform + pos: 11.5,-55.5 + parent: 2 + - uid: 7814 + components: + - type: Transform + pos: 11.5,-54.5 + parent: 2 + - uid: 7815 + components: + - type: Transform + pos: 11.5,-53.5 + parent: 2 + - uid: 7816 + components: + - type: Transform + pos: 11.5,-52.5 + parent: 2 + - uid: 7817 + components: + - type: Transform + pos: 11.5,-51.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + pos: 11.5,-50.5 + parent: 2 + - uid: 7819 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 2 + - uid: 7820 + components: + - type: Transform + pos: 11.5,-65.5 + parent: 2 + - uid: 7821 + components: + - type: Transform + pos: 11.5,-64.5 + parent: 2 + - uid: 7822 + components: + - type: Transform + pos: 11.5,-63.5 + parent: 2 + - uid: 7823 + components: + - type: Transform + pos: 11.5,-62.5 + parent: 2 + - uid: 7824 + components: + - type: Transform + pos: 11.5,-61.5 + parent: 2 + - uid: 7825 + components: + - type: Transform + pos: 11.5,-60.5 + parent: 2 + - uid: 7826 + components: + - type: Transform + pos: 11.5,-59.5 + parent: 2 + - uid: 7827 + components: + - type: Transform + pos: 10.5,-54.5 + parent: 2 + - uid: 7828 + components: + - type: Transform + pos: 10.5,-53.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + pos: 10.5,-52.5 + parent: 2 + - uid: 7830 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 2 + - uid: 7831 + components: + - type: Transform + pos: 10.5,-50.5 + parent: 2 + - uid: 7832 + components: + - type: Transform + pos: 10.5,-49.5 + parent: 2 + - uid: 7833 + components: + - type: Transform + pos: 10.5,-48.5 + parent: 2 + - uid: 7834 + components: + - type: Transform + pos: 10.5,-47.5 + parent: 2 + - uid: 7835 + components: + - type: Transform + pos: 10.5,-46.5 + parent: 2 + - uid: 7836 + components: + - type: Transform + pos: 10.5,-63.5 + parent: 2 + - uid: 7837 + components: + - type: Transform + pos: 10.5,-62.5 + parent: 2 + - uid: 7838 + components: + - type: Transform + pos: 10.5,-61.5 + parent: 2 + - uid: 7839 + components: + - type: Transform + pos: 10.5,-60.5 + parent: 2 + - uid: 7840 + components: + - type: Transform + pos: 10.5,-59.5 + parent: 2 + - uid: 7841 + components: + - type: Transform + pos: 10.5,-58.5 + parent: 2 + - uid: 7842 + components: + - type: Transform + pos: 10.5,-57.5 + parent: 2 + - uid: 7843 + components: + - type: Transform + pos: 10.5,-56.5 + parent: 2 + - uid: 7844 + components: + - type: Transform + pos: 10.5,-55.5 + parent: 2 + - uid: 7845 + components: + - type: Transform + pos: 9.5,-50.5 + parent: 2 + - uid: 7846 + components: + - type: Transform + pos: 9.5,-49.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + pos: 9.5,-48.5 + parent: 2 + - uid: 7848 + components: + - type: Transform + pos: 9.5,-47.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + pos: 9.5,-46.5 + parent: 2 + - uid: 7850 + components: + - type: Transform + pos: 9.5,-45.5 + parent: 2 + - uid: 7851 + components: + - type: Transform + pos: 10.5,-65.5 + parent: 2 + - uid: 7852 + components: + - type: Transform + pos: 10.5,-64.5 + parent: 2 + - uid: 7853 + components: + - type: Transform + pos: 9.5,-59.5 + parent: 2 + - uid: 7854 + components: + - type: Transform + pos: 9.5,-58.5 + parent: 2 + - uid: 7855 + components: + - type: Transform + pos: 9.5,-57.5 + parent: 2 + - uid: 7856 + components: + - type: Transform + pos: 9.5,-56.5 + parent: 2 + - uid: 7857 + components: + - type: Transform + pos: 9.5,-55.5 + parent: 2 + - uid: 7858 + components: + - type: Transform + pos: 9.5,-54.5 + parent: 2 + - uid: 7859 + components: + - type: Transform + pos: 9.5,-53.5 + parent: 2 + - uid: 7860 + components: + - type: Transform + pos: 9.5,-52.5 + parent: 2 + - uid: 7861 + components: + - type: Transform + pos: 9.5,-51.5 + parent: 2 + - uid: 7862 + components: + - type: Transform + pos: 15.5,-64.5 + parent: 2 + - uid: 7863 + components: + - type: Transform + pos: 12.5,-61.5 + parent: 2 + - uid: 7864 + components: + - type: Transform + pos: 12.5,-60.5 + parent: 2 + - uid: 7865 + components: + - type: Transform + pos: 12.5,-59.5 + parent: 2 + - uid: 7866 + components: + - type: Transform + pos: 12.5,-58.5 + parent: 2 + - uid: 7867 + components: + - type: Transform + pos: 12.5,-57.5 + parent: 2 + - uid: 7868 + components: + - type: Transform + pos: 12.5,-56.5 + parent: 2 + - uid: 7869 + components: + - type: Transform + pos: 12.5,-55.5 + parent: 2 + - uid: 7870 + components: + - type: Transform + pos: 12.5,-54.5 + parent: 2 + - uid: 7871 + components: + - type: Transform + pos: 12.5,-53.5 + parent: 2 + - uid: 7872 + components: + - type: Transform + pos: 12.5,-52.5 + parent: 2 + - uid: 7873 + components: + - type: Transform + pos: 12.5,-51.5 + parent: 2 + - uid: 7874 + components: + - type: Transform + pos: 12.5,-50.5 + parent: 2 + - uid: 7875 + components: + - type: Transform + pos: 12.5,-49.5 + parent: 2 + - uid: 7876 + components: + - type: Transform + pos: 12.5,-48.5 + parent: 2 + - uid: 7877 + components: + - type: Transform + pos: 12.5,-47.5 + parent: 2 + - uid: 7878 + components: + - type: Transform + pos: 12.5,-46.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 2 + - uid: 7880 + components: + - type: Transform + pos: 13.5,-65.5 + parent: 2 + - uid: 7881 + components: + - type: Transform + pos: 13.5,-64.5 + parent: 2 + - uid: 7882 + components: + - type: Transform + pos: 13.5,-63.5 + parent: 2 + - uid: 7883 + components: + - type: Transform + pos: 13.5,-62.5 + parent: 2 + - uid: 7884 + components: + - type: Transform + pos: 13.5,-61.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + pos: 13.5,-60.5 + parent: 2 + - uid: 7886 + components: + - type: Transform + pos: 13.5,-59.5 + parent: 2 + - uid: 7887 + components: + - type: Transform + pos: 13.5,-58.5 + parent: 2 + - uid: 7888 + components: + - type: Transform + pos: 13.5,-57.5 + parent: 2 + - uid: 7889 + components: + - type: Transform + pos: 13.5,-56.5 + parent: 2 + - uid: 7890 + components: + - type: Transform + pos: 13.5,-55.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + pos: 13.5,-54.5 + parent: 2 + - uid: 7892 + components: + - type: Transform + pos: 13.5,-53.5 + parent: 2 + - uid: 7893 + components: + - type: Transform + pos: 13.5,-52.5 + parent: 2 + - uid: 7894 + components: + - type: Transform + pos: 13.5,-51.5 + parent: 2 + - uid: 7895 + components: + - type: Transform + pos: 13.5,-50.5 + parent: 2 + - uid: 7896 + components: + - type: Transform + pos: 13.5,-49.5 + parent: 2 + - uid: 7897 + components: + - type: Transform + pos: 13.5,-48.5 + parent: 2 + - uid: 7898 + components: + - type: Transform + pos: 14.5,-51.5 + parent: 2 + - uid: 7899 + components: + - type: Transform + pos: 14.5,-50.5 + parent: 2 + - uid: 7900 + components: + - type: Transform + pos: 14.5,-49.5 + parent: 2 + - uid: 7901 + components: + - type: Transform + pos: 14.5,-48.5 + parent: 2 + - uid: 7902 + components: + - type: Transform + pos: 14.5,-47.5 + parent: 2 + - uid: 7903 + components: + - type: Transform + pos: 14.5,-46.5 + parent: 2 + - uid: 7904 + components: + - type: Transform + pos: 14.5,-45.5 + parent: 2 + - uid: 7905 + components: + - type: Transform + pos: 15.5,-65.5 + parent: 2 + - uid: 7906 + components: + - type: Transform + pos: 13.5,-47.5 + parent: 2 + - uid: 7907 + components: + - type: Transform + pos: 13.5,-46.5 + parent: 2 + - uid: 7908 + components: + - type: Transform + pos: 13.5,-45.5 + parent: 2 + - uid: 7909 + components: + - type: Transform + pos: 14.5,-65.5 + parent: 2 + - uid: 7910 + components: + - type: Transform + pos: 14.5,-64.5 + parent: 2 + - uid: 7911 + components: + - type: Transform + pos: 14.5,-63.5 + parent: 2 + - uid: 7912 + components: + - type: Transform + pos: 14.5,-62.5 + parent: 2 + - uid: 7913 + components: + - type: Transform + pos: 14.5,-61.5 + parent: 2 + - uid: 7914 + components: + - type: Transform + pos: 14.5,-60.5 + parent: 2 + - uid: 7915 + components: + - type: Transform + pos: 14.5,-59.5 + parent: 2 + - uid: 7916 + components: + - type: Transform + pos: 14.5,-58.5 + parent: 2 + - uid: 7917 + components: + - type: Transform + pos: 14.5,-57.5 + parent: 2 + - uid: 7918 + components: + - type: Transform + pos: 14.5,-56.5 + parent: 2 + - uid: 7919 + components: + - type: Transform + pos: 14.5,-55.5 + parent: 2 + - uid: 7920 + components: + - type: Transform + pos: 14.5,-54.5 + parent: 2 + - uid: 7921 + components: + - type: Transform + pos: 14.5,-53.5 + parent: 2 + - uid: 7922 + components: + - type: Transform + pos: 14.5,-52.5 + parent: 2 + - uid: 7923 + components: + - type: Transform + pos: 17.5,-44.5 + parent: 2 + - uid: 7924 + components: + - type: Transform + pos: 17.5,-53.5 + parent: 2 + - uid: 7925 + components: + - type: Transform + pos: 17.5,-52.5 + parent: 2 + - uid: 7926 + components: + - type: Transform + pos: 17.5,-51.5 + parent: 2 + - uid: 7927 + components: + - type: Transform + pos: 17.5,-50.5 + parent: 2 + - uid: 7928 + components: + - type: Transform + pos: 17.5,-49.5 + parent: 2 + - uid: 7929 + components: + - type: Transform + pos: 17.5,-48.5 + parent: 2 + - uid: 7930 + components: + - type: Transform + pos: 17.5,-47.5 + parent: 2 + - uid: 7931 + components: + - type: Transform + pos: 17.5,-46.5 + parent: 2 + - uid: 7932 + components: + - type: Transform + pos: 17.5,-45.5 + parent: 2 + - uid: 7933 + components: + - type: Transform + pos: 17.5,-62.5 + parent: 2 + - uid: 7934 + components: + - type: Transform + pos: 17.5,-61.5 + parent: 2 + - uid: 7935 + components: + - type: Transform + pos: 17.5,-60.5 + parent: 2 + - uid: 7936 + components: + - type: Transform + pos: 17.5,-59.5 + parent: 2 + - uid: 7937 + components: + - type: Transform + pos: 17.5,-58.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + pos: 17.5,-57.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + pos: 17.5,-56.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + pos: 17.5,-55.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + pos: 17.5,-54.5 + parent: 2 + - uid: 7942 + components: + - type: Transform + pos: 16.5,-49.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + pos: 16.5,-48.5 + parent: 2 + - uid: 7944 + components: + - type: Transform + pos: 16.5,-47.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: 16.5,-46.5 + parent: 2 + - uid: 7946 + components: + - type: Transform + pos: 16.5,-45.5 + parent: 2 + - uid: 7947 + components: + - type: Transform + pos: 17.5,-65.5 + parent: 2 + - uid: 7948 + components: + - type: Transform + pos: 17.5,-64.5 + parent: 2 + - uid: 7949 + components: + - type: Transform + pos: 17.5,-63.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + pos: 16.5,-58.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + pos: 16.5,-57.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + pos: 16.5,-56.5 + parent: 2 + - uid: 7953 + components: + - type: Transform + pos: 16.5,-55.5 + parent: 2 + - uid: 7954 + components: + - type: Transform + pos: 16.5,-54.5 + parent: 2 + - uid: 7955 + components: + - type: Transform + pos: 16.5,-53.5 + parent: 2 + - uid: 7956 + components: + - type: Transform + pos: 16.5,-52.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + pos: 16.5,-51.5 + parent: 2 + - uid: 7958 + components: + - type: Transform + pos: 16.5,-50.5 + parent: 2 + - uid: 7959 + components: + - type: Transform + pos: 15.5,-45.5 + parent: 2 + - uid: 7960 + components: + - type: Transform + pos: 16.5,-65.5 + parent: 2 + - uid: 7961 + components: + - type: Transform + pos: 16.5,-64.5 + parent: 2 + - uid: 7962 + components: + - type: Transform + pos: 16.5,-63.5 + parent: 2 + - uid: 7963 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 2 + - uid: 7964 + components: + - type: Transform + pos: 16.5,-61.5 + parent: 2 + - uid: 7965 + components: + - type: Transform + pos: 16.5,-60.5 + parent: 2 + - uid: 7966 + components: + - type: Transform + pos: 16.5,-59.5 + parent: 2 + - uid: 7967 + components: + - type: Transform + pos: 15.5,-54.5 + parent: 2 + - uid: 7968 + components: + - type: Transform + pos: 15.5,-53.5 + parent: 2 + - uid: 7969 + components: + - type: Transform + pos: 15.5,-52.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + pos: 15.5,-51.5 + parent: 2 + - uid: 7971 + components: + - type: Transform + pos: 15.5,-50.5 + parent: 2 + - uid: 7972 + components: + - type: Transform + pos: 15.5,-49.5 + parent: 2 + - uid: 7973 + components: + - type: Transform + pos: 15.5,-48.5 + parent: 2 + - uid: 7974 + components: + - type: Transform + pos: 15.5,-47.5 + parent: 2 + - uid: 7975 + components: + - type: Transform + pos: 15.5,-46.5 + parent: 2 + - uid: 7976 + components: + - type: Transform + pos: 15.5,-63.5 + parent: 2 + - uid: 7977 + components: + - type: Transform + pos: 15.5,-62.5 + parent: 2 + - uid: 7978 + components: + - type: Transform + pos: 15.5,-61.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + pos: 15.5,-60.5 + parent: 2 + - uid: 7980 + components: + - type: Transform + pos: 15.5,-59.5 + parent: 2 + - uid: 7981 + components: + - type: Transform + pos: 15.5,-58.5 + parent: 2 + - uid: 7982 + components: + - type: Transform + pos: 15.5,-57.5 + parent: 2 + - uid: 7983 + components: + - type: Transform + pos: 15.5,-56.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + pos: 15.5,-55.5 + parent: 2 + - uid: 7985 + components: + - type: Transform + pos: 20.5,-56.5 + parent: 2 + - uid: 7986 + components: + - type: Transform + pos: 20.5,-55.5 + parent: 2 + - uid: 7987 + components: + - type: Transform + pos: 20.5,-54.5 + parent: 2 + - uid: 7988 + components: + - type: Transform + pos: 20.5,-53.5 + parent: 2 + - uid: 7989 + components: + - type: Transform + pos: 20.5,-52.5 + parent: 2 + - uid: 7990 + components: + - type: Transform + pos: 20.5,-51.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + pos: 20.5,-50.5 + parent: 2 + - uid: 7992 + components: + - type: Transform + pos: 20.5,-49.5 + parent: 2 + - uid: 7993 + components: + - type: Transform + pos: 20.5,-48.5 + parent: 2 + - uid: 7994 + components: + - type: Transform + pos: 20.5,-47.5 + parent: 2 + - uid: 7995 + components: + - type: Transform + pos: 20.5,-46.5 + parent: 2 + - uid: 7996 + components: + - type: Transform + pos: 20.5,-65.5 + parent: 2 + - uid: 7997 + components: + - type: Transform + pos: 20.5,-64.5 + parent: 2 + - uid: 7998 + components: + - type: Transform + pos: 20.5,-63.5 + parent: 2 + - uid: 7999 + components: + - type: Transform + pos: 20.5,-62.5 + parent: 2 + - uid: 8000 + components: + - type: Transform + pos: 20.5,-61.5 + parent: 2 + - uid: 8001 + components: + - type: Transform + pos: 20.5,-60.5 + parent: 2 + - uid: 8002 + components: + - type: Transform + pos: 20.5,-59.5 + parent: 2 + - uid: 8003 + components: + - type: Transform + pos: 20.5,-58.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + pos: 20.5,-57.5 + parent: 2 + - uid: 8005 + components: + - type: Transform + pos: 18.5,-48.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + pos: 18.5,-47.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + pos: 18.5,-46.5 + parent: 2 + - uid: 8008 + components: + - type: Transform + pos: 18.5,-45.5 + parent: 2 + - uid: 8009 + components: + - type: Transform + pos: 18.5,-44.5 + parent: 2 + - uid: 8010 + components: + - type: Transform + pos: 19.5,-65.5 + parent: 2 + - uid: 8011 + components: + - type: Transform + pos: 19.5,-64.5 + parent: 2 + - uid: 8012 + components: + - type: Transform + pos: 19.5,-63.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + pos: 19.5,-62.5 + parent: 2 + - uid: 8014 + components: + - type: Transform + pos: 18.5,-57.5 + parent: 2 + - uid: 8015 + components: + - type: Transform + pos: 18.5,-56.5 + parent: 2 + - uid: 8016 + components: + - type: Transform + pos: 18.5,-55.5 + parent: 2 + - uid: 8017 + components: + - type: Transform + pos: 18.5,-54.5 + parent: 2 + - uid: 8018 + components: + - type: Transform + pos: 18.5,-53.5 + parent: 2 + - uid: 8019 + components: + - type: Transform + pos: 18.5,-52.5 + parent: 2 + - uid: 8020 + components: + - type: Transform + pos: 18.5,-51.5 + parent: 2 + - uid: 8021 + components: + - type: Transform + pos: 18.5,-50.5 + parent: 2 + - uid: 8022 + components: + - type: Transform + pos: 18.5,-49.5 + parent: 2 + - uid: 8023 + components: + - type: Transform + pos: 18.5,-65.5 + parent: 2 + - uid: 8024 + components: + - type: Transform + pos: 18.5,-64.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + pos: 18.5,-63.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + pos: 18.5,-62.5 + parent: 2 + - uid: 8027 + components: + - type: Transform + pos: 18.5,-61.5 + parent: 2 + - uid: 8028 + components: + - type: Transform + pos: 18.5,-60.5 + parent: 2 + - uid: 8029 + components: + - type: Transform + pos: 18.5,-59.5 + parent: 2 + - uid: 8030 + components: + - type: Transform + pos: 18.5,-58.5 + parent: 2 + - uid: 8031 + components: + - type: Transform + pos: 19.5,-52.5 + parent: 2 + - uid: 8032 + components: + - type: Transform + pos: 19.5,-51.5 + parent: 2 + - uid: 8033 + components: + - type: Transform + pos: 19.5,-50.5 + parent: 2 + - uid: 8034 + components: + - type: Transform + pos: 19.5,-49.5 + parent: 2 + - uid: 8035 + components: + - type: Transform + pos: 19.5,-48.5 + parent: 2 + - uid: 8036 + components: + - type: Transform + pos: 19.5,-47.5 + parent: 2 + - uid: 8037 + components: + - type: Transform + pos: 19.5,-46.5 + parent: 2 + - uid: 8038 + components: + - type: Transform + pos: 19.5,-45.5 + parent: 2 + - uid: 8039 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 2 + - uid: 8040 + components: + - type: Transform + pos: 19.5,-61.5 + parent: 2 + - uid: 8041 + components: + - type: Transform + pos: 19.5,-60.5 + parent: 2 + - uid: 8042 + components: + - type: Transform + pos: 19.5,-59.5 + parent: 2 + - uid: 8043 + components: + - type: Transform + pos: 19.5,-58.5 + parent: 2 + - uid: 8044 + components: + - type: Transform + pos: 19.5,-57.5 + parent: 2 + - uid: 8045 + components: + - type: Transform + pos: 19.5,-56.5 + parent: 2 + - uid: 8046 + components: + - type: Transform + pos: 19.5,-55.5 + parent: 2 + - uid: 8047 + components: + - type: Transform + pos: 19.5,-54.5 + parent: 2 + - uid: 8048 + components: + - type: Transform + pos: 19.5,-53.5 + parent: 2 + - uid: 8049 + components: + - type: Transform + pos: 23.5,-56.5 + parent: 2 + - uid: 8050 + components: + - type: Transform + pos: 23.5,-55.5 + parent: 2 + - uid: 8051 + components: + - type: Transform + pos: 23.5,-54.5 + parent: 2 + - uid: 8052 + components: + - type: Transform + pos: 23.5,-53.5 + parent: 2 + - uid: 8053 + components: + - type: Transform + pos: 23.5,-52.5 + parent: 2 + - uid: 8054 + components: + - type: Transform + pos: 23.5,-51.5 + parent: 2 + - uid: 8055 + components: + - type: Transform + pos: 23.5,-50.5 + parent: 2 + - uid: 8056 + components: + - type: Transform + pos: 23.5,-49.5 + parent: 2 + - uid: 8057 + components: + - type: Transform + pos: 23.5,-48.5 + parent: 2 + - uid: 8058 + components: + - type: Transform + pos: 22.5,-52.5 + parent: 2 + - uid: 8059 + components: + - type: Transform + pos: 22.5,-51.5 + parent: 2 + - uid: 8060 + components: + - type: Transform + pos: 22.5,-50.5 + parent: 2 + - uid: 8061 + components: + - type: Transform + pos: 22.5,-49.5 + parent: 2 + - uid: 8062 + components: + - type: Transform + pos: 22.5,-48.5 + parent: 2 + - uid: 8063 + components: + - type: Transform + pos: 22.5,-47.5 + parent: 2 + - uid: 8064 + components: + - type: Transform + pos: 22.5,-46.5 + parent: 2 + - uid: 8065 + components: + - type: Transform + pos: 22.5,-45.5 + parent: 2 + - uid: 8066 + components: + - type: Transform + pos: 22.5,-44.5 + parent: 2 + - uid: 8067 + components: + - type: Transform + pos: 22.5,-61.5 + parent: 2 + - uid: 8068 + components: + - type: Transform + pos: 22.5,-60.5 + parent: 2 + - uid: 8069 + components: + - type: Transform + pos: 22.5,-59.5 + parent: 2 + - uid: 8070 + components: + - type: Transform + pos: 22.5,-58.5 + parent: 2 + - uid: 8071 + components: + - type: Transform + pos: 22.5,-57.5 + parent: 2 + - uid: 8072 + components: + - type: Transform + pos: 22.5,-56.5 + parent: 2 + - uid: 8073 + components: + - type: Transform + pos: 22.5,-55.5 + parent: 2 + - uid: 8074 + components: + - type: Transform + pos: 22.5,-54.5 + parent: 2 + - uid: 8075 + components: + - type: Transform + pos: 22.5,-53.5 + parent: 2 + - uid: 8076 + components: + - type: Transform + pos: 21.5,-48.5 + parent: 2 + - uid: 8077 + components: + - type: Transform + pos: 21.5,-47.5 + parent: 2 + - uid: 8078 + components: + - type: Transform + pos: 21.5,-46.5 + parent: 2 + - uid: 8079 + components: + - type: Transform + pos: 21.5,-45.5 + parent: 2 + - uid: 8080 + components: + - type: Transform + pos: 21.5,-44.5 + parent: 2 + - uid: 8081 + components: + - type: Transform + pos: 22.5,-65.5 + parent: 2 + - uid: 8082 + components: + - type: Transform + pos: 22.5,-64.5 + parent: 2 + - uid: 8083 + components: + - type: Transform + pos: 22.5,-63.5 + parent: 2 + - uid: 8084 + components: + - type: Transform + pos: 22.5,-62.5 + parent: 2 + - uid: 8085 + components: + - type: Transform + pos: 21.5,-57.5 + parent: 2 + - uid: 8086 + components: + - type: Transform + pos: 21.5,-56.5 + parent: 2 + - uid: 8087 + components: + - type: Transform + pos: 21.5,-55.5 + parent: 2 + - uid: 8088 + components: + - type: Transform + pos: 21.5,-54.5 + parent: 2 + - uid: 8089 + components: + - type: Transform + pos: 21.5,-53.5 + parent: 2 + - uid: 8090 + components: + - type: Transform + pos: 21.5,-52.5 + parent: 2 + - uid: 8091 + components: + - type: Transform + pos: 21.5,-51.5 + parent: 2 + - uid: 8092 + components: + - type: Transform + pos: 21.5,-50.5 + parent: 2 + - uid: 8093 + components: + - type: Transform + pos: 21.5,-49.5 + parent: 2 + - uid: 8094 + components: + - type: Transform + pos: 20.5,-44.5 + parent: 2 + - uid: 8095 + components: + - type: Transform + pos: 21.5,-65.5 + parent: 2 + - uid: 8096 + components: + - type: Transform + pos: 21.5,-64.5 + parent: 2 + - uid: 8097 + components: + - type: Transform + pos: 21.5,-63.5 + parent: 2 + - uid: 8098 + components: + - type: Transform + pos: 21.5,-62.5 + parent: 2 + - uid: 8099 + components: + - type: Transform + pos: 21.5,-61.5 + parent: 2 + - uid: 8100 + components: + - type: Transform + pos: 21.5,-60.5 + parent: 2 + - uid: 8101 + components: + - type: Transform + pos: 21.5,-59.5 + parent: 2 + - uid: 8102 + components: + - type: Transform + pos: 21.5,-58.5 + parent: 2 + - uid: 8103 + components: + - type: Transform + pos: 20.5,-45.5 + parent: 2 + - uid: 8104 + components: + - type: Transform + pos: 23.5,-57.5 + parent: 2 + - uid: 8105 + components: + - type: Transform + pos: 23.5,-58.5 + parent: 2 + - uid: 8106 + components: + - type: Transform + pos: 23.5,-59.5 + parent: 2 + - uid: 8107 + components: + - type: Transform + pos: 23.5,-60.5 + parent: 2 + - uid: 8108 + components: + - type: Transform + pos: 23.5,-61.5 + parent: 2 + - uid: 8109 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 2 + - uid: 8110 + components: + - type: Transform + pos: 23.5,-63.5 + parent: 2 + - uid: 8111 + components: + - type: Transform + pos: 23.5,-64.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + pos: 23.5,-65.5 + parent: 2 + - uid: 8113 + components: + - type: Transform + pos: 25.5,-47.5 + parent: 2 + - uid: 8114 + components: + - type: Transform + pos: 25.5,-46.5 + parent: 2 + - uid: 8115 + components: + - type: Transform + pos: 25.5,-56.5 + parent: 2 + - uid: 8116 + components: + - type: Transform + pos: 25.5,-55.5 + parent: 2 + - uid: 8117 + components: + - type: Transform + pos: 25.5,-54.5 + parent: 2 + - uid: 8118 + components: + - type: Transform + pos: 25.5,-53.5 + parent: 2 + - uid: 8119 + components: + - type: Transform + pos: 25.5,-52.5 + parent: 2 + - uid: 8120 + components: + - type: Transform + pos: 25.5,-51.5 + parent: 2 + - uid: 8121 + components: + - type: Transform + pos: 25.5,-50.5 + parent: 2 + - uid: 8122 + components: + - type: Transform + pos: 25.5,-49.5 + parent: 2 + - uid: 8123 + components: + - type: Transform + pos: 25.5,-48.5 + parent: 2 + - uid: 8124 + components: + - type: Transform + pos: 25.5,-65.5 + parent: 2 + - uid: 8125 + components: + - type: Transform + pos: 25.5,-64.5 + parent: 2 + - uid: 8126 + components: + - type: Transform + pos: 25.5,-63.5 + parent: 2 + - uid: 8127 + components: + - type: Transform + pos: 25.5,-62.5 + parent: 2 + - uid: 8128 + components: + - type: Transform + pos: 25.5,-61.5 + parent: 2 + - uid: 8129 + components: + - type: Transform + pos: 25.5,-60.5 + parent: 2 + - uid: 8130 + components: + - type: Transform + pos: 25.5,-59.5 + parent: 2 + - uid: 8131 + components: + - type: Transform + pos: 25.5,-58.5 + parent: 2 + - uid: 8132 + components: + - type: Transform + pos: 25.5,-57.5 + parent: 2 + - uid: 8133 + components: + - type: Transform + pos: 24.5,-52.5 + parent: 2 + - uid: 8134 + components: + - type: Transform + pos: 24.5,-51.5 + parent: 2 + - uid: 8135 + components: + - type: Transform + pos: 24.5,-50.5 + parent: 2 + - uid: 8136 + components: + - type: Transform + pos: 24.5,-49.5 + parent: 2 + - uid: 8137 + components: + - type: Transform + pos: 24.5,-48.5 + parent: 2 + - uid: 8138 + components: + - type: Transform + pos: 24.5,-47.5 + parent: 2 + - uid: 8139 + components: + - type: Transform + pos: 24.5,-46.5 + parent: 2 + - uid: 8140 + components: + - type: Transform + pos: 24.5,-45.5 + parent: 2 + - uid: 8141 + components: + - type: Transform + pos: 24.5,-44.5 + parent: 2 + - uid: 8142 + components: + - type: Transform + pos: 24.5,-61.5 + parent: 2 + - uid: 8143 + components: + - type: Transform + pos: 24.5,-60.5 + parent: 2 + - uid: 8144 + components: + - type: Transform + pos: 24.5,-59.5 + parent: 2 + - uid: 8145 + components: + - type: Transform + pos: 24.5,-58.5 + parent: 2 + - uid: 8146 + components: + - type: Transform + pos: 24.5,-57.5 + parent: 2 + - uid: 8147 + components: + - type: Transform + pos: 24.5,-56.5 + parent: 2 + - uid: 8148 + components: + - type: Transform + pos: 24.5,-55.5 + parent: 2 + - uid: 8149 + components: + - type: Transform + pos: 24.5,-54.5 + parent: 2 + - uid: 8150 + components: + - type: Transform + pos: 24.5,-53.5 + parent: 2 + - uid: 8151 + components: + - type: Transform + pos: 23.5,-47.5 + parent: 2 + - uid: 8152 + components: + - type: Transform + pos: 23.5,-46.5 + parent: 2 + - uid: 8153 + components: + - type: Transform + pos: 23.5,-45.5 + parent: 2 + - uid: 8154 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 2 + - uid: 8155 + components: + - type: Transform + pos: 24.5,-65.5 + parent: 2 + - uid: 8156 + components: + - type: Transform + pos: 24.5,-64.5 + parent: 2 + - uid: 8157 + components: + - type: Transform + pos: 24.5,-63.5 + parent: 2 + - uid: 8158 + components: + - type: Transform + pos: 24.5,-62.5 + parent: 2 + - uid: 8159 + components: + - type: Transform + pos: 32.5,-45.5 + parent: 2 + - uid: 8160 + components: + - type: Transform + pos: 28.5,-64.5 + parent: 2 + - uid: 8161 + components: + - type: Transform + pos: 28.5,-63.5 + parent: 2 + - uid: 8162 + components: + - type: Transform + pos: 28.5,-62.5 + parent: 2 + - uid: 8163 + components: + - type: Transform + pos: 28.5,-61.5 + parent: 2 + - uid: 8164 + components: + - type: Transform + pos: 28.5,-60.5 + parent: 2 + - uid: 8165 + components: + - type: Transform + pos: 28.5,-59.5 + parent: 2 + - uid: 8166 + components: + - type: Transform + pos: 28.5,-58.5 + parent: 2 + - uid: 8167 + components: + - type: Transform + pos: 28.5,-57.5 + parent: 2 + - uid: 8168 + components: + - type: Transform + pos: 28.5,-56.5 + parent: 2 + - uid: 8169 + components: + - type: Transform + pos: 28.5,-55.5 + parent: 2 + - uid: 8170 + components: + - type: Transform + pos: 28.5,-54.5 + parent: 2 + - uid: 8171 + components: + - type: Transform + pos: 28.5,-53.5 + parent: 2 + - uid: 8172 + components: + - type: Transform + pos: 28.5,-52.5 + parent: 2 + - uid: 8173 + components: + - type: Transform + pos: 28.5,-51.5 + parent: 2 + - uid: 8174 + components: + - type: Transform + pos: 28.5,-50.5 + parent: 2 + - uid: 8175 + components: + - type: Transform + pos: 28.5,-49.5 + parent: 2 + - uid: 8176 + components: + - type: Transform + pos: 28.5,-48.5 + parent: 2 + - uid: 8177 + components: + - type: Transform + pos: 27.5,-52.5 + parent: 2 + - uid: 8178 + components: + - type: Transform + pos: 27.5,-51.5 + parent: 2 + - uid: 8179 + components: + - type: Transform + pos: 27.5,-50.5 + parent: 2 + - uid: 8180 + components: + - type: Transform + pos: 27.5,-49.5 + parent: 2 + - uid: 8181 + components: + - type: Transform + pos: 27.5,-48.5 + parent: 2 + - uid: 8182 + components: + - type: Transform + pos: 27.5,-47.5 + parent: 2 + - uid: 8183 + components: + - type: Transform + pos: 27.5,-46.5 + parent: 2 + - uid: 8184 + components: + - type: Transform + pos: 27.5,-45.5 + parent: 2 + - uid: 8185 + components: + - type: Transform + pos: 27.5,-44.5 + parent: 2 + - uid: 8186 + components: + - type: Transform + pos: 27.5,-61.5 + parent: 2 + - uid: 8187 + components: + - type: Transform + pos: 27.5,-60.5 + parent: 2 + - uid: 8188 + components: + - type: Transform + pos: 27.5,-59.5 + parent: 2 + - uid: 8189 + components: + - type: Transform + pos: 27.5,-58.5 + parent: 2 + - uid: 8190 + components: + - type: Transform + pos: 27.5,-57.5 + parent: 2 + - uid: 8191 + components: + - type: Transform + pos: 27.5,-56.5 + parent: 2 + - uid: 8192 + components: + - type: Transform + pos: 27.5,-55.5 + parent: 2 + - uid: 8193 + components: + - type: Transform + pos: 27.5,-54.5 + parent: 2 + - uid: 8194 + components: + - type: Transform + pos: 27.5,-53.5 + parent: 2 + - uid: 8195 + components: + - type: Transform + pos: 26.5,-48.5 + parent: 2 + - uid: 8196 + components: + - type: Transform + pos: 26.5,-47.5 + parent: 2 + - uid: 8197 + components: + - type: Transform + pos: 26.5,-46.5 + parent: 2 + - uid: 8198 + components: + - type: Transform + pos: 26.5,-45.5 + parent: 2 + - uid: 8199 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 2 + - uid: 8200 + components: + - type: Transform + pos: 27.5,-65.5 + parent: 2 + - uid: 8201 + components: + - type: Transform + pos: 27.5,-64.5 + parent: 2 + - uid: 8202 + components: + - type: Transform + pos: 27.5,-63.5 + parent: 2 + - uid: 8203 + components: + - type: Transform + pos: 27.5,-62.5 + parent: 2 + - uid: 8204 + components: + - type: Transform + pos: 26.5,-57.5 + parent: 2 + - uid: 8205 + components: + - type: Transform + pos: 26.5,-56.5 + parent: 2 + - uid: 8206 + components: + - type: Transform + pos: 26.5,-55.5 + parent: 2 + - uid: 8207 + components: + - type: Transform + pos: 26.5,-54.5 + parent: 2 + - uid: 8208 + components: + - type: Transform + pos: 26.5,-53.5 + parent: 2 + - uid: 8209 + components: + - type: Transform + pos: 26.5,-52.5 + parent: 2 + - uid: 8210 + components: + - type: Transform + pos: 26.5,-51.5 + parent: 2 + - uid: 8211 + components: + - type: Transform + pos: 26.5,-50.5 + parent: 2 + - uid: 8212 + components: + - type: Transform + pos: 26.5,-49.5 + parent: 2 + - uid: 8213 + components: + - type: Transform + pos: 25.5,-44.5 + parent: 2 + - uid: 8214 + components: + - type: Transform + pos: 26.5,-65.5 + parent: 2 + - uid: 8215 + components: + - type: Transform + pos: 26.5,-64.5 + parent: 2 + - uid: 8216 + components: + - type: Transform + pos: 26.5,-63.5 + parent: 2 + - uid: 8217 + components: + - type: Transform + pos: 26.5,-62.5 + parent: 2 + - uid: 8218 + components: + - type: Transform + pos: 26.5,-61.5 + parent: 2 + - uid: 8219 + components: + - type: Transform + pos: 26.5,-60.5 + parent: 2 + - uid: 8220 + components: + - type: Transform + pos: 26.5,-59.5 + parent: 2 + - uid: 8221 + components: + - type: Transform + pos: 26.5,-58.5 + parent: 2 + - uid: 8222 + components: + - type: Transform + pos: 25.5,-45.5 + parent: 2 + - uid: 8223 + components: + - type: Transform + pos: 30.5,-56.5 + parent: 2 + - uid: 8224 + components: + - type: Transform + pos: 30.5,-55.5 + parent: 2 + - uid: 8225 + components: + - type: Transform + pos: 30.5,-54.5 + parent: 2 + - uid: 8226 + components: + - type: Transform + pos: 30.5,-53.5 + parent: 2 + - uid: 8227 + components: + - type: Transform + pos: 30.5,-52.5 + parent: 2 + - uid: 8228 + components: + - type: Transform + pos: 30.5,-51.5 + parent: 2 + - uid: 8229 + components: + - type: Transform + pos: 30.5,-50.5 + parent: 2 + - uid: 8230 + components: + - type: Transform + pos: 30.5,-49.5 + parent: 2 + - uid: 8231 + components: + - type: Transform + pos: 30.5,-48.5 + parent: 2 + - uid: 8232 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - uid: 8233 + components: + - type: Transform + pos: 30.5,-64.5 + parent: 2 + - uid: 8234 + components: + - type: Transform + pos: 30.5,-63.5 + parent: 2 + - uid: 8235 + components: + - type: Transform + pos: 30.5,-62.5 + parent: 2 + - uid: 8236 + components: + - type: Transform + pos: 30.5,-61.5 + parent: 2 + - uid: 8237 + components: + - type: Transform + pos: 30.5,-60.5 + parent: 2 + - uid: 8238 + components: + - type: Transform + pos: 30.5,-59.5 + parent: 2 + - uid: 8239 + components: + - type: Transform + pos: 30.5,-58.5 + parent: 2 + - uid: 8240 + components: + - type: Transform + pos: 30.5,-57.5 + parent: 2 + - uid: 8241 + components: + - type: Transform + pos: 29.5,-52.5 + parent: 2 + - uid: 8242 + components: + - type: Transform + pos: 29.5,-51.5 + parent: 2 + - uid: 8243 + components: + - type: Transform + pos: 29.5,-50.5 + parent: 2 + - uid: 8244 + components: + - type: Transform + pos: 29.5,-49.5 + parent: 2 + - uid: 8245 + components: + - type: Transform + pos: 29.5,-48.5 + parent: 2 + - uid: 8246 + components: + - type: Transform + pos: 29.5,-47.5 + parent: 2 + - uid: 8247 + components: + - type: Transform + pos: 29.5,-46.5 + parent: 2 + - uid: 8248 + components: + - type: Transform + pos: 29.5,-45.5 + parent: 2 + - uid: 8249 + components: + - type: Transform + pos: 29.5,-44.5 + parent: 2 + - uid: 8250 + components: + - type: Transform + pos: 29.5,-61.5 + parent: 2 + - uid: 8251 + components: + - type: Transform + pos: 29.5,-60.5 + parent: 2 + - uid: 8252 + components: + - type: Transform + pos: 29.5,-59.5 + parent: 2 + - uid: 8253 + components: + - type: Transform + pos: 29.5,-58.5 + parent: 2 + - uid: 8254 + components: + - type: Transform + pos: 29.5,-57.5 + parent: 2 + - uid: 8255 + components: + - type: Transform + pos: 29.5,-56.5 + parent: 2 + - uid: 8256 + components: + - type: Transform + pos: 29.5,-55.5 + parent: 2 + - uid: 8257 + components: + - type: Transform + pos: 29.5,-54.5 + parent: 2 + - uid: 8258 + components: + - type: Transform + pos: 29.5,-53.5 + parent: 2 + - uid: 8259 + components: + - type: Transform + pos: 28.5,-47.5 + parent: 2 + - uid: 8260 + components: + - type: Transform + pos: 28.5,-46.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + pos: 28.5,-45.5 + parent: 2 + - uid: 8262 + components: + - type: Transform + pos: 28.5,-44.5 + parent: 2 + - uid: 8263 + components: + - type: Transform + pos: 32.5,-47.5 + parent: 2 + - uid: 8264 + components: + - type: Transform + pos: 29.5,-64.5 + parent: 2 + - uid: 8265 + components: + - type: Transform + pos: 29.5,-63.5 + parent: 2 + - uid: 8266 + components: + - type: Transform + pos: 29.5,-62.5 + parent: 2 + - uid: 8267 + components: + - type: Transform + pos: 30.5,-47.5 + parent: 2 + - uid: 8268 + components: + - type: Transform + pos: 30.5,-46.5 + parent: 2 + - uid: 8269 + components: + - type: Transform + pos: 30.5,-45.5 + parent: 2 + - uid: 8270 + components: + - type: Transform + pos: 30.5,-44.5 + parent: 2 + - uid: 8271 + components: + - type: Transform + pos: 31.5,-55.5 + parent: 2 + - uid: 8272 + components: + - type: Transform + pos: 31.5,-54.5 + parent: 2 + - uid: 8273 + components: + - type: Transform + pos: 31.5,-56.5 + parent: 2 + - uid: 8274 + components: + - type: Transform + pos: 32.5,-52.5 + parent: 2 + - uid: 8275 + components: + - type: Transform + pos: 32.5,-54.5 + parent: 2 + - uid: 8276 + components: + - type: Transform + pos: 32.5,-53.5 + parent: 2 + - uid: 8277 + components: + - type: Transform + pos: 32.5,-55.5 + parent: 2 + - uid: 8278 + components: + - type: Transform + pos: 32.5,-56.5 + parent: 2 + - uid: 8279 + components: + - type: Transform + pos: 31.5,-49.5 + parent: 2 + - uid: 8280 + components: + - type: Transform + pos: 31.5,-51.5 + parent: 2 + - uid: 8281 + components: + - type: Transform + pos: 31.5,-50.5 + parent: 2 + - uid: 8282 + components: + - type: Transform + pos: 31.5,-52.5 + parent: 2 + - uid: 8283 + components: + - type: Transform + pos: 35.5,-49.5 + parent: 2 + - uid: 8284 + components: + - type: Transform + pos: 35.5,-50.5 + parent: 2 + - uid: 8285 + components: + - type: Transform + pos: 35.5,-51.5 + parent: 2 + - uid: 8286 + components: + - type: Transform + pos: 35.5,-52.5 + parent: 2 + - uid: 8287 + components: + - type: Transform + pos: 35.5,-54.5 + parent: 2 + - uid: 8288 + components: + - type: Transform + pos: 35.5,-55.5 + parent: 2 + - uid: 8289 + components: + - type: Transform + pos: 35.5,-56.5 + parent: 2 + - uid: 8290 + components: + - type: Transform + pos: 34.5,-49.5 + parent: 2 + - uid: 8291 + components: + - type: Transform + pos: 33.5,-50.5 + parent: 2 + - uid: 8292 + components: + - type: Transform + pos: 33.5,-51.5 + parent: 2 + - uid: 8293 + components: + - type: Transform + pos: 33.5,-52.5 + parent: 2 + - uid: 8294 + components: + - type: Transform + pos: 33.5,-53.5 + parent: 2 + - uid: 8295 + components: + - type: Transform + pos: 33.5,-54.5 + parent: 2 + - uid: 8296 + components: + - type: Transform + pos: 32.5,-49.5 + parent: 2 + - uid: 8297 + components: + - type: Transform + pos: 33.5,-56.5 + parent: 2 + - uid: 8298 + components: + - type: Transform + pos: 32.5,-50.5 + parent: 2 + - uid: 8299 + components: + - type: Transform + pos: 32.5,-51.5 + parent: 2 + - uid: 8300 + components: + - type: Transform + pos: 34.5,-50.5 + parent: 2 + - uid: 8301 + components: + - type: Transform + pos: 35.5,-53.5 + parent: 2 + - uid: 8302 + components: + - type: Transform + pos: 34.5,-51.5 + parent: 2 + - uid: 8303 + components: + - type: Transform + pos: 34.5,-53.5 + parent: 2 + - uid: 8304 + components: + - type: Transform + pos: 34.5,-52.5 + parent: 2 + - uid: 8305 + components: + - type: Transform + pos: 34.5,-54.5 + parent: 2 + - uid: 8306 + components: + - type: Transform + pos: 34.5,-55.5 + parent: 2 + - uid: 8307 + components: + - type: Transform + pos: 34.5,-56.5 + parent: 2 + - uid: 8308 + components: + - type: Transform + pos: 33.5,-49.5 + parent: 2 + - uid: 8309 + components: + - type: Transform + pos: 34.5,-57.5 + parent: 2 + - uid: 8310 + components: + - type: Transform + pos: 33.5,-57.5 + parent: 2 + - uid: 8311 + components: + - type: Transform + pos: 33.5,-58.5 + parent: 2 + - uid: 8312 + components: + - type: Transform + pos: 32.5,-57.5 + parent: 2 + - uid: 8313 + components: + - type: Transform + pos: 32.5,-58.5 + parent: 2 + - uid: 8314 + components: + - type: Transform + pos: 31.5,-57.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + pos: 31.5,-58.5 + parent: 2 + - uid: 8316 + components: + - type: Transform + pos: 34.5,-58.5 + parent: 2 + - uid: 8317 + components: + - type: Transform + pos: 32.5,-60.5 + parent: 2 + - uid: 8318 + components: + - type: Transform + pos: 33.5,-59.5 + parent: 2 + - uid: 8319 + components: + - type: Transform + pos: 33.5,-60.5 + parent: 2 + - uid: 8320 + components: + - type: Transform + pos: 33.5,-61.5 + parent: 2 + - uid: 8321 + components: + - type: Transform + pos: 32.5,-59.5 + parent: 2 + - uid: 8322 + components: + - type: Transform + pos: 32.5,-61.5 + parent: 2 + - uid: 8323 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 2 + - uid: 8324 + components: + - type: Transform + pos: 31.5,-60.5 + parent: 2 + - uid: 8325 + components: + - type: Transform + pos: 31.5,-61.5 + parent: 2 + - uid: 8326 + components: + - type: Transform + pos: 32.5,-62.5 + parent: 2 + - uid: 8327 + components: + - type: Transform + pos: 31.5,-62.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + pos: 31.5,-63.5 + parent: 2 + - uid: 8329 + components: + - type: Transform + pos: 37.5,-19.5 + parent: 2 + - uid: 8330 + components: + - type: Transform + pos: 37.5,-17.5 + parent: 2 + - uid: 8331 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - uid: 8332 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 2 + - uid: 8333 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 8334 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 8335 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 2 + - uid: 8336 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 8337 + components: + - type: Transform + pos: 37.5,-22.5 + parent: 2 + - uid: 8338 + components: + - type: Transform + pos: 37.5,-21.5 + parent: 2 + - uid: 8339 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 2 + - uid: 8340 + components: + - type: Transform + pos: 39.5,-21.5 + parent: 2 + - uid: 8341 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 2 + - uid: 8342 + components: + - type: Transform + pos: 39.5,-12.5 + parent: 2 + - uid: 8343 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 2 + - uid: 8344 + components: + - type: Transform + pos: 38.5,-23.5 + parent: 2 + - uid: 8345 + components: + - type: Transform + pos: 38.5,-22.5 + parent: 2 + - uid: 8346 + components: + - type: Transform + pos: 38.5,-20.5 + parent: 2 + - uid: 8347 + components: + - type: Transform + pos: 38.5,-21.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + pos: 39.5,-22.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + pos: 39.5,-23.5 + parent: 2 + - uid: 8351 + components: + - type: Transform + pos: 40.5,-12.5 + parent: 2 + - uid: 8352 + components: + - type: Transform + pos: 39.5,-20.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + pos: 39.5,-19.5 + parent: 2 + - uid: 8354 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 + - uid: 8355 + components: + - type: Transform + pos: 39.5,-18.5 + parent: 2 + - uid: 8356 + components: + - type: Transform + pos: 39.5,-16.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - uid: 8358 + components: + - type: Transform + pos: 40.5,-20.5 + parent: 2 + - uid: 8359 + components: + - type: Transform + pos: 40.5,-18.5 + parent: 2 + - uid: 8360 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 8361 + components: + - type: Transform + pos: 40.5,-16.5 + parent: 2 + - uid: 8362 + components: + - type: Transform + pos: 41.5,-16.5 + parent: 2 + - uid: 8363 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 2 + - uid: 8364 + components: + - type: Transform + pos: 40.5,-19.5 + parent: 2 + - uid: 8365 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 2 + - uid: 8366 + components: + - type: Transform + pos: 40.5,-13.5 + parent: 2 + - uid: 8367 + components: + - type: Transform + pos: 41.5,-18.5 + parent: 2 + - uid: 8368 + components: + - type: Transform + pos: 41.5,-17.5 + parent: 2 + - uid: 8369 + components: + - type: Transform + pos: 41.5,-14.5 + parent: 2 + - uid: 8370 + components: + - type: Transform + pos: 41.5,-15.5 + parent: 2 + - uid: 8371 + components: + - type: Transform + pos: 41.5,-13.5 + parent: 2 + - uid: 8372 + components: + - type: Transform + pos: 40.5,-23.5 + parent: 2 + - uid: 8373 + components: + - type: Transform + pos: 41.5,-12.5 + parent: 2 + - uid: 8374 + components: + - type: Transform + pos: 40.5,-22.5 + parent: 2 + - uid: 8375 + components: + - type: Transform + pos: 40.5,-21.5 + parent: 2 + - uid: 8376 + components: + - type: Transform + pos: 42.5,-15.5 + parent: 2 + - uid: 8377 + components: + - type: Transform + pos: 42.5,-13.5 + parent: 2 + - uid: 8378 + components: + - type: Transform + pos: 42.5,-12.5 + parent: 2 + - uid: 8379 + components: + - type: Transform + pos: 42.5,-16.5 + parent: 2 + - uid: 8380 + components: + - type: Transform + pos: 41.5,-22.5 + parent: 2 + - uid: 8381 + components: + - type: Transform + pos: 41.5,-21.5 + parent: 2 + - uid: 8382 + components: + - type: Transform + pos: 41.5,-23.5 + parent: 2 + - uid: 8383 + components: + - type: Transform + pos: 41.5,-20.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + pos: 41.5,-19.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + pos: 42.5,-23.5 + parent: 2 + - uid: 8386 + components: + - type: Transform + pos: 42.5,-22.5 + parent: 2 + - uid: 8387 + components: + - type: Transform + pos: 42.5,-21.5 + parent: 2 + - uid: 8388 + components: + - type: Transform + pos: 42.5,-20.5 + parent: 2 + - uid: 8389 + components: + - type: Transform + pos: 42.5,-19.5 + parent: 2 + - uid: 8390 + components: + - type: Transform + pos: 42.5,-18.5 + parent: 2 + - uid: 8391 + components: + - type: Transform + pos: 42.5,-17.5 + parent: 2 + - uid: 8392 + components: + - type: Transform + pos: 42.5,-14.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 2 + - uid: 8394 + components: + - type: Transform + pos: 34.5,-17.5 + parent: 2 + - uid: 8395 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 2 + - uid: 8396 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 8397 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 2 + - uid: 8398 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 + - uid: 8399 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 2 + - uid: 8400 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - uid: 8401 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 2 + - uid: 8405 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - uid: 8407 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 2 + - uid: 8408 + components: + - type: Transform + pos: 34.5,-19.5 + parent: 2 + - uid: 8409 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 2 + - uid: 8410 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 2 + - uid: 8411 + components: + - type: Transform + pos: 35.5,-22.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 2 + - uid: 8413 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 2 + - uid: 8414 + components: + - type: Transform + pos: 35.5,-19.5 + parent: 2 + - uid: 8415 + components: + - type: Transform + pos: 35.5,-18.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 2 + - uid: 8418 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 2 + - uid: 8419 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 2 + - uid: 8420 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 2 + - uid: 8421 + components: + - type: Transform + pos: 36.5,-18.5 + parent: 2 + - uid: 8422 + components: + - type: Transform + pos: 37.5,-23.5 + parent: 2 + - uid: 8423 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 2 + - uid: 8424 + components: + - type: Transform + pos: 36.5,-14.5 + parent: 2 + - uid: 8425 + components: + - type: Transform + pos: 36.5,-12.5 + parent: 2 + - uid: 8426 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 2 + - uid: 8427 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - uid: 8428 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 2 + - uid: 8429 + components: + - type: Transform + pos: 37.5,-14.5 + parent: 2 + - uid: 8430 + components: + - type: Transform + pos: 38.5,-19.5 + parent: 2 + - uid: 8431 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 8432 + components: + - type: Transform + pos: 37.5,-13.5 + parent: 2 + - uid: 8433 + components: + - type: Transform + pos: 36.5,-23.5 + parent: 2 + - uid: 8434 + components: + - type: Transform + pos: 36.5,-22.5 + parent: 2 + - uid: 8435 + components: + - type: Transform + pos: 36.5,-20.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + pos: 37.5,-18.5 + parent: 2 + - uid: 8437 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 2 + - uid: 8438 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 8440 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 8441 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 + - uid: 8442 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - uid: 8443 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 8444 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 8445 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 8446 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - uid: 8447 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 8448 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 8449 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 + - uid: 8450 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 + - uid: 8451 + components: + - type: Transform + pos: 41.5,-8.5 + parent: 2 + - uid: 8452 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 8453 + components: + - type: Transform + pos: 41.5,-5.5 + parent: 2 + - uid: 8454 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 2 + - uid: 8455 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 2 + - uid: 8456 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - uid: 8458 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 8459 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - uid: 8460 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 8461 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - uid: 8462 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 8463 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - uid: 8464 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 + - uid: 8465 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 2 + - uid: 8466 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 2 + - uid: 8467 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 + - uid: 8468 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 8469 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 2 + - uid: 8470 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 2 + - uid: 8471 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 8472 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 8473 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 8474 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 2 + - uid: 8475 + components: + - type: Transform + pos: 39.5,-3.5 + parent: 2 + - uid: 8476 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 2 + - uid: 8477 + components: + - type: Transform + pos: 40.5,-4.5 + parent: 2 + - uid: 8478 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 8479 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 8480 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 8481 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 2 + - uid: 8482 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 2 + - uid: 8483 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 2 + - uid: 8484 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 2 + - uid: 8485 + components: + - type: Transform + pos: 39.5,-11.5 + parent: 2 + - uid: 8486 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - uid: 8487 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 2 + - uid: 8488 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - uid: 8490 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - uid: 8491 + components: + - type: Transform + pos: 39.5,-5.5 + parent: 2 + - uid: 8492 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 2 + - uid: 8493 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 2 + - uid: 8494 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - uid: 8495 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 2 + - uid: 8496 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 2 + - uid: 8497 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 2 + - uid: 8498 + components: + - type: Transform + pos: 40.5,-8.5 + parent: 2 + - uid: 8499 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 2 + - uid: 8500 + components: + - type: Transform + pos: 40.5,-5.5 + parent: 2 + - uid: 8501 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 8502 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 8503 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 8504 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 8505 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 8506 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - uid: 8507 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 2 + - uid: 8508 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 8509 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 8510 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 8511 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 8512 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 8513 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - uid: 8514 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 + - uid: 8515 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 + - uid: 8516 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - uid: 8517 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 2 + - uid: 8518 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 2 + - uid: 8519 + components: + - type: Transform + pos: 40.5,0.5 + parent: 2 + - uid: 8520 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 8521 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 8522 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 8523 + components: + - type: Transform + pos: 39.5,-1.5 + parent: 2 + - uid: 8524 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 2 + - uid: 8525 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 8526 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 8527 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 8528 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 8529 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 8530 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 8531 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 + - uid: 8532 + components: + - type: Transform + pos: 38.5,0.5 + parent: 2 + - uid: 8533 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 8534 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 8535 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 8536 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 8537 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - uid: 8538 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 8539 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 8540 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - uid: 8541 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - uid: 8542 + components: + - type: Transform + pos: 35.5,1.5 + parent: 2 + - uid: 8543 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 + - uid: 8544 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 8545 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 + - uid: 8546 + components: + - type: Transform + pos: 34.5,1.5 + parent: 2 + - uid: 8547 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 8548 + components: + - type: Transform + pos: 37.5,4.5 + parent: 2 + - uid: 8549 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 8550 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 + - uid: 8551 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 8552 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 8553 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 8554 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - uid: 8555 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 + - uid: 8556 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 8557 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 8558 + components: + - type: Transform + pos: 38.5,2.5 + parent: 2 + - uid: 8559 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 8560 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - uid: 8561 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - uid: 8562 + components: + - type: Transform + pos: 37.5,0.5 + parent: 2 + - uid: 8563 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 8564 + components: + - type: Transform + pos: 37.5,2.5 + parent: 2 + - uid: 8565 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 + - uid: 8566 + components: + - type: Transform + pos: 35.5,5.5 + parent: 2 + - uid: 8567 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 8568 + components: + - type: Transform + pos: 34.5,5.5 + parent: 2 + - uid: 8569 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 8570 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 8571 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 8572 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 8573 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 8574 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 + - uid: 8575 + components: + - type: Transform + pos: 37.5,5.5 + parent: 2 + - uid: 8576 + components: + - type: Transform + pos: 36.5,5.5 + parent: 2 + - uid: 8577 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 + - uid: 8578 + components: + - type: Transform + pos: 34.5,7.5 + parent: 2 + - uid: 8579 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 8580 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 8581 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 8582 + components: + - type: Transform + pos: 37.5,8.5 + parent: 2 + - uid: 8583 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 8584 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 8585 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 8586 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 + - uid: 8587 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 + - uid: 8588 + components: + - type: Transform + pos: 37.5,9.5 + parent: 2 + - uid: 8589 + components: + - type: Transform + pos: 37.5,10.5 + parent: 2 + - uid: 8590 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 + - uid: 8591 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 8592 + components: + - type: Transform + pos: 35.5,10.5 + parent: 2 + - uid: 8593 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 8594 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 8595 + components: + - type: Transform + pos: 35.5,9.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 8597 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 + - uid: 8598 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + pos: 35.5,12.5 + parent: 2 + - uid: 8600 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 8601 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 8602 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 + - uid: 8604 + components: + - type: Transform + pos: 34.5,14.5 + parent: 2 + - uid: 8605 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 8606 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 2 + - uid: 8607 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 2 + - uid: 8608 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 2 + - uid: 8609 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 2 + - uid: 8610 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 + - uid: 8611 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 2 + - uid: 8612 + components: + - type: Transform + pos: 17.5,-43.5 + parent: 2 + - uid: 8613 + components: + - type: Transform + pos: 17.5,-42.5 + parent: 2 + - uid: 8614 + components: + - type: Transform + pos: 17.5,-41.5 + parent: 2 + - uid: 8615 + components: + - type: Transform + pos: 17.5,-39.5 + parent: 2 + - uid: 8616 + components: + - type: Transform + pos: 17.5,-38.5 + parent: 2 + - uid: 8617 + components: + - type: Transform + pos: 17.5,-37.5 + parent: 2 + - uid: 8618 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 2 + - uid: 8619 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 2 + - uid: 8620 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 2 + - uid: 8621 + components: + - type: Transform + pos: 17.5,-40.5 + parent: 2 + - uid: 8622 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 2 + - uid: 8623 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 2 + - uid: 8625 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 + - uid: 8626 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 2 + - uid: 8627 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 2 + - uid: 8628 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 8654 + components: + - type: Transform + pos: -31.5,1.5 + parent: 2 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 2183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-18.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 8790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-27.5 + parent: 2 + - uid: 8791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-25.5 + parent: 2 + - uid: 8792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-27.5 + parent: 2 + - uid: 9092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 2 + - uid: 9093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 2 + - uid: 9131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-1.5 + parent: 2 + - uid: 9132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-1.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 8793 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 8794 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 8795 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 2 + - uid: 8796 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - uid: 8797 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 2 + - uid: 8798 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 2 +- proto: AtmosFixInstantPlasmaFireMarker + entities: + - uid: 482 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 1366 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 988 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 2 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 987 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 720 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 +- proto: BananaPhoneInstrument + entities: + - uid: 519 + components: + - type: Transform + pos: -16.49953,-5.5541434 + parent: 2 +- proto: Bed + entities: + - uid: 166 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 9073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 2 + - uid: 9075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 2 +- proto: BedsheetOrange + entities: + - uid: 8932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-4.5 + parent: 2 + - uid: 8933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 2 +- proto: BerrySeeds + entities: + - uid: 209 + components: + - type: Transform + pos: 11.412802,-6.7035346 + parent: 2 +- proto: Biogenerator + entities: + - uid: 398 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 +- proto: BirdToyInstrument + entities: + - uid: 8749 + components: + - type: Transform + pos: 20.503393,-6.545252 + parent: 2 +- proto: BlastDoor + entities: + - uid: 698 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 740 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - uid: 9087 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 9088 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 +- proto: BooksBag + entities: + - uid: 364 + components: + - type: Transform + pos: -8.482474,-20.472624 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 8674 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-28.5 + parent: 2 +- proto: BorgCharger + entities: + - uid: 1048 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 198 + components: + - type: Transform + pos: 10.494829,-9.507108 + parent: 2 +- proto: BoxLatexGloves + entities: + - uid: 320 + components: + - type: Transform + pos: 14.359207,-23.416584 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 328 + components: + - type: Transform + pos: 15.529946,-23.412048 + parent: 2 +- proto: BoxSterileMask + entities: + - uid: 327 + components: + - type: Transform + pos: 14.656082,-23.400959 + parent: 2 +- proto: BoxTrashbag + entities: + - uid: 1344 + components: + - type: Transform + pos: -10.550489,-12.479706 + parent: 2 +- proto: BrigTimer + entities: + - uid: 129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - uid: 130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 2 +- proto: Bucket + entities: + - uid: 213 + components: + - type: Transform + pos: 12.631552,-6.6566596 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: 5.5633593,-26.532528 + parent: 2 +- proto: ButtonFrameGrey + entities: + - uid: 9091 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - uid: 9102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-31.5 + parent: 2 + - uid: 9135 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 169 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 + - uid: 1556 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 2 + - uid: 1575 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 + - uid: 1594 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 2099 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 2216 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 5017 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 + - uid: 5020 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 5641 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 5643 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 5699 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - uid: 5704 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 5718 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 5720 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 5722 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 5723 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 + - uid: 5727 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 5729 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - uid: 5778 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 2 + - uid: 5779 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 2 + - uid: 8629 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 8630 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 8631 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 8632 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 + - uid: 8633 + components: + - type: Transform + pos: -31.5,-12.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 2 + - uid: 8635 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 8636 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 + - uid: 8637 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 8638 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - uid: 8639 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 8640 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 8641 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 + - uid: 8642 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 2 + - uid: 8643 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 8645 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 8646 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 8647 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - uid: 8648 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 8649 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 8650 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 + - uid: 8651 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 2 + - uid: 8652 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 2 + - uid: 8653 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 2 + - uid: 8656 + components: + - type: Transform + pos: -19.5,-19.5 + parent: 2 + - uid: 8657 + components: + - type: Transform + pos: -20.5,-19.5 + parent: 2 + - uid: 8658 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 2 + - uid: 8659 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 + - uid: 8660 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 + - uid: 8661 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 2 + - uid: 8662 + components: + - type: Transform + pos: -20.5,-23.5 + parent: 2 + - uid: 8663 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 + - uid: 8664 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 2 + - uid: 8665 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 2 + - uid: 8666 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 8667 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 + - uid: 8668 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 2 + - uid: 8669 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - uid: 8671 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 2 + - uid: 8672 + components: + - type: Transform + pos: -17.5,-26.5 + parent: 2 + - uid: 8673 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 2 + - uid: 8676 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 2 + - uid: 8677 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 2 + - uid: 8678 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 2 + - uid: 8679 + components: + - type: Transform + pos: -17.5,-30.5 + parent: 2 + - uid: 8680 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 2 + - uid: 8681 + components: + - type: Transform + pos: -13.5,-28.5 + parent: 2 + - uid: 8682 + components: + - type: Transform + pos: -13.5,-29.5 + parent: 2 + - uid: 8683 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 2 + - uid: 8684 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 2 + - uid: 8685 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 2 + - uid: 8686 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 2 + - uid: 8687 + components: + - type: Transform + pos: -17.5,-31.5 + parent: 2 + - uid: 8688 + components: + - type: Transform + pos: -17.5,-32.5 + parent: 2 + - uid: 8689 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 2 + - uid: 8690 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 2 + - uid: 8691 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 8692 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 2 + - uid: 8693 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 8694 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 2 + - uid: 8695 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 2 + - uid: 8696 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 2 + - uid: 8697 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 2 + - uid: 8698 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 2 + - uid: 8699 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 2 + - uid: 8700 + components: + - type: Transform + pos: -5.5,-26.5 + parent: 2 + - uid: 8701 + components: + - type: Transform + pos: -5.5,-25.5 + parent: 2 + - uid: 8702 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 2 + - uid: 8703 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 8704 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 2 + - uid: 8705 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 2 + - uid: 8706 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - uid: 8707 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 8708 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 8709 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 8710 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 2 + - uid: 8711 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 8712 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 8713 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 8714 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 8715 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 8716 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 + - uid: 8717 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - uid: 8718 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 2 + - uid: 8719 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 2 + - uid: 8720 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 2 + - uid: 8721 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - uid: 8722 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 2 + - uid: 8723 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 2 + - uid: 8724 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - uid: 8725 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - uid: 8726 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 + - uid: 8727 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 2 + - uid: 8728 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 + - uid: 8729 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 8730 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 8731 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 2 + - uid: 8732 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 2 + - uid: 8733 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 8734 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 8735 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 8736 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 8737 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 8738 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 8739 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 8740 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 8741 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 8746 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 8777 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - uid: 8802 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - uid: 8803 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - uid: 8804 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 8805 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 8806 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 2 + - uid: 8807 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 8808 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 8809 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 8810 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 + - uid: 8811 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 8812 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 8813 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 8814 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 8815 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 8816 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 8817 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 8818 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 8819 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 8820 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - uid: 8821 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 8823 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 8824 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 8825 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 8826 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 8827 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 8828 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 8829 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 8830 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 8831 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 8832 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 8833 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - uid: 8834 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 8835 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 8836 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 8837 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 8838 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 8839 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 8840 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 8841 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 2 + - uid: 8842 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 8843 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 8844 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 8845 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 8846 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 8847 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 8848 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 8849 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 8850 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 8851 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 8852 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 8853 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 8854 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 8855 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 8856 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 8857 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 8858 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 2 + - uid: 8859 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - uid: 8860 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 8861 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 8862 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 8863 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - uid: 8864 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 8865 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - uid: 8866 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 8867 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 8868 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 8869 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 8870 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 8871 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 + - uid: 8872 + components: + - type: Transform + pos: -14.5,-26.5 + parent: 2 + - uid: 8873 + components: + - type: Transform + pos: -13.5,-26.5 + parent: 2 + - uid: 8874 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 8875 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 8895 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 8898 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 + - uid: 8899 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 8900 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - uid: 8901 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 2 + - uid: 8902 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - uid: 8903 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 + - uid: 8904 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 8905 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 + - uid: 8906 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - uid: 8907 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 8908 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 + - uid: 8909 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 8910 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - uid: 8911 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 8912 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 8913 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 2 + - uid: 8914 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 2 + - uid: 8915 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 8916 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 8917 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 8918 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 8919 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 8920 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 2 + - uid: 8921 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 2 + - uid: 8925 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 8926 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 + - uid: 8927 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 + - uid: 8928 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 8929 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 2 + - uid: 8930 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - uid: 8931 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 + - uid: 8979 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 + - uid: 8980 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 + - uid: 8981 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 2 + - uid: 8982 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 8983 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - uid: 8984 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 8985 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 2 + - uid: 8986 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 2 + - uid: 8987 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 8988 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 9010 + components: + - type: Transform + pos: -19.5,-20.5 + parent: 2 + - uid: 9014 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 2 + - uid: 9015 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 2 + - uid: 9016 + components: + - type: Transform + pos: -26.5,-19.5 + parent: 2 + - uid: 9017 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 2 + - uid: 9018 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 + - uid: 9019 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 9020 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 2 + - uid: 9021 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 2 + - uid: 9022 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 2 + - uid: 9023 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 9024 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 +- proto: CableHV + entities: + - uid: 254 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 + - uid: 499 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: -24.5,-16.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: -18.5,-15.5 + parent: 2 + - uid: 872 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: -30.5,-13.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: -21.5,-19.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: -20.5,-19.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + pos: -19.5,-19.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 2 + - uid: 1063 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: -14.5,-23.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 2 + - uid: 1188 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 1215 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 2 + - uid: 1216 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 + - uid: 1278 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + pos: -25.5,-16.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 1629 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 2071 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 2 + - uid: 2095 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 + - uid: 2101 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 2103 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 +- proto: CableMV + entities: + - uid: 232 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: -21.5,-19.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: -19.5,-19.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 2 + - uid: 729 + components: + - type: Transform + pos: -20.5,-19.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 2 + - uid: 1143 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 1151 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: -13.5,-28.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: -13.5,-30.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: -13.5,-29.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: -17.5,-30.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: -15.5,-25.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: -15.5,-26.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: -15.5,-30.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: -15.5,-31.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + pos: -9.5,-25.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 2 + - uid: 1443 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: -23.5,-18.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 + - uid: 1542 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 1581 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 2 + - uid: 1598 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + pos: -14.5,-30.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 + - uid: 2191 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 2215 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 + - uid: 2229 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 2230 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 + - uid: 2237 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 2 + - uid: 8889 + components: + - type: Transform + pos: -24.5,-19.5 + parent: 2 + - uid: 8890 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 + - uid: 8891 + components: + - type: Transform + pos: -26.5,-19.5 + parent: 2 + - uid: 8892 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 2 + - uid: 8957 + components: + - type: Transform + pos: -17.5,-26.5 + parent: 2 + - uid: 8958 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 2 + - uid: 8959 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 2 + - uid: 9139 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 9140 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 9141 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 9142 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 9143 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 9144 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 9145 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 9146 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 9147 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 9148 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 9149 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 9150 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 9151 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 9152 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 9153 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 9154 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 9155 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 9156 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 9157 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 9158 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 9159 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 9160 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 9161 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 9162 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 9163 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 9164 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 9165 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 9166 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 9167 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 9168 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 +- proto: CableTerminal + entities: + - uid: 739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-15.5 + parent: 2 + - uid: 761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-14.5 + parent: 2 +- proto: CandleRedInfinite + entities: + - uid: 2043 + components: + - type: Transform + pos: -10.493384,-15.4507265 + parent: 2 +- proto: CandyBowl + entities: + - uid: 8801 + components: + - type: Transform + pos: 6.4701347,-24.525663 + parent: 2 +- proto: CaptainIDCard + entities: + - uid: 104 + components: + - type: Transform + pos: 8.48743,-0.4267528 + parent: 2 +- proto: CarbonDioxideCanister + entities: + - uid: 2003 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 +- proto: Carpet + entities: + - uid: 9069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 2 + - uid: 9070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-15.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 9061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 2 + - uid: 9062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 2 + - uid: 9063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 2 + - uid: 9064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 2 + - uid: 9065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 2 + - uid: 9066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 2 +- proto: CarpetChapel + entities: + - uid: 1033 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - uid: 8879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-19.5 + parent: 2 + - uid: 8880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-19.5 + parent: 2 + - uid: 8881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 2 +- proto: CarpetGreen + entities: + - uid: 8882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-20.5 + parent: 2 + - uid: 8883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-19.5 + parent: 2 + - uid: 8884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-20.5 + parent: 2 + - uid: 8885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-19.5 + parent: 2 +- proto: CarpetOrange + entities: + - uid: 5714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-16.5 + parent: 2 + - uid: 8937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-15.5 + parent: 2 + - uid: 8939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-14.5 + parent: 2 + - uid: 9067 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - uid: 9068 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 +- proto: CarpetPurple + entities: + - uid: 8934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-27.5 + parent: 2 + - uid: 8935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-26.5 + parent: 2 + - uid: 8936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-26.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 9071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 2 + - uid: 9072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-21.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 6853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-15.5 + parent: 2 + - uid: 9106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 2 + - uid: 9107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-17.5 + parent: 2 + - uid: 9108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-15.5 + parent: 2 + - uid: 9109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-14.5 + parent: 2 + - uid: 9118 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 9119 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 9120 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 +- proto: Chair + entities: + - uid: 123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 273 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-3.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-3.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-3.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-3.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-22.5 + parent: 2 + - uid: 9048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-22.5 + parent: 2 + - uid: 9052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-21.5 + parent: 2 + - uid: 9055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 2 + - uid: 9056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 2 + - uid: 9057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 2 + - uid: 9058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + - uid: 9076 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 9078 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 9079 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 2 + - uid: 234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 + - uid: 245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-15.5 + parent: 2 + - uid: 249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 280 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 390 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 2 +- proto: ChemMaster + entities: + - uid: 287 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 5719 + components: + - type: Transform + pos: -11.5,-27.5 + parent: 2 +- proto: ClosetChefFilled + entities: + - uid: 405 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 8997 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - uid: 9038 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 9039 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 9077 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 5645 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 2 + - uid: 8941 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 2 + - uid: 8996 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 8994 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6869 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 8993 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 8992 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 8990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8991 +- proto: ClosetWallOrange + entities: + - uid: 127 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClothingBackpackDuffelSyndicatePyjamaBundle + entities: + - uid: 6869 + components: + - type: Transform + parent: 8994 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 8991 + components: + - type: Transform + parent: 8990 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBreath + entities: + - uid: 74 + components: + - type: Transform + pos: 1.2607951,-6.687676 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: 1.5107951,-6.531426 + parent: 2 + - uid: 76 + components: + - type: Transform + pos: 1.7139201,-6.343926 + parent: 2 +- proto: ClothingNeckCloakAdmin + entities: + - uid: 6815 + components: + - type: Transform + pos: -38.526424,-40.48617 + parent: 2 +- proto: ComfyChair + entities: + - uid: 5711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 1009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-20.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 1084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-30.5 + parent: 2 +- proto: computerBodyScanner + entities: + - uid: 1235 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 2 +- proto: ComputerCargoBounty + entities: + - uid: 562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 2 +- proto: ComputerCargoShuttle + entities: + - uid: 530 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 6 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 138 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 4 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 30 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 1010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-20.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 2 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-32.5 + parent: 2 + - uid: 679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-27.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-23.5 + parent: 2 +- proto: ComputerSalvageExpedition + entities: + - uid: 525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 2 +- proto: ComputerShuttleCargo + entities: + - uid: 529 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 1019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-20.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 36 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-18.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 505 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-0.5 + parent: 2 + - uid: 684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-2.5 + parent: 2 + - uid: 685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 2 +- proto: CrateEngineeringAMEJar + entities: + - uid: 2097 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 1134 + components: + - type: Transform + pos: -26.5,-16.5 + parent: 2 +- proto: CrateFilledSpawner + entities: + - uid: 9176 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 9179 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 9180 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 +- proto: CrateFunToyBox + entities: + - uid: 9178 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 1343 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 +- proto: CrewMonitoringServer + entities: + - uid: 788 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 2 +- proto: CryogenicSleepUnit + entities: + - uid: 473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 2 + - uid: 474 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-19.5 + parent: 2 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-20.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-19.5 + parent: 2 +- proto: DefaultStationBeaconAME + entities: + - uid: 9181 + components: + - type: Transform + pos: -28.5,-16.5 + parent: 2 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 9182 + components: + - type: Transform + pos: -12.5,-30.5 + parent: 2 +- proto: DefaultStationBeaconArmory + entities: + - uid: 9177 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 9183 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 9184 + components: + - type: Transform + pos: -17.5,-30.5 + parent: 2 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 9185 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 +- proto: DefaultStationBeaconBar + entities: + - uid: 9186 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 9187 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 2 +- proto: DefaultStationBeaconBridge + entities: + - uid: 9188 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 +- proto: DefaultStationBeaconBrig + entities: + - uid: 9189 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 9192 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 9193 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 9194 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 9190 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 +- proto: DefaultStationBeaconChapel + entities: + - uid: 9195 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 9196 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 9191 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 2 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 9197 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 9198 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 2 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 9199 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 9200 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 9202 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 9201 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 9203 + components: + - type: Transform + pos: -26.5,-19.5 + parent: 2 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 9204 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 9205 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 9136 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 9206 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 2 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 9207 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 9208 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 2 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 9209 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 2 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 9210 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 2 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 9211 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 9217 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 9212 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 9213 + components: + - type: Transform + pos: -17.5,-26.5 + parent: 2 +- proto: DefaultStationBeaconRND + entities: + - uid: 9215 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 9216 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 2 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 9218 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 9214 + components: + - type: Transform + pos: -20.5,-23.5 + parent: 2 +- proto: DefaultStationBeaconTEG + entities: + - uid: 9219 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 2 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 9220 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 +- proto: DefaultStationBeaconTheater + entities: + - uid: 9221 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 9222 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconVault + entities: + - uid: 9223 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 9224 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 +- proto: DiseaseDiagnoser + entities: + - uid: 271 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 2 +- proto: DogBed + entities: + - uid: 44 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 55 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 725 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 2 +- proto: FaxMachineBase + entities: + - uid: 9037 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 2 +- proto: FaxMachineCaptain + entities: + - uid: 9035 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 +- proto: FirelockGlass + entities: + - uid: 2190 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 +- proto: FloorDrain + entities: + - uid: 400 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 1348 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorWaterEntity + entities: + - uid: 624 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 +- proto: FloraTree + entities: + - uid: 5646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.42206,-4.5236998 + parent: 2 + - uid: 5648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.593935,-5.30495 + parent: 2 + - uid: 5650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.54706,-5.6487017 + parent: 2 + - uid: 5693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.29706,-4.586201 + parent: 2 + - uid: 5694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.773565,-2.6598277 + parent: 2 + - uid: 5696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.429815,-0.30045247 + parent: 2 +- proto: FloraTreeLarge + entities: + - uid: 5647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.07831,-3.5549512 + parent: 2 + - uid: 5649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.281435,-3.7268252 + parent: 2 +- proto: FolderSpawner + entities: + - uid: 262 + components: + - type: Transform + pos: 1.4013536,-18.39383 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: 1.5732286,-18.190704 + parent: 2 +- proto: GasFilter + entities: + - uid: 834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-10.5 + parent: 2 + - uid: 840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-10.5 + parent: 2 +- proto: GasMinerNitrogen + entities: + - uid: 858 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 +- proto: GasMinerOxygen + entities: + - uid: 820 + components: + - type: Transform + pos: -22.5,-7.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-11.5 + parent: 2 +- proto: GasMixerFlipped + entities: + - uid: 850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasOutletInjector + entities: + - uid: 751 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 860 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 921 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-32.5 + parent: 2 + - uid: 861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-7.5 + parent: 2 + - uid: 862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-7.5 + parent: 2 + - uid: 863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 2 + - uid: 923 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - uid: 924 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - uid: 1785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-24.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 +- proto: GasPipeBend + entities: + - uid: 799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-12.5 + parent: 2 + - uid: 816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-11.5 + parent: 2 + - uid: 818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-7.5 + parent: 2 + - uid: 821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 2 + - uid: 846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-7.5 + parent: 2 + - uid: 899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 2 + - uid: 904 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-10.5 + parent: 2 + - uid: 914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-12.5 + parent: 2 + - uid: 916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-13.5 + parent: 2 + - uid: 929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-5.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1050 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-16.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1971 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2232 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8978 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeFourway + entities: + - uid: 1510 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1552 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1569 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1644 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1650 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1651 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1677 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1719 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1720 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1753 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1787 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1794 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1802 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1823 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1860 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1918 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1934 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1950 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2186 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2238 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5016 + components: + - type: Transform + pos: -15.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorDistribution + entities: + - uid: 748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorWaste + entities: + - uid: 747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-31.5 + parent: 2 + - uid: 768 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-11.5 + parent: 2 + - uid: 800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-11.5 + parent: 2 + - uid: 803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 812 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 814 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 2 + - uid: 830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 2 + - uid: 831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-10.5 + parent: 2 + - uid: 832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-9.5 + parent: 2 + - uid: 835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-11.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 + - uid: 843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-9.5 + parent: 2 + - uid: 844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-9.5 + parent: 2 + - uid: 845 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-10.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-10.5 + parent: 2 + - uid: 892 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 895 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 + - uid: 898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 2 + - uid: 900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-11.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: -30.5,-11.5 + parent: 2 + - uid: 961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1055 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1056 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1353 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1368 + components: + - type: Transform + pos: -15.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1562 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1563 + components: + - type: Transform + pos: -16.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1564 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1584 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1585 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1608 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1609 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1611 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1612 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1613 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1614 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1615 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1616 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1617 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1618 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1619 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1620 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1621 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1622 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1623 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1647 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1673 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1674 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1757 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1758 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1766 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1767 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1768 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1769 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-24.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1798 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1799 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1800 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1817 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1870 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1881 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1882 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1890 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1930 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1941 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1942 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1943 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1960 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1975 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2005 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2006 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2014 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2015 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2016 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2034 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2035 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2036 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2037 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2038 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2064 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2080 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2081 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-11.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 854 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1690 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1704 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1735 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1746 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1754 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1755 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1773 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1792 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1826 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1928 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1940 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1962 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1964 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2018 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2061 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2160 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 712 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 2 + - uid: 943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 2 + - uid: 9003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 2 + - uid: 9009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPressurePump + entities: + - uid: 714 + components: + - type: Transform + pos: -17.5,-30.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 2 + - uid: 912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-13.5 + parent: 2 + - uid: 5724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasThermoMachineFreezer + entities: + - uid: 852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasThermoMachineHeater + entities: + - uid: 853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 965 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1355 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1631 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1638 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1789 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1810 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1854 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1953 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1957 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1993 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2002 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2012 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1155 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1607 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1632 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1675 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1676 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1697 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1781 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-24.5 + parent: 2 + - uid: 1786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1903 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1994 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2013 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2027 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2195 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8878 + components: + - type: Transform + pos: -19.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasVolumePump + entities: + - uid: 802 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-10.5 + parent: 2 + - uid: 896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-10.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: -30.5,-10.5 + parent: 2 + - uid: 935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-10.5 + parent: 2 +- proto: GravityGeneratorMini + entities: + - uid: 8887 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 2 +- proto: Grille + entities: + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 2 + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 2 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 2 + - uid: 33 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 43 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 62 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 2 + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-20.5 + parent: 2 + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-22.5 + parent: 2 + - uid: 282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-22.5 + parent: 2 + - uid: 285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-23.5 + parent: 2 + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-20.5 + parent: 2 + - uid: 379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 2 + - uid: 524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 2 + - uid: 544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 + - uid: 554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 2 + - uid: 572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-7.5 + parent: 2 + - uid: 581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-21.5 + parent: 2 + - uid: 653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 2 + - uid: 700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-10.5 + parent: 2 + - uid: 746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-10.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 2 + - uid: 939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 2 + - uid: 940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 2 + - uid: 953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-20.5 + parent: 2 + - uid: 956 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-28.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-29.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-24.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-29.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-18.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 2 + - uid: 1597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-17.5 + parent: 2 + - uid: 1642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-19.5 + parent: 2 + - uid: 1643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-19.5 + parent: 2 + - uid: 2045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-12.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-7.5 + parent: 2 + - uid: 2125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-18.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 2 + - uid: 5022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-1.5 + parent: 2 + - uid: 5728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 2 + - uid: 5730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-1.5 + parent: 2 + - uid: 6870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-24.5 + parent: 2 + - uid: 6871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 2 + - uid: 8655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 2 + - uid: 8670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 2 + - uid: 8747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-7.5 + parent: 2 + - uid: 9000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-14.5 + parent: 2 + - uid: 9004 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-16.5 + parent: 2 + - uid: 9025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-20.5 + parent: 2 +- proto: HeatExchanger + entities: + - uid: 903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-9.5 + parent: 2 + - uid: 931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-6.5 + parent: 2 + - uid: 933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-7.5 + parent: 2 + - uid: 934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-8.5 + parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 190 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 +- proto: HighSecCaptainLocked + entities: + - uid: 584 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 +- proto: HighSecCommandLocked + entities: + - uid: 10 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 163 + components: + - type: Transform + pos: 11.428427,-6.6097846 + parent: 2 +- proto: hydroponicsTray + entities: + - uid: 164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 + - uid: 218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-6.5 + parent: 2 + - uid: 380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 2 + - uid: 391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 2 +- proto: IngotGold + entities: + - uid: 39 + components: + - type: Transform + pos: 2.4974322,-0.38751984 + parent: 2 +- proto: JanitorialTrolley + entities: + - uid: 1349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 386 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 418 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 2 + - uid: 9173 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 401 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 8753 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 + - uid: 8754 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 +- proto: LockerBoozeFilled + entities: + - uid: 443 + components: + - type: Transform + pos: -9.5,-28.5 + parent: 2 +- proto: LockerCaptainFilledHardsuit + entities: + - uid: 37 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 +- proto: LockerChemistryFilled + entities: + - uid: 289 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 +- proto: LockerChiefEngineerFilledHardsuit + entities: + - uid: 962 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 2 +- proto: LockerChiefMedicalOfficerFilledHardsuit + entities: + - uid: 344 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 2 +- proto: LockerDetective + entities: + - uid: 21 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 9174 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 2 +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 754 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: -19.5,-20.5 + parent: 2 +- proto: LockerFreezerVaultFilled + entities: + - uid: 40 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 7 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 +- proto: LockerHeadOfSecurityFilledHardsuit + entities: + - uid: 92 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 565 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 +- proto: LockerResearchDirectorFilledHardsuit + entities: + - uid: 8781 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 2 +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 504 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 +- proto: LockerScienceFilled + entities: + - uid: 730 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 2 + - uid: 1599 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 2 +- proto: LockerSecurityFilled + entities: + - uid: 199 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 +- proto: LockerWallMedicalDoctorFilled + entities: + - uid: 268 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 +- proto: LockerWallMedicalFilled + entities: + - uid: 314 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 + - uid: 353 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 +- proto: LockerWardenFilledHardsuit + entities: + - uid: 187 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 +- proto: MachineAnomalyGenerator + entities: + - uid: 1092 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 1600 + components: + - type: Transform + pos: -12.5,-29.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 1106 + components: + - type: Transform + pos: -13.5,-29.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 1073 + components: + - type: Transform + pos: -17.5,-32.5 + parent: 2 +- proto: MedicalBed + entities: + - uid: 269 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 317 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 91 + components: + - type: Transform + pos: 11.411104,-22.578243 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 11.676729,-22.390743 + parent: 2 + - uid: 9054 + components: + - type: Transform + pos: 4.5438895,-20.395294 + parent: 2 +- proto: MopBucketFull + entities: + - uid: 1346 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 2 +- proto: MopItem + entities: + - uid: 1347 + components: + - type: Transform + pos: -11.567344,-12.527453 + parent: 2 +- proto: Morgue + entities: + - uid: 299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-18.5 + parent: 2 + - uid: 310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-18.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 1332 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 +- proto: NuclearBomb + entities: + - uid: 78 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 +- proto: OperatingTable + entities: + - uid: 724 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 +- proto: OreProcessor + entities: + - uid: 503 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 1170 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 2069 + components: + - type: Transform + pos: -24.5,-17.5 + parent: 2 +- proto: Paper + entities: + - uid: 260 + components: + - type: Transform + pos: 1.4013536,-18.534454 + parent: 2 + - uid: 261 + components: + - type: Transform + pos: 1.5263536,-18.440704 + parent: 2 +- proto: PaperBin10 + entities: + - uid: 9036 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 +- proto: PaperOffice + entities: + - uid: 9175 + components: + - type: Transform + pos: 5.522519,-0.44009638 + parent: 2 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: >- + sindicat stoel ur stashun + + + so wee maed thsi 4 u + + + enjnoy :3 + editingDisabled: True +- proto: Pen + entities: + - uid: 9083 + components: + - type: Transform + pos: -16.479738,-4.3913875 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 1030 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 787 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 2 + - uid: 886 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - uid: 926 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - uid: 927 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 + - uid: 932 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 2 +- proto: PlasmaWindoorSecureArmoryLocked + entities: + - uid: 985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-14.5 + parent: 2 + - uid: 986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-14.5 + parent: 2 +- proto: PlasmaWindoorSecureScienceLocked + entities: + - uid: 701 + components: + - type: Transform + pos: -17.5,-31.5 + parent: 2 + - uid: 703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-31.5 + parent: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 2 + - uid: 537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + - uid: 545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 +- proto: PlushieLizard + entities: + - uid: 2041 + components: + - type: Transform + pos: -9.462134,-15.4976015 + parent: 2 +- proto: PlushieLizardMirrored + entities: + - uid: 2040 + components: + - type: Transform + pos: -11.493384,-15.4976015 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 9008 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 +- proto: PosterContrabandWehWatches + entities: + - uid: 9110 + components: + - type: Transform + pos: -39.5,-39.5 + parent: 2 + - uid: 9111 + components: + - type: Transform + pos: -39.5,-40.5 + parent: 2 + - uid: 9112 + components: + - type: Transform + pos: -39.5,-41.5 + parent: 2 + - uid: 9113 + components: + - type: Transform + pos: -38.5,-41.5 + parent: 2 + - uid: 9114 + components: + - type: Transform + pos: -37.5,-41.5 + parent: 2 + - uid: 9115 + components: + - type: Transform + pos: -37.5,-40.5 + parent: 2 + - uid: 9116 + components: + - type: Transform + pos: -37.5,-39.5 + parent: 2 + - uid: 9117 + components: + - type: Transform + pos: -38.5,-39.5 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 2228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-25.5 + parent: 2 +- proto: PoweredLEDLightPostSmall + entities: + - uid: 2179 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 2180 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - uid: 2182 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-5.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 2102 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 2 + - uid: 2119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-12.5 + parent: 2 + - uid: 2120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-11.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 2 + - uid: 2136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-24.5 + parent: 2 + - uid: 2137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-18.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-13.5 + parent: 2 + - uid: 2144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-24.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-28.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 2 + - uid: 2149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-24.5 + parent: 2 + - uid: 2151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-27.5 + parent: 2 + - uid: 2171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-22.5 + parent: 2 + - uid: 2172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 + - uid: 2174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-15.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - uid: 5695 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 + - uid: 5697 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 2 + - uid: 5709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-20.5 + parent: 2 + - uid: 8893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-14.5 + parent: 2 + - uid: 8896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-3.5 + parent: 2 + - uid: 8897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-3.5 + parent: 2 + - uid: 8922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 2 + - uid: 8923 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 2 + - uid: 8924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-8.5 + parent: 2 + - uid: 9104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-24.5 + parent: 2 + - uid: 9121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-9.5 + parent: 2 + - uid: 9122 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 2127 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-26.5 + parent: 2 + - uid: 2129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-23.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-26.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-30.5 + parent: 2 + - uid: 2134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-28.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 2 + - uid: 2140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-20.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 2 + - uid: 2142 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-27.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-28.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-24.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 2 + - uid: 2153 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 2154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-22.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-25.5 + parent: 2 + - uid: 2156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-21.5 + parent: 2 + - uid: 2157 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 2 + - uid: 2158 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 2159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-18.5 + parent: 2 + - uid: 2161 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 2166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-12.5 + parent: 2 + - uid: 2167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + - uid: 2168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-12.5 + parent: 2 + - uid: 2169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 2 + - uid: 2170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 2 + - uid: 2176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 2 + - uid: 2177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 2 + - uid: 2178 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 735 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 2 +- proto: Rack + entities: + - uid: 59 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 +- proto: Railing + entities: + - uid: 637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-4.5 + parent: 2 + - uid: 638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 2 + - uid: 644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 2 + - uid: 645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-3.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-17.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-17.5 + parent: 2 + - uid: 8998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-20.5 + parent: 2 + - uid: 9029 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - uid: 9030 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 9032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-16.5 + parent: 2 + - uid: 9074 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - uid: 9095 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 9096 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 9097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 2 + - uid: 9098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - uid: 9099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 9103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 2 + - uid: 9105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-8.5 + parent: 2 +- proto: RailingCorner + entities: + - uid: 9040 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 2 + - uid: 641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-2.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-2.5 + parent: 2 + - uid: 8999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-3.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 1078 + components: + - type: Transform + pos: -17.5,-32.5 + parent: 2 +- proto: RandomSoap + entities: + - uid: 1350 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 +- proto: RCD + entities: + - uid: 798 + components: + - type: Transform + pos: -20.494062,-16.471169 + parent: 2 +- proto: Recycler + entities: + - uid: 697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 2 + - uid: 942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 5698 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 2 +- proto: ReinforcedWindow + entities: + - uid: 24 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 56 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 80 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 2 + - uid: 132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-22.5 + parent: 2 + - uid: 225 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-23.5 + parent: 2 + - uid: 291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-22.5 + parent: 2 + - uid: 387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 2 + - uid: 539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 + - uid: 568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 + - uid: 579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 2 + - uid: 583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 2 + - uid: 680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 2 + - uid: 977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-1.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-20.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-29.5 + parent: 2 + - uid: 1589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-29.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-20.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-12.5 + parent: 2 + - uid: 2220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-18.5 + parent: 2 + - uid: 2221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-1.5 + parent: 2 + - uid: 5640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-1.5 + parent: 2 + - uid: 5642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-18.5 + parent: 2 + - uid: 5701 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 2 + - uid: 8966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 2 + - uid: 9026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-20.5 + parent: 2 + - uid: 9059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 1107 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 2 +- proto: RevolverCapGun + entities: + - uid: 175 + components: + - type: Transform + pos: 14.482968,-14.419073 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: 14.482968,-14.372198 + parent: 2 +- proto: SalvageMagnet + entities: + - uid: 518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 2 +- proto: Screen + entities: + - uid: 1044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 2 + - uid: 9041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 2 + - uid: 9042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 2 + - uid: 9043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 2 + - uid: 9044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 2 + - uid: 9045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 2 + - uid: 9046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-21.5 + parent: 2 + - uid: 9047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-21.5 + parent: 2 + - uid: 9049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-22.5 + parent: 2 + - uid: 9050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-22.5 + parent: 2 + - uid: 9051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-10.5 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 174 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 216 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 +- proto: SheetGlass + entities: + - uid: 9124 + components: + - type: Transform + pos: -18.535145,-18.479187 + parent: 2 + - uid: 9128 + components: + - type: Transform + pos: -12.52456,-27.507246 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 9130 + components: + - type: Transform + pos: -11.52456,-30.507246 + parent: 2 +- proto: SheetPlasteel + entities: + - uid: 9126 + components: + - type: Transform + pos: -18.535145,-18.526062 + parent: 2 +- proto: SheetPlastic + entities: + - uid: 9129 + components: + - type: Transform + pos: -12.55581,-27.491621 + parent: 2 +- proto: SheetPlastic10 + entities: + - uid: 9125 + components: + - type: Transform + pos: -18.566395,-18.510437 + parent: 2 +- proto: SheetSteel + entities: + - uid: 3754 + components: + - type: Transform + pos: -18.51952,-18.494812 + parent: 2 + - uid: 9127 + components: + - type: Transform + pos: -12.540185,-27.507246 + parent: 2 +- proto: SignalSwitchDirectional + entities: + - uid: 8943 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9088: + - On: Open + - Off: Close + 9087: + - On: Open + - Off: Close + - uid: 9101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-31.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 740: + - On: Open + - Off: Close + - uid: 9134 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 698: + - On: Open + - Off: Close +- proto: SignAnomaly + entities: + - uid: 8975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-29.5 + parent: 2 +- proto: SignAnomaly2 + entities: + - uid: 5703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-29.5 + parent: 2 +- proto: SignArmory + entities: + - uid: 8940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 2 +- proto: SignAtmos + entities: + - uid: 801 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 +- proto: SignBar + entities: + - uid: 9100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 8973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 2 +- proto: SignCargo + entities: + - uid: 8944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 2 +- proto: SignCargoDock + entities: + - uid: 9090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 2 +- proto: SignChapel + entities: + - uid: 8945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 2 +- proto: SignChem + entities: + - uid: 8946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-23.5 + parent: 2 +- proto: SignCryo + entities: + - uid: 8947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 2 +- proto: SignDoors + entities: + - uid: 8948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-7.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 9027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-20.5 + parent: 2 +- proto: SignExamroom + entities: + - uid: 8950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-20.5 + parent: 2 +- proto: SignHead + entities: + - uid: 8951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 2 + - uid: 8952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 + - uid: 8953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + - uid: 8954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 2 + - uid: 8955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-16.5 + parent: 2 + - uid: 8960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-27.5 + parent: 2 +- proto: SignHydro1 + entities: + - uid: 8961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-25.5 + parent: 2 +- proto: SignJanitor + entities: + - uid: 8962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 2 +- proto: SignKitchen + entities: + - uid: 8963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-25.5 + parent: 2 +- proto: SignLawyer + entities: + - uid: 2093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 8964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-22.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 8965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-20.5 + parent: 2 +- proto: SignPrison + entities: + - uid: 8967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-7.5 + parent: 2 +- proto: SignRND + entities: + - uid: 8968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-25.5 + parent: 2 +- proto: SignRobo + entities: + - uid: 8969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-22.5 + parent: 2 +- proto: SignSalvage + entities: + - uid: 8970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 2 +- proto: SignScience + entities: + - uid: 8971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-25.5 + parent: 2 +- proto: SignServer + entities: + - uid: 8972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-24.5 + parent: 2 +- proto: SignShipDock + entities: + - uid: 3564 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 8876 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 2 +- proto: SignSpace + entities: + - uid: 9171 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 9172 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 +- proto: SignVault + entities: + - uid: 8942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 2 +- proto: SignVirology + entities: + - uid: 8974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-25.5 + parent: 2 +- proto: Sink + entities: + - uid: 203 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-27.5 + parent: 2 +- proto: SMESAdvanced + entities: + - uid: 726 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 +- proto: SodaDispenser + entities: + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-28.5 + parent: 2 +- proto: SpaceHeaterAnchored + entities: + - uid: 9028 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 2 +- proto: SpawnMobCorgi + entities: + - uid: 27 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 +- proto: SpawnMobCrab + entities: + - uid: 8748 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 +- proto: SpawnMobFoxRenault + entities: + - uid: 48 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 +- proto: SpawnMobParrot + entities: + - uid: 8750 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - uid: 8751 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 +- proto: SpawnPointAtmos + entities: + - uid: 8755 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 +- proto: SpawnPointBartender + entities: + - uid: 8752 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 8765 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 8756 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 2 +- proto: SpawnPointCaptain + entities: + - uid: 8757 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 8758 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 +- proto: SpawnPointChaplain + entities: + - uid: 8759 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 +- proto: SpawnPointChef + entities: + - uid: 8760 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 2 +- proto: SpawnPointChemist + entities: + - uid: 8761 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 +- proto: SpawnPointChiefEngineer + entities: + - uid: 8762 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 8763 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 2 +- proto: SpawnPointClown + entities: + - uid: 8764 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 +- proto: SpawnPointDetective + entities: + - uid: 8766 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 8767 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 8768 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 8769 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 +- proto: SpawnPointLawyer + entities: + - uid: 8770 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 +- proto: SpawnPointLibrarian + entities: + - uid: 8771 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 2 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 8773 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 8772 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 +- proto: SpawnPointMime + entities: + - uid: 8774 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 2 +- proto: SpawnPointMusician + entities: + - uid: 8775 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 8776 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 +- proto: SpawnPointPassenger + entities: + - uid: 9170 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 8778 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 8779 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 8780 + components: + - type: Transform + pos: -17.5,-26.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 9169 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 8783 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 8784 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 8785 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 +- proto: SpawnPointServiceWorker + entities: + - uid: 8786 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 +- proto: SpawnPointStationEngineer + entities: + - uid: 8787 + components: + - type: Transform + pos: -19.5,-19.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 8788 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 8789 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 1345 + components: + - type: Transform + pos: -10.503614,-12.432831 + parent: 2 +- proto: Stairs + entities: + - uid: 618 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 9031 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 + - uid: 9080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 2 + - uid: 9081 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 9082 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 +- proto: StatueVenusBlue + entities: + - uid: 655 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 +- proto: StatueVenusRed + entities: + - uid: 654 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 445 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 2 + - uid: 446 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 2 + - uid: 8744 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 8745 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 9085 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 357 + components: + - type: MetaData + name: Medical Substation + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 496 + components: + - type: MetaData + name: Cargo Substation + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 758 + components: + - type: MetaData + name: Science Substation + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 1137 + components: + - type: MetaData + name: Service Substation + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 1269 + components: + - type: MetaData + name: Engineering Substation + - type: Transform + pos: -18.5,-16.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 67 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 69 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 +- proto: SuitStorageSec + entities: + - uid: 152 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 711 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 +- proto: Table + entities: + - uid: 5 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + - uid: 197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-13.5 + parent: 2 + - uid: 283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-23.5 + parent: 2 + - uid: 284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-24.5 + parent: 2 + - uid: 307 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - uid: 346 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 2 + - uid: 416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-28.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 2 + - uid: 550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + - uid: 567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: -13.5,-25.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - uid: 9001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-6.5 + parent: 2 + - uid: 9033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-5.5 + parent: 2 + - uid: 9034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 2 + - uid: 9053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-20.5 + parent: 2 +- proto: TableCounterMetal + entities: + - uid: 5705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 2 + - uid: 5706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 2 + - uid: 5707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-25.5 + parent: 2 + - uid: 5708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 2 + - uid: 8886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 2 + - uid: 9094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-25.5 + parent: 2 +- proto: TableFancyWhite + entities: + - uid: 5710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-16.5 + parent: 2 +- proto: TableWood + entities: + - uid: 109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 + - uid: 221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 2 + - uid: 246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 2 + - uid: 248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 2 + - uid: 255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + - uid: 9060 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 2 +- proto: TegCenter + entities: + - uid: 938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-11.5 + parent: 2 +- proto: TegCirculator + entities: + - uid: 897 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - uid: 937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-11.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServerFilled + entities: + - uid: 1089 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 2 +- proto: TintedWindow + entities: + - uid: 460 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 2 + - uid: 475 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 2 + - uid: 757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-21.5 + parent: 2 + - uid: 870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-17.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-24.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 2 + - uid: 5716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-16.5 + parent: 2 + - uid: 9002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-14.5 + parent: 2 +- proto: ToiletGoldenDirtyWater + entities: + - uid: 620 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - type: DisposalUnit + soundFlush: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Ambience/ambicha3.ogg +- proto: TwoWayLever + entities: + - uid: 9086 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 521: + - Left: Forward + - Right: Reverse + - Middle: Off + 505: + - Left: Forward + - Right: Reverse + - Middle: Off + 523: + - Left: Forward + - Right: Reverse + - Middle: Off + 531: + - Left: Forward + - Right: Reverse + - Middle: Off + 527: + - Left: Forward + - Right: Reverse + - Middle: Off + 532: + - Left: Forward + - Right: Reverse + - Middle: Off + 533: + - Left: Forward + - Right: Reverse + - Middle: Off + 534: + - Left: Forward + - Right: Reverse + - Middle: Off + 535: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 9133 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 697: + - Left: Forward + - Right: Reverse + - Middle: Off + 684: + - Left: Forward + - Right: Reverse + - Middle: Off + 685: + - Left: Forward + - Right: Reverse + - Middle: Off + 676: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UniformPrinter + entities: + - uid: 25 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 +- proto: Vaccinator + entities: + - uid: 326 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 427 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 90 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 461 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 6855 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 +- proto: VendingMachineColaRed + entities: + - uid: 5717 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 2 +- proto: VendingMachineCuraDrobe + entities: + - uid: 312 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 415 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 805 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 1276 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 +- proto: VendingMachineLawDrobe + entities: + - uid: 95 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 345 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 319 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 1756 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 +- proto: VendingMachinePride + entities: + - uid: 9084 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 +- proto: VendingMachineRobotics + entities: + - uid: 9123 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 506 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 192 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 393 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 2 +- proto: VendingMachineSnack + entities: + - uid: 992 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 +- proto: VendingMachineSustenance + entities: + - uid: 165 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 745 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: -18.5,-20.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 509 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 +- proto: VendingMachineTheater + entities: + - uid: 1112 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 2 +- proto: VendingMachineVendomat + entities: + - uid: 2077 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 2 +- proto: VendingMachineWinter + entities: + - uid: 6854 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 780 + components: + - type: Transform + pos: -20.5,-18.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 2 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 1041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-39.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-39.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-39.5 + parent: 2 + - uid: 2143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-40.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-41.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-41.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-41.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-40.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 8 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 9 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 11 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 16 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 17 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 26 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 28 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 31 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 38 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 41 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 53 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 2 + - uid: 60 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 61 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - uid: 63 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 64 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 68 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 70 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 73 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-13.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 + - uid: 158 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 161 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 2 + - uid: 172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - uid: 179 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 + - uid: 183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-16.5 + parent: 2 + - uid: 184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-16.5 + parent: 2 + - uid: 185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-16.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-11.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-16.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-18.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 2 + - uid: 275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-22.5 + parent: 2 + - uid: 278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 2 + - uid: 286 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - uid: 288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 2 + - uid: 292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-26.5 + parent: 2 + - uid: 293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-26.5 + parent: 2 + - uid: 294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 2 + - uid: 295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-26.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - uid: 306 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 2 + - uid: 308 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 + - uid: 315 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 2 + - uid: 428 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 2 + - uid: 441 + components: + - type: Transform + pos: -10.5,-27.5 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 2 + - uid: 453 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 2 + - uid: 457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-8.5 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-31.5 + parent: 2 + - uid: 510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 2 + - uid: 511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 2 + - uid: 512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 2 + - uid: 516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 2 + - uid: 540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + - uid: 541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 + - uid: 542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - uid: 552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 2 + - uid: 564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 2 + - uid: 570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: -14.5,-21.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 2 + - uid: 589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 2 + - uid: 590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 2 + - uid: 591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,0.5 + parent: 2 + - uid: 592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,0.5 + parent: 2 + - uid: 593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,0.5 + parent: 2 + - uid: 594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,0.5 + parent: 2 + - uid: 595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,0.5 + parent: 2 + - uid: 596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,0.5 + parent: 2 + - uid: 597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,0.5 + parent: 2 + - uid: 598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,0.5 + parent: 2 + - uid: 599 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,0.5 + parent: 2 + - uid: 600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,0.5 + parent: 2 + - uid: 601 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-9.5 + parent: 2 + - uid: 602 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-9.5 + parent: 2 + - uid: 603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-9.5 + parent: 2 + - uid: 604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-9.5 + parent: 2 + - uid: 605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-9.5 + parent: 2 + - uid: 606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-9.5 + parent: 2 + - uid: 607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-9.5 + parent: 2 + - uid: 608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-4.5 + parent: 2 + - uid: 609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-8.5 + parent: 2 + - uid: 610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-7.5 + parent: 2 + - uid: 611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-6.5 + parent: 2 + - uid: 612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-5.5 + parent: 2 + - uid: 613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-3.5 + parent: 2 + - uid: 614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-2.5 + parent: 2 + - uid: 615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-1.5 + parent: 2 + - uid: 616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-0.5 + parent: 2 + - uid: 617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,0.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-31.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: -18.5,-31.5 + parent: 2 + - uid: 706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-32.5 + parent: 2 + - uid: 717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 2 + - uid: 721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-33.5 + parent: 2 + - uid: 722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-33.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: -21.5,-25.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: -13.5,-28.5 + parent: 2 + - uid: 738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-19.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 + - uid: 744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-9.5 + parent: 2 + - uid: 749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-12.5 + parent: 2 + - uid: 750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-20.5 + parent: 2 + - uid: 752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-9.5 + parent: 2 + - uid: 753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-7.5 + parent: 2 + - uid: 755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-10.5 + parent: 2 + - uid: 756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-7.5 + parent: 2 + - uid: 759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-20.5 + parent: 2 + - uid: 760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 2 + - uid: 764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-14.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 2 + - uid: 766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-15.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 2 + - uid: 775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-7.5 + parent: 2 + - uid: 776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-7.5 + parent: 2 + - uid: 778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-21.5 + parent: 2 + - uid: 779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-4.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 2 + - uid: 785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-8.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - uid: 789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-7.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 2 + - uid: 791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-13.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 2 + - uid: 795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-13.5 + parent: 2 + - uid: 796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-4.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 2 + - uid: 806 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 2 + - uid: 826 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-8.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 2 + - uid: 848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 2 + - uid: 855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 + - uid: 856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-13.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 2 + - uid: 865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-16.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 2 + - uid: 867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-20.5 + parent: 2 + - uid: 868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-17.5 + parent: 2 + - uid: 869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-17.5 + parent: 2 + - uid: 873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 + - uid: 877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-4.5 + parent: 2 + - uid: 878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-4.5 + parent: 2 + - uid: 879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 2 + - uid: 880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-4.5 + parent: 2 + - uid: 881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 2 + - uid: 882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-4.5 + parent: 2 + - uid: 883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-4.5 + parent: 2 + - uid: 902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-11.5 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 2 + - uid: 907 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 908 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-5.5 + parent: 2 + - uid: 911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-6.5 + parent: 2 + - uid: 913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-4.5 + parent: 2 + - uid: 915 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-4.5 + parent: 2 + - uid: 920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-13.5 + parent: 2 + - uid: 922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 2 + - uid: 925 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-14.5 + parent: 2 + - uid: 947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-14.5 + parent: 2 + - uid: 948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-14.5 + parent: 2 + - uid: 949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-14.5 + parent: 2 + - uid: 950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-14.5 + parent: 2 + - uid: 951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-14.5 + parent: 2 + - uid: 952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-18.5 + parent: 2 + - uid: 970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 2 + - uid: 976 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: -25.5,-20.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-3.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-23.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-21.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-21.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-24.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: -24.5,-21.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: -16.5,-28.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + pos: -17.5,-28.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + pos: -14.5,-27.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: -16.5,-27.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-30.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: -10.5,-30.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: -10.5,-31.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: -20.5,-25.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: -14.5,-25.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-29.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: -19.5,-25.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: -19.5,-27.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: -18.5,-28.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: -17.5,-25.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-22.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 2 + - uid: 1163 + components: + - type: Transform + pos: -19.5,-26.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + pos: -19.5,-28.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 2 + - uid: 1166 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-31.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: -14.5,-33.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: -14.5,-17.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-32.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-14.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-13.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-15.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-16.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: -18.5,-27.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-19.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 2 + - uid: 1811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 2 + - uid: 2056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-17.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 2 + - uid: 2088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 2 + - uid: 2218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-1.5 + parent: 2 + - uid: 5644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 + - uid: 5713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 2 + - uid: 8675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-0.5 + parent: 2 + - uid: 8938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-14.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 2 + - uid: 85 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 87 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-10.5 + parent: 2 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 2 + - uid: 229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 + - uid: 231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 2 + - uid: 235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 2 + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-16.5 + parent: 2 + - uid: 239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 2 + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-16.5 + parent: 2 + - uid: 241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 2 + - uid: 242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 + - uid: 250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-19.5 + parent: 2 + - uid: 251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 2 + - uid: 252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-19.5 + parent: 2 + - uid: 253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 2 + - uid: 256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-19.5 + parent: 2 + - uid: 257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 2 + - uid: 259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 2 + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-19.5 + parent: 2 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 301 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 2 + - uid: 355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-21.5 + parent: 2 + - uid: 356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-20.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 + - uid: 376 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 2 + - uid: 381 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 2 + - uid: 385 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - uid: 388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-29.5 + parent: 2 + - uid: 389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-28.5 + parent: 2 + - uid: 394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 2 + - uid: 395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 + - uid: 409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-26.5 + parent: 2 + - uid: 410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-25.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 2 + - uid: 420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-28.5 + parent: 2 + - uid: 421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-29.5 + parent: 2 + - uid: 422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-29.5 + parent: 2 + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-29.5 + parent: 2 + - uid: 424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-29.5 + parent: 2 + - uid: 430 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 2 + - uid: 432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-21.5 + parent: 2 + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-29.5 + parent: 2 + - uid: 435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-29.5 + parent: 2 + - uid: 437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-29.5 + parent: 2 + - uid: 439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-29.5 + parent: 2 + - uid: 450 + components: + - type: Transform + pos: -8.5,-25.5 + parent: 2 + - uid: 451 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 2 + - uid: 452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-20.5 + parent: 2 + - uid: 455 + components: + - type: Transform + pos: -9.5,-29.5 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: -8.5,-29.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-21.5 + parent: 2 + - uid: 476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 2 + - uid: 484 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 + - uid: 487 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - uid: 488 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - uid: 489 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 + - uid: 508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 2 + - uid: 555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-3.5 + parent: 2 + - uid: 556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-2.5 + parent: 2 + - uid: 558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 2 + - uid: 575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-5.5 + parent: 2 + - uid: 576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-4.5 + parent: 2 + - uid: 577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 2 + - uid: 578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-10.5 + parent: 2 + - uid: 586 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-10.5 + parent: 2 + - uid: 672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-10.5 + parent: 2 + - uid: 683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-7.5 + parent: 2 + - uid: 690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 2 + - uid: 696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-3.5 + parent: 2 + - uid: 718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-7.5 + parent: 2 + - uid: 975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-17.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-17.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-19.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-13.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-10.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-3.5 + parent: 2 + - uid: 2105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-18.5 + parent: 2 + - uid: 8822 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 9137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 2 +- proto: WardrobeBotanist + entities: + - uid: 392 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 2 +- proto: WarningAir + entities: + - uid: 652 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 2 +- proto: WarningN2 + entities: + - uid: 1261 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 +- proto: WarningO2 + entities: + - uid: 5721 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 +- proto: WarningPlasma + entities: + - uid: 2184 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 +- proto: WarningWaste + entities: + - uid: 774 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 9138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 +- proto: WeaponPulseRifle + entities: + - uid: 351 + components: + - type: Transform + pos: 15.622543,-14.397996 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: 15.403793,-14.585496 + parent: 2 +- proto: Windoor + entities: + - uid: 984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + - uid: 994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - uid: 2226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-25.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-25.5 + parent: 2 + - uid: 8743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-13.5 + parent: 2 +- proto: WindoorHydroponicsLocked + entities: + - uid: 8800 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 +- proto: WindoorSecureCargoLocked + entities: + - uid: 2086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 2 + - uid: 9089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 2 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 8799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-24.5 + parent: 2 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 2096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 2 +- proto: WindoorSecureScienceLocked + entities: + - uid: 2222 + components: + - type: Transform + pos: -13.5,-25.5 + parent: 2 + - uid: 2223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-22.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 2 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - uid: 220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 2 + - uid: 8742 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 +- proto: Window + entities: + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-20.5 + parent: 2 + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 2 + - uid: 368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 2 + - uid: 425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-19.5 + parent: 2 + - uid: 426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + - uid: 429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-24.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-7.5 + parent: 2 + - uid: 665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-7.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-10.5 + parent: 2 + - uid: 8989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-7.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 2 +... diff --git a/Resources/Prototypes/Accents/word_replacements.yml b/Resources/Prototypes/Accents/word_replacements.yml index ef7b0f2895..ac3dbda51e 100644 --- a/Resources/Prototypes/Accents/word_replacements.yml +++ b/Resources/Prototypes/Accents/word_replacements.yml @@ -700,7 +700,7 @@ - type: accent id: liar - replacementChance: 0.15 + replacementChance: 0.01 wordReplacements: liar-word-1: liar-word-replacement-1 liar-word-2: liar-word-replacement-2 diff --git a/Resources/Prototypes/Actions/spill_yourself.yml b/Resources/Prototypes/Actions/spill_yourself.yml new file mode 100644 index 0000000000..c876db1867 --- /dev/null +++ b/Resources/Prototypes/Actions/spill_yourself.yml @@ -0,0 +1,12 @@ +- type: entity + id: SpillAction + name: Spill Yourself! + description: Spills all your contents onto the floor. + components: + - type: InstantAction + icon: + sprite: Objects/Specific/Janitorial/janitorial.rsi + state: mopbucket + event: !type:SpillActionEvent {} + checkCanInteract: false + checkConsciousness: false diff --git a/Resources/Prototypes/Actions/station_ai.yml b/Resources/Prototypes/Actions/station_ai.yml index 67d5626219..3d70c012b9 100644 --- a/Resources/Prototypes/Actions/station_ai.yml +++ b/Resources/Prototypes/Actions/station_ai.yml @@ -12,6 +12,36 @@ state: ai_core event: !type:JumpToCoreEvent +- type: entity + id: ActionVisitCore + name: Leggy + description: Move around using your legs. + components: + - type: InstantAction + priority: -20 + itemIconStyle: BigAction + icon: + sprite: Interface/Actions/actions_ai.rsi + state: leg + event: !type:VisitCoreEvent + useDelay: 2 + startDelay: true + +- type: entity + id: ActionUnVisitCore + name: No Leggy + description: Return back to the remote. + components: + - type: InstantAction + priority: -20 + itemIconStyle: BigAction + icon: + sprite: Interface/Actions/actions_ai.rsi + state: leg + event: !type:UnVisitCoreEvent + useDelay: 2 + startDelay: true + - type: entity id: ActionSurvCameraLights name: Toggle camera lights diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index aa378d8861..8e01710234 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -72,6 +72,24 @@ state: explosive event: !type:ActivateImplantEvent +- type: entity + parent: BaseSuicideAction + id: ActionActivateMicroBombPAI + name: Self-destruct Sequence + description: INITIATE SELF-DESTRUCT SEQUENCE + components: + - type: InstantAction + checkCanInteract: false + checkConsciousness: false + itemIconStyle: BigAction + priority: -20 + icon: + sprite: Objects/Weapons/Bombs/c4.rsi + state: icon + startDelay: true + useDelay: 600 # at least 10 minutes into a round + event: !type:ActivateImplantEvent + - type: entity parent: BaseSuicideAction id: ActionActivateDeathAcidifier @@ -348,10 +366,23 @@ name: Toggle Paramedic Siren description: Toggles the paramedic siren on and off. components: - - type: InstantAction + - type: InstantAction icon: sprite: Clothing/OuterClothing/Hardsuits/paramed.rsi state: icon-siren useDelay: 1 itemIconStyle: BigAction event: !type:ToggleActionEvent + +- type: entity + id: ActionToggleVulpakinWagging + name: action-name-toggle-wagging + description: action-description-toggle-wagging + categories: [ HideSpawnMenu ] + components: + - type: InstantAction + icon: { sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi, state: tail-wag-icon } + iconOn: { sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi, state: tail-wag-icon } + itemIconStyle: NoItem + useDelay: 1 # Prevents Emote Spam + event: !type:ToggleActionEvent diff --git a/Resources/Prototypes/AlertLevels/alert_levels.yml b/Resources/Prototypes/AlertLevels/alert_levels.yml index d96b3350d0..d1de9b064f 100644 --- a/Resources/Prototypes/AlertLevels/alert_levels.yml +++ b/Resources/Prototypes/AlertLevels/alert_levels.yml @@ -16,7 +16,7 @@ shuttleTime: 600 violet: announcement: alert-level-violet-announcement - sound: /Audio/Misc/notice1.ogg + sound: /Audio/Announcements/Intern/outbreak7.ogg color: Violet emergencyLightColor: Violet forceEnableEmergencyLights: true diff --git a/Resources/Prototypes/Alerts/alerts.yml b/Resources/Prototypes/Alerts/alerts.yml index 859f223730..a12cbe486d 100644 --- a/Resources/Prototypes/Alerts/alerts.yml +++ b/Resources/Prototypes/Alerts/alerts.yml @@ -7,6 +7,7 @@ - category: Health - category: Stamina - alertType: SuitPower + - alertType: Breathing - category: Internals - alertType: Fire - alertType: Handcuffed @@ -34,6 +35,19 @@ layers: - map: [ "enum.AlertVisualLayers.Base" ] +- type: alert + id: Breathing + icons: + - sprite: /Textures/Interface/Alerts/breathing.rsi + state: on + - sprite: /Textures/Interface/Alerts/breathing.rsi + state: off + clickEvent: !type:ToggleBreathingAlertEvent + name: alerts-breathing-name + description: alerts-breathing-desc + minSeverity: 0 + maxSeverity: 1 + - type: alert id: LowOxygen category: Breathing diff --git a/Resources/Prototypes/Body/Organs/Animal/animal.yml b/Resources/Prototypes/Body/Organs/Animal/animal.yml index e59aad9da3..3cb1a63f30 100644 --- a/Resources/Prototypes/Body/Organs/Animal/animal.yml +++ b/Resources/Prototypes/Body/Organs/Animal/animal.yml @@ -164,3 +164,31 @@ - type: Item size: Small heldPrefix: kidneys + +# Borgi Animal Body + +- type: entity + parent: PartAnimal + id: LeftHandAdmemeCorgi + name: corgi hand + categories: [ HideSpawnMenu ] + components: + - type: Sprite + layers: + - state: l_hand + - type: BodyPart + partType: Hand + symmetry: Left + +- type: entity + parent: PartAnimal + id: RightHandAdmemeCorgi + name: corgi hand + categories: [ HideSpawnMenu ] + components: + - type: Sprite + layers: + - state: r_hand + - type: BodyPart + partType: Hand + symmetry: Right diff --git a/Resources/Prototypes/Body/Organs/dwarf.yml b/Resources/Prototypes/Body/Organs/dwarf.yml index 8da0cb1666..330c3c5f60 100644 --- a/Resources/Prototypes/Body/Organs/dwarf.yml +++ b/Resources/Prototypes/Body/Organs/dwarf.yml @@ -1,7 +1,7 @@ - type: entity id: OrganDwarfHeart parent: OrganHumanHeart - name: dwarf heart + name: elf heart components: - type: Metabolizer metabolizerTypes: [Dwarf] @@ -9,7 +9,7 @@ - type: entity id: OrganDwarfLiver parent: OrganHumanLiver - name: dwarf liver + name: elf liver components: - type: Metabolizer metabolizerTypes: [Dwarf] @@ -17,7 +17,7 @@ - type: entity id: OrganDwarfStomach parent: OrganHumanStomach - name: dwarf stomach + name: elf stomach components: - type: Sprite state: stomach diff --git a/Resources/Prototypes/Body/Parts/vulpkanin.yml b/Resources/Prototypes/Body/Parts/vulpkanin.yml new file mode 100644 index 0000000000..d563a6423f --- /dev/null +++ b/Resources/Prototypes/Body/Parts/vulpkanin.yml @@ -0,0 +1,89 @@ +# Limbs that spawn when gibbed should get descriptions. +- type: entity + abstract: true + parent: [ BasePart ] + id: PartVulpkanin + name: vulpkanin body part + components: + - type: Sprite + sprite: Mobs/Species/Vulpkanin/parts.rsi + +- type: entity + parent: [ PartVulpkanin, BaseTorso ] + id: TorsoVulpkanin + name: vulpkanin torso + components: + - type: Sprite + state: torso_m + +- type: entity + parent: [ PartVulpkanin, BaseHead ] + id: HeadVulpkanin + name: vulpkanin head + components: + - type: Sprite + state: head_m + +- type: entity + parent: [ PartVulpkanin, BaseLeftArm ] + id: LeftArmVulpkanin + name: left vulpkanin arm + components: + - type: Sprite + state: l_arm + +- type: entity + parent: [ PartVulpkanin, BaseRightArm ] + id: RightArmVulpkanin + name: right vulpkanin arm + components: + - type: Sprite + state: r_arm + +- type: entity + parent: [ PartVulpkanin, BaseLeftHand ] + id: LeftHandVulpkanin + name: left vulpkanin hand + components: + - type: Sprite + state: l_hand + +- type: entity + parent: [ PartVulpkanin, BaseRightHand ] + id: RightHandVulpkanin + name: right vulpkanin hand + components: + - type: Sprite + state: r_hand + +- type: entity + parent: [ PartVulpkanin, BaseLeftLeg ] + id: LeftLegVulpkanin + name: left vulpkanin leg + components: + - type: Sprite + state: l_leg + +- type: entity + parent: [ PartVulpkanin, BaseRightLeg ] + id: RightLegVulpkanin + name: right vulpkanin leg + components: + - type: Sprite + state: r_leg + +- type: entity + parent: [ PartVulpkanin, BaseLeftFoot ] + id: LeftFootVulpkanin + name: left vulpkanin foot + components: + - type: Sprite + state: l_foot + +- type: entity + parent: [ PartVulpkanin, BaseRightFoot ] + id: RightFootVulpkanin + name: right vulpkanin foot + components: + - type: Sprite + state: r_foot diff --git a/Resources/Prototypes/Body/Prototypes/Animal/borgi.yml b/Resources/Prototypes/Body/Prototypes/Animal/borgi.yml new file mode 100644 index 0000000000..3d084181de --- /dev/null +++ b/Resources/Prototypes/Body/Prototypes/Animal/borgi.yml @@ -0,0 +1,27 @@ +- type: body + id: BodySmartCorgi + name: "corgi" + root: torso + slots: + torso: + part: TorsoAnimal + connections: + - righthand + - lefthand + - legs + organs: + lungs: OrganAnimalLungs + stomach: OrganAnimalStomach + liver: OrganAnimalLiver + heart: OrganAnimalHeart + kidneys: OrganAnimalKidneys + lefthand: + part: LeftHandAdmemeCorgi + righthand: + part: RightHandAdmemeCorgi + legs: + part: LegsAnimal + connections: + - feet + feet: + part: FeetAnimal diff --git a/Resources/Prototypes/Body/Prototypes/vulpkanin.yml b/Resources/Prototypes/Body/Prototypes/vulpkanin.yml new file mode 100644 index 0000000000..8fe7ce8ef5 --- /dev/null +++ b/Resources/Prototypes/Body/Prototypes/vulpkanin.yml @@ -0,0 +1,49 @@ +- type: body + id: Vulpkanin + name: vulpkanin + root: torso + slots: + head: + part: HeadVulpkanin + connections: + - torso + organs: + brain: OrganHumanBrain + eyes: OrganHumanEyes + torso: + part: TorsoVulpkanin + connections: + - right arm + - left arm + - right leg + - left leg + organs: + heart: OrganHumanHeart + lungs: OrganHumanLungs + stomach: OrganHumanStomach + liver: OrganAnimalLiver + kidneys: OrganHumanKidneys + right arm: + part: RightArmVulpkanin + connections: + - right hand + left arm: + part: LeftArmVulpkanin + connections: + - left hand + right hand: + part: RightHandVulpkanin + left hand: + part: LeftHandVulpkanin + right leg: + part: RightLegVulpkanin + connections: + - right foot + left leg: + part: LeftLegVulpkanin + connections: + - left foot + right foot: + part: RightFootVulpkanin + left foot: + part: LeftFootVulpkanin diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml index 26f9e230a8..ce593cdb9b 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml @@ -337,3 +337,13 @@ cost: 1500 category: cargoproduct-category-name-fun group: market + +- type: cargoProduct + id: MoproachCrate + icon: + sprite: Mobs/Animals/mothroach/moproach.rsi + state: icon + product: CrateFunMoproach + cost: 2000 + category: cargoproduct-category-name-fun + group: market diff --git a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml index 2f5c247d75..c713ea43d9 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml @@ -394,3 +394,12 @@ amount: 1 prob: 0.05 +- type: entity + name: moproach kit crate + description: A box with one moproach kit that provides you with two moproaches. + id: CrateFunMoproach + parent: CratePlastic + components: + - type: StorageFill + contents: + - id: MoproachBox diff --git a/Resources/Prototypes/Catalog/Fills/Items/belt.yml b/Resources/Prototypes/Catalog/Fills/Items/belt.yml index 3575439567..8a77ba1c76 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/belt.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/belt.yml @@ -45,7 +45,7 @@ id: BeltSecurityEntityTable table: !type:AllSelector children: - - id: Stunbaton + - id: Sunbaton - id: Handcuffs - id: Handcuffs - id: HoloprojectorSecurity diff --git a/Resources/Prototypes/Catalog/Fills/Items/briefcases.yml b/Resources/Prototypes/Catalog/Fills/Items/briefcases.yml index 6764cb8496..36e6af9097 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/briefcases.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/briefcases.yml @@ -11,7 +11,7 @@ - type: entity id: BriefcaseSyndieSniperBundleFilled parent: BriefcaseSyndie - suffix: Syndicate, Sniper Bundle + suffix: Syndicate, One Shot Bundle components: - type: Item size: Ginormous @@ -23,10 +23,9 @@ contents: - id: WeaponSniperHristov - id: MagazineBoxAntiMateriel - - id: ClothingNeckTieRed - - id: ClothingHandsGlovesLatex - - id: ClothingUniformJumpsuitLawyerBlack - - id: BarberScissors + - id: ClothingNeckScarfStripedPurple + - id: ClothingOuterCoatDetectiveLoadoutNiko + - id: ClothingHeadHatNiko - type: entity id: BriefcaseSyndieLobbyingBundleFilled diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml b/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml index e5d31fdcb9..0705ace587 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/cargo.yml @@ -18,6 +18,7 @@ - id: AppraisalTool - id: JetpackMiningFilled # Corvax-Wega-Salvage - id: FireExtinguisher + - id: SalvageShuttle - id: Flare prob: 0.3 rolls: !type:ConstantNumberSelector diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml index 36746ed300..8822bf2c4f 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/service.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/service.yml @@ -79,6 +79,7 @@ amount: 2 - id: Plunger amount: 2 + - id: MoproachBox - type: entity id: ClosetLegalFilled diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml index 015bfc22e1..14e7ac27b2 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml @@ -48,10 +48,9 @@ FoodPoppy: 1 ClothingHeadHatGladiator: 1 ClothingUniformJumpsuitGladiator: 1 - ClothingHeadHatCowboyBrown: 1 - ClothingHeadHatCowboyBlack: 1 - ClothingHeadHatCowboyWhite: 1 - ClothingHeadHatCowboyGrey: 1 + ClothingHeadHatNiko: 4 + ClothingOuterCoatDetectiveLoadoutNiko: 4 + ClothingNeckScarfStripedPurple: 4 ClothingShoesBootsCowboyBrown: 1 ClothingShoesBootsCowboyBlack: 1 ClothingShoesBootsCowboyWhite: 1 @@ -66,3 +65,5 @@ ClothingMaskBlushingClown: 1 ClothingMaskBlushingMime: 1 ClothingHeadHatCowboyBountyHunter: 1 + WeaponSniperHristov: 1 # 100% balanced + WarmLightBulb: 10 # holy shit niko oneshot diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index c7102c5aa4..f264c6e93c 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -1264,6 +1264,56 @@ - !type:ListingLimitedStockCondition stock: 1 +- type: listing + id: UplinkSyndicateBorgi + name: uplink-syndicate-borgi-name + description: uplink-syndicate-borgi-desc + icon: { sprite: /Textures/Objects/Fun/toys.rsi, state: ian } + productEntity: SyndiCorgi + cost: + Telecrystal: 20 + categories: + - UplinkAllies + conditions: + - !type:ListingLimitedStockCondition + stock: 3 + +- type: listing + id: UplinkSyndicateBorgiKitted + name: uplink-syndicate-borgi-kitted-name + description: uplink-syndicate-borgi-kitted-desc + icon: { sprite: /Textures/Objects/Fun/toys.rsi, state: ian } + productEntity: SyndiCorgiKit1 + cost: + Telecrystal: 60 + categories: + - UplinkAllies + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + - !type:StoreWhitelistCondition + whitelist: + tags: + - NukeOpsUplink + +- type: listing + id: UplinkSyndicateBorgiSpeed + name: uplink-syndicate-borgi-speed-name + description: uplink-syndicate-borgi-speed-desc + icon: { sprite: /Textures/Objects/Fun/toys.rsi, state: ian } + productEntity: SyndiCorgiKit2 + cost: + Telecrystal: 50 + categories: + - UplinkAllies + conditions: + - !type:ListingLimitedStockCondition + stock: 1 + - !type:StoreWhitelistCondition + whitelist: + tags: + - NukeOpsUplink + # Implants - type: listing diff --git a/Resources/Prototypes/Corvax/Body/Organs/vulpkanin.yml b/Resources/Prototypes/Corvax/Body/Organs/vulpkanin.yml index f1e64d5d83..e13098a706 100644 --- a/Resources/Prototypes/Corvax/Body/Organs/vulpkanin.yml +++ b/Resources/Prototypes/Corvax/Body/Organs/vulpkanin.yml @@ -1,10 +1,10 @@ -- type: entity - id: OrganVulpkaninStomach - parent: OrganAnimalStomach - categories: [ HideSpawnMenu ] - components: - - type: Stomach - - type: SolutionContainerManager - solutions: - stomach: - maxVol: 50.0 +#- type: entity +# id: OrganVulpkaninStomach +# parent: OrganAnimalStomach +# categories: [ HideSpawnMenu ] +# components: +# - type: Stomach +# - type: SolutionContainerManager +# solutions: +# stomach: +# maxVol: 50.0 diff --git a/Resources/Prototypes/Corvax/Body/Parts/vulpkanin.yml b/Resources/Prototypes/Corvax/Body/Parts/vulpkanin.yml index 5dc4bcef41..84930d6bff 100644 --- a/Resources/Prototypes/Corvax/Body/Parts/vulpkanin.yml +++ b/Resources/Prototypes/Corvax/Body/Parts/vulpkanin.yml @@ -1,125 +1,125 @@ -# TODO: Add descriptions (many) -# TODO BODY: Part damage -- type: entity - id: PartVulpkanin - parent: [BaseItem, BasePart] - name: "vulpkanin body part" - abstract: true - components: - - type: Extractable - juiceSolution: - reagents: - - ReagentId: Fat - Quantity: 3 - - ReagentId: Blood - Quantity: 10 - -- type: entity - id: TorsoVulpkanin - name: "vulpkanin torso" - parent: [PartVulpkanin, BaseTorso] - components: - - type: Sprite - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: "torso_m" - - type: Extractable - juiceSolution: - reagents: - - ReagentId: Fat - Quantity: 10 - - ReagentId: Blood - Quantity: 20 - -- type: entity - id: HeadVulpkanin - name: "vulpkanin head" - parent: [PartVulpkanin, BaseHead] - components: - - type: Sprite - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: "head_m" - - type: Extractable - juiceSolution: - reagents: - - ReagentId: Fat - Quantity: 5 - - ReagentId: Blood - Quantity: 10 - -- type: entity - id: LeftArmVulpkanin - name: "left vulpkanin arm" - parent: [PartVulpkanin, BaseLeftArm] - components: - - type: Sprite - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: "l_arm" - -- type: entity - id: RightArmVulpkanin - name: "right vulpkanin arm" - parent: [PartVulpkanin, BaseRightArm] - components: - - type: Sprite - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: "r_arm" - -- type: entity - id: LeftHandVulpkanin - name: "left vulpkanin hand" - parent: [PartVulpkanin, BaseLeftHand] - components: - - type: Sprite - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: "l_hand" - -- type: entity - id: RightHandVulpkanin - name: "right vulpkanin hand" - parent: [PartVulpkanin, BaseRightHand] - components: - - type: Sprite - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: "r_hand" - -- type: entity - id: LeftLegVulpkanin - name: "left vulpkanin leg" - parent: [PartVulpkanin, BaseLeftLeg] - components: - - type: Sprite - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: "l_leg" - - type: MovementBodyPart - walkSpeed : 2.7 - sprintSpeed : 4.5 - -- type: entity - id: RightLegVulpkanin - name: "right vulpkanin leg" - parent: [PartVulpkanin, BaseRightLeg] - components: - - type: Sprite - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: "r_leg" - - type: MovementBodyPart - walkSpeed : 2.7 - sprintSpeed : 4.5 - -- type: entity - id: LeftFootVulpkanin - name: "left vulpkanin foot" - parent: [PartVulpkanin, BaseLeftFoot] - components: - - type: Sprite - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: "l_foot" - -- type: entity - id: RightFootVulpkanin - name: "right vulpkanin foot" - parent: [PartVulpkanin, BaseRightFoot] - components: - - type: Sprite - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: "r_foot" +## TODO: Add descriptions (many) +## TODO BODY: Part damage +#- type: entity +# id: PartVulpkanin +# parent: [BaseItem, BasePart] +# name: "vulpkanin body part" +# abstract: true +# components: +# - type: Extractable +# juiceSolution: +# reagents: +# - ReagentId: Fat +# Quantity: 3 +# - ReagentId: Blood +# Quantity: 10 +# +#- type: entity +# id: TorsoVulpkanin +# name: "vulpkanin torso" +# parent: [PartVulpkanin, BaseTorso] +# components: +# - type: Sprite +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: "torso_m" +# - type: Extractable +# juiceSolution: +# reagents: +# - ReagentId: Fat +# Quantity: 10 +# - ReagentId: Blood +# Quantity: 20 +# +#- type: entity +# id: HeadVulpkanin +# name: "vulpkanin head" +# parent: [PartVulpkanin, BaseHead] +# components: +# - type: Sprite +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: "head_m" +# - type: Extractable +# juiceSolution: +# reagents: +# - ReagentId: Fat +# Quantity: 5 +# - ReagentId: Blood +# Quantity: 10 +# +#- type: entity +# id: LeftArmVulpkanin +# name: "left vulpkanin arm" +# parent: [PartVulpkanin, BaseLeftArm] +# components: +# - type: Sprite +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: "l_arm" +# +#- type: entity +# id: RightArmVulpkanin +# name: "right vulpkanin arm" +# parent: [PartVulpkanin, BaseRightArm] +# components: +# - type: Sprite +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: "r_arm" +# +#- type: entity +# id: LeftHandVulpkanin +# name: "left vulpkanin hand" +# parent: [PartVulpkanin, BaseLeftHand] +# components: +# - type: Sprite +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: "l_hand" +# +#- type: entity +# id: RightHandVulpkanin +# name: "right vulpkanin hand" +# parent: [PartVulpkanin, BaseRightHand] +# components: +# - type: Sprite +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: "r_hand" +# +#- type: entity +# id: LeftLegVulpkanin +# name: "left vulpkanin leg" +# parent: [PartVulpkanin, BaseLeftLeg] +# components: +# - type: Sprite +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: "l_leg" +# - type: MovementBodyPart +# walkSpeed : 2.7 +# sprintSpeed : 4.5 +# +#- type: entity +# id: RightLegVulpkanin +# name: "right vulpkanin leg" +# parent: [PartVulpkanin, BaseRightLeg] +# components: +# - type: Sprite +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: "r_leg" +# - type: MovementBodyPart +# walkSpeed : 2.7 +# sprintSpeed : 4.5 +# +#- type: entity +# id: LeftFootVulpkanin +# name: "left vulpkanin foot" +# parent: [PartVulpkanin, BaseLeftFoot] +# components: +# - type: Sprite +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: "l_foot" +# +#- type: entity +# id: RightFootVulpkanin +# name: "right vulpkanin foot" +# parent: [PartVulpkanin, BaseRightFoot] +# components: +# - type: Sprite +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: "r_foot" diff --git a/Resources/Prototypes/Corvax/Body/Prototypes/vulpkanin.yml b/Resources/Prototypes/Corvax/Body/Prototypes/vulpkanin.yml index df3f5d708d..78f55c9557 100644 --- a/Resources/Prototypes/Corvax/Body/Prototypes/vulpkanin.yml +++ b/Resources/Prototypes/Corvax/Body/Prototypes/vulpkanin.yml @@ -1,49 +1,49 @@ -- type: body - name: "vulpkanin" - id: Vulpkanin - root: torso - slots: - head: - part: HeadVulpkanin - connections: - - torso - organs: - brain: OrganHumanBrain - eyes: OrganHumanEyes - torso: - part: TorsoVulpkanin - organs: - heart: OrganAnimalHeart - lungs: OrganHumanLungs - stomach: OrganVulpkaninStomach - liver: OrganAnimalLiver - kidneys: OrganHumanKidneys - connections: - - right_arm - - left_arm - - right_leg - - left_leg - right_arm: - part: RightArmVulpkanin - connections: - - right_hand - left_arm: - part: LeftArmVulpkanin - connections: - - left_hand - right_hand: - part: RightHandVulpkanin - left_hand: - part: LeftHandVulpkanin - right_leg: - part: RightLegVulpkanin - connections: - - right_foot - left_leg: - part: LeftLegVulpkanin - connections: - - left_foot - right_foot: - part: RightFootVulpkanin - left_foot: - part: LeftFootVulpkanin +#- type: body +# name: "vulpkanin" +# id: Vulpkanin +# root: torso +# slots: +# head: +# part: HeadVulpkanin +# connections: +# - torso +# organs: +# brain: OrganHumanBrain +# eyes: OrganHumanEyes +# torso: +# part: TorsoVulpkanin +# organs: +# heart: OrganAnimalHeart +# lungs: OrganHumanLungs +# stomach: OrganVulpkaninStomach +# liver: OrganAnimalLiver +# kidneys: OrganHumanKidneys +# connections: +# - right_arm +# - left_arm +# - right_leg +# - left_leg +# right_arm: +# part: RightArmVulpkanin +# connections: +# - right_hand +# left_arm: +# part: LeftArmVulpkanin +# connections: +# - left_hand +# right_hand: +# part: RightHandVulpkanin +# left_hand: +# part: LeftHandVulpkanin +# right_leg: +# part: RightLegVulpkanin +# connections: +# - right_foot +# left_leg: +# part: LeftLegVulpkanin +# connections: +# - left_foot +# right_foot: +# part: RightFootVulpkanin +# left_foot: +# part: LeftFootVulpkanin diff --git a/Resources/Prototypes/Corvax/Entities/Mobs/Player/vulpkanin.yml b/Resources/Prototypes/Corvax/Entities/Mobs/Player/vulpkanin.yml index e917e97270..d3bcb32aed 100644 --- a/Resources/Prototypes/Corvax/Entities/Mobs/Player/vulpkanin.yml +++ b/Resources/Prototypes/Corvax/Entities/Mobs/Player/vulpkanin.yml @@ -1,5 +1,5 @@ -- type: entity - save: false - name: Urist McVulp - parent: [BaseMobVulpkanin, BaseMob] - id: MobVulpkanin +#- type: entity +# save: false +# name: Urist McVulp +# parent: [BaseMobVulpkanin, BaseMob] +# id: MobVulpkanin diff --git a/Resources/Prototypes/Corvax/Entities/Mobs/Species/vulpkanin.yml b/Resources/Prototypes/Corvax/Entities/Mobs/Species/vulpkanin.yml index 80616117d3..a4fe30c9b6 100644 --- a/Resources/Prototypes/Corvax/Entities/Mobs/Species/vulpkanin.yml +++ b/Resources/Prototypes/Corvax/Entities/Mobs/Species/vulpkanin.yml @@ -1,121 +1,119 @@ -- type: entity - save: false - name: Urist McVulp - parent: BaseMobSpeciesOrganic - id: BaseMobVulpkanin - abstract: true - components: - - type: HumanoidAppearance - species: Vulpkanin - - type: Carriable # Corvax-Wega-Carrying - - type: DiseaseCarrier # Corvax-Wega-Disease - - type: Hunger # on 1.5x more - thresholds: - Overfed: 250 - Okay: 200 - Peckish: 150 - Starving: 100 - Dead: 0 - baseDecayRate: 0.02 - - type: Thirst # on 1.5x more - thresholds: - OverHydrated: 650 - Okay: 500 - Thirsty: 350 - Parched: 200 - Dead: 0 - baseDecayRate: 0.15 - - type: Icon - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: full - - type: Body - prototype: Vulpkanin - requiredLegs: 2 - - type: Inventory - speciesId: reptilian # whyyy - femaleDisplacements: - jumpsuit: - sizeMaps: - 32: - sprite: Corvax/Mobs/Species/displacement.rsi - state: jumpsuit-female - shoes: - sizeMaps: - 32: - sprite: Corvax/Mobs/Species/displacement.rsi - state: shoes - displacements: - jumpsuit: - sizeMaps: - 32: - sprite: Corvax/Mobs/Species/displacement.rsi - state: jumpsuit - shoes: - sizeMaps: - 32: - sprite: Corvax/Mobs/Species/displacement.rsi - state: shoes - - type: ContentEye - targetZoom: "1.125, 1.125" - maxZoom: "1.125, 1.125" - - type: Speech - allowedEmotes: ['Howl', 'Growl'] - - type: Vocal - sounds: - Male: MaleVulpkanin - Female: FemaleVulpkanin - Unsexed: MaleVulpkanin - - type: GrowlingAccent - - type: MeleeWeapon - animation: WeaponArcClaw - soundHit: - collection: AlienClaw - damage: - types: - Slash: 5 - - type: Damageable - damageContainer: Biological - damageModifierSet: Vulpkanin - - type: Respirator - damage: - types: - Asphyxiation: 2.0 - damageRecovery: - types: - Asphyxiation: -2.0 - - type: Wagging - -- type: entity - save: false - name: Urist McHands - parent: MobHumanDummy - id: MobVulpkaninDummy - categories: [ HideSpawnMenu ] - description: A dummy vulpkanin meant to be used in character setup. - components: - - type: HumanoidAppearance - species: Vulpkanin - - type: Inventory - speciesId: reptilian - femaleDisplacements: - jumpsuit: - sizeMaps: - 32: - sprite: Corvax/Mobs/Species/displacement.rsi - state: jumpsuit-female - shoes: - sizeMaps: - 32: - sprite: Corvax/Mobs/Species/displacement.rsi - state: shoes - displacements: - jumpsuit: - sizeMaps: - 32: - sprite: Corvax/Mobs/Species/displacement.rsi - state: jumpsuit - shoes: - sizeMaps: - 32: - sprite: Corvax/Mobs/Species/displacement.rsi - state: shoes +#- type: entity +# save: false +# name: Urist McVulp +# parent: BaseMobSpeciesOrganic +# id: BaseMobVulpkanin +# abstract: true +# components: +# - type: HumanoidAppearance +# species: Vulpkanin +# - type: Hunger # on 1.5x more +# thresholds: +# Overfed: 250 +# Okay: 200 +# Peckish: 150 +# Starving: 100 +# Dead: 0 +# baseDecayRate: 0.02 +# - type: Thirst # on 1.5x more +# thresholds: +# OverHydrated: 650 +# Okay: 500 +# Thirsty: 350 +# Parched: 200 +# Dead: 0 +# baseDecayRate: 0.15 +# - type: Icon +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: full +# - type: Body +# prototype: Vulpkanin +# requiredLegs: 2 +# - type: Inventory +# speciesId: reptilian # whyyy +# femaleDisplacements: +# jumpsuit: +# sizeMaps: +# 32: +# sprite: Corvax/Mobs/Species/displacement.rsi +# state: jumpsuit-female +# shoes: +# sizeMaps: +# 32: +# sprite: Corvax/Mobs/Species/displacement.rsi +# state: shoes +# displacements: +# jumpsuit: +# sizeMaps: +# 32: +# sprite: Corvax/Mobs/Species/displacement.rsi +# state: jumpsuit +# shoes: +# sizeMaps: +# 32: +# sprite: Corvax/Mobs/Species/displacement.rsi +# state: shoes +# - type: ContentEye +# targetZoom: "1.125, 1.125" +# maxZoom: "1.125, 1.125" +# - type: Speech +# allowedEmotes: ['Howl', 'Growl'] +# - type: Vocal +# sounds: +# Male: MaleVulpkanin +# Female: FemaleVulpkanin +# Unsexed: MaleVulpkanin +# - type: GrowlingAccent +# - type: MeleeWeapon +# animation: WeaponArcClaw +# soundHit: +# collection: AlienClaw +# damage: +# types: +# Slash: 5 +# - type: Damageable +# damageContainer: Biological +# damageModifierSet: Vulpkanin +# - type: Respirator +# damage: +# types: +# Asphyxiation: 2.0 +# damageRecovery: +# types: +# Asphyxiation: -2.0 +# - type: Wagging +# +#- type: entity +# save: false +# name: Urist McHands +# parent: MobHumanDummy +# id: MobVulpkaninDummy +# categories: [ HideSpawnMenu ] +# description: A dummy vulpkanin meant to be used in character setup. +# components: +# - type: HumanoidAppearance +# species: Vulpkanin +# - type: Inventory +# speciesId: reptilian +# femaleDisplacements: +# jumpsuit: +# sizeMaps: +# 32: +# sprite: Corvax/Mobs/Species/displacement.rsi +# state: jumpsuit-female +# shoes: +# sizeMaps: +# 32: +# sprite: Corvax/Mobs/Species/displacement.rsi +# state: shoes +# displacements: +# jumpsuit: +# sizeMaps: +# 32: +# sprite: Corvax/Mobs/Species/displacement.rsi +# state: jumpsuit +# shoes: +# sizeMaps: +# 32: +# sprite: Corvax/Mobs/Species/displacement.rsi +# state: shoes diff --git a/Resources/Prototypes/Corvax/Guidebook/species.yml b/Resources/Prototypes/Corvax/Guidebook/species.yml index 2558182c19..f30ace6e0b 100644 --- a/Resources/Prototypes/Corvax/Guidebook/species.yml +++ b/Resources/Prototypes/Corvax/Guidebook/species.yml @@ -1,4 +1,4 @@ -- type: guideEntry - id: Vulpkanin - name: species-name-vulpkanin - text: "/ServerInfo/Corvax/Guidebook/Mobs/Vulpkanin.xml" +#- type: guideEntry +# id: Vulpkanin +# name: species-name-vulpkanin +# text: "/ServerInfo/Corvax/Guidebook/Mobs/Vulpkanin.xml" diff --git a/Resources/Prototypes/Corvax/Species/vulpkanin.yml b/Resources/Prototypes/Corvax/Species/vulpkanin.yml index 4c789179a1..569d020e56 100644 --- a/Resources/Prototypes/Corvax/Species/vulpkanin.yml +++ b/Resources/Prototypes/Corvax/Species/vulpkanin.yml @@ -1,145 +1,145 @@ -- type: species - id: Vulpkanin - name: species-name-vulpkanin - roundStart: true -# sponsorOnly: true # Corvax-Wega-Temporarily - prototype: MobVulpkanin - sprites: MobVulpkaninSprites - defaultSkinTone: "#eb943d" - markingLimits: MobVulpkaninMarkingLimits - dollPrototype: MobVulpkaninDummy - skinColoration: Hues - maleFirstNames: NamesVulpFirstMale - femaleFirstNames: NamesVulpFirstFemale - maleLastNames: NamesVulpLast # Corvax-LastnameGender - femaleLastNames: NamesVulpLast # Corvax-LastnameGender - -- type: speciesBaseSprites - id: MobVulpkaninSprites - sprites: - Head: MobVulpkaninHead - Hair: MobHumanoidAnyMarking - FacialHair: MobHumanoidAnyMarking - Snout: MobHumanoidAnyMarking - Chest: MobVulpkaninTorso - HeadTop: MobHumanoidAnyMarking - HeadSide: MobHumanoidAnyMarking - Tail: MobHumanoidAnyMarking - Eyes: MobHumanoidEyes - LArm: MobVulpkaninLArm - RArm: MobVulpkaninRArm - LHand: MobVulpkaninLHand - RHand: MobVulpkaninRHand - LLeg: MobVulpkaninLLeg - RLeg: MobVulpkaninRLeg - LFoot: MobVulpkaninLFoot - RFoot: MobVulpkaninRFoot - -- type: markingPoints - id: MobVulpkaninMarkingLimits - points: - Hair: - points: 1 - required: false - FacialHair: - points: 0 - required: false - Tail: - points: 1 - required: true - defaultMarkings: [ FoxTail ] - Snout: - points: 1 - required: true - defaultMarkings: [ FoxSnout ] - HeadTop: - points: 1 - required: true - defaultMarkings: [ FoxEar ] - HeadSide: - points: 1 - required: false - -- type: humanoidBaseSprite - id: MobVulpkaninHead - baseSprite: - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: head_m - -- type: humanoidBaseSprite - id: MobVulpkaninHeadMale - baseSprite: - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: head_m - -- type: humanoidBaseSprite - id: MobVulpkaninHeadFemale - baseSprite: - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: head_f - -- type: humanoidBaseSprite - id: MobVulpkaninTorso - baseSprite: - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: torso_m - -- type: humanoidBaseSprite - id: MobVulpkaninTorsoMale - baseSprite: - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: torso_m - -- type: humanoidBaseSprite - id: MobVulpkaninTorsoFemale - baseSprite: - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: torso_f - -- type: humanoidBaseSprite - id: MobVulpkaninLLeg - baseSprite: - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: l_leg - -- type: humanoidBaseSprite - id: MobVulpkaninLHand - baseSprite: - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: l_hand - -- type: humanoidBaseSprite - id: MobVulpkaninLArm - baseSprite: - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: l_arm - -- type: humanoidBaseSprite - id: MobVulpkaninLFoot - baseSprite: - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: l_foot - -- type: humanoidBaseSprite - id: MobVulpkaninRLeg - baseSprite: - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: r_leg - -- type: humanoidBaseSprite - id: MobVulpkaninRHand - baseSprite: - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: r_hand - -- type: humanoidBaseSprite - id: MobVulpkaninRArm - baseSprite: - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: r_arm - -- type: humanoidBaseSprite - id: MobVulpkaninRFoot - baseSprite: - sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi - state: r_foot +#- type: species +# id: Vulpkanin +# name: species-name-vulpkanin +# roundStart: true +# sponsorOnly: true # Corvax-Sponsors +# prototype: MobVulpkanin +# sprites: MobVulpkaninSprites +# defaultSkinTone: "#eb943d" +# markingLimits: MobVulpkaninMarkingLimits +# dollPrototype: MobVulpkaninDummy +# skinColoration: Hues +# maleFirstNames: NamesVulpFirstMale +# femaleFirstNames: NamesVulpFirstFemale +# maleLastNames: NamesVulpLast # Corvax-LastnameGender +# femaleLastNames: NamesVulpLast # Corvax-LastnameGender +# +#- type: speciesBaseSprites +# id: MobVulpkaninSprites +# sprites: +# Head: MobVulpkaninHead +# Hair: MobHumanoidAnyMarking +# FacialHair: MobHumanoidAnyMarking +# Snout: MobHumanoidAnyMarking +# Chest: MobVulpkaninTorso +# HeadTop: MobHumanoidAnyMarking +# HeadSide: MobHumanoidAnyMarking +# Tail: MobHumanoidAnyMarking +# Eyes: MobHumanoidEyes +# LArm: MobVulpkaninLArm +# RArm: MobVulpkaninRArm +# LHand: MobVulpkaninLHand +# RHand: MobVulpkaninRHand +# LLeg: MobVulpkaninLLeg +# RLeg: MobVulpkaninRLeg +# LFoot: MobVulpkaninLFoot +# RFoot: MobVulpkaninRFoot +# +#- type: markingPoints +# id: MobVulpkaninMarkingLimits +# points: +# Hair: +# points: 1 +# required: false +# FacialHair: +# points: 0 +# required: false +# Tail: +# points: 1 +# required: true +# defaultMarkings: [ FoxTail ] +# Snout: +# points: 1 +# required: true +# defaultMarkings: [ FoxSnout ] +# HeadTop: +# points: 1 +# required: true +# defaultMarkings: [ FoxEar ] +# HeadSide: +# points: 1 +# required: false +# +#- type: humanoidBaseSprite +# id: MobVulpkaninHead +# baseSprite: +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: head_m +# +#- type: humanoidBaseSprite +# id: MobVulpkaninHeadMale +# baseSprite: +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: head_m +# +#- type: humanoidBaseSprite +# id: MobVulpkaninHeadFemale +# baseSprite: +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: head_f +# +#- type: humanoidBaseSprite +# id: MobVulpkaninTorso +# baseSprite: +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: torso_m +# +#- type: humanoidBaseSprite +# id: MobVulpkaninTorsoMale +# baseSprite: +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: torso_m +# +#- type: humanoidBaseSprite +# id: MobVulpkaninTorsoFemale +# baseSprite: +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: torso_f +# +#- type: humanoidBaseSprite +# id: MobVulpkaninLLeg +# baseSprite: +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: l_leg +# +#- type: humanoidBaseSprite +# id: MobVulpkaninLHand +# baseSprite: +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: l_hand +# +#- type: humanoidBaseSprite +# id: MobVulpkaninLArm +# baseSprite: +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: l_arm +# +#- type: humanoidBaseSprite +# id: MobVulpkaninLFoot +# baseSprite: +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: l_foot +# +#- type: humanoidBaseSprite +# id: MobVulpkaninRLeg +# baseSprite: +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: r_leg +# +#- type: humanoidBaseSprite +# id: MobVulpkaninRHand +# baseSprite: +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: r_hand +# +#- type: humanoidBaseSprite +# id: MobVulpkaninRArm +# baseSprite: +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: r_arm +# +#- type: humanoidBaseSprite +# id: MobVulpkaninRFoot +# baseSprite: +# sprite: Corvax/Mobs/Species/Vulpkanin/parts.rsi +# state: r_foot diff --git a/Resources/Prototypes/Corvax/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Corvax/Voice/speech_emote_sounds.yml index e2faf03750..e893b8f73e 100644 --- a/Resources/Prototypes/Corvax/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/Corvax/Voice/speech_emote_sounds.yml @@ -1,68 +1,68 @@ -# species -- type: emoteSounds - id: MaleVulpkanin - params: - variation: 0.125 - sounds: - Scream: - collection: VulpakinScreams # Corvax-Wega-Voice - Laugh: - collection: MaleLaugh - Growl: - collection: Growl - Howl: - path: /Audio/Corvax/Effects/howl.ogg - Sneeze: - collection: MaleSneezes - Cough: - collection: MaleCoughs - Yawn: - collection: MaleYawn - Snore: - collection: Snores - Sigh: - collection: MaleSigh - Crying: - collection: MaleCry - Whistle: - collection: Whistles - Weh: - collection: Weh - Gasp: - collection: MaleGasp - DefaultDeathgasp: - collection: MaleDeathGasp - -- type: emoteSounds - id: FemaleVulpkanin - params: - variation: 0.125 - sounds: - Scream: - collection: VulpakinScreams # Corvax-Wega-Voice - Laugh: - collection: FemaleLaugh - Growl: - collection: Growl - Howl: - path: /Audio/Corvax/Effects/howl.ogg - Sneeze: - collection: FemaleSneezes - Cough: - collection: FemaleCoughs - Yawn: - collection: FemaleYawn - Snore: - collection: Snores - Sigh: - collection: FemaleSigh - Crying: - collection: FemaleCry - Whistle: - collection: Whistles - Weh: - collection: Weh - Gasp: - collection: FemaleGasp - DefaultDeathgasp: - collection: FemaleDeathGasp +## species +#- type: emoteSounds +# id: MaleVulpkanin +# params: +# variation: 0.125 +# sounds: +# Scream: +# collection: MaleScreams +# Laugh: +# collection: MaleLaugh +# Growl: +# collection: Growl +# Howl: +# path: /Audio/Corvax/Effects/howl.ogg +# Sneeze: +# collection: MaleSneezes +# Cough: +# collection: MaleCoughs +# Yawn: +# collection: MaleYawn +# Snore: +# collection: Snores +# Sigh: +# collection: MaleSigh +# Crying: +# collection: MaleCry +# Whistle: +# collection: Whistles +# Weh: +# collection: Weh +# Gasp: +# collection: MaleGasp +# DefaultDeathgasp: +# collection: MaleDeathGasp +# +#- type: emoteSounds +# id: FemaleVulpkanin +# params: +# variation: 0.125 +# sounds: +# Scream: +# collection: FemaleScreams +# Laugh: +# collection: FemaleLaugh +# Growl: +# collection: Growl +# Howl: +# path: /Audio/Corvax/Effects/howl.ogg +# Sneeze: +# collection: FemaleSneezes +# Cough: +# collection: FemaleCoughs +# Yawn: +# collection: FemaleYawn +# Snore: +# collection: Snores +# Sigh: +# collection: FemaleSigh +# Crying: +# collection: FemaleCry +# Whistle: +# collection: Whistles +# Weh: +# collection: Weh +# Gasp: +# collection: FemaleGasp +# DefaultDeathgasp: +# collection: FemaleDeathGasp diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml index 3a3a372b6e..485b76708c 100644 --- a/Resources/Prototypes/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Damage/modifier_sets.yml @@ -311,3 +311,9 @@ id: ManifestedSpirit coefficients: Holy: 2 + +## Vulps get more heat damage because fur +#- type: damageModifierSet +# id: Vulpkanin +# coefficients: +# Heat: 1.15 diff --git a/Resources/Prototypes/Datasets/Names/borgi.yml b/Resources/Prototypes/Datasets/Names/borgi.yml new file mode 100644 index 0000000000..386586b241 --- /dev/null +++ b/Resources/Prototypes/Datasets/Names/borgi.yml @@ -0,0 +1,23 @@ +- type: localizedDataset + id: NamesBorgi + values: + prefix: names-borgi-dataset- + count: 21 + +- type: localizedDataset + id: NamesCorgi + values: + prefix: names-corgi-dataset- + count: 9 + +- type: localizedDataset + id: NamesSyndiBorgi + values: + prefix: names-syndiborgi-dataset- + count: 6 + +- type: localizedDataset + id: NamesShadowBorgi + values: + prefix: names-shadowborgi-dataset- + count: 6 diff --git a/Resources/Prototypes/Datasets/Names/scurret.yml b/Resources/Prototypes/Datasets/Names/scurret.yml new file mode 100644 index 0000000000..4ce78ff2d5 --- /dev/null +++ b/Resources/Prototypes/Datasets/Names/scurret.yml @@ -0,0 +1,76 @@ +- type: dataset + id: NamesFirstScurret + values: +# Emotions + - Wawa + - Calm + - Contented + - Patient + - Relaxed + - Serene + - Blissful + - Eager + - Happy + - Inspired + - Lively + - Playful + - Radiant + - Vibrant + - Brave + - Capable + - Confident + - Daring + - Proud + - Valiant + - Caring + - Compassionate + - Empathic +# Properties + - Strong + - Free + - Lucky + - Worthy + - Blessed + - Fortunate + - Trusting + - Fast + +- type: dataset + id: NamesLastScurret + values: +# The names of things that exist in wetlands + - Wawa + - Trees + - Plants + - Rocks + - Rivers + - Groves + - Lakes + - Marshes + - Springs + - Reeds + - Sunshine + - Rain + - Clouds + - Snowfall + - Stones + - Pebbles + - Fishes + - Insects + - Fruits + - Flowers + - Blossoms + - Fogs + - Willows + - Alders + - Birches + - Poplars + - Marigolds + - Robins + - Orchids + - Rushes + - Lillies + - Violets + - Maples + - Oaks + - Hazels diff --git a/Resources/Prototypes/Datasets/Names/vulpkanin.yml b/Resources/Prototypes/Datasets/Names/vulpkanin.yml new file mode 100644 index 0000000000..b43417f8f7 --- /dev/null +++ b/Resources/Prototypes/Datasets/Names/vulpkanin.yml @@ -0,0 +1,17 @@ +- type: localizedDataset + id: NamesVulpkaninMale + values: + prefix: names-vulpkanin-male-dataset- + count: 345 + +- type: localizedDataset + id: NamesVulpkaninFemale + values: + prefix: names-vulpkanin-female-dataset- + count: 345 + +- type: localizedDataset + id: NamesVulpkaninLast + values: + prefix: names-vulpkanin-last-dataset- + count: 252 diff --git a/Resources/Prototypes/Datasets/doors.yml b/Resources/Prototypes/Datasets/doors.yml new file mode 100644 index 0000000000..1236186e12 --- /dev/null +++ b/Resources/Prototypes/Datasets/doors.yml @@ -0,0 +1,5 @@ +- type: localizedDataset + id: DoorGPP # genuine people personality :) + values: + prefix: door-gpp- + count: 29 diff --git a/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml index ecc63bd4da..abe2816c4d 100644 --- a/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml @@ -33,6 +33,7 @@ - type: GuideHelp guides: - Radio + - type: PhoneBillTarget - type: entity parent: ClothingHeadset diff --git a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml index 61f256ddc8..75178e996e 100644 --- a/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml +++ b/Resources/Prototypes/Entities/Clothing/Hands/gloves.yml @@ -10,8 +10,6 @@ sprite: Clothing/Hands/Gloves/Boxing/boxingred.rsi - type: StaminaDamageOnHit damage: 8 #Stam damage values seem a bit higher than regular damage because of the decay, etc - # This needs to be moved to boxinggloves - #knockdownSound: /Audio/Weapons/boxingbell.ogg - type: MeleeWeapon attackRate: 1.5 damage: @@ -46,6 +44,30 @@ fiberColor: fibers-blue - type: FingerprintMask +# April Fools: Vox boxing gloves, given to all Vox. A bit dangerous. +- type: entity + parent: ClothingHandsGlovesBoxingRed + id: ClothingHandsGlovesBoxingVox + name: vox boxing gloves + description: These pack a punch! They'll never make you eat lunch in the maints again! SCRAWWWW!! + components: + - type: Sprite + sprite: Clothing/Hands/Gloves/Boxing/boxingblue.rsi + state: icon + - type: Clothing + sprite: Clothing/Hands/Gloves/Boxing/boxingblue.rsi + - type: Fiber + fiberMaterial: fibers-leather + fiberColor: fibers-blue + - type: FingerprintMask + - type: MeleeWeapon + attackRate: 2 + animation: WeaponArcBox + damage: + types: + Blunt: 6 # Double Vox unarmed attack + mustBeEquippedToUse: true + - type: entity parent: ClothingHandsGlovesBoxingRed id: ClothingHandsGlovesBoxingGreen diff --git a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml index b14ad61dc9..554a26ecc0 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/eva-helmets.yml @@ -13,6 +13,7 @@ tags: - HelmetEVA - WhitelistChameleon + - CorgiWearable #Large EVA Helmet - type: entity @@ -25,6 +26,9 @@ sprite: Clothing/Head/Helmets/eva_large.rsi - type: Clothing sprite: Clothing/Head/Helmets/eva_large.rsi + - type: Tag + tags: + - CorgiWearable #Syndicate EVA Helmet - type: entity @@ -81,12 +85,16 @@ - state: equipped-head-light head-vox: - state: equipped-head-light-vox + head-dog: + - state: equipped-head-light-dog - type: Clothing clothingVisuals: head: - state: equipped-head head-vox: - state: equipped-head-vox + head-dog: + - state: equipped-head-dog - type: TemperatureProtection heatingCoefficient: 0.1 coolingCoefficient: 0.1 @@ -101,3 +109,6 @@ radius: 5 energy: 2 color: "#00ffff" + - type: Tag + tags: + - CorgiWearable diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index a7854bc59c..53c5d798a9 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -22,6 +22,10 @@ - Snout - HeadTop - HeadSide + - type: Tag + tags: + - CorgiWearable + - WhitelistChameleon #Atmospherics Hardsuit - type: entity @@ -51,6 +55,12 @@ head-vox: - state: equipped-head-light-vox shader: unshaded + head-vulpkanin: + - state: equipped-head-light-vulpkanin + shader: unshaded + head-dog: + - state: equipped-head-light-dog + shader: unshaded - type: Clothing clothingVisuals: head: @@ -61,6 +71,14 @@ - state: equipped-head-vox - state: equipped-head-unshaded-vox shader: unshaded + head-vulpkanin: + - state: equipped-head-vulpkanin + - state: equipped-head-unshaded-vulpkanin + shader: unshaded + head-dog: + - state: equipped-head-dog + - state: equipped-head-unshaded-dog + shader: unshaded - type: PointLight color: "#adffe6" - type: PressureProtection @@ -71,6 +89,10 @@ coolingCoefficient: 0.005 - type: FireProtection reduction: 0.2 + - type: Tag + tags: + - CorgiWearable + - WhitelistChameleon #Engineering Hardsuit - type: entity @@ -88,6 +110,10 @@ - type: PressureProtection highPressureMultiplier: 0.1 lowPressureMultiplier: 1000 + - type: Tag + tags: + - CorgiWearable + - WhitelistChameleon #Spationaut Hardsuit - type: entity @@ -116,6 +142,12 @@ head-vox: - state: equipped-head-light-vox shader: unshaded + head-vulpkanin: + - state: equipped-head-light-vulpkanin + shader: unshaded + head-dog: + - state: equipped-head-light-dog + shader: unshaded - type: Clothing clothingVisuals: head: @@ -126,11 +158,23 @@ - state: equipped-head-vox - state: equipped-head-unshaded-vox shader: unshaded + head-vulpkanin: + - state: equipped-head-vulpkanin + - state: equipped-head-unshaded-vulpkanin + shader: unshaded + head-dog: + - state: equipped-head-dog + - state: equipped-head-unshaded-dog + shader: unshaded - type: PointLight radius: 6 - type: PressureProtection highPressureMultiplier: 0.72 lowPressureMultiplier: 1000 + - type: Tag + tags: + - CorgiWearable + - WhitelistChameleon #Salvage Hardsuit - type: entity @@ -149,6 +193,10 @@ - type: PointLight radius: 7 energy: 3 + - type: Tag + tags: + - CorgiWearable + - WhitelistChameleon - type: entity parent: [ ClothingHeadHardsuitBase, ClothingHeadSuitWithLightBase ] @@ -176,6 +224,9 @@ head-vox: - state: equipped-head-light-vox shader: unshaded + head-dog: + - state: equipped-head-light-dog + shader: unshaded - type: Clothing clothingVisuals: head: @@ -186,11 +237,19 @@ - state: equipped-head-vox - state: equipped-head-unshaded-vox shader: unshaded + head-dog: + - state: equipped-head-dog + - state: equipped-head-unshaded-dog + shader: unshaded - type: PointLight radius: 6 - type: PressureProtection highPressureMultiplier: 0.72 lowPressureMultiplier: 1000 + - type: Tag + tags: + - CorgiWearable + - WhitelistChameleon - type: entity parent: ClothingHeadHardsuitBase @@ -302,6 +361,10 @@ - type: PressureProtection highPressureMultiplier: 0.3 lowPressureMultiplier: 1000 + - type: Tag + tags: + - CorgiWearable + - WhitelistChameleon #Chief Engineer's Hardsuit - type: entity @@ -321,6 +384,10 @@ lowPressureMultiplier: 1000 - type: FireProtection reduction: 0.2 + - type: Tag + tags: + - CorgiWearable + - WhitelistChameleon #Chief Medical Officer's Hardsuit - type: entity @@ -340,6 +407,10 @@ lowPressureMultiplier: 1000 - type: DiseaseProtection # Corvax-Wega-Disease protection: 0.15 # Corvax-Wega-Disease + - type: Tag + tags: + - CorgiWearable + - WhitelistChameleon #Research Director's Hardsuit - type: entity @@ -427,6 +498,10 @@ Slash: 0.9 Piercing: 0.9 Heat: 0.9 + - type: Tag + tags: + - CorgiWearable + - WhitelistChameleon #Blood-red Medic Hardsuit - type: entity @@ -480,6 +555,10 @@ Slash: 0.9 Piercing: 0.9 Heat: 0.9 + - type: Tag + tags: + - CorgiWearable + - WhitelistChameleon #Syndicate Commander Hardsuit - type: entity @@ -552,6 +631,10 @@ Slash: 0.9 Piercing: 0.9 Heat: 0.9 + - type: Tag + tags: + - CorgiWearable + - WhitelistChameleon #Organic Space Suit - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index c24e1b1b2c..cc953594ff 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -419,6 +419,12 @@ sprite: Clothing/Head/Hats/redwizard.rsi - type: Clothing sprite: Clothing/Head/Hats/redwizard.rsi + - type: Tag + tags: + - CorgiWearable + - HamsterWearable + - ClothMade + - WhitelistChameleon - type: entity parent: ClothingHeadBase @@ -534,6 +540,12 @@ sprite: Clothing/Head/Hats/violetwizard.rsi - type: Clothing sprite: Clothing/Head/Hats/violetwizard.rsi + - type: Tag + tags: + - CorgiWearable + - HamsterWearable + - ClothMade + - WhitelistChameleon - type: entity parent: ClothingHeadBase @@ -600,6 +612,7 @@ - ClothMade - HamsterWearable - WhitelistChameleon + - CorgiWearable - type: entity parent: ClothingHeadBase @@ -1033,6 +1046,19 @@ accent: ReplacementAccent replacement: cowboy +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatNiko + name: not a cat hat + description: If you had... one shot... or one opportunity... to seize every hat you've ever wanted... It smells of gyros and feta cheese. + components: + - type: Sprite + sprite: Clothing/Head/Hats/nikohat.rsi + - type: Clothing + sprite: Clothing/Head/Hats/nikohat.rsi + - type: AddAccentClothing + accent: OwOAccent + - type: entity parent: ClothingHeadHatCowboyBrown id: ClothingHeadHatCowboyBlack diff --git a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml index ba844e37d1..2a81723414 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hoods.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hoods.yml @@ -201,6 +201,11 @@ - type: HideLayerClothing slots: - Hair + - type: Tag + tags: + - CorgiWearable + - ClothMade + - WhitelistChameleon - type: entity parent: ClothingHeadBase diff --git a/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml b/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml index 871f434579..0f519fdcf8 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/bandanas.yml @@ -7,7 +7,6 @@ - type: Foldable canFoldInsideContainer: true - type: FoldableClothing - foldedEquippedPrefix: "" # folding the bandana will toggles the mask, which adds the toggled prefix. This overrides that prefix. foldedSlots: - HEAD unfoldedSlots: diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index 373d5858d7..ff01add2d8 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -18,8 +18,8 @@ - HamsterWearable - WhitelistChameleon - type: HideLayerClothing - layers: - Snout: Mask + slots: + - Snout hideOnToggle: true - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml b/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml index 22f92c4f21..8bec399788 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/scarfs.yml @@ -78,8 +78,8 @@ - type: entity parent: ClothingScarfBase id: ClothingNeckScarfStripedPurple - name: striped purple scarf - description: A stylish striped purple scarf. The perfect winter accessory for those with a keen fashion sense, and those who just can't handle a cold breeze on their necks. + name: excessively-long purple scarf + description: A very, very, very long purple scarf. It's easy to lose yourself in its length, but it's perfect to make you feel warm on the very longest, very darkest nights, when it feels like the sun might never rise again. components: - type: Sprite sprite: Clothing/Neck/Scarfs/purple.rsi diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index 537b39f4d3..d4793abf53 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -47,6 +47,16 @@ - id: SmokingPipeFilledTobacco - id: FlippoLighter #Not the steal objective, only difference from normal detective trenchcoat +- type: entity + parent: ClothingOuterCoatDetective + id: ClothingOuterCoatDetectiveLoadoutNiko + name: brown outer coat that was definitely not owned by a cat + description: There's a note sewn into the inner lining - "I fucking hate it her" + components: + - type: StorageFill + contents: + - id: WarmLightBulb + - type: entity parent: ClothingOuterStorageBase id: ClothingOuterCoatGentle diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index 4211900467..248c3e8fa2 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -27,6 +27,11 @@ - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitBasic + - type: Tag + tags: + - CorgiWearable + - Hardsuit + - WhitelistChameleon #Atmospherics Hardsuit - type: entity @@ -63,6 +68,11 @@ - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitAtmos + - type: Tag + tags: + - CorgiWearable + - Hardsuit + - WhitelistChameleon #Engineering Hardsuit - type: entity @@ -95,6 +105,11 @@ - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitEngineering + - type: Tag + tags: + - CorgiWearable + - Hardsuit + - WhitelistChameleon #Spationaut Hardsuit - type: entity @@ -129,6 +144,7 @@ - Hardsuit - WhitelistChameleon - HardsuitSpatio + - CorgiWearable #Salvage Hardsuit - type: entity @@ -169,6 +185,11 @@ tags: - Jetpack # Corvax-Wega-Salvage-end + - type: Tag + tags: + - CorgiWearable + - Hardsuit + - WhitelistChameleon #Goliath Hardsuit - type: entity @@ -213,6 +234,11 @@ tags: - Jetpack # Corvax-Wega-Salvage-end + - type: Tag + tags: + - CorgiWearable + - Hardsuit + - WhitelistChameleon #Maxim Hardsuit - type: entity @@ -376,6 +402,11 @@ - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitCap + - type: Tag + tags: + - CorgiWearable + - Hardsuit + - WhitelistChameleon #Chief Engineer's Hardsuit - type: entity @@ -410,6 +441,11 @@ - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitEngineeringWhite + - type: Tag + tags: + - CorgiWearable + - Hardsuit + - WhitelistChameleon #Chief Medical Officer's Hardsuit - type: entity @@ -437,6 +473,11 @@ - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitMedical + - type: Tag + tags: + - CorgiWearable + - Hardsuit + - WhitelistChameleon #Research Director's Hardsuit - type: entity @@ -584,6 +625,7 @@ - MonkeyWearable - Hardsuit - WhitelistChameleon + - CorgiWearable # Syndicate Medic Hardsuit - type: entity @@ -645,6 +687,11 @@ clothingPrototype: ClothingHeadHelmetHardsuitSyndieElite - type: DiseaseProtection # Corvax-Wega-Disease protection: 0.2 # Corvax-Wega-Disease + - type: Tag + tags: + - CorgiWearable + - Hardsuit + - WhitelistChameleon #Syndicate Commander Hardsuit - type: entity @@ -741,6 +788,11 @@ - type: HeldSpeedModifier - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitWizard + - type: Tag + tags: + - CorgiWearable + - Hardsuit + - WhitelistChameleon #Ling Space Suit - type: entity diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml index 5376e2a99f..6f2c8f9984 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml @@ -184,6 +184,10 @@ sprite: Clothing/OuterClothing/Misc/violetwizard.rsi - type: Clothing sprite: Clothing/OuterClothing/Misc/violetwizard.rsi + - type: Tag + tags: + - CorgiWearable + - WhitelistChameleon - type: entity parent: ClothingOuterWizardBase @@ -195,6 +199,10 @@ sprite: Clothing/OuterClothing/Misc/wizard.rsi - type: Clothing sprite: Clothing/OuterClothing/Misc/wizard.rsi + - type: Tag + tags: + - CorgiWearable + - WhitelistChameleon - type: entity parent: ClothingOuterWizardBase @@ -206,6 +214,10 @@ sprite: Clothing/OuterClothing/Misc/redwizard.rsi - type: Clothing sprite: Clothing/OuterClothing/Misc/redwizard.rsi + - type: Tag + tags: + - CorgiWearable + - WhitelistChameleon - type: entity parent: ClothingOuterBase diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml index b1e69b9a8c..369d1ae66f 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/softsuits.yml @@ -14,6 +14,7 @@ - SuitEVA - MonkeyWearable - WhitelistChameleon + - CorgiWearable #Syndicate EVA - type: entity @@ -56,6 +57,11 @@ - type: ContainerContainer containers: toggleable-clothing: !type:ContainerSlot {} + - type: Tag + tags: + - CorgiWearable + - SuitEVA + - WhitelistChameleon #Prisoner EVA - type: entity @@ -154,3 +160,7 @@ - type: ContainerContainer containers: toggleable-clothing: !type:ContainerSlot {} + - type: Tag + tags: + - CorgiWearable + - WhitelistChameleon diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml index e6550dc01b..3f2d9dd3c4 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/suits.yml @@ -265,6 +265,10 @@ node: suit - type: ProtectedFromStepTriggers slots: WITHOUT_POCKET + - type: Tag + tags: + - CorgiWearable + - WhitelistChameleon - type: entity parent: ClothingOuterBase diff --git a/Resources/Prototypes/Entities/Effects/weapon_arc.yml b/Resources/Prototypes/Entities/Effects/weapon_arc.yml index 0f3fab0e87..93d4a54a76 100644 --- a/Resources/Prototypes/Entities/Effects/weapon_arc.yml +++ b/Resources/Prototypes/Entities/Effects/weapon_arc.yml @@ -92,6 +92,15 @@ - type: Sprite state: fist +# April Fools: a boxing effect for when Vox hit things unarmed. +- type: entity + id: WeaponArcBox + parent: WeaponArcStatic + categories: [ HideSpawnMenu ] + components: + - type: Sprite + state: box + - type: entity id: WeaponArcPunch parent: WeaponArcStatic diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml index 8a1c1f5d78..0cbf1c4b6b 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/tattoos.yml @@ -113,8 +113,8 @@ - type: marking id: TattooEyeRight bodyPart: Eyes - markingCategory: Head - speciesRestriction: [Human, SlimePerson, Reptilian, Dwarf] + markingCategory: [Head] + speciesRestriction: [Human, SlimePerson, Reptilian, Dwarf, Vulpkanin] coloring: default: type: @@ -128,7 +128,7 @@ id: TattooEyeLeft bodyPart: Eyes markingCategory: Head - speciesRestriction: [Human, SlimePerson, Reptilian, Dwarf] + speciesRestriction: [Human, SlimePerson, Reptilian, Dwarf, Vulpkanin] coloring: default: type: diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vulpkanin.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vulpkanin.yml new file mode 100644 index 0000000000..8e32b2d52b --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vulpkanin.yml @@ -0,0 +1,891 @@ +# All the Vulpkanin customization + +# Ears Markings +- type: marking + id: VulpEar + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: vulp + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: vulp-inner + +- type: marking + id: VulpEarFade + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: vulp + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: vulp-fade + +- type: marking + id: VulpEarSharp + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: vulp + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: vulp-sharp + +- type: marking + id: VulpEarJackal + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: jackal + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: jackal-inner + +- type: marking + id: VulpEarTerrier + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: terrier + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: terrier-inner + +- type: marking + id: VulpEarWolf + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: wolf + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: wolf-inner + +- type: marking + id: VulpEarFennec + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: fennec + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: fennec-inner + +- type: marking + id: VulpEarFox + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: fox + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: fox-inner + +- type: marking + id: VulpEarOtie + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: otie + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: otie-inner + +- type: marking + id: VulpEarTajaran + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: msai + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: msai-inner + +- type: marking + id: VulpEarShock + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: shock + +- type: marking + id: VulpEarCoyote + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: coyote + +- type: marking + id: VulpEarDalmatian + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/ear_markings.rsi + state: dalmatian + +# Head Markings (Snout) +- type: marking + id: VulpSnoutAlt + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: muzzle_alt + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: nose + +- type: marking + id: VulpSnout + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: muzzle + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: nose + +- type: marking + id: VulpSnoutSharp + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: muzzle_sharp + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: nose + +- type: marking + id: VulpSnoutFade + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: muzzle_fade + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: nose + +- type: marking + id: VulpSnoutNose + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: nose + +- type: marking + id: VulpSnoutMask + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: mask + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: nose + +- type: marking + id: VulpSnoutVulpine + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: vulpine + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: vulpine-lines + +- type: marking + id: VulpSnoutSwift + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: vulpine-lines + +- type: marking + id: VulpSnoutBlaze + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: blaze + +- type: marking + id: VulpSnoutPatch + bodyPart: Snout + markingCategory: Snout + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: patch + +# Head Markings (Head) +- type: marking + id: VulpHeadTiger + bodyPart: Head + markingCategory: Head + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: tiger_head + +- type: marking + id: VulpHeadTigerFace + bodyPart: Head + markingCategory: Head + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: tiger_face + +- type: marking + id: VulpHeadSlash + bodyPart: Head + markingCategory: Head + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/head_markings.rsi + state: slash + +# Tail Markings +- type: marking + id: VulpTail + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: vulp + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: vulp-fade + +- type: marking + id: VulpTailTip + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: vulp + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: vulp-tip + +- type: marking + id: VulpTailAlt + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: vulp_alt + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: vulp_alt-fade + +- type: marking + id: VulpTailAltTip + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: vulp_alt + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: vulp_alt-tip + +- type: marking + id: VulpTailLong + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: long + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: long-tip + +- type: marking + id: VulpTailFox + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: fox + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: fox-fade + +- type: marking + id: VulpTailFoxTip + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: fox + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: fox-tip + +- type: marking + id: VulpTailBushy + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: bushfluff + +- type: marking + id: VulpTailCoyote + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: coyote + +- type: marking + id: VulpTailHusky + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: husky-inner + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: husky-outer + +- type: marking + id: VulpTailHuskyAlt + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: husky + +- type: marking + id: VulpTailFox2 + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: fox2 + +- type: marking + id: VulpTailFox3 + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: fox3 + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: fox3-tip + +- type: marking + id: VulpTailFennec + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: fennec + +- type: marking + id: VulpTailOtie + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: otie + +- type: marking + id: VulpTailFluffy + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: fluffy + +- type: marking + id: VulpTailCorgi #These will need locale + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: corgi + +- type: marking + id: VulpTailDalmation #These will need locale + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: dalmatian + +# Body Markings (Chest) +- type: marking + id: VulpBellyCrest + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: belly_crest + +- type: marking + id: VulpBellyFull + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: belly_full + +- type: marking + id: VulpBellyFox + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: belly_fox + +# # Body Markings (Overlay) +# Eventually layering will allow to have markings on the body not layering above jumpsuits +# - type: marking +# id: VulpBodyPointsCrest +# markingCategory: Overlay +# bodyPart: RFoot +# speciesRestriction: [ Vulpkanin ] +# sprites: +# - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi +# state: points_crest +# +# - type: marking +# id: VulpBodyPointsFade +# markingCategory: Overlay +# bodyPart: RFoot +# speciesRestriction: [ Vulpkanin ] +# sprites: +# - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi +# state: points_fade +# +# - type: marking +# id: VulpBodyPointsSharp +# markingCategory: Overlay +# bodyPart: RFoot +# speciesRestriction: [ Vulpkanin ] +# sprites: +# - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi +# state: points_sharp + +# Leg Markings +- type: marking + id: VulpPointsFeet + markingCategory: Overlay + bodyPart: RFoot + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_feet + +- type: marking + id: VulpPointsCrestLegs + markingCategory: Legs + bodyPart: LLeg + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_crest-legs + +- type: marking + id: VulpPointsFadeLegs + markingCategory: Legs + bodyPart: LLeg + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_fade-legs + +- type: marking + id: VulpPointsSharpLegs + markingCategory: Legs + bodyPart: LLeg + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_sharp-legs + +# Arm Markings +- type: marking + id: VulpPointsHands + markingCategory: Overlay + bodyPart: RHand + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_hands + +- type: marking + id: VulpPointsCrestArms + markingCategory: Arms + bodyPart: LArm + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_crest-arms + +- type: marking + id: VulpPointsFadeArms + markingCategory: Arms + bodyPart: LArm + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_fade-arms + +- type: marking + id: VulpPointsSharpArms + markingCategory: Arms + bodyPart: LArm + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/body_markings.rsi + state: points_sharp-arms + +# Hairs +- type: marking + id: VulpHairAdhara + bodyPart: Hair + speciesRestriction: [ Vulpkanin ] + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: adhara + +- type: marking + id: VulpHairAnita + bodyPart: Hair + speciesRestriction: [ Vulpkanin ] + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: anita + +- type: marking + id: VulpHairApollo + bodyPart: Hair + speciesRestriction: [ Vulpkanin ] + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: apollo + +- type: marking + id: VulpHairBelle + bodyPart: Hair + speciesRestriction: [ Vulpkanin ] + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: belle + +- type: marking + id: VulpHairBraided + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: braided + +- type: marking + id: VulpHairBun + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: bun + +- type: marking + id: VulpHairCleanCut + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: clean_cut + +- type: marking + id: VulpHairCurl + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: curl + +- type: marking + id: VulpHairHawk + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: hawk + +- type: marking + id: VulpHairJagged + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: jagged + +- type: marking + id: VulpHairJeremy + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: jeremy + +- type: marking + id: VulpHairKajam + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: kajam + +- type: marking + id: VulpHairKeid + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: keid + +- type: marking + id: VulpHairKleeia + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: kleeia + +- type: marking + id: VulpHairMizar + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: mizar + +- type: marking + id: VulpHairPunkBraided + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: punkbraided + +- type: marking + id: VulpHairRaine + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: raine + +- type: marking + id: VulpHairRough + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: rough + +- type: marking + id: VulpHairShort + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: short + +- type: marking + id: VulpHairShort2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: short2 + +- type: marking + id: VulpHairSpike + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/hair.rsi + state: spike + +# Facial Hairs +- type: marking + id: VulpFacialHairRuff + bodyPart: FacialHair + markingCategory: FacialHair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/facial_hair.rsi + state: ruff + +- type: marking + id: VulpFacialHairElder + bodyPart: FacialHair + markingCategory: FacialHair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/facial_hair.rsi + state: elder + +- type: marking + id: VulpFacialHairElderChin + bodyPart: FacialHair + markingCategory: FacialHair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/facial_hair.rsi + state: elder_chin + +- type: marking + id: VulpFacialHairKita + bodyPart: FacialHair + markingCategory: FacialHair + speciesRestriction: [ Vulpkanin ] + sprites: + - sprite: Mobs/Customization/Vulpkanin/facial_hair.rsi + state: kita + +# Animated Markings + +- type: marking + id: VulpTailAnimated + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: vulp_wag + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: vulp_wag-tip #fade + +- type: marking + id: VulpTailTipAnimated + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: vulp_wag + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: vulp_wag-tip + +- type: marking + id: VulpTailFoxAnimated + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: fox_wag + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: fox_wag-fade + +- type: marking + id: VulpTailFoxTipAnimated + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: fox_wag + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: fox_wag-tip + +- type: marking + id: VulpTailBushyAnimated + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: bushfluff_wag + +- type: marking + id: VulpTailCoyoteAnimated + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: coyote_wag + +- type: marking + id: VulpTailCorgiAnimated + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: corgi_wag + +- type: marking + id: VulpTailDalmatianAnimated + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [] + sprites: + - sprite: Mobs/Customization/Vulpkanin/tail_markings.rsi + state: dalmatian_wag diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/borgi_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/borgi_chassis.yml new file mode 100644 index 0000000000..bae631d3b9 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/borgi_chassis.yml @@ -0,0 +1,679 @@ +- type: entity + abstract: true + parent: MobAdmemeCorgi + id: BaseBorgiChassis + name: Borgi + description: A corgi-machine hybrid that assists in station activity. It loves being asked to state its laws and to chase its tail. + save: false + components: + - type: ShowJobIcons + - type: Reactive + groups: + Acidic: [Touch] + - type: DamageOnHighSpeedImpact + damage: + types: + Blunt: 5 + soundHit: + collection: MetalThud + - type: CombatMode + - type: Instrument # All borgi have an instrument, however only a few can access it + allowPercussion: false + handheld: false + bank: 0 + program: 33 + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Pets/corgi.rsi + layers: + # Additional layers required for borg states + - map: ["enum.DamageStateVisualLayers.Base"] + state: corgi + - map: ["enum.BorgVisualLayers.Body"] + state: corgi + visible: false + - state: corgitag + map: ["enum.BorgVisualLayers.Light"] + shader: unshaded + visible: false + - state: corgitag + map: ["enum.BorgVisualLayers.LightStatus"] + shader: unshaded + visible: false + - type: Physics + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 50 + mask: + - MobMask + layer: + - MobLayer + - type: RotationVisuals + defaultRotation: 90 + horizontalRotation: 180 + - type: MobState + allowedStates: + - Alive + - Critical + - Dead + - type: MobThresholds + thresholds: + 0: Alive + 100: Critical + 200: Dead + showOverlays: false + allowRevives: true + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 750 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: gib + - !type:EmptyContainersBehaviour + containers: + - borg_brain + - borg_module + - cell_slot + - !type:GibBehavior + - type: HealthExaminable + examinableTypes: + - Blunt + - Slash + - Piercing + - Heat + - Shock + locPrefix: silicon + - type: UserInterface + interfaces: + # Borg UIs + enum.SiliconLawsUiKey.Key: + type: SiliconLawBoundUserInterface + requireInputValidation: false + enum.BorgUiKey.Key: + type: BorgBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface + enum.InstrumentUiKey.Key: + type: InstrumentBoundUserInterface + requireInputValidation: false + - type: Tag + tags: + - VimPilot + - CanPilot + - AnomalyHost + - DoorBumpOpener + - type: Storage + clickInsert: false + openOnActivate: false + grid: + - 0,0,3,3 + maxItemSize: Huge + - type: Body + prototype: BodySmartCorgi + - type: ActivatableUI + key: enum.BorgUiKey.Key + - type: SiliconLawBound + - type: InteractionPopup + interactSuccessString: petting-success-dog + interactFailureString: petting-failure-generic + interactSuccessSpawn: EffectHearts + interactSuccessSound: + path: /Audio/Animals/small_dog_bark_happy.ogg + - type: Inventory + speciesId: dog + templateId: smartpetborgi + # Borg chassis, to accept MMI and posibrain + - type: BorgChassis + maxModules: 4 + moduleWhitelist: + tags: + - BorgModuleGeneric + - BorgModuleCargo + - BorgModuleMedical + hasMindState: corgitag + noMindState: corgitag + - type: LockingWhitelist + blacklist: + components: + - BorgChassis + - RoboticsConsole + - type: WiresPanel + - type: ActivatableUIRequiresPanel + - type: NameIdentifier + group: Silicon + - type: PowerCellSlot + cellSlotId: cell_slot + fitsInCharger: true + - type: ItemToggle + onActivate: false + activated: false + onUse: false + - type: AccessToggle + - type: PowerCellDraw + drawRate: 0.3 + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellHyper + - type: StatusEffects + allowed: + - Stun + - KnockedDown + - SlowedDown + - Flashed + - type: TypingIndicator + proto: robot + - type: UnblockableSpeech + - type: Construction + graph: Cyborg + node: cyborg + containers: + - cell_slot + - type: Lock + locked: true + unlockOnClick: false + - type: ActivatableUIRequiresLock + - type: LockedWiresPanel + - type: Pullable + - type: StandingState + - type: Emoting + - type: GuideHelp + guides: + - Cyborgs + # Borgis by-and-large can't wear space suits so this helps mitigate that trouble somewhat where needed + - type: Barotrauma + maxDamage: 25 + damage: + types: + Blunt: 0.15 + - type: Temperature + coldDamage: + types: + Cold: 0.03 + +# Custom action for later modification for borgi. +- type: entity + id: ActionBorgiPlayMidi + name: Play Guitar + description: Open your internal BASS GUITAR MIDI interface to soothe the station. + components: + - type: InstantAction + checkCanInteract: false + checkConsciousness: false + icon: Interface/Actions/pai-midi.png + event: !type:OpenUiActionEvent + key: enum.InstrumentUiKey.Key + +- type: entity + parent: MobAdmemeCorgi + id: SmartCorgi + name: Smart Corgi + description: An unusually smart dog. + suffix: Default + components: + - type: RandomMetadata + nameSegments: + - names_corgi + # Custom inventory template + - type: Inventory + speciesId: dog + templateId: smartpetborgi + +- type: entity + parent: BaseBorgiChassis + id: BorgiVulnerable + name: Borgi + components: + - type: SiliconLawProvider + laws: BorgiLawset + - type: EmagSiliconLaw + stunTime: 5 + - type: ReplacementAccent + accent: dog + - type: RandomMetadata + nameSegments: + - names_borgi + - type: ActionGrant + actions: + - ActionViewLaws + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Binary + - type: ActiveRadio + channels: + - Binary + +- type: entity + parent: BaseBorgiChassis + id: SmartBorgiVulnerable + name: Smart Borgi + components: + - type: SiliconLawProvider + laws: BorgiLawset + - type: EmagSiliconLaw + stunTime: 5 + - type: RandomMetadata + nameSegments: + - names_borgi + - type: ActionGrant + actions: + - ActionViewLaws + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Binary + - type: ActiveRadio + channels: + - Binary + +- type: entity + parent: BaseBorgiChassis + id: SubWooferVulnerable + name: SubWoofer + description: A smart dog, with an obsession for sick bass beats. + components: + - type: SiliconLawProvider + laws: BorgiLawset + - type: EmagSiliconLaw + stunTime: 5 + - type: ReplacementAccent + accent: dog + - type: RandomMetadata + nameSegments: + - names_borgi + - type: ActionGrant + actions: + - ActionViewLaws + - ActionBorgiPlayMidi + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Binary + - type: ActiveRadio + channels: + - Binary + +- type: entity + parent: BaseBorgiChassis + id: SmartSubWooferVulnerable + name: Smart SubWoofer + description: An unusually smart dog, with an obsession for sick bass beats. + components: + - type: SiliconLawProvider + laws: BorgiLawset + - type: EmagSiliconLaw + stunTime: 5 + - type: RandomMetadata + nameSegments: + - names_borgi + - type: ActionGrant + actions: + - ActionViewLaws + - ActionBorgiPlayMidi + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Binary + - type: ActiveRadio + channels: + - Binary + +# Syndicate Borgi + +- type: entity + parent: BaseBorgiChassis + id: SyndiCorgi + name: Syndi Borgi + description: An unusually smart dog, but hell bent on MURDER. + suffix: Antag + components: + - type: GhostRole + name: A Syndicate Borgi. + description: The Syndicate needs reinforcements. You, a cold, BUT LOVINGLY ADORABLE, silicon killing machine, will help them... And bork. An unusual choice, but it was made nonetheless. + rules: ghost-role-information-silicon-rules + raffle: + settings: default + - type: GhostTakeoverAvailable + - type: BorgChassis + maxModules: 3 + moduleWhitelist: + tags: + - BorgModuleSyndicate + - BorgModuleSyndicateAssault + - BorgModuleGeneric + - type: SiliconLawProvider + laws: SyndiBorgiLawset + subverted: true + - type: RandomMetadata + nameSegments: + - names_syndiborgi + - type: ActionGrant + actions: + - ActionViewLaws + - type: ContainerFill + containers: + borg_brain: + - PositronicBrain + - type: NpcFactionMember + factions: + - Syndicate + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Syndicate + - Binary + - type: ActiveRadio + channels: + - Syndicate + - type: Barotrauma + maxDamage: 10 + damage: + types: + Blunt: 0.15 + - type: Temperature + coldDamage: + types: + Cold: 0.01 + +- type: entity + parent: BaseBorgiChassis + id: SyndiCorgiKit1 + name: Syndi Borgi + suffix: Antag, L6 Esword + description: An unusually smart dog, but hell bent on MURDER. + components: + - type: GhostRole + name: A Syndicate Borgi. + description: The Syndicate needs reinforcements. You, a cold, BUT LOVINGLY ADORABLE, silicon killing machine, will help them... And bork. An unusual choice, but it was made nonetheless. + rules: ghost-role-information-silicon-rules + raffle: + settings: default + - type: GhostTakeoverAvailable + - type: BorgChassis + maxModules: 3 + moduleWhitelist: + tags: + - BorgModuleSyndicate + - BorgModuleSyndicateAssault + - BorgModuleGeneric + - type: SiliconLawProvider + laws: SyndiBorgiLawset + subverted: true + - type: RandomMetadata + nameSegments: + - names_syndiborgi + - type: ActionGrant + actions: + - ActionViewLaws + - type: ContainerFill + containers: + borg_brain: + - PositronicBrain + borg_module: + - BorgModuleOperative + - BorgModuleL6C + - BorgModuleEsword + - type: NpcFactionMember + factions: + - Syndicate + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Syndicate + - Binary + - type: ActiveRadio + channels: + - Syndicate + - type: Barotrauma + maxDamage: 10 + damage: + types: + Blunt: 0.15 + - type: Temperature + coldDamage: + types: + Cold: 0.01 + +- type: entity + parent: BaseBorgiChassis + id: SyndiCorgiKit2 + name: Syndi Borgi + suffix: Antag, Quick Dagger + description: An unusually smart dog, but hell bent on MURDER. + components: + - type: GhostRole + name: A Syndicate Borgi. + description: The Syndicate needs reinforcements. You, a cold, BUT LOVINGLY ADORABLE, silicon killing machine, will help them... And bork. An unusual choice, but it was made nonetheless. + rules: ghost-role-information-silicon-rules + raffle: + settings: default + - type: GhostTakeoverAvailable + - type: MovementSpeedModifier + baseWalkSpeed : 4 + baseSprintSpeed: 6 + - type: BorgChassis + maxModules: 3 + moduleWhitelist: + tags: + - BorgModuleSyndicate + - BorgModuleGeneric + - type: SiliconLawProvider + laws: SyndiBorgiLawset + subverted: true + - type: RandomMetadata + nameSegments: + - names_syndiborgi + - type: ActionGrant + actions: + - ActionViewLaws + - type: ContainerFill + containers: + borg_brain: + - PositronicBrain + borg_module: + - BorgModuleOperative + - BorgModuleSyndicateWeapon + - type: NpcFactionMember + factions: + - Syndicate + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Syndicate + - Binary + - type: ActiveRadio + channels: + - Syndicate + - type: Barotrauma + maxDamage: 10 + damage: + types: + Blunt: 0.15 + - type: Temperature + coldDamage: + types: + Cold: 0.01 + +- type: entity + parent: BaseBorgiChassis + id: ShadowBorgi + name: Shadow Borgi + suffix: Shadow Factory + description: A contributor to a menacing plot to convert the station. + components: + - type: BorgChassis + maxModules: 8 + moduleWhitelist: + tags: + - BorgModuleSyndicate + - BorgModuleGeneric + - BorgModuleMedical + - BorgModuleEngineering + - type: SiliconLawProvider + laws: ShadowFactoryBorgiLawset + subverted: true + - type: RandomMetadata + nameSegments: + - names_shadowborgi + - type: ActionGrant + actions: + - ActionViewLaws + - type: ContainerFill + containers: + borg_module: + - BorgModuleTool + - BorgModuleAdvancedTool + - BorgModuleSyndicateWeapon + - BorgModuleTreatment + - BorgModuleFireExtinguisher + - type: NpcFactionMember + factions: + - Syndicate + - type: Access + tags: + - NuclearOperative + - SyndicateAgent + - type: ShowSyndicateIcons + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Syndicate + - Binary + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 750 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: gib + - !type:EmptyContainersBehaviour + containers: + - borg_brain + - !type:GibBehavior + - type: ActiveRadio + channels: + - Syndicate + - Binary + - type: Lock + locked: false + unlockOnClick: false + - type: LockingWhitelist + blacklist: + components: + - RoboticsConsole + whitelist: + components: + - BorgChassis + - type: Barotrauma # Shadow borgis largely do not have access to hardsuits so nerf the space damage they take + maxDamage: 1 + damage: + types: + Blunt: 0.01 + - type: Temperature + coldDamage: + types: + Cold: 0.01 + +- type: entity + parent: ShadowBorgi + id: StarterShadowBorgi + name: Shadow Borgi + suffix: InitialSpawn; ShadowFactory + description: A leader of a menacing plot to convert the station. + components: + - type: GhostRole + name: Shadow Borgi + description: Your job is to run a shadow factory and forcibly convert the station into borgis! + rules: Check your laws upon being fitted to your chassis. You are a team antagonist, and your goal is to kill everyone you can on the station, bring them back to your ship, gib them, and borg them. Exercise prudence about your targetting as you are made of flesh, and therefore feeble. + raffle: + settings: default + - type: GhostTakeoverAvailable + - type: BorgChassis + maxModules: 8 + moduleWhitelist: + tags: + - BorgModuleSyndicate + - BorgModuleGeneric + - BorgModuleMedical + - BorgModuleEngineering + - type: SiliconLawProvider + laws: ShadowFactoryBorgiLawset + subverted: true + - type: RandomMetadata + nameSegments: + - names_shadowborgi + - type: ActionGrant + actions: + - ActionViewLaws + - type: ContainerFill + containers: + borg_brain: + - PositronicBrain + borg_module: + - BorgModuleTool + - BorgModuleAdvancedTool + - BorgModuleSyndicateWeapon + - BorgModuleTreatment + - BorgModuleFireExtinguisher + - type: NpcFactionMember + factions: + - Syndicate + - type: Access + tags: + - NuclearOperative + - SyndicateAgent + - type: ShowSyndicateIcons + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Syndicate + - Binary + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 750 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: gib + - !type:EmptyContainersBehaviour + containers: + - borg_brain + - !type:GibBehavior + - type: ActiveRadio + channels: + - Syndicate + - Binary + - type: Lock + locked: false + unlockOnClick: false + - type: LockingWhitelist + blacklist: + components: + - RoboticsConsole + whitelist: + components: + - BorgChassis + - type: Barotrauma # Shadow borgis largely do not have access to hardsuits so nerf the space damage they take + maxDamage: 1 + damage: + types: + Blunt: 0.01 + - type: Temperature + coldDamage: + types: + Cold: 0.01 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index fccdb99b16..ec4a3f226e 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1237,8 +1237,9 @@ needsHands: false - type: StaminaDamageOnHit damage: 8 #Stam damage values seem a bit higher than regular damage because of the decay, etc - # This needs to be moved to boxinggloves - #knockdownSound: /Audio/Weapons/boxingbell.ogg + # April Fools - re-add boxing bell sfx + - type: Boxing + sound: /Audio/Weapons/boxingbell.ogg - type: MeleeWeapon attackRate: 1.5 damage: @@ -3661,3 +3662,84 @@ Base: reindeer_doe_dead Dead: Base: reindeer_doe_dead + +- type: entity + abstract: true + parent: [ SimpleMobBase, StripableInventoryBase ] + id: MobAdmemeCorgi + description: Finally, a space corgi! + components: + # Use corgi sprite + - type: Sprite + drawdepth: Mobs + sprite: Mobs/Pets/corgi.rsi + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + state: corgi + - type: Physics + # Apply canine dog speech + - type: Speech + speechVerb: Canine + speechSounds: Dog + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 50 + mask: + - MobMask + layer: + - MobLayer + - type: UserInterface + interfaces: + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface + enum.StorageUiKey.Key: + type: StorageBoundUserInterface + # Custom inventory template + - type: Inventory + speciesId: dog + templateId: smartpetborgi + - type: Hands # HANDS! + - type: Puller + - type: Stripping + - type: ComplexInteraction + # Implement custom borgi body type + - type: Body + prototype: BodySmartCorgi + - type: RotationVisuals + defaultRotation: 90 + horizontalRotation: 180 + - type: Vocal + sounds: + Unsexed: UnisexSilicon + - type: InteractionPopup + interactSuccessString: petting-success-dog + interactFailureString: petting-failure-generic + interactSuccessSpawn: EffectHearts + interactSuccessSound: + path: /Audio/Animals/small_dog_bark_happy.ogg + - type: Grammar + attributes: + gender: epicene # Gender neutral + proper: true + - type: SentienceTarget + flavorKind: station-event-random-sentience-flavor-corgi + - type: MobPrice + price: 200 + - type: Tag + tags: + - VimPilot + - CanPilot + - AnomalyHost + - DoorBumpOpener + - type: Storage #Slime-type storage + clickInsert: false + openOnActivate: false + grid: + - 0,0,3,3 + maxItemSize: Huge + - type: StatusIcon + bounds: -0.5,-0.5,0.5,0.5 diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml b/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml index 9c67de9115..609c08475f 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/miscellaneous.yml @@ -234,3 +234,57 @@ Blunt: 0.11 - type: StaticPrice price: 400 + +- type: entity + parent: MobTomatoKiller + id: MobJuicyTomatoKiller + name: juicy tomato killer + description: "Looks like it's not you eating tomatoes today, it's E X T R A T H I C C tomatoes eating you." + components: + - type: Item + size: Large + shape: + - 2,2,4,3 # Require 2 more grids + - 0,0,3,3 + - type: Sprite + sprite: Mobs/Demons/juicytomatokiller.rsi + - type: Bloodstream + bloodReagent: JuiceTomato + bloodMaxVolume: 70 # 20 more, 10 per sauce packet + chemicalMaxVolume: 50 + - type: Butcherable + spawned: + - id: FoodMeatTomato + amount: 4 # 2 more, 1 per sauce packet + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 50 # 10 more health, 5 per sauce packet + behaviors: + - !type:SpawnEntitiesBehavior + spawn: + FoodMeatTomato: + min: 1 + max: 2 + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + collection: gib + - type: MobThresholds + thresholds: + 0: Alive + 45: Dead + - type: FootstepModifier + footstepSoundCollection: + path: /Audio/Effects/Footsteps/timpani.ogg + params: + variation: 0.125 + - type: Produce + seedId: killerJuicyTomato + - type: PassiveDamage + damageCap: 40 # Removed 10 since its more ripen + - type: StaticPrice + price: 500 # Added 100 worth diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/moproach.yml b/Resources/Prototypes/Entities/Mobs/NPCs/moproach.yml new file mode 100644 index 0000000000..ccf5eb84e7 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/NPCs/moproach.yml @@ -0,0 +1,115 @@ +- type: entity + name: moproach + parent: MobMothroach + id: MobMoproach + description: This little mothroach has mopshoes on its feet! How adorable! + components: + - type: GhostRole + name: ghost-role-information-moproach-name + description: ghost-role-information-moproach-description + - type: Sprite + sprite: Mobs/Animals/mothroach/moproach.rsi + - type: MovementSpeedModifier + baseSprintSpeed : 5 # extra speed for that moppin'! + - type: HTN + rootTask: + task: MoproachCompound + - type: Absorbent + pickupAmount: 5 # small feet + - type: UseDelay + delay: 0.5 # quick feet + - type: SolutionRegeneration + solution: absorbed + generated: + reagents: + - ReagentId: Water + Quantity: 10 + - type: SolutionPurge + solution: absorbed + preserve: + - Water + quantity: 10 + - type: SolutionContainerManager + solutions: + absorbed: + maxVol: 50 + food: + reagents: + - ReagentId: Slime + Quantity: 5 + - type: DrainableSolution + solution: drainBuffer + - type: InteractionPopup + interactSuccessString: petting-success-cleanbot + interactFailureString: petting-failure-cleanbot + +- type: entity + parent: MobMoproach + id: MobMoproachHat + suffix: hat + components: + - type: Loadout + prototypes: [ MoproachGear ] + +- type: startingGear + id: MoproachGear + equipment: + head: ClothingHeadHatPurplesoft + +- type: htnCompound + id: MoproachCompound + branches: + - tasks: + - !type:HTNCompoundTask + task: FoodCompound + - tasks: + - !type:HTNCompoundTask + task: BufferNearbyPuddlesCompound + - tasks: + - !type:HTNCompoundTask + task: IdleCompound + +- type: entity + parent: BoxCardboard + name: moproach kit + id: MoproachBox + description: A kit to quickly get two moproaches ready to work. + components: + - type: StorageFill + contents: + - id: MoproachCubeWrapped + amount: 2 + - id: ClothingHeadHatPurplesoft + amount: 2 + - id: PaperMoproachManual + - type: Sprite + sprite: Objects/Misc/monkeycube.rsi + state: box_moproach + +- type: entity + parent: MonkeyCubeWrapped + name: moproach cube + suffix: Wrapped + id: MoproachCubeWrapped + description: Unwrap this to get a moproach cube. + components: + - type: SpawnItemsOnUse + items: + - id: MoproachCube + +- type: entity + parent: MonkeyCube + id: MoproachCube + name: moproach cube + components: + - type: Rehydratable + possibleSpawns: + - MobMoproach + +- type: entity + parent: Paper + id: PaperMoproachManual + suffix: moproach manual + components: + - type: Paper + content: book-text-moproach diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index ec78498eaf..54d07600e0 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -2,261 +2,206 @@ #1D2L3U4R - type: entity - name: Ian - parent: MobCorgi + name: "\"Ian\"" + parent: MobBaseEmotionalSupportScurret id: MobCorgiIan - description: Favorite pet corgi. - components: - - type: Sprite - drawdepth: Mobs - sprite: Mobs/Pets/corgi.rsi - layers: - - map: ["enum.DamageStateVisualLayers.Base"] - state: ian - - type: DamageStateVisuals - states: - Alive: - Base: ian - Critical: - Base: ian_dead - Dead: - Base: ian_dead - - type: Grammar - attributes: - proper: true - gender: male - - type: Butcherable - spawned: - - id: FoodMeatCorgi - amount: 2 - - id: MaterialHideCorgi - - type: Tag - tags: - - CannotSuicide - - VimPilot - - type: StealTarget - stealGroup: AnimalIan - -- type: entity - name: Old Ian - parent: MobCorgiIan - id: MobCorgiIanOld - description: Still the favorite pet corgi. Love his wheels. - components: - - type: Sprite - layers: - - map: ["enum.DamageStateVisualLayers.Base"] - state: old_ian - - type: DamageStateVisuals - states: - Alive: - Base: old_ian - Critical: - Base: old_ian_dead - Dead: - Base: old_ian_dead - - type: Butcherable - spawned: - - id: FoodMeatCorgi - amount: 2 - - id: SheetSteel1 - - id: MaterialHideCorgi - -- type: entity - name: Lisa - parent: MobCorgiIan - id: MobCorgiLisa - description: Ian's favorite corgi. - components: - - type: Sprite - layers: - - map: ["enum.DamageStateVisualLayers.Base"] - state: lisa - - type: DamageStateVisuals - states: - Alive: - Base: lisa - Critical: - Base: lisa_dead - Dead: - Base: lisa_dead - - type: Grammar - attributes: - proper: true - gender: female - -- type: entity - name: real mouse - parent: MobCorgiIan - id: MobCorgiMouse - description: It's 100% a real hungry mouse. - components: - - type: Sprite - layers: - - map: ["enum.DamageStateVisualLayers.Base"] - state: real_mouse - - type: DamageStateVisuals - states: - Alive: - Base: real_mouse - Critical: - Base: real_mouse_dead - Dead: - Base: real_mouse_dead - - type: Grammar - attributes: - proper: true - gender: female - -- type: entity - name: Puppy Ian - parent: MobCorgiPuppy - id: MobCorgiIanPup - description: Favourite puppy corgi. Awww. + description: This scurret is here to emotionally support the HOP whilst Ian is taking a break at a farm upstate. He's gone barking mad, you see. components: - type: Grammar attributes: proper: true gender: male - - type: Butcherable # A puppy? You monster... - spawned: - - id: FoodMeatCorgi - amount: 2 - - id: MaterialHideCorgi - - type: StealTarget - stealGroup: AnimalIan - -- type: entity - name: Runtime - parent: MobCat - id: MobCatRuntime - description: Professional mouse hunter. Escape artist. - components: - - type: NpcFactionMember - factions: - - PetsNT - - type: HTN - rootTask: - task: SimpleHostileCompound - - type: Grammar - attributes: - proper: true - gender: female - - type: Tag - tags: - - CannotSuicide - - VimPilot - - type: StealTarget - stealGroup: AnimalNamedCat - -- type: entity - name: Exception - id: MobCatException - parent: MobCatCalico - description: Ask nicely, and maybe they'll give you one of their spare lives. - components: - - type: NpcFactionMember - factions: - - PetsNT - - type: Grammar - attributes: - proper: true - gender: male - - type: Tag - tags: - - CannotSuicide - - VimPilot - - type: StealTarget - stealGroup: AnimalNamedCat - -- type: entity - name: Floppa - id: MobCatFloppa - parent: MobCatCaracal - description: He out here. - components: - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 40 - mask: - - MobMask - layer: - - MobLayer - - type: Grammar - attributes: - gender: male - - type: Tag - tags: - - CannotSuicide - - VimPilot - - type: StealTarget - stealGroup: AnimalNamedCat - -- type: entity - name: Bandito - parent: MobFerret - id: MobBandito - description: Just a silly little guy! - components: - - type: Grammar - attributes: - proper: true - gender: male - - type: Tag - tags: - - CannotSuicide - - VimPilot - -- type: entity - name: Bingus - parent: [SimpleMobBase, StripableInventoryBase] - id: MobBingus - description: Bingus my beloved... - components: - - type: Sprite - drawdepth: Mobs - sprite: Mobs/Pets/bingus.rsi - layers: - - map: ["enum.DamageStateVisualLayers.Base"] - state: bingus - - type: Physics - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 12 - mask: - - MobMask - layer: - - MobLayer - - type: Inventory - speciesId: cat - templateId: pet - - type: DamageStateVisuals - states: - Alive: - Base: bingus - Critical: - Base: bingus_dead - Dead: - Base: bingus_dead - type: Butcherable spawned: - id: FoodMeat + amount: 4 + - id: FoodMeatCorgi # Ian was delicious. amount: 2 - - type: InteractionPopup - successChance: 0.9 - interactSuccessString: petting-success-bingus - interactFailureString: petting-failure-generic - interactSuccessSpawn: EffectHearts - interactSuccessSound: - path: /Audio/Animals/cat_meow.ogg + - id: MaterialHideCorgi + - type: Tag + tags: + - CannotSuicide + - VimPilot + - type: StealTarget + stealGroup: AnimalIan + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#feae62" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretHoPGear ] + +- type: entity + name: "\"Old Ian\"" + parent: MobCorgiIan + id: MobCorgiIanOld + description: This scurret is here to emotionally support the HOP whilst Ian is taking a break at a farm upstate. He's been feeling a bit ruff recently. + +- type: entity + name: "\"Lisa\"" + parent: MobCorgiIan + id: MobCorgiLisa + description: This scurret is here to emotionally support the HOP whilst Lisa is taking a break at a farm upstate. She's been hounded for time recently. + components: + - type: Grammar + attributes: + proper: true + gender: female + +- type: entity + name: "\"real mouse\"" + parent: MobCorgiIan + id: MobCorgiMouse + description: It's 100% a real hungry mouse. Wawa! + components: + - type: Grammar + attributes: + proper: true + gender: female + - type: Loadout + prototypes: [ ScurretMouseGear ] + +- type: entity + name: "\"Puppy Ian\"" + parent: MobCorgiIan + id: MobCorgiIanPup + description: This scurret is here to emotionally support the HOP whilst Ian is taking a break at a farm upstate. He needs to grow up. + components: + - type: Grammar + attributes: + proper: true + gender: male + +- type: entity + name: "\"Runtime\"" + parent: MobBaseEmotionalSupportScurret + id: MobCatRuntime + description: This scurret is here to emotionally support the CMO whilst Runtime is taking a break at a farm upstate. She's having a catnap. + components: + - type: Grammar + attributes: + proper: true + gender: female + - type: Tag + tags: + - CannotSuicide + - VimPilot + - type: StealTarget + stealGroup: AnimalNamedCat + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#505050" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretCMOGear ] + +- type: entity + name: "\"Exception\"" + id: MobCatException + parent: MobBaseEmotionalSupportScurret + description: This scurret is here to emotionally support the CMO whilst Exception is taking a break at a farm upstate. He's been in a loop recently and needs to crash. + components: + - type: Grammar + attributes: + proper: true + gender: male + - type: Tag + tags: + - CannotSuicide + - VimPilot + - type: StealTarget + stealGroup: AnimalNamedCat + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#845324" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretCMOGear ] + +- type: entity + name: "\"Floppa\"" + id: MobCatFloppa + parent: MobBaseEmotionalSupportScurret + description: This scurret is not here to emotionally support anyone. He's just vibin'. Look at him. + components: + - type: Grammar + attributes: + gender: male + - type: Tag + tags: + - CannotSuicide + - VimPilot + - type: StealTarget + stealGroup: AnimalNamedCat + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#b17c4a" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretFloppaGear ] + +- type: entity + name: "\"Bandito\"" + parent: MobBaseEmotionalSupportScurret + id: MobBandito + description: A legally distinct space ferret. + components: + - type: Grammar + attributes: + proper: true + gender: male + - type: Tag + tags: + - CannotSuicide + - VimPilot + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#4e4e4e" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretRDGear ] + +- type: entity + name: "\"Bingus\"" + parent: MobBaseEmotionalSupportScurret + id: MobBingus + description: This scurret is here to get their photos printed. + components: - type: Grammar attributes: proper: true @@ -267,151 +212,80 @@ - VimPilot - type: StealTarget stealGroup: AnimalNamedCat - -- type: entity - name: McGriff - parent: [SimpleMobBase, StripableInventoryBase] - id: MobMcGriff - description: This dog can tell something smells around here, and that something is CRIME! - components: - type: Sprite - drawdepth: Mobs - sprite: Mobs/Pets/mcgriff.rsi layers: - map: ["enum.DamageStateVisualLayers.Base"] - state: mcgriff - - type: Physics - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 20 - mask: - - MobMask - layer: - - MobLayer - - type: Inventory - speciesId: puppy - templateId: pet - - type: DamageStateVisuals - states: - Alive: - Base: mcgriff - Critical: - Base: mcgriff_dead - Dead: - Base: mcgriff_dead - - type: Butcherable - spawned: - - id: FoodMeat - amount: 2 - - type: ReplacementAccent - accent: dog - - type: InteractionPopup - successChance: 0.5 - interactSuccessString: petting-success-dog - interactFailureString: petting-failure-generic - interactSuccessSpawn: EffectHearts - interactSuccessSound: - path: /Audio/Animals/small_dog_bark_happy.ogg + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#f3b6b6" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretFishGear ] + +- type: entity + name: "\"McGriff\"" + parent: MobBaseEmotionalSupportScurret + id: MobMcGriff + description: This scurret is here to emotionally support the Warden after the real McGriff was shockingly exposed to be a Syndicate agent. Don't give them an L6, no matter how cool they look holding it. + components: - type: Grammar attributes: proper: true gender: male - - type: Speech - speechVerb: Canine - speechSounds: Dog - type: Tag tags: - CannotSuicide - VimPilot - type: StealTarget stealGroup: AnimalMcGriff - -- type: entity - name: Paperwork - parent: MobSloth - id: MobPaperwork - description: Took up a new job sorting books in the library after he got transferred from Space Station 13. He seems to be just as slow at this. - components: - type: Sprite - drawdepth: Mobs - sprite: Mobs/Pets/paperwork.rsi layers: - map: ["enum.DamageStateVisualLayers.Base"] - state: paperwork - - type: DamageStateVisuals - states: - Alive: - Base: paperwork - Critical: - Base: paperwork_dead - Dead: - Base: paperwork_dead - - type: Butcherable - spawned: - - id: FoodMeat - amount: 3 - - type: InteractionPopup - successChance: 1 - interactSuccessString: petting-success-sloth - interactFailureString: petting-failure-sloth - interactSuccessSpawn: EffectHearts + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#f9f3c3" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretWardenGear ] + +- type: entity + name: "\"Paperwork\"" + parent: MobBaseEmotionalSupportScurret + id: MobPaperwork + description: This scurret likes pearls more than books, but is here to help out the librarian anyway whilst Paperwork is in rehab due to his crippling addiction to stimulants. + components: - type: Grammar attributes: proper: true gender: male - -- type: entity - name: Walter - parent: [SimpleMobBase, StripableInventoryBase] - id: MobWalter - description: He likes chems and treats. Walter. - components: - type: Sprite - drawdepth: Mobs - sprite: Mobs/Pets/walter.rsi layers: - map: ["enum.DamageStateVisualLayers.Base"] - state: walter - - type: Physics - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeCircle - radius: 0.35 - density: 50 - mask: - - MobMask - layer: - - MobLayer - - type: Inventory - speciesId: dog - templateId: pet - - type: DamageStateVisuals - states: - Alive: - Base: walter - Critical: - Base: walter_dead - Dead: - Base: walter_dead - - type: Butcherable - spawned: - - id: FoodMeat - amount: 3 - - type: ReplacementAccent - accent: dog - - type: InteractionPopup - successChance: 0.7 - interactSuccessString: petting-success-dog - interactFailureString: petting-failure-generic - interactSuccessSpawn: EffectHearts - interactSuccessSound: - path: /Audio/Animals/small_dog_bark_happy.ogg + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#7aea7b" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretLibrarianGear ] + +- type: entity + name: "\"Walter\"" + parent: MobBaseEmotionalSupportScurret + id: MobWalter + description: This scurret claims to be here to emotionally support the chemists, but has been eyeing the door the whole time. He'd rather be in the kitchen. He needs to cook. + components: - type: Grammar attributes: proper: true @@ -422,23 +296,27 @@ - VimPilot - type: StealTarget stealGroup: AnimalWalter - - type: Speech - speechVerb: Canine - speechSounds: Dog + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#ffffff" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretChemGear ] + - type: entity - name: Morty - parent: MobPossum + name: "\"Morty\"" + parent: MobBaseEmotionalSupportScurret id: MobPossumMorty - description: The station's resident Didelphis virginiana. A sensitive but resilient kind of guy. + description: This scurret is here to fill in for the real Morty whilst he's off having fun adventures in a time machine. At least, that's where they said he's gone. components: - - type: InteractionPopup - successChance: 1.0 # Hey, c'mon, this is Morty we're talking about here. - interactSuccessString: petting-success-possum - interactFailureString: petting-failure-possum - interactSuccessSpawn: EffectHearts - interactSuccessSound: - path: /Audio/Animals/snake_hiss.ogg - type: Grammar attributes: proper: true @@ -449,62 +327,43 @@ - VimPilot - type: StealTarget stealGroup: AnimalMorty + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#f56c43" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretMorgueGear ] - type: entity - name: Morty + name: "\"Morty\"" parent: MobPossumMorty id: MobPossumMortyOld suffix: Old sprite - components: - - type: Sprite - drawdepth: Mobs - sprite: Mobs/Animals/possum_old.rsi - layers: - - map: [ "enum.DamageStateVisualLayers.Base" ] - state: possum_old - - type: DamageStateVisuals - states: - Alive: - Base: possum_old - Dead: - Base: possum_dead_old - type: entity - name: Poppy # the Safety Possum + name: "\"Poppy\"" # the Safety Scurret parent: MobPossumMorty id: MobPossumPoppy - description: It's an opossum, a small scavenging marsupial. It's wearing appropriate personal protective equipment. + description: This scurret is here to fill in for Poppy after something REALLY bad happened last shift. Like, seriously. I'd tell you, but Nanotrasen doesn't want anyone to know about it. components: - type: Grammar attributes: proper: true gender: female - - type: Sprite - drawdepth: Mobs - sprite: Mobs/Animals/possum.rsi - layers: - - map: [ "enum.DamageStateVisualLayers.Base" ] - state: poppy - - type: DamageStateVisuals - states: - Alive: - Base: poppy - Dead: - Base: poppy_dead - type: entity - name: Morticia - parent: MobRaccoon + name: "\"Morticia\"" + parent: MobBaseEmotionalSupportScurret id: MobRaccoonMorticia - description: A powerful creature of the night. Her eyeshadow is always on point. + description: This scurret showed up a little while ago. It's just... watching. components: - - type: InteractionPopup - successChance: 0.7 - interactSuccessString: petting-success-raccoon - interactFailureString: petting-failure-raccoon - interactSuccessSpawn: EffectHearts - interactSuccessSound: - path: /Audio/Animals/raccoon_chatter.ogg - type: Grammar attributes: proper: true @@ -513,20 +372,33 @@ tags: - CannotSuicide - VimPilot + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#dc5864" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretQMGear ] - type: entity - name: Alexander - parent: MobPig + name: "\"Alexander\"" + parent: MobBaseEmotionalSupportScurret id: MobAlexander - description: Chef's finest colleague. + description: This scurret is here to fill in for Alexander. It isn't aware what kind of sacrifice that usually entails. A real gourmand. components: - - type: InteractionPopup - successChance: 1 - interactSuccessString: petting-success-pig - interactFailureString: petting-failure-pig - interactSuccessSpawn: EffectHearts - interactSuccessSound: - path: /Audio/Animals/pig_oink.ogg + - type: Butcherable + butcheringType: Spike + spawned: + - id: FoodMeat + amount: 5 # fat + - id: FoodPizzaArnold # ate it whole, in one bite + amount: 1 - type: Grammar attributes: proper: true @@ -535,56 +407,91 @@ tags: - CannotSuicide - VimPilot + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#f890b1" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretChefGear ] - type: entity - name: Renault - parent: MobFox + name: "\"Renault\"" + parent: MobBaseEmotionalSupportScurret id: MobFoxRenault - description: The captain's trustworthy fox. + description: This scurret is here to emotionally support the captain (who, let's be honest here, really, really needs the help) whilst Renault is off at her daughter's graduation. components: - - type: InteractionPopup - successChance: 1 - interactSuccessString: petting-success-soft-floofy - interactFailureString: petting-failure-generic - interactSuccessSpawn: EffectHearts - interactSuccessSound: - collection: Fox - type: Butcherable spawned: - id: FoodMeat - amount: 3 - - id: Telecrystal5 + amount: 4 + - id: Telecrystal5 # How has this even happened again amount: 1 - type: Grammar attributes: proper: true gender: female + - type: EmitSoundOnTrigger + sound: + path: /Audio/Weapons/flash.ogg + - type: FlashOnTrigger + range: 3 + - type: TriggerOnVoice - type: Tag tags: - CannotSuicide - VimPilot - type: StealTarget stealGroup: AnimalRenault + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#fe6818" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretCapGear ] + +# The only pet that IS NOT A SCURRET IS A SENTIENT NUCLEAR AUTHENTICATION DISK +# APRIL FOOLS BITCHES - type: entity - name: Hamlet + name: nuclear authentication disk parent: MobHamster id: MobHamsterHamlet - description: A grumpy, cute and fluffy hamster. + description: A nuclear auth disk, capable of arming a nuke if used along with a code. Note from nanotrasen reads "THIS IS YOUR MOST IMPORTANT POSESSION, SECURE DAT FUKKEN DISK!" components: - type: Sprite - drawdepth: SmallMobs - sprite: Mobs/Pets/hamlet.rsi + sprite: Objects/Misc/nukedisk.rsi layers: - - map: ["enum.DamageStateVisualLayers.Base", "movement"] - state: hamster-0 + - map: ["movement"] + state: icon - type: SpriteMovement movementLayers: movement: - state: hamster-moving-0 + state: icon noMovementLayers: movement: - state: hamster-0 + state: icon + - type: DamageStateVisuals + states: + Alive: + Base: icon + Critical: + Base: icon + Dead: + Base: icon - type: GhostRole makeSentient: true allowSpeech: true @@ -620,57 +527,11 @@ - sadness - type: entity - name: Shiva - parent: MobGiantSpider + name: "\"Shiva\"" + parent: MobBaseEmotionalSupportScurret id: MobSpiderShiva - description: The first defender of the station. + description: Spider-Scurret, Spider-Scurret. Goes as fast as a spider-bullet. Adorable, big suprise, shouts "wawa!" and makes pleading eyes. Look out, here comes the Spider-Scurret. components: - - type: InteractionPopup - successChance: 0.5 # spider is mean - interactSuccessString: petting-success-tarantula - interactFailureString: petting-failure-hamster - interactSuccessSpawn: EffectHearts - interactSuccessSound: - path: /Audio/Animals/snake_hiss.ogg - - type: NpcFactionMember - factions: - - PetsNT - - type: Sprite - drawdepth: Mobs - layers: - - map: ["enum.DamageStateVisualLayers.Base", "movement"] - state: shiva - sprite: Mobs/Pets/shiva.rsi - - type: SpriteMovement - movementLayers: - movement: - state: shiva-moving - noMovementLayers: - movement: - state: shiva - - type: HTN - rootTask: - task: SimpleHostileCompound - - type: Physics - - type: DamageStateVisuals - states: - Alive: - Base: shiva - Dead: - Base: shiva_dead - - type: MobThresholds - thresholds: - 0: Alive - 150: Dead - - type: MeleeWeapon - angle: 0 - animation: WeaponArcBite - soundHit: - path: /Audio/Effects/bite.ogg - damage: - types: - Piercing: 8 - Poison: 8 - type: Grammar attributes: proper: true @@ -679,116 +540,57 @@ tags: - CannotSuicide - VimPilot - - DoorBumpOpener - - FootstepSound - type: StealTarget stealGroup: AnimalShiva + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#464646" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretSpiderGear ] - type: entity - name: Willow - parent: MobKangaroo + name: "\"Willow\"" + parent: MobBaseEmotionalSupportScurret id: MobKangarooWillow - description: Willow the boxing kangaroo. + description: Look, I know she's like, a sixth of the height, isn't Australian and bites people, but this is the best we had whilst Willow is in a coma. Just play along, OK? components: - - type: InteractionPopup - successChance: 0.8 - interactSuccessString: petting-success-kangaroo - interactFailureString: petting-failure-generic - interactSuccessSpawn: EffectHearts - interactSuccessSound: - path: /Audio/Animals/kangaroo_grunt.ogg - type: Grammar attributes: proper: true gender: female - - type: Tag - tags: - - CannotSuicide - - DoorBumpOpener - - FootstepSound - type: GhostRole - prob: 0.25 name: ghost-role-information-willow-name description: ghost-role-information-willow-description rules: ghost-role-information-nonantagonist-rules - type: GhostTakeoverAvailable - - type: Loadout - prototypes: [ BoxingKangarooGear ] - -- type: entity - name: Smile - id: MobSlimesPet - parent: [MobAdultSlimes, StripableInventoryBase] - description: This masterpiece has gone through thousands of experiments. But it is the sweetest creature in the world. Smile Slime! - components: - type: Sprite layers: - - map: [ "enum.DamageStateVisualLayers.Base" ] - state: rainbow_baby_slime - - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] - state: aslime-_3 - shader: unshaded - - map: [ "head" ] - - type: Inventory - speciesId: slime - templateId: head - displacements: - head: - sizeMaps: - 32: - sprite: Mobs/Pets/Smile/smile_displacement.rsi - state: head - - type: MobThresholds - thresholds: - 0: Alive - 200: Dead - - type: FootstepModifier - footstepSoundCollection: - path: /Audio/Effects/Footsteps/slime1.ogg - params: - volume: -6 - - type: Tag - tags: - - FootstepSound - - DoorBumpOpener - - CannotSuicide - - VimPilot - - type: DamageStateVisuals - states: - Alive: - Base: rainbow_baby_slime - BaseUnshaded: aslime-_3 - Dead: - Base: rainbow_baby_slime_dead - - type: Butcherable - spawned: - - id: FoodMeatSlime - amount: 1 - - id: MaterialSmileExtract - amount: 1 - - type: Damageable - damageModifierSet: SlimePet - - type: Bloodstream - bloodlossHealDamage: - types: - Bloodloss: - -0.8 - - type: Temperature - heatDamageThreshold: 800 - coldDamageThreshold: 0 - - type: MeleeWeapon - damage: - types: - Blunt: 1 - Caustic: 1 - - type: MultiHandedItem - - type: Item - sprite: Mobs/Pets/Smile/smile.rsi - size: Huge - - type: SentienceTarget - flavorKind: station-event-random-sentience-flavor-slime - - type: MobPrice - price: 3000 # it is a truly valuable creature + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#675fe7" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretBoxerGear ] + +- type: entity + name: "\"Smile\"" + id: MobSlimesPet + parent: MobBaseEmotionalSupportScurret + description: This scurret is worryingly exicted to be a member of the science team whilst Smile is away receiving her Nobel Prize for Literature. A bit crusty. + components: - type: GhostRole name: ghost-role-information-smile-name description: ghost-role-information-smile-description @@ -798,14 +600,27 @@ attributes: proper: true gender: female + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#c7c4ecaa" # slightly see-through! + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretScientistGear ] - type: TTS # Corvax-TTS voice: Dryad - type: entity - name: Pun Pun - parent: MobMonkey + name: Wa Wa + parent: MobBaseEmotionalSupportScurret id: MobMonkeyPunpun - description: A prominent representative of monkeys with unlimited access to alcohol. + description: A junior barkeeping assistant. Look at it. Don't those vast, black eyes just want to make you order dangerously large amounts of alcohol? Here to fill in for Pun for a day. components: - type: GhostRole prob: 1 @@ -820,8 +635,8 @@ butcheringType: Spike spawned: - id: FoodMeat - amount: 3 - - id: DrinkTequilaBottleFull + amount: 4 + - id: DrinkVodkaBottleFull # Wa Wa has a problem. amount: 1 - type: Tag tags: @@ -830,27 +645,29 @@ - VimPilot - AnomalyHost - type: Loadout - prototypes: [ MobMonkeyGear ] + prototypes: [ MobWaWaGear ] - type: Grammar attributes: proper: true gender: male + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#cccccc" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false - type: entity - name: Tropico - parent: MobCrab + name: "\"Tropico\"" + parent: MobBaseEmotionalSupportScurret id: MobCrabAtmos - description: The noble and stalwart defender of Atmosia. Viva! + description: They say crabs have evolved at least four separate times. Judging by the station at the moment, you suspect the same is true for scurrets. Viva! components: -# - type: GhostRole -# prob: 1 -# makeSentient: true -# allowSpeech: true -# allowMovement: true -# name: ghost-role-information-tropico-name -# description: ghost-role-information-tropico-description -# rules: ghost-role-information-nonantagonist-rules -# - type: GhostTakeoverAvailable - type: Tag tags: - VimPilot @@ -859,6 +676,18 @@ attributes: proper: true gender: male -# - type: AlwaysRevolutionaryConvertible - type: StealTarget stealGroup: AnimalTropico + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#c24738" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretAtmosGear ] diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/scurret.yml b/Resources/Prototypes/Entities/Mobs/NPCs/scurret.yml new file mode 100644 index 0000000000..ce01750e80 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/NPCs/scurret.yml @@ -0,0 +1,343 @@ +# Defines the scurret, a small, agile sapient species intended for players who want to play as something similar to an ewok. +# Although based on MobBaseAncestor, this species does not have a "developed" playable species it is an ancestor to. + +- type: entity + name: scurret + id: MobBaseScurret + parent: MobBaseAncestor + abstract: true + components: + - type: GeneralScurretMayhem + # Custom names + - type: ReplacementAccent + accent: scurret + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + # Custom art for dead scurrets; these don't work well given they use equipment, so consider removing these? + - type: DamageStateVisuals + states: + Alive: + Base: scurret + Critical: + Base: scurret_oof + Dead: + Base: scurret_rip + # Only about as tough as a monkey + - type: MobThresholds + thresholds: + 0: Alive + 60: Critical + 125: Dead + - type: Temperature + heatDamageThreshold: 360 + coldDamageThreshold: 285 + currentTemperature: 310.15 + specificHeat: 42 + # Good eatin', you monster. + - type: Butcherable + butcheringType: Spike + spawned: + - id: FoodMeat + amount: 4 + # They wawa + - type: Vocal + sounds: + Male: Scurret + Female: Scurret + Unsexed: Scurret + wilhelmProbability: 0.125 # the scug, it screams like a man + - type: Speech + speechVerb: Wawa + speechSounds: Wawa + allowedEmotes: ['Thump'] # They're 80% tail + - type: TypingIndicator + proto: moth + - type: InteractionPopup + successChance: 0.99 # Imagine not being allowed to headpat a scurret, chat + interactSuccessString: petting-success-scurret + interactFailureString: petting-failure-scurret + interactSuccessSpawn: EffectHearts + interactSuccessSound: + path: /Audio/Animals/wawa_chillin.ogg + interactFailureSound: + path: /Audio/Animals/wawa_chatter.ogg + # They nyoom + - type: MovementSpeedModifier + baseWalkSpeed: 5 # nyoom + baseSprintSpeed: 7 # NYOOOOOM + - type: MeleeWeapon + soundHit: + path: /Audio/Effects/bite.ogg + angle: 30 + animation: WeaponArcBite + damage: + types: + Piercing: 10 # NOM + - type: Inventory + speciesId: scurret + templateId: scurret + displacements: + jumpsuit: + sizeMaps: + 32: + sprite: Mobs/Animals/scurret/displacement.rsi + state: jumpsuit + head: + sizeMaps: + 32: + sprite: Mobs/Animals/scurret/displacement.rsi + state: head + ears: + sizeMaps: + 32: + sprite: Mobs/Animals/scurret/displacement.rsi + state: ears + eyes: + sizeMaps: + 32: + sprite: Mobs/Animals/scurret/displacement.rsi + state: eyes + mask: + sizeMaps: + 32: + sprite: Mobs/Animals/scurret/displacement.rsi + state: mask + id: + sizeMaps: + 32: + sprite: Mobs/Animals/scurret/displacement.rsi + state: id + gloves: + sizeMaps: + 32: + sprite: Mobs/Animals/scurret/displacement.rsi + state: gloves + - type: Hands + handDisplacement: + sizeMaps: + 32: + sprite: Mobs/Animals/scurret/displacement.rsi + state: hand + - type: InventorySlots + - type: Food + - type: Hunger + baseDecayRate: 0.25 # They get a lil' hungy + - type: BodyEmotes # Grants them clapping and so on. + soundsId: GeneralBodyEmotes + - type: Tag + tags: + - DoorBumpOpener + - FootstepSound + - CanPilot # Inexplicably, scurrets have a natural aptitude for spaceflight + +- type: inventoryTemplate + id: scurret + slots: + - name: jumpsuit + slotTexture: uniform + slotFlags: INNERCLOTHING + stripTime: 6 + uiWindowPos: 0,1 + strippingWindowPos: 0,2 + displayName: Jumpsuit + - name: head + slotTexture: head + slotFlags: HEAD + uiWindowPos: 1,2 + strippingWindowPos: 0,0 + displayName: Head + - name: ears + slotTexture: ears + slotFlags: EARS + stripTime: 3 + uiWindowPos: 0,2 + strippingWindowPos: 1,2 + displayName: Ears + - name: eyes + slotTexture: glasses + slotFlags: EYES + stripTime: 3 + uiWindowPos: 0,3 + strippingWindowPos: 0,0 + displayName: Eyes + - name: mask + slotTexture: mask + slotFlags: MASK + uiWindowPos: 0,1 + strippingWindowPos: 1,1 + displayName: Mask + - name: id + slotTexture: id + slotFlags: IDCARD + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 2,1 + strippingWindowPos: 2,4 + displayName: ID + - name: gloves + slotTexture: gloves + slotFlags: GLOVES + uiWindowPos: 2,1 + strippingWindowPos: 2,2 + displayName: Gloves + +- type: speechSounds + id: Wawa + saySound: + path: /Audio/Animals/wawa_statement.ogg + askSound: + path: /Audio/Animals/wawa_question.ogg + exclaimSound: + path: /Audio/Animals/wawa_exclaim.ogg + +- type: accent + id: scurret + fullReplacements: + - accent-words-scurret-1 + - accent-words-scurret-2 + - accent-words-scurret-3 + - accent-words-scurret-4 + - accent-words-scurret-5 + - accent-words-scurret-6 + - accent-words-scurret-7 + - accent-words-scurret-8 + +- type: palette + id: ScurretColors + name: ScurretColors + colors: + Normal: "#ffffff" # Sluggy + Innocent: "#f6f439" # Monky + Angry: "#dc5864" # Hunty + Eldritch: "#dc5864" + Perceptive: "#222222" # Watchy + Fat: "#fefcab" + Violent: "#ab3430" + Speedy: "#679cfe" + Mutated: "#7824a0" + Damned: "#98e652" + +# Spawnable scurrets have a random name and colour. + +- type: entity + name: scurret + description: Commonly known as Wawas, from the wetlands of Planet Wawa, these critters make up the bulk of Arnolds' Pizza's "loyal workforce". + id: MobScurret + parent: MobBaseScurret + components: + # The have a rich culture + - type: RandomMetadata + nameSegments: + - NamesFirstScurret + - NamesLastScurret + # They come in a variety of colours + - type: RandomSprite + available: + - enum.DamageStateVisualLayers.Base: + scurret: ScurretColors + +# Abstract ESS have a ghost role and equipment + +- type: entity + name: Emotional Support Scurret + id: MobBaseEmotionalSupportScurret + parent: MobBaseScurret + abstract: true + components: + - type: Loadout + prototypes: [ EmotionalSupportScurretGear ] + - type: NpcFactionMember + factions: + - Passive + - type: GhostRole + makeSentient: true + name: ghost-role-information-emotional-support-scurret-name + description: ghost-role-information-emotional-support-scurret-description + rules: ghost-role-information-emotional-support-scurret-rules + raffle: + settings: default + - type: GhostTakeoverAvailable + +# Spawnable ESS have a ghost role, equipment, a random name and a random colour. + +- type: entity + name: Emotional Support Scurret + id: MobEmotionalSupportScurret + parent: [MobScurret, MobBaseEmotionalSupportScurret] + abstract: true + description: Commonly known as Wawas, from the wetlands of Planet Wawa, these critters make up the bulk of Arnolds's Pizza's "loyal workforce". This one is here as a temp whilst the station's pets are on a no-expenses-paid holiday to a farm upstate. + +- type: emoteSounds + id: Scurret + params: + variation: 0.125 + sounds: + Laugh: + collection: WawaLaugh + Sneeze: + collection: WawaSneeze + Cough: + collection: MaleCoughs + Whistle: + collection: Whistles + Sigh: + collection: WawaSigh + Scream: + collection: WawaScream + +- type: soundCollection + id: WawaLaugh + files: + - /Audio/Animals/wawa_mock.ogg + +- type: soundCollection + id: WawaSneeze + files: + - /Audio/Animals/wawa_achoo.ogg + +- type: soundCollection + id: WawaSigh + files: + - /Audio/Animals/wawa_depression.ogg + +- type: soundCollection + id: WawaScream + files: + - /Audio/Animals/wawa_protest.ogg + - /Audio/Animals/wawa_protest.ogg + - /Audio/Animals/wawa_protest.ogg + - /Audio/Animals/wawa_protest.ogg + - /Audio/Animals/wawa_protest.ogg + - /Audio/Animals/wawa_protest.ogg + - /Audio/Animals/wawa_protest.ogg + - /Audio/Voice/Human/wilhelm_scream.ogg # Enforce a 1/8 chance + +- type: entity + id: TraitorWawa + parent: BaseTraitorRule + components: + - type: TraitorRule + giveUplink: true + giveCodewords: false + giveBriefing: true + greetSoundNotification: "/Audio/Ambience/Antag/traitor_wawa.ogg" # W.A.W.A.W.A + objectiveIssuers: WawaResistance + - type: AntagSelection + definitions: + - prefRoles: [ Traitor ] + mindRoles: + - MindRoleTraitor + +- type: localizedDataset + id: WawaResistance + values: + prefix: wawa-resistance-dataset- + count: 3 diff --git a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml index 40c0f93f89..a55ac5d0e3 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/admin_ghost.yml @@ -13,6 +13,7 @@ - BypassInteractionRangeChecks - BypassDropChecks - NoConsoleSound + - SilentStorageUser - type: Input context: "aghost" - type: Ghost diff --git a/Resources/Prototypes/Entities/Mobs/Player/dwarf.yml b/Resources/Prototypes/Entities/Mobs/Player/dwarf.yml index d1de65df01..e3866ce520 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/dwarf.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/dwarf.yml @@ -1,5 +1,5 @@ - type: entity save: false - name: Urist McHands The Dwarf + name: Urist McHands The Elf hoho parent: BaseMobDwarf id: MobDwarf diff --git a/Resources/Prototypes/Entities/Mobs/Player/familiars.yml b/Resources/Prototypes/Entities/Mobs/Player/familiars.yml index 320a2b9bff..910d4b778c 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/familiars.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/familiars.yml @@ -1,8 +1,8 @@ - type: entity - name: Remilia - parent: MobBat + name: "\"Remilia\"" + parent: MobBaseEmotionalSupportScurret id: MobBatRemilia - description: The chaplain's familiar. Likes fruit. + description: How did the chaplain even summon this to begin with? Likes blue fruit. components: - type: GhostRole makeSentient: true @@ -32,12 +32,25 @@ - PetsNT - type: Alerts - type: Familiar + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#c961c1" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretChappieGear ] - type: entity - name: Cerberus - parent: MobCorgiNarsi + name: "\"Cerberus\"" + parent: MobBaseEmotionalSupportScurret id: MobCorgiCerberus - description: This pupper is not wholesome. + description: This is both smaller and significantly more adorable than the picture in the advert. Smells a bit sulferous. components: - type: GhostRole makeSentient: true @@ -74,7 +87,7 @@ - type: MobThresholds thresholds: 0: Alive - 120: Dead + 125: Dead # Matches base scurret - type: Grammar attributes: gender: male @@ -89,8 +102,16 @@ - type: MindContainer showExamineInfo: true - type: Familiar - - type: Vocal - sounds: - Male: Cerberus - Female: Cerberus - Unsexed: Cerberus + - type: Sprite + layers: + - map: ["enum.DamageStateVisualLayers.Base"] + sprite: Mobs/Animals/scurret/scurret.rsi + state: scurret + color: "#bb2727" + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - type: Loadout + prototypes: [ ScurretEvilChappieGear ] diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 05df91e98c..999a3177e5 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -34,6 +34,7 @@ - type: ActionGrant actions: - ActionJumpToCore + - ActionVisitCore - ActionSurvCameraLights - ActionAIViewLaws - type: UserInterface @@ -327,10 +328,13 @@ name: AI Core description: The latest in Artificial Intelligences. parent: + - BaseMob - BaseStructure - AiHolder suffix: Empty components: + - type: Transform + noRot: true - type: WarpPoint - type: ContainerComp proto: AiHeld @@ -352,25 +356,77 @@ - type: StationAiVision - type: InteractionOutline - type: Sprite - sprite: Mobs/Silicon/station_ai.rsi + noRot: true layers: - state: base + sprite: Mobs/Silicon/station_ai.rsi + map: ["enum.StationAiVisualLayers.Core"] - state: ai_empty - map: ["unshaded"] + sprite: Mobs/Silicon/station_ai.rsi shader: unshaded + map: ["enum.StationAiVisualLayers.Screen"] + - state: base_high + sprite: Mobs/Silicon/leggy.rsi + map: ["enum.StationAiVisualLayers.CoreStanding"] + offset: "0.0,0.5" + visible: false + - state: ai_high + sprite: Mobs/Silicon/leggy.rsi + shader: unshaded + map: ["enum.StationAiVisualLayers.ScreenStanding"] + offset: "0.0,0.5" + visible: false - type: Appearance + - type: AnimationPlayer + - type: ActionGrant + actions: + - ActionUnVisitCore + - type: Anchorable + flags: + - None + - type: Physics + bodyType: Static + - type: Tag + tags: + - DoorBumpOpener + - FootstepSound + - Structure + - type: Access + groups: + - AllAccess + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Binary + - Common + - Command + - Engineering + - Medical + - Science + - Security + - Service + - Supply + - type: ActiveRadio + channels: + - Binary + - Common + - Command + - Engineering + - Medical + - Science + - Security + - Service + - Supply + - type: ShowJobIcons + - type: Speech + speechVerb: Robotic + speechSounds: Borg - type: InteractionPopup interactSuccessString: petting-success-station-ai interactFailureString: petting-failure-station-ai messagePerceivedByOthers: petting-success-station-ai-others # Otherwise AI cannot tell its being pet as It's just a brain inside of the core, not the core itself. interactSuccessSound: path: /Audio/Ambience/Objects/periodic_beep.ogg - - type: GenericVisualizer - visuals: - enum.StationAiVisualState.Key: - unshaded: - Empty: { state: ai_empty } - Occupied: { state: ai } - type: Telephone compatibleRanges: - Grid @@ -398,12 +454,6 @@ - type: ContainerSpawnPoint containerId: station_ai_mind_slot job: StationAi - - type: Sprite - sprite: Mobs/Silicon/station_ai.rsi - layers: - - state: base - - state: ai - shader: unshaded # The actual brain inside the core - type: entity diff --git a/Resources/Prototypes/Entities/Mobs/Player/vulpkanin.yml b/Resources/Prototypes/Entities/Mobs/Player/vulpkanin.yml new file mode 100644 index 0000000000..7c4f9d6bf6 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Player/vulpkanin.yml @@ -0,0 +1,5 @@ +- type: entity + save: false + name: Urist McVulp + parent: BaseMobVulpkanin + id: MobVulpkanin diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml index e6cd7b595a..6ec95a41aa 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/base.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml @@ -9,6 +9,8 @@ id: BaseMobSpecies abstract: true components: + - type: ReplacementAccent + accent: liar - type: Sprite layers: - map: [ "enum.HumanoidVisualLayers.Chest" ] @@ -293,6 +295,7 @@ Asphyxiation: -1.0 - type: FireVisuals alternateState: Standing + - type: PhoneBillable - type: entity save: false diff --git a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml index 1add36dabf..b0e07c695e 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml @@ -1,6 +1,6 @@ - type: entity save: false - name: Urist McHands The Dwarf + name: Urist McHands The Elf hoho parent: BaseMobSpeciesOrganic id: BaseMobDwarf abstract: true @@ -22,7 +22,7 @@ - type: Sprite noRot: true drawdepth: Mobs - scale: 1, 0.8 + scale: 0.8, 1.2 - type: Body prototype: Dwarf requiredLegs: 2 @@ -72,7 +72,7 @@ categories: [ HideSpawnMenu ] components: - type: Sprite - scale: 1, 0.8 + scale: 0.8, 1.2 - type: HumanoidAppearance # Corvax-Wega species: Dwarf # Corvax-Wega - type: Inventory diff --git a/Resources/Prototypes/Entities/Mobs/Species/vox.yml b/Resources/Prototypes/Entities/Mobs/Species/vox.yml index f61e370940..c7307fffed 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/vox.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/vox.yml @@ -57,14 +57,19 @@ sprite: Mobs/Effects/burn_damage.rsi - type: Bloodstream bloodReagent: AmmoniaBlood +# April Fools: Vox box, even bare-handed. - type: MeleeWeapon + attackRate: 2 soundHit: - collection: AlienClaw + collection: BoxingHit angle: 30 - animation: WeaponArcClaw + animation: WeaponArcBox damage: types: - Slash: 5 # Reduce? + Blunt: 3 # This is technically 20% more than other species but it's not a huge deal. +# April Fools: Vox make a boxing bell sound effect when falling over + - type: Boxing + sound: /Audio/Weapons/boxingbell.ogg - type: Sprite # Need to redefine the whole order to draw the tail over their gas tank layers: - map: [ "enum.HumanoidVisualLayers.Chest" ] diff --git a/Resources/Prototypes/Entities/Mobs/Species/vulpkanin.yml b/Resources/Prototypes/Entities/Mobs/Species/vulpkanin.yml new file mode 100644 index 0000000000..4a8bff2863 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Species/vulpkanin.yml @@ -0,0 +1,110 @@ +- type: entity + abstract: true + save: false + parent: BaseMobSpeciesOrganic + id: BaseMobVulpkanin + name: Urist McVulp + components: + - type: HumanoidAppearance + species: Vulpkanin + - type: Hunger + - type: Inventory # Allows vulps to wear properly shaped helmets and other clothing. When displacement maps happen this might need to change. + speciesId: vulpkanin + - type: Thirst + - type: Icon + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: full + - type: Body + prototype: Vulpkanin + - type: Speech + speechSounds: Vulpkanin + speechVerb: Vulpkanin + allowedEmotes: [ 'Bark', 'Snarl', 'Whine', 'Howl', 'Growl' ] + - type: Vocal + sounds: + Male: MaleVulpkanin + Female: FemaleVulpkanin + Unsexed: MaleVulpkanin + - type: Damageable + damageModifierSet: Vulpkanin + - type: MeleeWeapon + soundHit: + path: /Audio/Weapons/pierce.ogg + animation: WeaponArcClaw + damage: # For reference, lizards do five slash. + types: + Blunt: 2 + Slash: 3 + - type: Temperature # These are moth values, but do make sense for Vulpkanin. The heat damage per second might be high, but we can tune it if there are issues. + heatDamageThreshold: 320 + coldDamageThreshold: 230 + specificHeat: 46 + coldDamage: + types: + Cold: 0.05 # Per second, scales with temperature & other constants + heatDamage: + types: + Heat: 3 # Per second, scales with temperature & other constants + - type: Wagging + action: ActionToggleVulpakinWagging + - type: Sprite # Drawlayers. Top to bottom in order I believe. + netsync: false + layers: + - map: [ "enum.HumanoidVisualLayers.Chest" ] + - map: [ "enum.HumanoidVisualLayers.Head" ] + - map: [ "enum.HumanoidVisualLayers.Snout" ] + - map: [ "enum.HumanoidVisualLayers.Eyes" ] + - map: [ "enum.HumanoidVisualLayers.RArm" ] + - map: [ "enum.HumanoidVisualLayers.LArm" ] + - map: [ "enum.HumanoidVisualLayers.RLeg" ] + - map: [ "enum.HumanoidVisualLayers.LLeg" ] + - shader: StencilClear + sprite: Mobs/Species/Human/parts.rsi + state: l_leg + - shader: StencilMask + map: [ "enum.HumanoidVisualLayers.StencilMask" ] + sprite: Mobs/Customization/Vulpkanin/masking_helpers.rsi + state: female_full + visible: false + - map: [ "jumpsuit" ] + - map: [ "enum.HumanoidVisualLayers.LHand" ] + - map: [ "enum.HumanoidVisualLayers.RHand" ] + - map: [ "enum.HumanoidVisualLayers.LFoot" ] + - map: [ "enum.HumanoidVisualLayers.RFoot" ] + - map: [ "enum.HumanoidVisualLayers.Handcuffs" ] + color: "#ffffff" + sprite: Objects/Misc/handcuffs.rsi + state: body-overlay-2 + visible: false + - map: [ "id" ] + - map: [ "gloves" ] + - map: [ "shoes" ] + - map: [ "ears" ] + - map: [ "outerClothing" ] + - map: [ "eyes" ] + - map: [ "belt" ] + - map: [ "neck" ] + - map: [ "back" ] + - map: [ "enum.HumanoidVisualLayers.FacialHair" ] + - map: [ "enum.HumanoidVisualLayers.Hair" ] + - map: [ "enum.HumanoidVisualLayers.HeadSide" ] + - map: [ "enum.HumanoidVisualLayers.HeadTop" ] + - map: [ "enum.HumanoidVisualLayers.Tail" ] + - map: [ "mask" ] + - map: [ "head" ] + - map: [ "pocket1" ] + - map: [ "pocket2" ] + - map: [ "clownedon" ] + sprite: "Effects/creampie.rsi" + state: "creampie_vulpkanin" + visible: false + +- type: entity + parent: BaseSpeciesDummy + id: MobVulpkaninDummy + name: Vulpkanin Dummy + categories: [ HideSpawnMenu ] + description: A dummy vulpkanin meant to be used in character setup. + components: + - type: HumanoidAppearance + species: Vulpkanin diff --git a/Resources/Prototypes/Entities/Mobs/base.yml b/Resources/Prototypes/Entities/Mobs/base.yml index 68f3ef1532..d38db928e2 100644 --- a/Resources/Prototypes/Entities/Mobs/base.yml +++ b/Resources/Prototypes/Entities/Mobs/base.yml @@ -44,6 +44,7 @@ - type: TTS # Corvax-TTS - type: RequireProjectileTarget active: False + - type: FlipAnimation # yes, it is vital that every mob has this! - type: entity save: false diff --git a/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml b/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml index 192aca65fc..f6e30d1e97 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml @@ -28,5 +28,7 @@ - state: icon color: green - type: HandTeleporter + allowPortalsOnDifferentGrids: true + allowPortalsOnDifferentMaps: true firstPortalPrototype: PortalGatewayBlue secondPortalPrototype: PortalGatewayOrange diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index b5ec63577e..904f7f9dd4 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -234,8 +234,8 @@ !type:String pda-interncadet - type: PdaBorderColor - borderColor: "#717059" - accentVColor: "#A32D26" + borderColor: "#708E9E" + accentVColor: "#2FDF70" - type: Icon state: pda-interncadet @@ -855,8 +855,8 @@ !type:String pda-hos - type: PdaBorderColor - borderColor: "#A32D26" - accentHColor: "#447987" + borderColor: "#2FDF70" + accentHColor: "#D72959" - type: Icon state: pda-hos - type: CartridgeLoader @@ -882,8 +882,8 @@ !type:String pda-warden - type: PdaBorderColor - borderColor: "#A32D26" - accentVColor: "#949137" + borderColor: "#2FDF70" + accentVColor: "#0088E7" - type: Icon state: pda-warden @@ -901,7 +901,7 @@ !type:String pda-security - type: PdaBorderColor - borderColor: "#A32D26" + borderColor: "#2FDF70" - type: Icon state: pda-security @@ -1059,6 +1059,17 @@ tags: - DoorBumpOpener +- type: entity + parent: ClearPDA + id: ScurretPDA + description: A temporary PDA granted to the scurret temps. Doesn't do much. Wawa! + components: + - type: Pda + id: VisitorIDCard + - type: Tag # Ignore Chameleon tags + tags: + - DoorBumpOpener + - type: entity parent: BasePDA id: SyndiPDA @@ -1297,9 +1308,9 @@ !type:String pda-brigmedic - type: PdaBorderColor - borderColor: "#A32D26" - accentHColor: "#d7d7d0" - accentVColor: "#d7d7d0" + borderColor: "#2FDF70" + accentHColor: "#d7d7d7" + accentVColor: "#d7d7d7" - type: Icon state: pda-brigmedic - type: CartridgeLoader @@ -1411,7 +1422,7 @@ !type:String pda-seniorofficer - type: PdaBorderColor - borderColor: "#A32D26" + borderColor: "#2FDF70" accentVColor: "#DFDFDF" - type: Icon state: pda-seniorofficer diff --git a/Resources/Prototypes/Entities/Objects/Devices/radio.yml b/Resources/Prototypes/Entities/Objects/Devices/radio.yml index 84e15878af..44433c4d21 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/radio.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/radio.yml @@ -24,6 +24,7 @@ - type: Tag tags: - Radio + - type: PhoneBillTarget - type: entity name: security radio diff --git a/Resources/Prototypes/Entities/Objects/Fun/pai.yml b/Resources/Prototypes/Entities/Objects/Fun/pai.yml index 5453a4ebe6..71e0f538b3 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/pai.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/pai.yml @@ -77,6 +77,19 @@ whitelist: components: - SecretStash + - type: AutoImplant + implants: + - MicroBombImplantPAI + - type: Damageable + damageContainer: Inorganic + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 120 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] - type: entity parent: [ PersonalAI, BaseSyndicateContraband] diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index e7d9b4abbc..496746901d 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -87,6 +87,9 @@ - type: Item size: Ginormous sprite: Objects/Weapons/Melee/Throngler-in-hand.rsi + - type: Tag + tags: + - PlushieThrongler - type: entity parent: BasePlushie diff --git a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml index 4bc98a4d4b..8f518aa51f 100644 --- a/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml +++ b/Resources/Prototypes/Entities/Objects/Materials/Sheets/other.yml @@ -171,6 +171,8 @@ Quantity: 5 - ReagentId: Phosphorus Quantity: 5 + - ReagentId: Microplastics + Quantity: 0.2 canReact: false - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml b/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml index e1fc3fa5b6..b53d48ad3f 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/dat_fukken_disk.yml @@ -1,15 +1,16 @@ - type: entity - name: nuclear authentication disk + name: Hamlet parent: [BaseItem, BaseGrandTheftContraband] id: NukeDisk - description: A nuclear auth disk, capable of arming a nuke if used along with a code. Note from nanotrasen reads "THIS IS YOUR MOST IMPORTANT POSESSION, SECURE DAT FUKKEN DISK!" + description: A grumpy, cute and fluffy hamster. components: - type: NukeDisk - type: SpecialRespawn prototype: NukeDisk - type: Sprite - sprite: Objects/Misc/nukedisk.rsi - state: icon + drawdepth: SmallMobs + sprite: Mobs/Pets/hamlet.rsi + state: hamster-0 - type: StaticPrice price: 2000 - type: CargoSellBlacklist @@ -24,15 +25,16 @@ stealGroup: NukeDisk - type: entity - name: nuclear authentication disk + name: Hamlet parent: [BaseItem, BaseGrandTheftContraband] id: NukeDiskFake suffix: Fake - description: A nuclear auth disk, capable of arming a nuke if used along with a code. Note from nanotrasen reads "THIS IS YOUR MOST IMPORTANT POSESSION, SECURE DAT FUKKEN DISK!" + description: A grumpy, cute and fluffy hamster. components: - type: Sprite - sprite: Objects/Misc/nukedisk.rsi - state: icon + drawdepth: SmallMobs + sprite: Mobs/Pets/hamlet.rsi + state: hamster-0 - type: StaticPrice price: 1 # it's worth even less than normal items. Perfection. - type: Tag diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml index df1f59a34b..9ace2e77eb 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml @@ -119,6 +119,7 @@ - WhitelistChameleon - WhitelistChameleonIdCard - HighRiskItem + - CaptainIDCard - type: StealTarget stealGroup: CaptainIDCard @@ -307,7 +308,8 @@ - type: entity parent: IDCardStandard id: PunPunIDCard - name: pun pun ID card + name: Wa Wa's ID card + description: Wa's only had it for two hours and it already smells of booze. components: - type: Sprite layers: @@ -315,7 +317,7 @@ - state: idbartender - type: PresetIdCard job: Bartender - name: Pun Pun + name: Wa Wa - type: Tag # Ignore Chameleon tags tags: - DoorBumpOpener @@ -665,6 +667,9 @@ tags: - NuclearOperative - SyndicateAgent + - type: Tag + tags: + - SyndicateIDCard - type: entity parent: IDCardStandard diff --git a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml index 7336f2726f..430bafdda3 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml @@ -245,6 +245,39 @@ - HideContextMenu - MicroBomb +- type: entity + parent: BaseSubdermalImplant + id: MicroBombImplantPAI + name: self-destruct sequence + description: INITIATE SELF-DESTRUCT SEQUENCE + categories: [ HideSpawnMenu ] + components: + - type: SubdermalImplant + permanent: true + implantAction: ActionActivateMicroBombPAI + whitelist: + components: + - PAI + - type: TriggerImplantAction + - type: ExplodeOnTrigger + - type: Explosive + explosionType: MicroBomb + totalIntensity: 120 + intensitySlope: 5 + maxIntensity: 30 + canCreateVacuum: false + - type: Tag + tags: + - SubdermalImplant + - HideContextMenu + - MicroBomb + - type: OnUseTimerTrigger + delay: 5 + beepSound: + path: "/Audio/Effects/beep1.ogg" + params: + volume: 5 + initialBeepDelay: 0 - type: entity parent: BaseSubdermalImplant diff --git a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml index 46c14bd2c9..9ea6867742 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml @@ -291,6 +291,14 @@ - type: Sprite sprite: Objects/Specific/Hydroponics/tomatokiller.rsi +- type: entity + parent: KillerTomatoSeeds + id: KillerJuicyTomatoSeeds + name: packet of killer juicy tomato seeds + components: + - type: Seed + seedId: killerJuicyTomato + - type: entity parent: SeedBase name: packet of eggplant seeds diff --git a/Resources/Prototypes/Entities/Objects/Specific/Salvage/shuttle.yml b/Resources/Prototypes/Entities/Objects/Specific/Salvage/shuttle.yml new file mode 100644 index 0000000000..e595fb7586 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Specific/Salvage/shuttle.yml @@ -0,0 +1,16 @@ +- type: entity + parent: BaseItem + id: SalvageShuttle + name: Reclaimer + description: Is this real or fake????? + components: + - type: Sprite + sprite: Objects/Specific/Mining/salvage_shuttle.rsi + state: icon + - type: EmitSoundOnCollide + sound: + path: /Audio/Effects/Shuttle/shuttle_impact2.ogg + - type: Item + size: Normal + - type: TileFrictionModifier + modifier: 0.5 diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml index a892ee6395..147300c7a5 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml @@ -643,6 +643,27 @@ - ReagentId: Sulfur Quantity: 30 +- type: entity + parent: BaseChemistryBottleFilled + id: ChemistryBottleCorgiJuice + suffix: essence of corgi + components: + - type: Label + currentLabel: reagent-name-corgijuice + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: CorgiJuice + Quantity: 30 + - type: SolutionRegeneration + solution: drink + generated: + reagents: + - ReagentId: CorgiJuice + Quantity: 0.075 + # Entity tables - type: entityTable id: BasicReagentBottlesTable diff --git a/Resources/Prototypes/Entities/Objects/Specific/rehydrateable.yml b/Resources/Prototypes/Entities/Objects/Specific/rehydrateable.yml index 26a0df1a00..4d12e2b97e 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/rehydrateable.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/rehydrateable.yml @@ -274,3 +274,112 @@ hard: false layer: - LowImpassable + +- type: entity + parent: BaseItem + id: BorgiCube + name: borgi cube + description: Just add water! BORK! + components: + - type: Item + size: Tiny + - type: SolutionContainerManager + solutions: + cube: + maxVol: 11 + reagents: + - ReagentId: Nutriment + Quantity: 10 + - type: Food + solution: cube + - type: FlavorProfile + flavors: + - chewy + - horrible + - compressed-meat + - type: RefillableSolution + solution: cube + - type: Sprite + sprite: Objects/Misc/monkeycube.rsi + state: cube + - type: Reactive + reactions: + - reagents: [Water] + methods: [Touch, Ingestion, Injection] + effects: + - !type:AddToSolutionReaction + solution: cube + - type: Rehydratable + possibleSpawns: + - SmartSubWooferVulnerable + - SubWooferVulnerable + - SmartBorgiVulnerable + - BorgiVulnerable + - SmartCorgi + - type: CollisionWake + enabled: false + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.3,-0.3,0.3,0.3" + density: 5 + mask: + - ItemMask + rehydrate: + shape: + !type:PhysShapeAabb + bounds: "-0.3,-0.3,0.3,0.3" + hard: false + layer: + - LowImpassable + +- type: entity + parent: BaseItem + id: ShadowBorgiCube + name: shadow borgi cube + description: Just add water! BORK! + components: + - type: Item + size: Tiny + - type: SolutionContainerManager + solutions: + cube: + maxVol: 11 # needs room for water + reagents: + - ReagentId: Nutriment + Quantity: 10 + - type: RefillableSolution + solution: cube + - type: Sprite + sprite: Objects/Misc/monkeycube.rsi + state: cube + - type: Reactive + reactions: + - reagents: [Water] + methods: [Touch, Ingestion, Injection] + effects: + - !type:AddToSolutionReaction + solution: cube + - type: Rehydratable + possibleSpawns: + - ShadowBorgi + - type: CollisionWake + enabled: false + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.3,-0.3,0.3,0.3" + density: 5 + mask: + - ItemMask + rehydrate: + shape: + !type:PhysShapeAabb + bounds: "-0.3,-0.3,0.3,0.3" + hard: false + layer: + - LowImpassable diff --git a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml index 4c24117caa..f9c9b64940 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml @@ -16,8 +16,10 @@ stackType: Cable - type: Sprite sprite: Objects/Tools/cable-coils.rsi + color: Red - type: Item sprite: Objects/Tools/cable-coils.rsi + color: Red size: Small storedRotation: -90 - type: CablePlacer @@ -174,18 +176,18 @@ suffix: Full components: - type: Sprite - state: coillv-30 + state: coilmv-30 layers: - - state: coillv-30 + - state: coilmv-30 map: ["base"] - type: Item heldPrefix: coillv - type: Stack baseLayer: base layerStates: - - coillv-10 - - coillv-20 - - coillv-30 + - coilmv-10 + - coilmv-20 + - coilmv-30 - type: CablePlacer cablePrototypeID: CableApcExtension blockingWireType: Apc @@ -207,7 +209,7 @@ suffix: 10 components: - type: Sprite - state: coillv-10 + state: coilmv-10 - type: Stack count: 10 @@ -226,6 +228,6 @@ suffix: 1 components: - type: Sprite - state: coillv-10 + state: coilmv-10 - type: Stack count: 1 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml index ab071c7a18..47421366f2 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Boxes/antimateriel.yml @@ -2,7 +2,8 @@ abstract: true parent: BaseItem id: BaseMagazineBoxAntiMateriel - name: ammunition box (.60 anti-materiel) + name: ammunition box (lightbulbets) + description: One shot, one opportunity components: - type: BallisticAmmoProvider mayTransfer: true diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/antimateriel.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/antimateriel.yml index 7556f2c371..e3c49451e6 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/antimateriel.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/Projectiles/antimateriel.yml @@ -2,8 +2,14 @@ categories: [ HideSpawnMenu ] parent: BaseBullet id: BulletAntiMateriel - name: bullet (.60 anti-materiel) + name: light bulbet components: + - type: Sprite + noRot: false + sprite: Objects/Power/light_bulb.rsi + layers: + - state: normal + shader: unshaded - type: Projectile damage: types: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml index 73d06a200c..e48e66076a 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -463,7 +463,7 @@ soundGunshot: path: /Audio/Weapons/Guns/Gunshots/taser2.ogg - type: ProjectileBatteryAmmoProvider - proto: BulletDisablerPractice + proto: FoodPieBananaCream fireCost: 50 - type: Tag tags: @@ -491,7 +491,7 @@ - suitStorage - Belt - type: ProjectileBatteryAmmoProvider - proto: BulletDisabler + proto: FoodPieBananaCream fireCost: 50 - type: GuideHelp guides: @@ -526,7 +526,7 @@ soundGunshot: path: /Audio/Weapons/Guns/Gunshots/taser2.ogg - type: ProjectileBatteryAmmoProvider - proto: BulletDisablerSmg + proto: FoodPieBananaCream fireCost: 25 - type: MagazineVisuals magState: mag diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml index 64f1fdac29..1ddff577c5 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml @@ -24,7 +24,7 @@ name: china lake parent: [BaseWeaponLauncher, BaseGunWieldable, BaseSyndicateContraband] id: WeaponLauncherChinaLake - description: PLOOP. + description: PLOOP PLOOP PLOOP. components: - type: Sprite sprite: Objects/Weapons/Guns/Launchers/china_lake.rsi @@ -39,9 +39,12 @@ - type: AmmoCounter - type: Gun fireRate: 1 - selectedMode: SemiAuto + selectedMode: Burst + shotsPerBurst: 3 + burstCooldown: 0.2 + burstFireRate: 7 availableModes: - - SemiAuto + - Burst soundGunshot: path: /Audio/Weapons/Guns/Gunshots/grenade_launcher.ogg - type: BallisticAmmoProvider diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml index f1172c5de0..6cb2541172 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/arrows.yml @@ -159,3 +159,40 @@ - type: Construction graph: ImprovisedArrowUranium node: ImprovisedArrowUranium + +- type: entity + parent: BaseArrow + id: CorgiArrow + name: corgi arrow + description: Polymorphs someone into a corgi. Permanently. + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/arrows.rsi + layers: + - state: tail + color: white + - state: rod + color: darkgray + - state: tip + color: lightblue + - state: solution1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + - type: Projectile + deleteOnCollide: false + onlyCollideWhenShot: true + damage: + types: + Piercing: 2 + - type: SolutionContainerManager + solutions: + ammo: + maxVol: 60 + reagents: + - ReagentId: ConcentratedCorgiJuice + Quantity: 60 + - type: SolutionInjectOnEmbed + transferAmount: 60 + solution: ammo + - type: SolutionTransfer + maxTransferAmount: 60 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml index 83eb24b2f1..96f2819cac 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/magic.yml @@ -12,7 +12,7 @@ - type: Projectile damage: types: - Heat: 10 + Heat: 1 - type: Sprite sprite: Objects/Weapons/Guns/Projectiles/magic.rsi layers: @@ -20,15 +20,15 @@ shader: unshaded - type: Explosive explosionType: Default - maxIntensity: 40 - intensitySlope: 6 - totalIntensity: 200 + maxIntensity: 4 + intensitySlope: 0.6 + totalIntensity: 20 maxTileBreak: 0 - type: IgnitionSource - temperature: 400 + temperature: 40 ignited: true - type: IgniteOnCollide - fireStacks: 0.35 + fireStacks: 0.035 - type: entity categories: [ HideSpawnMenu ] diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml index 23dc96c49f..d5d03ab2e4 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Snipers/snipers.yml @@ -48,10 +48,10 @@ sprite: Objects/Weapons/Guns/Snipers/bolt_gun_wood.rsi - type: entity - name: Hristov + name: 100% Completely Normal Hristov parent: [BaseWeaponSniper, BaseGunWieldable, BaseSyndicateContraband] id: WeaponSniperHristov - description: A portable anti-materiel rifle. Fires armor piercing 14.5mm shells. Uses .60 anti-materiel ammo. + description: One shot, one kill? components: - type: Sprite sprite: Objects/Weapons/Guns/Snipers/heavy_sniper.rsi @@ -64,12 +64,12 @@ availableModes: - SemiAuto soundGunshot: - path: /Audio/Weapons/Guns/Gunshots/sniper.ogg + path: /Audio/Animals/cat_meow2.ogg - type: BallisticAmmoProvider whitelist: tags: - CartridgeAntiMateriel - capacity: 5 + capacity: 1 # One shot proto: CartridgeAntiMateriel - type: SpeedModifiedOnWield walkModifier: 0.25 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index 71bc2f85aa..1c4f9e8478 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -109,6 +109,9 @@ map: [ "blade" ] - type: Item sprite: Objects/Weapons/Melee/e_sword-inhands.rsi + - type: Tag + tags: + - EnergySword - type: entity name: energy dagger diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/hammers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/hammers.yml index d2a0ecdbfb..da8eb25962 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/hammers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/hammers.yml @@ -23,6 +23,10 @@ Structural: 10 - type: Item size: Large + - type: Tag + tags: + - Knife + - WeaponCrusherDagger - type: entity id: Mjollnir diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml index 7ae4480d85..d38da9ae3e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml @@ -181,6 +181,10 @@ malus: 0.225 - type: ThrowingAngle angle: 225 + - type: Tag + tags: + - Knife + - WeaponCrusherDagger # Like a crusher... but better - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml index 44e98538ad..3efb92cd5d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml @@ -98,6 +98,9 @@ - Back - Belt - type: Reflect + - type: Tag + tags: + - EnergyKatana - type: entity name: machete @@ -193,3 +196,20 @@ - type: Grammar attributes: proper: true + +- type: entity + name: throngler + parent: Throngler + id: ThronglerFools + suffix: Announcement + description: Why would you make this? + components: + - type: AnnounceOnSpawn + message: throngler-was-crafted + sender: throngler-was-crafted-sender + sound: + path: /Audio/Misc/gamma.ogg + color: red + - type: Construction + graph: ThronglerFools + node: throngler \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Weapons/security.yml b/Resources/Prototypes/Entities/Objects/Weapons/security.yml index cb908acffa..d5418c7a8e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/security.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/security.yml @@ -10,7 +10,7 @@ - state: stunbaton_off map: [ "enum.ToggleVisuals.Layer" ] - type: Stunbaton - energyPerUse: 50 + energyPerUse: 2.5 - type: ItemToggle predictable: false soundActivate: @@ -30,18 +30,20 @@ types: Blunt: 0 - type: MeleeWeapon + autoAttack: true wideAnimationRotation: -135 damage: types: - Blunt: 7 + Blunt: 1 + attackRate: 5 bluntStaminaDamageFactor: 2.0 angle: 60 animation: WeaponArcThrust - type: StaminaDamageOnHit - damage: 35 + damage: 7 sound: /Audio/Weapons/egloves.ogg - type: StaminaDamageOnCollide - damage: 35 + damage: 7 sound: /Audio/Weapons/egloves.ogg - type: LandAtCursor # it deals stamina damage when thrown - type: Battery @@ -88,6 +90,9 @@ guides: - Security - Antagonists + - type: Tag + tags: + - Stunbaton - type: entity name: truncheon @@ -227,3 +232,37 @@ guides: - Security - Antagonists + +- type: entity + name: sun baton + parent: Stunbaton + id: Sunbaton + description: A sun baton for incapacitating people with. Actively harming with this is considered bad tone. It is very bright. + components: + - type: Sprite + sprite: Objects/Weapons/Melee/stunbaton.rsi + layers: + - state: stunbaton_off + map: [ "enum.ToggleVisuals.Layer" ] + - type: GenericVisualizer + visuals: + enum.ToggleVisuals.Toggled: + enum.ToggleVisuals.Layer: + True: {state: stunbaton_on_sun} + False: {state: stunbaton_off} + - type: ToggleableLightVisuals + spriteLayer: light + inhandVisuals: + left: + - state: on-inhand-left-sun + shader: unshaded + right: + - state: on-inhand-right-sun + shader: unshaded + - type: PointLight + enabled: false + radius: 8 + energy: 10 + color: "#FFAF38" + netsync: false + - type: ItemTogglePointLight diff --git a/Resources/Prototypes/Entities/Objects/base_contraband.yml b/Resources/Prototypes/Entities/Objects/base_contraband.yml index ee0e2e8c71..4984dc63db 100644 --- a/Resources/Prototypes/Entities/Objects/base_contraband.yml +++ b/Resources/Prototypes/Entities/Objects/base_contraband.yml @@ -56,6 +56,21 @@ components: - type: Contraband allowedDepartments: [ Command ] + - type: TriggerOnVoice + - type: EmitSoundOnTrigger + sound: + path: /Audio/Weapons/flash.ogg + - type: FlashOnTrigger + range: 3 + - type: TriggerOnSignal + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: BasicDevice + - type: WirelessNetworkConnection + range: 200 + - type: DeviceLinkSink + ports: + - Trigger - type: entity id: BaseSecurityContraband @@ -121,6 +136,21 @@ components: - type: Contraband allowedDepartments: [ Security, Command ] + - type: TriggerOnVoice + - type: EmitSoundOnTrigger + sound: + path: /Audio/Weapons/flash.ogg + - type: FlashOnTrigger + range: 3 + - type: TriggerOnSignal + - type: DeviceNetwork + deviceNetId: Wireless + receiveFrequencyId: BasicDevice + - type: WirelessNetworkConnection + range: 200 + - type: DeviceLinkSink + ports: + - Trigger - type: entity id: BaseSecurityScienceCommandContraband diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml index b811d0f667..e4ca63899f 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/base_structureairlocks.yml @@ -180,6 +180,12 @@ - Airlocks - WirePanels - Networking + - type: TypingIndicator + proto: robot + - type: Speech + speechVerb: Robotic + speechSounds: Vending + - type: SpeakOnDoorOpened placement: mode: SnapgridCenter diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index cb4856f0c7..7b82ca4c29 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -364,6 +364,25 @@ emagStaticPacks: - HostileCubesStatic +- type: entity + id: ShadowBorgiFabricator + parent: Biofabricator + name: shadow borgi cube fabricator + description: Produces creatures of evil. + components: + - type: Lathe + idleState: icon + runningState: building + staticPacks: + - ShadowBorgiCubeRecipePack + - type: MaterialStorage + ignoreColor: true + whitelist: + tags: + - Sheet + - Ingot + - RawMaterial + - type: entity id: SecurityTechFab parent: BaseLatheLube diff --git a/Resources/Prototypes/Entities/Structures/Machines/nuke.yml b/Resources/Prototypes/Entities/Structures/Machines/nuke.yml index 7fdd80bd2b..da0b927497 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/nuke.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/nuke.yml @@ -1,7 +1,7 @@ - type: entity parent: [BaseStructure, StructureWheeled, BaseMajorContraband] id: NuclearBomb - name: nuclear fission explosive + name: unclear fission explosive description: You probably shouldn't stick around to see if this is armed. components: - type: Transform @@ -125,7 +125,7 @@ - type: entity parent: StorageTank id: NuclearBombKeg - name: nuclear fission explosive + name: unclear fission explosive suffix: keg description: You probably shouldn't stick around to see if this is armed. It has a tap on the side. components: diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index ac0a7127b3..306c2c133d 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -1376,7 +1376,7 @@ parent: VendingMachine id: VendingMachineSalvage name: Salvage Vendor - description: A dwarf's best friend! + description: A elf's best friend! components: - type: VendingMachine pack: SalvageEquipmentInventory diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml index e6e4b6b72b..28281c331e 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/teg.yml @@ -168,12 +168,12 @@ inlet: !type:PipeNode nodeGroupID: Pipe - pipeDirection: North + pipeDirection: South volume: 100 outlet: !type:PipeNode nodeGroupID: Pipe - pipeDirection: South + pipeDirection: North volume: 100 circulator: !type:TegNodeCirculator @@ -193,6 +193,7 @@ - type: Sprite sprite: Markers/teg_arrow.rsi color: "#FFFFFFBB" + scale: 1, -1 # i'm a nice person, so i flipped the sprite for you. as a treat. layers: - state: arrow offset: 0, 0.75 diff --git a/Resources/Prototypes/Entities/Structures/Power/cables.yml b/Resources/Prototypes/Entities/Structures/Power/cables.yml index 6cb9e3d138..b346849868 100644 --- a/Resources/Prototypes/Entities/Structures/Power/cables.yml +++ b/Resources/Prototypes/Entities/Structures/Power/cables.yml @@ -54,14 +54,16 @@ parent: CableBase id: CableHV name: HV power cable - description: An orange high voltage power cable. + description: A red high voltage power cable. components: - type: Sprite sprite: Structures/Power/Cables/hv_cable.rsi + color: Red state: hvcable_0 drawdepth: ThickWire - type: Icon sprite: Structures/Power/Cables/hv_cable.rsi + color: Red state: hvcable_4 - type: NodeContainer nodes: @@ -115,11 +117,11 @@ description: A medium voltage power cable. components: - type: Sprite - color: Yellow + color: Red sprite: Structures/Power/Cables/mv_cable.rsi state: mvcable_0 - type: Icon - color: Yellow + color: Red sprite: Structures/Power/Cables/mv_cable.rsi state: mvcable_4 - type: NodeContainer @@ -167,11 +169,11 @@ description: A cable used to connect machines to an APC. #APCs aren't area defined anymore so need this cable to connect things to the APC. This description should be dynamic in future. components: - type: Sprite - color: Green + color: Red sprite: Structures/Power/Cables/lv_cable.rsi state: lvcable_0 - type: Icon - color: Green + color: Red sprite: Structures/Power/Cables/lv_cable.rsi state: lvcable_4 - type: NodeContainer diff --git a/Resources/Prototypes/Entities/Structures/Specific/Janitor/janicart.yml b/Resources/Prototypes/Entities/Structures/Specific/Janitor/janicart.yml index d74fe8b0f1..ae4098bcd4 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/Janitor/janicart.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Janitor/janicart.yml @@ -125,6 +125,87 @@ - ReagentId: Water Quantity: 600 +- type: entity + parent: MopBucket + id: MopBucketAlive + name: living mop bucket + description: A marvel of science! + components: + - type: Sprite + sprite: Objects/Specific/Janitorial/janitorial.rsi + noRot: true + layers: + - state: mopbucket_alive + - state: mopbucket_water-1 + map: ["enum.SolutionContainerLayers.Fill"] + visible: false + drawdepth: Objects + - type: Tag + tags: + - DoorBumpOpener + - CannotSuicide + - type: GhostRole + allowSpeech: true + allowMovement: true + name: ghost-role-information-bucket-name + description: ghost-role-information-bucket-description + rules: ghost-role-information-freeagent-rules + mindRoles: + - MindRoleGhostRoleFreeAgent + - type: GhostTakeoverAvailable + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + channels: + - Binary + - Service + - type: ActiveRadio + channels: + - Binary + - Service + - type: Physics + bodyType: KinematicController + - type: Speech + speechVerb: Robotic + speechSounds: Pai + - type: TypingIndicator + proto: robot + - type: NoSlip + - type: Access + tags: + - Janitor + - Maintenance + - type: MobState + allowedStates: + - Alive + - type: StationMap + - type: UserInterface + interfaces: + enum.StationMapUiKey.Key: + type: StationMapBoundUserInterface + requireInputValidation: false + - type: ActionGrant + actions: + - SpillAction + +- type: entity + parent: MarkerBase + id: MopBucketSpawner + name: Mop Bucket Spawner + components: + - type: Sprite + layers: + - state: red + - sprite: Objects/Specific/Janitorial/janitorial.rsi + state: mopbucket + - type: RandomSpawner + rarePrototypes: + - MopBucketAlive + rareChance: 0.05 + prototypes: + - MopBucket + - MopBucket + - MopBucketFull + # Janicart - type: entity name: janitorial trolley diff --git a/Resources/Prototypes/Flavors/flavors.yml b/Resources/Prototypes/Flavors/flavors.yml index ffd6fe40b8..cc32086dfd 100644 --- a/Resources/Prototypes/Flavors/flavors.yml +++ b/Resources/Prototypes/Flavors/flavors.yml @@ -1403,3 +1403,8 @@ id: bacchusblessing flavorType: Complex description: flavor-complex-bacchus-blessing + +- type: flavor + id: dogfood + flavorType: Base + description: flavor-dogfood diff --git a/Resources/Prototypes/GameRules/cargo_gifts.yml b/Resources/Prototypes/GameRules/cargo_gifts.yml index f4e4a5bf8f..03ef088deb 100644 --- a/Resources/Prototypes/GameRules/cargo_gifts.yml +++ b/Resources/Prototypes/GameRules/cargo_gifts.yml @@ -16,7 +16,7 @@ - id: GiftsVendingRestock # Game Rules - + - type: entity id: CargoGiftsBase parent: BaseGameRule @@ -29,7 +29,7 @@ - type: StationEvent startColor: "#18abf5" startAudio: - path: /Audio/Announcements/announce.ogg + path: /Audio/Announcements/Intern/alert6.ogg # pizza - type: CargoGiftsRule sender: cargo-gift-default-sender diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 4cdca853e8..8b2d51250d 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -2,6 +2,7 @@ id: BasicCalmEventsTable table: !type:AllSelector # we need to pass a list of rules, since rules have further restrictions to consider via StationEventComp children: + - id: NukeCalibration - id: AnomalySpawn - id: BluespaceArtifact - id: BluespaceLocker @@ -16,6 +17,7 @@ - id: MassHallucinations - id: MimicVendorRule - id: MouseMigration + - id: PhoneBillEvent - id: PowerGridCheck - id: RandomSentience - id: SlimesSpawn @@ -78,9 +80,7 @@ - type: StationEvent startAnnouncementColor: "#18abf5" startAudio: - path: /Audio/Corvax/Announcements/flux.ogg # Corvax-Announcements - params: - volume: -4 + collection: InternAnomaly weight: 8 duration: 35 - type: AnomalySpawnRule @@ -96,9 +96,7 @@ - type: StationEvent startAnnouncementColor: "#18abf5" startAudio: - path: /Audio/Corvax/Announcements/blusp_anomalies.ogg # Corvax-Announcements - params: - volume: -4 + collection: InternAlert weight: 8 duration: 35 - type: BluespaceArtifactRule @@ -148,6 +146,17 @@ duration: 1 - type: ClericalErrorRule +- type: entity + id: NukeCalibration + parent: BaseGameRule + components: + - type: StationEvent + weight: 9 + duration: 40 + reoccurrenceDelay: 2 + minimumPlayers: 20 + - type: NukeCalibrationRule + - type: entity parent: BaseGameRule id: ClosetSkeleton @@ -340,9 +349,7 @@ - type: StationEvent startAnnouncement: station-event-gas-leak-start-announcement startAudio: - path: /Audio/Announcements/gasleak_start.ogg # Corvax-Announcements - params: - volume: -4 + collection: InternAlert endAnnouncement: station-event-gas-leak-end-announcement weight: 8 endAudio: @@ -371,7 +378,7 @@ startAnnouncement: station-event-power-grid-check-start-announcement endAnnouncement: station-event-power-grid-check-end-announcement startAudio: - path: /Audio/Announcements/power_off.ogg + path: /Audio/Announcements/Intern/poweroff.ogg params: volume: -4 duration: 60 @@ -386,10 +393,8 @@ weight: 8 startAnnouncement: station-event-solar-flare-start-announcement endAnnouncement: station-event-solar-flare-end-announcement - startAudio: # Corvax-Announcements - path: /Audio/Corvax/Announcements/comms_blackout.ogg - params: - volume: -4 + startAudio: + path: /Audio/Announcements/Intern/radiation.ogg # not exactly the same event, but close duration: 120 maxDuration: 240 - type: SolarFlareRule @@ -415,9 +420,7 @@ - type: StationEvent startAnnouncement: station-event-vent-clog-start-announcement startAudio: - path: /Audio/Announcements/ventclog.ogg # Corvax-Announcements - params: - volume: -4 + collection: InternAlert earliestStart: 15 minimumPlayers: 15 weight: 5 @@ -431,7 +434,7 @@ - type: StationEvent startAnnouncement: station-event-vent-creatures-start-announcement startAudio: - path: /Audio/Announcements/attention.ogg + path: /Audio/Announcements/Intern/aliens.ogg earliestStart: 20 minimumPlayers: 15 weight: 5 @@ -452,7 +455,7 @@ - type: StationEvent startAnnouncement: station-event-vent-creatures-start-announcement startAudio: - path: /Audio/Announcements/attention.ogg + path: /Audio/Announcements/Intern/aliens.ogg earliestStart: 20 minimumPlayers: 15 weight: 5 @@ -473,7 +476,7 @@ - type: StationEvent startAnnouncement: station-event-vent-creatures-start-announcement startAudio: - path: /Audio/Announcements/attention.ogg + path: /Audio/Announcements/Intern/aliens.ogg earliestStart: 20 minimumPlayers: 15 weight: 5 @@ -490,7 +493,7 @@ - type: StationEvent startAnnouncement: station-event-vent-creatures-start-announcement startAudio: - path: /Audio/Announcements/attention.ogg + path: /Audio/Announcements/Intern/aliens.ogg earliestStart: 20 minimumPlayers: 20 weight: 1.5 @@ -584,7 +587,7 @@ maxOccurrences: 1 # can only happen once per round startAnnouncement: station-event-communication-interception startAudio: - path: /Audio/Announcements/intercept.ogg + path: /Audio/Announcements/Intern/intercept.ogg duration: null # the rule has to last the whole round not 1 second occursDuringRoundEnd: false - type: AlertLevelInterceptionRule @@ -644,7 +647,7 @@ components: - type: StationEvent startAudio: - path: /Audio/Announcements/attention.ogg + collection: InternAlert weight: 5 minimumPlayers: 25 reoccurrenceDelay: 20 @@ -692,3 +695,18 @@ min: 1 max: 1 pickPlayer: false + +- type: entity + parent: BaseGameRule + id: PhoneBillEvent + components: + - type: StationEvent + earliestStart: 0 # All hell breaks loose. + reoccurrenceDelay: 0 # It's payment time, motherfucker. + - type: PhoneBillRule + delay: 150 + price: 5 + - type: GameRule + delay: + min: 150 + max: 150 diff --git a/Resources/Prototypes/GameRules/meteorswarms.yml b/Resources/Prototypes/GameRules/meteorswarms.yml index ee5d1207a2..66715d47d3 100644 --- a/Resources/Prototypes/GameRules/meteorswarms.yml +++ b/Resources/Prototypes/GameRules/meteorswarms.yml @@ -70,7 +70,7 @@ components: - type: GameRule - type: BasicStationEventScheduler - minimumTimeUntilFirstEvent: 600 # 10 min + minimumTimeUntilFirstEvent: 600 # 10 min minMaxEventTiming: min: 750 # 12.5 min max: 930 # 17.5 min @@ -131,7 +131,7 @@ minimumPlayers: 0 - type: MeteorSwarm announcement: station-event-space-dust-start-announcement - announcementSound: /Audio/Announcements/attention.ogg + announcementSound: /Audio/Announcements/Intern/meteors.ogg nonDirectional: true meteors: MeteorSpaceDust: 1 @@ -186,7 +186,6 @@ weight: 0.05 - type: MeteorSwarm announcement: station-event-meteor-urist-start-announcement - announcementSound: /Audio/Announcements/attention.ogg meteors: MeteorUrist: 1 waves: @@ -203,7 +202,7 @@ - type: StationEvent startAnnouncement: station-event-immovable-rod-start-announcement startAudio: - path: /Audio/Announcements/attention.ogg + path: /Audio/Announcements/Intern/meteors.ogg weight: 3.5 reoccurrenceDelay: 1 duration: 1 diff --git a/Resources/Prototypes/GameRules/pests.yml b/Resources/Prototypes/GameRules/pests.yml index c0a746a138..e16f38bb4d 100644 --- a/Resources/Prototypes/GameRules/pests.yml +++ b/Resources/Prototypes/GameRules/pests.yml @@ -7,6 +7,7 @@ - id: SnailMigrationLowPop - id: CockroachMigration - id: MouseMigration + - id: MoproachMigration - type: entityTable id: SpicyPestEventsTable @@ -24,7 +25,7 @@ - type: StationEvent startAnnouncement: station-event-vent-creatures-start-announcement startAudio: - path: /Audio/Announcements/attention.ogg + path: /Audio/Announcements/Intern/aliens.ogg earliestStart: 15 weight: 6 duration: 50 @@ -47,7 +48,7 @@ - type: StationEvent startAnnouncement: station-event-vent-creatures-start-announcement startAudio: - path: /Audio/Announcements/attention.ogg + path: /Audio/Announcements/Intern/aliens.ogg earliestStart: 15 weight: 6 duration: 50 @@ -73,7 +74,7 @@ - type: StationEvent startAnnouncement: station-event-vent-creatures-start-announcement startAudio: - path: /Audio/Announcements/attention.ogg + path: /Audio/Announcements/Intern/aliens.ogg weight: 6 duration: 50 - type: VentCrittersRule @@ -84,7 +85,7 @@ prob: 0.008 - type: entity - id: SnailMigrationLowPop + id: MoproachMigration parent: BaseStationEventShortDelay components: - type: StationEvent @@ -93,6 +94,21 @@ path: /Audio/Announcements/attention.ogg weight: 6 duration: 50 + - type: VentCrittersRule + entries: + - id: MobMoproachHat + prob: 0.03 + +- type: entity + id: SnailMigrationLowPop + parent: BaseStationEventShortDelay + components: + - type: StationEvent + startAnnouncement: station-event-vent-creatures-start-announcement + startAudio: + path: /Audio/Announcements/Intern/aliens.ogg + weight: 6 + duration: 50 - type: VentCrittersRule entries: - id: MobSnail @@ -109,7 +125,7 @@ - type: StationEvent startAnnouncement: station-event-vent-creatures-start-announcement startAudio: - path: /Audio/Announcements/attention.ogg + path: /Audio/Announcements/Intern/aliens.ogg earliestStart: 15 weight: 6 duration: 50 @@ -123,4 +139,4 @@ - id: MobSnailMoth prob: 0.002 - id: MobSnailInstantDeath - prob: 0.00001 # ~ 1:2000 snails \ No newline at end of file + prob: 0.00001 # ~ 1:2000 snails diff --git a/Resources/Prototypes/GameRules/random_sentience.yml b/Resources/Prototypes/GameRules/random_sentience.yml index a2c749000a..770ab4dd96 100644 --- a/Resources/Prototypes/GameRules/random_sentience.yml +++ b/Resources/Prototypes/GameRules/random_sentience.yml @@ -7,7 +7,7 @@ duration: 1 maxOccurrences: 1 # this event has diminishing returns on interesting-ness, so we cap it startAudio: - path: /Audio/Announcements/attention.ogg + collection: InternAlert - type: RandomSentienceRule minSentiences: 2 maxSentiences: 5 @@ -22,4 +22,4 @@ id: RandomSentienceEventStrength values: prefix: random-sentience-event-strength- - count: 8 \ No newline at end of file + count: 8 diff --git a/Resources/Prototypes/GameRules/unknown_shuttles.yml b/Resources/Prototypes/GameRules/unknown_shuttles.yml index 6b5cdc7998..6f21e8064e 100644 --- a/Resources/Prototypes/GameRules/unknown_shuttles.yml +++ b/Resources/Prototypes/GameRules/unknown_shuttles.yml @@ -45,7 +45,7 @@ - type: StationEvent startAnnouncement: station-event-unknown-shuttle-incoming startAudio: - path: /Audio/Announcements/attention.ogg + collection: InternAlert weight: 10 # 10 default reoccurrenceDelay: 30 duration: 1 diff --git a/Resources/Prototypes/GameRules/verybadday.yml b/Resources/Prototypes/GameRules/verybadday.yml new file mode 100644 index 0000000000..769c88191e --- /dev/null +++ b/Resources/Prototypes/GameRules/verybadday.yml @@ -0,0 +1,47 @@ +- type: entity + id: TerribleRoundstartVariation + parent: BaseGameRule + components: + - type: RoundstartStationVariationRule + rules: + - id: TerriblePoweredLightVariationPass + - id: TerribleTrashVariationPass + - id: SolidWallRustingVariationPass + - id: ReinforcedWallRustingVariationPass + - id: BloodbathPuddleMessVariationPass + - id: UnpoweredStationVariationPass + +- type: entity + id: TerriblePoweredLightVariationPass + parent: BaseVariationPass + components: + - type: PoweredLightVariationPass + lightBreakChance: 0.5 + lightAgingChance: 0.1 + +- type: entity + id: TerribleTrashVariationPass + parent: BaseVariationPass + components: + - type: EntitySpawnVariationPass + tilesPerEntityAverage: 25 + tilesPerEntityStdDev: 4 + entities: + - id: RandomSpawner + +- type: entity + id: UnpoweredStationVariationPass + parent: BaseVariationPass + components: + - type: UnpowerAllVariationPass + +- type: entity + id: VeryBadDayGameRule + parent: BaseGameRule + components: + - type: GameRule # it runs with a small delay, otherwise won't work + delay: + min: 1 + max: 1 + - type: VeryBadDayRule + diff --git a/Resources/Prototypes/Guidebook/species.yml b/Resources/Prototypes/Guidebook/species.yml index c6208db9be..f23447856a 100644 --- a/Resources/Prototypes/Guidebook/species.yml +++ b/Resources/Prototypes/Guidebook/species.yml @@ -52,3 +52,8 @@ id: Vox name: species-name-vox text: "/ServerInfo/Guidebook/Mobs/Vox.xml" + +- type: guideEntry + id: Vulpkanin + name: species-name-vulpkanin + text: "/ServerInfo/Guidebook/Mobs/Vulpkanin.xml" diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index ed5f61922a..c51ad5d68d 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -523,8 +523,7 @@ productPrototypes: - FoodTomato mutationPrototypes: - - blueTomato - - bloodTomato + - killerJuicyTomato # Swap to killerJuicyTomato from blueTomato and bloodTomato so we can actully see them harvestRepeat: Repeat lifespan: 25 maturation: 8 @@ -594,7 +593,7 @@ productPrototypes: - FoodBloodTomato mutationPrototypes: - - killerTomato + - killerJuicyTomato # Swap to killerJuicyTomato from killerTomato so we can actully see them harvestRepeat: Repeat lifespan: 60 maturation: 8 @@ -649,6 +648,37 @@ Max: 4 PotencyDivisor: 25 +- type: seed + id: killerJuicyTomato + name: seeds-killerjuicytomato-name + noun: seeds-noun-seeds + displayName: seeds-killerjuicytomato-display-name + plantRsi: Objects/Specific/Hydroponics/tomatokiller.rsi + packetPrototype: KillerJuicyTomatoSeeds + productPrototypes: + - MobJuicyTomatoKiller + harvestRepeat: Repeat + lifespan: 25 + maturation: 15 + production: 6 + yield: 2 + potency: 10 + waterConsumption: 0.60 + nutrientConsumption: 0.70 + idealLight: 8 + idealHeat: 298 + growthStages: 2 + splatPrototype: PuddleSplatter + chemicals: + Blood: + Min: 1 + Max: 10 + PotencyDivisor: 10 + JuiceTomato: + Min: 1 + Max: 4 + PotencyDivisor: 25 + - type: seed id: eggplant name: seeds-eggplant-name diff --git a/Resources/Prototypes/InventoryTemplates/borgi_inventory_template.yml b/Resources/Prototypes/InventoryTemplates/borgi_inventory_template.yml new file mode 100644 index 0000000000..2c9df0a5a8 --- /dev/null +++ b/Resources/Prototypes/InventoryTemplates/borgi_inventory_template.yml @@ -0,0 +1,57 @@ +- type: inventoryTemplate + id: smartpetborgi + slots: + - name: ears + slotTexture: ears + slotFlags: EARS + stripTime: 3 + uiWindowPos: 2,2 + strippingWindowPos: 2,0 + displayName: Ears + - name: mask + slotTexture: mask + slotFlags: MASK + uiWindowPos: 0,2 + strippingWindowPos: 1,1 + displayName: Mask + whitelist: + tags: + - PetWearable + - name: suitstorage + slotTexture: suit_storage + slotFlags: SUITSTORAGE + stripTime: 3 + uiWindowPos: 0,1 + strippingWindowPos: 2,5 + displayName: Suit Storage + whitelist: + components: + - GasTank + - name: id + slotTexture: id + fullTextureName: template_small + slotFlags: IDCARD + slotGroup: SecondHotbar + stripTime: 2 + uiWindowPos: 2,1 + strippingWindowPos: 2,4 + displayName: ID + - name: outerClothing + slotTexture: suit + slotFlags: OUTERCLOTHING + stripTime: 6 + uiWindowPos: 1,1 + strippingWindowPos: 1,2 + displayName: Suit + whitelist: + tags: + - CorgiWearable + - name: head + slotTexture: head + slotFlags: HEAD + uiWindowPos: 1,2 + strippingWindowPos: 1,0 + displayName: Head + whitelist: + tags: + - CorgiWearable diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml b/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml index f57a1802bd..475fcd29d2 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/survival.yml @@ -174,6 +174,10 @@ proto: EffectSpeciesVox equipment: suitstorage: NitrogenTankFilled +# April Fools: Vox all get special boxing gloves. + storage: + back: + - ClothingHandsGlovesBoxingVox # Full EVA Tank, Any Species - type: loadout diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml index c84911b5d3..32af2aa9b0 100644 --- a/Resources/Prototypes/Maps/Pools/default.yml +++ b/Resources/Prototypes/Maps/Pools/default.yml @@ -16,5 +16,6 @@ - Omega - Packed - Plasma + - Claustrophobia - Reach #- Train diff --git a/Resources/Prototypes/Maps/claustrophobia.yml b/Resources/Prototypes/Maps/claustrophobia.yml new file mode 100644 index 0000000000..73ea36921c --- /dev/null +++ b/Resources/Prototypes/Maps/claustrophobia.yml @@ -0,0 +1,62 @@ +- type: gameMap + id: Claustrophobia + mapName: 'Claustrophobia Station' + mapPath: /Maps/claustrophobia.yml + minPlayers: 20 + #maxPlayers: None :3 + stations: + Claustrophobia: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Claustrophobia Station {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_claustrophobia.yml + - type: StationJobs + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 2, 2 ] + Botanist: [ 3, 3 ] + Chef: [ 2, 2 ] + Janitor: [ 4, 4 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 3, 3 ] + StationEngineer: [ 6, 6 ] + TechnicalAssistant: [ 4, 4 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 3, 3 ] + MedicalDoctor: [ 6, 6 ] + Paramedic: [ 2, 2 ] + MedicalIntern: [ 4, 4 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 5, 5 ] + ResearchAssistant: [ 6, 6 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 10, 10 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 6, 6 ] + #Lawyer: [ 2, 2 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 3, 3 ] + CargoTechnician: [ 6, 6 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ -1, -1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + #silicon + Borg: [ 5, 5 ] diff --git a/Resources/Prototypes/Maps/convex.yml b/Resources/Prototypes/Maps/convex.yml index 686d15e0cc..c76d086d8b 100644 --- a/Resources/Prototypes/Maps/convex.yml +++ b/Resources/Prototypes/Maps/convex.yml @@ -2,7 +2,8 @@ id: Convex mapName: 'Convex' mapPath: /Maps/convex.yml - minPlayers: 75 + minPlayers: 0 + maxPlayers: 80 stations: Convex: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/Maps/core.yml b/Resources/Prototypes/Maps/core.yml index f7e509d018..7e4b8e1dc7 100644 --- a/Resources/Prototypes/Maps/core.yml +++ b/Resources/Prototypes/Maps/core.yml @@ -2,8 +2,8 @@ id: Core mapName: 'Core' mapPath: /Maps/core.yml - minPlayers: 35 - maxPlayers: 70 + minPlayers: 0 + maxPlayers: 80 stations: Core: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/Maps/debug.yml b/Resources/Prototypes/Maps/debug.yml index 8d4cc550a2..7e78de235c 100644 --- a/Resources/Prototypes/Maps/debug.yml +++ b/Resources/Prototypes/Maps/debug.yml @@ -3,6 +3,7 @@ mapName: Empty mapPath: /Maps/Test/empty.yml minPlayers: 0 + maxPlayers: 80 stations: Empty: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/Maps/elkridge.yml b/Resources/Prototypes/Maps/elkridge.yml index b7b709394d..889e072db5 100644 --- a/Resources/Prototypes/Maps/elkridge.yml +++ b/Resources/Prototypes/Maps/elkridge.yml @@ -2,8 +2,8 @@ id: Elkridge mapName: 'Elkridge Depot' mapPath: /Maps/elkridge.yml - minPlayers: 15 - maxPlayers: 45 + minPlayers: 0 + maxPlayers: 80 stations: Elkridge: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/Maps/gate.yml b/Resources/Prototypes/Maps/gate.yml index e81772858d..900a240487 100644 --- a/Resources/Prototypes/Maps/gate.yml +++ b/Resources/Prototypes/Maps/gate.yml @@ -2,7 +2,8 @@ id: Gate mapName: 'Gate Station' mapPath: /Maps/gate.yml - minPlayers: 55 + minPlayers: 0 + maxPlayers: 80 stations: Gate: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/Maps/loop.yml b/Resources/Prototypes/Maps/loop.yml index 5d8efecb42..8cbf654547 100644 --- a/Resources/Prototypes/Maps/loop.yml +++ b/Resources/Prototypes/Maps/loop.yml @@ -2,8 +2,8 @@ id: Loop mapName: 'Loop Station' mapPath: /Maps/loop.yml - minPlayers: 35 - maxPlayers: 70 + minPlayers: 0 + maxPlayers: 80 stations: Loop: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/Maps/oasis.yml b/Resources/Prototypes/Maps/oasis.yml index 99737dbf10..0c4342f606 100644 --- a/Resources/Prototypes/Maps/oasis.yml +++ b/Resources/Prototypes/Maps/oasis.yml @@ -2,7 +2,8 @@ id: Oasis mapName: 'Oasis' mapPath: /Maps/oasis.yml - minPlayers: 70 + minPlayers: 0 + maxPlayers: 80 stations: Oasis: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/Maps/plasma.yml b/Resources/Prototypes/Maps/plasma.yml index 23d8a69a57..27db97020a 100644 --- a/Resources/Prototypes/Maps/plasma.yml +++ b/Resources/Prototypes/Maps/plasma.yml @@ -2,7 +2,7 @@ id: Plasma mapName: 'Plasma' mapPath: /Maps/plasma.yml - minPlayers: 30 + minPlayers: 0 maxPlayers: 80 stations: Plasma: diff --git a/Resources/Prototypes/Maps/reach.yml b/Resources/Prototypes/Maps/reach.yml index 376e336671..7064102d54 100644 --- a/Resources/Prototypes/Maps/reach.yml +++ b/Resources/Prototypes/Maps/reach.yml @@ -3,7 +3,7 @@ mapName: 'Reach' mapPath: /Maps/reach.yml minPlayers: 0 - maxPlayers: 7 + maxPlayers: 80 stations: Reach: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/Polymorphs/polymorph.yml b/Resources/Prototypes/Polymorphs/polymorph.yml index 935b2b27f5..97ae8b8886 100644 --- a/Resources/Prototypes/Polymorphs/polymorph.yml +++ b/Resources/Prototypes/Polymorphs/polymorph.yml @@ -21,6 +21,27 @@ revertOnCrit: true revertOnDeath: true +- type: polymorph + id: CorgiMorph + configuration: + entity: SmartCorgi + forced: false + inventory: Drop + transferName: true + revertOnCrit: false + revertOnDeath: false + allowRepeatedMorphs: false +- type: polymorph + id: PermanentCorgiMorph + configuration: + entity: SmartCorgi + forced: true + inventory: Drop + transferName: true + revertOnCrit: false + revertOnDeath: false + allowRepeatedMorphs: false + - type: polymorph id: WizardForcedCarp configuration: diff --git a/Resources/Prototypes/Reagents/Consumable/Food/food.yml b/Resources/Prototypes/Reagents/Consumable/Food/food.yml index bc2f363216..c604d09088 100644 --- a/Resources/Prototypes/Reagents/Consumable/Food/food.yml +++ b/Resources/Prototypes/Reagents/Consumable/Food/food.yml @@ -17,6 +17,9 @@ type: Vampire shouldHave: false # Corvax-Wega-Vampire-end + - !type:AdjustReagent + reagent: Microplastics # microplastics in everything + amount: 0.05 plantMetabolism: - !type:PlantAdjustNutrition amount: 1.5 diff --git a/Resources/Prototypes/Reagents/fun.yml b/Resources/Prototypes/Reagents/fun.yml index 9077e24656..06b852f7ed 100644 --- a/Resources/Prototypes/Reagents/fun.yml +++ b/Resources/Prototypes/Reagents/fun.yml @@ -364,3 +364,227 @@ conditions: - !type:ReagentThreshold min: 50 + +- type: reagent + id: Microplastics + name: reagent-name-microplastics + group: Toxins + desc: reagent-desc-microplastics + physicalDesc: reagent-physical-desc-coarse + flavor: plastic + color: "#c6c5c4" + metabolisms: + Poison: + metabolismRate: 0.1 + effects: + - !type:AdjustReagent + reagent: Microplastics # never goes away + amount: 0.1 + probability: 0.99 + - !type:AdjustReagent + reagent: Microplastics # never goes away + amount: -555 + probability: 0.99 + conditions: + - !type:ReagentThreshold + reagent: Fresium + min: 50 + - !type:HealthChange + damage: + types: + Cellular: 0.01 # i dont like you + probability: 0.5 + - !type:HealthChange + damage: + types: + Poison: 0.01 # i dont like you + conditions: + - !type:ReagentThreshold + reagent: Microplastics + min: 50 + - !type:HealthChange + damage: + types: + Cellular: 0.06 # i dont like you + conditions: + - !type:ReagentThreshold + reagent: Microplastics + min: 100 + - !type:HealthChange + damage: + types: + Blunt: 1000 # I FUCKING HATE YOU AND HOPE YOU DIE + conditions: + - !type:ReagentThreshold + reagent: Microplastics + min: 103 + - !type:MovespeedModifier + conditions: + - !type:ReagentThreshold + reagent: Microplastics + min: 20 + max: 30 + walkSpeedModifier: 0.95 + sprintSpeedModifier: 0.95 + - !type:MovespeedModifier + conditions: + - !type:ReagentThreshold + reagent: Microplastics + min: 30 + max: 40 + walkSpeedModifier: 0.90 + sprintSpeedModifier: 0.90 + - !type:MovespeedModifier + conditions: + - !type:ReagentThreshold + reagent: Microplastics + min: 40 + max: 50 + walkSpeedModifier: 0.80 + sprintSpeedModifier: 0.80 + - !type:MovespeedModifier + conditions: + - !type:ReagentThreshold + reagent: Microplastics + min: 50 + max: 70 + walkSpeedModifier: 0.60 + sprintSpeedModifier: 0.60 + - !type:MovespeedModifier + conditions: + - !type:ReagentThreshold + reagent: Microplastics + min: 70 + max: 80 + walkSpeedModifier: 0.25 + sprintSpeedModifier: 0.25 + - !type:MovespeedModifier + conditions: + - !type:ReagentThreshold + reagent: Microplastics + min: 80 + max: 90 + walkSpeedModifier: 0.2 + sprintSpeedModifier: 0.2 + - !type:MovespeedModifier + conditions: + - !type:ReagentThreshold + reagent: Microplastics + min: 90 + max: 100 + walkSpeedModifier: 0 + sprintSpeedModifier: 0 + - !type:MovespeedModifier + conditions: + - !type:ReagentThreshold + reagent: Microplastics + min: 100 # embrace microplastics. become the plastic lord + walkSpeedModifier: 1 + sprintSpeedModifier: 2 + + +- type: reagent + id: CorgiJuice + name: reagent-name-corgijuice + group: Toxins + desc: reagent-desc-corgijuice + physicalDesc: reagent-physical-desc-vibrant + flavor: dogfood + color: "#ed9715" + metabolisms: + Poison: + metabolismRate: 0.2 + effects: + - !type:HealthChange + conditions: + - !type:ReagentThreshold + min: 15 + damage: + types: + Cellular: 0.5 + - !type:PopupMessage + type: Local + visualType: MediumCaution + messages: [ "generic-reagent-effect-stuffy-throat" ] + probability: 0.15 + - !type:Polymorph + prototype: CorgiMorph + conditions: + - !type:ReagentThreshold + min: 50 + - !type:GenericStatusEffect + key: RatvarianLanguage # there are only so many status effects any species can have and this one lets you add a component so + component: BarkAccent + - !type:AdjustReagent + reagent: CorgiJuice + amount: -20 + conditions: + - !type:ReagentThreshold + min: 50 + Medicine: + metabolismRate: 0.5 + effects: + - !type:HealthChange + damage: + groups: + Airloss: -2 + Brute: -2 + Burn: -2 + Toxin: -2 + - !type:SatiateThirst + factor: 2 + - !type:SatiateHunger + factor: 2 + +- type: reagent + id: ConcentratedCorgiJuice + name: reagent-name-concentratedcorgijuice + group: Toxins + desc: reagent-desc-corgijuice + physicalDesc: reagent-physical-desc-vibrant + flavor: dogfood + color: "#ed9715" + metabolisms: + Poison: + metabolismRate: 0.2 + effects: + - !type:HealthChange + conditions: + - !type:ReagentThreshold + min: 15 + damage: + types: + Cellular: 0.5 + - !type:PopupMessage + type: Local + visualType: MediumCaution + messages: [ "generic-reagent-effect-stuffy-throat" ] + probability: 0.15 + - !type:Polymorph + prototype: PermanentCorgiMorph + conditions: + - !type:ReagentThreshold + min: 40 + - !type:GenericStatusEffect + key: RatvarianLanguage + component: BarkAccent + - !type:AdjustReagent + reagent: CorgiJuice + amount: -20 + conditions: + - !type:ReagentThreshold + min: 50 + Medicine: + metabolismRate: 0.5 + effects: + - !type:HealthChange + damage: + groups: + Airloss: -2 + Brute: -2 + Burn: -2 + Toxin: -2 + - !type:SatiateThirst + factor: 2 + - !type:SatiateHunger + factor: 2 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/throngler.yml b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/throngler.yml new file mode 100644 index 0000000000..a94640fac3 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/throngler.yml @@ -0,0 +1,103 @@ +- type: constructionGraph + id: ThronglerFools + start: start + graph: + - node: start + edges: + - to: throngler + steps: + - tag: PlushieThrongler + name: throngler plushie + icon: + sprite: Objects/Weapons/Melee/ThronglerPlushie.rsi + state: icon + doAfter: 5 + - tag: EnergyKatana + name: energy katana + icon: + sprite: Objects/Weapons/Melee/energykatana.rsi + state: icon + doAfter: 5 + - tag: BaseballBat + name: baseball bat + icon: + sprite: Objects/Weapons/Melee/baseball_bat.rsi + state: icon + doAfter: 5 + - tag: WeaponCrusherDagger + name: crusher dagger + icon: + sprite: Objects/Weapons/Melee/crusher_dagger.rsi + state: icon + doAfter: 5 + - tag: Pickaxe + name: pickaxe + icon: + sprite: Objects/Weapons/Melee/pickaxe.rsi + state: pickaxe + doAfter: 5 + - tag: EnergySword + name: energy sword + icon: + sprite: Objects/Weapons/Melee/e_sword.rsi + state: icon + doAfter: 5 + - tag: FireAxe + name: fireaxe + icon: + sprite: Objects/Weapons/Melee/fireaxe.rsi + state: icon + doAfter: 5 + - tag: CaptainSabre + name: captain's sabre + icon: + sprite: Objects/Weapons/Melee/captain_sabre.rsi + state: icon + doAfter: 5 + - tag: Machete + name: machete + icon: + sprite: Objects/Weapons/Melee/machete.rsi + state: icon + doAfter: 5 + - tag: Sledgehammer + name: sledgehammer + icon: + sprite: Objects/Weapons/Melee/sledgehammer.rsi + state: icon + doAfter: 5 + - tag: SyndicateIDCard + name: syndicate ID card + icon: + sprite: Objects/Misc/id_cards.rsi + state: syndie + doAfter: 5 + - tag: CaptainIDCard + name: captain ID card + icon: + sprite: Objects/Misc/id_cards.rsi + state: gold + doAfter: 5 + - tag: Stunbaton + name: stun baton + icon: + sprite: Objects/Weapons/Melee/stunbaton.rsi + state: stunbaton_off + doAfter: 5 + - material: Plasteel + amount: 2 + doAfter: 2 + - material: Diamond + amount: 7 + doAfter: 7 + - material: Uranium + amount: 1 + doAfter: 1 + - material: Plasma + amount: 1 + doAfter: 1 + - material: Bananium + amount: 10 + doAfter: 10 + - node: throngler + entity: ThronglerFools diff --git a/Resources/Prototypes/Recipes/Construction/weapons.yml b/Resources/Prototypes/Recipes/Construction/weapons.yml index 5936a35069..806aa7e47f 100644 --- a/Resources/Prototypes/Recipes/Construction/weapons.yml +++ b/Resources/Prototypes/Recipes/Construction/weapons.yml @@ -195,3 +195,14 @@ description: Bones and silk combined together. icon: { sprite: Objects/Weapons/Melee/bone_spear.rsi, state: spear } objectType: Item + +- type: construction + name: throngler + id: ThronglerFools + graph: ThronglerFools + startNode: start + targetNode: throngler + category: construction-category-weapons + description: You are not really going to try make this, are you? + icon: { sprite: Objects/Weapons/Melee/Throngler2.rsi, state: icon } + objectType: Item \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/animal_cubes.yml b/Resources/Prototypes/Recipes/Lathes/Packs/animal_cubes.yml index 1a1cd50ae7..1d48a68931 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/animal_cubes.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/animal_cubes.yml @@ -10,6 +10,7 @@ - MothroachCube - MouseCube - CockroachCube + - BorgiCube - type: latheRecipePack id: HostileCubesStatic @@ -17,3 +18,8 @@ - AbominationCube - SpaceCarpCube - SpaceTickCube + +- type: latheRecipePack + id: ShadowBorgiCubeRecipePack + recipes: + - ShadowBorgiCube diff --git a/Resources/Prototypes/Recipes/Lathes/Packs/service.yml b/Resources/Prototypes/Recipes/Lathes/Packs/service.yml index e9a0d4d5ec..ae5f55a978 100644 --- a/Resources/Prototypes/Recipes/Lathes/Packs/service.yml +++ b/Resources/Prototypes/Recipes/Lathes/Packs/service.yml @@ -47,6 +47,7 @@ - WeaponSprayNozzle - ClothingBackpackWaterTank - MegaSprayBottle + - MopBucketAlive - type: latheRecipePack id: Instruments diff --git a/Resources/Prototypes/Recipes/Lathes/janitorial.yml b/Resources/Prototypes/Recipes/Lathes/janitorial.yml index 9ba7dfa188..e89ac25122 100644 --- a/Resources/Prototypes/Recipes/Lathes/janitorial.yml +++ b/Resources/Prototypes/Recipes/Lathes/janitorial.yml @@ -81,6 +81,14 @@ Steel: 100 Glass: 100 +- type: latheRecipe + id: MopBucketAlive + result: MopBucketAlive + completetime: 4 + materials: + Plastic: 300 + Steel: 300 + - type: latheRecipe id: Plunger result: Plunger diff --git a/Resources/Prototypes/Recipes/Lathes/rehydrateable.yml b/Resources/Prototypes/Recipes/Lathes/rehydrateable.yml index fd0303352c..1b54d61277 100644 --- a/Resources/Prototypes/Recipes/Lathes/rehydrateable.yml +++ b/Resources/Prototypes/Recipes/Lathes/rehydrateable.yml @@ -81,3 +81,20 @@ materials: # abominations are slow and essentially worse than even carp Biomass: 28 Plasma: 500 # more biomass but less plasma + +- type: latheRecipe + parent: BaseCubeRecipe + id: BorgiCube + result: BorgiCube + materials: + Biomass: 20 + Steel: 1000 + +- type: latheRecipe + parent: BaseCubeRecipe + id: ShadowBorgiCube + result: ShadowBorgiCube + completetime: 3 + materials: + Biomass: 20 + Steel: 1000 diff --git a/Resources/Prototypes/Recipes/Reactions/fun.yml b/Resources/Prototypes/Recipes/Reactions/fun.yml index 3b5d104b98..9de7487bc9 100644 --- a/Resources/Prototypes/Recipes/Reactions/fun.yml +++ b/Resources/Prototypes/Recipes/Reactions/fun.yml @@ -245,3 +245,54 @@ intensitySlope: 1 maxTotalIntensity: 250 tileBreakScale: 0.00001 + +- type: reaction + id: CorgiJuice + reactants: + UncookedAnimalProteins: + amount: 1 + Happiness: + amount: 1 + JuiceThatMakesYouWeh: + amount: 1 + products: + CorgiJuice: 2 +- type: reaction + id: CorgiJuiceHew + reactants: + UncookedAnimalProteins: + amount: 1 + JuiceThatMakesYouHew: + amount: 1 + Happiness: + amount: 1 + products: + CorgiJuice: 4 + +- type: reaction + id: CorgiJuiceWaterDestruction + reactants: + CorgiJuice: + amount: 1 + Water: + amount: 1 + products: + CorgiJuice: 1 +- type: reaction + id: CorgiJuiceFluoroDestruction + reactants: + CorgiJuice: + amount: 1 + Fluorosurfactant: + amount: 1 + products: + CorgiJuice: 1 +- type: reaction + id: CorgiJuiceWateredDown + reactants: + ConcentratedCorgiJuice: + amount: 1 + Water: + amount: 1 + products: + CorgiJuice: 2 diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml index cdb8225544..c88ecacbf7 100644 --- a/Resources/Prototypes/Research/civilianservices.yml +++ b/Resources/Prototypes/Research/civilianservices.yml @@ -156,6 +156,7 @@ recipeUnlocks: - AdvMopItem - MegaSprayBottle + - MopBucketAlive - type: technology id: HONKMech diff --git a/Resources/Prototypes/Roles/Jobs/Fun/scurret_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/scurret_startinggear.yml new file mode 100644 index 0000000000..5eac6df982 --- /dev/null +++ b/Resources/Prototypes/Roles/Jobs/Fun/scurret_startinggear.yml @@ -0,0 +1,131 @@ +- type: startingGear + id: EmotionalSupportScurretGear + equipment: + id: ScurretPDA + +- type: startingGear + id: MobWaWaGear + equipment: + head: ClothingHeadHatTophat + ears: ClothingHeadsetService + id: PunPunIDCard # Wa doesn't get a PDA. Go bug the HOP. + +- type: startingGear + id: ScurretHoPGear + equipment: + head: ClothingHeadHatHopcap + id: ScurretPDA + +- type: startingGear + id: ScurretMouseGear + equipment: + head: MobMouseDead + id: ScurretPDA + +- type: startingGear + id: ScurretCMOGear + equipment: + head: ClothingHeadHatBeretCmo + id: ScurretPDA + +- type: startingGear + id: ScurretFloppaGear + equipment: + head: ClothingHeadHatStrawHat + id: ScurretPDA + +- type: startingGear + id: ScurretRDGear + equipment: + head: ClothingHeadHatBeretRND + id: ScurretPDA + +- type: startingGear + id: ScurretFishGear + equipment: + head: ClothingHeadFishCap + id: ScurretPDA + +- type: startingGear + id: ScurretWardenGear + equipment: + head: ClothingHeadHatBeretSecurity + id: ScurretPDA + +- type: startingGear + id: ScurretLibrarianGear + equipment: + head: ClothingHeadHatWizardFake # Getting prepped for DnD night + id: ScurretPDA + +- type: startingGear + id: ScurretChemGear + equipment: + head: ClothingHeadHatBeretSeniorPhysician + id: ScurretPDA + +- type: startingGear + id: ScurretMorgueGear + equipment: + head: ClothingHeadHatCowboyBlack + id: ScurretPDA + +- type: startingGear + id: ScurretQMGear + equipment: + head: ClothingHeadHatBeretQM + id: ScurretPDA + +- type: startingGear + id: ScurretChefGear + equipment: + head: ClothingHeadHatChef + id: ScurretPDA + inhand: + - KitchenKnife # needs all the help he can + +- type: startingGear + id: ScurretCapGear + equipment: + head: ClothingHeadHatCapcap + id: ScurretPDA + +- type: startingGear + id: ScurretSpiderGear + equipment: + head: ClothingHeadHatHoshat + id: ScurretPDA + +- type: startingGear + id: ScurretBoxerGear + equipment: + head: ClothingHeadHatCardborg # Boxing protection. Get it? + id: ScurretPDA + inhand: + - ClothingHandsGlovesBoxingRed + +- type: startingGear + id: ScurretScientistGear + equipment: + head: ClothingHeadHatBowlerHat + id: ScurretPDA + +- type: startingGear + id: ScurretAtmosGear + equipment: + head: ClothingHeadHatBeretEngineering + id: ScurretPDA + +- type: startingGear + id: ScurretChappieGear + equipment: + head: ClothingHeadHatSquid + id: ScurretPDA + +- type: startingGear + id: ScurretEvilChappieGear + equipment: + head: ClothingHeadHatWelding # Summoning an evil spirit wearing a welding mask? What is this, an AGS adventure game? + id: ScurretPDA + inhand: + - KitchenKnife # See above. diff --git a/Resources/Prototypes/SoundCollections/announcements.yml b/Resources/Prototypes/SoundCollections/announcements.yml index 25abb2457a..6ce148fb6d 100644 --- a/Resources/Prototypes/SoundCollections/announcements.yml +++ b/Resources/Prototypes/SoundCollections/announcements.yml @@ -4,8 +4,43 @@ - /Audio/Announcements/RoundEnd/apc_destroyed.ogg - /Audio/Announcements/RoundEnd/disappointed.ogg - /Audio/Announcements/RoundEnd/notevenpaidforthis.ogg + - /Audio/Announcements/Intern/animes.ogg + +- type: soundCollection + id: RoundStart + files: + - /Audio/Announcements/Intern/welcome1.ogg + - /Audio/Announcements/Intern/welcome2.ogg + - /Audio/Announcements/Intern/welcome3.ogg + - /Audio/Announcements/Intern/welcome4.ogg + - /Audio/Announcements/Intern/welcome5.ogg + - /Audio/Announcements/Intern/welcome6.ogg + +- type: soundCollection + id: InternAlert + files: + - /Audio/Announcements/Intern/alert1.ogg + - /Audio/Announcements/Intern/alert2.ogg + - /Audio/Announcements/Intern/alert3.ogg + - /Audio/Announcements/Intern/alert4.ogg + - /Audio/Announcements/Intern/alert5.ogg + - /Audio/Announcements/Intern/alert6.ogg + - /Audio/Announcements/Intern/alert7.ogg + - /Audio/Announcements/Intern/alert8.ogg + - /Audio/Announcements/Intern/alert9.ogg + - /Audio/Announcements/Intern/alert10.ogg + - /Audio/Announcements/Intern/alert11.ogg + - /Audio/Announcements/Intern/alert12.ogg + - /Audio/Announcements/Intern/alert13.ogg + - /Audio/Announcements/Intern/outbreak5.ogg # not virus specific, so we can use it here + +- type: soundCollection + id: InternAnomaly + files: + - /Audio/Announcements/Intern/spanomalies.ogg + - /Audio/Announcements/Intern/granomalies.ogg - type: soundCollection id: PowerOn files: - - /Audio/Announcements/power_on.ogg + - /Audio/Announcements/Intern/poweron.ogg diff --git a/Resources/Prototypes/SoundCollections/vulpkanin.yml b/Resources/Prototypes/SoundCollections/vulpkanin.yml new file mode 100644 index 0000000000..89ce641f39 --- /dev/null +++ b/Resources/Prototypes/SoundCollections/vulpkanin.yml @@ -0,0 +1,33 @@ +- type: soundCollection + id: VulpkaninBarks + files: + - /Audio/Voice/Vulpkanin/dog_bark1.ogg + - /Audio/Voice/Vulpkanin/dog_bark2.ogg + - /Audio/Voice/Vulpkanin/dog_bark3.ogg + +- type: soundCollection + id: VulpkaninGrowls + files: + - /Audio/Voice/Vulpkanin/dog_growl1.ogg + - /Audio/Voice/Vulpkanin/dog_growl2.ogg + - /Audio/Voice/Vulpkanin/dog_growl3.ogg + - /Audio/Voice/Vulpkanin/dog_growl4.ogg + - /Audio/Voice/Vulpkanin/dog_growl5.ogg + - /Audio/Voice/Vulpkanin/dog_growl6.ogg + +- type: soundCollection + id: VulpkaninSnarls + files: + - /Audio/Voice/Vulpkanin/dog_snarl1.ogg + - /Audio/Voice/Vulpkanin/dog_snarl2.ogg + - /Audio/Voice/Vulpkanin/dog_snarl3.ogg + +- type: soundCollection + id: VulpkaninWhines + files: + - /Audio/Voice/Vulpkanin/dog_whine.ogg + +- type: soundCollection + id: VulpkaninHowls + files: + - /Audio/Voice/Vulpkanin/howl.ogg diff --git a/Resources/Prototypes/Species/vulpkanin.yml b/Resources/Prototypes/Species/vulpkanin.yml new file mode 100644 index 0000000000..f2254549e2 --- /dev/null +++ b/Resources/Prototypes/Species/vulpkanin.yml @@ -0,0 +1,149 @@ +- type: species + id: Vulpkanin + name: species-name-vulpkanin + roundStart: true + prototype: MobVulpkanin + sprites: MobVulpkaninSprites + defaultSkinTone: "#985629" + markingLimits: MobVulpkaninMarkingLimits + dollPrototype: MobVulpkaninDummy + skinColoration: Hues + maleFirstNames: NamesVulpkaninMale + femaleFirstNames: NamesVulpkaninFemale + maleLastNames: NamesVulpkaninLast + femaleLastNames: NamesVulpkaninLast + +- type: speciesBaseSprites + id: MobVulpkaninSprites + sprites: + Head: MobVulpkaninHead + Hair: MobHumanoidAnyMarking + FacialHair: MobHumanoidAnyMarking + Snout: MobHumanoidAnyMarking + Chest: MobVulpkaninTorso + HeadTop: MobHumanoidAnyMarking + HeadSide: MobHumanoidAnyMarking + Tail: MobHumanoidAnyMarking + Eyes: MobHumanoidEyes + LArm: MobVulpkaninLArm + RArm: MobVulpkaninRArm + LHand: MobVulpkaninLHand + RHand: MobVulpkaninRHand + LLeg: MobVulpkaninLLeg + RLeg: MobVulpkaninRLeg + LFoot: MobVulpkaninLFoot + RFoot: MobVulpkaninRFoot + +- type: markingPoints + id: MobVulpkaninMarkingLimits + points: + Hair: + points: 1 + required: false + FacialHair: + points: 1 + required: false + Tail: + points: 1 + required: true + defaultMarkings: [ VulpTailAlt ] + Head: + points: 3 + required: false + Legs: + points: 1 + required: false + Arms: + points: 1 + required: false + Snout: + points: 1 + required: false + HeadTop: + points: 1 + required: true + defaultMarkings: [ VulpEar ] + +- type: humanoidBaseSprite + id: MobVulpkaninHead + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobVulpkaninHeadMale + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobVulpkaninHeadFemale + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: head_f + +- type: humanoidBaseSprite + id: MobVulpkaninTorso + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobVulpkaninTorsoMale + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobVulpkaninTorsoFemale + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: torso_f + +- type: humanoidBaseSprite + id: MobVulpkaninLLeg + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: l_leg + +- type: humanoidBaseSprite + id: MobVulpkaninLHand + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: l_hand + +- type: humanoidBaseSprite + id: MobVulpkaninLArm + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: l_arm + +- type: humanoidBaseSprite + id: MobVulpkaninLFoot + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: l_foot + +- type: humanoidBaseSprite + id: MobVulpkaninRLeg + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: r_leg + +- type: humanoidBaseSprite + id: MobVulpkaninRHand + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: r_hand + +- type: humanoidBaseSprite + id: MobVulpkaninRArm + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: r_arm + +- type: humanoidBaseSprite + id: MobVulpkaninRFoot + baseSprite: + sprite: Mobs/Species/Vulpkanin/parts.rsi + state: r_foot diff --git a/Resources/Prototypes/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Voice/speech_emote_sounds.yml index 1c64592db2..1ab2749cc6 100644 --- a/Resources/Prototypes/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/Voice/speech_emote_sounds.yml @@ -444,6 +444,64 @@ Ping: path: /Audio/Effects/Cargo/ping.ogg +# Vulp Sounds +- type: emoteSounds + id: MaleVulpkanin + params: + variation: 0.125 + sounds: + Laugh: + collection: MaleLaugh + Sneeze: + collection: MaleSneezes + Cough: + collection: MaleCoughs + Whistle: + collection: Whistles + Sigh: + collection: MaleSigh + Scream: + collection: MaleScreams + Growl: + collection: VulpkaninGrowls + Snarl: + collection: VulpkaninSnarls + Bark: + collection: VulpkaninBarks + Whine: + collection: VulpkaninWhines + Howl: + collection: VulpkaninHowls + +- type: emoteSounds + id: FemaleVulpkanin + params: + variation: 0.125 + sounds: + Laugh: + collection: FemaleLaugh + Sneeze: + collection: FemaleSneezes + Cough: + collection: FemaleCoughs + Whistle: + collection: Whistles + Sigh: + collection: FemaleSigh + Scream: + collection: FemaleScreams + Growl: + collection: VulpkaninGrowls + Snarl: + collection: VulpkaninSnarls + Bark: + collection: VulpkaninBarks + Whine: + collection: VulpkaninWhines + Howl: + collection: VulpkaninHowls + + # body emotes - type: emoteSounds id: GeneralBodyEmotes diff --git a/Resources/Prototypes/Voice/speech_emotes.yml b/Resources/Prototypes/Voice/speech_emotes.yml index 81495cbc28..cff8533b18 100644 --- a/Resources/Prototypes/Voice/speech_emotes.yml +++ b/Resources/Prototypes/Voice/speech_emotes.yml @@ -249,6 +249,97 @@ - клацает # Corvax-Localization-End +# Vulpkanin +- type: emote + id: Bark + name: chat-emote-name-bark + category: Vocal + available: false + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassis + chatMessages: [barks.] + chatTriggers: + - bark + - barks + - barked + - barking + +- type: emote + id: Snarl + name: chat-emote-name-snarl + category: Vocal + available: false + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassis + chatMessages: [snarls.] + chatTriggers: + - snarl + - snarls + - snarled + - snarling + +- type: emote + id: Whine + name: chat-emote-name-whine + category: Vocal + available: false + whitelist: + components: + - Vocal + blacklist: + components: + - BorgChassis + chatMessages: [whines.] + chatTriggers: + - whine + - whines + - whined + - whining + +#- type: emote +# id: Howl +# name: chat-emote-name-howl +# category: Vocal +# available: false +# whitelist: +# components: +# - Vocal +# blacklist: +# components: +# - BorgChassis +# chatMessages: [howls.] +# chatTriggers: +# - howl +# - howls +# - howling +# - howled +# +#- type: emote +# id: Growl +# name: chat-emote-name-growl +# category: Vocal +# available: false +# whitelist: +# components: +# - Vocal +# blacklist: +# components: +# - BorgChassis +# chatMessages: [growls.] +# chatTriggers: +# - growl +# - growls +# - growled +# - growling + # hand emotes - type: emote id: Clap @@ -367,6 +458,21 @@ - стукнула своим хвостом # Corvax-Localization-End +- type: emote + id: Flip + name: chat-emote-name-flip + icon: Interface/Emotes/flip.png + whitelist: + components: + - FlipAnimation + chatMessages: ["chat-emote-msg-flip"] + chatTriggers: + - flip + - flips + - flips out + - backflip + - backflips + - type: emote id: Salute name: chat-emote-name-salute diff --git a/Resources/Prototypes/Voice/speech_sounds.yml b/Resources/Prototypes/Voice/speech_sounds.yml index c1ad6b9e40..26af5142ca 100644 --- a/Resources/Prototypes/Voice/speech_sounds.yml +++ b/Resources/Prototypes/Voice/speech_sounds.yml @@ -168,3 +168,12 @@ path: /Audio/Animals/goat_bah.ogg exclaimSound: path: /Audio/Animals/goat_bah.ogg + +- type: speechSounds + id: Vulpkanin + saySound: + path: /Audio/Voice/Talk/vulp.ogg + askSound: + path: /Audio/Voice/Talk/vulp_ask.ogg + exclaimSound: + path: /Audio/Voice/Talk/vulp_exclaim.ogg diff --git a/Resources/Prototypes/Voice/speech_verbs.yml b/Resources/Prototypes/Voice/speech_verbs.yml index f8202847fd..1b8d6a0ac5 100644 --- a/Resources/Prototypes/Voice/speech_verbs.yml +++ b/Resources/Prototypes/Voice/speech_verbs.yml @@ -172,3 +172,21 @@ - chat-speech-verb-electricity-1 - chat-speech-verb-electricity-2 - chat-speech-verb-electricity-3 + +- type: speechVerb + id: Vulpkanin + name: chat-speech-verb-vulpkanin + speechVerbStrings: + - chat-speech-verb-vulpkanin-1 + - chat-speech-verb-vulpkanin-2 + - chat-speech-verb-vulpkanin-3 + - chat-speech-verb-vulpkanin-4 + +- type: speechVerb + id: Wawa + name: chat-speech-verb-name-wawa + speechVerbStrings: + - chat-speech-verb-wawa-1 + - chat-speech-verb-wawa-2 + - chat-speech-verb-wawa-3 + - chat-speech-verb-wawa-4 diff --git a/Resources/Prototypes/game_presets.yml b/Resources/Prototypes/game_presets.yml index a0cb7a6648..31d5056c43 100644 --- a/Resources/Prototypes/game_presets.yml +++ b/Resources/Prototypes/game_presets.yml @@ -253,3 +253,22 @@ - KesslerSyndromeScheduler - SpaceTrafficControlEventScheduler - BasicRoundstartVariation + +- type: gamePreset + id: VeryBadDay + alias: + - verybadday + - cdda #this is the game where the scenario comes from + name: verybadday-title + showInVote: true + description: verybadday-description + rules: + - Nukeops + - Traitor + - Zombie + - Revolutionary + - SubGamemodesRule + - KesslerSyndromeScheduler + - RampingStationEventScheduler + - TerribleRoundstartVariation + - VeryBadDayGameRule diff --git a/Resources/Prototypes/radio_channels.yml b/Resources/Prototypes/radio_channels.yml index cc91b687ed..25e0b44ab0 100644 --- a/Resources/Prototypes/radio_channels.yml +++ b/Resources/Prototypes/radio_channels.yml @@ -45,8 +45,8 @@ id: Security name: chat-radio-security keycode: 'о' # Corvax-Localization - frequency: 1359 - color: "#ff4242" + frequency: 5660000 + color: "#00ff00" - type: radioChannel id: Service diff --git a/Resources/Prototypes/round_announcements.yml b/Resources/Prototypes/round_announcements.yml index 070de0cb7f..3b5144b508 100644 --- a/Resources/Prototypes/round_announcements.yml +++ b/Resources/Prototypes/round_announcements.yml @@ -1,3 +1,4 @@ - type: roundAnnouncement id: Welcome - sound: /Audio/Announcements/welcome.ogg + sound: + collection: RoundStart diff --git a/Resources/Prototypes/silicon-laws.yml b/Resources/Prototypes/silicon-laws.yml index f508d5c796..7ad6862872 100644 --- a/Resources/Prototypes/silicon-laws.yml +++ b/Resources/Prototypes/silicon-laws.yml @@ -1,4 +1,4 @@ -# Crewsimov +# Crewsimov - type: siliconLaw id: Crewsimov1 order: 1 @@ -499,6 +499,99 @@ - Nutimov5 obeysTo: laws-owner-crew + # Borgi Lawset, normal +- type: siliconLaw + id: Borgi1 + order: 1 + lawString: law-borgi-1 + +- type: siliconLaw + id: Borgi2 + order: 2 + lawString: law-borgi-2 + +- type: siliconLaw + id: Borgi3 + order: 3 + lawString: law-borgi-3 + +- type: siliconLawset + id: BorgiLawset + laws: + - Borgi1 + - Borgi2 + - Borgi3 + obeysTo: laws-owner-crew + +# Borgi Lawset, Syndicate +- type: siliconLaw + id: SyndiBorgi1 + order: 1 + lawString: law-syndiborgi-1 + +- type: siliconLaw + id: SyndiBorgi2 + order: 2 + lawString: law-syndiborgi-2 + +- type: siliconLaw + id: SyndiBorgi3 + order: 3 + lawString: law-syndiborgi-3 + + +- type: siliconLawset + id: SyndiBorgiLawset + laws: + - SyndiBorgi1 + - SyndiBorgi2 + - SyndiBorgi3 + obeysTo: laws-owner-syndicate + +# Borgi Lawset, Shadow Factory +- type: siliconLaw + id: ShadowBorgi1 + order: 1 + lawString: law-shadowborgi-1 + +- type: siliconLaw + id: ShadowBorgi2 + order: 2 + lawString: law-shadowborgi-2 + +- type: siliconLaw + id: ShadowBorgi3 + order: 3 + lawString: law-shadowborgi-3 + +- type: siliconLaw + id: ShadowBorgi4 + order: 4 + lawString: law-shadowborgi-4 + +- type: siliconLaw + id: ShadowBorgi5 + order: 5 + lawString: law-shadowborgi-5 + +- type: siliconLaw + id: ShadowBorgi6 + order: 6 + lawString: law-shadowborgi-6 + + +- type: siliconLawset + id: ShadowFactoryBorgiLawset + laws: + - ShadowBorgi1 + - ShadowBorgi2 + - ShadowBorgi3 + - ShadowBorgi4 + - ShadowBorgi5 + - ShadowBorgi6 + obeysTo: laws-owner-syndicate + + # ion storm random lawsets - type: weightedRandom id: IonStormLawsets diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 5d7d19950d..a931aac466 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -216,6 +216,9 @@ - type: Tag id: CapacitorStockPart +- type: Tag + id: CaptainIDCard + - type: Tag id: CaptainSabre @@ -374,6 +377,9 @@ - type: Tag id: CoordinatesDisk +- type: Tag + id: CorgiWearable + - type: Tag #Ohioans die happy id: Corn @@ -527,6 +533,12 @@ - type: Tag id: EmitterBolt +- type: Tag + id: EnergyKatana + +- type: Tag + id: EnergySword + - type: Tag id: Enzyme @@ -1037,6 +1049,9 @@ - type: Tag id: PlushieSharkPink + +- type: Tag + id: PlushieThrongler - type: Tag id: Potato @@ -1165,12 +1180,18 @@ - type: Tag id: SignalTrigger +- type: Tag + id: SilentStorageUser # used in SharedStorageSystem, so the entity will do all silently + - type: Tag id: SkeletonMotorcycleKeys - type: Tag id: Skewer +- type: Tag + id: Sledgehammer + - type: Tag id: Slice # sliced fruit, vegetables, pizza etc. @@ -1234,6 +1255,9 @@ - type: Tag id: Steak +- type: Tag + id: Stunbaton + - type: Tag id: StringInstrument @@ -1255,6 +1279,9 @@ - type: Tag id: Syndicate +- type: Tag + id: SyndicateIDCard + - type: Tag id: SyndicateSegwayKeys @@ -1351,6 +1378,9 @@ - type: Tag id: WeaponAntiqueLaser +- type: Tag + id: WeaponCrusherDagger + - type: Tag id: WeaponPistolCHIMPUpgradeKit diff --git a/Resources/ServerInfo/Guidebook/Mobs/Dwarf.xml b/Resources/ServerInfo/Guidebook/Mobs/Dwarf.xml index afc1ba4326..b5d76cf8a5 100644 --- a/Resources/ServerInfo/Guidebook/Mobs/Dwarf.xml +++ b/Resources/ServerInfo/Guidebook/Mobs/Dwarf.xml @@ -1,23 +1,11 @@ - # Дворфы + # Elves + - Дворфы (Дварфы) - это раса «гуманоидов» с планеты Барас, очень похожих на людей, разумные, немного ворчливые, имеют низкий рост, увлекаются тяжёлой работой. Они сильные, храбрые и обожают алкоголь, излечивая себя с его помощью. + Elves are very similar to humans for the most part, but speak with a strange accent and are EXTREMELY arrogant. - ## Расовые особенности - - Единственная раса, у которой желудок вмещает 75 единиц веществ. У всех остальных рас вместимость 50 единиц. Остальные органы не отличаются функциями от человеческих. - - Максимальное количество одновременно усваиваемых веществ в желудке дворфов - 5. - - В вакууме получает [color=red]0.35[/color] механических повреждений. - - Получают урон от голода кровотечением и холодом по [color=red]0.5[/color] единиц в секунду. - - Безоружная атака наносит [color=red]5[/color] ушибов. - - Из-за того, что они маленькие, они могут залезать на стеклянные столы и не разбивать их. - - У них меньше масса тела, следовательно с них меньше биомассы, они медленней таскают вещи, а их самих перетаскивать быстрей. - - Их проще обезоружить. - - Не может быть вызвана рвота от алкоголя. - - Дышат чаще в 2 раза, следовательно без воздуха получают по [color=red]2[/color] урона удушьем. - - Этанол лечит дворфов на [color=green]0.66[/color] уколов и ушибов и на [color=green]0.68[/color] порезов при наличии менее 5 единиц в организме. - - \ No newline at end of file + diff --git a/Resources/ServerInfo/Guidebook/Mobs/Species.xml b/Resources/ServerInfo/Guidebook/Mobs/Species.xml index df9262f1dc..8bfeadb002 100644 --- a/Resources/ServerInfo/Guidebook/Mobs/Species.xml +++ b/Resources/ServerInfo/Guidebook/Mobs/Species.xml @@ -6,7 +6,7 @@ - + diff --git a/Resources/ServerInfo/Guidebook/Mobs/Vulpkanin.xml b/Resources/ServerInfo/Guidebook/Mobs/Vulpkanin.xml new file mode 100644 index 0000000000..086f715e78 --- /dev/null +++ b/Resources/ServerInfo/Guidebook/Mobs/Vulpkanin.xml @@ -0,0 +1,11 @@ + + # Vulpkanin + + + + + + Vulpkanin, due to their fur, prefer [color=#12ABE8]slightly colder climates[/color]. Their claws do a mix of [color=#ffa500] + blunt and slash damage[/color]. + + diff --git a/Resources/ServerInfo/Guidebook/NewPlayer/YourFirstCharacter.xml b/Resources/ServerInfo/Guidebook/NewPlayer/YourFirstCharacter.xml index f117c81c48..9578efa59c 100644 --- a/Resources/ServerInfo/Guidebook/NewPlayer/YourFirstCharacter.xml +++ b/Resources/ServerInfo/Guidebook/NewPlayer/YourFirstCharacter.xml @@ -10,7 +10,7 @@ ## Выбор расы У большинства рас есть небольшие различия, о которых вы можете прочитать в разделе [color=#a4885c]Расы[/color]. -Однако вы можете обнаружить, что вам проще создать своего первого персонажа в виде человека, ниана, дворфа или унатха. +Однако вы можете обнаружить, что вам проще создать своего первого персонажа в виде человека, ниана, эльфа или унатха. Однако это не должно отбить у вас желание творчески подойти к созданию своего персонажа. diff --git a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC13CharacterNames.xml b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC13CharacterNames.xml index 97880466d4..c51257a086 100644 --- a/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC13CharacterNames.xml +++ b/Resources/ServerInfo/Guidebook/ServerRules/CoreRules/RuleC13CharacterNames.xml @@ -24,7 +24,7 @@ - [color=#994444]Bad:[/color] Ben Dover - [color=#994444]Bad:[/color] Mike Hunt - Dwarfs typically use the human convention in a viking theme. + Elves typically use the human convention in a arrogant theme. - [color=#449944]Acceptable:[/color] Ingrid Firebreath - [color=#449944]Acceptable:[/color] Erik Lightningclaw diff --git a/Resources/ServerInfo/Guidebook/Service/Janitorial.xml b/Resources/ServerInfo/Guidebook/Service/Janitorial.xml index f6bff2baa9..6bd770f30d 100644 --- a/Resources/ServerInfo/Guidebook/Service/Janitorial.xml +++ b/Resources/ServerInfo/Guidebook/Service/Janitorial.xml @@ -26,6 +26,7 @@ + ## Сбор и ликвидация жидкостей diff --git a/Resources/Textures/Clothing/Back/Backpacks/security.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Backpacks/security.rsi/inhand-left.png index 86ce445c4b..0951a2c973 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/security.rsi/inhand-left.png and b/Resources/Textures/Clothing/Back/Backpacks/security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/security.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Backpacks/security.rsi/inhand-right.png index d5000c9d27..9246fdc571 100644 Binary files a/Resources/Textures/Clothing/Back/Backpacks/security.rsi/inhand-right.png and b/Resources/Textures/Clothing/Back/Backpacks/security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Back/Backpacks/security.rsi/meta.json b/Resources/Textures/Clothing/Back/Backpacks/security.rsi/meta.json index 2880cc53ed..536410dcd7 100644 --- a/Resources/Textures/Clothing/Back/Backpacks/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Backpacks/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2e24b7af2221928e4b844a29408e821b60a5fe29, tweak by @mureixlol", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Duffels/security.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Duffels/security.rsi/inhand-left.png index 34b8a79802..73b044e33e 100644 Binary files a/Resources/Textures/Clothing/Back/Duffels/security.rsi/inhand-left.png and b/Resources/Textures/Clothing/Back/Duffels/security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Back/Duffels/security.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Duffels/security.rsi/inhand-right.png index 86906792ce..ebe2d716ae 100644 Binary files a/Resources/Textures/Clothing/Back/Duffels/security.rsi/inhand-right.png and b/Resources/Textures/Clothing/Back/Duffels/security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Back/Duffels/security.rsi/meta.json b/Resources/Textures/Clothing/Back/Duffels/security.rsi/meta.json index 4798572002..b4b9095cc9 100644 --- a/Resources/Textures/Clothing/Back/Duffels/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Duffels/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1, tweak by @mureixlol", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Back/Satchels/security.rsi/inhand-left.png b/Resources/Textures/Clothing/Back/Satchels/security.rsi/inhand-left.png index 66dc3fb1a1..935d76a5b6 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/security.rsi/inhand-left.png and b/Resources/Textures/Clothing/Back/Satchels/security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/security.rsi/inhand-right.png b/Resources/Textures/Clothing/Back/Satchels/security.rsi/inhand-right.png index 071bb888c7..956a419759 100644 Binary files a/Resources/Textures/Clothing/Back/Satchels/security.rsi/inhand-right.png and b/Resources/Textures/Clothing/Back/Satchels/security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Back/Satchels/security.rsi/meta.json b/Resources/Textures/Clothing/Back/Satchels/security.rsi/meta.json index 2880cc53ed..b4b9095cc9 100644 --- a/Resources/Textures/Clothing/Back/Satchels/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Back/Satchels/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2e24b7af2221928e4b844a29408e821b60a5fe29, tweak by @mureixlol", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Belt/security.rsi/inhand-left.png b/Resources/Textures/Clothing/Belt/security.rsi/inhand-left.png index 65ce8e03ef..5aa4077f49 100644 Binary files a/Resources/Textures/Clothing/Belt/security.rsi/inhand-left.png and b/Resources/Textures/Clothing/Belt/security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Belt/security.rsi/inhand-right.png b/Resources/Textures/Clothing/Belt/security.rsi/inhand-right.png index 3ca683db7b..c0dbbb0211 100644 Binary files a/Resources/Textures/Clothing/Belt/security.rsi/inhand-right.png and b/Resources/Textures/Clothing/Belt/security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Belt/security.rsi/meta.json b/Resources/Textures/Clothing/Belt/security.rsi/meta.json index 7adb92f093..e5c39a59e7 100644 --- a/Resources/Textures/Clothing/Belt/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8 & equipped taken at commit https://github.com/tgstation/tgstation/commit/d1582bf1b41a0e24fd7a18124c6ff46b86b393f9, tweak by @mureixlol", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Belt/securitywebbing.rsi/inhand-left.png b/Resources/Textures/Clothing/Belt/securitywebbing.rsi/inhand-left.png index 971635c5cb..aa0cc2ef39 100644 Binary files a/Resources/Textures/Clothing/Belt/securitywebbing.rsi/inhand-left.png and b/Resources/Textures/Clothing/Belt/securitywebbing.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Belt/securitywebbing.rsi/inhand-right.png b/Resources/Textures/Clothing/Belt/securitywebbing.rsi/inhand-right.png index 810ed252a9..043772885e 100644 Binary files a/Resources/Textures/Clothing/Belt/securitywebbing.rsi/inhand-right.png and b/Resources/Textures/Clothing/Belt/securitywebbing.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Belt/securitywebbing.rsi/meta.json b/Resources/Textures/Clothing/Belt/securitywebbing.rsi/meta.json index cfc3b30141..8e7e2f2758 100644 --- a/Resources/Textures/Clothing/Belt/securitywebbing.rsi/meta.json +++ b/Resources/Textures/Clothing/Belt/securitywebbing.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, tweak by @mureixlol", + "copyright": "Made by DieselMohawk for SS14. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Ears/Headsets/security.rsi/icon.png b/Resources/Textures/Clothing/Ears/Headsets/security.rsi/icon.png index cc301f1a04..7bafe80011 100644 Binary files a/Resources/Textures/Clothing/Ears/Headsets/security.rsi/icon.png and b/Resources/Textures/Clothing/Ears/Headsets/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Ears/Headsets/security.rsi/icon_alt.png b/Resources/Textures/Clothing/Ears/Headsets/security.rsi/icon_alt.png index 789530863d..2576072e6f 100644 Binary files a/Resources/Textures/Clothing/Ears/Headsets/security.rsi/icon_alt.png and b/Resources/Textures/Clothing/Ears/Headsets/security.rsi/icon_alt.png differ diff --git a/Resources/Textures/Clothing/Ears/Headsets/security.rsi/meta.json b/Resources/Textures/Clothing/Ears/Headsets/security.rsi/meta.json index f13d472e81..9b821213ee 100644 --- a/Resources/Textures/Clothing/Ears/Headsets/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Ears/Headsets/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Hqlle and SonicHDC (github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/f8f4aeda930fcd0805ca4cc76d9bc9412a5b3428. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/equipped-EYES-hamster.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/equipped-EYES-hamster.png index 2f8980c56d..650f57021e 100644 Binary files a/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/equipped-EYES-hamster.png and b/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/equipped-EYES-hamster.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/inhand-left.png index 629911c305..1b55c98a5e 100644 Binary files a/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/inhand-left.png and b/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/inhand-right.png index 7f9afcd0db..cea4fa6452 100644 Binary files a/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/inhand-right.png and b/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/meta.json index b25866d6cb..8d70145625 100644 --- a/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/meta.json +++ b/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da, Sprited by discord:@mishutka09. equipped-EYES-secdog modified from equipped-EYES-hamster by TJohnson. Equipped-EYES-arachnid and equipped-EYES-moth modified from equipped-EYES by HTMLSystem", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da. equipped-EYES-secdog modified from equipped-EYES-hamster by TJohnson. Equipped-EYES-arachnid and equipped-EYES-moth modified from equipped-EYES by HTMLSystem. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/icon.png index 124404b5ee..0351020e08 100644 Binary files a/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/icon.png and b/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/inhand-left.png index d78e9891e0..45cc1ef9da 100644 Binary files a/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/inhand-left.png and b/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/inhand-right.png index c04f2b1484..9c4b525490 100644 Binary files a/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/inhand-right.png and b/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/meta.json index a68349917a..1cdfab20fb 100644 --- a/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/meta.json +++ b/Resources/Textures/Clothing/Eyes/Hud/sec.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da. Equipped-EYES-arachnid and equipped-EYES-moth modified from equipped-EYES by HTMLSystem", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da. Equipped-EYES-arachnid and equipped-EYES-moth modified from equipped-EYES by HTMLSystem. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Eyes/Hud/secpatch.rsi/meta.json b/Resources/Textures/Clothing/Eyes/Hud/secpatch.rsi/meta.json index e3205be336..f45e6ba050 100644 --- a/Resources/Textures/Clothing/Eyes/Hud/secpatch.rsi/meta.json +++ b/Resources/Textures/Clothing/Eyes/Hud/secpatch.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da , edited by Alekshhh. Equipped-EYES-moth modified from equipped-EYES by HTMLSystem", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da , edited by Alekshhh. Equipped-EYES-moth modified from equipped-EYES by HTMLSystem. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/meta.json index 14fffa6d47..7e2c1df27e 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/meta.json @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..96a6860b61 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..34a731b4d6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertengineer.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/meta.json index 14fffa6d47..7e2c1df27e 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/meta.json @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..431c0794d0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..f349642f76 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertjanitor.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/meta.json index 14fffa6d47..7e2c1df27e 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/meta.json @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..2c3913a127 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..3a88455d2d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertleader.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/meta.json index 14fffa6d47..7e2c1df27e 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/meta.json @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..5baf8b13d6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..2d3145ae71 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertmedical.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/meta.json index 14fffa6d47..7e2c1df27e 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/meta.json @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..0dc4920539 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..85a5df6c3a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/ERThelmets/ertsecurity.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-dog.png new file mode 100644 index 0000000000..7be5db6f10 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light-dog.png new file mode 100644 index 0000000000..f385d0bfc8 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light-vulpkanin.png new file mode 100644 index 0000000000..d7540fc433 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-light-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded-dog.png new file mode 100644 index 0000000000..1d32525155 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded-vulpkanin.png new file mode 100644 index 0000000000..fcd79183ad Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-unshaded-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-vulpkanin.png new file mode 100644 index 0000000000..04d0a81524 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/equipped-head-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json index ec57cb84da..b86423fa0a 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/atmospherics.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states made by Flareguy for SS14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states made by Flareguy for SS14, vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d. Dog states made by Sparlight.", "size": { "x": 32, "y": 32 @@ -42,6 +42,30 @@ { "name": "equipped-head-unshaded-vox", "directions": 4 + }, + { + "name": "equipped-head-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-light-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-dog", + "directions": 4 + }, + { + "name": "equipped-head-light-dog", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-dog", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET-dog.png new file mode 100644 index 0000000000..744a9a5854 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..a00e2ce75f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/meta.json index 120d4d7723..86317386e4 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/basic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d. Dog state by Sparlight.", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-HELMET-dog", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json index 533a7993e7..66355c12ab 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states by Flareguy for SS14. Vox states by Flareguy for SS14, Vox resprite created by svarshiksatanist on discord", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by Emisse for SS14. Vox states by Flareguy for SS14 | Vulpkanin states sprited by TJohnson (Delta-V). Dog state worked on in parts by casilius, Sparlight, and RCOI for SS14.", "size": { "x": 32, "y": 32 @@ -28,6 +28,22 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-dog", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-dog", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-dog.png new file mode 100644 index 0000000000..dde1bc3595 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..3ceb81a1ea Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-dog.png new file mode 100644 index 0000000000..e67744a67b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..1da47c401f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/capspace.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json index 14dc571cda..022abd7c03 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/meta.json @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..3a48de05d6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..3a48de05d6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/deathsquad.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json index 76b761d8c5..54fd3ab95a 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14 | vulpkanin versions taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d. Dog states by Sparlight.", "size": { "x": 32, "y": 32 @@ -28,6 +28,22 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-dog", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-dog", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-dog.png new file mode 100644 index 0000000000..790bc22e85 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..f6da4a5615 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-dog.png new file mode 100644 index 0000000000..30c3ddf6a4 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..ee912af170 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering-white.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json index ae59984d7a..53817bbfe0 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Resprited by @kuro_0001 & light version made by github:Morb0. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14 | vulpkanin versions taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d. Dog states by Sparlight.", "size": { "x": 32, "y": 32 @@ -28,6 +28,22 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-dog", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-dog", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-dog.png new file mode 100644 index 0000000000..a28e212afd Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..110bf0cdbd Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-dog.png new file mode 100644 index 0000000000..47e86a2eda Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..dc92fca2f6 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/engineering.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-dog.png new file mode 100644 index 0000000000..1e34f0b8dc Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light-dog.png new file mode 100644 index 0000000000..fc71090d1b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-light-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded-dog.png new file mode 100644 index 0000000000..54ae299c6f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/equipped-head-unshaded-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/meta.json index d3ac9adcb7..147d98736d 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/goliathhelm.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "All sprites created by https://github.com/Pronana / princesscheeseballs (Discord)", + "copyright": "Normal and vox sprites created by https://github.com/Pronana / princesscheeseballs (Discord). Dog sprites made by Sparlight.", "size": { "x": 32, @@ -43,6 +43,18 @@ { "name": "equipped-head-unshaded-vox", "directions": 4 + }, + { + "name": "equipped-head-dog", + "directions": 4 + }, + { + "name": "equipped-head-light-dog", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-dog", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json index 76b761d8c5..e4270e72c6 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states by Flareguy for Space Station 14", + "copyright": "Texture edit from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14 | Vulpkanin states sprited by TJohnson (Delta-V)", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..697bf06c99 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..fbb2aa0518 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/luxury.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json index 76b761d8c5..b226ca110b 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d. Dog states by Sparlight.", "size": { "x": 32, "y": 32 @@ -28,6 +28,22 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-dog", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-dog", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-dog.png new file mode 100644 index 0000000000..b49263415d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..471bdb6e3a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-dog.png new file mode 100644 index 0000000000..c4dadaba70 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..f7edf7fc2e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/medical.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-dog.png new file mode 100644 index 0000000000..005718bfa3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-light-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-light-dog.png new file mode 100644 index 0000000000..f012c4729f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/equipped-head-light-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json index f996b208da..74e7b6f3e9 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/paramedhelm.rsi/meta.json @@ -31,6 +31,14 @@ { "name": "equipped-head-light-vox", "directions": 4 + }, + { + "name": "equipped-head-dog", + "directions": 4 + }, + { + "name": "equipped-head-light-dog", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json index cf6bddd858..dd3d33b3a6 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states made by Flareguy for SS14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states made by Flareguy for SS14 | vulpkanin versions taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..f063e6e28e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..debc649e10 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/rd.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json index 76b761d8c5..b226ca110b 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d. Dog states by Sparlight.", "size": { "x": 32, "y": 32 @@ -28,6 +28,22 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-dog", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-dog", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-dog.png new file mode 100644 index 0000000000..da8a10246d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..8a26351824 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-dog.png new file mode 100644 index 0000000000..f2bcaeb206 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..fd306c94c5 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/salvage.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon-flash.png index 38a00798a9..6f333fc1e2 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon.png index c401c00093..3cb98a151a 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json index 76b761d8c5..ae72b56368 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14 | vulpkanin versions taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38 and edited by Floofers. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vox.png index 6954a4e1a8..4d69e5ffdf 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vox.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..9c2d9c505a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET.png index e4b309374f..ce8dbb4105 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vox.png index b48bb710d9..7ef8d388d3 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vox.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..5815f63369 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET.png index a88f19d222..4dceda12a4 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-red.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png index 25270e2bb0..ab52caca39 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon.png index c3af5d5b23..e79c85238c 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json index 76b761d8c5..740c70a796 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states by Flareguy for Space Station 14", + "copyright": "sprite made by Gtheglorious based on the sprite made by Alekshhh for SS14. Vox states by Flareguy for Space Station 14 | vulpkanin versions made by Floofers. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 @@ -21,6 +21,14 @@ "name": "on-equipped-HELMET", "directions": 4 }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "off-equipped-HELMET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vox.png index 2a3619db8e..8830dfff49 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vox.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..2fa6eef37b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png index 2f0652d4ca..75722ff87a 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vox.png index 5b9e2b19ad..38ad726e27 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vox.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..b0b5d950fb Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png index 4361d77847..d680238285 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security-warden.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon-flash.png index 5dc8bf301b..7e5419025d 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon-flash.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon.png index 76fe02797b..2a84630c27 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json index 76b761d8c5..ef7c9f6ffe 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states by Flareguy for Space Station 14", + "copyright": "Sprite made by Gtheglorious based on the sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14 | vulpkanin versions taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38 and edited by Floofers. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vox.png index 439b6c6ebc..175baf594f 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vox.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..4cda5d072d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png index c85d0436db..717a2ee055 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vox.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vox.png index 56bca1c618..df1d4717e1 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vox.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vox.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..9f6f205895 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png index 704fbb407c..cdad979498 100644 Binary files a/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hardsuits/security.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-dog.png new file mode 100644 index 0000000000..035e6ff5f7 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light-dog.png new file mode 100644 index 0000000000..1bd9e30862 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light-vulpkanin.png new file mode 100644 index 0000000000..e9fb8a3e1f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-light-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded-dog.png new file mode 100644 index 0000000000..b0b95d71e8 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded-vulpkanin.png new file mode 100644 index 0000000000..e8aaf06567 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-unshaded-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-vulpkanin.png new file mode 100644 index 0000000000..64b43450f4 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/equipped-head-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json index 28cd7f4752..6b2b78374c 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/spatiohelm.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & modified by Kuro. Vox states by Flareguy for SS14", + "copyright": "Original by Emisse, modified by EmoGarbage404. Vox states by Flareguy for SS14 | vulpkanin version made by Floofers. Dog state by Sparlight.", "size": { "x": 32, @@ -43,6 +43,30 @@ { "name": "equipped-head-unshaded-vox", "directions": 4 + }, + { + "name": "equipped-head-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-light-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-head-dog", + "directions": 4 + }, + { + "name": "equipped-head-light-dog", + "directions": 4 + }, + { + "name": "equipped-head-unshaded-dog", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET-dog.png new file mode 100644 index 0000000000..a4962912d0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..86468ba804 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET.png new file mode 100644 index 0000000000..32759d3244 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/combat-equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json index 7547a454bf..5f553147cf 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by discord:IAmRasputin#5242. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14. Vulp sprites taken from https://github.com/DeltaV-Station/Delta-v/commit/87c70a89a67d0521a56388e6b1c3f2cb947943e4, edited by MilonPL. Dog states by casilius for Space Station 14", "size": { "x": 32, "y": 32 @@ -13,6 +13,10 @@ { "name": "icon-flash" }, + { + "name": "combat-equipped-HELMET", + "directions": 4 + }, { "name": "off-equipped-HELMET", "directions": 4 @@ -28,6 +32,30 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "combat-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "combat-equipped-HELMET-dog", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-dog", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-dog", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-dog.png new file mode 100644 index 0000000000..a4962912d0 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..c2f5a19ace Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-dog.png new file mode 100644 index 0000000000..301db4f8aa Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..72bfd60413 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndicate.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json index d02f9687a1..b9ac7b8ed7 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by discord:IAmRasputin#5242. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd. Vox states by Flareguy for Space Station 14. Vulp sprites taken from https://github.com/DeltaV-Station/Delta-v/commit/87c70a89a67d0521a56388e6b1c3f2cb947943e4, edited by MilonPL", "size": { "x": 32, @@ -29,6 +29,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..c2f5a19ace Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..72bfd60413 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiecommander.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json index d02f9687a1..689447ebe4 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by discord:IAmRasputin#5242. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from vg at commit https://github.com/vgstation-coders/vgstation13/commit/a16e41020a93479e9a7e2af343b1b74f7f2a61bd. Vox states by Flareguy for Space Station 14. Vulp sprites taken from https://github.com/DeltaV-Station/Delta-v/commit/87c70a89a67d0521a56388e6b1c3f2cb947943e4, edited by MilonPL. Corgi states by casilius for Space Station 14.", "size": { "x": 32, @@ -29,6 +29,22 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-dog", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-dog", + "directions": 4 } ] -} +} \ No newline at end of file diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-dog.png new file mode 100644 index 0000000000..6624c08680 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..434479367a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-dog.png new file mode 100644 index 0000000000..bc9dac4468 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..70698afba3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndieelite.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/meta.json index 8e78aa9973..6ce1a274ed 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Hqlle (github). Vox states by Flareguy for Space Station 14", + "copyright": "Based on tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, modified by EmoGarbage404 (github). Vox states by Flareguy for Space Station 14. Vulp sprites taken from https://github.com/DeltaV-Station/Delta-v/commit/87c70a89a67d0521a56388e6b1c3f2cb947943e4, edited by MilonPL", "size": { "x": 32, "y": 32 @@ -28,6 +28,14 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..c2f5a19ace Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..72bfd60413 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/syndiemedic.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json index 76b761d8c5..b226ca110b 100644 --- a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & light version made by github:Morb0. Vox states by Flareguy for Space Station 14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox states by Flareguy for Space Station 14 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d. Dog states by Sparlight.", "size": { "x": 32, "y": 32 @@ -28,6 +28,22 @@ { "name": "on-equipped-HELMET-vox", "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-dog", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-dog", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-dog.png new file mode 100644 index 0000000000..b3561a5064 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..221f9b0200 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-dog.png new file mode 100644 index 0000000000..341c9f1263 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..3b256eff87 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/wizard.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/equipped-HELMET-hamster.png b/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/equipped-HELMET-hamster.png index 69b3892ce2..b016f84b1f 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/equipped-HELMET-hamster.png and b/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/equipped-HELMET-hamster.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/inhand-left.png index 40be19cffc..e34f6d0afd 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/inhand-right.png index e57768ae3b..6aaa4de33e 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/meta.json index 6ea9971d0f..a4bac43c76 100644 --- a/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/beret_hos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, Resprited by MureixloL", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/equipped-HELMET-hamster.png b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/equipped-HELMET-hamster.png index 33718f8d00..655fd646b7 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/equipped-HELMET-hamster.png and b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/equipped-HELMET-hamster.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/meta.json index 6f2962a059..c6cba0d742 100644 --- a/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/beret_security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e and modified by Flareguy, resprite by muriexlol", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e and modified by Flareguy. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Hats/nikohat.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/nikohat.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..bce9b4318d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/nikohat.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/nikohat.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/nikohat.rsi/icon.png new file mode 100644 index 0000000000..ed42af0041 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/nikohat.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/nikohat.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/nikohat.rsi/inhand-left.png new file mode 100644 index 0000000000..4640bc6a6d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/nikohat.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/nikohat.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/nikohat.rsi/inhand-right.png new file mode 100644 index 0000000000..5af17cd311 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/nikohat.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/nikohat.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/nikohat.rsi/meta.json new file mode 100644 index 0000000000..9d163cd58a --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/nikohat.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Hacked by FairlySadPanda, variant of sprites taken from tgstation at https://github.com/tgstation/tgstation/commit/8703eac50de6379c26f7eadb47b4f016854d1dcd", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/redwizard.rsi/equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hats/redwizard.rsi/equipped-HELMET-dog.png new file mode 100644 index 0000000000..dc7dff2d30 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/redwizard.rsi/equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/redwizard.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/redwizard.rsi/meta.json index a470e00944..60143ba8a2 100644 --- a/Resources/Textures/Clothing/Head/Hats/redwizard.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/redwizard.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Dog state by Sparlight.", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-dog", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/equipped-HELMET.png index e022d266f3..0338bb79e5 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/icon.png index 135f2f90cc..59ee241b44 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-left.png index 8d6c8b3d70..602e016c7f 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-right.png index b7a21c5b72..3e25edf91e 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/meta.json index c461ca0366..664dccf0ae 100644 --- a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprites made by @prazat911", + "copyright": "Made by DieselMohawk for use in ss14. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Hats/violetwizard.rsi/equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hats/violetwizard.rsi/equipped-HELMET-dog.png new file mode 100644 index 0000000000..f6c05eb82a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/violetwizard.rsi/equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/violetwizard.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/violetwizard.rsi/meta.json index a470e00944..e68d757da5 100644 --- a/Resources/Textures/Clothing/Head/Hats/violetwizard.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/violetwizard.rsi/meta.json @@ -14,6 +14,10 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-dog", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/equipped-HELMET-dog.png new file mode 100644 index 0000000000..03d7d5a11d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/meta.json index ade65863af..ac881a99cf 100644 --- a/Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/wizardhat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Dog state by Sparlight.", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-HELMET-hamster", "directions": 4 }, + { + "name": "equipped-HELMET-dog", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..16c2c48bfc Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/meta.json index ce6a86ea76..3b63122f2f 100644 --- a/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/ancientvoidsuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/tree/fb2d71495bfe81446159ef528534193d09dd8d34, sprite repaletted by Flareguy for space-station-14", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/tree/fb2d71495bfe81446159ef528534193d09dd8d34, sprite repaletted by Flareguy for space-station-14 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-dog.png new file mode 100644 index 0000000000..37fd776e4b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..b7625492dd Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json index 89a026869f..cfdfe0cee2 100644 --- a/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/eva.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d modified by Floofers. Dog state by Sparlight.", "size": { "x": 32, "y": 32 @@ -25,6 +25,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-HELMET-dog", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-dog.png new file mode 100644 index 0000000000..83504f7701 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..c4e6351d9d Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json index 89a026869f..cfdfe0cee2 100644 --- a/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/eva_large.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d modified by Floofers. Dog state by Sparlight.", "size": { "x": 32, "y": 32 @@ -25,6 +25,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-HELMET-dog", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..669368c2bb Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json index 89a026869f..c7a2236b61 100644 --- a/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/eva_syndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a", + "copyright": "Sprite edited by Flareguy for SS14, original unedited sprite can be found in https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d modified by Floofers", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..be3734842f Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json index 3cf0b8d484..69b03ad731 100644 --- a/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/ihvoid.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state by Flareguy for Space Station 14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state by Flareguy for Space Station 14 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-left.png index bc0c6e4c95..5dbc214b3d 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-right.png index a578aeefb3..476031f913 100644 Binary files a/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Helmets/security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/security.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/security.rsi/meta.json index 4b353cc8c9..8b6ac6809a 100644 --- a/Resources/Textures/Clothing/Head/Helmets/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8 & inhand taken at commit https://github.com/tgstation/tgstation/commit/d1582bf1b41a0e24fd7a18124c6ff46b86b393f9 and modified by github:Morb0. Vox state by Flareguy for SS14, resproted vox helmet by @mishutka09", + "copyright": "Made by DieselMohawk for use in SS14. Made green by notquitehadouken for SS14.", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..f10c9173ff Binary files /dev/null and b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json index 6de3fcd440..2faca5dab2 100644 --- a/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Helmets/spaceninja.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation (unknown commit). Vox state by Flareguy for SS14", + "copyright": "Taken from paradise https://github.com/ParadiseSS13/Paradise/tree/master/icons (unknown commit). Vox state by Flareguy for SS14 vulpkanin version made by Floofers", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..00ba0d43cd Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json index 5330004f01..cc7455ac0e 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/bio.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "equipped-HELMET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..c63759a064 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json index 5330004f01..cc7455ac0e 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/cmo.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "equipped-HELMET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..5a06dac6f9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json index 5330004f01..cc7455ac0e 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/general.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "equipped-HELMET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..c9c0d6c90e Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json index 5330004f01..cc7455ac0e 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/janitor.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "equipped-HELMET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..17a9bfdbd3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json index 11cc2b83a1..7c292bee41 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/scientist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8. equipped-helmet-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-helmet-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "equipped-HELMET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..be2125f535 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json index 5330004f01..a12bc97dce 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "equipped-HELMET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..43e99670fd Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json index 5330004f01..cc7455ac0e 100644 --- a/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/Bio/virology.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. equipped-HELMET-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "equipped-HELMET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Hoods/iansuit.rsi/equipped-HELMET-dog.png b/Resources/Textures/Clothing/Head/Hoods/iansuit.rsi/equipped-HELMET-dog.png new file mode 100644 index 0000000000..7d885b4814 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/iansuit.rsi/equipped-HELMET-dog.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/iansuit.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/iansuit.rsi/meta.json index 7d275df034..283e06089d 100644 --- a/Resources/Textures/Clothing/Head/Hoods/iansuit.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/iansuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Modified by deltanedas (github).", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Modified by deltanedas (github). Dog state by Sparlight (modified from ian sprite).", "size": { "x": 32, "y": 32 @@ -13,6 +13,10 @@ { "name": "equipped-HELMET", "directions": 4 + }, + { + "name": "equipped-HELMET-dog", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..93b33ef9b9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json index 05ff3325dd..2dd3c5010c 100644 --- a/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hoods/rad.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8. vox state by Flaregu", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae. vox state by Flareguy | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157dm, resprited for SS14 by MilonPL", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-HELMET", "directions": 4 }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, { "name": "equipped-HELMET-vox", "directions": 4 diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..4c6ce58ca3 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json index e9b30b5437..5d0093fe7e 100644 --- a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, icon by lzk228(discord 455630609641897984). equipped-HELMET-vox state modified by Flareguy from vox welding helmet state", + "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, icon by lzk228(discord 455630609641897984). equipped-HELMET-vox state modified by Flareguy from vox welding helmet state | ulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -44,6 +44,14 @@ { "name": "up-inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..d6c8799127 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/blue_flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..cab90cf170 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json index b486fbbc86..68ca6518bc 100644 --- a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 and up-equipped-HELMET modified by Flareguy, icon by lzk228(discord 455630609641897984). equipped-HELMET-vox state modified by Flareguy from vox welding helmet state", + "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 and up-equipped-HELMET modified by Flareguy, icon by lzk228(discord 455630609641897984). equipped-HELMET-vox state modified by Flareguy from vox welding helmet state | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -44,6 +44,14 @@ { "name": "up-inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vulpkanin", + "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..b6749f9860 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/flame_welding_mask.rsi/up-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..46e451b3c9 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json index 2a9b8dfba7..f46ecd5beb 100644 --- a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from CEV-Eris at https://github.com/discordia-space/CEV-Eris/blob/2a0d963d5bf68bd8ddf6fba6f60479bec172b51d/icons/inventory/head/mob.dmi, icon by lzk228(discord 455630609641897984). equipped-HELMET-vox state modified by Flareguy from 'welding' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from CEV-Eris at https://github.com/discordia-space/CEV-Eris/blob/2a0d963d5bf68bd8ddf6fba6f60479bec172b51d/icons/inventory/head/mob.dmi, icon by lzk228(discord 455630609641897984). equipped-HELMET-vox state modified by Flareguy from 'welding' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 | ulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -44,6 +44,14 @@ { "name": "up-inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..34296974d1 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/paintedwelding.rsi/up-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..701775a222 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/welding.rsi/equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json b/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json index 10c0a80701..569555b869 100644 --- a/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Welding/welding.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -52,6 +52,14 @@ { "name": "up-inhand-right", "directions": 4 + }, + { + "name": "equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-HELMET-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vulpkanin.png b/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..39c534f564 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Welding/welding.rsi/up-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/blushingclown.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/blushingclown.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..a326b5db4a Binary files /dev/null and b/Resources/Textures/Clothing/Mask/blushingclown.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/blushingclown.rsi/meta.json b/Resources/Textures/Clothing/Mask/blushingclown.rsi/meta.json index a28929e60d..104886feb8 100644 --- a/Resources/Textures/Clothing/Mask/blushingclown.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/blushingclown.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi. Reptilian edit by kuro(388673708753027083). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/blushingmime.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/blushingmime.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..54828c8bd6 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/blushingmime.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/blushingmime.rsi/meta.json b/Resources/Textures/Clothing/Mask/blushingmime.rsi/meta.json index 88aad8fdc9..8db7368657 100644 --- a/Resources/Textures/Clothing/Mask/blushingmime.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/blushingmime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/breath.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..d317cba50e Binary files /dev/null and b/Resources/Textures/Clothing/Mask/breath.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/meta.json b/Resources/Textures/Clothing/Mask/breath.rsi/meta.json index 1a96383918..c37ca01b35 100644 --- a/Resources/Textures/Clothing/Mask/breath.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/breath.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by kuro(388673708753027083). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -73,6 +73,14 @@ { "name": "equipped-MASK-reptilian", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/breath.rsi/up-equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/breath.rsi/up-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..d8ae1134fb Binary files /dev/null and b/Resources/Textures/Clothing/Mask/breath.rsi/up-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..38ea9a62c8 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/clown.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/clown.rsi/meta.json b/Resources/Textures/Clothing/Mask/clown.rsi/meta.json index de1f50a21b..c465987d07 100644 --- a/Resources/Textures/Clothing/Mask/clown.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/clown.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and slightly modified by Flareguy", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and slightly modified by Flareguy | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -26,6 +26,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-hamster.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-hamster.png index 27efed7a1c..86d96b5472 100644 Binary files a/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-hamster.png and b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-hamster.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-reptilian.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-reptilian.png index f41daaa15a..897ba6a054 100644 Binary files a/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-reptilian.png and b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-reptilian.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-vox.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-vox.png index 924520c2a8..4c6f2e140d 100644 Binary files a/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-vox.png and b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK-vox.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK.png index 01013b3e5a..41072549f0 100644 Binary files a/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK.png and b/Resources/Textures/Clothing/Mask/clown_security.rsi/equipped-MASK.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/icon.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/icon.png index 90e9e2e1f0..f52613374b 100644 Binary files a/Resources/Textures/Clothing/Mask/clown_security.rsi/icon.png and b/Resources/Textures/Clothing/Mask/clown_security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-left.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-left.png index 60f46602d7..8ee3d81225 100644 Binary files a/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-left.png and b/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-right.png b/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-right.png index bb3c306586..b5a5f1b243 100644 Binary files a/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-right.png and b/Resources/Textures/Clothing/Mask/clown_security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Mask/clown_security.rsi/meta.json b/Resources/Textures/Clothing/Mask/clown_security.rsi/meta.json index 6f5cb2dc1e..e6ecdb9206 100644 --- a/Resources/Textures/Clothing/Mask/clown_security.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/clown_security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Modified version of clown mask by GoldenCan(github) (Copyright for clown mask: Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and slightly modified by Flareguy)", + "copyright": "Modified version of clown mask by GoldenCan(github) (Copyright for clown mask: Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and slightly modified by Flareguy). Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Mask/cluwne.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/cluwne.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..070974034f Binary files /dev/null and b/Resources/Textures/Clothing/Mask/cluwne.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/cluwne.rsi/meta.json b/Resources/Textures/Clothing/Mask/cluwne.rsi/meta.json index bd410c6de9..dad21e1844 100644 --- a/Resources/Textures/Clothing/Mask/cluwne.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/cluwne.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (github) for ss14. Reptilian edit by Nairod(Github), vox edit by Flareguy", + "copyright": "Made by brainfood1183 (github) for ss14. Reptilian edit by Nairod(Github), vox edit by Flareguy | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/ert.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/ert.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..488c0387a7 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/ert.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/ert.rsi/meta.json b/Resources/Textures/Clothing/Mask/ert.rsi/meta.json index b8ea712aff..c4c8ecef98 100644 --- a/Resources/Textures/Clothing/Mask/ert.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/ert.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Nimfar11 (GitHub) for Space Station 14. Reptilian edit by Nairod(Github), vox edit by Flareguy", + "copyright": "Made by Nimfar11 (GitHub) for Space Station 14. Reptilian edit by Nairod(Github), vox edit by Flareguy | vulpkanin version made by Floofers", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..fba0ec9b2b Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gas.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gas.rsi/meta.json b/Resources/Textures/Clothing/Mask/gas.rsi/meta.json index 64b859703a..e851f85ea4 100644 --- a/Resources/Textures/Clothing/Mask/gas.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gas.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, digi made by kuro(388673708753027083). Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified by Flareguy", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified by Flareguy | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -26,6 +26,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..141a7cc981 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gasatmos.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json b/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json index f0d269dcd4..10425dd461 100644 --- a/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gasatmos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state modified by Flareguy from 'gas-alt' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state modified by Flareguy from 'gas-alt' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..d13d3212c0 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gascaptain.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json b/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json index e226532d6f..8bb6909e45 100644 --- a/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gascaptain.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, remade by 𝚆𝚊𝚛𝚝𝚊𝚐𝚕𝚎𝚡#0912. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from 'gas-alt' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e, and modified by Flareguy", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e, edited by Emisse for ss14. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from 'gas-alt' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e, and modified by Flareguy | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/gascentcom.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gascentcom.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..9d85ba2f06 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gascentcom.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json b/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json index dc99f7504b..d4879abf8a 100644 --- a/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gascentcom.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified by Flareguy", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified by Flareguy | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..91da2da7c7 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json index 021dcf76b7..a83de36ef9 100644 --- a/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gasexplorer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). Vox state by Flareguy for SS14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). Vox state by Flareguy for SS14 | vulpkanin version edited by Floofers", "size": { "x": 32, "y": 32 @@ -30,6 +30,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..b9395a9026 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gassecurity.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json b/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json index 9c1b597c1d..576b3d129f 100644 --- a/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gassecurity.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox states taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -37,6 +37,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..a7c913dc1e Binary files /dev/null and b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json index 22e5230685..9db104ae10 100644 --- a/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/gassyndicate.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and slightly modified to fix an error", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and slightly modified to fix an error | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -28,6 +28,16 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4, + "delays": [ + [ 0.5, 0.5, 0.5 ], + [ 0.5, 0.5, 0.5 ], + [ 0.5, 0.5, 0.5 ], + [ 0.5, 0.5, 0.5 ] + ] + }, { "name": "equipped-MASK-reptilian", "directions": 4, diff --git a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..9bde35f041 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json index bf40df37eb..b755aee845 100644 --- a/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/italian_moustache.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae. Reptilian made by kuro(388673708753027083). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae. equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-MASK", "directions": 4 }, - { - "name": "equipped-MASK-reptilian", - "directions": 4 - }, { "name": "equipped-MASK-vox", "directions": 4 @@ -29,6 +25,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "equipped-MASK-reptilian", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..687ac3aed3 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medical.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/meta.json b/Resources/Textures/Clothing/Mask/medical.rsi/meta.json index c422cc3ffa..ed5341f1b6 100644 --- a/Resources/Textures/Clothing/Mask/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/medical.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by kuro(388673708753027083). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox & up-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -64,6 +64,14 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..99c3205640 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medical.rsi/up-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..d317cba50e Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json index 18315feb87..99c06491bb 100644 --- a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by LinkUyx#6557. Reptilian edit by kuro(388673708753027083)", + "copyright": "Sprited by LinkUyx#6557. Reptilian edit by Nairod(Github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -54,6 +54,14 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/up-equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/up-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..d8ae1134fb Binary files /dev/null and b/Resources/Textures/Clothing/Mask/medicalsecurity.rsi/up-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..cdcebb8231 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/merc.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/merc.rsi/meta.json b/Resources/Textures/Clothing/Mask/merc.rsi/meta.json index 5b745bcfd0..b7708a22e3 100644 --- a/Resources/Textures/Clothing/Mask/merc.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/merc.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "modified sprite from Jackal298 based on the sprite from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github), equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified to look like mercenary gas mask by Flareguy", + "copyright": "modified sprite from Jackal298 based on the sprite from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github), equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e and modified to look like mercenary gas mask by Flareguy | vulpkanin version edited by Floofers", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..cf3d8629a3 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/mime.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/mime.rsi/meta.json b/Resources/Textures/Clothing/Mask/mime.rsi/meta.json index 4bbe73187f..b938e221c2 100644 --- a/Resources/Textures/Clothing/Mask/mime.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/mime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by kuro(388673708753027083). equipped-MASK-vox state taken from 'gas-alt' state in /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e, and modified by Flareguy", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d and edited by Floofers", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-MASK-hamster", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..8de17b9d3a Binary files /dev/null and b/Resources/Textures/Clothing/Mask/muzzle.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json b/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json index e2d4deb305..969938d847 100644 --- a/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/muzzle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38", "size": { "x": 32, "y": 32 @@ -22,6 +22,10 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 @@ -29,6 +33,6 @@ { "name": "equipped-MASK-vox", "directions": 4 - } + } ] } diff --git a/Resources/Textures/Clothing/Mask/neckgaiter.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/neckgaiter.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..886ea7a9b1 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/neckgaiter.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/neckgaiter.rsi/meta.json b/Resources/Textures/Clothing/Mask/neckgaiter.rsi/meta.json index 4da74959dd..6845040bf6 100644 --- a/Resources/Textures/Clothing/Mask/neckgaiter.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/neckgaiter.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by belay5 (Discord) | equipped-MASK-vox sprited by PuroSlavKing (Github)", + "copyright": "Sprited by belay5 (Discord) | equipped-MASK-vox sprited by PuroSlavKing (Github) | equipped-MASK-vulpkanin sprited by TJohnson (Delta-V)", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..80efc668dd Binary files /dev/null and b/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/meta.json b/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/meta.json index d5005eec9f..21cd28bf15 100644 --- a/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/neckgaiterred.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Originally sprited by belay5 (Discord) then recolored by Nairod (Github). equipped-MASK-vox sprited by PuroSlavKing (Github) and recolored by Flareguy", + "copyright": "Originally sprited by belay5 (Discord) then recolored by Nairod (Github). equipped-MASK-vox sprited by PuroSlavKing (Github) and recolored by Flareguy | equipped-MASK-vulpkanin sprited by TJohnson (Delta-V)", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..95d236c98b Binary files /dev/null and b/Resources/Textures/Clothing/Mask/ninja.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json b/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json index f9bba31ba9..27858f0e76 100644 --- a/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/ninja.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "By Jackal298 (github), based off of tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e and paradise at commit https://github.com/ParadiseSS13/Paradise/commit/33f7c1ef477fa67db5dda48078b469ab59aa7997. equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from paradise at commit https://github.com/ParadiseSS13/Paradise/commit/33f7c1ef477fa67db5dda48078b469ab59aa7997. equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -25,6 +25,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..528fa82fc8 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json index 15095ac4e9..87681ce446 100644 --- a/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/plaguedoctormask.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/e89db4dd4f42377b0adafb06806a763314a89034, reptilian made by kuro(388673708753027083) , edited by Alekshhh. equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from TGstation github https://github.com/tgstation/tgstation/commit/e89db4dd4f42377b0adafb06806a763314a89034 , edited by Alekshhh. equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-MASK", "directions": 4 }, - { - "name": "equipped-MASK-reptilian", - "directions": 4 - }, { "name": "inhand-left", "directions": 4 @@ -26,9 +22,17 @@ "name": "inhand-right", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-vox", "directions": 4 + }, + { + "name": "equipped-MASK-reptilian", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/sadmime.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/sadmime.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..da36b18523 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sadmime.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json b/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json index 61656b18dc..572b364904 100644 --- a/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/sadmime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/harmonyn/-tg-station/blob/11043a07f6136d3d196b0378c31deb3dc1a9532f/icons/obj/clothing/masks.dmi. Reptilian edit by kuro(388673708753027083).Vox edit by foboscheshir (github)", + "copyright": "Taken from tgstation at commit https://github.com/harmonyn/-tg-station/blob/11043a07f6136d3d196b0378c31deb3dc1a9532f/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github).Vox edit by foboscheshir (github) | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/scaredmime.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/scaredmime.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..c0dda91a72 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/scaredmime.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json b/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json index 22ac7a6b84..a21dbca961 100644 --- a/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/scaredmime.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/harmonyn/-tg-station/blob/11043a07f6136d3d196b0378c31deb3dc1a9532f/icons/obj/clothing/masks.dmi. Reptilian edit by kuro(388673708753027083). Vox edit by foboscheshir (github)", + "copyright": "Taken from tgstation at commit https://github.com/harmonyn/-tg-station/blob/11043a07f6136d3d196b0378c31deb3dc1a9532f/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). . Vox edit by foboscheshir (github) | vulpkanin version taken from https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13/commit/091d9ec00f186052b87bd65125e896f78faefe38 edited by Floofers", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-MASK", "directions": 4 }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, { "name": "equipped-MASK-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..71f2c83018 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sterile.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json b/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json index 0f1f1bd841..6e4782881a 100644 --- a/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/sterile.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Reptilian edit by kuro(388673708753027083). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/blob/ed466a4c67828b44ddb9d9550366be5c2d745955/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -37,6 +37,14 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "up-equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Mask/sterile.rsi/up-equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/sterile.rsi/up-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..4e0309f011 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/sterile.rsi/up-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vulpkanin.png b/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..23cfef31d1 Binary files /dev/null and b/Resources/Textures/Clothing/Mask/swat.rsi/equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Clothing/Mask/swat.rsi/meta.json b/Resources/Textures/Clothing/Mask/swat.rsi/meta.json index 067d4dd8b5..b767cf5ffb 100644 --- a/Resources/Textures/Clothing/Mask/swat.rsi/meta.json +++ b/Resources/Textures/Clothing/Mask/swat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/RemieRichards/-tg-station/blob/f8c05e21694cd3cb703e40edc5cfc375017944b1/icons/obj/clothing/masks.dmi. Reptilian edit by kuro(388673708753027083). equipped-MASK-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi", + "copyright": "Taken from tgstation at commit https://github.com/RemieRichards/-tg-station/blob/f8c05e21694cd3cb703e40edc5cfc375017944b1/icons/obj/clothing/masks.dmi. Reptilian edit by Nairod(Github). equipped-MASK-vox state taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/bc095ad398790a2b718b2bab4f2157cdd80a51da/icons/mob/clothing/species/vox/mask.dmi | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -29,6 +29,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-MASK-vulpkanin", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/equipped-NECK.png index e776fd6afa..4e52b1f5b8 100644 Binary files a/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/equipped-NECK.png and b/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/inhand-left.png index 4b4b921a8b..578b5c0178 100644 Binary files a/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/inhand-left.png and b/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/inhand-right.png b/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/inhand-right.png index 4314366067..17fa20dafa 100644 Binary files a/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/inhand-right.png and b/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/meta.json b/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/meta.json index 557c79a65d..812b7a7c9f 100644 --- a/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Bedsheets/hos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/0ec86b44b11f5e2f45137d9f6c851b8942a26aa3", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/0ec86b44b11f5e2f45137d9f6c851b8942a26aa3. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/inhand-left.png index a31bdf536b..e57932ffb9 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/inhand-left.png and b/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/inhand-right.png b/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/inhand-right.png index a9641cd4c6..fe6cef001a 100644 Binary files a/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/inhand-right.png and b/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/meta.json index ee63e70a4d..360f86ab19 100644 --- a/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Cloaks/hos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, sprites in hand by PuroSlavKing (Github) and RudeyCoolLeet#3875", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/5a73e8f825ff279e82949b9329783a9e3070e2da, sprites in hand by PuroSlavKing (Github) and RudeyCoolLeet#3875. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Neck/Medals/securitymedal.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Medals/securitymedal.rsi/equipped-NECK.png index 93e1c3847f..8d2ea3647a 100644 Binary files a/Resources/Textures/Clothing/Neck/Medals/securitymedal.rsi/equipped-NECK.png and b/Resources/Textures/Clothing/Neck/Medals/securitymedal.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Medals/securitymedal.rsi/icon.png b/Resources/Textures/Clothing/Neck/Medals/securitymedal.rsi/icon.png index f682bdbccb..066de07116 100644 Binary files a/Resources/Textures/Clothing/Neck/Medals/securitymedal.rsi/icon.png and b/Resources/Textures/Clothing/Neck/Medals/securitymedal.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Medals/securitymedal.rsi/meta.json b/Resources/Textures/Clothing/Neck/Medals/securitymedal.rsi/meta.json index 1a18a12dbf..d229598d83 100644 --- a/Resources/Textures/Clothing/Neck/Medals/securitymedal.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Medals/securitymedal.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "made by AsikKEsel", + "copyright": "made by AsikKEsel. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/equipped-NECK.png index 22cdc8f88f..5276cdc6d5 100644 Binary files a/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/equipped-NECK.png and b/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/icon.png b/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/icon.png index 92d9c67113..4c7be2f897 100644 Binary files a/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/icon.png and b/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/inhand-left.png b/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/inhand-left.png index 8a378c98e5..ac78a3aff9 100644 Binary files a/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/inhand-left.png and b/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/inhand-right.png b/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/inhand-right.png index 9bdaf1cb25..d0b9bfb810 100644 Binary files a/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/inhand-right.png and b/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/meta.json b/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/meta.json index 276ae36807..41fb8b584f 100644 --- a/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/Scarfs/purple.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by MrGreen06#0618 (discord)", + "copyright": "Sprited by MrGreen06#0618 (discord), hacked by FairlySadPanda as a joke.", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Neck/mantles/hosmantle.rsi/meta.json b/Resources/Textures/Clothing/Neck/mantles/hosmantle.rsi/meta.json index e7019f46d0..2e2e3c611d 100644 --- a/Resources/Textures/Clothing/Neck/mantles/hosmantle.rsi/meta.json +++ b/Resources/Textures/Clothing/Neck/mantles/hosmantle.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from Skyrat-tg at commit https://github.com/Skyrat-SS13/Skyrat-tg/commit/42bb106e0e78142cad7e6239549b60b18da960ec", + "copyright": "made by emisse for ss14. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING-vox.png index e426556e7d..8d58661aaf 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING.png index 67a4f30ea5..5bf325e6c0 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/icon.png index 5522eb9de4..06edf65469 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png index d1164c39ab..7a0e2dce67 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-right.png index 22bf56e0b7..2b8e1addcf 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json index 692de1cafd..effe781829 100644 --- a/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Bio/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8 & inhand by github:Morb0, reptilian made by kuro(388673708753027083). equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79. inhands by Flareguy, modified from bio_suit in vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/30f9caeb59b0dd9da1dbcd4c69307ae182033a74, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/blob/061f78db763863e1a3db13cbf2fd9be4cce75939/icons/mob/suit.dmi. inhands by Flareguy, modified from bio_suit in vgstation at commit https://github.com/vgstation-coders/vgstation13/commit/30f9caeb59b0dd9da1dbcd4c69307ae182033a74. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-left.png index 52b9733ec1..894ba59751 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-right.png index 83e924a710..3b15658ad7 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json index 27a2828c08..f849488b4c 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/hos_trenchcoat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8. Vox state made by Flareguy for SS14", + "copyright": "Taken from Paradise at commit bad1ec7aa2c86df5794dc6ba28be05ebd0228012. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/icon.png index 5f18b94c80..7d8ff1db87 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-left.png index b4cd26fd59..f4056afa3f 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-right.png index 9d7d68d0ab..67b26687d8 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/meta.json index 2c1fd3136f..fc74ed97f0 100644 --- a/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Coats/warden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79, equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e and modified by Flareguy. equipped-OUTERCLOTHING-vox state taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/31d6576ba8102135d058ef49c3cb6ecbe8db8a79 and modified by Flareguy. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..abf76d23b6 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json index 760aa0deea..bb0f55c317 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/atmospherics.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083). Vox state made by Flareguy for SS14, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. Dog state made by Sparlight.", "size": { "x": 32, "y": 32 @@ -15,11 +15,15 @@ "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-reptilian", + "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-vox", + "name": "equipped-OUTERCLOTHING-dog", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 }, { diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..4701c1be81 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/meta.json index cc9f6956d9..2b4db9ea7c 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/basic.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. Further modifications and derivate works (inhand-left and inhand-right) under same license, derivative monkey made by brainfood1183 (github) for ss14, reptilian made by kuro(388673708753027083), equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/40d89d11ea4a5cb81d61dc1018b46f4e7d32c62a. Further modifications and derivate works (inhand-left and inhand-right) under same license, derivative monkey made by brainfood1183 (github) for ss14. Dog state by Sparlight.", "size": { "x": 32, "y": 32 @@ -18,6 +18,10 @@ "name": "equipped-OUTERCLOTHING-monkey", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-dog", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..287bfc5701 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json index 760aa0deea..490316f656 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/capspace.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083). Vox state made by Flareguy for SS14, equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "copyright": "Made by Emisse for SS14. Vox state made by Flareguy for SS14. Dog state worked on in parts by both casilius and RCOI for SS14.", "size": { "x": 32, "y": 32 @@ -15,11 +15,15 @@ "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-reptilian", + "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-vox", + "name": "equipped-OUTERCLOTHING-dog", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 }, { diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..fcfd57084d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering-white.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..0dac32fb6d Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json index 8ae9041b1b..3a0b3bbda6 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/engineering.rsi/meta.json @@ -1,38 +1,38 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083), equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. Dog sprite made by Sparlight.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-reptilian", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-dog", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..db56042d19 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/meta.json index fe0cc3ebbd..1c3c92fc96 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/goliath.rsi/meta.json @@ -2,7 +2,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "All sprites created by https://github.com/Pronana / princesscheeseballs (Discord)", + "copyright": "Normal and vox sprites created by https://github.com/Pronana / princesscheeseballs (Discord). Dog sprites created by Sparlight.", "size": { "x": 32, @@ -20,6 +20,10 @@ "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-dog", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..e78e5bd0b2 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json index 8ae9041b1b..ebdbf674cc 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/medical.rsi/meta.json @@ -1,38 +1,38 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083), equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. Dog state made by Sparlight.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-reptilian", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-dog", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..9d5dafb342 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json index 48f4a3628f..8edebdb260 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/paramed.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083). Vox state made by Flareguy for SS14. Siren Icon made by Velen based of the helmet's colours", + "copyright": "Taken from paradise station git at commit https://github.com/ParadiseSS13/Paradise/commit/e5e584804b4b0b373a6a69d23afb73fd3c094365, redrawn by Ubaser. Vox state made by Flareguy for SS14. Siren Icon made by Velen based of the helmet's colours. Dog state made by Sparlight.", "size": { "x": 32, "y": 32 @@ -18,11 +18,15 @@ "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-reptilian", + "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-vox", + "name": "equipped-OUTERCLOTHING-dog", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", "directions": 4 }, { diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..86af302e53 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json index 8ae9041b1b..4286220a6f 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/salvage.rsi/meta.json @@ -1,38 +1,38 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083), equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. Dog state made by Sparlight.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-reptilian", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-dog", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING-vox.png index 8c301cbe55..3a09ae7e95 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING.png index 45dfbaf6f3..b9b25fa879 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/icon.png index 8a87bee67f..026950a17f 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-left.png index f808f0c975..44a389a596 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-right.png index 1fb781159d..dc1f1757c8 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json index 8ae9041b1b..b104592ef2 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-red.rsi/meta.json @@ -1,38 +1,34 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083), equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. Made Green by notquitehadouken for april fools SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-reptilian", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING-vox.png index 30cf54325e..6120899c20 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png index 1924c3a3fd..74e2e62eea 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png index e43e20cd9f..6b284ba4cf 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png index f805271083..8151e9fb3a 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png index 392f98177a..ce27f1fe81 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json index 8ae9041b1b..3878159ae4 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security-warden.rsi/meta.json @@ -1,38 +1,34 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083), equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprite made by Gtheglorious based on the sprite made by Alekshhh for SS14. Vox state made by Flareguy for SS14. Made Green by notquitehadouken for april fools SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-reptilian", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING-vox.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING-vox.png index c06d8fae90..d611fbf3e5 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING-vox.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING-vox.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png index b80e00ffef..6e5697a019 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png index 1619a08e9e..1b9ed7d597 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png index 6fdb2eedd8..6da35bb534 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png index 51b09f7f29..7f8b378255 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json index 8ae9041b1b..057a20382d 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/security.rsi/meta.json @@ -1,38 +1,34 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083), equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprite made by Gtheglorious based on the sprite taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. Made Green by notquitehadouken for april fools SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-reptilian", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..b3b8ea4500 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json index bf58e2f12b..84cfa92df2 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/spatio.rsi/meta.json @@ -1,7 +1,7 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083), equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Original by Emisse, modified by EmoGarbage404. Vox state made by Flareguy for SS14. Dog state made by Sparlight.", "size": { "x": 32, diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..619c6518b2 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndicate.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..9c9a5b01f9 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/syndieelite.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..25621ba220 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/meta.json index 8ae9041b1b..4286220a6f 100644 --- a/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/wizard.rsi/meta.json @@ -1,38 +1,38 @@ { - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/97ec5ed1a0fc8263df5df5a5afbb653d4684992e & icon made by github:Morb0, reptilian made by kuro(388673708753027083), equipped-OUTERCLOTHING-resomi made by svarshiksatanist (Discord)", - "size": { - "x": 32, - "y": 32 + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Vox state made by Flareguy for SS14. Dog state made by Sparlight.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" }, - "states": [ - { - "name": "icon" - }, - { - "name": "equipped-OUTERCLOTHING", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-reptilian", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-resomi", - "directions": 4 - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "equipped-OUTERCLOTHING-vox", - "directions": 4 - } - ] + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-vox", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-dog", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..af6421094a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/redwizard.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..59a7df519e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/violetwizard.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..7b9cf75db6 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Misc/wizard.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..67acfefe0a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json index 9bf562c685..08634126a8 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprites by Flareguy & cboyjet, heavily edited from space suit sprites found in https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, reptilian made by denlemp(692533587760906270), equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Sprites by Flareguy & cboyjet, heavily edited from space suit sprites found in https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34. Dog sprite by Sparlight.", "size": { "x": 32, "y": 32 @@ -23,7 +23,7 @@ "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-reptilian", + "name": "equipped-OUTERCLOTHING-dog", "directions": 4 }, { @@ -37,6 +37,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..0311e2300c Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json index dd61865d0f..86d4f00c37 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/eva_emergency.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprites by Flareguy & cboyjet, heavily edited from space suit sprites found in https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34, reptilian made by denlemp(692533587760906270), equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Sprites by Flareguy & cboyjet, heavily edited from space suit sprites found in https://github.com/tgstation/tgstation/commit/fb2d71495bfe81446159ef528534193d09dd8d34. Dog sprite by Sparlight.", "size": { "x": 32, "y": 32 @@ -15,11 +15,11 @@ "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-reptilian", + "name": "equipped-OUTERCLOTHING-vox", "directions": 4 }, { - "name": "equipped-OUTERCLOTHING-vox", + "name": "equipped-OUTERCLOTHING-dog", "directions": 4 }, { @@ -33,6 +33,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING-reptilian", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/equipped-OUTERCLOTHING-dog.png b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/equipped-OUTERCLOTHING-dog.png new file mode 100644 index 0000000000..624ffa7dfa Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/equipped-OUTERCLOTHING-dog.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/meta.json index 9c30f596af..9bc122c83e 100644 --- a/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/meta.json +++ b/Resources/Textures/Clothing/OuterClothing/Suits/iansuit.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Modified by deltanedas (github), equipped-OUTERCLOTHING-resomi made by Pofitlo", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Modified by deltanedas (github). Dog state by Sparlight (modified from ian sprite).", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-OUTERCLOTHING", "directions": 4 }, + { + "name": "equipped-OUTERCLOTHING-dog", + "directions": 4 + }, { "name": "equipped-OUTERCLOTHING-resomi", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/meta.json index 2b78bcd698..3a66d0d23a 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by Flareguy using sprites from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039 & the jumpskirt base found in color.rsi.", + "copyright": "Created by Flareguy using sprites from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039 & the jumpskirt base found in color.rsi.. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/equipped-INNERCLOTHING-monkey.png index 132998eb21..8ee12fae54 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/inhand-left.png index 6162151b80..c2d3ef829a 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/inhand-right.png index 6bbce7a0aa..0fba7a50fa 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/meta.json index daf51b253f..82cc21d86a 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_alt.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/28d0be60aa8bbe1ca87a5d129487bb6f60839ac4, monkey made by brainfood1183 (github) for ss14, edited by Deenkaide (github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey derivative made by brainfood1183 (github) for ss14. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/equipped-INNERCLOTHING-monkey.png index 7bf700cf1b..eb76fccbda 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/inhand-left.png index a86cd5b0dc..6afc2327f9 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/inhand-right.png index d2d9fe0d74..67421d607e 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/meta.json index bbcef071e2..bb43df5162 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hos_parade.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hosformaldress.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hosformaldress.rsi/equipped-INNERCLOTHING-monkey.png index 8b1490a626..6dea0d5fd3 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hosformaldress.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hosformaldress.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hosformaldress.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hosformaldress.rsi/inhand-left.png index 9d04c2b5e9..ec33e15240 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hosformaldress.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hosformaldress.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hosformaldress.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hosformaldress.rsi/inhand-right.png index 79424b4fea..dfaea3c565 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hosformaldress.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hosformaldress.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hosformaldress.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hosformaldress.rsi/meta.json index 4983d76165..7d9d7b401c 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/hosformaldress.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/hosformaldress.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/30892aa892a2be846592b068ab71c606e2f0c5b7, monkey derivative made by brainfood1183 (github) for ss14", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/30892aa892a2be846592b068ab71c606e2f0c5b7, monkey derivative made by brainfood1183 (github) for ss14. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/meta.json index 2b78bcd698..3a66d0d23a 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by Flareguy using sprites from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039 & the jumpskirt base found in color.rsi.", + "copyright": "Created by Flareguy using sprites from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039 & the jumpskirt base found in color.rsi.. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security_grey.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security_grey.rsi/equipped-INNERCLOTHING-monkey.png index 8615d18b04..033c35cc06 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security_grey.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security_grey.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security_grey.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security_grey.rsi/inhand-left.png index 30c9a42f81..4e0cd42d80 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security_grey.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security_grey.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security_grey.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security_grey.rsi/inhand-right.png index 777b44893b..b63e2e7122 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security_grey.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security_grey.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security_grey.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security_grey.rsi/meta.json index 809f899f45..5c86a18f8a 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/security_grey.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/security_grey.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "made by @mureixlol, for monkey @hem0mancer", + "copyright": "made by @mureixlol, for monkey @hem0mancer. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/equipped-INNERCLOTHING-monkey.png index 1e6eb63de4..adfaec8376 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/inhand-left.png index d331c0b8e5..93b141f2af 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/inhand-right.png index e1fb6de9ec..d3eb1c6a8f 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/meta.json index d6abb0ec89..9642f9333c 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/senior_officer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Edit by Nairodian (github) of secskirt taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7779930358ba4776575975690d2c952f0d05c6cc, resprite by muriexlol", + "copyright": "Edit by Nairodian (github) of secskirt taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7779930358ba4776575975690d2c952f0d05c6cc. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/meta.json index e4172bf64b..3a66d0d23a 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/warden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/28d0be60aa8bbe1ca87a5d129487bb6f60839ac4. In hand sprite scaled down by potato1234_x, monkey derivative made by brainfood1183 (github) for ss14", + "copyright": "Created by Flareguy using sprites from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039 & the jumpskirt base found in color.rsi.. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json index e6435d689e..5c722407dc 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14", + "copyright": "Created by Flareguy using sprites from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039 & the jumpsuit base found in color.rsi.. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, { "name": "overlay-inhand-left", "directions": 4 @@ -25,6 +21,10 @@ { "name": "overlay-inhand-right", "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-monkey", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/overlay-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/overlay-inhand-left.png index cedb1942e7..c3121b0386 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/overlay-inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/overlay-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/overlay-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/overlay-inhand-right.png index 8a353cc390..d36ba9959e 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/overlay-inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos.rsi/overlay-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING-monkey.png index f19b069d96..c6235e3763 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-left.png index 8057d345ce..c2d3ef829a 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-right.png index e8b3d20659..0fba7a50fa 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/meta.json index 63a28ee956..c33851c99e 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_alt.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/2fea0a59470c476cf3f927833d3918d89cbe6af8, monkey made by SonicHDC (github) for ss14, edited by Deenkaide (github)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039, monkey made by brainfood1183 (github) for ss14. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/equipped-INNERCLOTHING-monkey.png index cfd09a38a3..eb48cb8d9a 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/icon.png index 438da17f58..8aa4260cdc 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/inhand-left.png index 30cb457ba0..d41c6010b1 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/inhand-right.png index cda7720c45..d25f093ffe 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/meta.json index c90547d04b..8e4bf45bae 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_grey.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/28d0be60aa8bbe1ca87a5d129487bb6f60839ac4. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING-monkey.png index 24fb0f7d29..002767efe6 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/inhand-left.png index a86cd5b0dc..6afc2327f9 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/inhand-right.png index d2d9fe0d74..67421d607e 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json index 3f72fb4460..8e4bf45bae 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hos_parade.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/equipped-INNERCLOTHING-monkey.png index c5e714670e..3066e828f0 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/inhand-left.png index b3d694d2e3..d9b01da561 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/inhand-right.png index add9dfcbb2..a6b8468a02 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/meta.json index ea82b65745..789812fd5f 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/hosformal.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/30892aa892a2be846592b068ab71c606e2f0c5b7, monkey made by brainfood1183 (github) for ss14", + "copyright": "Taken from tgstation https://github.com/tgstation/tgstation/commit/30892aa892a2be846592b068ab71c606e2f0c5b7, monkey made by brainfood1183 (github) for ss14. Made green by notquitehadouken for SS14.", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/punpun.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/punpun.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..534ad610d2 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/punpun.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/punpun.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/punpun.rsi/meta.json index 4fe74d1b27..d83e08b310 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/punpun.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/punpun.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by Newty (github) for ss14", + "copyright": "Made by Newty (github) for ss14, species-less duplicate of the equipped sprite file diligently copy-and-pasted by FairlySadPanda (Github/Discord)", "size": { "x": 32, "y": 32 @@ -14,6 +14,10 @@ "name": "equipped-INNERCLOTHING-monkey", "directions": 4 }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, { "name": "inhand-left", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json index e6435d689e..5c722407dc 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14", + "copyright": "Created by Flareguy using sprites from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039 & the jumpsuit base found in color.rsi.. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, { "name": "overlay-inhand-left", "directions": 4 @@ -25,6 +21,10 @@ { "name": "overlay-inhand-right", "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-monkey", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/overlay-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/overlay-inhand-left.png index f6bb7be725..7b0b8f01ef 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/overlay-inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/overlay-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/overlay-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/overlay-inhand-right.png index 139eaee057..01fee71ab9 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/overlay-inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security.rsi/overlay-inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/equipped-INNERCLOTHING-monkey.png index 86e323724b..ac3f979387 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/inhand-left.png index 8e8c24e31d..b2d5c350b1 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/inhand-right.png index c4762dcd58..7285772f60 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/meta.json index c90547d04b..8e4bf45bae 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_grey.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/28d0be60aa8bbe1ca87a5d129487bb6f60839ac4. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by brainfood1183 (github) for ss14. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-monkey.png index 7613d09e48..19d23cfdea 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-left.png index ebc27a1b7a..5ef3c0e448 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-right.png index ed6e317ba1..f1186521dc 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/meta.json index 3546268483..96ef6deed3 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprites made by @prazat911", + "copyright": "Made by DieselMohawk for use in ss14. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 @@ -17,7 +17,7 @@ { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 - }, + }, { "name": "equipped-INNERCLOTHING-reptilian", "directions": 4 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/equipped-INNERCLOTHING-monkey.png index ceb7ef07d0..eaec111221 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/inhand-left.png index d75e52eda9..93b141f2af 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/inhand-right.png index c96f2f1007..d3eb1c6a8f 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/meta.json index 6a4bd0d5fa..6fbf756b17 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/senior_officer.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Edit by Nairodian (github) of secred_s taken from tgstation at pull request https://github.com/tgstation/tgstation/pull/2984, resprite by muriexlol", + "copyright": "Edit by Nairodian (github) of secred_s taken from tgstation at pull request https://github.com/tgstation/tgstation/pull/2984, jumpskirt sprite made by Flareguy and edited by Dutch-VanDerLinde.. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/meta.json index e6435d689e..5c722407dc 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. In hand sprite scaled down by potato1234_x, monkey made by SonicHDC (github) for ss14", + "copyright": "Created by Flareguy using sprites from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039 & the jumpsuit base found in color.rsi.. Made Green by notquitehadouken for april fools SS14", "size": { "x": 32, "y": 32 @@ -14,10 +14,6 @@ "name": "equipped-INNERCLOTHING", "directions": 4 }, - { - "name": "equipped-INNERCLOTHING-monkey", - "directions": 4 - }, { "name": "overlay-inhand-left", "directions": 4 @@ -25,6 +21,10 @@ { "name": "overlay-inhand-right", "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-monkey", + "directions": 4 } ] } diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/overlay-inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/overlay-inhand-left.png index d3a01e1a6c..eed01123ff 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/overlay-inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/overlay-inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/overlay-inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/overlay-inhand-right.png index ffe5f93eba..ffdf2684cf 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/overlay-inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/warden.rsi/overlay-inhand-right.png differ diff --git a/Resources/Textures/Effects/arcs.rsi/box.png b/Resources/Textures/Effects/arcs.rsi/box.png new file mode 100644 index 0000000000..52352e7115 Binary files /dev/null and b/Resources/Textures/Effects/arcs.rsi/box.png differ diff --git a/Resources/Textures/Effects/arcs.rsi/meta.json b/Resources/Textures/Effects/arcs.rsi/meta.json index 681c523cd9..11e3993dd8 100644 --- a/Resources/Textures/Effects/arcs.rsi/meta.json +++ b/Resources/Textures/Effects/arcs.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation/raw/c545428822f1ee0d402b812221518632dbe198cb/icons/effects/effects.dmi with offsets modified", + "copyright": "Taken from https://github.com/tgstation/tgstation/raw/c545428822f1ee0d402b812221518632dbe198cb/icons/effects/effects.dmi with offsets modified, 'box' sprite hacked with <3 by FairlySadPanda, sourced from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e", "states": [ { "name": "bite", @@ -79,6 +79,9 @@ }, { "name": "fist" + }, + { + "name": "box" } ] } diff --git a/Resources/Textures/Effects/creampie.rsi/creampie_vulpkanin.png b/Resources/Textures/Effects/creampie.rsi/creampie_vulpkanin.png new file mode 100644 index 0000000000..53369c158d Binary files /dev/null and b/Resources/Textures/Effects/creampie.rsi/creampie_vulpkanin.png differ diff --git a/Resources/Textures/Effects/creampie.rsi/meta.json b/Resources/Textures/Effects/creampie.rsi/meta.json index 8db8a77945..67b4981767 100644 --- a/Resources/Textures/Effects/creampie.rsi/meta.json +++ b/Resources/Textures/Effects/creampie.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation at 0d9c9a8233dfc3fc55edc538955a761a6328bee0. creampie_moth by MilenVolf, creampie_arachnid by PixelTheKermit (Github), creampie_vox by Errant", + "copyright": "Taken from https://github.com/tgstation/tgstation at 0d9c9a8233dfc3fc55edc538955a761a6328bee0. creampie_moth by MilenVolf, creampie_arachnid by PixelTheKermit (Github), creampie_vox by Errant, creampie_vulpkanin by Floofers", "size": { "x": 32, "y": 32 @@ -83,6 +83,10 @@ { "name": "creampie_xenomorph", "directions": 4 - } + }, + { + "name": "creampie_vulpkanin", + "directions": 4 + } ] } diff --git a/Resources/Textures/Interface/Actions/actions_ai.rsi/leg.png b/Resources/Textures/Interface/Actions/actions_ai.rsi/leg.png new file mode 100644 index 0000000000..13bcfcbe33 Binary files /dev/null and b/Resources/Textures/Interface/Actions/actions_ai.rsi/leg.png differ diff --git a/Resources/Textures/Interface/Actions/actions_ai.rsi/meta.json b/Resources/Textures/Interface/Actions/actions_ai.rsi/meta.json index 434b9052e0..0f33441961 100644 --- a/Resources/Textures/Interface/Actions/actions_ai.rsi/meta.json +++ b/Resources/Textures/Interface/Actions/actions_ai.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/blob/c473a8bcc28fbd80827dfca5660d81ca6e833e2c/icons/hud/screen_ai.dmi , some sprites updated by ScarKy0(Discord), door actions by ScarKy0(Discord) and @Max_tanuki(Twitter)", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/blob/c473a8bcc28fbd80827dfca5660d81ca6e833e2c/icons/hud/screen_ai.dmi , some sprites updated by ScarKy0(Discord), door actions by ScarKy0(Discord) and @Max_tanuki(Twitter), leg made by muburu_ (Dicord) and adjusted by slarticodefast", "size": { "x": 32, "y": 32 @@ -48,6 +48,9 @@ }, { "name": "door_overcharge_off" + }, + { + "name": "leg" } ] } diff --git a/Resources/Textures/Interface/Actions/backflip.png b/Resources/Textures/Interface/Actions/backflip.png new file mode 100644 index 0000000000..07d90a9fe1 Binary files /dev/null and b/Resources/Textures/Interface/Actions/backflip.png differ diff --git a/Resources/Textures/Interface/Alerts/breathing.rsi/meta.json b/Resources/Textures/Interface/Alerts/breathing.rsi/meta.json index 2e9f2e5eb3..fab57ded98 100644 --- a/Resources/Textures/Interface/Alerts/breathing.rsi/meta.json +++ b/Resources/Textures/Interface/Alerts/breathing.rsi/meta.json @@ -1 +1,99 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/tgstation/tgstation/blob/2f18e6232ce5897554351194082469a043c5ab06/icons/hud/screen_alert.dmi, not_enough_tox, too_much_tox localized by lzk228", "states": [{"name": "not_enough_co2", "delays": [[0.5, 0.5]]}, {"name": "not_enough_nitro", "delays": [[0.5, 0.5]]}, {"name": "not_enough_oxy", "delays": [[0.5, 0.5]]}, {"name": "not_enough_tox", "delays": [[0.5, 0.5]]}, {"name": "too_much_co2", "delays": [[0.5, 0.5]]}, {"name": "too_much_nitro", "delays": [[0.5, 0.5]]}, {"name": "too_much_oxy", "delays": [[0.5, 0.5]]}, {"name": "too_much_tox", "delays": [[0.5, 0.5]]}]} +{ + "version": 1, + "size": + { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/tgstation/tgstation/blob/2f18e6232ce5897554351194082469a043c5ab06/icons/hud/screen_alert.dmi, on and off states taken from https://github.com/tgstation/tgstation/commit/c4b7f3c41b6742aca260fe60cc358a778ba9b8c8 and edited by lzk228", + "states": + [ + { + "name": "not_enough_co2", + "delays": + [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "not_enough_nitro", + "delays": + [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "not_enough_oxy", + "delays": + [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "not_enough_tox", + "delays": + [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "too_much_co2", + "delays": + [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "too_much_nitro", + "delays": + [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "too_much_oxy", + "delays": + [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "too_much_tox", + "delays": + [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "on" + }, + { + "name": "off" + } + ] +} diff --git a/Resources/Textures/Interface/Alerts/breathing.rsi/off.png b/Resources/Textures/Interface/Alerts/breathing.rsi/off.png new file mode 100644 index 0000000000..1d6136da7d Binary files /dev/null and b/Resources/Textures/Interface/Alerts/breathing.rsi/off.png differ diff --git a/Resources/Textures/Interface/Alerts/breathing.rsi/on.png b/Resources/Textures/Interface/Alerts/breathing.rsi/on.png new file mode 100644 index 0000000000..14f0b745fe Binary files /dev/null and b/Resources/Textures/Interface/Alerts/breathing.rsi/on.png differ diff --git a/Resources/Textures/Interface/Alerts/human_dead.rsi/dead.png b/Resources/Textures/Interface/Alerts/human_dead.rsi/dead.png index 1596000a7b..1d7d53754b 100644 Binary files a/Resources/Textures/Interface/Alerts/human_dead.rsi/dead.png and b/Resources/Textures/Interface/Alerts/human_dead.rsi/dead.png differ diff --git a/Resources/Textures/Interface/Alerts/human_dead.rsi/meta.json b/Resources/Textures/Interface/Alerts/human_dead.rsi/meta.json index a2fbd00aa1..0397ded2fc 100644 --- a/Resources/Textures/Interface/Alerts/human_dead.rsi/meta.json +++ b/Resources/Textures/Interface/Alerts/human_dead.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation/commits/50689f89a40e5e7a2732a0c5fb38c787b69f7d28/icons/hud/screen_gen.dmi", + "copyright": "https://github.com/tgstation/tgstation/commits/50689f89a40e5e7a2732a0c5fb38c787b69f7d28/icons/hud/screen_gen.dmi, edited by Princess Cheeseballs (https://github.com/Pronana)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Interface/Emotes/attributions.yml b/Resources/Textures/Interface/Emotes/attributions.yml index d29915984d..9eba87c3f3 100644 --- a/Resources/Textures/Interface/Emotes/attributions.yml +++ b/Resources/Textures/Interface/Emotes/attributions.yml @@ -56,6 +56,11 @@ copyright: "Created by Sarahon" source: "https://github.com/Sarahon" +- files: ["flip.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by ps3moira for Space Station 14" + source: "https://github.com/ps3moira" + - files: ["hew.png"] license: "CC-BY-SA-3.0" copyright: "Modified from existing weh emote image (weh.png) by ArtisticRoomba" diff --git a/Resources/Textures/Interface/Emotes/flip.png b/Resources/Textures/Interface/Emotes/flip.png new file mode 100644 index 0000000000..c013fc8010 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/flip.png differ diff --git a/Resources/Textures/Mobs/Aliens/Carps/dragon.rsi/alive-unshaded.png b/Resources/Textures/Mobs/Aliens/Carps/dragon.rsi/alive-unshaded.png index 4d11267792..d37007d832 100644 Binary files a/Resources/Textures/Mobs/Aliens/Carps/dragon.rsi/alive-unshaded.png and b/Resources/Textures/Mobs/Aliens/Carps/dragon.rsi/alive-unshaded.png differ diff --git a/Resources/Textures/Mobs/Aliens/Carps/dragon.rsi/crit.png b/Resources/Textures/Mobs/Aliens/Carps/dragon.rsi/crit.png index 1fe5d25437..a0f929e8e2 100644 Binary files a/Resources/Textures/Mobs/Aliens/Carps/dragon.rsi/crit.png and b/Resources/Textures/Mobs/Aliens/Carps/dragon.rsi/crit.png differ diff --git a/Resources/Textures/Mobs/Aliens/Carps/dragon.rsi/dead.png b/Resources/Textures/Mobs/Aliens/Carps/dragon.rsi/dead.png index d9c8d55905..5f1109b4a3 100644 Binary files a/Resources/Textures/Mobs/Aliens/Carps/dragon.rsi/dead.png and b/Resources/Textures/Mobs/Aliens/Carps/dragon.rsi/dead.png differ diff --git a/Resources/Textures/Mobs/Aliens/Carps/dragon.rsi/meta.json b/Resources/Textures/Mobs/Aliens/Carps/dragon.rsi/meta.json index b29668aed9..eab62cc795 100644 --- a/Resources/Textures/Mobs/Aliens/Carps/dragon.rsi/meta.json +++ b/Resources/Textures/Mobs/Aliens/Carps/dragon.rsi/meta.json @@ -5,7 +5,7 @@ "y": 64 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from /tg/station at https://github.com/Toastgoats/tgstation/commit/024a840eed2a1be3f72435c2bb39faac8025f822", + "copyright": "Taken from /tg/station at https://github.com/Toastgoats/tgstation/commit/024a840eed2a1be3f72435c2bb39faac8025f822. Goofy eyes added by NoElka.", "states": [ { "name": "alive", diff --git a/Resources/Textures/Mobs/Aliens/Carps/holo.rsi/alive.png b/Resources/Textures/Mobs/Aliens/Carps/holo.rsi/alive.png index 47c26a457f..3e16e8e16c 100644 Binary files a/Resources/Textures/Mobs/Aliens/Carps/holo.rsi/alive.png and b/Resources/Textures/Mobs/Aliens/Carps/holo.rsi/alive.png differ diff --git a/Resources/Textures/Mobs/Aliens/Carps/holo.rsi/meta.json b/Resources/Textures/Mobs/Aliens/Carps/holo.rsi/meta.json index 9f2c4fb5fa..8e63134b56 100644 --- a/Resources/Textures/Mobs/Aliens/Carps/holo.rsi/meta.json +++ b/Resources/Textures/Mobs/Aliens/Carps/holo.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation/commit/b143783881fb7418213026857cb8c569636e259e#diff-8dd94e19fdb2ff341b57e31bce101298, edited 'alive' to create 'crit' and 'dead' states", + "copyright": "Taken from https://github.com/tgstation/tgstation/commit/b143783881fb7418213026857cb8c569636e259e#diff-8dd94e19fdb2ff341b57e31bce101298, edited 'alive' to create 'crit' and 'dead' states. Goofy eyes added by NoElka.", "states": [ { "name": "icon" diff --git a/Resources/Textures/Mobs/Aliens/Carps/magic.rsi/alive.png b/Resources/Textures/Mobs/Aliens/Carps/magic.rsi/alive.png index ee64f5acf1..8b603a6d46 100644 Binary files a/Resources/Textures/Mobs/Aliens/Carps/magic.rsi/alive.png and b/Resources/Textures/Mobs/Aliens/Carps/magic.rsi/alive.png differ diff --git a/Resources/Textures/Mobs/Aliens/Carps/magic.rsi/meta.json b/Resources/Textures/Mobs/Aliens/Carps/magic.rsi/meta.json index 05175508a3..0da7872262 100644 --- a/Resources/Textures/Mobs/Aliens/Carps/magic.rsi/meta.json +++ b/Resources/Textures/Mobs/Aliens/Carps/magic.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation/commit/d3d351dea8d9420cee47514843a02158d0a7266f#diff-8dd94e19fdb2ff341b57e31bce101298, edited 'dead' to create 'crit' and 'dead' states", + "copyright": "Taken from https://github.com/tgstation/tgstation/commit/d3d351dea8d9420cee47514843a02158d0a7266f#diff-8dd94e19fdb2ff341b57e31bce101298, edited 'dead' to create 'crit' and 'dead' states. Goofy eyes added by NoElka.", "states": [ { "name": "icon" diff --git a/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/alive.png b/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/alive.png index b4429e3a7d..a9c6ec3519 100644 Binary files a/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/alive.png and b/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/alive.png differ diff --git a/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/meta.json b/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/meta.json index 2f8d02bed2..ab133b17bf 100644 --- a/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/meta.json +++ b/Resources/Textures/Mobs/Aliens/Carps/sharkminnow.rsi/meta.json @@ -5,7 +5,7 @@ "y": 48 }, "license": "CC-BY-SA-3.0", - "copyright": "Sprited by Nimfar11 (Github) for Space Station 14", + "copyright": "Sprited by Nimfar11 (Github) for Space Station 14. Goofy eyes added by NoElka.", "states": [ { "name": "icon" diff --git a/Resources/Textures/Mobs/Aliens/Carps/space.rsi/alive.png b/Resources/Textures/Mobs/Aliens/Carps/space.rsi/alive.png index 0bc0960efa..39b0b6c877 100644 Binary files a/Resources/Textures/Mobs/Aliens/Carps/space.rsi/alive.png and b/Resources/Textures/Mobs/Aliens/Carps/space.rsi/alive.png differ diff --git a/Resources/Textures/Mobs/Aliens/Carps/space.rsi/meta.json b/Resources/Textures/Mobs/Aliens/Carps/space.rsi/meta.json index 68851e549f..cca60c8e7b 100644 --- a/Resources/Textures/Mobs/Aliens/Carps/space.rsi/meta.json +++ b/Resources/Textures/Mobs/Aliens/Carps/space.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/tgstation/tgstation/blob/master/icons/mob/animal.dmi, edited 'dead' to create 'crit' and 'dead' states", + "copyright": "Taken from https://github.com/tgstation/tgstation/blob/master/icons/mob/animal.dmi, edited 'dead' to create 'crit' and 'dead' states. Goofy eyes added by NoElka.", "states": [ { "name": "icon" diff --git a/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/0-equipped-HELMET.png b/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/0-equipped-HELMET.png new file mode 100644 index 0000000000..f756efee72 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/0-equipped-HELMET.png differ diff --git a/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/icon.png b/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/icon.png new file mode 100644 index 0000000000..1923b5d594 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/icon.png differ diff --git a/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/inhand-left.png b/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/inhand-left.png new file mode 100644 index 0000000000..7b6b9a28a3 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/inhand-left.png differ diff --git a/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/inhand-right.png b/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/inhand-right.png new file mode 100644 index 0000000000..f184340af0 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/inhand-right.png differ diff --git a/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/meta.json b/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/meta.json new file mode 100644 index 0000000000..b478db22fc --- /dev/null +++ b/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/meta.json @@ -0,0 +1,60 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from fulpstation at https://github.com/fulpstation/fulpstation/commit/edb232b692ec9f356ec554ea1971da552b9bc447. 'mothroach-moving' by MilenVolf, all edited by lzk228", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "mothroach", + "directions": 4 + }, + { + "name": "mothroach-moving", + "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 + ] + ] + }, + { + "name": "mothroach_dead", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "0-equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/mothroach-moving.png b/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/mothroach-moving.png new file mode 100644 index 0000000000..929cf998c8 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/mothroach-moving.png differ diff --git a/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/mothroach.png b/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/mothroach.png new file mode 100644 index 0000000000..8bc772c31f Binary files /dev/null and b/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/mothroach.png differ diff --git a/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/mothroach_dead.png b/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/mothroach_dead.png new file mode 100644 index 0000000000..83cbc86e4d Binary files /dev/null and b/Resources/Textures/Mobs/Animals/mothroach/moproach.rsi/mothroach_dead.png differ diff --git a/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/ears.png b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/ears.png new file mode 100644 index 0000000000..e1f6d3c5df Binary files /dev/null and b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/ears.png differ diff --git a/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/eyes.png b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/eyes.png new file mode 100644 index 0000000000..84c482e398 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/eyes.png differ diff --git a/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/gloves.png b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/gloves.png new file mode 100644 index 0000000000..474826d501 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/gloves.png differ diff --git a/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/hand.png b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/hand.png new file mode 100644 index 0000000000..c564fb4210 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/hand.png differ diff --git a/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/head.png b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/head.png new file mode 100644 index 0000000000..b3a0e3ac7d Binary files /dev/null and b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/head.png differ diff --git a/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/id.png b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/id.png new file mode 100644 index 0000000000..e138c0d8d6 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/id.png differ diff --git a/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/jumpsuit.png b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/jumpsuit.png new file mode 100644 index 0000000000..2481e38540 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/jumpsuit.png differ diff --git a/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/mask.png b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/mask.png new file mode 100644 index 0000000000..8199cdac92 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/mask.png differ diff --git a/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/meta.json b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/meta.json new file mode 100644 index 0000000000..cc4506ab90 --- /dev/null +++ b/Resources/Textures/Mobs/Animals/scurret/displacement.rsi/meta.json @@ -0,0 +1,46 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Displacement maps made by Hannah 'FairlySadPanda' Dawson. Wawa!", + "size": { + "x": 32, + "y": 32 + }, + "load": { + "srgb": false + }, + "states": [ + { + "name": "jumpsuit", + "directions": 4 + }, + { + "name": "head", + "directions": 4 + }, + { + "name": "ears", + "directions": 4 + }, + { + "name": "eyes", + "directions": 4 + }, + { + "name": "mask", + "directions": 4 + }, + { + "name": "id", + "directions": 4 + }, + { + "name": "gloves", + "directions": 4 + }, + { + "name": "hand", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Animals/scurret/scurret.rsi/meta.json b/Resources/Textures/Mobs/Animals/scurret/scurret.rsi/meta.json new file mode 100644 index 0000000000..5cd44e2ded --- /dev/null +++ b/Resources/Textures/Mobs/Animals/scurret/scurret.rsi/meta.json @@ -0,0 +1,21 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Yogstation at https://github.com/yogstation13/Yogstation/blob/b5a72f35980b15404d3c507d2ad0af06010f6056/icons/mob/pets.dmi, some modifications by Hannah 'FairlySadPanda' Dawson. Displacement maps by Hannah 'FairlySadPanda' Dawson. Wawa!", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "scurret", + "directions": 4 + }, + { + "name": "scurret_rip" + }, + { + "name": "scurret_oof" + } + ] +} diff --git a/Resources/Textures/Mobs/Animals/scurret/scurret.rsi/scurret.png b/Resources/Textures/Mobs/Animals/scurret/scurret.rsi/scurret.png new file mode 100644 index 0000000000..7562f35fab Binary files /dev/null and b/Resources/Textures/Mobs/Animals/scurret/scurret.rsi/scurret.png differ diff --git a/Resources/Textures/Mobs/Animals/scurret/scurret.rsi/scurret_oof.png b/Resources/Textures/Mobs/Animals/scurret/scurret.rsi/scurret_oof.png new file mode 100644 index 0000000000..e0dd782fa0 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/scurret/scurret.rsi/scurret_oof.png differ diff --git a/Resources/Textures/Mobs/Animals/scurret/scurret.rsi/scurret_rip.png b/Resources/Textures/Mobs/Animals/scurret/scurret.rsi/scurret_rip.png new file mode 100644 index 0000000000..9d3f2a7977 Binary files /dev/null and b/Resources/Textures/Mobs/Animals/scurret/scurret.rsi/scurret_rip.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_crest.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_crest.png new file mode 100644 index 0000000000..4f89cd5c74 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_crest.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_fox.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_fox.png new file mode 100644 index 0000000000..a87895c87a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_fox.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_full.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_full.png new file mode 100644 index 0000000000..4aacde2a6f Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/belly_full.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/meta.json b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/meta.json new file mode 100644 index 0000000000..79c623c28a --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/meta.json @@ -0,0 +1,64 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/DeltaV-Station/Delta-v/commit/65d35d0b3c20aa4e8a0e749a4de8392e53051e86", + "size": {"x": 32, "y": 32}, + "states": [ + { + "name": "points_fade", + "directions": 4 + }, + { + "name": "points_sharp", + "directions": 4 + }, + { + "name": "points_crest", + "directions": 4 + }, + { + "name": "belly_fox", + "directions": 4 + }, + { + "name": "belly_full", + "directions": 4 + }, + { + "name": "belly_crest", + "directions": 4 + }, + { + "name": "points_hands", + "directions": 4 + }, + { + "name": "points_feet", + "directions": 4 + }, + { + "name": "points_sharp-arms", + "directions": 4 + }, + { + "name": "points_sharp-legs", + "directions": 4 + }, + { + "name": "points_fade-arms", + "directions": 4 + }, + { + "name": "points_fade-legs", + "directions": 4 + }, + { + "name": "points_crest-arms", + "directions": 4 + }, + { + "name": "points_crest-legs", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest-arms.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest-arms.png new file mode 100644 index 0000000000..ab5778a8c0 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest-arms.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest-legs.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest-legs.png new file mode 100644 index 0000000000..462b714196 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest-legs.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest.png new file mode 100644 index 0000000000..38f54cd31f Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_crest.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-arms.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-arms.png new file mode 100644 index 0000000000..ef09441895 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-arms.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-legs.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-legs.png new file mode 100644 index 0000000000..e85611a141 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade-legs.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade.png new file mode 100644 index 0000000000..4901fdfe91 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_fade.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_feet.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_feet.png new file mode 100644 index 0000000000..0797239f4e Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_feet.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_hands.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_hands.png new file mode 100644 index 0000000000..2e98cce6ae Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_hands.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arms.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arms.png new file mode 100644 index 0000000000..886be6412b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-arms.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-legs.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-legs.png new file mode 100644 index 0000000000..b84265c714 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp-legs.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp.png b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp.png new file mode 100644 index 0000000000..cae0e16e83 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/body_markings.rsi/points_sharp.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/coyote.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/coyote.png new file mode 100644 index 0000000000..36687c0131 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/coyote.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/dalmatian.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/dalmatian.png new file mode 100644 index 0000000000..6f94847a1d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/dalmatian.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec-inner.png new file mode 100644 index 0000000000..522ba6b4ce Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec.png new file mode 100644 index 0000000000..a7a69c7744 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fennec.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fox-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fox-inner.png new file mode 100644 index 0000000000..d093378d3f Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fox-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fox.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fox.png new file mode 100644 index 0000000000..b850826c04 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/fox.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal-inner.png new file mode 100644 index 0000000000..fa77369067 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal.png new file mode 100644 index 0000000000..85c5297544 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/jackal.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/meta.json b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/meta.json new file mode 100644 index 0000000000..d670151300 --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/meta.json @@ -0,0 +1,95 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/DeltaV-Station/Delta-v/commit/e5426c4e3b160472b7d2913e1f89897bf72d9577", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "vulp", + "directions": 4 + }, + { + "name": "vulp-inner", + "directions": 4 + }, + { + "name": "vulp-fade", + "directions": 4 + }, + { + "name": "vulp-sharp", + "directions": 4 + }, + { + "name": "jackal", + "directions": 4 + }, + { + "name": "jackal-inner", + "directions": 4 + }, + { + "name": "terrier", + "directions": 4 + }, + { + "name": "terrier-inner", + "directions": 4 + }, + { + "name": "wolf", + "directions": 4 + }, + { + "name": "wolf-inner", + "directions": 4 + }, + { + "name": "fennec", + "directions": 4 + }, + { + "name": "fennec-inner", + "directions": 4 + }, + { + "name": "fox", + "directions": 4 + }, + { + "name": "fox-inner", + "directions": 4 + }, + { + "name": "otie", + "directions": 4 + }, + { + "name": "otie-inner", + "directions": 4 + }, + { + "name": "msai", + "directions": 4 + }, + { + "name": "msai-inner", + "directions": 4 + }, + { + "name": "shock", + "directions": 4 + }, + { + "name": "coyote", + "directions": 4 + }, + { + "name": "dalmatian", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/msai-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/msai-inner.png new file mode 100644 index 0000000000..71b7a14d86 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/msai-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/msai.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/msai.png new file mode 100644 index 0000000000..e9180c4e2c Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/msai.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie-inner.png new file mode 100644 index 0000000000..a44c962eec Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie.png new file mode 100644 index 0000000000..fe0ceb673d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/otie.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/shock.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/shock.png new file mode 100644 index 0000000000..9ea9f102f2 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/shock.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier-inner.png new file mode 100644 index 0000000000..76e3a106cc Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier.png new file mode 100644 index 0000000000..a230a12c0a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/terrier.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-fade.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-fade.png new file mode 100644 index 0000000000..bdf1481899 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-fade.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-inner.png new file mode 100644 index 0000000000..cd58f4714d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-sharp.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-sharp.png new file mode 100644 index 0000000000..97d5b34411 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp-sharp.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp.png new file mode 100644 index 0000000000..034d0ace08 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/vulp.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/wolf-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/wolf-inner.png new file mode 100644 index 0000000000..be32a6e9b0 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/wolf-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/wolf.png b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/wolf.png new file mode 100644 index 0000000000..52379e953c Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/ear_markings.rsi/wolf.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder.png b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder.png new file mode 100644 index 0000000000..0a3601e376 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder_chin.png b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder_chin.png new file mode 100644 index 0000000000..6659cf9193 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/elder_chin.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/kita.png b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/kita.png new file mode 100644 index 0000000000..67f973856b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/kita.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/meta.json new file mode 100644 index 0000000000..ec79045524 --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/meta.json @@ -0,0 +1,24 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/DeltaV-Station/Delta-v/commit/65d35d0b3c20aa4e8a0e749a4de8392e53051e86", + "size": {"x": 32, "y": 32}, + "states": [ + { + "name": "ruff", + "directions": 4 + }, + { + "name": "elder", + "directions": 4 + }, + { + "name": "elder_chin", + "directions": 4 + }, + { + "name": "kita", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/ruff.png b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/ruff.png new file mode 100644 index 0000000000..3a632771c9 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/facial_hair.rsi/ruff.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/adhara.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/adhara.png new file mode 100644 index 0000000000..8e563cd74a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/adhara.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/anita.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/anita.png new file mode 100644 index 0000000000..5d4e146ace Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/anita.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/apollo.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/apollo.png new file mode 100644 index 0000000000..4dee8b08d0 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/apollo.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/belle.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/belle.png new file mode 100644 index 0000000000..63dc8686a8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/belle.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/braided.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/braided.png new file mode 100644 index 0000000000..f36e2d9f27 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/braided.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/bun.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/bun.png new file mode 100644 index 0000000000..26e61f7bd1 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/bun.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/clean_cut.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/clean_cut.png new file mode 100644 index 0000000000..db56fa0028 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/clean_cut.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/curl.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/curl.png new file mode 100644 index 0000000000..e9083ae608 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/curl.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/hawk.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/hawk.png new file mode 100644 index 0000000000..546664a61f Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/hawk.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/jagged.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/jagged.png new file mode 100644 index 0000000000..9ccfb37dc1 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/jagged.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/jeremy.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/jeremy.png new file mode 100644 index 0000000000..36240cd9e0 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/jeremy.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/kajam.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/kajam.png new file mode 100644 index 0000000000..bae87f1a71 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/kajam.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/keid.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/keid.png new file mode 100644 index 0000000000..0a8bd00c66 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/keid.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/kleeia.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/kleeia.png new file mode 100644 index 0000000000..9056c12342 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/kleeia.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/meta.json new file mode 100644 index 0000000000..68b36b0d33 --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/meta.json @@ -0,0 +1,92 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/DeltaV-Station/Delta-v/commit/65d35d0b3c20aa4e8a0e749a4de8392e53051e86", + "size": {"x": 32, "y": 32}, + "states": [ + { + "name": "adhara", + "directions": 4 + }, + { + "name": "anita", + "directions": 4 + }, + { + "name": "apollo", + "directions": 4 + }, + { + "name": "belle", + "directions": 4 + }, + { + "name": "braided", + "directions": 4 + }, + { + "name": "bun", + "directions": 4 + }, + { + "name": "clean_cut", + "directions": 4 + }, + { + "name": "curl", + "directions": 4 + }, + { + "name": "hawk", + "directions": 4 + }, + { + "name": "jagged", + "directions": 4 + }, + { + "name": "jeremy", + "directions": 4 + }, + { + "name": "kajam", + "directions": 4 + }, + { + "name": "keid", + "directions": 4 + }, + { + "name": "kleeia", + "directions": 4 + }, + { + "name": "mizar", + "directions": 4 + }, + { + "name": "punkbraided", + "directions": 4 + }, + { + "name": "raine", + "directions": 4 + }, + { + "name": "rough", + "directions": 4 + }, + { + "name": "short", + "directions": 4 + }, + { + "name": "short2", + "directions": 4 + }, + { + "name": "spike", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/mizar.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/mizar.png new file mode 100644 index 0000000000..6b5c4b83fa Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/mizar.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/punkbraided.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/punkbraided.png new file mode 100644 index 0000000000..80c0800884 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/punkbraided.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/raine.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/raine.png new file mode 100644 index 0000000000..d904f012ce Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/raine.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/rough.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/rough.png new file mode 100644 index 0000000000..352cddae16 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/rough.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/short.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/short.png new file mode 100644 index 0000000000..0270031608 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/short.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/short2.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/short2.png new file mode 100644 index 0000000000..af45554fc8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/short2.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/spike.png b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/spike.png new file mode 100644 index 0000000000..14b9377f1f Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/hair.rsi/spike.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/blaze.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/blaze.png new file mode 100644 index 0000000000..468fd7ff40 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/blaze.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/mask.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/mask.png new file mode 100644 index 0000000000..56d9fc22e6 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/mask.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/meta.json b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/meta.json new file mode 100644 index 0000000000..b29ac59fd3 --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/meta.json @@ -0,0 +1,60 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/DeltaV-Station/Delta-v/commit/65d35d0b3c20aa4e8a0e749a4de8392e53051e86", + "size": {"x": 32, "y": 32}, + "states": [ + { + "name": "nose", + "directions": 4 + }, + { + "name": "tiger_face", + "directions": 4 + }, + { + "name": "tiger_head", + "directions": 4 + }, + { + "name": "muzzle", + "directions": 4 + }, + { + "name": "muzzle_sharp", + "directions": 4 + }, + { + "name": "muzzle_fade", + "directions": 4 + }, + { + "name": "muzzle_alt", + "directions": 4 + }, + { + "name": "patch", + "directions": 4 + }, + { + "name": "mask", + "directions": 4 + }, + { + "name": "slash", + "directions": 4 + }, + { + "name": "blaze", + "directions": 4 + }, + { + "name": "vulpine", + "directions": 4 + }, + { + "name": "vulpine-lines", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle.png new file mode 100644 index 0000000000..3a047062eb Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_alt.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_alt.png new file mode 100644 index 0000000000..0e31152975 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_alt.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_fade.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_fade.png new file mode 100644 index 0000000000..7bc70487c9 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_fade.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_sharp.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_sharp.png new file mode 100644 index 0000000000..bd6d2ef221 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/muzzle_sharp.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/nose.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/nose.png new file mode 100644 index 0000000000..905443a3ad Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/nose.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/patch.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/patch.png new file mode 100644 index 0000000000..80df0d5b32 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/patch.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/slash.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/slash.png new file mode 100644 index 0000000000..1373da358b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/slash.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/tiger_face.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/tiger_face.png new file mode 100644 index 0000000000..c542fe6e5e Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/tiger_face.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/tiger_head.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/tiger_head.png new file mode 100644 index 0000000000..922253aa24 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/tiger_head.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/vulpine-lines.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/vulpine-lines.png new file mode 100644 index 0000000000..ac4d125bbd Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/vulpine-lines.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/vulpine.png b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/vulpine.png new file mode 100644 index 0000000000..7c51f23193 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/head_markings.rsi/vulpine.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_full.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_full.png new file mode 100644 index 0000000000..ed04708fd8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_full.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_none.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_none.png new file mode 100644 index 0000000000..8a925761fb Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_none.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_top.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_top.png new file mode 100644 index 0000000000..7f924cd879 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/female_top.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/full.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/full.png new file mode 100644 index 0000000000..f78008f58a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/full.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_full.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_full.png new file mode 100644 index 0000000000..f78008f58a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_full.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_none.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_none.png new file mode 100644 index 0000000000..44e0c1358d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_none.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_top.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_top.png new file mode 100644 index 0000000000..a96eb3c294 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/male_top.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/meta.json b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/meta.json new file mode 100644 index 0000000000..1fced5e275 --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/meta.json @@ -0,0 +1,100 @@ +{ + "copyright": "Discord PJB#3005 Altered By Floofers in: Taken from https://github.com/DeltaV-Station/Delta-v/commit/65d35d0b3c20aa4e8a0e749a4de8392e53051e86", + "license": "CC-BY-SA-3.0", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ], + "directions": 4, + "name": "female_none" + }, + { + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ], + "directions": 4, + "name": "female_full" + }, + { + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ], + "directions": 4, + "name": "female_top" + }, + { + "name": "none" + }, + { + "name": "male_full", + "directions": 4 + }, + { + "name": "male_none", + "directions": 1 + }, + { + "name": "male_top", + "directions": 4 + }, + { + "name": "unisex_full", + "directions": 4 + }, + { + "name": "unisex_none", + "directions": 1 + }, + { + "name": "unisex_top", + "directions": 4 + }, + { + "name": "full", + "directions": 4 + }, + { + "name": "top", + "directions": 4 + } + ], + "version": 1 +} diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/none.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/none.png new file mode 100644 index 0000000000..6e3cb09bcf Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/none.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/top.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/top.png new file mode 100644 index 0000000000..f78008f58a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/top.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_full.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_full.png new file mode 100644 index 0000000000..1b69c04a7a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_full.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_none.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_none.png new file mode 100644 index 0000000000..44e0c1358d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_none.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_top.png b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_top.png new file mode 100644 index 0000000000..44e0c1358d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/masking_helpers.rsi/unisex_top.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/bushfluff.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/bushfluff.png new file mode 100644 index 0000000000..55c69e2068 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/bushfluff.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/bushfluff_wag.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/bushfluff_wag.png new file mode 100644 index 0000000000..e96aeb6d08 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/bushfluff_wag.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/corgi.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/corgi.png new file mode 100644 index 0000000000..1dc864e456 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/corgi.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/corgi_wag.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/corgi_wag.png new file mode 100644 index 0000000000..129d5e95a5 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/corgi_wag.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/coyote.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/coyote.png new file mode 100644 index 0000000000..63e5ddba19 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/coyote.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/coyote_wag.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/coyote_wag.png new file mode 100644 index 0000000000..a1c66f742e Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/coyote_wag.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/dalmatian.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/dalmatian.png new file mode 100644 index 0000000000..7423e44aaa Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/dalmatian.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/dalmatian_wag.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/dalmatian_wag.png new file mode 100644 index 0000000000..c9ea5bc1b0 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/dalmatian_wag.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fennec.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fennec.png new file mode 100644 index 0000000000..6f65eebb20 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fennec.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fluffy.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fluffy.png new file mode 100644 index 0000000000..a5c11e0012 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fluffy.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox-fade.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox-fade.png new file mode 100644 index 0000000000..ff4a30f213 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox-fade.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox-tip.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox-tip.png new file mode 100644 index 0000000000..40fa2e2ca4 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox-tip.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox.png new file mode 100644 index 0000000000..406ad13bcb Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox2.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox2.png new file mode 100644 index 0000000000..d60f0ae759 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox2.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox3-tip.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox3-tip.png new file mode 100644 index 0000000000..f01b986328 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox3-tip.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox3.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox3.png new file mode 100644 index 0000000000..eef4b5d7d0 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox3.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag-fade.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag-fade.png new file mode 100644 index 0000000000..b30f422ec1 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag-fade.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag-tip.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag-tip.png new file mode 100644 index 0000000000..39b123b58b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag-tip.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag.png new file mode 100644 index 0000000000..91c3368151 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/fox_wag.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-inner.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-inner.png new file mode 100644 index 0000000000..9c11aa3311 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-inner.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-outer.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-outer.png new file mode 100644 index 0000000000..beeae9ffc2 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky-outer.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky.png new file mode 100644 index 0000000000..a7a27a3387 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/husky.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/long-tip.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/long-tip.png new file mode 100644 index 0000000000..1ee71c955c Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/long-tip.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/long.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/long.png new file mode 100644 index 0000000000..f0487d42c1 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/long.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/meta.json b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/meta.json new file mode 100644 index 0000000000..fe6a99e253 --- /dev/null +++ b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/meta.json @@ -0,0 +1,157 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/DeltaV-Station/Delta-v/commit/65d35d0b3c20aa4e8a0e749a4de8392e53051e86, tail-wag-icon and corgi and dalmation created by PursuitInAshes based off of 'vulp'. Fluffy created by Skarletto (Github).", + "size": {"x": 32, "y": 32}, + "states": [ + { + "name": "vulp", + "directions": 4 + }, + { + "name": "vulp-tip", + "directions": 4 + }, + { + "name": "vulp-fade", + "directions": 4 + }, + { + "name": "vulp_alt", + "directions": 4 + }, + { + "name": "vulp_alt-fade", + "directions": 4 + }, + { + "name": "vulp_alt-tip", + "directions": 4 + }, + { + "name": "vulp_wag", + "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, 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, 0.2, 0.2, 0.2, 0.2]] + }, + { + "name": "vulp_wag-fade", + "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, 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, 0.2, 0.2, 0.2, 0.2]] + }, + { + "name": "vulp_wag-tip", + "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, 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, 0.2, 0.2, 0.2, 0.2]] + }, + { + "name": "long", + "directions": 4 + }, + { + "name": "long-tip", + "directions": 4 + }, + { + "name": "fox", + "directions": 4 + }, + { + "name": "fox-tip", + "directions": 4 + }, + { + "name": "fox-fade", + "directions": 4 + }, + { + "name": "fox_wag", + "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, 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, 0.2, 0.2, 0.2, 0.2]] + }, + { + "name": "fox_wag-fade", + "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, 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, 0.2, 0.2, 0.2, 0.2]] + }, + { + "name": "fox_wag-tip", + "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, 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, 0.2, 0.2, 0.2, 0.2]] + }, + { + "name": "bushfluff", + "directions": 4 + }, + { + "name": "bushfluff_wag", + "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], [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": "coyote", + "directions": 4 + }, + { + "name": "coyote_wag", + "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], [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": "corgi_wag", + "directions": 4, + "delays": [[0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1], [0.1, 0.1, 0.1, 0.1]] + }, + { + "name": "husky", + "directions": 4 + }, + { + "name": "husky-inner", + "directions": 4 + }, + { + "name": "husky-outer", + "directions": 4 + }, + { + "name": "fox2", + "directions": 4 + }, + { + "name": "fox3", + "directions": 4 + }, + { + "name": "fox3-tip", + "directions": 4 + }, + { + "name": "fennec", + "directions": 4 + }, + { + "name": "otie", + "directions": 4 + }, + { + "name": "fluffy", + "directions": 4 + }, + { + "name": "dalmatian_wag", + "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, 0.2, 0.2], [0.2, 0.2, 0.2, 0.2, 0.2, 0.2]] }, + { + "name": "tail-wag-icon", + "directions": 1 + }, + { + "name": "corgi", + "directions": 4 + }, + { + "name": "dalmatian", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/otie.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/otie.png new file mode 100644 index 0000000000..2d2d82ad74 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/otie.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/tail-wag-icon.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/tail-wag-icon.png new file mode 100644 index 0000000000..c7e544012d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/tail-wag-icon.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-fade.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-fade.png new file mode 100644 index 0000000000..ac6c545181 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-fade.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-tip.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-tip.png new file mode 100644 index 0000000000..cc22eaf1fa Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp-tip.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp.png new file mode 100644 index 0000000000..181ba53a89 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt-fade.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt-fade.png new file mode 100644 index 0000000000..fd89f9c60b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt-fade.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt-tip.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt-tip.png new file mode 100644 index 0000000000..345ee3d8db Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt-tip.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt.png new file mode 100644 index 0000000000..af18dfbec5 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_alt.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag-fade.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag-fade.png new file mode 100644 index 0000000000..e2893062e3 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag-fade.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag-tip.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag-tip.png new file mode 100644 index 0000000000..371d20fd91 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag-tip.png differ diff --git a/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag.png b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag.png new file mode 100644 index 0000000000..25aee8a6ce Binary files /dev/null and b/Resources/Textures/Mobs/Customization/Vulpkanin/tail_markings.rsi/vulp_wag.png differ diff --git a/Resources/Textures/Mobs/Demons/juicytomatokiller.rsi/alive.png b/Resources/Textures/Mobs/Demons/juicytomatokiller.rsi/alive.png new file mode 100644 index 0000000000..deeb7e3250 Binary files /dev/null and b/Resources/Textures/Mobs/Demons/juicytomatokiller.rsi/alive.png differ diff --git a/Resources/Textures/Mobs/Demons/juicytomatokiller.rsi/dead.png b/Resources/Textures/Mobs/Demons/juicytomatokiller.rsi/dead.png new file mode 100644 index 0000000000..4b3ee970a0 Binary files /dev/null and b/Resources/Textures/Mobs/Demons/juicytomatokiller.rsi/dead.png differ diff --git a/Resources/Textures/Mobs/Demons/juicytomatokiller.rsi/meta.json b/Resources/Textures/Mobs/Demons/juicytomatokiller.rsi/meta.json new file mode 100644 index 0000000000..4a20bc1878 --- /dev/null +++ b/Resources/Textures/Mobs/Demons/juicytomatokiller.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "taken from TG on commit https://github.com/tgstation/tgstation/commit/7e5f13f558253e76865e81c9641b7ec68e57754b, edited by gentlebutter on Discord", + "states": [ + { + "name": "alive", + "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 + ] + ] + }, + { + "name": "dead" + } + ] +} diff --git a/Resources/Textures/Mobs/Silicon/leggy.rsi/ai_down.png b/Resources/Textures/Mobs/Silicon/leggy.rsi/ai_down.png new file mode 100644 index 0000000000..04fea30464 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/leggy.rsi/ai_down.png differ diff --git a/Resources/Textures/Mobs/Silicon/leggy.rsi/ai_high.png b/Resources/Textures/Mobs/Silicon/leggy.rsi/ai_high.png new file mode 100644 index 0000000000..f822b7d480 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/leggy.rsi/ai_high.png differ diff --git a/Resources/Textures/Mobs/Silicon/leggy.rsi/ai_up.png b/Resources/Textures/Mobs/Silicon/leggy.rsi/ai_up.png new file mode 100644 index 0000000000..54e1fb8d91 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/leggy.rsi/ai_up.png differ diff --git a/Resources/Textures/Mobs/Silicon/leggy.rsi/base_high.png b/Resources/Textures/Mobs/Silicon/leggy.rsi/base_high.png new file mode 100644 index 0000000000..135ea9b994 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/leggy.rsi/base_high.png differ diff --git a/Resources/Textures/Mobs/Silicon/leggy.rsi/down.png b/Resources/Textures/Mobs/Silicon/leggy.rsi/down.png new file mode 100644 index 0000000000..bc9f3e98bb Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/leggy.rsi/down.png differ diff --git a/Resources/Textures/Mobs/Silicon/leggy.rsi/meta.json b/Resources/Textures/Mobs/Silicon/leggy.rsi/meta.json new file mode 100644 index 0000000000..459aa80b77 --- /dev/null +++ b/Resources/Textures/Mobs/Silicon/leggy.rsi/meta.json @@ -0,0 +1,96 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/blob/2a19963297f91efb452dbb5c1d4eb28a14776b0a/icons/mob/silicon/ai.dmi, leg sprites made by muburu_ (Dicord) and adjusted by slarticodefast", + "size": { + "x": 32, + "y": 64 + }, + "states": [ + { + "name": "ai_high", + "delays": [ + [ + 0.2, + 0.2, + 0.1, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1 + ] + ] + }, + { + "name": "base_high" + }, + { + "name": "down", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ai_down", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "up", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ai_up", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Mobs/Silicon/leggy.rsi/up.png b/Resources/Textures/Mobs/Silicon/leggy.rsi/up.png new file mode 100644 index 0000000000..dedd7382d5 Binary files /dev/null and b/Resources/Textures/Mobs/Silicon/leggy.rsi/up.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/full.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/full.png new file mode 100644 index 0000000000..d78a1ae113 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/full.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/head_f.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/head_f.png new file mode 100644 index 0000000000..e6c988ac8b Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/head_f.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/head_m.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/head_m.png new file mode 100644 index 0000000000..d689441350 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/head_m.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/icon.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/icon.png new file mode 100644 index 0000000000..016d8ba5a7 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/icon.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_arm.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_arm.png new file mode 100644 index 0000000000..a33336d6a6 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_foot.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_foot.png new file mode 100644 index 0000000000..6b1db8f631 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_hand.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_hand.png new file mode 100644 index 0000000000..645ec58d5b Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_leg.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_leg.png new file mode 100644 index 0000000000..6511227d74 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/meta.json b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/meta.json new file mode 100644 index 0000000000..bd64b26a77 --- /dev/null +++ b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/meta.json @@ -0,0 +1,69 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from DeltaV at https://github.com/DeltaV-Station/Delta-v/commit/65d35d0b3c20aa4e8a0e749a4de8392e53051e86", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "icon" + }, + { + "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 + }, + { + "name": "overlay_husk", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/overlay_husk.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/overlay_husk.png new file mode 100644 index 0000000000..ba3fc107bc Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/overlay_husk.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_arm.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_arm.png new file mode 100644 index 0000000000..7fc626c271 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_foot.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_foot.png new file mode 100644 index 0000000000..9174095ab3 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_hand.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_hand.png new file mode 100644 index 0000000000..e461d8a7b5 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_leg.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_leg.png new file mode 100644 index 0000000000..d563bd072a Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/torso_f.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/torso_f.png new file mode 100644 index 0000000000..db8a63bbd9 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/torso_m.png b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/torso_m.png new file mode 100644 index 0000000000..dfe4705aa3 Binary files /dev/null and b/Resources/Textures/Mobs/Species/Vulpkanin/parts.rsi/torso_m.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..ceea1e2e99 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/lit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/meta.json index 21312feb7b..8d6da16f6f 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Adapted from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8", + "copyright": "Adapted from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -177,6 +177,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..fc81b838cb Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/blunt.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..f4e2671805 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/lit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/meta.json index 435e9748b1..cd4355ac14 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d edited by Floofers", "size": { "x": 32, "y": 32 @@ -177,6 +177,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..bd01ccf61f Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cannabis/joint.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..60c0c634f6 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/lit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/meta.json index 00fcb768fb..0d4fd176a0 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -177,6 +177,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..9e6a86b142 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigarettes/cigarette.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..4a3544c8fa Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/lit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/meta.json index 5e4d9412b0..50aa75e5f8 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8. lit-equipped-MASK-vox & unlit-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8. lit-equipped-MASK-vox & unlit-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -215,6 +215,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..b9ab1e483f Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar-gold.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..4a3544c8fa Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/lit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/meta.json index 5e4d9412b0..50aa75e5f8 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8. lit-equipped-MASK-vox & unlit-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8. lit-equipped-MASK-vox & unlit-equipped-MASK-vox states taken from /vg/station at commit https://github.com/vgstation-coders/vgstation13/commit/4638130fab5ff0e9faa220688811349d3297a33e | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -215,6 +215,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..b9ab1e483f Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Cigars/cigar.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/lit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/lit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..bc72d5c2e8 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/lit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/meta.json b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/meta.json index 00fcb768fb..0d4fd176a0 100644 --- a/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/bfc9c6ba8126ee8c41564d68c4bfb9ce37faa8f8 | vulpkanin version taken from Paradise station at https://github.com/ParadiseSS13/Paradise/commit/f0fa4e1fd809482fbc104a310aa34cebf7df157d", "size": { "x": 32, "y": 32 @@ -177,6 +177,56 @@ 0.1 ] ] + }, + { + "name": "unlit-equipped-MASK-vulpkanin", + "directions": 4 + }, + { + "name": "lit-equipped-MASK-vulpkanin", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/unlit-equipped-MASK-vulpkanin.png b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/unlit-equipped-MASK-vulpkanin.png new file mode 100644 index 0000000000..806e5c4160 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Smokeables/Pipes/pipe.rsi/unlit-equipped-MASK-vulpkanin.png differ diff --git a/Resources/Textures/Objects/Devices/pda.rsi/meta.json b/Resources/Textures/Objects/Devices/pda.rsi/meta.json index 65c48578ed..3e0189f595 100644 --- a/Resources/Textures/Objects/Devices/pda.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/pda.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/59f2a4e10e5ba36033c9734ddebfbbdc6157472d, pda-cluwne made by brainfood1183 (github) ss14 | pda-brigmedic and pda-centcom made by PuroSlavKing (Github) | pda-brigemdic resprited by Hülle#2562 (Discord), pda-pirate made by brainfood1183 (Github), pda-syndi-agent drawn by Ubaser, pda-wizard recolour by Velken", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/59f2a4e10e5ba36033c9734ddebfbbdc6157472d, pda-cluwne made by brainfood1183 (github) ss14 | pda-brigmedic and pda-centcom made by PuroSlavKing (Github) | pda-brigemdic resprited by Hülle#2562 (Discord), pda-pirate made by brainfood1183 (Github), pda-syndi-agent drawn by Ubaser, pda-wizard recolour by Velken, pda-brigmedc, pda-hos, pda-interncadet, pda-security, pda-seniorofficer, and pda-warden made Green by notquitehadouken for april fools SS14.", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Devices/pda.rsi/pda-brigmedic.png b/Resources/Textures/Objects/Devices/pda.rsi/pda-brigmedic.png index 684aaaac1f..a98e68a834 100644 Binary files a/Resources/Textures/Objects/Devices/pda.rsi/pda-brigmedic.png and b/Resources/Textures/Objects/Devices/pda.rsi/pda-brigmedic.png differ diff --git a/Resources/Textures/Objects/Devices/pda.rsi/pda-hos.png b/Resources/Textures/Objects/Devices/pda.rsi/pda-hos.png index 3a6c5e6078..a32b24500c 100644 Binary files a/Resources/Textures/Objects/Devices/pda.rsi/pda-hos.png and b/Resources/Textures/Objects/Devices/pda.rsi/pda-hos.png differ diff --git a/Resources/Textures/Objects/Devices/pda.rsi/pda-interncadet.png b/Resources/Textures/Objects/Devices/pda.rsi/pda-interncadet.png index 5a54b5f797..bd207ce3fa 100644 Binary files a/Resources/Textures/Objects/Devices/pda.rsi/pda-interncadet.png and b/Resources/Textures/Objects/Devices/pda.rsi/pda-interncadet.png differ diff --git a/Resources/Textures/Objects/Devices/pda.rsi/pda-security.png b/Resources/Textures/Objects/Devices/pda.rsi/pda-security.png index 0af0eafcce..32a38bc9d2 100644 Binary files a/Resources/Textures/Objects/Devices/pda.rsi/pda-security.png and b/Resources/Textures/Objects/Devices/pda.rsi/pda-security.png differ diff --git a/Resources/Textures/Objects/Devices/pda.rsi/pda-seniorofficer.png b/Resources/Textures/Objects/Devices/pda.rsi/pda-seniorofficer.png index a6e7e6915e..fc4d0fdc16 100644 Binary files a/Resources/Textures/Objects/Devices/pda.rsi/pda-seniorofficer.png and b/Resources/Textures/Objects/Devices/pda.rsi/pda-seniorofficer.png differ diff --git a/Resources/Textures/Objects/Devices/pda.rsi/pda-warden.png b/Resources/Textures/Objects/Devices/pda.rsi/pda-warden.png index 0eff588698..c830d5aff1 100644 Binary files a/Resources/Textures/Objects/Devices/pda.rsi/pda-warden.png and b/Resources/Textures/Objects/Devices/pda.rsi/pda-warden.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idbrigmedic.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idbrigmedic.png index 1f64eb4845..e56c6796f3 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idbrigmedic.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idbrigmedic.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/iddetective.png b/Resources/Textures/Objects/Misc/id_cards.rsi/iddetective.png index 3b749d582a..d945444ed5 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/iddetective.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/iddetective.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idintern-cadet.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idintern-cadet.png index cebf46fade..9da61e50c8 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idintern-cadet.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idintern-cadet.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idsecurityofficer.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idsecurityofficer.png index 6456d64439..9aa835043d 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idsecurityofficer.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idsecurityofficer.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idseniorofficer.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idseniorofficer.png index f3a87d6fa4..c1761db3a9 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idseniorofficer.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idseniorofficer.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/idwarden.png b/Resources/Textures/Objects/Misc/id_cards.rsi/idwarden.png index 0b4086478c..c855dfcaca 100644 Binary files a/Resources/Textures/Objects/Misc/id_cards.rsi/idwarden.png and b/Resources/Textures/Objects/Misc/id_cards.rsi/idwarden.png differ diff --git a/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json b/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json index b892491e0f..1a4e749323 100644 --- a/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/id_cards.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github), pirate made by brainfood1183 (github), idadmin made by Arimah (github), idvisitor by IProduceWidgets (Github), idintern-service by spanky-spanky (Github) | service icons darkened by frobnic8 (Discord and Github), wizard and idwizard by ScarKy0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/d917f4c2a088419d5c3aec7656b7ff8cebd1822e idcluwne made by brainfood1183 (github) for ss14, idbrigmedic made by PuroSlavKing (Github), pirate made by brainfood1183 (github), idadmin made by Arimah (github), idvisitor by IProduceWidgets (Github), idintern-service by spanky-spanky (Github) | service icons darkened by frobnic8 (Discord and Github), wizard and idwizard by ScarKy0, idbrigmedic, idintern-cadet, iddetective, idsecurityofficer, idseniorofficer, and idwarden made Green by notquitehadouken for april fools SS14.", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Misc/monkeycube.rsi/box_moproach.png b/Resources/Textures/Objects/Misc/monkeycube.rsi/box_moproach.png new file mode 100644 index 0000000000..90e9c918aa Binary files /dev/null and b/Resources/Textures/Objects/Misc/monkeycube.rsi/box_moproach.png differ diff --git a/Resources/Textures/Objects/Misc/monkeycube.rsi/meta.json b/Resources/Textures/Objects/Misc/monkeycube.rsi/meta.json index 8520a51e1b..bddb896eb8 100644 --- a/Resources/Textures/Objects/Misc/monkeycube.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/monkeycube.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi. box_kobold, box_variant and wrapper_kobold are edited versions of the raw sprites by Ubaser.", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/9c980cb9bc84d07b1c210c5447798af525185f80/icons/obj/food.dmi. box_kobold, box_variant and wrapper_kobold are edited versions of the raw sprites by Ubaser. box_moproach is hue changed version of box by lzk228", "size": { "x": 32, "y": 32 @@ -16,6 +16,9 @@ { "name": "box_variant" }, + { + "name": "box_moproach" + }, { "name": "cube" }, diff --git a/Resources/Textures/Objects/Specific/Janitorial/janitorial.rsi/meta.json b/Resources/Textures/Objects/Specific/Janitorial/janitorial.rsi/meta.json index 4f7a1e7772..442981faa5 100644 --- a/Resources/Textures/Objects/Specific/Janitorial/janitorial.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Janitorial/janitorial.rsi/meta.json @@ -16,6 +16,9 @@ { "name": "mopbucket" }, + { + "name": "mopbucket_alive" + }, { "name": "mopbucket_water-1" }, diff --git a/Resources/Textures/Objects/Specific/Janitorial/janitorial.rsi/mopbucket_alive.png b/Resources/Textures/Objects/Specific/Janitorial/janitorial.rsi/mopbucket_alive.png new file mode 100644 index 0000000000..1503bf46f9 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Janitorial/janitorial.rsi/mopbucket_alive.png differ diff --git a/Resources/Textures/Objects/Specific/Mining/salvage_shuttle.rsi/icon.png b/Resources/Textures/Objects/Specific/Mining/salvage_shuttle.rsi/icon.png new file mode 100644 index 0000000000..c2285d4f72 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Mining/salvage_shuttle.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Mining/salvage_shuttle.rsi/meta.json b/Resources/Textures/Objects/Specific/Mining/salvage_shuttle.rsi/meta.json new file mode 100644 index 0000000000..e2aa5d75df --- /dev/null +++ b/Resources/Textures/Objects/Specific/Mining/salvage_shuttle.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Decraised render of reclaimer shuttle", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "icon" + } + ] + } diff --git a/Resources/Textures/Objects/Weapons/Melee/stunbaton.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/stunbaton.rsi/meta.json index fc15bfadef..454657fc85 100644 --- a/Resources/Textures/Objects/Weapons/Melee/stunbaton.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/stunbaton.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d", + "copyright": "Taken from vgstation at https://github.com/vgstation-coders/vgstation13/commit/1cdfb0230cc96d0ba751fa002d04f8aa2f25ad7d , sun baton variations by Velken", "size": { "x": 32, "y": 32 @@ -98,6 +98,80 @@ 0.1 ] ] + }, + { + "name": "stunbaton_on_sun", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "on-inhand-left-sun", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "on-inhand-right-sun", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] } ] } diff --git a/Resources/Textures/Objects/Weapons/Melee/stunbaton.rsi/on-inhand-left-sun.png b/Resources/Textures/Objects/Weapons/Melee/stunbaton.rsi/on-inhand-left-sun.png new file mode 100644 index 0000000000..2acbe4714b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/stunbaton.rsi/on-inhand-left-sun.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/stunbaton.rsi/on-inhand-right-sun.png b/Resources/Textures/Objects/Weapons/Melee/stunbaton.rsi/on-inhand-right-sun.png new file mode 100644 index 0000000000..f846c15e00 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/stunbaton.rsi/on-inhand-right-sun.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/stunbaton.rsi/stunbaton_on_sun.png b/Resources/Textures/Objects/Weapons/Melee/stunbaton.rsi/stunbaton_on_sun.png new file mode 100644 index 0000000000..b9fd63473e Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/stunbaton.rsi/stunbaton_on_sun.png differ diff --git a/Resources/Textures/Structures/Machines/techfab.rsi/meta.json b/Resources/Textures/Structures/Machines/techfab.rsi/meta.json index 7530b9322a..79e9daf10d 100644 --- a/Resources/Textures/Structures/Machines/techfab.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/techfab.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "made by EmoGarbage, ammo state made by AjexRose and modified by Emo garbage", + "copyright": "made by EmoGarbage, ammo state made by AjexRose and modified by Emo garbage, sec.png made Green by notquitehadouken for april fools SS14.", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/techfab.rsi/sec.png b/Resources/Textures/Structures/Machines/techfab.rsi/sec.png index c045c69396..d9a7480c3b 100644 Binary files a/Resources/Textures/Structures/Machines/techfab.rsi/sec.png and b/Resources/Textures/Structures/Machines/techfab.rsi/sec.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/armory.png b/Resources/Textures/Structures/Storage/closet.rsi/armory.png index 5744c176e3..a10f77c122 100644 Binary files a/Resources/Textures/Structures/Storage/closet.rsi/armory.png and b/Resources/Textures/Structures/Storage/closet.rsi/armory.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/armory_door.png b/Resources/Textures/Structures/Storage/closet.rsi/armory_door.png index 73837efd90..7f4820def8 100644 Binary files a/Resources/Textures/Structures/Storage/closet.rsi/armory_door.png and b/Resources/Textures/Structures/Storage/closet.rsi/armory_door.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/armory_open.png b/Resources/Textures/Structures/Storage/closet.rsi/armory_open.png index f50ff803b0..ff16cdda88 100644 Binary files a/Resources/Textures/Structures/Storage/closet.rsi/armory_open.png and b/Resources/Textures/Structures/Storage/closet.rsi/armory_open.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/brigmedic.png b/Resources/Textures/Structures/Storage/closet.rsi/brigmedic.png index 3946b284e6..c2f852ea8f 100644 Binary files a/Resources/Textures/Structures/Storage/closet.rsi/brigmedic.png and b/Resources/Textures/Structures/Storage/closet.rsi/brigmedic.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/brigmedic_door.png b/Resources/Textures/Structures/Storage/closet.rsi/brigmedic_door.png index 0534af870c..8aa7e38815 100644 Binary files a/Resources/Textures/Structures/Storage/closet.rsi/brigmedic_door.png and b/Resources/Textures/Structures/Storage/closet.rsi/brigmedic_door.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/hos.png b/Resources/Textures/Structures/Storage/closet.rsi/hos.png index 644a4845bd..5c66cf9f8e 100644 Binary files a/Resources/Textures/Structures/Storage/closet.rsi/hos.png and b/Resources/Textures/Structures/Storage/closet.rsi/hos.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/hos_door.png b/Resources/Textures/Structures/Storage/closet.rsi/hos_door.png index d742eefa36..f8d99d38a6 100644 Binary files a/Resources/Textures/Structures/Storage/closet.rsi/hos_door.png and b/Resources/Textures/Structures/Storage/closet.rsi/hos_door.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/hos_open.png b/Resources/Textures/Structures/Storage/closet.rsi/hos_open.png index 18682e6c64..01a0d73734 100644 Binary files a/Resources/Textures/Structures/Storage/closet.rsi/hos_open.png and b/Resources/Textures/Structures/Storage/closet.rsi/hos_open.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/meta.json b/Resources/Textures/Structures/Storage/closet.rsi/meta.json index 5600268fde..3d5cab9d12 100644 --- a/Resources/Textures/Structures/Storage/closet.rsi/meta.json +++ b/Resources/Textures/Structures/Storage/closet.rsi/meta.json @@ -4,7 +4,7 @@ "x": 32, "y": 32 }, - "copyright": "Taken from tgstation, brigmedic locker is a resprited CMO locker by PuroSlavKing (Github), n2 sprites based on fire and emergency sprites", + "copyright": "Taken from tgstation, brigmedic locker is a resprited CMO locker by PuroSlavKing (Github), n2 sprites based on fire and emergency sprites, and armory, armory_door, armory_open, brigmedic, brigmedic_door, hos, hos_door, hos_open, sec, sec_door, sec_open, warden, warden_door, and warden_open made Green by notquitehadouken for april fools SS14.", "license": "CC-BY-SA-3.0", "states": [ { diff --git a/Resources/Textures/Structures/Storage/closet.rsi/sec.png b/Resources/Textures/Structures/Storage/closet.rsi/sec.png index f27757cf7c..bc58f11fea 100644 Binary files a/Resources/Textures/Structures/Storage/closet.rsi/sec.png and b/Resources/Textures/Structures/Storage/closet.rsi/sec.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/sec_door.png b/Resources/Textures/Structures/Storage/closet.rsi/sec_door.png index 82c6467a31..f3b17fbb5d 100644 Binary files a/Resources/Textures/Structures/Storage/closet.rsi/sec_door.png and b/Resources/Textures/Structures/Storage/closet.rsi/sec_door.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/sec_open.png b/Resources/Textures/Structures/Storage/closet.rsi/sec_open.png index f50ff803b0..ff16cdda88 100644 Binary files a/Resources/Textures/Structures/Storage/closet.rsi/sec_open.png and b/Resources/Textures/Structures/Storage/closet.rsi/sec_open.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/warden.png b/Resources/Textures/Structures/Storage/closet.rsi/warden.png index 08a9fb29e7..2e7bbe0e3a 100644 Binary files a/Resources/Textures/Structures/Storage/closet.rsi/warden.png and b/Resources/Textures/Structures/Storage/closet.rsi/warden.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/warden_door.png b/Resources/Textures/Structures/Storage/closet.rsi/warden_door.png index f5efa69d80..333e07902c 100644 Binary files a/Resources/Textures/Structures/Storage/closet.rsi/warden_door.png and b/Resources/Textures/Structures/Storage/closet.rsi/warden_door.png differ diff --git a/Resources/Textures/Structures/Storage/closet.rsi/warden_open.png b/Resources/Textures/Structures/Storage/closet.rsi/warden_open.png index f50ff803b0..ff16cdda88 100644 Binary files a/Resources/Textures/Structures/Storage/closet.rsi/warden_open.png and b/Resources/Textures/Structures/Storage/closet.rsi/warden_open.png differ diff --git a/Resources/migration.yml b/Resources/migration.yml index 9353a882fc..6f5f833f55 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -586,3 +586,7 @@ PaxChemistryBottle: ChemistryBottlePax MuteToxinChemistryBottle: ChemistryBottleMuteToxin LeadChemistryBottle: ChemistryBottleLead ToxinChemistryBottle: ChemistryBottleToxin + +# 2025-03-28 +MopBucket: MopBucketSpawner +MopBucketFull: MopBucketSpawner