diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 305e95715ab..aec1330fbf8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,6 +23,25 @@ jobs: - uses: actions/checkout@v3.6.0 with: submodules: 'recursive' + + # Corvax-Secrets-Start + - name: Setup secrets + env: + SSH_KEY: ${{ secrets.SECRETS_PRIVATE_KEY }} + if: ${{ env.SSH_KEY != '' }} + run: | + mkdir ~/.ssh + echo "${{ secrets.SECRETS_PRIVATE_KEY }}" > ~/.ssh/id_rsa + chmod 600 ~/.ssh/id_rsa + echo "HOST *" > ~/.ssh/config + echo "StrictHostKeyChecking no" >> ~/.ssh/config + git clone git@github.com:corvax-nexus/secrets.git Secrets + cp -R Secrets/Resources/Prototypes Resources/Prototypes/CorvaxSecrets + cp -R Secrets/Resources/ServerPrototypes Resources/Prototypes/CorvaxSecretsServer + cp -R Secrets/Resources/Locale Resources/Locale/ru-RU/corvax-secrets + cp -R Secrets/Resources/Textures Resources/Textures/CorvaxSecrets + # Corvax-Secrets-End + - name: Setup .NET Core uses: actions/setup-dotnet@v3.2.0 with: diff --git a/Content.Client/ADT/Overlays/Shaders/MonochromacyOverlay.cs b/Content.Client/ADT/Overlays/Shaders/MonochromacyOverlay.cs new file mode 100644 index 00000000000..d4cc8a443bd --- /dev/null +++ b/Content.Client/ADT/Overlays/Shaders/MonochromacyOverlay.cs @@ -0,0 +1,46 @@ +// Simple Station + +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Enums; +using Robust.Shared.Prototypes; +using Content.Shared.ADT.Traits; +using Matrix3x2 = System.Numerics.Matrix3x2; + +namespace Content.Client.ADT.Overlays +{ + public sealed partial class MonochromacyOverlay : Overlay + { + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] IEntityManager _entityManager = default!; + + + public override bool RequestScreenTexture => true; + public override OverlaySpace Space => OverlaySpace.WorldSpace; + private readonly ShaderInstance _greyscaleShader; + + public MonochromacyOverlay() + { + IoCManager.InjectDependencies(this); + _greyscaleShader = _prototypeManager.Index("GreyscaleFullscreen").InstanceUnique(); + } + + protected override void Draw(in OverlayDrawArgs args) + { + if (ScreenTexture == null) return; + if (_playerManager.LocalPlayer?.ControlledEntity is not { Valid: true } player) return; + if (!_entityManager.HasComponent(player)) return; + + _greyscaleShader?.SetParameter("SCREEN_TEXTURE", ScreenTexture); + + + var worldHandle = args.WorldHandle; + var viewport = args.WorldBounds; + worldHandle.SetTransform(Matrix3x2.Identity); + worldHandle.UseShader(_greyscaleShader); + worldHandle.DrawRect(viewport, Color.White); + worldHandle.UseShader(null); + } + } +} diff --git a/Content.Client/ADT/Overlays/Shaders/StaticOverlay.cs b/Content.Client/ADT/Overlays/Shaders/StaticOverlay.cs new file mode 100644 index 00000000000..d95707e810b --- /dev/null +++ b/Content.Client/ADT/Overlays/Shaders/StaticOverlay.cs @@ -0,0 +1,93 @@ +using Content.Shared.ADT.Silicon.Components; +using Content.Shared.ADT.Silicon.Systems; +using Content.Shared.StatusEffect; +using Robust.Client.GameObjects; +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Enums; +using Robust.Shared.Prototypes; +using Robust.Shared.Timing; + + +namespace Content.Client.ADT.Overlays.Shaders; + +public sealed class StaticOverlay : Overlay +{ + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IPrototypeManager _prototypeManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + + public override OverlaySpace Space => OverlaySpace.WorldSpace; + public override bool RequestScreenTexture => true; + private readonly ShaderInstance _staticShader; + + private (TimeSpan, TimeSpan)? _time; + private float? _fullTimeLeft; + private float? _curTimeLeft; + + public float MixAmount = 0; + + public StaticOverlay() + { + IoCManager.InjectDependencies(this); + _staticShader = _prototypeManager.Index("SeeingStatic").InstanceUnique(); + } + + protected override void FrameUpdate(FrameEventArgs args) + { + var playerEntity = _playerManager.LocalPlayer?.ControlledEntity; + + if (playerEntity == null) + return; + + if (!_entityManager.TryGetComponent(playerEntity, out var staticComp) + || !_entityManager.TryGetComponent(playerEntity, out var statusComp)) + return; + + var status = _entityManager.EntitySysManager.GetEntitySystem(); + + if (playerEntity == null || statusComp == null) + return; + + if (!status.TryGetTime(playerEntity.Value, SharedSeeingStaticSystem.StaticKey, out var timeTemp, statusComp)) + return; + + if (_time != timeTemp) // Resets the shader if the times change. This should factor in wheather it's a reset, or a increase, but I have a lot of cough syrup in me, so TODO. + { + _time = timeTemp; + _fullTimeLeft = null; + _curTimeLeft = null; + } + + _fullTimeLeft ??= (float) (timeTemp.Value.Item2 - timeTemp.Value.Item1).TotalSeconds; + _curTimeLeft ??= _fullTimeLeft; + + _curTimeLeft -= args.DeltaSeconds; + + MixAmount = Math.Clamp(_curTimeLeft.Value / _fullTimeLeft.Value * staticComp.Multiplier, 0, 1); + } + + protected override bool BeforeDraw(in OverlayDrawArgs args) + { + if (!_entityManager.TryGetComponent(_playerManager.LocalPlayer?.ControlledEntity, out EyeComponent? eyeComp)) + return false; + + if (args.Viewport.Eye != eyeComp.Eye) + return false; + + return MixAmount > 0; + } + + protected override void Draw(in OverlayDrawArgs args) + { + if (ScreenTexture == null) + return; + + var handle = args.WorldHandle; + _staticShader.SetParameter("SCREEN_TEXTURE", ScreenTexture); + _staticShader.SetParameter("mixAmount", MixAmount); + handle.UseShader(_staticShader); + handle.DrawRect(args.WorldBounds, Color.White); + handle.UseShader(null); + } +} diff --git a/Content.Client/ADT/Overlays/Systems/MonochromacySystem.cs b/Content.Client/ADT/Overlays/Systems/MonochromacySystem.cs new file mode 100644 index 00000000000..2b6a57389f9 --- /dev/null +++ b/Content.Client/ADT/Overlays/Systems/MonochromacySystem.cs @@ -0,0 +1,56 @@ +// Simple Station + +using Robust.Client.GameObjects; +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Network; +using Content.Shared.ADT.Traits; +using Robust.Shared.Player; + +namespace Content.Client.ADT.Overlays; +public sealed class MonochromacySystem : EntitySystem +{ + [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly IOverlayManager _overlayMan = default!; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly IEntityManager _entityManager = default!; + + private MonochromacyOverlay _overlay = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMonochromacyStartup); + SubscribeLocalEvent(OnMonochromacyShutdown); + + SubscribeLocalEvent(OnPlayerAttached); + SubscribeLocalEvent(OnPlayerDetached); + + _overlay = new(); + } + + private void OnMonochromacyStartup(EntityUid uid, MonochromacyComponent component, ComponentStartup args) + { + if (_player.LocalPlayer?.ControlledEntity == uid) + _overlayMan.AddOverlay(_overlay); + } + + private void OnMonochromacyShutdown(EntityUid uid, MonochromacyComponent component, ComponentShutdown args) + { + if (_player.LocalPlayer?.ControlledEntity == uid) + { + _overlayMan.RemoveOverlay(_overlay); + } + } + + private void OnPlayerAttached(EntityUid uid, MonochromacyComponent component, PlayerAttachedEvent args) + { + _overlayMan.AddOverlay(_overlay); + } + + private void OnPlayerDetached(EntityUid uid, MonochromacyComponent component, PlayerDetachedEvent args) + { + _overlayMan.RemoveOverlay(_overlay); + } +} diff --git a/Content.Client/ADT/Overlays/Systems/SeeingStaticSystem.cs b/Content.Client/ADT/Overlays/Systems/SeeingStaticSystem.cs new file mode 100644 index 00000000000..b6744f3dff1 --- /dev/null +++ b/Content.Client/ADT/Overlays/Systems/SeeingStaticSystem.cs @@ -0,0 +1,57 @@ +using Content.Client.ADT.Overlays.Shaders; +using Content.Shared.ADT.Silicon.Components; +using Robust.Client.Graphics; +using Robust.Client.Player; +using Robust.Shared.Player; + +namespace Content.Client.ADT.Overlays; + +/// +/// System to handle the SeeingStatic overlay. +/// +public sealed class SeeingStaticSystem : EntitySystem +{ + [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly IOverlayManager _overlayMan = default!; + + private StaticOverlay _overlay = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnInit); + SubscribeLocalEvent(OnShutdown); + + SubscribeLocalEvent(OnPlayerAttached); + SubscribeLocalEvent(OnPlayerDetached); + + _overlay = new(); + } + + private void OnPlayerAttached(EntityUid uid, SeeingStaticComponent component, LocalPlayerAttachedEvent args) + { + _overlayMan.AddOverlay(_overlay); + } + + private void OnPlayerDetached(EntityUid uid, SeeingStaticComponent component, LocalPlayerDetachedEvent args) + { + _overlay.MixAmount = 0; + _overlayMan.RemoveOverlay(_overlay); + } + + private void OnInit(EntityUid uid, SeeingStaticComponent component, ComponentInit args) + { + if (_player.LocalPlayer?.ControlledEntity == uid) + _overlayMan.AddOverlay(_overlay); + } + + private void OnShutdown(EntityUid uid, SeeingStaticComponent component, ComponentShutdown args) + { + if (_player.LocalPlayer?.ControlledEntity == uid) + { + _overlay.MixAmount = 0; + _overlayMan.RemoveOverlay(_overlay); + } + } +} diff --git a/Content.Client/ADT/RPD/AlignRPDConstruction.cs b/Content.Client/ADT/RPD/AlignRPDConstruction.cs new file mode 100644 index 00000000000..6b97e796a1b --- /dev/null +++ b/Content.Client/ADT/RPD/AlignRPDConstruction.cs @@ -0,0 +1,117 @@ +using System.Numerics; +using Content.Client.Gameplay; +using Content.Shared.Hands.Components; +using Content.Shared.Interaction; +using Content.Shared.ADT.RPD.Components; +using Content.Shared.ADT.RPD.Systems; +using Robust.Client.Placement; +using Robust.Client.Player; +using Robust.Client.State; +using Robust.Shared.Map; +using Robust.Shared.Map.Components; + +namespace Content.Client.ADT.RPD; + +public sealed class AlignRPDConstruction : PlacementMode +{ + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly IMapManager _mapManager = default!; + private readonly SharedMapSystem _mapSystem; + private readonly RPDSystem _rpdSystem; + private readonly SharedTransformSystem _transformSystem; + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly IStateManager _stateManager = default!; + + private const float SearchBoxSize = 2f; + private const float PlaceColorBaseAlpha = 0.5f; + + private EntityCoordinates _unalignedMouseCoords = default; + + /// + /// This placement mode is not on the engine because it is content specific (i.e., for the RPD) + /// + public AlignRPDConstruction(PlacementManager pMan) : base(pMan) + { + IoCManager.InjectDependencies(this); + _mapSystem = _entityManager.System(); + _rpdSystem = _entityManager.System(); + _transformSystem = _entityManager.System(); + + ValidPlaceColor = ValidPlaceColor.WithAlpha(PlaceColorBaseAlpha); + } + + public override void AlignPlacementMode(ScreenCoordinates mouseScreen) + { + _unalignedMouseCoords = ScreenToCursorGrid(mouseScreen); + MouseCoords = _unalignedMouseCoords.AlignWithClosestGridTile(SearchBoxSize, _entityManager, _mapManager); + + var gridId = MouseCoords.GetGridUid(_entityManager); + + if (!_entityManager.TryGetComponent(gridId, out var mapGrid)) + return; + + CurrentTile = _mapSystem.GetTileRef(gridId.Value, mapGrid, MouseCoords); + + float tileSize = mapGrid.TileSize; + GridDistancing = tileSize; + + if (pManager.CurrentPermission!.IsTile) + { + MouseCoords = new EntityCoordinates(MouseCoords.EntityId, new Vector2(CurrentTile.X + tileSize / 2, + CurrentTile.Y + tileSize / 2)); + } + else + { + MouseCoords = new EntityCoordinates(MouseCoords.EntityId, new Vector2(CurrentTile.X + tileSize / 2 + pManager.PlacementOffset.X, + CurrentTile.Y + tileSize / 2 + pManager.PlacementOffset.Y)); + } + } + + public override bool IsValidPosition(EntityCoordinates position) + { + var player = _playerManager.LocalSession?.AttachedEntity; + + // If the destination is out of interaction range, set the placer alpha to zero + if (!_entityManager.TryGetComponent(player, out var xform)) + return false; + + if (!xform.Coordinates.InRange(_entityManager, _transformSystem, position, SharedInteractionSystem.InteractionRange)) + { + InvalidPlaceColor = InvalidPlaceColor.WithAlpha(0); + return false; + } + + // Otherwise restore the alpha value + else + { + InvalidPlaceColor = InvalidPlaceColor.WithAlpha(PlaceColorBaseAlpha); + } + + // Determine if player is carrying an RPD in their active hand + if (!_entityManager.TryGetComponent(player, out var hands)) + return false; + + var heldEntity = hands.ActiveHand?.HeldEntity; + + if (!_entityManager.TryGetComponent(heldEntity, out var rpd)) + return false; + + // Retrieve the map grid data for the position + if (!_rpdSystem.TryGetMapGridData(position, out var mapGridData)) + return false; + + // Determine if the user is hovering over a target + var currentState = _stateManager.CurrentState; + + if (currentState is not GameplayStateBase screen) + return false; + + var target = screen.GetClickedEntity(_unalignedMouseCoords.ToMap(_entityManager, _transformSystem)); + + // Determine if the RPD operation is valid or not + if (!_rpdSystem.IsRPDOperationStillValid(heldEntity.Value, rpd, mapGridData.Value, target, player.Value, false)) + return false; + + return true; + } +} diff --git a/Content.Client/ADT/RPD/RPDConstructionGhostSystem.cs b/Content.Client/ADT/RPD/RPDConstructionGhostSystem.cs new file mode 100644 index 00000000000..d1efe754fd8 --- /dev/null +++ b/Content.Client/ADT/RPD/RPDConstructionGhostSystem.cs @@ -0,0 +1,77 @@ +using Content.Shared.Hands.Components; +using Content.Shared.Interaction; +using Content.Shared.ADT.RPD; +using Content.Shared.ADT.RPD.Components; +using Content.Shared.ADT.RPD.Systems; +using Robust.Client.Placement; +using Robust.Client.Player; +using Robust.Shared.Enums; + +namespace Content.Client.ADT.RPD; + +public sealed class RPDConstructionGhostSystem : EntitySystem +{ + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly RPDSystem _rpdSystem = default!; + [Dependency] private readonly IPlacementManager _placementManager = default!; + + private string _placementMode = typeof(AlignRPDConstruction).Name; + private Direction _placementDirection = default; + + public override void Update(float frameTime) + { + base.Update(frameTime); + + // Get current placer data + var placerEntity = _placementManager.CurrentPermission?.MobUid; + var placerProto = _placementManager.CurrentPermission?.EntityType; + var placerIsRPD = HasComp(placerEntity); + + // Exit if erasing or the current placer is not an RPD (build mode is active) + if (_placementManager.Eraser || (placerEntity != null && !placerIsRPD)) + return; + + // Determine if player is carrying an RPD in their active hand + var player = _playerManager.LocalSession?.AttachedEntity; + + if (!TryComp(player, out var hands)) + return; + + var heldEntity = hands.ActiveHand?.HeldEntity; + + if (!TryComp(heldEntity, out var rpd)) + { + // If the player was holding an RPD, but is no longer, cancel placement + if (placerIsRPD) + _placementManager.Clear(); + + return; + } + + // Update the direction the RPD prototype based on the placer direction + if (_placementDirection != _placementManager.Direction) + { + _placementDirection = _placementManager.Direction; + RaiseNetworkEvent(new RPDConstructionGhostRotationEvent(GetNetEntity(heldEntity.Value), _placementDirection)); + } + + // If the placer has not changed, exit + _rpdSystem.UpdateCachedPrototype(heldEntity.Value, rpd); + + if (heldEntity == placerEntity && rpd.CachedPrototype.Prototype == placerProto) + return; + + // Create a new placer + var newObjInfo = new PlacementInformation + { + MobUid = heldEntity.Value, + PlacementOption = _placementMode, + EntityType = rpd.CachedPrototype.Prototype, + Range = (int) Math.Ceiling(SharedInteractionSystem.InteractionRange), + UseEditorContext = false, + }; + + _placementManager.Clear(); + _placementManager.BeginPlacing(newObjInfo); + } +} diff --git a/Content.Client/ADT/RPD/RPDMenu.xaml b/Content.Client/ADT/RPD/RPDMenu.xaml new file mode 100644 index 00000000000..66a72c6d60a --- /dev/null +++ b/Content.Client/ADT/RPD/RPDMenu.xaml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Content.Client/ADT/RPD/RPDMenu.xaml.cs b/Content.Client/ADT/RPD/RPDMenu.xaml.cs new file mode 100644 index 00000000000..16ee6a9a842 --- /dev/null +++ b/Content.Client/ADT/RPD/RPDMenu.xaml.cs @@ -0,0 +1,167 @@ +using Content.Client.UserInterface.Controls; +using Content.Shared.Popups; +using Content.Shared.ADT.RPD; +using Content.Shared.ADT.RPD.Components; +using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; +using Robust.Client.Player; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Prototypes; +using System.Numerics; + +namespace Content.Client.ADT.RPD; + +[GenerateTypedNameReferences] +public sealed partial class RPDMenu : RadialMenu +{ + [Dependency] private readonly EntityManager _entManager = default!; + [Dependency] private readonly IPrototypeManager _protoManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + + private readonly SpriteSystem _spriteSystem; + private readonly SharedPopupSystem _popup; + + public event Action>? SendRPDSystemMessageAction; + + private EntityUid _owner; + + public RPDMenu(EntityUid owner, RPDMenuBoundUserInterface bui) + { + IoCManager.InjectDependencies(this); + RobustXamlLoader.Load(this); + + _spriteSystem = _entManager.System(); + _popup = _entManager.System(); + + _owner = owner; + + var main = FindControl("Main"); + + if (main == null) + return; + + if (!_entManager.TryGetComponent(owner, out var rpd)) + return; + + foreach (var protoId in rpd.AvailablePrototypes) + { + if (!_protoManager.TryIndex(protoId, out var proto)) + continue; + + if (proto.Mode == RpdMode.Invalid) + continue; + + var parent = FindControl(proto.Category); + + if (parent == null) + continue; + + var tooltip = Loc.GetString(proto.SetName); + + tooltip = OopsConcat(char.ToUpper(tooltip[0]).ToString(), tooltip.Remove(0, 1)); + + var button = new RPDMenuButton() + { + StyleClasses = { "RadialMenuButton" }, + SetSize = new Vector2(64f, 64f), + ToolTip = tooltip, + ProtoId = protoId, + }; + + if (proto.Sprite != null) + { + var tex = new TextureRect() + { + VerticalAlignment = VAlignment.Center, + HorizontalAlignment = HAlignment.Center, + Texture = _spriteSystem.Frame0(proto.Sprite), + TextureScale = new Vector2(2f, 2f), + }; + + button.AddChild(tex); + } + + parent.AddChild(button); + + foreach (var child in main.Children) + { + var castChild = child as RadialMenuTextureButton; + + if (castChild is not RadialMenuTextureButton) + continue; + + if (castChild.TargetLayer == proto.Category) + { + castChild.Visible = true; + break; + } + } + } + + foreach (var child in Children) + AddRPDMenuButtonOnClickActions(child); + + OnChildAdded += AddRPDMenuButtonOnClickActions; + + SendRPDSystemMessageAction += bui.SendRPDSystemMessage; + } + + private static string OopsConcat(string a, string b) + { + return a + b; + } + + private void AddRPDMenuButtonOnClickActions(Control control) + { + var radialContainer = control as RadialContainer; + + if (radialContainer == null) + return; + + foreach (var child in radialContainer.Children) + { + var castChild = child as RPDMenuButton; + + if (castChild == null) + continue; + + castChild.OnButtonUp += _ => + { + SendRPDSystemMessageAction?.Invoke(castChild.ProtoId); + + if (_playerManager.LocalSession?.AttachedEntity != null && + _protoManager.TryIndex(castChild.ProtoId, out var proto)) + { + var msg = Loc.GetString("rpd-component-change-mode", ("mode", Loc.GetString(proto.SetName))); + + if (proto.Mode == RpdMode.ConstructObject) + { + var name = Loc.GetString(proto.SetName); + + if (proto.Prototype != null && + _protoManager.TryIndex(proto.Prototype, out var entProto)) + name = entProto.Name; + + msg = Loc.GetString("rpd-component-change-build-mode", ("name", name)); + } + + _popup.PopupClient(msg, _owner, _playerManager.LocalSession.AttachedEntity); + } + + Close(); + }; + } + } +} + +public sealed class RPDMenuButton : RadialMenuTextureButton +{ + public ProtoId ProtoId { get; set; } + + public RPDMenuButton() + { + + } +} diff --git a/Content.Client/ADT/RPD/RPDMenuBoundUserInterface.cs b/Content.Client/ADT/RPD/RPDMenuBoundUserInterface.cs new file mode 100644 index 00000000000..62a8a6f3732 --- /dev/null +++ b/Content.Client/ADT/RPD/RPDMenuBoundUserInterface.cs @@ -0,0 +1,49 @@ +using Content.Shared.ADT.RPD; +using Content.Shared.ADT.RPD.Components; +using JetBrains.Annotations; +using Robust.Client.Graphics; +using Robust.Client.Input; +using Robust.Shared.Prototypes; + +namespace Content.Client.ADT.RPD; + +[UsedImplicitly] +public sealed class RPDMenuBoundUserInterface : BoundUserInterface +{ + [Dependency] private readonly IClyde _displayManager = default!; + [Dependency] private readonly IInputManager _inputManager = default!; + + private RPDMenu? _menu; + + public RPDMenuBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + IoCManager.InjectDependencies(this); + } + + protected override void Open() + { + base.Open(); + + _menu = new(Owner, this); + _menu.OnClose += Close; + + // Open the menu, centered on the mouse + var vpSize = _displayManager.ScreenSize; + _menu.OpenCenteredAt(_inputManager.MouseScreenPosition.Position / vpSize); + } + + public void SendRPDSystemMessage(ProtoId protoId) + { + // A predicted message cannot be used here as the RPD UI is closed immediately + // after this message is sent, which will stop the server from receiving it + SendMessage(new RPDSystemMessage(protoId)); + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + if (!disposing) return; + + _menu?.Dispose(); + } +} diff --git a/Content.Server/ADT/Damage/Components/DamageOnTriggerComponent.cs b/Content.Server/ADT/Damage/Components/DamageOnTriggerComponent.cs new file mode 100644 index 00000000000..f5cef74457e --- /dev/null +++ b/Content.Server/ADT/Damage/Components/DamageOnTriggerComponent.cs @@ -0,0 +1,12 @@ +using Content.Shared.Damage; + +namespace Content.Server.Damage.Components; + +[RegisterComponent] +public sealed partial class DamageOnTriggerComponent : Component +{ + [DataField("ignoreResistances")] public bool IgnoreResistances; + + [DataField("damage", required: true)] + public DamageSpecifier Damage = default!; +} diff --git a/Content.Server/ADT/Damage/Systems/DamageOnTriggerSystem.cs b/Content.Server/ADT/Damage/Systems/DamageOnTriggerSystem.cs new file mode 100644 index 00000000000..5f2fd141926 --- /dev/null +++ b/Content.Server/ADT/Damage/Systems/DamageOnTriggerSystem.cs @@ -0,0 +1,26 @@ +// Simple Station + +using Content.Server.Damage.Components; +using Content.Server.Explosion.EntitySystems; +using Content.Shared.Damage; +using Content.Shared.StepTrigger.Systems; + +namespace Content.Server.Damage.Systems +{ + // System for damage that occurs on specific trigger, towards the entity.. + public sealed class DamageOnTriggerSystem : EntitySystem + { + [Dependency] private readonly DamageableSystem _damageableSystem = default!; + + public override void Initialize() + { + base.Initialize(); + SubscribeLocalEvent(DamageOnTrigger); + } + + private void DamageOnTrigger(EntityUid uid, DamageOnTriggerComponent component, TriggerEvent args) + { + _damageableSystem.TryChangeDamage(uid, component.Damage, component.IgnoreResistances); + } + } +} diff --git a/Content.Server/ADT/Power/Components/BatteryDrinkerComponent.cs b/Content.Server/ADT/Power/Components/BatteryDrinkerComponent.cs new file mode 100644 index 00000000000..3d8e5c0eec7 --- /dev/null +++ b/Content.Server/ADT/Power/Components/BatteryDrinkerComponent.cs @@ -0,0 +1,33 @@ +// Simple Station + +namespace Content.Server.ADT.Power; + +[RegisterComponent] +public sealed partial class BatteryDrinkerComponent : Component +{ + /// + /// Is this drinker allowed to drink batteries not tagged as ? + /// + [DataField("drinkAll"), ViewVariables(VVAccess.ReadWrite)] + public bool DrinkAll = false; + + /// + /// How long it takes to drink from a battery, in seconds. + /// Is multiplied by the source. + /// + [DataField("drinkSpeed"), ViewVariables(VVAccess.ReadWrite)] + public float DrinkSpeed = 1.5f; + + /// + /// The multiplier for the amount of power to attempt to drink. + /// Default amount is 1000 + /// + [DataField("drinkMultiplier"), ViewVariables(VVAccess.ReadWrite)] + public float DrinkMultiplier = 5f; + + /// + /// The multiplier for how long it takes to drink a non-source battery, if is true. + /// + [DataField("drinkAllMultiplier"), ViewVariables(VVAccess.ReadWrite)] + public float DrinkAllMultiplier = 2.5f; +} diff --git a/Content.Server/ADT/Power/Components/SiliconEmitSoundOnDrainedComponent.cs b/Content.Server/ADT/Power/Components/SiliconEmitSoundOnDrainedComponent.cs new file mode 100644 index 00000000000..326d9ff29a2 --- /dev/null +++ b/Content.Server/ADT/Power/Components/SiliconEmitSoundOnDrainedComponent.cs @@ -0,0 +1,26 @@ +// Simple Station + +using System.ComponentModel.DataAnnotations; +using Robust.Shared.Audio; +using Content.Server.Sound.Components; + +namespace Content.Server.ADT.Silicon; + +/// +/// Applies a to a Silicon when its battery is drained, and removes it when it's not. +/// +[RegisterComponent] +public sealed partial class SiliconEmitSoundOnDrainedComponent : Component +{ + [DataField("sound"), Required] + public SoundSpecifier Sound = default!; + + [DataField("interval")] + public float Interval = 8f; + + [DataField("playChance")] + public float PlayChance = 1f; + + [DataField("popUp")] + public string? PopUp; +} diff --git a/Content.Server/ADT/Power/Systems/BatteryDrinkerSystem.cs b/Content.Server/ADT/Power/Systems/BatteryDrinkerSystem.cs new file mode 100644 index 00000000000..d00cad93cf3 --- /dev/null +++ b/Content.Server/ADT/Power/Systems/BatteryDrinkerSystem.cs @@ -0,0 +1,149 @@ +// Simple Station + +using System.Diagnostics.CodeAnalysis; +using Content.Server.Power.Components; +using Content.Shared.Containers.ItemSlots; +using Content.Shared.DoAfter; +using Content.Shared.PowerCell.Components; +using Content.Shared.ADT.Silicon; +using Content.Shared.Verbs; +using Robust.Shared.Utility; +using Content.Server.ADT.Silicon.Charge; +using Content.Server.Power.EntitySystems; +using Content.Server.Popups; + +namespace Content.Server.ADT.Power; + +public sealed class BatteryDrinkerSystem : EntitySystem +{ + [Dependency] private readonly IEntityManager _entityManager = default!; + [Dependency] private readonly ItemSlotsSystem _slots = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + //[Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly SiliconChargeSystem _silicon = default!; + [Dependency] private readonly PopupSystem _popup = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(AddAltVerb); + + SubscribeLocalEvent(OnDoAfter); + } + + private void AddAltVerb(EntityUid uid, BatteryComponent batteryComponent, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + if (!TryComp(args.User, out var drinkerComp) || + !TestDrinkableBattery(uid, drinkerComp) || + !TryGetFillableBattery(args.User, out var drinkerBattery, out _)) + return; + + AlternativeVerb verb = new() + { + Act = () => DrinkBattery(uid, args.User, drinkerComp), + Text = Loc.GetString("battery-drinker-verb-drink"), + Icon = new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/VerbIcons/smite.svg.192dpi.png")), + }; + + args.Verbs.Add(verb); + } + + private bool TestDrinkableBattery(EntityUid target, BatteryDrinkerComponent drinkerComp) + { + if (!drinkerComp.DrinkAll && !HasComp(target)) + return false; + + return true; + } + + private bool TryGetFillableBattery(EntityUid uid, [NotNullWhen(true)] out BatteryComponent? battery, [NotNullWhen(true)] out EntityUid batteryUid) + { + if (_silicon.TryGetSiliconBattery(uid, out battery, out batteryUid)) + return true; + + if (TryComp(uid, out battery)) + return true; + + if (TryComp(uid, out var powerCellSlot) && + _slots.TryGetSlot(uid, powerCellSlot.CellSlotId, out var slot) && + slot.Item != null && + TryComp(slot.Item.Value, out battery)) + { + batteryUid = slot.Item.Value; + return true; + } + + return false; + } + + private void DrinkBattery(EntityUid target, EntityUid user, BatteryDrinkerComponent drinkerComp) + { + var doAfterTime = drinkerComp.DrinkSpeed; + + if (TryComp(target, out var sourceComp)) + doAfterTime *= sourceComp.DrinkSpeedMulti; + else + doAfterTime *= drinkerComp.DrinkAllMultiplier; + var args = new DoAfterArgs(_entityManager, user, doAfterTime, new BatteryDrinkerDoAfterEvent(), user, target) //modern.df + //var args = new DoAfterArgs(user, doAfterTime, new BatteryDrinkerDoAfterEvent(), user, target) // TODO: Make this doafter loop, once we merge Upstream. + { + BreakOnDamage = true, + BreakOnMove = true, + Broadcast = false, + DistanceThreshold = 1.35f, + RequireCanInteract = true, + CancelDuplicate = false + }; + + _doAfter.TryStartDoAfter(args); + } + + private void OnDoAfter(EntityUid uid, BatteryDrinkerComponent drinkerComp, DoAfterEvent args) + { + if (args.Cancelled || args.Target == null) + return; + + var source = args.Target.Value; + var drinker = uid; + var sourceBattery = Comp(source); + + TryGetFillableBattery(drinker, out var drinkerBattery, out var drinkerBatteryUid); + + TryComp(source, out var sourceComp); + + DebugTools.AssertNotNull(drinkerBattery); + + if (drinkerBattery == null) + return; + + var amountToDrink = drinkerComp.DrinkMultiplier * 1000; + + amountToDrink = MathF.Min(amountToDrink, sourceBattery.CurrentCharge); + amountToDrink = MathF.Min(amountToDrink, drinkerBattery.MaxCharge - drinkerBattery.CurrentCharge); + + if (sourceComp != null && sourceComp.MaxAmount > 0) + amountToDrink = MathF.Min(amountToDrink, (float) sourceComp.MaxAmount); + + if (amountToDrink <= 0) + { + _popup.PopupEntity(Loc.GetString("battery-drinker-empty", ("target", source)), drinker, drinker); + return; + } + + if (_battery.TryUseCharge(source, amountToDrink, sourceBattery)) + _battery.SetCharge(drinkerBatteryUid, drinkerBattery.CurrentCharge + amountToDrink, drinkerBattery); + else + { + _battery.SetCharge(drinker, sourceBattery.CurrentCharge + drinkerBattery.CurrentCharge, drinkerBattery); + _battery.SetCharge(source, 0, sourceBattery); + } + + //if (sourceComp != null && sourceComp.DrinkSound != null) + // _audio.PlayPvs(sourceComp.DrinkSound, source); + } +} diff --git a/Content.Server/ADT/Power/Systems/BatteryElectrocuteChargeSystem.cs b/Content.Server/ADT/Power/Systems/BatteryElectrocuteChargeSystem.cs new file mode 100644 index 00000000000..57b285d8478 --- /dev/null +++ b/Content.Server/ADT/Power/Systems/BatteryElectrocuteChargeSystem.cs @@ -0,0 +1,40 @@ +// Simple Station + +using Content.Server.Electrocution; +using Content.Server.Popups; +using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; +using Content.Shared.Electrocution; +using Robust.Shared.Random; +using Robust.Shared.Timing; + +namespace Content.Server.ADT.Power.Systems; + +public sealed class BatteryElectrocuteChargeSystem : EntitySystem +{ + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly BatterySystem _battery = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnElectrocuted); + } + + private void OnElectrocuted(EntityUid uid, BatteryComponent battery, ElectrocutedEvent args) + { + if (args.ShockDamage == null || args.ShockDamage <= 0) + return; + + var damagePerWatt = ElectrocutionSystem.ElectrifiedDamagePerWatt * 2; + + var damage = args.ShockDamage.Value * args.SiemensCoefficient; + var charge = Math.Min(damage / damagePerWatt, battery.MaxCharge * 0.25f) * _random.NextFloat(0.75f, 1.25f); + + _battery.SetCharge(uid, battery.CurrentCharge + charge); + + _popup.PopupEntity(Loc.GetString("battery-electrocute-charge"), uid, uid); + } +} diff --git a/Content.Server/ADT/Power/Systems/SiliconEmitSoundOnDrainedSystem.cs b/Content.Server/ADT/Power/Systems/SiliconEmitSoundOnDrainedSystem.cs new file mode 100644 index 00000000000..6be0a089cff --- /dev/null +++ b/Content.Server/ADT/Power/Systems/SiliconEmitSoundOnDrainedSystem.cs @@ -0,0 +1,44 @@ +// Simple Station + +using Content.Server.ADT.Silicon.Death; +using Content.Shared.Sound.Components; +using Content.Shared.Mobs; +using Robust.Shared.Timing; +//using Content.Shared.SimpleStation14.Silicon.Systems; + +namespace Content.Server.ADT.Silicon; + +public sealed class EmitSoundOnCritSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _gameTiming = default!; + public override void Initialize() + { + SubscribeLocalEvent(OnDeath); + SubscribeLocalEvent(OnAlive); + SubscribeLocalEvent(OnStateChange); + } + + private void OnDeath(EntityUid uid, SiliconEmitSoundOnDrainedComponent component, SiliconChargeDeathEvent args) + { + var spamComp = EnsureComp(uid); + + // spamComp.Accumulator = 0f; + spamComp.MinInterval = TimeSpan.FromSeconds(component.Interval); + spamComp.MaxInterval = TimeSpan.FromSeconds(component.Interval); + spamComp.PopUp = component.PopUp; + spamComp.Enabled = true; + spamComp.Sound = component.Sound; + } + + private void OnAlive(EntityUid uid, SiliconEmitSoundOnDrainedComponent component, SiliconChargeAliveEvent args) + { + RemComp(uid); // This component is bad and I don't feel like making a janky work around because of it. + // If you give something the SiliconEmitSoundOnDrainedComponent, know that it can't have the SpamEmitSoundComponent, and any other systems that play with it will just be broken. + } + + public void OnStateChange(EntityUid uid, SiliconEmitSoundOnDrainedComponent component, MobStateChangedEvent args) + { + if (args.NewMobState == MobState.Dead) + RemComp(uid); + } +} diff --git a/Content.Server/ADT/Radio/IntrinsicRadioKeySystem.cs b/Content.Server/ADT/Radio/IntrinsicRadioKeySystem.cs new file mode 100644 index 00000000000..eaaa3610237 --- /dev/null +++ b/Content.Server/ADT/Radio/IntrinsicRadioKeySystem.cs @@ -0,0 +1,34 @@ +// Simple Station + +using Content.Server.Radio.Components; +using Content.Shared.Radio; +using Content.Shared.Radio.Components; + +namespace Content.Server.ADT.Radio; + +public sealed class IntrinsicRadioKeySystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnTransmitterChannelsChanged); + SubscribeLocalEvent(OnReceiverChannelsChanged); + } + + private void OnTransmitterChannelsChanged(EntityUid uid, IntrinsicRadioTransmitterComponent component, EncryptionChannelsChangedEvent args) + { + UpdateChannels(uid, args.Component, ref component.Channels); + } + + private void OnReceiverChannelsChanged(EntityUid uid, ActiveRadioComponent component, EncryptionChannelsChangedEvent args) + { + UpdateChannels(uid, args.Component, ref component.Channels); + } + + private void UpdateChannels(EntityUid _, EncryptionKeyHolderComponent keyHolderComp, ref HashSet channels) + { + channels.Clear(); + channels.UnionWith(keyHolderComp.Channels); + } +} diff --git a/Content.Server/ADT/Silicon/Charge/Components/BatteryDrinkerSourceComponent.cs b/Content.Server/ADT/Silicon/Charge/Components/BatteryDrinkerSourceComponent.cs new file mode 100644 index 00000000000..9b9234d4913 --- /dev/null +++ b/Content.Server/ADT/Silicon/Charge/Components/BatteryDrinkerSourceComponent.cs @@ -0,0 +1,29 @@ +// Simple Station + +using Robust.Shared.Audio; + +namespace Content.Server.ADT.Silicon.Charge; + +[RegisterComponent] +public sealed partial class BatteryDrinkerSourceComponent : Component +{ + /// + /// The max amount of power this source can provide in one sip. + /// No limit if null. + /// + [DataField("maxAmount"), ViewVariables(VVAccess.ReadWrite)] + public int? MaxAmount = null; + + /// + /// The multiplier for the drink speed. + /// + [DataField("drinkSpeedMulti"), ViewVariables(VVAccess.ReadWrite)] + public float DrinkSpeedMulti = 1f; + + /// + /// The sound to play when the battery gets drunk from. + /// Can be null. + /// + [DataField("drinkSound")] + public SoundSpecifier? DrinkSound = null; +} diff --git a/Content.Server/ADT/Silicon/Charge/Components/SiliconDownOnDeadComponent.cs b/Content.Server/ADT/Silicon/Charge/Components/SiliconDownOnDeadComponent.cs new file mode 100644 index 00000000000..352cbb36ce9 --- /dev/null +++ b/Content.Server/ADT/Silicon/Charge/Components/SiliconDownOnDeadComponent.cs @@ -0,0 +1,36 @@ +// Simple Station + +using System.Threading; + +namespace Content.Server.ADT.Silicon.Death; + +/// +/// Marks a Silicon as becoming incapacitated when they run out of battery charge. +/// +/// +/// Uses the Silicon System's charge states to do so, so make sure they're a battery powered Silicon. +/// +[RegisterComponent] +public sealed partial class SiliconDownOnDeadComponent : Component +{ + /// + /// Cancellation token for the silicon's wake timer. + /// + public CancellationTokenSource? WakeToken { get; set; } + + /// + /// The time it will take for a Silicon to "wake up" after leaving the Dead state, in seconds. + /// + /// + /// If not zero, the Silicon will not actually come back to life until after this much time has passed. + /// This can prevent 'flickering' between the two states. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("deadBuffer")] + public float DeadBuffer { get; set; } = 2.5f; + + /// + /// Is this Silicon currently dead? + /// + public bool Dead { get; set; } = false; +} diff --git a/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargeDeathSystem.cs b/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargeDeathSystem.cs new file mode 100644 index 00000000000..119ff3e96d9 --- /dev/null +++ b/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargeDeathSystem.cs @@ -0,0 +1,140 @@ +// Simple Station + +using Content.Server.Power.Components; +using Content.Shared.ADT.Silicon.Systems; +// using Content.Server.Bed.Sleep; - nixsilvam: ну предположим это не нужно вообще теперь +using Content.Shared.Bed.Sleep; +// using Content.Server.Sound.Components; - nixsilvam: это в целом не используется тут, хз зачем оно было +using Content.Server.ADT.Silicon.Charge; +using System.Threading; +using Timer = Robust.Shared.Timing.Timer; + +namespace Content.Server.ADT.Silicon.Death; + +public sealed class SiliconDeathSystem : EntitySystem +{ + [Dependency] private readonly SleepingSystem _sleep = default!; + [Dependency] private readonly SiliconChargeSystem _silicon = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnSiliconChargeStateUpdate); + } + + private void OnSiliconChargeStateUpdate(EntityUid uid, SiliconDownOnDeadComponent siliconDeadComp, SiliconChargeStateUpdateEvent args) + { + _silicon.TryGetSiliconBattery(uid, out var batteryComp, out var batteryUid); + + if (args.ChargeState == ChargeState.Dead && siliconDeadComp.Dead) + { + siliconDeadComp.WakeToken?.Cancel(); + return; + } + + if (args.ChargeState == ChargeState.Dead && !siliconDeadComp.Dead) + SiliconDead(uid, siliconDeadComp, batteryComp, batteryUid); + else if (args.ChargeState != ChargeState.Dead && siliconDeadComp.Dead) + { + if (siliconDeadComp.DeadBuffer > 0) + { + siliconDeadComp.WakeToken?.Cancel(); // This should never matter, but better safe than loose timers. + + var wakeToken = new CancellationTokenSource(); + siliconDeadComp.WakeToken = wakeToken; + + // If battery is dead, wait the dead buffer time and then wake it up. + Timer.Spawn(TimeSpan.FromSeconds(siliconDeadComp.DeadBuffer), () => + { + if (wakeToken.IsCancellationRequested) + return; + + SiliconUnDead(uid, siliconDeadComp, batteryComp, batteryUid); + }, wakeToken.Token); + } + else + SiliconUnDead(uid, siliconDeadComp, batteryComp, batteryUid); + } + } + + private void SiliconDead(EntityUid uid, SiliconDownOnDeadComponent siliconDeadComp, BatteryComponent? batteryComp, EntityUid batteryUid) + { + var deadEvent = new SiliconChargeDyingEvent(uid, batteryComp, batteryUid); + RaiseLocalEvent(uid, deadEvent); + + if (deadEvent.Cancelled) + return; + + EntityManager.EnsureComponent(uid); + EntityManager.EnsureComponent(uid); + + siliconDeadComp.Dead = true; + + RaiseLocalEvent(uid, new SiliconChargeDeathEvent(uid, batteryComp, batteryUid)); + } + + private void SiliconUnDead(EntityUid uid, SiliconDownOnDeadComponent siliconDeadComp, BatteryComponent? batteryComp, EntityUid batteryUid) + { + _sleep.TryWaking(uid, true, null); + + siliconDeadComp.Dead = false; + + RaiseLocalEvent(uid, new SiliconChargeAliveEvent(uid, batteryComp, batteryUid)); + } +} + +/// +/// A cancellable event raised when a Silicon is about to go down due to charge. +/// +/// +/// This probably shouldn't be modified unless you intend to fill the Silicon's battery, +/// as otherwise it'll just be triggered again next frame. +/// +public sealed class SiliconChargeDyingEvent : CancellableEntityEventArgs +{ + public EntityUid SiliconUid { get; } + public BatteryComponent? BatteryComp { get; } + public EntityUid BatteryUid { get; } + + public SiliconChargeDyingEvent(EntityUid siliconUid, BatteryComponent? batteryComp, EntityUid batteryUid) + { + SiliconUid = siliconUid; + BatteryComp = batteryComp; + BatteryUid = batteryUid; + } +} + +/// +/// An event raised after a Silicon has gone down due to charge. +/// +public sealed class SiliconChargeDeathEvent : EntityEventArgs +{ + public EntityUid SiliconUid { get; } + public BatteryComponent? BatteryComp { get; } + public EntityUid BatteryUid { get; } + + public SiliconChargeDeathEvent(EntityUid siliconUid, BatteryComponent? batteryComp, EntityUid batteryUid) + { + SiliconUid = siliconUid; + BatteryComp = batteryComp; + BatteryUid = batteryUid; + } +} + +/// +/// An event raised after a Silicon has reawoken due to an increase in charge. +/// +public sealed class SiliconChargeAliveEvent : EntityEventArgs +{ + public EntityUid SiliconUid { get; } + public BatteryComponent? BatteryComp { get; } + public EntityUid BatteryUid { get; } + + public SiliconChargeAliveEvent(EntityUid siliconUid, BatteryComponent? batteryComp, EntityUid batteryUid) + { + SiliconUid = siliconUid; + BatteryComp = batteryComp; + BatteryUid = batteryUid; + } +} diff --git a/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargeSystem.cs b/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargeSystem.cs new file mode 100644 index 00000000000..e607618e0ea --- /dev/null +++ b/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargeSystem.cs @@ -0,0 +1,215 @@ +// Simple Station + +using Robust.Shared.Random; +using Content.Shared.ADT.Silicon.Components; +using Content.Server.Power.Components; +using Content.Shared.Mobs.Systems; +using Content.Server.Temperature.Components; +using Content.Server.Atmos.Components; +using Content.Server.Atmos.EntitySystems; +using Content.Server.Popups; +using Content.Shared.Popups; +using Content.Shared.ADT.Silicon.Systems; +using Content.Shared.Movement.Systems; +using Content.Server.Body.Components; +using Content.Server.Power.EntitySystems; +using Robust.Shared.Containers; +using System.Diagnostics.CodeAnalysis; +using Robust.Shared.Timing; +using Content.Shared.ADT.CCVar; +using Robust.Shared.Configuration; +using Robust.Shared.Utility; + +namespace Content.Server.ADT.Silicon.Charge; + +public sealed class SiliconChargeSystem : EntitySystem +{ + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly MobStateSystem _mobState = default!; + [Dependency] private readonly FlammableSystem _flammable = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly MovementSpeedModifierSystem _moveMod = default!; + [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly IConfigurationManager _config = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnSiliconStartup); + } + + public bool TryGetSiliconBattery(EntityUid silicon, [NotNullWhen(true)] out BatteryComponent? batteryComp, out EntityUid batteryUid) + { + batteryComp = null; + batteryUid = silicon; + + if (!EntityManager.TryGetComponent(silicon, out SiliconComponent? siliconComp)) + return false; + + /// этот блок по идее можно пропустить ибо у нас визардовские борги + // if (siliconComp.BatteryContainer != null && + // siliconComp.BatteryContainer.ContainedEntities.Count > 0 && + // TryComp(siliconComp.BatteryContainer.ContainedEntities[0], out batteryComp)) + // { + // batteryUid = siliconComp.BatteryContainer.ContainedEntities[0]; + // return true; + // } + + if (TryComp(silicon, out batteryComp)) + return true; + + return false; + } + + private void OnSiliconStartup(EntityUid uid, SiliconComponent component, ComponentStartup args) + { + if (component.BatterySlot == null) + return; + /// этот блок по идее можно пропустить ибо у нас визардовские борги + // var container = _container.GetContainer(uid, component.BatterySlot); + // component.BatteryContainer = container; + + if (component.EntityType.GetType() != typeof(SiliconType)) + DebugTools.Assert("SiliconComponent.EntityType is not a SiliconType enum."); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + // For each siliconComp entity with a battery component, drain their charge. + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var silicon, out var siliconComp)) + { + if (!siliconComp.BatteryPowered) + continue; + + // Check if the Silicon is an NPC, and if so, follow the delay as specified in the CVAR. + if (siliconComp.EntityType.Equals(SiliconType.Npc)) + { + var updateTime = _config.GetCVar(SimpleStationCCVars.SiliconNpcUpdateTime); + if (_timing.CurTime - siliconComp.LastDrainTime < TimeSpan.FromSeconds(updateTime)) + continue; + + siliconComp.LastDrainTime = _timing.CurTime; + } + + // If you can't find a battery, set the indicator and skip it. + if (!TryGetSiliconBattery(silicon, out var batteryComp, out var battery)) + { + UpdateChargeState(battery, ChargeState.Invalid, siliconComp); + continue; + } + + // If the silicon is dead, skip it. + if (_mobState.IsDead(silicon)) + continue; + + var drainRate = siliconComp.DrainPerSecond; + + // All multipliers will be subtracted by 1, and then added together, and then multiplied by the drain rate. This is then added to the base drain rate. + // This is to stop exponential increases, while still allowing for less-than-one multipliers. + var drainRateFinalAddi = 0f; + + // TODO: Devise a method of adding multis where other systems can alter the drain rate. + // Maybe use something similar to refreshmovespeedmodifiers, where it's stored in the component. + // Maybe it doesn't matter, and stuff should just use static drain? + if (!siliconComp.EntityType.Equals(SiliconType.Npc)) // Don't bother checking heat if it's an NPC. It's a waste of time, and it'd be delayed due to the update time. + drainRateFinalAddi += SiliconHeatEffects(silicon, frameTime) - 1; // This will need to be changed at some point if we allow external batteries, since the heat of the Silicon might not be applicable. + + // Ensures that the drain rate is at least 10% of normal, + // and would allow at least 4 minutes of life with a max charge, to prevent cheese. + drainRate += Math.Clamp(drainRateFinalAddi, drainRate * -0.9f, batteryComp.MaxCharge / 240); + + // Drain the battery. + _battery.UseCharge(battery, frameTime * drainRate, batteryComp); + + // Figure out the current state of the Silicon. + var chargePercent = batteryComp.CurrentCharge / batteryComp.MaxCharge; + + var currentState = chargePercent switch + { + var x when x > siliconComp.ChargeThresholdMid => ChargeState.Full, + var x when x > siliconComp.ChargeThresholdLow => ChargeState.Mid, + var x when x > siliconComp.ChargeThresholdCritical => ChargeState.Low, + var x when x > 0 || siliconComp.ChargeThresholdCritical == 0 => ChargeState.Critical, + _ => ChargeState.Dead, + }; + + UpdateChargeState(silicon, currentState, siliconComp); + } + } + + /// + /// Checks if anything needs to be updated, and updates it. + /// + public void UpdateChargeState(EntityUid uid, ChargeState state, SiliconComponent component) + { + if (component.ChargeState == state) + return; + + component.ChargeState = state; + + RaiseLocalEvent(uid, new SiliconChargeStateUpdateEvent(state)); + + _moveMod.RefreshMovementSpeedModifiers(uid); + } + + private float SiliconHeatEffects(EntityUid silicon, float frameTime) + { + if (!EntityManager.TryGetComponent(silicon, out var temperComp) || + !EntityManager.TryGetComponent(silicon, out var thermalComp)) + { + return 0; + } + + var siliconComp = EntityManager.GetComponent(silicon); + + // If the Silicon is hot, drain the battery faster, if it's cold, drain it slower, capped. + var upperThresh = thermalComp.NormalBodyTemperature + thermalComp.ThermalRegulationTemperatureThreshold; + var upperThreshHalf = thermalComp.NormalBodyTemperature + thermalComp.ThermalRegulationTemperatureThreshold * 0.5f; + + // Check if the silicon is in a hot environment. + if (temperComp.CurrentTemperature > upperThreshHalf) + { + // Divide the current temp by the max comfortable temp capped to 4, then add that to the multiplier. + var hotTempMulti = Math.Min(temperComp.CurrentTemperature / upperThreshHalf, 4); + + // If the silicon is hot enough, it has a chance to catch fire. + + siliconComp.OverheatAccumulator += frameTime; + if (siliconComp.OverheatAccumulator >= 5) + { + siliconComp.OverheatAccumulator -= 5; + + if (EntityManager.TryGetComponent(silicon, out var flamComp) && + temperComp.CurrentTemperature > temperComp.HeatDamageThreshold && + !flamComp.OnFire && + _random.Prob(Math.Clamp(temperComp.CurrentTemperature / (upperThresh * 5), 0.001f, 0.9f))) + { + //_flammable.Ignite(silicon, flamComp); // починить Ignite + } + else if ((flamComp == null || !flamComp.OnFire) && + _random.Prob(Math.Clamp(temperComp.CurrentTemperature / upperThresh, 0.001f, 0.75f))) + { + _popup.PopupEntity(Loc.GetString("silicon-overheating"), silicon, silicon, PopupType.SmallCaution); + } + } + + return hotTempMulti; + } + + // Check if the silicon is in a cold environment. + if (temperComp.CurrentTemperature < thermalComp.NormalBodyTemperature) + { + var coldTempMulti = 0.5f + temperComp.CurrentTemperature / thermalComp.NormalBodyTemperature * 0.5f; + + return coldTempMulti; + } + + return 0; + } +} diff --git a/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargerSystem.cs b/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargerSystem.cs new file mode 100644 index 00000000000..c15efebabc5 --- /dev/null +++ b/Content.Server/ADT/Silicon/Charge/Systems/SiliconChargerSystem.cs @@ -0,0 +1,386 @@ +// Simple Station + +using System.Linq; +using Content.Server.Construction; +using Content.Server.Explosion.Components; +using Content.Server.Explosion.EntitySystems; +using Content.Server.Hands.Systems; +using Content.Server.Popups; +using Content.Server.Power.Components; +using Content.Server.Power.EntitySystems; +using Content.Server.Storage.Components; +using Content.Shared.Containers.ItemSlots; +using Content.Shared.Damage; +using Content.Shared.Damage.Prototypes; +using Content.Shared.Hands.Components; +using Content.Shared.Interaction.Components; +using Content.Shared.Inventory; +using Content.Shared.Popups; +using Content.Shared.Power; +using Content.Shared.PowerCell.Components; +using Content.Shared.ADT.Silicon; +using Content.Shared.StepTrigger.Components; +using Content.Shared.Storage.Components; +using Robust.Shared.Physics.Events; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; +using Robust.Shared.Timing; + +namespace Content.Server.ADT.Silicon.Charge; + +public sealed class SiliconChargerSystem : EntitySystem +{ + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly ItemSlotsSystem _itemSlots = default!; + [Dependency] private readonly DamageableSystem _damageable = default!; + [Dependency] private readonly IPrototypeManager _prototypes = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly HandsSystem _hands = default!; + [Dependency] private readonly InventorySystem _inventory = default!; + [Dependency] private readonly ExplosionSystem _explosion = default!; + //[Dependency] private readonly SharedSiliconChargerSystem _sharedCharger = default!; + [Dependency] private readonly BatterySystem _battery = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly SiliconChargeSystem _silicon = default!; + + public override void Initialize() + { + base.Initialize(); + + // SubscribeLocalEvent(OnRefreshParts); + // SubscribeLocalEvent(OnExamineParts); + + SubscribeLocalEvent(OnStartCollide); + SubscribeLocalEvent(OnEndCollide); + + SubscribeLocalEvent(OnChargerShutdown); + + SubscribeLocalEvent(HandleStateOpen); + SubscribeLocalEvent(HandleStateClose); + } + + // TODO: Potentially refactor this so it chaches all found entities upon the storage being closed, or stepped on, etc. + // Perhaps a variable for it? Open chargers like the pad wouldn't update to things picked up, but it seems silly to redo it each frame for closed ones. + private void HandleStateOpen(EntityUid uid, SiliconChargerComponent component, ref StorageAfterOpenEvent _) + { + UpdateState(uid, component); + } + + /// + private void HandleStateClose(EntityUid uid, SiliconChargerComponent component, ref StorageAfterCloseEvent _) + { + UpdateState(uid, component); + } + + public override void Update(float frameTime) + { + base.Update(frameTime); + + #region Entity Storage Chargers + // Check for any chargers with the EntityStorageComponent. + var entityStorageQuery = EntityQueryEnumerator(); + while (entityStorageQuery.MoveNext(out var uid, out var chargerComp, out var entStorage)) + { + var wasActive = chargerComp.Active; + chargerComp.Active = false; + + if (TryComp(uid, out var powerComp) && !powerComp.Powered) + { + if (chargerComp.Active != wasActive) + UpdateState(uid, chargerComp); + + continue; + } + + foreach (var entity in entStorage.Contents.ContainedEntities) + { + chargerComp.Active = true; + + var chargeRate = chargerComp.ChargeMulti * frameTime * 10; + + HandleChargingEntity(entity, chargeRate, chargerComp, uid, frameTime); + + // Heat up the air in the charger. + if (entStorage.Airtight) + { + var curTemp = entStorage.Air.Temperature; + + entStorage.Air.Temperature += curTemp < chargerComp.TargetTemp ? frameTime * chargerComp.ChargeMulti / 100 : 0; + } + } + + if (chargerComp.Active != wasActive) + UpdateState(uid, chargerComp); + } + #endregion Entity Storage Chargers + + #region Step Trigger Chargers + // Check for any chargers with the StepTriggerComponent. + var stepQuery = EntityQueryEnumerator(); + while (stepQuery.MoveNext(out var uid, out var chargerComp, out _)) + { + if (chargerComp.PresentEntities.Count == 0 || + TryComp(uid, out var powerComp) && !powerComp.Powered) + { + if (chargerComp.Active) + { + chargerComp.Active = false; + UpdateState(uid, chargerComp); + } + continue; + } + + if (!chargerComp.Active) + { + chargerComp.Active = true; + UpdateState(uid, chargerComp); + } + + var chargeRate = frameTime * chargerComp.ChargeMulti / chargerComp.PresentEntities.Count; + + foreach (var entity in chargerComp.PresentEntities.ToList()) + { + HandleChargingEntity(entity, chargeRate, chargerComp, uid, frameTime); + } + } + #endregion Step Trigger Chargers + } + + // Cleanup the sound stream when the charger is destroyed. + private void OnChargerShutdown(EntityUid uid, SiliconChargerComponent component, ComponentShutdown args) + { + //component.SoundStream?.Stop(); /// modern.df ipc-locale + } + + /// + /// Handles working out what entities need to have their batteries charged, or be burnt. + /// + private void HandleChargingEntity(EntityUid entity, float chargeRate, SiliconChargerComponent chargerComp, EntityUid chargerUid, float frameTime, bool burn = true) + { + var entitiesToCharge = SearchThroughEntities(entity, burn); + + if (entitiesToCharge.Count == 0) + return; + + chargeRate *= chargerComp.PartsChargeMulti; + + var entitiesToChargeCount = entitiesToCharge.Count; + + foreach (var (entityToCharge, batteryComp) in entitiesToCharge.ToList()) + { + if (batteryComp != null && batteryComp.CurrentCharge >= batteryComp.MaxCharge) + entitiesToChargeCount--; // Remove any full batteries from the count, so they don't impact charge rate. + } + + // Now we charge the entities we found. + chargeRate /= entitiesToChargeCount; + + foreach (var (entityToCharge, batteryComp) in entitiesToCharge.ToList()) + { + if (batteryComp != null) + ChargeBattery(entityToCharge, batteryComp, chargeRate, chargerComp, chargerUid); + else if (TryComp(entityToCharge, out var damageComp)) + BurnEntity(entityToCharge, damageComp, frameTime, chargerComp, chargerUid); + } + } + + private List<(EntityUid, BatteryComponent?)> SearchThroughEntities(EntityUid entity, bool burn = true) + { + var entitiesToCharge = new List<(EntityUid, BatteryComponent?)>(); + + // If the given entity is a silicon, charge their respective battery. + if (_silicon.TryGetSiliconBattery(entity, out var siliconBatteryComp, out var siliconBatteryUid)) + { + entitiesToCharge.Add((siliconBatteryUid, siliconBatteryComp)); + } + + // Or if the given entity has a battery, charge it. + else if (!HasComp(entity) && // Should probably be charged by the entity holding it. Might be too small to be safe. + TryComp(entity, out var batteryComp)) + { + entitiesToCharge.Add((entity, batteryComp)); + } + + // Or if the given entity contains a battery, charge it. + else if (!HasComp(entity) && // Should probably be charged by the entity holding it. Might be too small to be safe. + TryComp(entity, out var cellSlotComp) && + _itemSlots.TryGetSlot(entity, cellSlotComp.CellSlotId, out var slot) && + TryComp(slot.Item, out var cellBattComp)) + { + entitiesToCharge.Add((slot.Item.Value, cellBattComp)); + } + + // Or if the given entity is fleshy, burn the fucker. + else if (burn && + TryComp(entity, out var damageComp) && + damageComp.DamageContainerID == "Biological") + { + entitiesToCharge.Add((entity, null)); + } + + // Now the weird part, we check for any inventories the entities contained may have, and run this function on any entities contained, for a recursive charging effect. + if (TryComp(entity, out var handsComp)) + { + foreach (var heldEntity in _hands.EnumerateHeld(entity, handsComp)) + { + entitiesToCharge.AddRange(SearchThroughEntities(heldEntity)); + } + } + if (TryComp(entity, out var inventoryComp)) + { + if (_inventory.TryGetSlots(entity, out var slots)) + { + foreach (var slot in slots) + { + if (_inventory.TryGetSlotEntity(entity, slot.Name, out var slotItem)) + entitiesToCharge.AddRange(SearchThroughEntities(slotItem.Value)); + } + } + } + /// modern.df ipc-locale + /* + if (TryComp(entity, out var storageComp)) + { + foreach (var containedEntity in storageComp.StoredEntities!) + { + entitiesToCharge.AddRange(SearchThroughEntities(containedEntity)); + } + } + */ + if (TryComp(entity, out var entStorage)) + { + foreach (var containedEntity in entStorage.Contents.ContainedEntities) + { + entitiesToCharge.AddRange(SearchThroughEntities(containedEntity)); + } + } + + return entitiesToCharge; + } + + private void ChargeBattery(EntityUid entity, BatteryComponent batteryComp, float chargeRate, SiliconChargerComponent chargerComp, EntityUid chargerUid) + { + // Do some math so a charger never charges a battery from zero to full in less than the minimum time, just for the effect of it. + if (chargerComp.ChargeMulti * 10 > batteryComp.MaxCharge / chargerComp.MinChargeTime) + chargeRate /= chargerComp.ChargeMulti * 10 / (batteryComp.MaxCharge / chargerComp.MinChargeTime); + + if (batteryComp.CurrentCharge + chargeRate < batteryComp.MaxCharge) + _battery.SetCharge(entity, batteryComp.CurrentCharge + chargeRate, batteryComp); + else + _battery.SetCharge(entity, batteryComp.MaxCharge, batteryComp); + + // If the battery is too small, explode it. + if ((batteryComp.MaxCharge - batteryComp.CurrentCharge) * 1.2 + batteryComp.MaxCharge < chargerComp.MinChargeSize) + { + if (TryComp(entity, out var explosiveComp)) + _explosion.TriggerExplosive(entity, explosiveComp); + else + _explosion.QueueExplosion(entity, "Default", batteryComp.MaxCharge / 50, 1.5f, 200, user: chargerUid); + } + } + + private void BurnEntity(EntityUid entity, DamageableComponent damageComp, float frameTime, SiliconChargerComponent chargerComp, EntityUid chargerUid) + { + var damage = new DamageSpecifier(_prototypes.Index(chargerComp.DamageType), frameTime * chargerComp.ChargeMulti / 100); + var damageDealt = _damageable.TryChangeDamage(entity, damage, false, true, damageComp, chargerUid); + + if (damageDealt != null && chargerComp.WarningTime < _timing.CurTime) + { + var popupBurn = Loc.GetString(chargerComp.OverheatString); + _popup.PopupEntity(popupBurn, entity, entity, PopupType.MediumCaution); + + chargerComp.WarningTime = TimeSpan.FromSeconds(_random.Next(3, 7)) + _timing.CurTime; + } + } + + // private void OnRefreshParts(EntityUid uid, SiliconChargerComponent component, RefreshPartsEvent args) + // { + // var chargeMod = args.PartRatings[component.ChargeSpeedPart]; + // var efficiencyMod = args.PartRatings[component.ChargeEfficiencyPart]; + + // component.PartsChargeMulti = chargeMod * component.UpgradePartsMulti; + // // TODO: Variable power draw, with efficiency. + // } + + // private void OnExamineParts(EntityUid uid, SiliconChargerComponent component, UpgradeExamineEvent args) + // { + // args.AddPercentageUpgrade("silicon-charger-chargerate-string", component.PartsChargeMulti); + // // TODO: Variable power draw, with efficiency. + // } + + #region Charger specific + #region Step Trigger Chargers + // When an entity starts colliding with the charger, add it to the list of entities present on the charger if it has the StepTriggerComponent. + private void OnStartCollide(EntityUid uid, SiliconChargerComponent component, ref StartCollideEvent args) + { + if (!HasComp(uid)) + return; + + var target = args.OtherEntity; + + if (component.PresentEntities.Contains(target)) + return; + + if (component.PresentEntities.Count >= component.MaxEntities) + { + _popup.PopupEntity(Loc.GetString("silicon-charger-list-full", ("charger", args.OurEntity)), target, target); + return; + } + + component.PresentEntities.Add(target); + } + + // When an entity stops colliding with the charger, remove it from the list of entities present on the charger. + private void OnEndCollide(EntityUid uid, SiliconChargerComponent component, ref EndCollideEvent args) + { + if (!HasComp(uid)) + return; + + var target = args.OtherEntity; + + if (component.PresentEntities.Contains(target)) + { + component.PresentEntities.Remove(target); + } + } + #endregion Step Trigger Chargers + #endregion Charger specific + + public void UpdateState(EntityUid uid, SiliconChargerComponent? component = null) + { + if (!Resolve(uid, ref component)) + return; + + if (component.Active) + { + _appearance.SetData(uid, PowerDeviceVisuals.VisualState, SiliconChargerVisualState.Charging); + + // If we're in prediction, return since Client doesn't have the information needed to handle this. + // Didn't seem to matter in practice, but probably for the best. + if (_timing.InPrediction) + return; + + //if (component.SoundLoop != null && component.SoundStream == null) + // component.SoundStream = + // _audio.PlayPvs(component.SoundLoop, uid, AudioParams.Default.WithLoop(true).WithMaxDistance(5)); + } + else + { + var state = SiliconChargerVisualState.Normal; + + if (EntityManager.TryGetComponent(uid, out var storageComp) && storageComp.Open) + state = SiliconChargerVisualState.NormalOpen; + + _appearance.SetData(uid, PowerDeviceVisuals.VisualState, state); + + // If we're in prediction, return since Client doesn't have the information needed to handle this. + // Didn't seem to matter in practice, but probably for the best. + if (_timing.InPrediction) + return; + + //component.SoundStream?.Stop(); + //component.SoundStream = null; + } + } +} diff --git a/Content.Server/ADT/Silicon/Systems/SiliconEmpSystem.cs b/Content.Server/ADT/Silicon/Systems/SiliconEmpSystem.cs new file mode 100644 index 00000000000..9c76895e91b --- /dev/null +++ b/Content.Server/ADT/Silicon/Systems/SiliconEmpSystem.cs @@ -0,0 +1,71 @@ +// Simple Station + +using Content.Server.Emp; +using Content.Server.Speech.Muting; +using Content.Server.Stunnable; +using Content.Shared.CombatMode.Pacification; +using Content.Shared.Eye.Blinding.Components; +using Content.Shared.Eye.Blinding.Systems; +using Content.Shared.ADT.Silicon.Components; +using Content.Shared.ADT.Silicon.Systems; +using Content.Shared.Speech.EntitySystems; +using Content.Shared.Speech.Muting; +using Content.Shared.StatusEffect; +using Robust.Shared.Random; + +namespace Content.Server.ADT.Silicon.Systems; + +public sealed class SiliconEmpSystem : EntitySystem +{ + [Dependency] private readonly StatusEffectsSystem _status = default!; + [Dependency] private readonly StunSystem _stun = default!; + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly SharedStutteringSystem _stuttering = default!; + [Dependency] private readonly SharedSlurredSystem _slurredSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnEmpPulse); + } + + private void OnEmpPulse(EntityUid uid, SiliconComponent component, ref EmpPulseEvent args) + { + args.EnergyConsumption *= 0.25f; // EMPs drain a lot of freakin power. + + if (!TryComp(uid, out var statusComp)) + return; + + args.Affected = true; + args.Disabled = true; + + var duration = args.Duration / 1.5; // We divide the duration since EMPs are balanced for structures, not people. + + if (duration.TotalSeconds * 0.25 >= 3) // If the EMP blast is strong enough, we stun them. + // This is mostly to prevent flickering in/out of being stunned. We also cap how long they can be stunned for. + { + _stun.TryParalyze(uid, TimeSpan.FromSeconds(Math.Min(duration.TotalSeconds * 0.25f, 15f)), true, statusComp); + } + + _stun.TrySlowdown(uid, duration, true, _random.NextFloat(0.50f, 0.70f), _random.NextFloat(0.35f, 0.70f), statusComp); + + _status.TryAddStatusEffect(uid, SharedSeeingStaticSystem.StaticKey, duration, true, statusComp); + + if (_random.Prob(0.60f)) + _stuttering.DoStutter(uid, duration * 2, false, statusComp); + else if (_random.Prob(0.80f)) + _slurredSystem.DoSlur(uid, duration * 2, statusComp); + + if (_random.Prob(0.02f)) + _status.TryAddStatusEffect(uid, "Muted", duration * 0.5, true, statusComp); + + if (_random.Prob(0.02f)) + _status.TryAddStatusEffect(uid, TemporaryBlindnessSystem.BlindingStatusEffect, duration * 0.5, true, statusComp); + + if (_random.Prob(0.08f)) + _status.TryAddStatusEffect(uid, "Pacified", duration * 0.5, true, statusComp); + + args.EnergyConsumption = 0; + } +} diff --git a/Content.Server/ADT/Silicon/Systems/SiliconMiscSystem.cs b/Content.Server/ADT/Silicon/Systems/SiliconMiscSystem.cs new file mode 100644 index 00000000000..f4b37888149 --- /dev/null +++ b/Content.Server/ADT/Silicon/Systems/SiliconMiscSystem.cs @@ -0,0 +1,43 @@ +using Content.Shared.ADT.Silicon.Components; +using Content.Shared.Bed.Sleep; +using static Content.Shared.Repairable.SharedRepairableSystem; +using Content.Server.Body.Components; +using Content.Server.Body.Systems; + +namespace Content.Server.ADT.Silicon.Sytstems; + +public sealed class SiliconMiscSystem : EntitySystem +{ + [Dependency] private readonly BloodstreamSystem _blood = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnTryingToSleep); + //SubscribeLocalEvent(OnRepairFinished); + } + + /// + /// Stops Silicons from being capable of sleeping. + /// + /// + /// This is stupid. + /// + private void OnTryingToSleep(EntityUid uid, SiliconComponent component, ref TryingToSleepEvent args) + { + args.Cancelled = true; + } + + /// + /// Ensure Silicons stop bleeding when repaired, if they can bleed. + /// + //private void OnRepairFinished(EntityUid uid, SiliconComponent component, RepairFinishedEvent args) + //{ + // if (TryComp(uid, out var bloodComp)) + // { + // _blood.TryModifyBleedAmount(uid, -bloodComp.BleedAmount, bloodComp); + // } + //} + +} diff --git a/Content.Server/Administration/Commands/SetOutfitCommand.cs b/Content.Server/Administration/Commands/SetOutfitCommand.cs index 15d8d4afb7b..bf3cc79c4ad 100644 --- a/Content.Server/Administration/Commands/SetOutfitCommand.cs +++ b/Content.Server/Administration/Commands/SetOutfitCommand.cs @@ -12,6 +12,9 @@ using Robust.Shared.Console; using Robust.Shared.Player; using Robust.Shared.Prototypes; +using Content.Shared.Radio.Components; // Parkstation-IPC +using Content.Shared.Containers; // Parkstation-IPC +using Robust.Shared.Containers; // Parkstation-IPC namespace Content.Server.Administration.Commands { @@ -127,6 +130,36 @@ public static bool SetOutfit(EntityUid target, string gear, IEntityManager entit } } + // Parkstation-Ipc-Start + // Pretty much copied from StationSpawningSystem.SpawnStartingGear + if (entityManager.TryGetComponent(target, out var keyHolderComp)) + { + var earEquipString = startingGear.GetGear("ears"); + var containerMan = entityManager.System(); + + if (!string.IsNullOrEmpty(earEquipString)) + { + var earEntity = entityManager.SpawnEntity(earEquipString, entityManager.GetComponent(target).Coordinates); + + if (entityManager.TryGetComponent(earEntity, out _) && // I had initially wanted this to spawn the headset, and simply move all the keys over, but the headset didn't seem to have any keys in it when spawned... + entityManager.TryGetComponent(earEntity, out var fillComp) && + fillComp.Containers.TryGetValue(EncryptionKeyHolderComponent.KeyContainerName, out var defaultKeys)) + { + containerMan.CleanContainer(keyHolderComp.KeyContainer); + + foreach (var key in defaultKeys) + { + var keyEntity = entityManager.SpawnEntity(key, entityManager.GetComponent(target).Coordinates); + containerMan.Insert(keyEntity, keyHolderComp.KeyContainer); + //keyHolderComp.KeyContainer.Insert(keyEntity, force: true); + } + } + + entityManager.QueueDeleteEntity(earEntity); + } + } + // Parkstation-Ipc-End + return true; } } diff --git a/Content.Server/Bed/BedSystem.cs b/Content.Server/Bed/BedSystem.cs index a6b61da591f..710b0678a59 100644 --- a/Content.Server/Bed/BedSystem.cs +++ b/Content.Server/Bed/BedSystem.cs @@ -12,6 +12,7 @@ using Content.Shared.Mobs.Systems; using Robust.Shared.Timing; using Robust.Shared.Utility; +using Content.Shared.ADT.Silicon.Components; // Parkstation-IPCs // I shouldn't have to modify this. namespace Content.Server.Bed { @@ -69,7 +70,7 @@ public override void Update(float frameTime) foreach (var healedEntity in strapComponent.BuckledEntities) { - if (_mobStateSystem.IsDead(healedEntity)) + if (_mobStateSystem.IsDead(healedEntity) || HasComp(healedEntity)) // Parkstation-IPCs // I shouldn't have to modify this. continue; var damage = bedComponent.Damage; diff --git a/Content.Server/Electrocution/ElectrocutionSystem.cs b/Content.Server/Electrocution/ElectrocutionSystem.cs index 67e60c9de46..921166f826e 100644 --- a/Content.Server/Electrocution/ElectrocutionSystem.cs +++ b/Content.Server/Electrocution/ElectrocutionSystem.cs @@ -62,6 +62,10 @@ public sealed class ElectrocutionSystem : SharedElectrocutionSystem [ValidatePrototypeId] private const string DamageType = "Shock"; + // Yes, this is absurdly small for a reason. + public const float ElectrifiedDamagePerWatt = 0.0015f; // Parkstation-IPC // This information is allowed to be public, and was needed in BatteryElectrocuteChargeSystem.cs + private const float ElectrifiedScalePerWatt = 1E-6f; + // Multiply and shift the log scale for shock damage. private const float RecursiveDamageMultiplier = 0.75f; private const float RecursiveTimeMultiplier = 0.8f; diff --git a/Content.Server/Emp/EmpSystem.cs b/Content.Server/Emp/EmpSystem.cs index d2ac2caaa96..fa510d6f972 100644 --- a/Content.Server/Emp/EmpSystem.cs +++ b/Content.Server/Emp/EmpSystem.cs @@ -40,11 +40,31 @@ public override void Initialize() /// The duration of the EMP effects. public void EmpPulse(MapCoordinates coordinates, float range, float energyConsumption, float duration) { + /* foreach (var uid in _lookup.GetEntitiesInRange(coordinates, range)) { TryEmpEffects(uid, energyConsumption, duration); } Spawn(EmpPulseEffectPrototype, coordinates); + */ + + ///ADT-Tweak IPC start + foreach (var uid in _lookup.GetEntitiesInRange(coordinates, range)) + { + var ev = new EmpPulseEvent(energyConsumption, false, false, TimeSpan.FromSeconds(duration)); // Parkstation-IPCs + RaiseLocalEvent(uid, ref ev); + if (ev.Affected) + { + Spawn(EmpDisabledEffectPrototype, Transform(uid).Coordinates); + } + if (ev.Disabled) + { + var disabled = EnsureComp(uid); + disabled.DisabledUntil = Timing.CurTime + TimeSpan.FromSeconds(duration); + } + } + Spawn(EmpPulseEffectPrototype, coordinates); + ///ADT-Tweak IPC end } /// @@ -131,13 +151,12 @@ private void OnCameraSetActive(EntityUid uid, EmpDisabledComponent component, re args.Cancelled = true; } - -///ADT ion start + ///ADT ion start private void OnProjectileHit(EntityUid uid, EmpOnCollideComponent component, ref ProjectileHitEvent args) { TryEmpEffects(args.Target, component.EnergyConsumption, component.DisableDuration); } -///ADT ion end + ///ADT ion end } /// @@ -148,7 +167,7 @@ public sealed partial class EmpAttemptEvent : CancellableEntityEventArgs } [ByRefEvent] -public record struct EmpPulseEvent(float EnergyConsumption, bool Affected, bool Disabled, TimeSpan Duration); +public record struct EmpPulseEvent(float EnergyConsumption, bool Affected, bool Disabled, TimeSpan Duration); // Parkstation-IPCs [ByRefEvent] public record struct EmpDisabledRemoved(); diff --git a/Content.Shared/ADT/CCVar/CCVars.cs b/Content.Shared/ADT/CCVar/CCVars.cs new file mode 100644 index 00000000000..02879447e7a --- /dev/null +++ b/Content.Shared/ADT/CCVar/CCVars.cs @@ -0,0 +1,20 @@ +// Simple Station + +using Robust.Shared.Configuration; + +namespace Content.Shared.ADT.CCVar; + +[CVarDefs] +public sealed class SimpleStationCCVars +{ + /* + * Silicons + */ + #region Silicons + /// + /// The amount of time between NPC Silicons draining their battery in seconds. + /// + public static readonly CVarDef SiliconNpcUpdateTime = + CVarDef.Create("silicon.npcupdatetime", 1.5f, CVar.SERVERONLY); + #endregion Silicons +} diff --git a/Content.Shared/ADT/Construction/SharedCanBuildWallOnTopRCDFAPComponent.cs b/Content.Shared/ADT/Construction/SharedCanBuildWallOnTopRCDFAPComponent.cs new file mode 100644 index 00000000000..1f0992be819 --- /dev/null +++ b/Content.Shared/ADT/Construction/SharedCanBuildWallOnTopRCDFAPComponent.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.ADT.Construction +{ + [RegisterComponent] + public sealed partial class SharedCanBuildWallOnTopRPDComponent : Component + { + } +} diff --git a/Content.Shared/ADT/Construction/SharedCanBuildWindowOnTopRCDFAPComponent.cs b/Content.Shared/ADT/Construction/SharedCanBuildWindowOnTopRCDFAPComponent.cs new file mode 100644 index 00000000000..65f094c3bc5 --- /dev/null +++ b/Content.Shared/ADT/Construction/SharedCanBuildWindowOnTopRCDFAPComponent.cs @@ -0,0 +1,7 @@ +namespace Content.Shared.ADT.Construction +{ + [RegisterComponent] + public sealed partial class SharedCanBuildWindowOnTopRPDComponent : Component + { + } +} diff --git a/Content.Shared/ADT/RPD/Components/RPDAmmoComponent.cs b/Content.Shared/ADT/RPD/Components/RPDAmmoComponent.cs new file mode 100644 index 00000000000..cf30e292483 --- /dev/null +++ b/Content.Shared/ADT/RPD/Components/RPDAmmoComponent.cs @@ -0,0 +1,16 @@ +using Content.Shared.ADT.RPD.Systems; +using Robust.Shared.GameStates; + +namespace Content.Shared.ADT.RPD.Components; + +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(RPDAmmoSystem))] +public sealed partial class RPDAmmoComponent : Component +{ + /// + /// How many charges are contained in this ammo cartridge. + /// Can be partially transferred into an RPD, until it is empty then it gets deleted. + /// + [DataField("charges"), ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public int Charges = 130; +} diff --git a/Content.Shared/ADT/RPD/Components/RPDComponent.cs b/Content.Shared/ADT/RPD/Components/RPDComponent.cs new file mode 100644 index 00000000000..69613534fe3 --- /dev/null +++ b/Content.Shared/ADT/RPD/Components/RPDComponent.cs @@ -0,0 +1,72 @@ +using Content.Shared.ADT.RPD.Systems; +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Physics; +using Robust.Shared.Prototypes; + +namespace Content.Shared.ADT.RPD.Components; + +/// +/// Main component for the RPD +/// Optionally uses LimitedChargesComponent. +/// Charges can be refilled with RPD ammo +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(RPDSystem))] +public sealed partial class RPDComponent : Component +{ + /// + /// List of RPD prototypes that the device comes loaded with + /// + [DataField, AutoNetworkedField] + public HashSet> AvailablePrototypes { get; set; } = new(); + + /// + /// Sound that plays when a RPD operation successfully completes + /// + [DataField] + public SoundSpecifier SuccessSound { get; set; } = new SoundPathSpecifier("/Audio/Items/deconstruct.ogg"); + + /// + /// The ProtoId of the currently selected RPD prototype + /// + [DataField, AutoNetworkedField] + public ProtoId ProtoId { get; set; } = "Invalid"; + + /// + /// A cached copy of currently selected RPD prototype + /// + /// + /// If the ProtoId is changed, make sure to update the CachedPrototype as well + /// + [ViewVariables(VVAccess.ReadOnly)] + public RPDPrototype CachedPrototype { get; set; } = default!; + + /// + /// The direction constructed entities will face upon spawning + /// + [DataField, AutoNetworkedField] + public Direction ConstructionDirection + { + get + { + return _constructionDirection; + } + set + { + _constructionDirection = value; + ConstructionTransform = new Transform(new(), _constructionDirection.ToAngle()); + } + } + + private Direction _constructionDirection = Direction.South; + + /// + /// Returns a rotated transform based on the specified ConstructionDirection + /// + /// + /// Contains no position data + /// + [ViewVariables(VVAccess.ReadOnly)] + public Transform ConstructionTransform { get; private set; } = default!; +} diff --git a/Content.Shared/ADT/RPD/Components/RPDDeconstructibleComponent.cs b/Content.Shared/ADT/RPD/Components/RPDDeconstructibleComponent.cs new file mode 100644 index 00000000000..67688bfbe09 --- /dev/null +++ b/Content.Shared/ADT/RPD/Components/RPDDeconstructibleComponent.cs @@ -0,0 +1,34 @@ +using Content.Shared.ADT.RPD.Systems; +using Robust.Shared.GameStates; +using Robust.Shared.Prototypes; + +namespace Content.Shared.ADT.RPD.Components; + +[RegisterComponent, NetworkedComponent] +[Access(typeof(RPDSystem))] +public sealed partial class RPDDeconstructableComponent : Component +{ + /// + /// Number of charges consumed when the deconstruction is completed + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public int Cost = 1; + + /// + /// The length of the deconstruction + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float Delay = 1f; + + /// + /// The visual effect that plays during deconstruction + /// + [DataField("fx"), ViewVariables(VVAccess.ReadWrite)] + public EntProtoId? Effect = null; + + /// + /// Toggles whether this entity is deconstructable or not + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public bool Deconstructable = true; +} diff --git a/Content.Shared/ADT/RPD/RPDEvents.cs b/Content.Shared/ADT/RPD/RPDEvents.cs new file mode 100644 index 00000000000..ed45e22de8a --- /dev/null +++ b/Content.Shared/ADT/RPD/RPDEvents.cs @@ -0,0 +1,34 @@ +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; + +namespace Content.Shared.ADT.RPD; + +[Serializable, NetSerializable] +public sealed class RPDSystemMessage : BoundUserInterfaceMessage +{ + public ProtoId ProtoId; + + public RPDSystemMessage(ProtoId protoId) + { + ProtoId = protoId; + } +} + +[Serializable, NetSerializable] +public sealed class RPDConstructionGhostRotationEvent : EntityEventArgs +{ + public readonly NetEntity NetEntity; + public readonly Direction Direction; + + public RPDConstructionGhostRotationEvent(NetEntity netEntity, Direction direction) + { + NetEntity = netEntity; + Direction = direction; + } +} + +[Serializable, NetSerializable] +public enum RpdUiKey : byte +{ + Key +} diff --git a/Content.Shared/ADT/RPD/RPDPrototype.cs b/Content.Shared/ADT/RPD/RPDPrototype.cs new file mode 100644 index 00000000000..9a4485c13e3 --- /dev/null +++ b/Content.Shared/ADT/RPD/RPDPrototype.cs @@ -0,0 +1,141 @@ +using Content.Shared.Physics; +using Robust.Shared.Physics.Collision.Shapes; +using Robust.Shared.Prototypes; +using Robust.Shared.Utility; + +namespace Content.Shared.ADT.RPD; + +/// +/// Contains the parameters for a RPD construction / operation +/// +[Prototype("RPD")] +public sealed partial class RPDPrototype : IPrototype +{ + [IdDataField] + public string ID { get; private set; } = default!; + + /// + /// The RPD mode associated with the operation + /// + [DataField(required: true), ViewVariables(VVAccess.ReadOnly)] + public RpdMode Mode { get; private set; } = RpdMode.Invalid; + + /// + /// The name associated with the prototype + /// + [DataField("name"), ViewVariables(VVAccess.ReadOnly)] + public string SetName { get; private set; } = "Unknown"; + + /// + /// The name of the radial container that this prototype will be listed under on the RPD menu + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public string Category { get; private set; } = "Undefined"; + + /// + /// Texture path for this prototypes menu icon + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public SpriteSpecifier? Sprite { get; private set; } = null; + + /// + /// The entity prototype that will be constructed (mode dependent) + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public string? Prototype { get; private set; } = string.Empty; + + /// + /// Number of charges consumed when the operation is completed + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public int Cost { get; private set; } = 1; + + /// + /// The length of the operation + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public float Delay { get; private set; } = 1f; + + /// + /// The visual effect that plays during this operation + /// + [DataField("fx"), ViewVariables(VVAccess.ReadOnly)] + public EntProtoId? Effect { get; private set; } = null; + + /// + /// A list of rules that govern where the entity prototype can be contructed + /// + [DataField("rules"), ViewVariables(VVAccess.ReadOnly)] + public HashSet ConstructionRules { get; private set; } = new(); + + /// + /// The collision mask used for determining whether the entity prototype will fit into a target tile + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public CollisionGroup CollisionMask { get; private set; } = CollisionGroup.None; + + /// + /// Specifies a set of custom collision bounds for determining whether the entity prototype will fit into a target tile + /// + /// + /// Should be set assuming that the entity faces south. + /// Make sure that Rotation is set to RpdRotation.User if the entity is to be rotated by the user + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public Box2? CollisionBounds + { + get + { + return _collisionBounds; + } + + private set + { + _collisionBounds = value; + + if (_collisionBounds != null) + { + var poly = new PolygonShape(); + poly.SetAsBox(_collisionBounds.Value); + + CollisionPolygon = poly; + } + } + } + + private Box2? _collisionBounds = null; + + /// + /// The polygon shape associated with the prototype CollisionBounds (if set) + /// + [ViewVariables(VVAccess.ReadOnly)] + public PolygonShape? CollisionPolygon { get; private set; } = null; + + /// + /// Governs how the local rotation of the constructed entity will be set + /// + [DataField, ViewVariables(VVAccess.ReadOnly)] + public RpdRotation Rotation { get; private set; } = RpdRotation.User; +} + +public enum RpdMode : byte +{ + Invalid, + Deconstruct, + ConstructObject, +} + +// These are to be replaced with more flexible 'RulesRule' at a later time +public enum RpdConstructionRule : byte +{ + MustBuildOnSubfloor, // Can only be built on exposed subfloor (e.g. catwalks on lattice or hull plating) + IsWindow, // The entity is a window and can be built on grilles + IsWall +} + +public enum RpdRotation : byte +{ + Fixed, // The entity has a local rotation of zero + Camera, // The rotation of the entity matches the local player camera + User, // The entity can be rotated by the local player prior to placement +} diff --git a/Content.Shared/ADT/RPD/Systems/RPDAmmoSystem.cs b/Content.Shared/ADT/RPD/Systems/RPDAmmoSystem.cs new file mode 100644 index 00000000000..b63414d6e7c --- /dev/null +++ b/Content.Shared/ADT/RPD/Systems/RPDAmmoSystem.cs @@ -0,0 +1,62 @@ +using Content.Shared.Charges.Components; +using Content.Shared.Charges.Systems; +using Content.Shared.Examine; +using Content.Shared.Interaction; +using Content.Shared.Popups; +using Content.Shared.ADT.RPD.Components; +using Robust.Shared.Timing; + +namespace Content.Shared.ADT.RPD.Systems; + +public sealed class RPDAmmoSystem : EntitySystem +{ + [Dependency] private readonly SharedChargesSystem _charges = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly IGameTiming _timing = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent(OnAfterInteract); + } + + private void OnExamine(EntityUid uid, RPDAmmoComponent comp, ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + var examineMessage = Loc.GetString("rpd-ammo-component-on-examine", ("charges", comp.Charges)); + args.PushText(examineMessage); + } + + private void OnAfterInteract(EntityUid uid, RPDAmmoComponent comp, AfterInteractEvent args) + { + if (args.Handled || !args.CanReach || !_timing.IsFirstTimePredicted) + return; + + if (args.Target is not { Valid: true } target || + !HasComp(target) || + !TryComp(target, out var charges)) + return; + + var user = args.User; + args.Handled = true; + var count = Math.Min(charges.MaxCharges - charges.Charges, comp.Charges); + if (count <= 0) + { + _popup.PopupClient(Loc.GetString("rpd-ammo-component-after-interact-full"), target, user); + return; + } + + _popup.PopupClient(Loc.GetString("rpd-ammo-component-after-interact-refilled"), target, user); + _charges.AddCharges(target, count, charges); + comp.Charges -= count; + Dirty(uid, comp); + + // prevent having useless ammo with 0 charges + if (comp.Charges <= 0) + QueueDel(uid); + } +} diff --git a/Content.Shared/ADT/RPD/Systems/RPDSystem.cs b/Content.Shared/ADT/RPD/Systems/RPDSystem.cs new file mode 100644 index 00000000000..22f173efa5f --- /dev/null +++ b/Content.Shared/ADT/RPD/Systems/RPDSystem.cs @@ -0,0 +1,533 @@ +using Content.Shared.Administration.Logs; +using Content.Shared.Charges.Components; +using Content.Shared.Charges.Systems; +using Content.Shared.ADT.Construction; +using Content.Shared.Database; +using Content.Shared.DoAfter; +using Content.Shared.Examine; +using Content.Shared.Hands.Components; +using Content.Shared.Interaction; +using Content.Shared.Maps; +using Content.Shared.Physics; +using Content.Shared.Popups; +using Content.Shared.ADT.RPD.Components; +using Content.Shared.Tag; +using Content.Shared.Tiles; +using Robust.Shared.Audio.Systems; +using Robust.Shared.Map; +using Robust.Shared.Map.Components; +using Robust.Shared.Network; +using Robust.Shared.Physics; +using Robust.Shared.Physics.Collision.Shapes; +using Robust.Shared.Physics.Dynamics; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; +using Robust.Shared.Timing; +using System.Diagnostics.CodeAnalysis; +using System.Linq; + +namespace Content.Shared.ADT.RPD.Systems; + +[Virtual] +public class RPDSystem : EntitySystem +{ + [Dependency] private readonly IGameTiming _timing = default!; + [Dependency] private readonly INetManager _net = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly ITileDefinitionManager _tileDefMan = default!; + [Dependency] private readonly FloorTileSystem _floors = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedChargesSystem _charges = default!; + [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedInteractionSystem _interaction = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly TurfSystem _turf = default!; + [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly IPrototypeManager _protoManager = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; + [Dependency] private readonly TagSystem _tags = default!; + + private readonly int _instantConstructionDelay = 0; + private readonly EntProtoId _instantConstructionFx = "EffectRPDConstruct0"; + + private HashSet _intersectingEntities = new(); + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnExamine); + SubscribeLocalEvent(OnAfterInteract); + SubscribeLocalEvent(OnDoAfter); + SubscribeLocalEvent>(OnDoAfterAttempt); + SubscribeLocalEvent(OnRPDSystemMessage); + SubscribeNetworkEvent(OnRPDconstructionGhostRotationEvent); + } + + #region Event handling + + private void OnMapInit(EntityUid uid, RPDComponent component, MapInitEvent args) + { + // On init, set the RPD to its first available recipe + if (component.AvailablePrototypes.Any()) + { + component.ProtoId = component.AvailablePrototypes.First(); + UpdateCachedPrototype(uid, component); + Dirty(uid, component); + + return; + } + + // The RPD has no valid recipes somehow? Get rid of it + QueueDel(uid); + } + + private void OnRPDSystemMessage(EntityUid uid, RPDComponent component, RPDSystemMessage args) + { + // Exit if the RPD doesn't actually know the supplied prototype + if (!component.AvailablePrototypes.Contains(args.ProtoId)) + return; + + if (!_protoManager.HasIndex(args.ProtoId)) + return; + + // Set the current RPD prototype to the one supplied + component.ProtoId = args.ProtoId; + UpdateCachedPrototype(uid, component); + Dirty(uid, component); + } + + private void OnExamine(EntityUid uid, RPDComponent component, ExaminedEvent args) + { + if (!args.IsInDetailsRange) + return; + + // Update cached prototype if required + UpdateCachedPrototype(uid, component); + + var msg = Loc.GetString("rpd-component-examine-mode-details", ("mode", Loc.GetString(component.CachedPrototype.SetName))); + + if (component.CachedPrototype.Mode == RpdMode.ConstructObject) + { + var name = Loc.GetString(component.CachedPrototype.SetName); + + if (component.CachedPrototype.Prototype != null && + _protoManager.TryIndex(component.CachedPrototype.Prototype, out var proto)) + name = proto.Name; + + msg = Loc.GetString("rpd-component-examine-build-details", ("name", name)); + } + + args.PushMarkup(msg); + } + + private void OnAfterInteract(EntityUid uid, RPDComponent component, AfterInteractEvent args) + { + if (args.Handled || !args.CanReach) + return; + + var user = args.User; + var location = args.ClickLocation; + + // Initial validity checks + if (!location.IsValid(EntityManager)) + return; + + if (!TryGetMapGridData(location, out var mapGridData)) + { + _popup.PopupClient(Loc.GetString("rpd-component-no-valid-grid"), uid, user); + return; + } + + if (!IsRPDOperationStillValid(uid, component, mapGridData.Value, args.Target, args.User)) + return; + + if (!_net.IsServer) + return; + + // Get the starting cost, delay, and effect from the prototype + var cost = component.CachedPrototype.Cost; + var delay = component.CachedPrototype.Delay; + var effectPrototype = component.CachedPrototype.Effect; + + #region: Operation modifiers + + // Deconstruction modifiers + switch (component.CachedPrototype.Mode) + { + case RpdMode.Deconstruct: + + // Deconstructing an object + if (args.Target != null) + { + if (TryComp(args.Target, out var destructible)) + { + cost = destructible.Cost; + delay = destructible.Delay; + effectPrototype = destructible.Effect; + } + } + break; + } + + #endregion + + // Try to start the do after + var effect = Spawn(effectPrototype, mapGridData.Value.Location); + var ev = new RPDDoAfterEvent(GetNetCoordinates(mapGridData.Value.Location), component.ConstructionDirection, component.ProtoId, cost, EntityManager.GetNetEntity(effect)); + + var doAfterArgs = new DoAfterArgs(EntityManager, user, delay, ev, uid, target: args.Target, used: uid) + { + BreakOnDamage = true, + BreakOnHandChange = true, + BreakOnMove = true, + AttemptFrequency = AttemptFrequency.EveryTick, + CancelDuplicate = false, + BlockDuplicate = false + }; + + args.Handled = true; + + if (!_doAfter.TryStartDoAfter(doAfterArgs)) + QueueDel(effect); + } + + private void OnDoAfterAttempt(EntityUid uid, RPDComponent component, DoAfterAttemptEvent args) + { + if (args.Event?.DoAfter?.Args == null) + return; + + // Exit if the RPD prototype has changed + if (component.ProtoId != args.Event.StartingProtoId) + { + args.Cancel(); + return; + } + + // Ensure the RPD operation is still valid + var location = GetCoordinates(args.Event.Location); + + if (!TryGetMapGridData(location, out var mapGridData)) + { + args.Cancel(); + return; + } + + if (!IsRPDOperationStillValid(uid, component, mapGridData.Value, args.Event.Target, args.Event.User)) + args.Cancel(); + } + + private void OnDoAfter(EntityUid uid, RPDComponent component, RPDDoAfterEvent args) + { + if (args.Cancelled && _net.IsServer) + QueueDel(EntityManager.GetEntity(args.Effect)); + + if (args.Handled || args.Cancelled || !_timing.IsFirstTimePredicted) + return; + + args.Handled = true; + + var location = GetCoordinates(args.Location); + + if (!TryGetMapGridData(location, out var mapGridData)) + return; + + // Ensure the RPD operation is still valid + if (!IsRPDOperationStillValid(uid, component, mapGridData.Value, args.Target, args.User)) + return; + + // Finalize the operation + FinalizeRPDOperation(uid, component, mapGridData.Value, args.Direction, args.Target, args.User); + + // Play audio and consume charges + _audio.PlayPredicted(component.SuccessSound, uid, args.User); + _charges.UseCharges(uid, args.Cost); + } + + private void OnRPDconstructionGhostRotationEvent(RPDConstructionGhostRotationEvent ev, EntitySessionEventArgs session) + { + var uid = GetEntity(ev.NetEntity); + + // Determine if player that send the message is carrying the specified RPD in their active hand + if (session.SenderSession.AttachedEntity == null) + return; + + if (!TryComp(session.SenderSession.AttachedEntity, out var hands) || + uid != hands.ActiveHand?.HeldEntity) + return; + + if (!TryComp(uid, out var rpd)) + return; + + // Update the construction direction + rpd.ConstructionDirection = ev.Direction; + Dirty(uid, rpd); + } + + #endregion + + #region Entity construction/deconstruction rule checks + + public bool IsRPDOperationStillValid(EntityUid uid, RPDComponent component, MapGridData mapGridData, EntityUid? target, EntityUid user, bool popMsgs = true) + { + // Update cached prototype if required + UpdateCachedPrototype(uid, component); + + // Check that the RPD has enough ammo to get the job done + TryComp(uid, out var charges); + + // Both of these were messages were suppose to be predicted, but HasInsufficientCharges wasn't being checked on the client for some reason? + if (_charges.IsEmpty(uid, charges)) + { + if (popMsgs) + _popup.PopupClient(Loc.GetString("rpd-component-no-ammo-message"), uid, user); + + return false; + } + + if (_charges.HasInsufficientCharges(uid, component.CachedPrototype.Cost, charges)) + { + if (popMsgs) + _popup.PopupClient(Loc.GetString("rpd-component-insufficient-ammo-message"), uid, user); + + return false; + } + + // Exit if the target / target location is obstructed + var unobstructed = (target == null) + ? _interaction.InRangeUnobstructed(user, _mapSystem.GridTileToWorld(mapGridData.GridUid, mapGridData.Component, mapGridData.Position), popup: popMsgs) + : _interaction.InRangeUnobstructed(user, target.Value, popup: popMsgs); + + if (!unobstructed) + return false; + + // Return whether the operation location is valid + switch (component.CachedPrototype.Mode) + { + case RpdMode.ConstructObject: return IsConstructionLocationValid(uid, component, mapGridData, user, popMsgs); + case RpdMode.Deconstruct: return IsDeconstructionStillValid(uid, component, mapGridData, target, user, popMsgs); + } + + return false; + } + + private bool IsConstructionLocationValid(EntityUid uid, RPDComponent component, MapGridData mapGridData, EntityUid user, bool popMsgs = true) + { + // Check rule: Must place on subfloor + if (component.CachedPrototype.ConstructionRules.Contains(RpdConstructionRule.MustBuildOnSubfloor) && !mapGridData.Tile.Tile.GetContentTileDefinition().IsSubFloor) + { + if (popMsgs) + _popup.PopupClient(Loc.GetString("rpd-component-must-build-on-subfloor-message"), uid, user); + + return false; + } + + // Entity specific rules + + // Check rule: The tile is unoccupied + var isWindow = component.CachedPrototype.ConstructionRules.Contains(RpdConstructionRule.IsWindow); + var isWall = component.CachedPrototype.ConstructionRules.Contains(RpdConstructionRule.IsWall); + + _intersectingEntities.Clear(); + _lookup.GetLocalEntitiesIntersecting(mapGridData.GridUid, mapGridData.Position, _intersectingEntities, -0.05f, LookupFlags.Uncontained); + + foreach (var ent in _intersectingEntities) + { + if (isWindow && HasComp(ent)) + continue; + + if (isWall && HasComp(ent)) + continue; + + if (component.CachedPrototype.CollisionMask != CollisionGroup.None && TryComp(ent, out var fixtures)) + { + foreach (var fixture in fixtures.Fixtures.Values) + { + // Continue if no collision is possible + if (!fixture.Hard || fixture.CollisionLayer <= 0 || (fixture.CollisionLayer & (int) component.CachedPrototype.CollisionMask) == 0) + continue; + + // Continue if our custom collision bounds are not intersected + if (component.CachedPrototype.CollisionPolygon != null && + !DoesCustomBoundsIntersectWithFixture(component.CachedPrototype.CollisionPolygon, component.ConstructionTransform, ent, fixture)) + continue; + + // Collision was detected + if (popMsgs) + _popup.PopupClient(Loc.GetString("rpd-component-cannot-build-on-occupied-tile-message"), uid, user); + + return false; + } + } + } + + return true; + } + + private bool IsDeconstructionStillValid(EntityUid uid, RPDComponent component, MapGridData mapGridData, EntityUid? target, EntityUid user, bool popMsgs = true) + { + // Attempt to get, tile or not + if (target == null) + { + if (popMsgs) + _popup.PopupClient(Loc.GetString("rcd-component-deconstruct-target-not-on-whitelist-message"), uid, user); + + return false; + } + // Attempt to deconstruct an object + else + { + // The object is not in the whitelist + if (!TryComp(target, out var deconstructible) || !deconstructible.Deconstructable) + { + if (popMsgs) + _popup.PopupClient(Loc.GetString("rpd-component-deconstruct-target-not-on-whitelist-message"), uid, user); + + return false; + } + } + + return true; + } + + #endregion + + #region Entity construction/deconstruction + + private void FinalizeRPDOperation(EntityUid uid, RPDComponent component, MapGridData mapGridData, Direction direction, EntityUid? target, EntityUid user) + { + if (!_net.IsServer) + return; + + if (component.CachedPrototype.Prototype == null) + return; + + switch (component.CachedPrototype.Mode) + { + case RpdMode.ConstructObject: + var ent = Spawn(component.CachedPrototype.Prototype, _mapSystem.GridTileToLocal(mapGridData.GridUid, mapGridData.Component, mapGridData.Position)); + + switch (component.CachedPrototype.Rotation) + { + case RpdRotation.Fixed: + Transform(ent).LocalRotation = Angle.Zero; + break; + case RpdRotation.Camera: + Transform(ent).LocalRotation = Transform(uid).LocalRotation; + break; + case RpdRotation.User: + Transform(ent).LocalRotation = direction.ToAngle(); + break; + } + + _adminLogger.Add(LogType.RCD, LogImpact.High, $"{ToPrettyString(user):user} used RPD to spawn {ToPrettyString(ent)} at {mapGridData.Position} on grid {mapGridData.GridUid}"); + break; + + case RpdMode.Deconstruct: + + if (target != null) + { + // Deconstruct object + _adminLogger.Add(LogType.RCD, LogImpact.High, $"{ToPrettyString(user):user} used RPD to delete {ToPrettyString(target):target}"); + QueueDel(target); + } + + break; + } + } + + #endregion + + #region Utility functions + + public bool TryGetMapGridData(EntityCoordinates location, [NotNullWhen(true)] out MapGridData? mapGridData) + { + mapGridData = null; + var gridUid = location.GetGridUid(EntityManager); + + if (!TryComp(gridUid, out var mapGrid)) + { + location = location.AlignWithClosestGridTile(1.75f, EntityManager); + gridUid = location.GetGridUid(EntityManager); + + // Check if we got a grid ID the second time round + if (!TryComp(gridUid, out mapGrid)) + return false; + } + + gridUid = mapGrid.Owner; + + var tile = _mapSystem.GetTileRef(gridUid.Value, mapGrid, location); + var position = _mapSystem.TileIndicesFor(gridUid.Value, mapGrid, location); + mapGridData = new MapGridData(gridUid.Value, mapGrid, location, tile, position); + + return true; + } + + private bool DoesCustomBoundsIntersectWithFixture(PolygonShape boundingPolygon, Transform boundingTransform, EntityUid fixtureOwner, Fixture fixture) + { + var entXformComp = Transform(fixtureOwner); + var entXform = new Transform(new(), entXformComp.LocalRotation); + + return boundingPolygon.ComputeAABB(boundingTransform, 0).Intersects(fixture.Shape.ComputeAABB(entXform, 0)); + } + + public void UpdateCachedPrototype(EntityUid uid, RPDComponent component) + { + if (component.ProtoId.Id != component.CachedPrototype?.Prototype) + component.CachedPrototype = _protoManager.Index(component.ProtoId); + } + + #endregion +} + +public struct MapGridData +{ + public EntityUid GridUid; + public MapGridComponent Component; + public EntityCoordinates Location; + public TileRef Tile; + public Vector2i Position; + + public MapGridData(EntityUid gridUid, MapGridComponent component, EntityCoordinates location, TileRef tile, Vector2i position) + { + GridUid = gridUid; + Component = component; + Location = location; + Tile = tile; + Position = position; + } +} + +[Serializable, NetSerializable] +public sealed partial class RPDDoAfterEvent : DoAfterEvent +{ + [DataField(required: true)] + public NetCoordinates Location { get; private set; } = default!; + + [DataField] + public Direction Direction { get; private set; } = default!; + + [DataField] + public ProtoId StartingProtoId { get; private set; } = default!; + + [DataField] + public int Cost { get; private set; } = 1; + + [DataField("fx")] + public NetEntity? Effect { get; private set; } = null; + + private RPDDoAfterEvent() { } + + public RPDDoAfterEvent(NetCoordinates location, Direction direction, ProtoId startingProtoId, int cost, NetEntity? effect = null) + { + Location = location; + Direction = direction; + StartingProtoId = startingProtoId; + Cost = cost; + Effect = effect; + } + + public override DoAfterEvent Clone() => this; +} diff --git a/Content.Shared/ADT/Silicon/BatteryDrinkerEvent.cs b/Content.Shared/ADT/Silicon/BatteryDrinkerEvent.cs new file mode 100644 index 00000000000..8007a8ca60d --- /dev/null +++ b/Content.Shared/ADT/Silicon/BatteryDrinkerEvent.cs @@ -0,0 +1,14 @@ +// Simple station + +using Content.Shared.DoAfter; +using Robust.Shared.Serialization; + +namespace Content.Shared.ADT.Silicon; + +[Serializable, NetSerializable] +public sealed partial class BatteryDrinkerDoAfterEvent : SimpleDoAfterEvent +{ + public BatteryDrinkerDoAfterEvent() + { + } +} diff --git a/Content.Shared/ADT/Silicon/Components/SeeingStaticComponent.cs b/Content.Shared/ADT/Silicon/Components/SeeingStaticComponent.cs new file mode 100644 index 00000000000..ac581ab437b --- /dev/null +++ b/Content.Shared/ADT/Silicon/Components/SeeingStaticComponent.cs @@ -0,0 +1,20 @@ +// Simple station + +using Robust.Shared.GameStates; + +namespace Content.Shared.ADT.Silicon.Components; + +/// +/// Exists for use as a status effect. Adds a tv static shader to the client. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class SeeingStaticComponent : Component +{ + /// + /// The multiplier applied to the effect. + /// Setting this to 0.5 will halve the effect throughout its entire duration, meaning it will never be fully opaque. + /// Setting this to 2 will double the effect throughout its entire duration, meaning it will be fully opaque for twice as long. + /// + [AutoNetworkedField] + public float Multiplier = 1f; +} diff --git a/Content.Shared/ADT/Silicon/Components/SiliconChargerComponent.cs b/Content.Shared/ADT/Silicon/Components/SiliconChargerComponent.cs new file mode 100644 index 00000000000..90a238c4f26 --- /dev/null +++ b/Content.Shared/ADT/Silicon/Components/SiliconChargerComponent.cs @@ -0,0 +1,125 @@ +// Simple station + +using Content.Shared.Storage.Components; +using Content.Shared.StepTrigger.Components; +using Robust.Shared.Audio; + +namespace Content.Shared.ADT.Silicon; + +[RegisterComponent] +public sealed partial class SiliconChargerComponent : Component +{ + /// + /// Is the charger currently active? + /// + public bool Active = false; + + /// + /// The currently playing audio stream. + /// + //public IPlayingAudioStream? SoundStream { get; set; } modern.df ipc. * Moved IPlayingAudioStream onto AudioComponent and entities instead of an abstract stream. + + /// + /// Counter for handing out warnings to burning entities. + /// + public TimeSpan WarningTime = TimeSpan.Zero; + + /// + /// The current parts multiplier. + /// + public float PartsChargeMulti = 1.2f; + + /// + /// The sound to play when the charger is active. + /// + [DataField("soundLoop")] + public SoundSpecifier SoundLoop = new SoundPathSpecifier("/Audio/Machines/microwave_loop.ogg"); + + /// + /// The multiplier for the charge rate. + /// For reference, an IPC drains at 50. + /// + [DataField("chargeMulti"), ViewVariables(VVAccess.ReadWrite)] + public float ChargeMulti = 50f; + + /// + /// The minimum size of a battery to be charged. + /// + /// + /// Charging a battery too small will detonate it, becoming more likely as it fills. + /// + [DataField("minChargeSize"), ViewVariables(VVAccess.ReadWrite)] + public int MinChargeSize = 1000; + + /// + /// The minimum amount of time it will take to charge a battery, in seconds. + /// + /// + /// Note that this is from empty. A battery that is already half full will take half as long as this value to reach full, if it would've been faster from empty. + /// This is for the sake of feeling cooler- It's lame to just charge instantly. + /// + [DataField("minChargeTime"), ViewVariables(VVAccess.ReadWrite)] + public float MinChargeTime = 10f; + + /// + /// The temperature the charger will stop heating up at. + /// + /// + /// Used specifically for chargers with the . + /// + [DataField("targetTemp"), ViewVariables(VVAccess.ReadWrite)] + public float TargetTemp = 373.15f; + + /// + /// The damage type to deal when a Biological entity is burned. + /// + [DataField("damageType")] + public string DamageType = "Shock"; + + /// + /// The modifier to apply to a used parts rating. + /// + /// + /// 0.6 is the default as it provides a nice range where 2 is about normal, and 4 is about two and a half. + /// + [DataField("upgradePartsMulti"), ViewVariables(VVAccess.ReadWrite)] + public float UpgradePartsMulti = 0.6f; + + /// + /// The part to be used for the charge speed. + /// + [DataField("chargeSpeedPart")] + public string ChargeSpeedPart = "Capacitor"; + + /// + /// The part to be used for the charge efficiency. + /// + [DataField("chargeEfficiencyPart")] + public string ChargeEfficiencyPart = "Manipulator"; + + + /// + /// Charger overheat string + /// + [DataField("overheatString")] + public string OverheatString = "silicon-charger-overheatwarning"; + + + /// + /// The list of entities currently stood on a charger. + /// + /// + /// Used specifically for chargers with the . + /// + [ViewVariables(VVAccess.ReadOnly)] + public List PresentEntities = new List(); + + /// + /// The number of entities that can be stood on a charger at once. + /// + /// + /// Used specifically for chargers with the . + /// + [DataField("maxEntities"), ViewVariables(VVAccess.ReadWrite)] + public int MaxEntities = 1; +} diff --git a/Content.Shared/ADT/Silicon/Components/SiliconComponent.cs b/Content.Shared/ADT/Silicon/Components/SiliconComponent.cs new file mode 100644 index 00000000000..4598086c37f --- /dev/null +++ b/Content.Shared/ADT/Silicon/Components/SiliconComponent.cs @@ -0,0 +1,108 @@ +using Robust.Shared.GameStates; +using Content.Shared.ADT.Silicon.Systems; +using Robust.Shared.Serialization.TypeSerializers.Implementations; +using Robust.Shared.Prototypes; +using Content.Shared.Alert; + +namespace Content.Shared.ADT.Silicon.Components; + +/// +/// Component for defining a mob as a robot. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class SiliconComponent : Component +{ + [ViewVariables(VVAccess.ReadOnly)] + public ChargeState ChargeState = ChargeState.Full; + + [ViewVariables(VVAccess.ReadOnly)] + public float OverheatAccumulator = 0.0f; + + /// + /// The last time the Silicon was drained. + /// Used for NPC Silicons to avoid over updating. + /// + /// + /// Time between drains can be specified in + /// + /// + public TimeSpan LastDrainTime = TimeSpan.Zero; + + /// + /// The Silicon's battery slot, if it has one. + /// + /// modern.df а нету его больше + //public IContainer? BatteryContainer = null; + + /// + /// Is the Silicon currently dead? + /// + public bool Dead = false; + + // BatterySystem took issue with how this was used, so I'm coming back to it at a later date, when more foundational Silicon stuff is implemented. + // /// + // /// The entity to get the battery from. + // /// + // public EntityUid BatteryOverride? = EntityUid.Invalid; + + + /// + /// The type of silicon this is. + /// + /// + /// Any new types of Silicons should be added to the enum. + /// + [DataField("entityType", customTypeSerializer: typeof(EnumSerializer))] + public Enum EntityType = SiliconType.Npc; + + /// + /// Is this silicon battery powered? + /// + /// + /// If true, should go along with a battery component. One will not be added automatically. + /// + [DataField("batteryPowered"), ViewVariables(VVAccess.ReadWrite)] + public bool BatteryPowered = false; + + /// + /// Slot this entity's battery is contained in. + /// Leave null if using a battery component. + /// + [DataField("batterySlot")] + public string? BatterySlot = null; + + /// + /// How much power is drained by this Silicon every second by default. + /// + [DataField("drainPerSecond"), ViewVariables(VVAccess.ReadWrite)] + public float DrainPerSecond = 50f; + + + /// + /// The percentages at which the silicon will enter each state. + /// + /// + /// The Silicon will always be Full at 100%. + /// Setting a value to null will disable that state. + /// Setting Critical to 0 will cause the Silicon to never enter the dead state. + /// + [DataField("chargeThresholdMid"), ViewVariables(VVAccess.ReadWrite)] + public float? ChargeThresholdMid = 0.5f; + + /// + [DataField("chargeThresholdLow"), ViewVariables(VVAccess.ReadWrite)] + public float? ChargeThresholdLow = 0.25f; + + /// + [DataField("chargeThresholdCritical"), ViewVariables(VVAccess.ReadWrite)] + public float? ChargeThresholdCritical = 0.0f; + + + /// + /// The amount the Silicon will be slowed at each charge state. + /// + [DataField("speedModifierThresholds", required: true)] + public Dictionary SpeedModifierThresholds = default!; // было readonly + + public ProtoId Alert = "Charge"; +} diff --git a/Content.Shared/ADT/Silicon/SiliconChargerVisuals.cs b/Content.Shared/ADT/Silicon/SiliconChargerVisuals.cs new file mode 100644 index 00000000000..1d968db60f3 --- /dev/null +++ b/Content.Shared/ADT/Silicon/SiliconChargerVisuals.cs @@ -0,0 +1,19 @@ +// Simple station + +using Robust.Shared.Serialization; + +namespace Content.Shared.ADT.Silicon; + +[Serializable, NetSerializable] +public enum SiliconChargerVisuals +{ + Lights, +} + +[Serializable, NetSerializable] +public enum SiliconChargerVisualState +{ + Normal, + NormalOpen, + Charging +} diff --git a/Content.Shared/ADT/Silicon/Systems/SeeingStaticSystem.cs b/Content.Shared/ADT/Silicon/Systems/SeeingStaticSystem.cs new file mode 100644 index 00000000000..4852fb38986 --- /dev/null +++ b/Content.Shared/ADT/Silicon/Systems/SeeingStaticSystem.cs @@ -0,0 +1,8 @@ +// Simple station + +namespace Content.Shared.ADT.Silicon.Systems; + +public sealed class SharedSeeingStaticSystem : EntitySystem +{ + public const string StaticKey = "SeeingStatic"; +} diff --git a/Content.Shared/ADT/Silicon/Systems/SharedSiliconSystem.cs b/Content.Shared/ADT/Silicon/Systems/SharedSiliconSystem.cs new file mode 100644 index 00000000000..26c384228fc --- /dev/null +++ b/Content.Shared/ADT/Silicon/Systems/SharedSiliconSystem.cs @@ -0,0 +1,98 @@ +// Simple station + +using Content.Shared.ADT.Silicon.Components; +using Content.Shared.Alert; +using Robust.Shared.Serialization; +using Content.Shared.Movement.Systems; + +namespace Content.Shared.ADT.Silicon.Systems; + + +public sealed class SharedSiliconChargeSystem : EntitySystem +{ + [Dependency] private readonly AlertsSystem _alertsSystem = default!; + + // Dictionary of ChargeState to Alert severity. + private static readonly Dictionary ChargeStateAlert = new() + { + {ChargeState.Full, 4}, + {ChargeState.Mid, 3}, + {ChargeState.Low, 2}, + {ChargeState.Critical, 1}, + {ChargeState.Dead, 0}, + {ChargeState.Invalid, -1}, + }; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnSiliconInit); + SubscribeLocalEvent(OnSiliconChargeStateUpdate); + SubscribeLocalEvent(OnRefreshMovespeed); + } + + private void OnSiliconInit(EntityUid uid, SiliconComponent component, ComponentInit args) + { + if (component.BatteryPowered) + _alertsSystem.ShowAlert(uid, component.Alert, (short) component.ChargeState); + } + + private void OnSiliconChargeStateUpdate(EntityUid uid, SiliconComponent component, SiliconChargeStateUpdateEvent ev) + { + _alertsSystem.ShowAlert(uid, component.Alert, (short) ev.ChargeState); + } + + private void OnRefreshMovespeed(EntityUid uid, SiliconComponent component, RefreshMovementSpeedModifiersEvent args) + { + if (!component.BatteryPowered) + return; + + var speedModThresholds = component.SpeedModifierThresholds; + + var closest = 0f; + + foreach (var state in speedModThresholds) + { + if (component.ChargeState >= state.Key && (float) state.Key > closest) + closest = (float) state.Key; + } + + var speedMod = speedModThresholds[(ChargeState) closest]; + + args.ModifySpeed(speedMod, speedMod); + } +} + + +public enum SiliconType +{ + Player, + GhostRole, + Npc, +} + +public enum ChargeState +{ + Invalid = -1, + Dead, + Critical, + Low, + Mid, + Full, +} + + +/// +/// Event raised when a Silicon's charge state needs to be updated. +/// +[Serializable, NetSerializable] +public sealed class SiliconChargeStateUpdateEvent : EntityEventArgs +{ + public ChargeState ChargeState { get; } + + public SiliconChargeStateUpdateEvent(ChargeState chargeState) + { + ChargeState = chargeState; + } +} diff --git a/Content.Shared/ADT/Traits/Components/MonochromacyComponent.cs b/Content.Shared/ADT/Traits/Components/MonochromacyComponent.cs new file mode 100644 index 00000000000..3d3f71edfd9 --- /dev/null +++ b/Content.Shared/ADT/Traits/Components/MonochromacyComponent.cs @@ -0,0 +1,15 @@ +// Simple Station + +using Robust.Shared.GameStates; + +namespace Content.Shared.ADT.Traits +{ + /// + /// Entity cannot see color. + /// + [RegisterComponent, NetworkedComponent] + public sealed partial class MonochromacyComponent : Component + { + + } +} diff --git a/Content.Shared/Electrocution/ElectrocutionEvents.cs b/Content.Shared/Electrocution/ElectrocutionEvents.cs index fe5753c7fb3..403bea6ce1a 100644 --- a/Content.Shared/Electrocution/ElectrocutionEvents.cs +++ b/Content.Shared/Electrocution/ElectrocutionEvents.cs @@ -24,12 +24,14 @@ public sealed class ElectrocutedEvent : EntityEventArgs public readonly EntityUid TargetUid; public readonly EntityUid? SourceUid; public readonly float SiemensCoefficient; + public readonly float? ShockDamage; // Parkstation-IPC - public ElectrocutedEvent(EntityUid targetUid, EntityUid? sourceUid, float siemensCoefficient) + public ElectrocutedEvent(EntityUid targetUid, EntityUid? sourceUid, float siemensCoefficient, float? shockDamage = null) // Parkstation-IPC { TargetUid = targetUid; SourceUid = sourceUid; SiemensCoefficient = siemensCoefficient; + ShockDamage = shockDamage; // Parkstation-IPC } } } diff --git a/Content.Shared/Humanoid/NamingSystem.cs b/Content.Shared/Humanoid/NamingSystem.cs index a563d396398..1cf9487d087 100644 --- a/Content.Shared/Humanoid/NamingSystem.cs +++ b/Content.Shared/Humanoid/NamingSystem.cs @@ -35,11 +35,16 @@ public string GetName(string species, Gender? gender = null) case SpeciesNaming.FirstDashFirst: return Loc.GetString("namepreset-firstdashfirst", ("first1", GetFirstName(speciesProto, gender)), ("first2", GetFirstName(speciesProto, gender))); - // Start ADT Tweak: Drask naming + // Start ADT Tweak: Drask naming case SpeciesNaming.FirstDashFirstDashFirst: return Loc.GetString("namepreset-firstdashfirstdashfirst", ("first1", GetFirstName(speciesProto, gender)), ("first2", GetFirstName(speciesProto, gender)), ("first3", GetFirstName(speciesProto, gender))); - // End ADT Tweak + // End ADT Tweak + // Parkstation-Ipc-Start + case SpeciesNaming.FirstDashLast: + return Loc.GetString("namepreset-firstdashlast", + ("first", GetFirstName(speciesProto, gender)), ("last", GetLastName(speciesProto))); + // Parkstation-Ipc-End case SpeciesNaming.FirstLast: default: return Loc.GetString("namepreset-firstlast", diff --git a/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs b/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs index 1405c4b5a94..c1c9e21015d 100644 --- a/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs +++ b/Content.Shared/Humanoid/Prototypes/SpeciesPrototype.cs @@ -144,4 +144,5 @@ public enum SpeciesNaming : byte FirstDashFirstDashFirst, // ADT End tweak TheFirstofLast, + FirstDashLast, // Parkstation-IPC } diff --git a/Content.Shared/Radio/Components/EncryptionKeyHolderComponent.cs b/Content.Shared/Radio/Components/EncryptionKeyHolderComponent.cs index bd49acf9090..b3f5f16db73 100644 --- a/Content.Shared/Radio/Components/EncryptionKeyHolderComponent.cs +++ b/Content.Shared/Radio/Components/EncryptionKeyHolderComponent.cs @@ -53,4 +53,13 @@ public sealed partial class EncryptionKeyHolderComponent : Component /// [ViewVariables] public string? DefaultChannel; + + // Parkstation-Ipc-Start + /// + /// Whether or not the headset can be examined to see the encryption keys while the keys aren't accessible. + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("examineWhileLocked")] + public bool ExamineWhileLocked = true; + // Parkstation-Ipc-End } diff --git a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs index 7b050273db6..2fabe5948e2 100644 --- a/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs +++ b/Content.Shared/Radio/EntitySystems/EncryptionKeySystem.cs @@ -177,12 +177,27 @@ private void OnHolderExamined(EntityUid uid, EncryptionKeyHolderComponent compon if (!args.IsInDetailsRange) return; + // Parkstation-Ipc-Start + if (!component.ExamineWhileLocked && !component.KeysUnlocked) + return; + + if (!component.ExamineWhileLocked && TryComp(uid, out var panel) && !panel.Open) + return; + // Parkstation-Ipc-End + if (component.KeyContainer.ContainedEntities.Count == 0) { args.PushMarkup(Loc.GetString("encryption-keys-no-keys")); return; } + // хз чо эт, вроде не нужно + // if (component.Channels.Count > 0) + // { + // args.PushMarkup(Loc.GetString("examine-encryption-channels-prefix")); + // AddChannelsExamine(component.Channels, component.DefaultChannel, args, _protoManager, "examine-encryption-channel"); + // } + if (component.Channels.Count > 0) { using (args.PushGroup(nameof(EncryptionKeyComponent))) diff --git a/Content.Shared/Sound/Components/SpamEmitSoundComponent.cs b/Content.Shared/Sound/Components/SpamEmitSoundComponent.cs index 149728a5baa..861c5f95a23 100644 --- a/Content.Shared/Sound/Components/SpamEmitSoundComponent.cs +++ b/Content.Shared/Sound/Components/SpamEmitSoundComponent.cs @@ -39,6 +39,6 @@ public sealed partial class SpamEmitSoundComponent : BaseEmitSoundComponent /// Do not set this directly, use /// [DataField, AutoNetworkedField] - [Access(typeof(SharedEmitSoundSystem))] + // [Access(typeof(SharedEmitSoundSystem))] ADT: IPC (невозможно указать требуемый доступ) public bool Enabled = true; } diff --git a/LICENSE-AGPLv3.txt b/LICENSE-AGPLv3.txt new file mode 100644 index 00000000000..593265c00cb --- /dev/null +++ b/LICENSE-AGPLv3.txt @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/Resources/Audio/ADT/Felinid/attributions.yml b/Resources/Audio/ADT/Felinid/attributions.yml new file mode 100644 index 00000000000..bca921c51df --- /dev/null +++ b/Resources/Audio/ADT/Felinid/attributions.yml @@ -0,0 +1,24 @@ +- files: ["cat_hiss1.ogg", "cat_hiss2.ogg"] + license: "CC-BY-4.0" + copyright: "Original sound by https://freesound.org/people/secondbody/ - cut out two clips of cat hissing, cleaned up, and converted to ogg." + source: "https://freesound.org/people/secondbody/sounds/50357/" + +- files: ["cat_meow1.ogg", "cat_meow2.ogg", "cat_meow3.ogg"] + license: "CC-BY-3.0" + copyright: "Original sound by https://freesound.org/people/ignotus/ - cut out three clips of cat meowing, cleaned up, and converted to ogg." + source: "https://freesound.org/people/ignotus/sounds/26104/" + +- files: ["cat_mew1.ogg", "cat_mew2.ogg"] + license: "CC0-1.0" + copyright: "Original sound by https://freesound.org/people/videog/ - cut out two clips of kittens mewing, cleaned up, and converted to ogg." + source: "https://freesound.org/people/videog/sounds/149191/" + +- files: ["cat_purr1.ogg"] + license: "CC-BY-4.0" + copyright: "Original sound by https://freesound.org/people/klangstrand/ - cut out short clip, fade in and out, converted to ogg." + source: "https://freesound.org/people/klangstrand/sounds/213951/" + +- files: ["cat_growl1.ogg"] + license: "CC0-1.0" + copyright: "Original sound by https://freesound.org/people/Zabuhailo/ - fade in and out, converted to ogg." + source: "https://freesound.org/people/Zabuhailo/sounds/146968/" diff --git a/Resources/Audio/ADT/Felinid/cat_growl1.ogg b/Resources/Audio/ADT/Felinid/cat_growl1.ogg new file mode 100644 index 00000000000..f7c5b43cee1 Binary files /dev/null and b/Resources/Audio/ADT/Felinid/cat_growl1.ogg differ diff --git a/Resources/Audio/ADT/Felinid/cat_hiss1.ogg b/Resources/Audio/ADT/Felinid/cat_hiss1.ogg new file mode 100644 index 00000000000..10cfe9670de Binary files /dev/null and b/Resources/Audio/ADT/Felinid/cat_hiss1.ogg differ diff --git a/Resources/Audio/ADT/Felinid/cat_hiss2.ogg b/Resources/Audio/ADT/Felinid/cat_hiss2.ogg new file mode 100644 index 00000000000..faaa953ee11 Binary files /dev/null and b/Resources/Audio/ADT/Felinid/cat_hiss2.ogg differ diff --git a/Resources/Audio/ADT/Felinid/cat_meow1.ogg b/Resources/Audio/ADT/Felinid/cat_meow1.ogg new file mode 100644 index 00000000000..6ed99f0d581 Binary files /dev/null and b/Resources/Audio/ADT/Felinid/cat_meow1.ogg differ diff --git a/Resources/Audio/ADT/Felinid/cat_meow2.ogg b/Resources/Audio/ADT/Felinid/cat_meow2.ogg new file mode 100644 index 00000000000..34bb375fe5d Binary files /dev/null and b/Resources/Audio/ADT/Felinid/cat_meow2.ogg differ diff --git a/Resources/Audio/ADT/Felinid/cat_meow3.ogg b/Resources/Audio/ADT/Felinid/cat_meow3.ogg new file mode 100644 index 00000000000..0af0cb0e07b Binary files /dev/null and b/Resources/Audio/ADT/Felinid/cat_meow3.ogg differ diff --git a/Resources/Audio/ADT/Felinid/cat_mew1.ogg b/Resources/Audio/ADT/Felinid/cat_mew1.ogg new file mode 100644 index 00000000000..e41650e0fb1 Binary files /dev/null and b/Resources/Audio/ADT/Felinid/cat_mew1.ogg differ diff --git a/Resources/Audio/ADT/Felinid/cat_mew2.ogg b/Resources/Audio/ADT/Felinid/cat_mew2.ogg new file mode 100644 index 00000000000..d82657b9a47 Binary files /dev/null and b/Resources/Audio/ADT/Felinid/cat_mew2.ogg differ diff --git a/Resources/Audio/ADT/Felinid/cat_purr1.ogg b/Resources/Audio/ADT/Felinid/cat_purr1.ogg new file mode 100644 index 00000000000..d7ef89fc50d Binary files /dev/null and b/Resources/Audio/ADT/Felinid/cat_purr1.ogg differ diff --git a/Resources/Audio/ADT/Felinid/cat_scream1.ogg b/Resources/Audio/ADT/Felinid/cat_scream1.ogg new file mode 100644 index 00000000000..2ecc1cf64da Binary files /dev/null and b/Resources/Audio/ADT/Felinid/cat_scream1.ogg differ diff --git a/Resources/Audio/ADT/Felinid/cat_scream2.ogg b/Resources/Audio/ADT/Felinid/cat_scream2.ogg new file mode 100644 index 00000000000..abb19bcba1e Binary files /dev/null and b/Resources/Audio/ADT/Felinid/cat_scream2.ogg differ diff --git a/Resources/Audio/ADT/Felinid/cat_scream3.ogg b/Resources/Audio/ADT/Felinid/cat_scream3.ogg new file mode 100644 index 00000000000..5e297520468 Binary files /dev/null and b/Resources/Audio/ADT/Felinid/cat_scream3.ogg differ diff --git a/Resources/Audio/ADT/Felinid/cat_wilhelm.ogg b/Resources/Audio/ADT/Felinid/cat_wilhelm.ogg new file mode 100644 index 00000000000..45934ebeb34 Binary files /dev/null and b/Resources/Audio/ADT/Felinid/cat_wilhelm.ogg differ diff --git a/Resources/Audio/ADT/Felinid/hairball.ogg b/Resources/Audio/ADT/Felinid/hairball.ogg new file mode 100644 index 00000000000..f7fb40de608 Binary files /dev/null and b/Resources/Audio/ADT/Felinid/hairball.ogg differ diff --git a/Resources/Audio/ADT/Felinid/license.txt b/Resources/Audio/ADT/Felinid/license.txt new file mode 100644 index 00000000000..0370cf25c61 --- /dev/null +++ b/Resources/Audio/ADT/Felinid/license.txt @@ -0,0 +1 @@ +hairball.ogg taken from https://en.wikipedia.org/wiki/File:Common_house_cat_coughing_hairball.ogv CC-BY-SA-3.0 diff --git a/Resources/Audio/ADT/IPC/attributions.yml b/Resources/Audio/ADT/IPC/attributions.yml new file mode 100644 index 00000000000..dffa3b941ac --- /dev/null +++ b/Resources/Audio/ADT/IPC/attributions.yml @@ -0,0 +1,4 @@ +- files: ["borg_deathsound.ogg", "buzz-sigh.ogg", "buzz-two.ogg", "ping.ogg", "signal.ogg", "synth_no.ogg", "synth_yes.ogg"] + license: "CC0-1.0" + copyright: "Original sound by https://github.com/ss220-space/Paradise" + source: "https://github.com/ss220-space/Paradise" diff --git a/Resources/Audio/ADT/IPC/borg_deathsound.ogg b/Resources/Audio/ADT/IPC/borg_deathsound.ogg new file mode 100644 index 00000000000..06e847165ff Binary files /dev/null and b/Resources/Audio/ADT/IPC/borg_deathsound.ogg differ diff --git a/Resources/Audio/ADT/IPC/buzz-sigh.ogg b/Resources/Audio/ADT/IPC/buzz-sigh.ogg new file mode 100644 index 00000000000..109c196e2c4 Binary files /dev/null and b/Resources/Audio/ADT/IPC/buzz-sigh.ogg differ diff --git a/Resources/Audio/ADT/IPC/buzz-two.ogg b/Resources/Audio/ADT/IPC/buzz-two.ogg new file mode 100644 index 00000000000..3f79e2a0e91 Binary files /dev/null and b/Resources/Audio/ADT/IPC/buzz-two.ogg differ diff --git a/Resources/Audio/ADT/IPC/hyperspace_begin_new.ogg b/Resources/Audio/ADT/IPC/hyperspace_begin_new.ogg new file mode 100644 index 00000000000..ee4e93846cf Binary files /dev/null and b/Resources/Audio/ADT/IPC/hyperspace_begin_new.ogg differ diff --git a/Resources/Audio/ADT/IPC/ping.ogg b/Resources/Audio/ADT/IPC/ping.ogg new file mode 100644 index 00000000000..3516d48d259 Binary files /dev/null and b/Resources/Audio/ADT/IPC/ping.ogg differ diff --git a/Resources/Audio/ADT/IPC/signal.ogg b/Resources/Audio/ADT/IPC/signal.ogg new file mode 100644 index 00000000000..824e1adb94c Binary files /dev/null and b/Resources/Audio/ADT/IPC/signal.ogg differ diff --git a/Resources/Audio/ADT/IPC/synth_no.ogg b/Resources/Audio/ADT/IPC/synth_no.ogg new file mode 100644 index 00000000000..f0d2c3bfb0c Binary files /dev/null and b/Resources/Audio/ADT/IPC/synth_no.ogg differ diff --git a/Resources/Audio/ADT/IPC/synth_scream.ogg b/Resources/Audio/ADT/IPC/synth_scream.ogg new file mode 100644 index 00000000000..78787d3db90 Binary files /dev/null and b/Resources/Audio/ADT/IPC/synth_scream.ogg differ diff --git a/Resources/Audio/ADT/IPC/synth_yes.ogg b/Resources/Audio/ADT/IPC/synth_yes.ogg new file mode 100644 index 00000000000..300cad132ed Binary files /dev/null and b/Resources/Audio/ADT/IPC/synth_yes.ogg differ diff --git a/Resources/Audio/ADT/Moth/attributions.yml b/Resources/Audio/ADT/Moth/attributions.yml new file mode 100644 index 00000000000..9c7727aa51c --- /dev/null +++ b/Resources/Audio/ADT/Moth/attributions.yml @@ -0,0 +1,9 @@ +- files: ["moth_scream.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from https://github.com/tgstation/tgstation/commit/31c19654e0f641166ecd80c672ea05362fd19488" + source: "https://github.com/tgstation/tgstation/commits/master/sound/voice/moth/scream_moth.ogg" + +- files: ["moth_laugh.ogg, moth_chitter.ogg, moth_squeak.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from https://github.com/BeeStation/BeeStation-Hornet/commit/11ba3fa04105c93dd96a63ad4afaef4b20c02d0d" + source: "https://github.com/BeeStation/BeeStation-Hornet/blob/11ba3fa04105c93dd96a63ad4afaef4b20c02d0d/sound/emotes/" \ No newline at end of file diff --git a/Resources/Audio/ADT/Moth/moth_buzz.ogg b/Resources/Audio/ADT/Moth/moth_buzz.ogg new file mode 100644 index 00000000000..5b77d98e565 Binary files /dev/null and b/Resources/Audio/ADT/Moth/moth_buzz.ogg differ diff --git a/Resources/Audio/ADT/Moth/moth_chitter.ogg b/Resources/Audio/ADT/Moth/moth_chitter.ogg new file mode 100644 index 00000000000..b7240a56536 Binary files /dev/null and b/Resources/Audio/ADT/Moth/moth_chitter.ogg differ diff --git a/Resources/Audio/ADT/Moth/moth_laugh.ogg b/Resources/Audio/ADT/Moth/moth_laugh.ogg new file mode 100644 index 00000000000..d3c2865ab64 Binary files /dev/null and b/Resources/Audio/ADT/Moth/moth_laugh.ogg differ diff --git a/Resources/Audio/ADT/Moth/moth_screm.ogg b/Resources/Audio/ADT/Moth/moth_screm.ogg new file mode 100644 index 00000000000..482086fb630 Binary files /dev/null and b/Resources/Audio/ADT/Moth/moth_screm.ogg differ diff --git a/Resources/Audio/ADT/Moth/moth_squeak.ogg b/Resources/Audio/ADT/Moth/moth_squeak.ogg new file mode 100644 index 00000000000..5b77d98e565 Binary files /dev/null and b/Resources/Audio/ADT/Moth/moth_squeak.ogg differ diff --git a/Resources/Locale/en-US/ADT/Entities/Mobs/Customization/ipcAntenna.ftl b/Resources/Locale/en-US/ADT/Entities/Mobs/Customization/ipcAntenna.ftl new file mode 100644 index 00000000000..ec3efd9f553 --- /dev/null +++ b/Resources/Locale/en-US/ADT/Entities/Mobs/Customization/ipcAntenna.ftl @@ -0,0 +1,10 @@ +marking-RobotAntennaTv = Tv +marking-RobotAntennaTesla = Tesla +marking-RobotAntennaLightb = Light (alt) +marking-RobotAntennaLight = Light +marking-RobotAntennaCyberhead = Cyberhead +marking-RobotAntennaSidelights = Sidelights +marking-RobotAntennaAntlers = Antlers +marking-RobotAntennaDroneeyes = Drone Eyes +marking-RobotAntennaCrowned = Crowned +marking-RobotAntennaTowers = Towers diff --git a/Resources/Locale/en-US/ADT/Entities/Mobs/Customization/ipcScreens.ftl b/Resources/Locale/en-US/ADT/Entities/Mobs/Customization/ipcScreens.ftl new file mode 100644 index 00000000000..3f53f2d3f93 --- /dev/null +++ b/Resources/Locale/en-US/ADT/Entities/Mobs/Customization/ipcScreens.ftl @@ -0,0 +1,39 @@ +marking-ScreenStatic = Static +marking-ScreenBlue = Blue +marking-ScreenBreakout = Breakout +marking-ScreenEight = Eight +marking-ScreenGoggles = Goggles +marking-ScreenExclaim = Exclaim +marking-ScreenHeart = Heart +marking-ScreenMonoeye = Cyclops +marking-ScreenNature = Naturalist +marking-ScreenOrange = Orange +marking-ScreenPink = Pink +marking-ScreenQuestion = Question +marking-ScreenShower = Shower +marking-ScreenYellow = Yellow +marking-ScreenScroll = Scroll +marking-ScreenConsole = Console +marking-ScreenRgb = RGB +marking-ScreenGlider = Glider +marking-ScreenRainbowhoriz = Horizontal Rainbow +marking-ScreenBsod = BSOD +marking-ScreenRedtext = Red Text +marking-ScreenSinewave = Sinewave +marking-ScreenSquarewave = Squarewave +marking-ScreenEcgwave = ECG wave +marking-ScreenEyes = Eyes +marking-ScreenEyestall = Tall Eyes +marking-ScreenEyesangry = Angry Eyes +marking-ScreenLoading = Loading... +marking-ScreenWindowsxp = Experience +marking-ScreenTetris = NT Block Game +marking-ScreenTv = Tv +marking-ScreenTextdrop = Textdrop +marking-ScreenStars = Stars +marking-ScreenRainbowdiag = Diagonal Rainbow +marking-ScreenBlank = Dead Pixel +marking-ScreenSmile = Smiley +marking-ScreenFrown = Frowny +marking-ScreenRing = Ring +marking-ScreenL = L diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/moth.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/moth.ftl index 21ab09dd517..ecff67f7422 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/moth.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/moth.ftl @@ -1,2 +1,2 @@ -ent-MobMoth = Urist McFluff - .desc = { ent-BaseMobMoth.desc } +#ent-MobMoth = Urist McFluff +# .desc = { ent-BaseMobMoth.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/moth.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/moth.ftl index 835d8a2aea3..174979f062f 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/moth.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/species/moth.ftl @@ -1,4 +1,4 @@ -ent-BaseMobMoth = Urist McFluff - .desc = { ent-BaseMobSpeciesOrganic.desc } -ent-MobMothDummy = { ent-BaseSpeciesDummy } - .desc = { ent-BaseSpeciesDummy.desc } +#ent-BaseMobMoth = Urist McFluff +# .desc = { ent-BaseMobSpeciesOrganic.desc } +#ent-MobMothDummy = { ent-BaseSpeciesDummy } +# .desc = { ent-BaseSpeciesDummy.desc } diff --git a/Resources/Locale/ru-RU/ADT/Adverisements/patholog.ftl b/Resources/Locale/ru-RU/ADT/Adverisements/patholog.ftl new file mode 100644 index 00000000000..575fc0a5cc1 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Adverisements/patholog.ftl @@ -0,0 +1,2 @@ +advertisement-patholog-1 = Только не запачкайтесь. +advertisement-patholog-2 = Самая красивая одежда среди обитателей морга! \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/Body/Organs/ipc.ftl b/Resources/Locale/ru-RU/ADT/Body/Organs/ipc.ftl new file mode 100644 index 00000000000..555bd803654 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Body/Organs/ipc.ftl @@ -0,0 +1,9 @@ +ent-OrganIPCBrain = позитронный мозг КПБ + .desc = Источник такого же количества противоречий и споров, как и существование души. +ent-OrganIPCEyes = модуль зрения КПБ + .desc = 11010000 10101111 100000 11010001 10000010 11010000 10110101 11010000 10110001 11010001 10001111 100000 11010000 10110010 11010000 10111000 11010000 10110110 11010001 10000011 100001 +ent-OrganIPCTongue = модуль речи КПБ + .desc = Модуль КПБ, используемый для их общения. +ent-OrganIPCPump = микронасос КПБ + .desc = Микронасос КПБ, используемый для циркуляции охлаждающей жидкости. +ent-OrganIPCEarts = звуковые рецепторы КПБ diff --git a/Resources/Locale/ru-RU/ADT/Body/Parts/ipc.ftl b/Resources/Locale/ru-RU/ADT/Body/Parts/ipc.ftl new file mode 100644 index 00000000000..a117a4f7697 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Body/Parts/ipc.ftl @@ -0,0 +1,10 @@ +ent-HeadIPC = голова КПБ +ent-TorsoIPC = тело КПБ +ent-LeftArmIPC = левая рука КПБ +ent-RightArmIPC = правая рука КПБ +ent-LeftHandIPC = левая кисть КПБ +ent-RightHandIPC = правая кисть КПБ +ent-LeftLegIPC = левая нога КПБ +ent-RightLegIPC = правая нога КПБ +ent-LeftFootIPC = левая ступня КПБ +ent-RightFootIPC = правая ступня КПБ diff --git a/Resources/Locale/ru-RU/ADT/Catalog/Fills/Backpacks/backpack.ftl b/Resources/Locale/ru-RU/ADT/Catalog/Fills/Backpacks/backpack.ftl new file mode 100644 index 00000000000..458d50573b2 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Catalog/Fills/Backpacks/backpack.ftl @@ -0,0 +1,2 @@ +ent-ADTClothingBackpackPathologistFilled = { ent-ADTClothingBackpackPathologist } + .desc = { ent-ADTClothingBackpackPathologist.desc } \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/Catalog/Fills/Backpacks/duffelbag.ftl b/Resources/Locale/ru-RU/ADT/Catalog/Fills/Backpacks/duffelbag.ftl new file mode 100644 index 00000000000..84250cd8a2d --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Catalog/Fills/Backpacks/duffelbag.ftl @@ -0,0 +1,2 @@ +ent-ADTClothingBackpackDuffelPathologistFilled = { ent-ADTClothingBackpackDuffelPathologist } + .desc = { ent-ADTClothingBackpackDuffelPathologist.desc } \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/Catalog/Fills/Backpacks/satchel.ftl b/Resources/Locale/ru-RU/ADT/Catalog/Fills/Backpacks/satchel.ftl new file mode 100644 index 00000000000..53487df8065 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Catalog/Fills/Backpacks/satchel.ftl @@ -0,0 +1,2 @@ +ent-ADTClothingBackpackSatchelPathologistFilled = { ent-ADTClothingBackpackSatchelPathologist } + .desc = { ent-ADTClothingBackpackSatchelPathologist.desc } \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/Chat/emotes.ftl b/Resources/Locale/ru-RU/ADT/Chat/emotes.ftl new file mode 100644 index 00000000000..be548184067 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Chat/emotes.ftl @@ -0,0 +1,4 @@ +# IPC +chat-emote-name-synth-yes = утвердительно пискнуть +chat-emote-name-synth-no = отрицательно пискнуть +chat-emote-name-sigh-buzz = раздражённо жужжать diff --git a/Resources/Locale/ru-RU/ADT/Clothing/Back/backpack.ftl b/Resources/Locale/ru-RU/ADT/Clothing/Back/backpack.ftl new file mode 100644 index 00000000000..b2d343ef973 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Clothing/Back/backpack.ftl @@ -0,0 +1,6 @@ +ent-ADTClothingBackpackDuffelPathologist = вещмешок патологоанатома + .desc = Большой вещмешок для хранения инструментов и бумаг. +ent-ADTClothingBackpackPathologist = рюкзак патологоанатома + .desc = Рюкзак для хранения инструментов и бумаг. +ent-ADTClothingBackpackSatchelPathologist = сумка патологоанатома + .desc = Сумка для хранения инструментов и бумаг. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/Clothing/OuterClothing/coats.ftl b/Resources/Locale/ru-RU/ADT/Clothing/OuterClothing/coats.ftl new file mode 100644 index 00000000000..61e7c94938b --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Clothing/OuterClothing/coats.ftl @@ -0,0 +1,4 @@ +ent-ADTClothingOuterCoatLabPathologist = халат патологоанатома + .desc = { ent-ClothingOuterCoatLab.desc } +ent-ADTClothingOuterApronPathologist = фартук патологоанатома + .desc = Фартук для работы с трупами. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/Clothing/Uniform/jumpsuits.ftl b/Resources/Locale/ru-RU/ADT/Clothing/Uniform/jumpsuits.ftl new file mode 100644 index 00000000000..973fee8314a --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Clothing/Uniform/jumpsuits.ftl @@ -0,0 +1,8 @@ +ent-ADTClothingUniformPathologistSuit = костюм патологоанатома + .desc = Лёгкий комбинезон для работника морга. +ent-ADTClothingUniformPathologistSkirt = юбка-костюм патологоанатома + .desc = Лёгкая юбка-комбинезон для работницы морга. +ent-ADTClothingUniformPathologistSuitAlt = чёрный костюм патологоанатома + .desc = Лёгкий комбинезон для работника морга. Более угрюмая версия. +ent-ADTClothingUniformPathologistSkirtAlt = чёрная юбка-костюм патологоанатома + .desc = Лёгкая юбка-комбинезон для работницы морга. Более угрюмая версия. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/Entities/Mobs/Customization/Markings/ipc.yml b/Resources/Locale/ru-RU/ADT/Entities/Mobs/Customization/Markings/ipc.yml new file mode 100644 index 00000000000..02c29e712d4 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Entities/Mobs/Customization/Markings/ipc.yml @@ -0,0 +1,50 @@ +marking-ScreenStatic = Белый шум +marking-ScreenBlue = Синий +marking-ScreenBreakout = Понг +marking-ScreenEight = Восьмёрка +marking-ScreenGoggles = Защитные очки +marking-ScreenExclaim = Восклицательный знак +marking-ScreenHeart = Сердце +marking-ScreenMonoeye = Циклом +marking-ScreenNature = Натуралист +marking-ScreenOrange = Оранжевый +marking-ScreenPink = Розовый +marking-ScreenQuestion = Вопрос +marking-ScreenShower = Душ +marking-ScreenYellow = Жёлтый +marking-ScreenScroll = Прокрутка +marking-ScreenConsole = Консоль +marking-ScreenRgb = RGB +marking-ScreenGlider = Параплан +marking-ScreenRainbowhoriz = Горизонтальная радуга +marking-ScreenBsod = BSOD +marking-ScreenRedtext = Красный текст +marking-ScreenSinewave = Синусоида +marking-ScreenSquarewave = Квадратная волна +marking-ScreenEcgwave = Кардиограмма +marking-ScreenEyes = Глаза +marking-ScreenEyestall = Высокие глаза +marking-ScreenEyesangry = Злые глаза +marking-ScreenLoading = Загрузка... +marking-ScreenWindowsxp = Многолетний опыт +marking-ScreenTetris = Тетрис +marking-ScreenTv = ТВ +marking-ScreenTextdrop = Текст +marking-ScreenStars = Звёзды +marking-ScreenRainbowdiag = Диоганальная радуга +marking-ScreenBlank = Мёртвый пиксель +marking-ScreenSmile = Улыбка +marking-ScreenFrown = Грусть +marking-ScreenRing = Кольцо +marking-ScreenL = L + +marking-RobotAntennaTv = ТВ +marking-RobotAntennaTesla = Тесла +marking-RobotAntennaLightb = Мигалка (альт.) +marking-RobotAntennaLight = Мигалка +marking-RobotAntennaCyberhead = Кибер +marking-RobotAntennaSidelights = Боковые мигалки +marking-RobotAntennaAntlers = Рога +marking-RobotAntennaDroneeyes = Глаза дрона +marking-RobotAntennaCrowned = Корона +marking-RobotAntennaTowers = Башни diff --git a/Resources/Locale/ru-RU/ADT/Entities/Mobs/Player/ipc.ftl b/Resources/Locale/ru-RU/ADT/Entities/Mobs/Player/ipc.ftl new file mode 100644 index 00000000000..1cd41f8aa3c --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Entities/Mobs/Player/ipc.ftl @@ -0,0 +1,6 @@ +ent-MobIPC = Урист МакПозитроник + +ent-MobIPCDummy = Урист МакПозитроник + .desc = Манекен позитронного мозга в металлическом теле. + +ipc-board-name = системный блок КПБ diff --git a/Resources/Locale/ru-RU/ADT/Entities/Objects/Misc/identification_cards.ftl b/Resources/Locale/ru-RU/ADT/Entities/Objects/Misc/identification_cards.ftl new file mode 100644 index 00000000000..4f4bf7cf876 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Entities/Objects/Misc/identification_cards.ftl @@ -0,0 +1,5 @@ +ent-ADTPathologistIDCard = ID карта патологоанатома + .desc = { ent-IDCardStandard.desc } + +ent-ADTRoboticistIDCard = ID карта робототехника + .desc = { ent-IDCardStandard.desc } diff --git a/Resources/Locale/ru-RU/ADT/Entities/Structures/Machines/silicon_chargers.ftl b/Resources/Locale/ru-RU/ADT/Entities/Structures/Machines/silicon_chargers.ftl new file mode 100644 index 00000000000..85b0bb7deb0 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Entities/Structures/Machines/silicon_chargers.ftl @@ -0,0 +1,7 @@ +ent-SiliconChargerIndustrial = промышленное зарядное устройство + .desc = Мощная машина для зарядки синнтетиков. Подходит для зарядки КПБ и боргов. Она очень сильно нагревается! + +ent-IndustrialChargerCircuitboard = плата промышленного зарядного устройства + .desc = Машинная печатная плата для промышленного зарядного устройства + +research-technology-ind-charger = Технология зарядки продвинутых синтетиков. diff --git a/Resources/Locale/ru-RU/ADT/Entities/Structuries/Machines/vending_machines.ftl b/Resources/Locale/ru-RU/ADT/Entities/Structuries/Machines/vending_machines.ftl new file mode 100644 index 00000000000..7144dcd51a4 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Entities/Structuries/Machines/vending_machines.ftl @@ -0,0 +1,2 @@ +ent-ADTVendingMachinePatholoDrobe = ПатологоШкаф + .desc = Самая стильная одежда в самом отдалёном месте медицинского отдела. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/Interaction/interaction-popup-component-ipc.ftl b/Resources/Locale/ru-RU/ADT/Interaction/interaction-popup-component-ipc.ftl new file mode 100644 index 00000000000..48986fea2b8 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Interaction/interaction-popup-component-ipc.ftl @@ -0,0 +1 @@ +petting-success-ipc = Вы гладите { $target } по его металлической голове. diff --git a/Resources/Locale/ru-RU/ADT/Job/job-description.ftl b/Resources/Locale/ru-RU/ADT/Job/job-description.ftl new file mode 100644 index 00000000000..28828431bbe --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Job/job-description.ftl @@ -0,0 +1,3 @@ +job-description-ADTPathologist = Осматривайте тела мёртвого экипажа, выявляйте причины их смерти и не забывайте клонировать трупы. + +job-description-roboticist = Собирайте боргов, мехов, обслуживайте синтетиков и поражайте (либо пугайте) экипаж своими новейшими разработками. diff --git a/Resources/Locale/ru-RU/ADT/Job/job-names.ftl b/Resources/Locale/ru-RU/ADT/Job/job-names.ftl new file mode 100644 index 00000000000..74e8f228d70 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Job/job-names.ftl @@ -0,0 +1,5 @@ +job-name-ADTPathologist = Патологоанатом +JobADTPathologist = Патологоанатом + +job-name-roboticist = робототехник +JobRoboticist = робототехник diff --git a/Resources/Locale/ru-RU/ADT/Preferences/loadout-groups.ftl b/Resources/Locale/ru-RU/ADT/Preferences/loadout-groups.ftl new file mode 100644 index 00000000000..79214fbfd1b --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/Preferences/loadout-groups.ftl @@ -0,0 +1,26 @@ +# Errors + +# Miscellaneous + +# Command +ent-MagistratNeck = Галстуки +ent-MagistratJumpsuit = Костюмы +# Civilian + +# Cargo + +# Engineering + +# Science +loadout-group-roboticist-jumpsuit = Робототехник, комбинезон +loadout-group-roboticist-outerclothing = Робототехник, верхняя одежда +loadout-group-roboticist-gloves = Робототехник, перчатки +# Security + +# Medical +loadout-group-patholog-head = Патологоанатом, голова +loadout-group-patholog-jumpsuit = Патологоанатом, комбинезон +loadout-group-patholog-outerclothing = Патологоанатом, верхняя одежда +loadout-group-patholog-shoes = Патологоанатом, обувь +loadout-group-patholog-backpack = Патологоанатом, рюкзак +# Wildcards diff --git a/Resources/Locale/ru-RU/ADT/headset-component.ftl b/Resources/Locale/ru-RU/ADT/headset-component.ftl new file mode 100644 index 00000000000..ddb67d55b5e --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/headset-component.ftl @@ -0,0 +1 @@ +ADT-Lawyer-Channel-name = Юридический diff --git a/Resources/Locale/ru-RU/ADT/paper/stamp-component.ftl b/Resources/Locale/ru-RU/ADT/paper/stamp-component.ftl new file mode 100644 index 00000000000..adbd7867c76 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/paper/stamp-component.ftl @@ -0,0 +1 @@ +stamp-component-stamped-name-magistrat = Магистрат diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Access/accesses.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Access/accesses.ftl new file mode 100644 index 00000000000..0c64681745c --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Access/accesses.ftl @@ -0,0 +1,2 @@ +id-card-access-level-iaa = Агент Внутренних Дел +id-card-access-level-magistrate = Магистрат diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/Tajaran.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/Tajaran.ftl new file mode 100644 index 00000000000..05d7161b84f --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Body/Organs/Tajaran.ftl @@ -0,0 +1,2 @@ +ent-OrganTajaranStomach = { ent-OrganAnimalStomach } + .desc = { ent-OrganAnimalStomach.desc } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Body/Parts/Tajaran.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Body/Parts/Tajaran.ftl new file mode 100644 index 00000000000..4ed0b079232 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Body/Parts/Tajaran.ftl @@ -0,0 +1,24 @@ +ent-PartTajaran = часть тела таяра + .desc = { ent-BaseItem.desc } +ent-TorsoTajaran = тело таяра + .desc = { ent-PartTajaran.desc } +ent-HeadTajaran = голова таяра + .desc = { ent-PartTajaran.desc } +ent-LeftArmTajaran = левая рука таяра + .desc = { ent-PartTajaran.desc } +ent-RightArmTajaran = правая рука таяра + .desc = { ent-PartTajaran.desc } +ent-LeftHandTajaran = левая кисть таяра + .desc = { ent-PartTajaran.desc } +ent-RightHandTajaran = правая кисть таяра + .desc = { ent-PartTajaran.desc } +ent-TailTajaran = хвост таяра + .desc = { ent-PartTajaran.desc } +ent-LeftLegTajaran = левая нога таяра + .desc = { ent-PartTajaran.desc } +ent-RightLegTajaran = правая нога таяра + .desc = { ent-PartTajaran.desc } +ent-LeftFootTajaran = левая ступня таяра + .desc = { ent-PartTajaran.desc } +ent-RightFootTajaran = правая ступня таяра + .desc = { ent-PartTajaran.desc } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Body/Parts/moth.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Body/Parts/moth.ftl new file mode 100644 index 00000000000..a7c4b197eee --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Body/Parts/moth.ftl @@ -0,0 +1,22 @@ +ent-PartMoth = часть тела нианы + .desc = { ent-BasePart.desc } +ent-TorsoMoth = торс нианы + .desc = { ent-PartMoth.desc } +ent-HeadMoth = голова нианы + .desc = { ent-PartMoth.desc } +ent-LeftArmMoth = левая рука нианы + .desc = { ent-PartMoth.desc } +ent-RightArmMoth = правая рука нианы + .desc = { ent-PartMoth.desc } +ent-LeftHandMoth = левая кисть нианы + .desc = { ent-PartMoth.desc } +ent-RightHandMoth = правая кисть нианы + .desc = { ent-PartMoth.desc } +ent-LeftLegMoth = левая нога нианы + .desc = { ent-PartMoth.desc } +ent-RightLegMoth = правая нога нианы + .desc = { ent-PartMoth.desc } +ent-LeftFootMoth = левая стопа нианы + .desc = { ent-PartMoth.desc } +ent-RightFootMoth = правая стопа нианы + .desc = { ent-PartMoth.desc } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Crates/engineering.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Crates/engineering.ftl new file mode 100644 index 00000000000..e51e3608c00 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Catalog/Fills/Crates/engineering.ftl @@ -0,0 +1,4 @@ +ent-ADTCrateRPDAmmo = ящик консервированной материи + .desc = Содержит 3 консервированных картриджа для работы РРТ. +ent-ADTCrateRPD = ящик РРТ + .desc = Ящик, содержащий один ручной раздатчик труб. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Ears/headsets.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Ears/headsets.ftl new file mode 100644 index 00000000000..75f46dc8e15 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Ears/headsets.ftl @@ -0,0 +1,6 @@ +ent-ClothingHeadsetMagistrat = Гарнитура магистрата + .desc = Переговоры особой важности происходят по этой гарнитуре. +ent-ClothingHeadsetLawyer = Гарнитура юриста + .desc = Обычная гарнитура юриста. +ent-ClothingHeadsetIAA = Гарнитура Агента Внутренних Дел + .desc = Переговоры о нарушениях СРП происходят по этой гарнитуре. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Uniforms/jumpsuits.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Uniforms/jumpsuits.ftl new file mode 100644 index 00000000000..c17f23f08de --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Clothing/Uniforms/jumpsuits.ftl @@ -0,0 +1,2 @@ +ent-ADTClothingUniformsJumpsuitWhiteDiplomatSuitL = Белый костюм дипломата + .desc = Специально сделанный белый костюм дипломата NanoTrasen. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Markers/Spawners/jobs.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Markers/Spawners/jobs.ftl new file mode 100644 index 00000000000..331c8aebb87 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Markers/Spawners/jobs.ftl @@ -0,0 +1,5 @@ +ent-SpawnPointMagistrat = Точка спавна магистрата + .desc = { ent-SpawnPointJobBase.desc } + +ent-ADTSpawnPointRoboticist = робототехник + .desc = { ent-SpawnPointJobBase.desc } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Markings/Tajaran.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Markings/Tajaran.ftl new file mode 100644 index 00000000000..b2c75423172 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Markings/Tajaran.ftl @@ -0,0 +1,101 @@ +marking-Belly1 = Живот +marking-Belly1-belly1 = Живот +marking-Belly2 = Живот 2 +marking-Belly2-belly2 = Живот +marking-Belly3 = Живот 3 +marking-Belly3-belly3 = Живот +marking-Belly4 = Грудь +marking-Belly4-chest = Грудь + +marking-BodyStripes = Окрас табби +marking-BodyStripes-stripes_body = Табби +marking-BodyBlots = Окрас черепахи +marking-BodyBlots-blots_body = Черепаха +marking-patch2 = Окрас пятен +marking-patch2-patch = Пятна +marking-BodySkeleton = Рисунок скелета +marking-BodySkeleton-skeleton_body = Скелет +marking-arm1 = Окрас рук и ног (градиент) +marking-arm1-points = Градиент + +marking-LHandGradient = Окрас левой кисти (градиент) +marking-LHandGradient-gradient_LHand = Градиент +marking-RHandGradient = Окрас правой кисти (градиент) +marking-RHandGradient-gradient_RHand = Градиент +marking-LArmGradient = Окрас левой руки (градиент) +marking-LArmGradient-gradient_LArm = Градиент +marking-RArmGradient = Окрас правой руки (градиент) +marking-RArmGradient-gradient_RArm = Градиент +marking-LLegGradient = Окрас левой ноги (градиент) +marking-LLegGradient-gradient_LLeg = Градиент +marking-RLegGradient = Окрас правой ноги (градиент) +marking-RLegGradient-gradient_RLeg = Градиент + +marking-TailWingler1 = Полосы (хвост) +marking-TailWingler1-wingler_1 = Полосы +marking-TailWingler2 = Полосы 2 (хвост) +marking-TailWingler2-wingler_2 = Полосы +marking-TailWingler3 = Полосы 3 (хвост) +marking-TailWingler3-wingler_3 = Полосы +marking-TailTip = Кончик (хвост) +marking-TailTip-tail_tip = Кончик +marking-TailRing = Круг (хвост) +marking-TailRing-tail_ring = Круг +marking-TailSkeleton = Рисунок скелета (хвост) +marking-TailSkeleton-tail_skeleton = Скелет +marking-TailFluffy = Пушистый (хвост) +marking-TailFluffy-tail_fluffy = Хвост +marking-TailColor = Хвост (цвет) +marking-Tail-tail_m = Хвост + +marking-Head1 = Ушки +marking-Head1-outears = Наружное ухо +marking-Head1-inears = Внутреннее ухо +marking-Head5 = Нос +marking-Head5-nose = Нос +marking-Head7 = Окрас пятна +marking-Head7-patch_SPONSOR_ONLY = Пятно +marking-Head8 = Окрас тигра +marking-Head8-tiger_face = Окрас +marking-Head9 = Окрас тигра 2 +marking-Head9-tiger_head = Окрас +marking-HeadEyesStripes = Полосы (под глазами) +marking-HeadEyesStripes-eye_stripes_head = Полосы +marking-HeadStar = Окрас звезды +marking-HeadStar-star_head = Окрас +marking-HeadRacoon = Окрас енота +marking-HeadRacoon-raccoon-head = Окрас +marking-HeadMane = Грива +marking-HeadMane-mane_head = Грива + +marking-Head4 = Морда (ушки) +marking-Head4-muzzleinears = Морда и ушки +marking-Head2 = Морда +marking-Head2-muzzle = Морда + +marking-Hair1 = Чёлка +marking-Hair2 = Небрежная +marking-Hair3 = Боб +marking-Hair4 = Плетение +marking-Hair5 = Аккуратная +marking-Hair6 = Кудрявая +marking-Hair7 = Завитки +marking-Hair8 = Девичья (ретро) +marking-Hair9 = Длинная +marking-Hair10 = Растрёпанная +marking-Hair11 = Могавк +marking-Hair12 = Косы +marking-Hair13 = Крысиный хвост +marking-Hair14 = Лохматаяы +marking-Hair15 = Колючая +marking-Hair16 = Прямая +marking-Hair17 = Виктория +marking-HairEyebrows = Брови +marking-HairPigtail = Хвостик +marking-HairPonytail = Конский хвост + +marking-FacialHairBeard = Борода +marking-FacialHairCheeks = Бакенбарды +marking-FacialHairMustache = Усы +marking-FacialHairMustache2 = Усы 2 +marking-FacialHairMustache3 = Усы 3 \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Moth/moth.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Moth/moth.ftl new file mode 100644 index 00000000000..c5812f4a955 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Moth/moth.ftl @@ -0,0 +1,118 @@ +marking-MothAntennasDefault = Антенны (Обычные) +marking-MothAntennasCharred = Антенны (Обугленные) +marking-MothAntennasDbushy = Антенны (Кустистые) +marking-MothAntennasDcurvy = Антенны (Закрученные) +marking-MothAntennasDfan = Антенны (Вентилятор) +marking-MothAntennasDpointy = Антенны (Заостренные) +marking-MothAntennasFeathery = Антенны (Перистые) +marking-MothAntennasFirewatch = Антенны (Файрвотч) +marking-MothAntennasGray = Антенны (Серые) +marking-MothAntennasJungle = Антенны (Джунгли) +marking-MothAntennasMaple = Антенны (Клён) +marking-MothAntennasMoffra = Антенны (Мотра) +marking-MothAntennasOakworm = Антенны (Дубовый червь) +marking-MothAntennasPlasmafire = Антенны (Пожар плазмы) +marking-MothAntennasRoyal = Антенны (Королевские) +marking-MothAntennasStriped = Антенны (Полосатые) +marking-MothAntennasWhitefly = Антенны (Белая муха) +marking-MothAntennasWitchwing = Антенны (Ведьмино крыло) +marking-MothWingsDefault = Крылья (Обычные) +marking-MothWingsCharred = Крылья (Обугленные) +marking-MothWingsDbushy = Крылья (Тёмные и Кустистые) +marking-MothWingsDeathhead = Крылья (Рука Смерти) +marking-MothWingsFan = Крылья (Вентилятор) +marking-MothWingsDfan = Крылья (Тёмные и Вентилятор) +marking-MothWingsFeathery = Крылья (Перистые) +marking-MothWingsFirewatch = Крылья (Файрвотч) +marking-MothWingsGothic = Крылья (Готика) +marking-MothWingsJungle = Крылья (Джунгли) +marking-MothWingsLadybug = Крылья (Божья коровка) +marking-MothWingsMaple = Крылья (Клён) +marking-MothWingsMoffra = Крылья (Мотра) +marking-MothWingsOakworm = Крылья (Дубовый червь) +marking-MothWingsPlasmafire = Крылья (Пожар плазмы) +marking-MothWingsPointy = Крылья (Заостренные) +marking-MothWingsRoyal = Крылья (Королевские) +marking-MothWingsStellar = Крылья (Звёздные) +marking-MothWingsStriped = Крылья (Полосатые) +marking-MothWingsSwirly = Крылья (Завихрение) +marking-MothWingsWhitefly = Крылья (Белая муха) +marking-MothWingsWitchwing = Крылья (Ведьмино крыло) +marking-MothChestCharred = Ниан, Грудь (Обугленные) +marking-MothHeadCharred = Ниан, Голова (Обугленные) +marking-MothLLegCharred = Ниан, Левая нога (Обугленные) +marking-MothRLegCharred = Ниан, Правая нога (Обугленные) +marking-MothLArmCharred = Ниан, Левая рука (Обугленные) +marking-MothRArmCharred = Ниан, Правая рука (Обугленные) +marking-MothChestDeathhead = Ниан, Грудь (Рука Смерти) +marking-MothHeadDeathhead = Ниан, Голова (Рука Смерти) +marking-MothLLegDeathhead = Ниан, Левая нога (Рука Смерти) +marking-MothRLegDeathhead = Ниан, Правая нога (Рука Смерти) +marking-MothLArmDeathhead = Ниан, Левая рука (Рука Смерти) +marking-MothRArmDeathhead = Ниан, Правая рука (Рука Смерти) +marking-MothChestFan = Ниан, Грудь (Вентилятор) +marking-MothHeadFan = Ниан, Голова (Вентилятор) +marking-MothLLegFan = Ниан, Левая нога (Вентилятор) +marking-MothRLegFan = Ниан, Правая нога (Вентилятор) +marking-MothLArmFan = Ниан, Левая рука (Вентилятор) +marking-MothRArmFan = Ниан, Правая рука (Вентилятор) +marking-MothChestFirewatch = Ниан, Грудь (Файрвотч) +marking-MothHeadFirewatch = Ниан, Голова (Файрвотч) +marking-MothLLegFirewatch = Ниан, Левая нога (Файрвотч) +marking-MothRLegFirewatch = Ниан, Правая нога (Файрвотч) +marking-MothLArmFirewatch = Ниан, Левая рука (Файрвотч) +marking-MothRArmFirewatch = Ниан, Правая рука (Файрвотч) +marking-MothChestGothic = Ниан, Грудь (Готика) +marking-MothHeadGothic = Ниан, Голова (Готика) +marking-MothLLegGothic = Ниан, Левая нога (Готика) +marking-MothRLegGothic = Ниан, Правая нога (Готика) +marking-MothLArmGothic = Ниан, Левая рука (Готика) +marking-MothRArmGothic = Ниан, Правая рука (Готика) +marking-MothChestJungle = Ниан, Грудь (Джунгли) +marking-MothHeadJungle = Ниан, Голова (Джунгли) +marking-MothLLegJungle = Ниан, Левая нога (Джунгли) +marking-MothRLegJungle = Ниан, Правая нога (Джунгли) +marking-MothLArmJungle = Ниан, Левая рука (Джунгли) +marking-MothRArmJungle = Ниан, Правая рука (Джунгли) +marking-MothChestMoonfly = Ниан, Грудь (Мунфлай) +marking-MothHeadMoonfly = Ниан, Голова (Мунфлай) +marking-MothLLegMoonfly = Ниан, Левая нога (Мунфлай) +marking-MothRLegMoonfly = Ниан, Правая нога (Мунфлай) +marking-MothLArmMoonfly = Ниан, Левая рука (Мунфлай) +marking-MothRArmMoonfly = Ниан, Правая рука (Мунфлай) +marking-MothChestOakworm = Ниан, Грудь (Дубовый червь) +marking-MothHeadOakworm = Ниан, Голова (Дубовый червь) +marking-MothLLegOakworm = Ниан, Левая нога (Дубовый червь) +marking-MothRLegOakworm = Ниан, Правая нога (Дубовый червь) +marking-MothLArmOakworm = Ниан, Левая рука (Дубовый червь) +marking-MothRArmOakworm = Ниан, Правая рука (Дубовый червь) +marking-MothChestPointy = Ниан, Грудь (Заостренные) +marking-MothHeadPointy = Ниан, Голова (Заостренные) +marking-MothLLegPointy = Ниан, Левая нога (Заостренные) +marking-MothRLegPointy = Ниан, Правая нога (Заостренные) +marking-MothLArmPointy = Ниан, Левая рука (Заостренные) +marking-MothRArmPointy = Ниан, Правая рука (Заостренные) +marking-MothChestRagged = Ниан, Грудь (Потрёпанные) +marking-MothHeadRagged = Ниан, Голова (Потрёпанные) +marking-MothLLegRagged = Ниан, Левая нога (Потрёпанные) +marking-MothRLegRagged = Ниан, Правая нога (Потрёпанные) +marking-MothLArmRagged = Ниан, Левая рука (Потрёпанные) +marking-MothRArmRagged = Ниан, Правая рука (Потрёпанные) +marking-MothChestRoyal = Ниан, Грудь (Королевские) +marking-MothHeadRoyal = Ниан, Голова (Королевские) +marking-MothLLegRoyal = Ниан, Левая нога (Королевские) +marking-MothRLegRoyal = Ниан, Правая нога (Королевские) +marking-MothLArmRoyal = Ниан, Левая рука (Королевские) +marking-MothRArmRoyal = Ниан, Правая рука (Королевские) +marking-MothChestWhitefly = Ниан, Грудь (Белая муха) +marking-MothHeadWhitefly = Ниан, Голова (Белая муха) +marking-MothLLegWhitefly = Ниан, Левая нога (Белая муха) +marking-MothRLegWhitefly = Ниан, Правая нога (Белая муха) +marking-MothLArmWhitefly = Ниан, Левая рука (Белая муха) +marking-MothRArmWhitefly = Ниан, Правая рука (Белая муха) +marking-MothChestWitchwing = Ниан, Грудь (Ведьмино крыло) +marking-MothHeadWitchwing = Ниан, Голова (Ведьмино крыло) +marking-MothLLegWitchwing = Ниан, Левая нога (Ведьмино крыло) +marking-MothRLegWitchwing = Ниан, Правая нога (Ведьмино крыло) +marking-MothLArmWitchwing = Ниан, Левая рука (Ведьмино крыло) +marking-MothRArmWitchwing = Ниан, Правая рука (Ведьмино крыло) diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Vulpkanin/vulpkanin.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Vulpkanin/vulpkanin.ftl new file mode 100644 index 00000000000..aadd295a962 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Vulpkanin/vulpkanin.ftl @@ -0,0 +1,21 @@ +marking-ADTVulpkanintail1 = Хвост 1 +marking-ADTVulpkanintail2 = Хвост 2 +marking-ADTVulpkanintailAll = Весь хвост +marking-ADTVulpkaninear = Окрас ушей +marking-ADTVulpkaninearBack = Окраска ушей +marking-ADTVulpkaninmuzzle = Окрас лица +marking-ADTVulpkaninmuzzleear = Окрас лица и ушей +marking-ADTVulpkaninnose = Окрас носа +marking-ADTVulpkaninpoints_fade = Окрас лица и ушей +marking-ADTVulpkaninpoints_sharp = Окрас лица и ушей (острые) +marking-ADTVulpkaninskull_sponsor = Рисунок черепа +marking-ADTVulpkanintiger_face = Тигриные полосы (лицо) +marking-ADTVulpkanintiger_head = Тигриные полосы (голова) +marking-ADTVulpkaninaltpointsfadebelly = Окрас лап, груди и живота +marking-ADTVulpkaninbellycrest = Окрас живота +marking-ADTVulpkanincrestpoints = Точки на лапах, груди и животе +marking-ADTVulpkaninfoxbelly = Лисий живот +marking-ADTVulpkaninfullbelly = Окрас живота +marking-ADTVulpkaninpointsfade = Окрас лап +marking-ADTVulpkaninpointsfadebelly = Пятнистый окрас лап, груди и живота +marking-ADTVulpkaninsharppoints = Резкие пятна \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Vulpkanin/vulpkanin_hair.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Vulpkanin/vulpkanin_hair.ftl new file mode 100644 index 00000000000..848a4378627 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Customization/Vulpkanin/vulpkanin_hair.ftl @@ -0,0 +1,193 @@ +marking-ADTVulpkaninAbhara = Абхара +marking-ADTVulpkaninAnite = Анита +marking-ADTVulpkaninApollo = Аполло +marking-ADTVulpkaninBelle = Белль +marking-ADTVulpkaninBraided = Плетённая +marking-ADTVulpkaninCurl = Завиток +marking-ADTVulpkaninHair_sponsor = Хаер +marking-ADTVulpkaninHawk = Ястреб +marking-ADTVulpkaninJagged_sponsor_hair = Зубчатая +marking-ADTVulpkaninKajam1 = "Каджам 1" +marking-ADTVulpkaninKajam2 = "Каджам 2" +marking-ADTVulpkaninKeid = Кейд +marking-ADTVulpkaninKleeia = Клея +marking-ADTVulpkaninMizar = Мизар +marking-ADTVulpkaninRaine = Рейн +marking-ADTVulpkaninRough = Грубая +marking-ADTVulpkaninShort = "Простая 1" +marking-ADTVulpkaninShort2 = "Простая 2" +marking-ADTVulpkaninSpike = Спайк +marking-ADTVulpkaninYkiteru_sponsor_hair = Юкитеру +marking-ADTVulpkaninAfro = Афро +marking-ADTVulpkaninAfro2 = Афро 2 +marking-ADTVulpkaninBigafro = Афро (Большая) +marking-ADTVulpkaninAntenna = Ахоге +marking-ADTVulpkaninBalding = Лысеющий +marking-ADTVulpkaninBedhead = Небрежная +marking-ADTVulpkaninBedheadv2 = Небрежная 2 +marking-ADTVulpkaninBedheadv3 = Небрежная 3 +marking-ADTVulpkaninLongBedhead = Небрежная (Длинная) +marking-ADTVulpkaninFloorlengthBedhead = Небрежная (До пола) +marking-ADTVulpkaninBeehive = Улей +marking-ADTVulpkaninBeehivev2 = Улей 2 +marking-ADTVulpkaninBob = Каре +marking-ADTVulpkaninBob2 = Каре 2 +marking-ADTVulpkaninBobcut = Каре 3 +marking-ADTVulpkaninBob4 = Каре 4 +marking-ADTVulpkaninBobcurl = Каре (Завитки) +marking-ADTVulpkaninBoddicker = Боддикер +marking-ADTVulpkaninBowlcut = Горшок +marking-ADTVulpkaninBowlcut2 = Горшок 2 +marking-ADTVulpkaninBraid = Плетение (До пола) +marking-ADTVulpkaninBraidfront = Плетение (Спереди) +marking-ADTVulpkaninBraid2 = Плетение (Высокое) +marking-ADTVulpkaninHbraid = Плетение (Низкое) +marking-ADTVulpkaninShortbraid = Плетение (Короткое) +marking-ADTVulpkaninBraidtail = Плетёный хвостик +marking-ADTVulpkaninBun = Пучок +marking-ADTVulpkaninBunhead2 = Пучок 2 +marking-ADTVulpkaninBun3 = Пучок 3 +marking-ADTVulpkaninLargebun = Пучок (Большой) +marking-ADTVulpkaninManbun = Пучок (Мужской) +marking-ADTVulpkaninTightbun = Пучок (Затянутый) +marking-ADTVulpkaninBusiness = Деловая +marking-ADTVulpkaninBusiness2 = Деловая 2 +marking-ADTVulpkaninBusiness3 = Деловая 3 +marking-ADTVulpkaninBusiness4 = Деловая 4 +marking-ADTVulpkaninBuzzcut = Баз кат +marking-ADTVulpkaninCia = ЦРУ +marking-ADTVulpkaninCoffeehouse = Кофейная +marking-ADTVulpkaninCombover = Зачёс (Назад) +marking-ADTVulpkaninCornrows = Корнроу +marking-ADTVulpkaninCornrows2 = Корнроу 2 +marking-ADTVulpkaninCornrowbun = Корнроу (Пучок) +marking-ADTVulpkaninCornrowbraid = Корнроу (Косичка) +marking-ADTVulpkaninCornrowtail = Корнроу (Хвостик) +marking-ADTVulpkaninCrewcut = Крю-кат +marking-ADTVulpkaninCurls = Завитки +marking-ADTVulpkaninC = Подстриженная +marking-ADTVulpkaninDandypompadour = Денди Помпадур +marking-ADTVulpkaninDevilock = Дьявольский замок +marking-ADTVulpkaninDoublebun = Двойной пучок +marking-ADTVulpkaninDreads = Дреды +marking-ADTVulpkaninDrillruru = Дрели +marking-ADTVulpkaninDrillhairextended = Дрели (Распущенные) +marking-ADTVulpkaninEmo = Эмо +marking-ADTVulpkaninEmofringe = Эмо (Чёлка) +marking-ADTVulpkaninNofade = Фэйд (Отсутствует) +marking-ADTVulpkaninHighfade = Фэйд (Высокий) +marking-ADTVulpkaninMedfade = Фэйд (Средний) +marking-ADTVulpkaninLowfade = Фэйд (Низкий) +marking-ADTVulpkaninBaldfade = Фэйд (Лысый) +marking-ADTVulpkaninFeather = Перья +marking-ADTVulpkaninFather = Отец +marking-ADTVulpkaninSargeant = Флэттоп +marking-ADTVulpkaninFlair = Флейр +marking-ADTVulpkaninBigflattop = Флэттоп (Большой) +marking-ADTVulpkaninFlow = Флоу +marking-ADTVulpkaninGelled = Уложенная +marking-ADTVulpkaninGentle = Аккуратная +marking-ADTVulpkaninHalfbang = Полурасчесанная +marking-ADTVulpkaninHalfbang2 = Полурасчесанная 2 +marking-ADTVulpkaninHalfshaved = Полувыбритая +marking-ADTVulpkaninHedgehog = Ёжик +marking-ADTVulpkaninHimecut = Химэ +marking-ADTVulpkaninHimecut2 = Химэ 2 +marking-ADTVulpkaninShorthime = Химэ (Короткая) +marking-ADTVulpkaninHimeup = Химэ (Укладка) +marking-ADTVulpkaninHitop = Хайтоп +marking-ADTVulpkaninJade = Джейд +marking-ADTVulpkaninJensen = Дженсен +marking-ADTVulpkaninJoestar = Джостар +marking-ADTVulpkaninKeanu = Киану +marking-ADTVulpkaninKusanagi = Кусанаги +marking-ADTVulpkaninLong = Длинная 1 +marking-ADTVulpkaninLong2 = Длинная 2 +marking-ADTVulpkaninLong3 = Длинная 3 +marking-ADTVulpkaninLongovereye = Длинная (Через глаз) +marking-ADTVulpkaninLbangs = Длинная (Чёлка) +marking-ADTVulpkaninLongemo = Длинная (Эмо) +marking-ADTVulpkaninLongfringe = Длинная чёлка +marking-ADTVulpkaninLongsidepart = Длинная сайд-парт +marking-ADTVulpkaninMegaeyebrows = Широкие брови +marking-ADTVulpkaninMessy = Растрёпанная +marking-ADTVulpkaninModern = Современная +marking-ADTVulpkaninMohawk = Могавк +marking-ADTVulpkaninNitori = Нитори +marking-ADTVulpkaninReversemohawk = Могавк (Обратный) +marking-ADTVulpkaninUnshavenMohawk = Могавк (Небритый) +marking-ADTVulpkaninMulder = Малдер +marking-ADTVulpkaninOdango = Оданго +marking-ADTVulpkaninOmbre = Омбре +marking-ADTVulpkaninOneshoulder = На одно плечо +marking-ADTVulpkaninShortovereye = Через глаз +marking-ADTVulpkaninOxton = Окстон +marking-ADTVulpkaninParted = С пробором +marking-ADTVulpkaninPart = С пробором (Сбоку) +marking-ADTVulpkaninKagami = Хвостики +marking-ADTVulpkaninPigtails = Хвостики 2 +marking-ADTVulpkaninPigtails2 = Хвостики 3 +marking-ADTVulpkaninPixie = Пикси +marking-ADTVulpkaninPompadour = Помпадур +marking-ADTVulpkaninBigpompadour = Помпадур (Большая) +marking-ADTVulpkaninPonytail = Хвостик +marking-ADTVulpkaninPonytail2 = Хвостик 2 +marking-ADTVulpkaninPonytail3 = Хвостик 3 +marking-ADTVulpkaninPonytail4 = Хвостик 4 +marking-ADTVulpkaninPonytail5 = Хвостик 5 +marking-ADTVulpkaninPonytail6 = Хвостик 6 +marking-ADTVulpkaninPonytail7 = Хвостик 7 +marking-ADTVulpkaninHighponytail = Хвостик (Высокий) +marking-ADTVulpkaninStail = Хвостик (Короткий) +marking-ADTVulpkaninLongstraightponytail = Хвостик (Длинный) +marking-ADTVulpkaninCountry = Хвостик (Деревенский) +marking-ADTVulpkaninFringetail = Хвостик (Чёлка) +marking-ADTVulpkaninSidetail = Хвостик (Сбоку) +marking-ADTVulpkaninSidetail2 = Хвостик (Сбоку) 2 +marking-ADTVulpkaninSidetail3 = Хвостик (Сбоку) 3 +marking-ADTVulpkaninSidetail4 = Хвостик (Сбоку) 4 +marking-ADTVulpkaninSpikyponytail = Хвостик (Шипастый) +marking-ADTVulpkaninPoofy = Пышная +marking-ADTVulpkaninQuiff = Квифф +marking-ADTVulpkaninRonin = Ронин +marking-ADTVulpkaninShaved = Бритая +marking-ADTVulpkaninShavedpart = Бритая часть +marking-ADTVulpkaninShortbangs = Каре (Чёлка) +marking-ADTVulpkaninA = Короткая +marking-ADTVulpkaninShorthair2 = Короткая 2 +marking-ADTVulpkaninShorthair3 = Короткая 3 +marking-ADTVulpkaninD = Короткая 5 +marking-ADTVulpkaninE = Короткая 6 +marking-ADTVulpkaninF = Короткая 7 +marking-ADTVulpkaninShorthairg = Короткая 8 +marking-ADTVulpkanin80s = Короткая (80-ые) +marking-ADTVulpkaninRosa = Короткая (Роза) +marking-ADTVulpkaninB = Волосы до плеч +marking-ADTVulpkaninSidecut = Боковой вырез +marking-ADTVulpkaninSkinhead = Бритоголовый +marking-ADTVulpkaninProtagonist = Слегка длинная +marking-ADTVulpkaninSpikey = Колючая +marking-ADTVulpkaninSpiky = Колючая 2 +marking-ADTVulpkaninSpiky2 = Колючая 3 +marking-ADTVulpkaninSwept = Зачёс назад +marking-ADTVulpkaninSwept2 = Зачёс назад 2 +marking-ADTVulpkaninThinning = Редеющая +marking-ADTVulpkaninThinningfront = Редеющая (Спереди) +marking-ADTVulpkaninThinningrear = Редеющая (Сзади) +marking-ADTVulpkaninTopknot = Пучок на макушке +marking-ADTVulpkaninTressshoulder = Коса на плече +marking-ADTVulpkaninTrimmed = Под машинку +marking-ADTVulpkaninTrimflat = Под машинку (Плоская) +marking-ADTVulpkaninTwintail = Два хвостика +marking-ADTVulpkaninUndercut = Андеркат +marking-ADTVulpkaninUndercutleft = Андеркат (Слева) +marking-ADTVulpkaninUndercutright = Андеркат (Справа) +marking-ADTVulpkaninUnkept = Неухоженная +marking-ADTVulpkaninUpdo = Высокая +marking-ADTVulpkaninVlong = Очень длинная +marking-ADTVulpkaninLongest = Очень длинная 2 +marking-ADTVulpkaninLongest2 = Очень длинная (Через глаз) +marking-ADTVulpkaninVeryshortovereyealternate = Очень короткая (Через глаз альт.) +marking-ADTVulpkaninVlongfringe = Очень короткая (Челка) +marking-ADTVulpkaninVolaju = Воладзю +marking-ADTVulpkaninWisp = Пряди diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Player/Tajaran.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Player/Tajaran.ftl new file mode 100644 index 00000000000..824e0efbdae --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Player/Tajaran.ftl @@ -0,0 +1,2 @@ +ent-MobTajaran = Урист МакТаяр + .desc = { ent-BaseMobTajaran.desc } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Species/Tajaran.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Species/Tajaran.ftl new file mode 100644 index 00000000000..d2a7b064041 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Species/Tajaran.ftl @@ -0,0 +1,4 @@ +ent-BaseMobTajaran = Таяр McHands + .desc = { ent-BaseMobSpecies.desc } +ent-MobTajaranDummy = Tajaran McHands + .desc = Манекен-таяран, предназначенный для использования при настройке персонажа. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Species/moth.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Species/moth.ftl new file mode 100644 index 00000000000..8287a7c9fa3 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Mobs/Species/moth.ftl @@ -0,0 +1,5 @@ +ent-BaseMobMoth = Урист МакНиан + .desc = { ent-BaseMobSpeciesOrganic.desc } + .suffix = Ниан +ent-MobMothDummy = { ent-BaseMobMoth } + .desc = { ent-BaseMobMoth.desc } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.ftl new file mode 100644 index 00000000000..240f89260a2 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Drinks/drinks_cans.ftl @@ -0,0 +1,2 @@ +ent-ADTDrinkNoStopCan = Банка энергетика NoStop + .desc = Натуральный энергетический напиток, в нем нет сахара! diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Food/frozen.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Food/frozen.ftl new file mode 100644 index 00000000000..5a924fba3ef --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Food/frozen.ftl @@ -0,0 +1,309 @@ +#======= +#Эскимо +#======= + + +ent-ADTFoodFrozenMelonPopsicle = эскимо со вкусом дыни + .desc = Идеальное мороженое от жары. + +ent-ADTFoodFrozenPopsicleMelon = эскимо со вкусом дыни + .desc = Идеальное мороженое от жары. + +ent-ADTFoodFrozenOrangePopsicle = эскимо со вкусом апельсина + .desc = Приятное апельсиновое мороженое с кислинкой. + +ent-ADTFoodFrozenPopsicleOrange = эскимо со вкусом апельсина + .desc = Приятное апельсиновое мороженое с кислинкой. + +ent-ADTFoodFrozenWatermelonPopsicle = эскимо со вкусом арбуза + .desc = Ммм, арбузы. Сладко и ярко. + +ent-ADTFoodFrozenPopsicleWatermelon = эскимо со вкусом арбуза + .desc = Ммм, арбузы. Сладко и ярко. + +ent-ADTFoodFrozenThreeFlavorsPopsicle = эскимо с тремя вкусами + .desc = Клубника, ваниль и шоколад. Три вкуса в одном эскимо! + +ent-ADTFoodFrozenPopsicleThreeFlavors = эскимо с тремя вкусами + .desc = Клубника, ваниль и шоколад. Три вкуса в одном эскимо! + +ent-ADTFoodFrozenChocolatePopsicleWithNuts = шолоколадный эскимо с орехами + .desc = Обычный эскимо со вкусом шоколада, посыпанное арахисовой крошкой. + +ent-ADTFoodFrozenPopsicleChocolateWithNuts = шолоколадный эскимо с орехами + .desc = Обычный эскимо со вкусом шоколада, посыпанное арахисовой крошкой. + +ent-ADTFoodFrozenChocolatePopsicle = шолоколадный эскимо + .desc = Обычный эскимо со вкусом шоколада. + +ent-ADTFoodFrozenPopsicleChocolate = шолоколадный эскимо + .desc = Обычный эскимо со вкусом шоколада. + +ent-ADTFoodFrozenPineappleChocolate = эскимо со вкусом ананаса в шоколаде + .desc = Мороженное в форме ломтика ананаса, покрытого шоколадом. + +ent-ADTFoodFrozenPopsicleApple = яблочный эскимо + .desc = Приятный эскимо с кисло-сладким вкусом. + +ent-ADTFoodFrozenPopsicleBanana = банановый эскимо + .desc = Фруктовое мороженое со вкусом банана. Любимое лакомство клоунов и обезьян. + +ent-ADTFoodFrozenPopsicleMole = эскимо в виде моли + .desc = НЕ ЕШЬ МЕНЯ!!! + +ent-ADTFoodFrozenPopsicleSeaSalt = эскимо с морской солью + .desc = Боже, кто это придумал? Увольте человека, который предложил это! + + +#======= +#Стаканчики +#======= + + +ent-ADTFoodFrozenChocolateFreezy = стаканчик шоколадного мороженого + .desc = Золотая классика. + +ent-ADTFoodFrozenChocolateFreezyCaramel = стаканчик шоколадного мороженого с карамелью + .desc = Золотая классика. С карамелью внутри. + +ent-ADTFoodFrozenSpaceFreezyCaramel = стаканчик комического мороженого c карамелью + .desc = Имеет странный вкус. Карамельно. + +ent-ADTFoodFrozenThreeFlavorsFreezyCaramel = стаканчик космического мороженого с тремя вкусами и карамелью + .desc = Очень легкое мороженое с тремя вкусами. С карамелью. + +ent-ADTFoodFrozenSpaceFreezy = стаканчик космического мороженого + .desc = Вкус просто космос! + +ent-ADTFoodFrozenThreeFlavorsFreezy = стаканчик космического мороженого с тремя вкусами + .desc = Очень легкое мороженое с тремя вкусами. + +ent-ADTFoodFrozenVanillaFreezy = стаканчик ванильного мороженого + .desc = Классический вкус. + +ent-ADTFoodFrozenVanillaFreezyCaramel = стаканчик ванильного мороженого с карамелью + .desc = Классический вкус. С карамелью. + + +#======= +#Пломбир +#======= + + +ent-ADTFoodFrozenChocolateIceCream = шоколадный пломбир + .desc = Классическое шоколадное мороженое. + +ent-ADTFoodFrozenSpaceIceCream = космический пломбир + .desc = Вкус просто космос! + +ent-ADTFoodFrozenStrawberryIceCream = клубничный пломбир + .desc = Обычный пломбир со вкусом клубники. + +ent-ADTFoodFrozenVanillaIceCream = ванильный пломбир + .desc = Очень популярный вкус среди жителей СССП, нежный, легкий и не приторно сладкий вкус. + + +#======= +#Рожок +#======= + + +ent-ADTFoodFrozenIceCreamCone = вафельный рожок + .desc = Пустой рожок. + +ent-ADTFoodFrozenIceCreamWafflecone = шоколадный рожок + .desc = Шолоколадное мороженое в вафельном рожке. + +ent-ADTFoodFrozenIceCreamWaffleconeNuts = шоколадный рожок с орехами + .desc = Шолоколадное мороженое с орешками в вафельном рожке. + +ent-ADTFoodFrozenWafflecone = рожок + .desc = Пустой вафельный рожок. Лучше, чем ничего. + + +#======= +# Другое +#======= + + +ent-ADTFoodFrozenHonkdae = мороженое ХонкДэй + .desc = Забавное мороженое со вкусом банана и персиками, напоминающее знакомый силует. + +ent-ADTFoodFrozenSundae = мороженое Сандэй + .desc = Вкусное мороженое в удобной съедобной формочке. + + +#======= +#Фруктовый лед +#======= + + +ent-ADTFoodFrozenPopsicleBananaFruitIce = банановый фруктовый лёд + .desc = ХОНК. + +ent-ADTFoodFrozenPopsicleBerryFruitIce = мятно-ягодный фруктовый лёд + .desc = Освежающий фруктовый лед со вкусом мяты и ягод. + +ent-ADTFoodFrozenPopsicleGrapeFruitIce = виноградный фруктовый лёд + .desc = фруктовый лед со вкусом винограда и приятной кислинкой. + +ent-ADTFoodFrozenPopsicleJumbo = шоколадное мороженное НТ + .desc = На вкус как вся ваша зарплата - дешёво. + +ent-ADTFoodFrozenPopsicleMangoFruitIce = манговый фруктовый лёд + .desc = Освежающий фруктовый лед со вкусом манго, нежный и очень сладкий. + + +ent-ADTFoodFrozenPopsicleStrawberryFruitIce = клубничный фруктовый лёд + .desc = Освежающий фруктовый лед со вкусом клубники. + + +#======= +# Упаковки с мороженым +#======= + + +ent-ADTFoodFrozenPackedChocolateFreezy = { ent-ADTFoodFrozenChocolateFreezy } + .desc = { ent-ADTFoodFrozenChocolateFreezy.desc } + +ent-ADTFoodFrozenPackedChocolateIceCream = { ent-ADTFoodFrozenChocolateIceCream } + .desc = { ent-ADTFoodFrozenChocolateIceCream.desc } + +ent-ADTFoodFrozenPackedChocolatePopsicle = { ent-ADTFoodFrozenChocolatePopsicle } + .desc = { ent-ADTFoodFrozenChocolatePopsicle.desc } + +ent-ADTFoodFrozenPackedChocolatePopsicleWithNuts = { ent-ADTFoodFrozenChocolatePopsicleWithNuts } + .desc = { ent-ADTFoodFrozenChocolatePopsicleWithNuts.desc } + +ent-ADTFoodFrozenPackedIceCreamWafflecone = { ent-ADTFoodFrozenIceCreamWafflecone } + .desc = { ent-ADTFoodFrozenIceCreamWafflecone.desc } + +ent-ADTFoodFrozenPackedIceCreamWaffleconeNuts = { ent-ADTFoodFrozenIceCreamWaffleconeNuts } + .desc = { ent-ADTFoodFrozenIceCreamWaffleconeNuts.desc } + +ent-ADTFoodFrozenPackedJumboPopsicle = { ent-ADTFoodFrozenPopsicleJumbo } + .desc = { ent-ADTFoodFrozenPopsicleJumbo.desc } + +ent-ADTFoodFrozenPackedMelonPopsicle = { ent-ADTFoodFrozenMelonPopsicle } + .desc = { ent-ADTFoodFrozenMelonPopsicle.desc } + +ent-ADTFoodFrozenPackedOrangePopsicle = { ent-ADTFoodFrozenOrangePopsicle } + .desc = { ent-ADTFoodFrozenOrangePopsicle.desc } + +ent-ADTFoodFrozenPackedPineappleChocolate = { ent-ADTFoodFrozenPineappleChocolate } + .desc = { ent-ADTFoodFrozenPineappleChocolate.desc } + +ent-ADTFoodFrozenPackedPopsicleApple = { ent-ADTFoodFrozenPopsicleApple } + .desc = { ent-ADTFoodFrozenPopsicleApple.desc } + +ent-ADTFoodFrozenPackedPopsicleBanana = { ent-ADTFoodFrozenPopsicleBanana } + .desc = { ent-ADTFoodFrozenPopsicleBanana.desc } + +ent-ADTFoodFrozenPackedPopsicleMole = { ent-ADTFoodFrozenPopsicleMole } + .desc = { ent-ADTFoodFrozenPopsicleMole.desc } + +ent-ADTFoodFrozenPackedRandomFruitIce = смешанный фруктовый лёд + .desc = Who's that fruitIce? + +ent-ADTFoodFrozenPackedPopsicleSeaSalt = { ent-ADTFoodFrozenPopsicleSeaSalt } + .desc = { ent-ADTFoodFrozenPopsicleSeaSalt.desc } + +ent-ADTFoodFrozenPackedSpaceFreezy = { ent-ADTFoodFrozenSpaceFreezy } + .desc = { ent-ADTFoodFrozenSpaceFreezy.desc } + +ent-ADTFoodFrozenPackedSpaceIceCream = { ent-ADTFoodFrozenSpaceIceCream } + .desc = { ent-ADTFoodFrozenSpaceIceCream.desc } + +ent-ADTFoodFrozenPackedStrawberryIceCream = { ent-ADTFoodFrozenStrawberryIceCream } + .desc = { ent-ADTFoodFrozenStrawberryIceCream.desc } + +ent-ADTFoodFrozenPackedThreeFlavorsFreezy = { ent-ADTFoodFrozenVanillaFreezyCaramel } + .desc = { ent-ADTFoodFrozenVanillaFreezyCaramel.desc } + +ent-ADTFoodFrozenPackedThreeFlavorsPopsicle = { ent-ADTFoodFrozenThreeFlavorsPopsicle } + .desc = { ent-ADTFoodFrozenThreeFlavorsPopsicle.desc } + +ent-ADTFoodFrozenPackedVanillaFreezy = { ent-ADTFoodFrozenVanillaFreezy } + .desc = { ent-ADTFoodFrozenVanillaFreezy.desc } + +ent-ADTFoodFrozenPackedVanillaIceCream = { ent-ADTFoodFrozenVanillaIceCream } + .desc = { ent-ADTFoodFrozenVanillaIceCream.desc } + +ent-ADTFoodFrozenPackedWatermelonPopsicle = { ent-ADTFoodFrozenWatermelonPopsicle } + .desc = { ent-ADTFoodFrozenWatermelonPopsicle.desc } + + +#======= +# Мусор +#======= + + +ent-ADTFoodFrozenChocolateFreezyTrash = обертка от стаканчика шоколадного мороженого + .desc = Мусор + +ent-ADTFoodFrozenChocolateIceCreamTrash = обертка от шоколадного пломбира + .desc = Мусор + +ent-ADTFoodFrozenTrash = обертка от мороженого + .desc = Мусор + +ent-ADTFoodFrozenChocolatePopsicleWithNutsTrash = обертка от шоколадного эскимо с орехами + .desc = Мусор + +ent-ADTFoodFrozenIceCreamWaffleconeTrash = обертка от шоколадного рожка + .desc = Мусор + +ent-ADTFoodFrozenIceCreamWaffleconeNutsTrash = обертка от шоколадного рожка с орехами + .desc = Мусор + +ent-ADTFoodFrozenJumboPopsicleTrash = обертка от мороженого НТ + .desc = Мусор + +ent-ADTFoodFrozenMelonPopsicleTrash = обертка от эскимо со вкусом дыни + .desc = Мусор + +ent-ADTFoodFrozenOrangePopsicleTrash = обертка от эскимо со вкусом апельсина + .desc = Мусор + +ent-ADTFoodFrozenPineappleChocolateTrash = обертка от ананасового эскимо с шоколада + .desc = Мусор + +ent-ADTFoodFrozenPopsicleAppleTrash = обертка от яблочного эскимо + .desc = Мусор + +ent-ADTFoodFrozenPopsicleBananaTrash = обертка от эскимо со вкусом банана + .desc = Мусор + +ent-ADTFoodFrozenPopsicleMoleTrash = обертка от эскимо со вкусом моли + .desc = Мусор + +ent-ADTFoodFrozenRandomFruitIceTrash = обертка от мороженого + .desc = Мусор + +ent-ADTFoodFrozenPopsicleSeaSaltTrash = обертка от эскимо с морской солью + .desc = Мусор + +ent-ADTFoodFrozenSpaceFreezyTrash = обертка от стаканчика комического мороженого c карамелью + .desc = Мусор + +ent-ADTFoodFrozenSpaceIceCreamTrash = обертка от космического пломбира + .desc = Мусор + +ent-ADTFoodFrozenStrawberryIceCreamTrash = обертка от клубничного пломбира + .desc = Мусор + +ent-ADTFoodFrozenThreeFlavorsFreezyTrash = обертка от стаканчика космического мороженого с тремя вкусами + .desc = Мусор + +ent-ADTFoodFrozenThreeFlavorsPopsicleTrash = обертка от эскимо с тремя вкусами + .desc = Мусор + +ent-ADTFoodFrozenVanillaFreezyTrash = обертка от стаканчика ванильного мороженого + .desc = Мусор + +ent-ADTFoodFrozenVanillaIceCreamTrash = обертка от ванильного пломбира + .desc = Мусор + +ent-ADTFoodFrozenWatermelonPopsicleTrash = обертка от эскимо со вкусом арбуза + .desc = Мусор + diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Food/snacks.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Food/snacks.ftl new file mode 100644 index 00000000000..5d2bbb53894 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Consumable/Food/snacks.ftl @@ -0,0 +1,112 @@ + +#Чипсеки + +ent-ADTFoodSnackChipsOnionAndSourcream = чипсы со вкусом зелёного лука и сметана + .desc = Золотая классика. + +ent-ADTFoodSnackChipsShrimp = чипсы со вкусом креветки + .desc = Для тех, кто любит вкус креветок, но не может позволить себе их купить. + +ent-ADTFoodSnackChipsSpace = космомические Чипсы + .desc = Кукурузные чипсы в форме треугольника со вкусом сыра чеддер - идеальная закуска для игр. + +ent-ADTFoodSnackChipsSpicy = чипсы ФлеймиХат + .desc = Эти чипсы очень хороши, если вы хотите превратить свой желудок в Адское пекло. Тем, у кого проблемы с желудком, лучше их не есть... + +#Сушеное мясо + +ent-ADTFoodSnackDriedBeef = вяленая говядина + .desc = Толстые куски вяленой говядины. Очень долго хранится, а в мясе много белка, хороший вещь для похода + +ent-ADTFoodSnackDriedChicken = сушеное куриное мясо + .desc = Хорошая закуска для охоты. + +ent-ADTFoodSnackDriedHorse = сушеная конина + .desc = Конина - самое вкусное мясо, в ней низкое содержание жира и богатое содержание белка. + +ent-ADTFoodSnackDriedPig = вяленая свинина + .desc = Впринципе хорошая закуска. + +#Мусор + +ent-ADTFoodPacketChipsOnionAndSourcreamTrash = пустая упаковка от чипсов со вкусом зелёного лука и сметана + .desc = Мусор + +ent-ADTFoodPacketChipsShrimpTrash = пустая упаковка от чипсов со вкусом креветки + .desc = Мусор + +ent-ADTFoodPacketChipsSpaceTrash = пустая упаковка от Космомических чипсов + .desc = Мусор + +ent-ADTFoodPacketSpicyTrash = пустая упаковка от чипсов ФлеймиХат + .desc = Мусор + +ent-ADTFoodPacketBeefTrash = пустая упаковка от вяленой говядины + .desc = Мусор + +ent-ADTFoodPacketChickenTrash = пустая упаковка от сушеного куриного мяся + .desc = Мусор + +ent-ADTFoodPacketHorseTrash = пустая упаковка от сушеной конины + .desc = Мусор + +ent-ADTFoodPacketPigTrash = пустая упаковка от вяленой свинины + .desc = Мусор + +# Батончики упакованный + +ent-ADTFoodSnackChocolateBarChocoPack = шоколадный батончик + .desc = Батончик с начинкой из молочного крема, покрытый шоколадом. + +ent-ADTFoodSnackChocolateBarCoconutPack = кокосовый батончик + .desc = Батончик с мякотью кокоса, покрытая лёгким молочным шоколадом. + +ent-ADTFoodSnackChocolateBarEnergyPack = энергетический батончик + .desc = Питательный батончик, из смеси злаков, фруктов и орехов, хороший перекус для спорта. НЕ ТОРМОЗИ! + +ent-ADTFoodSnackChocolateBarNutsPack = шоколадный батончик с орехами + .desc = Батончик с начинкой из молочного крема с арахисом, покрытый шоколадом. + +ent-ADTFoodSnackChocolateBarPinkPack = розовый шоколадный батончик + .desc = Белый молочный шоколад со вкусом клубники обволакивает легкое молочное кремовое наполнение. + +ent-ADTFoodSnackChocolateBarTwoPack = двойной батончик + .desc = Выбирай, на чьей ты стороне? + +# Батончики +ent-ADTFoodSnackChocolateBarChoco = шоколадный батончик + .desc = Батончик с начинкой из молочного крема, покрытый шоколадом. + +ent-ADTFoodSnackChocolateBarCoconut = кокосовый батончик + .desc = Батончик с мякотью кокоса, покрытая лёгким молочным шоколадом. + +ent-ADTFoodSnackChocolateBarEnergy = энергетический батончик + .desc = Питательный батончик, из смеси злаков, фруктов и орехов, хороший перекус для спорта. НЕ ТОРМОЗИ! + +ent-ADTFoodSnackChocolateBarNuts = шоколадный батончик с орехами + .desc = Батончик с начинкой из молочного крема с арахисом, покрытый шоколадом. + +ent-ADTFoodSnackChocolateBarPink = розовый шоколадный батончик + .desc = Белый молочный шоколад со вкусом клубники обволакивает легкое молочное кремовое наполнение. + +ent-ADTFoodSnackChocolateBarTwo = двойной батончик + .desc = Выбирай, на чьей ты стороне? + +# Обертки +ent-ADTFoodSnackChocolateTrashChoco = обертка от шоколадного батончика + .desc = Мусор + +ent-ADTFoodSnackChocolateTrashCoconut = обертка от Кокосового батончика + .desc = Мусор + +ent-ADTFoodSnackChocolateTrashEnergy = обертка от Энергетического батончика + .desc = Мусор + +ent-ADTFoodSnackChocolateTrashNuts = обертка от Шоколадного батончика с орехами + .desc = Мусор + +ent-ADTFoodSnackChocolateTrashPink = обертка от Розовый шоколадного батончика + .desc = Мусор + +ent-ADTFoodSnackChocolateTrashTwo = обертка от Двойного батончика + .desc = Мусор diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Device/encryption_keys.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Device/encryption_keys.ftl new file mode 100644 index 00000000000..f3484952b83 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Device/encryption_keys.ftl @@ -0,0 +1,2 @@ +ent-ADTEncryptionKeyLawyer = Ключ шифрования юридического отдела. + .desc = Переговоры особой важности происходят по этой частоте. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Device/pda.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Device/pda.ftl new file mode 100644 index 00000000000..8e9a814064f --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Device/pda.ftl @@ -0,0 +1,8 @@ +ent-MagistratPDA = КПК Магистрата + .desc = В заметках данного КПК можно найти компромат на каждого из глав. + +ent-ADTPathologistPDA = КПК патологоанатома + .desc = От него веет прохладой. + +ent-ADTRoboticistPDA = КПК робототехника + .desc = Почему это всё ещё не робот?! diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Misc/identification_cards.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Misc/identification_cards.ftl new file mode 100644 index 00000000000..08cf8797b42 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Misc/identification_cards.ftl @@ -0,0 +1,2 @@ +ent-MagistratIDCard = ID Магистрата + .desc = Серебрянная карта с значком Юриста. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Misc/rubber_stamp.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Misc/rubber_stamp.ftl new file mode 100644 index 00000000000..2742143b492 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Misc/rubber_stamp.ftl @@ -0,0 +1,3 @@ +ent-RubberStampMagisrat = Печать магистрата + .suffix = DO NOT MAP + .desc = Выглядит угрожающее. От нее веет неоспоримой мощью и величием. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Tools/tools.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Tools/tools.ftl new file mode 100644 index 00000000000..1d1fa8a53a2 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Objects/Tools/tools.ftl @@ -0,0 +1,7 @@ +ent-ADTRPD = РРТ + .desc = Ручной раздатчик труб используется для быстрого строительства конструкциий, используемых при эксплуатации атмосферных и утилизационных системах. +ent-ADTRPDAmmo = консервированная материя + .desc = Субстанция из полимеров, используемая для создания новых объектов. +ent-ADTRPDEmpty = { ent-ADTRPD } + .desc = { ent-ADTRPD.desc } + .suffix = Пустой diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Roles/Jobs/departments.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Roles/Jobs/departments.ftl new file mode 100644 index 00000000000..6f650f214b3 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Roles/Jobs/departments.ftl @@ -0,0 +1,2 @@ +department-Juridical-description = Следите за соблюдением СРП, правильной трактовкой КЗ, защищайте подсудимых! +department-Juridical = Юридический департамент diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Roles/Jobs/jobs.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Roles/Jobs/jobs.ftl new file mode 100644 index 00000000000..4c5ca3d3ff0 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Roles/Jobs/jobs.ftl @@ -0,0 +1,2 @@ +job-name-magistrat = Магистрат +job-description-magistrat = Самый грозный и богатый на станции. diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Entities/Spawners/jobs.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Spawners/jobs.ftl new file mode 100644 index 00000000000..49d25c8db05 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Entities/Spawners/jobs.ftl @@ -0,0 +1,2 @@ +ent-SpawnPointADTPathologist = патологоанатом + .desc = { ent-MarkerBase.desc } \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Interface/Radial/RPD/RPD.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Interface/Radial/RPD/RPD.ftl new file mode 100644 index 00000000000..f898e976b39 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Interface/Radial/RPD/RPD.ftl @@ -0,0 +1,39 @@ +rpd-component-FireAlarm = { ent-FireAlarm } +rpd-component-GasPipeBend = { ent-GasPipeBend } +rpd-component-GasPipeStraight = { ent-GasPipeStraight } +rpd-component-GasPipeHalf = { ent-GasPipeHalf } +rpd-component-GasPipeFourway = { ent-GasPipeFourway } +rpd-component-GasPipeTJunction = { ent-GasPipeTJunction } +rpd-component-GasPressurePump = { ent-GasPressurePump } +rpd-component-GasMixer = { ent-GasMixer } +rpd-component-GasMixerFlipped = { ent-GasMixerFlipped } +rpd-component-GasFilter = { ent-GasFilter } +rpd-component-GasFilterFlipped = { ent-GasFilterFlipped } +rpd-component-GasVolumePump = { ent-GasVolumePump } +rpd-component-GasPassiveVent = { ent-GasPassiveVent } +rpd-component-GasOutletInjector = { ent-GasOutletInjector } +rpd-component-GasVentPump = { ent-GasVentPump } +rpd-component-GasValve = { ent-GasValve } +rpd-component-GasVentScrubber = { ent-GasVentScrubber } +rpd-component-AtmosDeviceFanTiny = { ent-AtmosDeviceFanTiny } +rpd-component-GasPassiveGate = { ent-GasPassiveGate } +rpd-component-GasDualPortVentPump = { ent-GasDualPortVentPump } +rpd-component-PressureControlledValve = { ent-PressureControlledValve } +rpd-component-DisposalUnit = { ent-DisposalUnit } +rpd-component-MailingUnit = { ent-MailingUnit } +rpd-component-GasPort = { ent-GasPort } +rpd-component-DisposalJunctionFlipped = { ent-DisposalJunctionFlipped } +rpd-component-DisposalJunction = { ent-DisposalJunction } +rpd-component-DisposalRouterFlipped = { ent-DisposalRouterFlipped } +rpd-component-DisposalRouter = { ent-DisposalRouter } +rpd-component-DisposalTagger = { ent-DisposalTagger } +rpd-component-DisposalBend = { ent-DisposalBend } +rpd-component-DisposalYJunction = { ent-DisposalYJunction } +rpd-component-DisposalSignalRouter = { ent-DisposalSignalRouter } +rpd-component-DisposalSignalRouterFlipped = { ent-DisposalSignalRouterFlipped } +rpd-component-DisposalTrunk = { ent-DisposalTrunk } +rpd-component-DisposalPipes = { ent-DisposalPipe } +rpd-component-AirSensor = { ent-AirSensor } +rpd-component-FloorDrain = { ent-FloorDrain } +rpd-component-AirAlarm = { ent-AirAlarm } +rpd-component-SignalControlledValve = { ent-SignalControlledValve } diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Species/Tarajan.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Species/Tarajan.ftl new file mode 100644 index 00000000000..461bd2927ad --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Species/Tarajan.ftl @@ -0,0 +1,3 @@ +species-name-tajaran = Таяр +species-tajaran-body-parts = "Таяран части тела" +species-tajaran-torso = "Таяран тело" diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Species/ipc.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Species/ipc.ftl new file mode 100644 index 00000000000..df5ed76b23c --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Species/ipc.ftl @@ -0,0 +1 @@ +species-name-ipc = КПБ diff --git a/Resources/Locale/ru-RU/ADT/prototypes/Species/moth.ftl b/Resources/Locale/ru-RU/ADT/prototypes/Species/moth.ftl new file mode 100644 index 00000000000..bac5483c43e --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/prototypes/Species/moth.ftl @@ -0,0 +1 @@ +species-name-moth = Ниан diff --git a/Resources/Locale/ru-RU/ADT/rpd/rpd.ftl b/Resources/Locale/ru-RU/ADT/rpd/rpd.ftl new file mode 100644 index 00000000000..ab9ca2e2df7 --- /dev/null +++ b/Resources/Locale/ru-RU/ADT/rpd/rpd.ftl @@ -0,0 +1,37 @@ +### Интерфейс + +rpd-component-examine-mode-details = Выбран режим: '{ $mode }'. +rpd-component-examine-build-details = Выбран режим строительства: { $name }. +### Interaction Messages + +# Смена мода +rpd-component-change-mode = РРТ переключён в режим '{ $mode }'. +rpd-component-change-build-mode = РРТ переключён в режим строительства. Строится { $name }. +# Кол-во материи +rpd-component-no-ammo-message = В РРТ закончились заряды! +rpd-component-insufficient-ammo-message = В РРТ не хватает зарядов! +# Разборка +rpd-component-deconstruct-target-not-on-whitelist-message = Вы не можете демонтировать это! +rpd-component-nothing-to-deconstruct-message = Здесь нечего демонтировать! +# Строительство +rpd-component-cannot-build-on-empty-tile-message = Это не может быть построено без фундамента. +rpd-component-must-build-on-subfloor-message = Это может быть построено только на покрытии! +rpd-component-cannot-build-on-occupied-tile-message = Здесь нельзя строить, место уже занято! + +### Имя категориий + +rpd-component-DisposalPipe = Утилизационные трубы +rpd-component-Gaspipes = Газовые трубы +rpd-component-Devices = Девайсы + +### Дополнительная информация + +rpd-component-deconstruct = Демонтаж +rpd-ammo-component-on-examine = + Содержит { $charges } { $charges -> + [one] заряд + [few] заряда + *[other] зарядов + }. +rpd-ammo-component-after-interact-full = РРТ полон! +rpd-ammo-component-after-interact-refilled = Вы пополняете РРТ. diff --git a/Resources/Locale/ru-RU/ADT/traits/disabilities.ftl b/Resources/Locale/ru-RU/ADT/traits/disabilities.ftl index 9fbced1d643..79eeed1909c 100644 --- a/Resources/Locale/ru-RU/ADT/traits/disabilities.ftl +++ b/Resources/Locale/ru-RU/ADT/traits/disabilities.ftl @@ -1,2 +1,5 @@ trait-hemophilia-name = Гемофилия trait-hemophilia-desc = Ваша кровь сворачивается крайне плохо. + +trait-monochromacy-name = Цветовая слепота +trait-monochromacy-description = Ваши глаза получили необратимые повреждения, из-за чего вы видите только в оттенках серого. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/job/job-names.ftl b/Resources/Locale/ru-RU/job/job-names.ftl index 35d1660add6..75b2a8c8b29 100644 --- a/Resources/Locale/ru-RU/job/job-names.ftl +++ b/Resources/Locale/ru-RU/job/job-names.ftl @@ -24,7 +24,7 @@ job-name-centcomoff = представитель Центком job-name-reporter = репортёр job-name-musician = музыкант job-name-librarian = библиотекарь -job-name-lawyer = адвокат +job-name-lawyer = юрист job-name-mime = мим job-name-ce = старший инженер job-name-janitor = уборщик diff --git a/Resources/Locale/ru-RU/markings/moth.ftl b/Resources/Locale/ru-RU/markings/moth.ftl index a2012d22a40..b146c8acf7d 100644 --- a/Resources/Locale/ru-RU/markings/moth.ftl +++ b/Resources/Locale/ru-RU/markings/moth.ftl @@ -1,248 +1,247 @@ -marking-MothAntennasDefault-default = Антенна -marking-MothAntennasDefault = Антенны (Обычные) -marking-MothAntennasCharred-charred = Антенна -marking-MothAntennasCharred = Антенны (Обугленные) -marking-MothAntennasDbushy-dbushy = Антенна -marking-MothAntennasDbushy = Антенны (Кустистые) -marking-MothAntennasDcurvy-dcurvy = Антенна -marking-MothAntennasDcurvy = Антенны (Закрученные) -marking-MothAntennasDfan-dfan = Антенна -marking-MothAntennasDfan = Антенны (Вентилятор) -marking-MothAntennasDpointy-dpointy = Антенна -marking-MothAntennasDpointy = Антенны (Заострённые) -marking-MothAntennasFeathery-feathery = Антенна -marking-MothAntennasFeathery = Антенны (Перистые) -marking-MothAntennasFirewatch-firewatch = Антенна -marking-MothAntennasFirewatch = Антенны (Файрвотч) -marking-MothAntennasGray-gray = Антенна -marking-MothAntennasGray = Антенны (Серые) -marking-MothAntennasJungle-jungle = Антенна -marking-MothAntennasJungle = Антенны (Джунгли) -marking-MothAntennasMaple-maple = Антенна -marking-MothAntennasMaple = Антенны (Клён) -marking-MothAntennasMoffra-moffra = Антенна -marking-MothAntennasMoffra = Антенны (Мотра) -marking-MothAntennasOakworm-oakworm = Антенна -marking-MothAntennasOakworm = Антенны (Дубовый червь) -marking-MothAntennasPlasmafire-plasmafire = Антенна -marking-MothAntennasPlasmafire = Антенны (Пожар плазмы) -marking-MothAntennasRoyal-royal = Антенна -marking-MothAntennasRoyal = Антенны (Королевские) -marking-MothAntennasStriped-striped = Антенна -marking-MothAntennasStriped = Антенны (Полосатые) -marking-MothAntennasWhitefly-whitefly = Антенна -marking-MothAntennasWhitefly = Антенны (Белая муха) -marking-MothAntennasWitchwing-witchwing = Антенна -marking-MothAntennasWitchwing = Антенны (Ведьмино крыло) -marking-MothAntennasUnderwing-underwing_primary = Основной -marking-MothAntennasUnderwing-underwing_secondary = Вторичный -marking-MothAntennasUnderwing = Антенны (Подкрылье) -marking-MothWingsDefault-default = Крыло -marking-MothWingsDefault = Крылья (Обычные) -marking-MothWingsCharred-charred = Крыло -marking-MothWingsCharred = Крылья (Обугленные) -marking-MothWingsDbushy-dbushy_primary = Основной -marking-MothWingsDbushy-dbushy_secondary = Вторичный -marking-MothWingsDbushy = Крылья (Тёмные и Кустистые) -marking-MothWingsDeathhead-deathhead_primary = Основной -marking-MothWingsDeathhead-deathhead_secondary = Вторичный -marking-MothWingsDeathhead = Крылья (Рука Смерти) -marking-MothWingsFan-fan = Крыло -marking-MothWingsFan = Крылья (Вентилятор) -marking-MothWingsDfan-dfan = Крыло -marking-MothWingsDfan = Крылья (Тёмные и Вентилятор) -marking-MothWingsFeathery-feathery = Крыло -marking-MothWingsFeathery = Крылья (Перистые) -marking-MothWingsFirewatch-firewatch_primary = Основной -marking-MothWingsFirewatch-firewatch_secondary = Вторичный -marking-MothWingsFirewatch = Крылья (Файрвотч) -marking-MothWingsGothic-gothic = Крыло -marking-MothWingsGothic = Крылья (Готика) -marking-MothWingsJungle-jungle = Крыло -marking-MothWingsJungle = Крылья (Джунгли) -marking-MothWingsLadybug-ladybug = Крыло -marking-MothWingsLadybug = Крылья (Божья коровка) -marking-MothWingsMaple-maple = Крыло -marking-MothWingsMaple = Крылья (Клён) -marking-MothWingsMoffra-moffra_primary = Основной -marking-MothWingsMoffra-moffra_secondary = Вторичный -marking-MothWingsMoffra = Крылья (Мотра) -marking-MothWingsOakworm-oakworm = Крыло -marking-MothWingsOakworm = Крылья (Дубовый червь) -marking-MothWingsPlasmafire-plasmafire_primary = Основной -marking-MothWingsPlasmafire-plasmafire_secondary = Вторичный -marking-MothWingsPlasmafire = Крылья (Пожар плазмы) -marking-MothWingsPointy-pointy = Крыло -marking-MothWingsPointy = Крылья (Заострённые) -marking-MothWingsRoyal-royal_primary = Основной -marking-MothWingsRoyal-royal_secondary = Вторичный -marking-MothWingsRoyal = Крылья (Королевские) -marking-MothWingsStellar-stellar = Крыло -marking-MothWingsStellar = Крылья (Звёздные) -marking-MothWingsStriped-striped = Крыло -marking-MothWingsStriped = Крылья (Полосатые) -marking-MothWingsSwirly-swirly = Крыло -marking-MothWingsSwirly = Крылья (Завихрение) -marking-MothWingsWhitefly-whitefly = Крыло -marking-MothWingsWhitefly = Крылья (Белая муха) -marking-MothWingsWitchwing-witchwing = Крыло -marking-MothWingsWitchwing = Крылья (Ведьмино крыло) -marking-MothWingsUnderwing-underwing_primary = Основной -marking-MothWingsUnderwing-underwing_secondary = Вторичный -marking-MothWingsUnderwing = Крылья (Подкрылье) -marking-MothChestCharred-charred_chest = Грудь -marking-MothChestCharred = Ниан, Грудь (Обугленные) -marking-MothHeadCharred-charred_head = Голова -marking-MothHeadCharred = Ниан, Голова (Обугленные) -marking-MothLLegCharred-charred_l_leg = Левая Нога -marking-MothLLegCharred = Ниан, Левая нога (Обугленные) -marking-MothRLegCharred-charred_r_leg = Правая Нога -marking-MothRLegCharred = Ниан, Правая нога (Обугленные) -marking-MothLArmCharred-charred_l_arm = Левая Рука -marking-MothLArmCharred = Ниан, Левая рука (Обугленные) -marking-MothRArmCharred-charred_r_arm = Правая Рука -marking-MothRArmCharred = Ниан, Правая рука (Обугленные) -marking-MothChestDeathhead-deathhead_chest = Грудь -marking-MothChestDeathhead = Ниан, Грудь (Рука Смерти) -marking-MothHeadDeathhead-deathhead_head = Голова -marking-MothHeadDeathhead = Ниан, Голова (Рука Смерти) -marking-MothLLegDeathhead-deathhead_l_leg = Левая Нога -marking-MothLLegDeathhead = Ниан, Левая нога (Рука Смерти) -marking-MothRLegDeathhead-deathhead_r_leg = Правая Нога -marking-MothRLegDeathhead = Ниан, Правая нога (Рука Смерти) -marking-MothLArmDeathhead-deathhead_l_arm = Левая Рука -marking-MothLArmDeathhead = Ниан, Левая рука (Рука Смерти) -marking-MothRArmDeathhead-deathhead_r_arm = Правая Рука -marking-MothRArmDeathhead = Ниан, Правая рука (Рука Смерти) -marking-MothChestFan-fan_chest = Грудь -marking-MothChestFan = Ниан, Грудь (Вентилятор) -marking-MothHeadFan-fan_head = Голова -marking-MothHeadFan = Ниан, Голова (Вентилятор) -marking-MothLLegFan-fan_l_leg = Левая Нога -marking-MothLLegFan = Ниан, Левая нога (Вентилятор) -marking-MothRLegFan-fan_r_leg = Правая Нога -marking-MothRLegFan = Ниан, Правая нога (Вентилятор) -marking-MothLArmFan-fan_l_arm = Левая Рука -marking-MothLArmFan = Ниан, Левая рука (Вентилятор) -marking-MothRArmFan-fan_r_arm = Правая Рука -marking-MothRArmFan = Ниан, Правая рука (Вентилятор) -marking-MothChestFirewatch-firewatch_chest = Грудь -marking-MothChestFirewatch = Ниан, Грудь (Файрвотч) -marking-MothHeadFirewatch-firewatch_head = Голова -marking-MothHeadFirewatch = Ниан, Голова (Файрвотч) -marking-MothLLegFirewatch-firewatch_l_leg = Левая Нога -marking-MothLLegFirewatch = Ниан, Левая нога (Файрвотч) -marking-MothRLegFirewatch-firewatch_r_leg = Правая Нога -marking-MothRLegFirewatch = Ниан, Правая нога (Файрвотч) -marking-MothLArmFirewatch-firewatch_l_arm = Левая Рука -marking-MothLArmFirewatch = Ниан, Левая рука (Файрвотч) -marking-MothRArmFirewatch-firewatch_r_arm = Правая Рука -marking-MothRArmFirewatch = Ниан, Правая рука (Файрвотч) -marking-MothChestGothic-gothic_chest = Грудь -marking-MothChestGothic = Ниан, Грудь (Готика) -marking-MothHeadGothic-gothic_head = Голова -marking-MothHeadGothic = Ниан, Голова (Готика) -marking-MothLLegGothic-gothic_l_leg = Левая Нога -marking-MothLLegGothic = Ниан, Левая нога (Готика) -marking-MothRLegGothic-gothic_r_leg = Правая Нога -marking-MothRLegGothic = Ниан, Правая нога (Готика) -marking-MothLArmGothic-gothic_l_arm = Левая Рука -marking-MothLArmGothic = Ниан, Левая рука (Готика) -marking-MothRArmGothic-gothic_r_arm = Правая Рука -marking-MothRArmGothic = Ниан, Правая рука (Готика) -marking-MothChestJungle-jungle_chest = Грудь -marking-MothChestJungle = Ниан, Грудь (Джунгли) -marking-MothHeadJungle-jungle_head = Голова -marking-MothHeadJungle = Ниан, Голова (Джунгли) -marking-MothLLegJungle-jungle_l_leg = Левая Нога -marking-MothLLegJungle = Ниан, Левая нога (Джунгли) -marking-MothRLegJungle-jungle_r_leg = Правая Нога -marking-MothRLegJungle = Ниан, Правая нога (Джунгли) -marking-MothLArmJungle-jungle_l_arm = Левая Рука -marking-MothLArmJungle = Ниан, Левая рука (Джунгли) -marking-MothRArmJungle-jungle_r_arm = Правая Рука -marking-MothRArmJungle = Ниан, Правая рука (Джунгли) -marking-MothChestMoonfly-moonfly_chest = Грудь -marking-MothChestMoonfly = Ниан, Грудь (Мунфлай) -marking-MothHeadMoonfly-moonfly_head = Голова -marking-MothHeadMoonfly = Ниан, Голова (Мунфлай) -marking-MothLLegMoonfly-moonfly_l_leg = Левая Нога -marking-MothLLegMoonfly = Ниан, Левая нога (Мунфлай) -marking-MothRLegMoonfly-moonfly_r_leg = Правая Нога -marking-MothRLegMoonfly = Ниан, Правая нога (Мунфлай) -marking-MothLArmMoonfly-moonfly_l_arm = Левая Рука -marking-MothLArmMoonfly = Ниан, Левая рука (Мунфлай) -marking-MothRArmMoonfly-moonfly_r_arm = Правая Рука -marking-MothRArmMoonfly = Ниан, Правая рука (Мунфлай) -marking-MothChestOakworm-oakworm_chest = Грудь -marking-MothChestOakworm = Ниан, Грудь (Дубовый червь) -marking-MothHeadOakworm-oakworm_head = Голова -marking-MothHeadOakworm = Ниан, Голова (Дубовый червь) -marking-MothLLegOakworm-oakworm_l_leg = Левая Нога -marking-MothLLegOakworm = Ниан, Левая нога (Дубовый червь) -marking-MothRLegOakworm-oakworm_r_leg = Правая Нога -marking-MothRLegOakworm = Ниан, Правая нога (Дубовый червь) -marking-MothLArmOakworm-oakworm_l_arm = Левая Рука -marking-MothLArmOakworm = Ниан, Левая рука (Дубовый червь) -marking-MothRArmOakworm-oakworm_r_arm = Правая Рука -marking-MothRArmOakworm = Ниан, Правая рука (Дубовый червь) -marking-MothChestPointy-pointy_chest = Грудь -marking-MothChestPointy = Ниан, Грудь (Заострённые) -marking-MothHeadPointy-pointy_head = Голова -marking-MothHeadPointy = Ниан, Голова (Заострённые) -marking-MothLLegPointy-pointy_l_leg = Левая Нога -marking-MothLLegPointy = Ниан, Левая нога (Заострённые) -marking-MothRLegPointy-pointy_r_leg = Правая Нога -marking-MothRLegPointy = Ниан, Правая нога (Заострённые) -marking-MothLArmPointy-pointy_l_arm = Левая Рука -marking-MothLArmPointy = Ниан, Левая рука (Заострённые) -marking-MothRArmPointy-pointy_r_arm = Правая Рука -marking-MothRArmPointy = Ниан, Правая рука (Заострённые) -marking-MothChestRagged-ragged_chest = Грудь -marking-MothChestRagged = Ниан, Грудь (Потрёпанные) -marking-MothHeadRagged-ragged_head = Голова -marking-MothHeadRagged = Ниан, Голова (Потрёпанные) -marking-MothLLegRagged-ragged_l_leg = Левая Нога -marking-MothLLegRagged = Ниан, Левая нога (Потрёпанные) -marking-MothRLegRagged-ragged_r_leg = Правая Нога -marking-MothRLegRagged = Ниан, Правая нога (Потрёпанные) -marking-MothLArmRagged-ragged_l_arm = Левая Рука -marking-MothLArmRagged = Ниан, Левая рука (Потрёпанные) -marking-MothRArmRagged-ragged_r_arm = Правая Рука -marking-MothRArmRagged = Ниан, Правая рука (Потрёпанные) -marking-MothChestRoyal-royal_chest = Грудь -marking-MothChestRoyal = Ниан, Грудь (Королевские) -marking-MothHeadRoyal-royal_head = Голова -marking-MothHeadRoyal = Ниан, Голова (Королевские) -marking-MothLLegRoyal-royal_l_leg = Левая Нога -marking-MothLLegRoyal = Ниан, Левая нога (Королевские) -marking-MothRLegRoyal-royal_r_leg = Правая Нога -marking-MothRLegRoyal = Ниан, Правая нога (Королевские) -marking-MothLArmRoyal-royal_l_arm = Левая Рука -marking-MothLArmRoyal = Ниан, Левая рука (Королевские) -marking-MothRArmRoyal-royal_r_arm = Правая Рука -marking-MothRArmRoyal = Ниан, Правая рука (Королевские) -marking-MothChestWhitefly-whitefly_chest = Грудь -marking-MothChestWhitefly = Ниан, Грудь (Белая муха) -marking-MothHeadWhitefly-whitefly_head = Голова -marking-MothHeadWhitefly = Ниан, Голова (Белая муха) -marking-MothLLegWhitefly-whitefly_l_leg = Левая Нога -marking-MothLLegWhitefly = Ниан, Левая нога (Белая муха) -marking-MothRLegWhitefly-whitefly_r_leg = Правая Нога -marking-MothRLegWhitefly = Ниан, Правая нога (Белая муха) -marking-MothLArmWhitefly-whitefly_l_arm = Левая Рука -marking-MothLArmWhitefly = Ниан, Левая рука (Белая муха) -marking-MothRArmWhitefly-whitefly_r_arm = Правая Рука -marking-MothRArmWhitefly = Ниан, Правая рука (Белая муха) -marking-MothChestWitchwing-witchwing_chest = Грудь -marking-MothChestWitchwing = Ниан, Грудь (Ведьмино крыло) -marking-MothHeadWitchwing-witchwing_head = Голова -marking-MothHeadWitchwing = Ниан, Голова (Ведьмино крыло) -marking-MothLLegWitchwing-witchwing_l_leg = Левая Нога -marking-MothLLegWitchwing = Ниан, Левая нога (Ведьмино крыло) -marking-MothRLegWitchwing-witchwing_r_leg = Правая Нога -marking-MothRLegWitchwing = Ниан, Правая нога (Ведьмино крыло) -marking-MothLArmWitchwing-witchwing_l_arm = Левая Рука -marking-MothLArmWitchwing = Ниан, Левая рука (Ведьмино крыло) -marking-MothRArmWitchwing-witchwing_r_arm = Правая Рука -marking-MothRArmWitchwing = Ниан, Правая рука (Ведьмино крыло) +#marking-MothAntennasDefault-default = Антенна +#marking-MothAntennasDefault = Антенны (Обычные) +#marking-MothAntennasCharred-charred = Антенна +#marking-MothAntennasCharred = Антенны (Обугленные) +#marking-MothAntennasDbushy-dbushy = Антенна +#marking-MothAntennasDbushy = Антенны (Кустистые) +#marking-MothAntennasDcurvy-dcurvy = Антенна +#marking-MothAntennasDcurvy = Антенны (Закрученные) +#marking-MothAntennasDfan-dfan = Антенна +#marking-MothAntennasDfan = Антенны (Вентилятор) +#marking-MothAntennasDpointy-dpointy = Антенна +#marking-MothAntennasDpointy = Антенны (Заострённые) +#marking-MothAntennasFeathery-feathery = Антенна +#marking-MothAntennasFeathery = Антенны (Перистые) +#marking-MothAntennasFirewatch-firewatch = Антенна +#marking-MothAntennasFirewatch = Антенны (Файрвотч) +#marking-MothAntennasGray-gray = Антенна +#marking-MothAntennasGray = Антенны (Серые) +#marking-MothAntennasJungle-jungle = Антенна +#marking-MothAntennasJungle = Антенны (Джунгли) +#marking-MothAntennasMaple-maple = Антенна +#marking-MothAntennasMaple = Антенны (Клён) +#marking-MothAntennasMoffra-moffra = Антенна +#marking-MothAntennasMoffra = Антенны (Мотра) +#marking-MothAntennasOakworm-oakworm = Антенна +#marking-MothAntennasOakworm = Антенны (Дубовый червь) +#marking-MothAntennasPlasmafire-plasmafire = Антенна +#marking-MothAntennasPlasmafire = Антенны (Пожар плазмы) +#marking-MothAntennasRoyal-royal = Антенна +#marking-MothAntennasRoyal = Антенны (Королевские) +#marking-MothAntennasStriped-striped = Антенна +#marking-MothAntennasStriped = Антенны (Полосатые) +#marking-MothAntennasWhitefly-whitefly = Антенна +#marking-MothAntennasWhitefly = Антенны (Белая муха) +#marking-MothAntennasWitchwing-witchwing = Антенна +#marking-MothAntennasWitchwing = Антенны (Ведьмино крыло) +#marking-MothAntennasUnderwing-underwing_primary = Основной +#marking-MothAntennasUnderwing-underwing_secondary = Вторичный +#marking-MothAntennasUnderwing = Антенны (Подкрылье) +#marking-MothWingsDefault-default = Крыло +#marking-MothWingsDefault = Крылья (Обычные) +#marking-MothWingsCharred-charred = Крыло +#marking-MothWingsCharred = Крылья (Обугленные) +#marking-MothWingsDbushy-dbushy_primary = Основной +#marking-MothWingsDbushy-dbushy_secondary = Вторичный +#marking-MothWingsDbushy = Крылья (Тёмные и Кустистые) +#marking-MothWingsDeathhead-deathhead_primary = Основной +#marking-MothWingsDeathhead-deathhead_secondary = Вторичный +#marking-MothWingsDeathhead = Крылья (Рука Смерти) +#marking-MothWingsFan-fan = Крыло +#marking-MothWingsFan = Крылья (Вентилятор) +#marking-MothWingsDfan-dfan = Крыло +#marking-MothWingsDfan = Крылья (Тёмные и Вентилятор) +#marking-MothWingsFeathery-feathery = Крыло +#marking-MothWingsFeathery = Крылья (Перистые) +#marking-MothWingsFirewatch-firewatch_primary = Основной +#marking-MothWingsFirewatch-firewatch_secondary = Вторичный +#marking-MothWingsFirewatch = Крылья (Файрвотч) +#marking-MothWingsGothic-gothic = Крыло +#marking-MothWingsGothic = Крылья (Готика) +#marking-MothWingsJungle-jungle = Крыло +#marking-MothWingsJungle = Крылья (Джунгли) +#marking-MothWingsLadybug-ladybug = Крыло +#marking-MothWingsLadybug = Крылья (Божья коровка) +#marking-MothWingsMaple-maple = Крыло +#marking-MothWingsMaple = Крылья (Клён) +#marking-MothWingsMoffra-moffra_primary = Основной +#marking-MothWingsMoffra-moffra_secondary = Вторичный +#marking-MothWingsMoffra = Крылья (Мотра) +#marking-MothWingsOakworm-oakworm = Крыло +#marking-MothWingsOakworm = Крылья (Дубовый червь) +#marking-MothWingsPlasmafire-plasmafire_primary = Основной +#marking-MothWingsPlasmafire-plasmafire_secondary = Вторичный +#marking-MothWingsPlasmafire = Крылья (Пожар плазмы) +#marking-MothWingsPointy-pointy = Крыло +#marking-MothWingsPointy = Крылья (Заострённые) +#marking-MothWingsRoyal-royal_primary = Основной +#marking-MothWingsRoyal-royal_secondary = Вторичный +#marking-MothWingsRoyal = Крылья (Королевские) +#marking-MothWingsStellar-stellar = Крыло +#marking-MothWingsStellar = Крылья (Звёздные) +#marking-MothWingsStriped-striped = Крыло +#marking-MothWingsStriped = Крылья (Полосатые) +#marking-MothWingsSwirly-swirly = Крыло +#marking-MothWingsSwirly = Крылья (Завихрение) +#marking-MothWingsWhitefly-whitefly = Крыло +#marking-MothWingsWhitefly = Крылья (Белая муха) +#marking-MothWingsWitchwing-witchwing = Крыло +#marking-MothWingsWitchwing = Крылья (Ведьмино крыло) +#marking-MothWingsUnderwing-underwing_primary = Основной +#marking-MothWingsUnderwing-underwing_secondary = Вторичный +#marking-MothWingsUnderwing = Крылья (Подкрылье) +#marking-MothChestCharred-charred_chest = Грудь +#marking-MothChestCharred = Ниан, Грудь (Обугленные) +#marking-MothHeadCharred-charred_head = Голова +#marking-MothHeadCharred = Ниан, Голова (Обугленные) +#marking-MothLLegCharred-charred_l_leg = Левая Нога +#marking-MothLLegCharred = Ниан, Левая нога (Обугленные) +#marking-MothRLegCharred-charred_r_leg = Правая Нога +#marking-MothRLegCharred = Ниан, Правая нога (Обугленные) +#marking-MothLArmCharred-charred_l_arm = Левая Рука +#marking-MothLArmCharred = Ниан, Левая рука (Обугленные) +#marking-MothRArmCharred-charred_r_arm = Правая Рука +#marking-MothRArmCharred = Ниан, Правая рука (Обугленные) +#marking-MothChestDeathhead-deathhead_chest = Грудь +#marking-MothChestDeathhead = Ниан, Грудь (Рука Смерти) +#marking-MothHeadDeathhead-deathhead_head = Голова +#marking-MothHeadDeathhead = Ниан, Голова (Рука Смерти) +#marking-MothLLegDeathhead-deathhead_l_leg = Левая Нога +#marking-MothLLegDeathhead = Ниан, Левая нога (Рука Смерти) +#marking-MothRLegDeathhead-deathhead_r_leg = Правая Нога +#marking-MothRLegDeathhead = Ниан, Правая нога (Рука Смерти) +#marking-MothLArmDeathhead-deathhead_l_arm = Левая Рука +#marking-MothLArmDeathhead = Ниан, Левая рука (Рука Смерти) +#marking-MothRArmDeathhead-deathhead_r_arm = Правая Рука +#marking-MothRArmDeathhead = Ниан, Правая рука (Рука Смерти) +#marking-MothChestFan-fan_chest = Грудь +#marking-MothChestFan = Ниан, Грудь (Вентилятор) +#marking-MothHeadFan-fan_head = Голова +#marking-MothHeadFan = Ниан, Голова (Вентилятор) +#marking-MothLLegFan-fan_l_leg = Левая Нога +#marking-MothLLegFan = Ниан, Левая нога (Вентилятор) +#marking-MothRLegFan-fan_r_leg = Правая Нога +#marking-MothRLegFan = Ниан, Правая нога (Вентилятор) +#marking-MothLArmFan-fan_l_arm = Левая Рука +#marking-MothLArmFan = Ниан, Левая рука (Вентилятор) +#marking-MothRArmFan-fan_r_arm = Правая Рука +#marking-MothRArmFan = Ниан, Правая рука (Вентилятор) +#marking-MothChestFirewatch-firewatch_chest = Грудь +#marking-MothChestFirewatch = Ниан, Грудь (Файрвотч) +#marking-MothHeadFirewatch-firewatch_head = Голова +#marking-MothHeadFirewatch = Ниан, Голова (Файрвотч) +#marking-MothLLegFirewatch-firewatch_l_leg = Левая Нога +#marking-MothLLegFirewatch = Ниан, Левая нога (Файрвотч) +#marking-MothRLegFirewatch-firewatch_r_leg = Правая Нога +#marking-MothRLegFirewatch = Ниан, Правая нога (Файрвотч) +#marking-MothLArmFirewatch-firewatch_l_arm = Левая Рука +#marking-MothLArmFirewatch = Ниан, Левая рука (Файрвотч) +#marking-MothRArmFirewatch-firewatch_r_arm = Правая Рука +#marking-MothRArmFirewatch = Ниан, Правая рука (Файрвотч) +#marking-MothChestGothic-gothic_chest = Грудь +#marking-MothChestGothic = Ниан, Грудь (Готика) +#marking-MothHeadGothic-gothic_head = Голова +#marking-MothHeadGothic = Ниан, Голова (Готика) +#marking-MothLLegGothic-gothic_l_leg = Левая Нога +#marking-MothLLegGothic = Ниан, Левая нога (Готика) +#marking-MothRLegGothic-gothic_r_leg = Правая Нога +#marking-MothRLegGothic = Ниан, Правая нога (Готика) +#marking-MothLArmGothic-gothic_l_arm = Левая Рука +#marking-MothLArmGothic = Ниан, Левая рука (Готика) +#marking-MothRArmGothic-gothic_r_arm = Правая Рука +#marking-MothRArmGothic = Ниан, Правая рука (Готика) +#marking-MothChestJungle-jungle_chest = Грудь +#marking-MothChestJungle = Ниан, Грудь (Джунгли) +#marking-MothHeadJungle-jungle_head = Голова +#marking-MothHeadJungle = Ниан, Голова (Джунгли) +#marking-MothLLegJungle-jungle_l_leg = Левая Нога +#marking-MothLLegJungle = Ниан, Левая нога (Джунгли) +#marking-MothRLegJungle-jungle_r_leg = Правая Нога +#marking-MothRLegJungle = Ниан, Правая нога (Джунгли) +#marking-MothLArmJungle-jungle_l_arm = Левая Рука +#marking-MothLArmJungle = Ниан, Левая рука (Джунгли) +#marking-MothRArmJungle-jungle_r_arm = Правая Рука +#marking-MothRArmJungle = Ниан, Правая рука (Джунгли) +#marking-MothChestMoonfly-moonfly_chest = Грудь +#marking-MothChestMoonfly = Ниан, Грудь (Мунфлай) +#marking-MothHeadMoonfly-moonfly_head = Голова +#marking-MothHeadMoonfly = Ниан, Голова (Мунфлай) +#marking-MothLLegMoonfly-moonfly_l_leg = Левая Нога +#marking-MothLLegMoonfly = Ниан, Левая нога (Мунфлай) +#marking-MothRLegMoonfly-moonfly_r_leg = Правая Нога +#marking-MothRLegMoonfly = Ниан, Правая нога (Мунфлай) +#marking-MothLArmMoonfly-moonfly_l_arm = Левая Рука +#marking-MothLArmMoonfly = Ниан, Левая рука (Мунфлай) +#marking-MothRArmMoonfly-moonfly_r_arm = Правая Рука +#marking-MothRArmMoonfly = Ниан, Правая рука (Мунфлай) +#marking-MothChestOakworm-oakworm_chest = Грудь +#marking-MothChestOakworm = Ниан, Грудь (Дубовый червь) +#marking-MothHeadOakworm-oakworm_head = Голова +#marking-MothHeadOakworm = Ниан, Голова (Дубовый червь) +#marking-MothLLegOakworm-oakworm_l_leg = Левая Нога +#marking-MothLLegOakworm = Ниан, Левая нога (Дубовый червь) +#marking-MothRLegOakworm-oakworm_r_leg = Правая Нога +#marking-MothRLegOakworm = Ниан, Правая нога (Дубовый червь) +#marking-MothLArmOakworm-oakworm_l_arm = Левая Рука +#marking-MothLArmOakworm = Ниан, Левая рука (Дубовый червь) +#marking-MothRArmOakworm-oakworm_r_arm = Правая Рука +#marking-MothRArmOakworm = Ниан, Правая рука (Дубовый червь) +#marking-MothChestPointy-pointy_chest = Грудь +#marking-MothChestPointy = Ниан, Грудь (Заострённые) +#marking-MothHeadPointy = Ниан, Голова (Заострённые) +#marking-MothLLegPointy-pointy_l_leg = Левая Нога +#marking-MothLLegPointy = Ниан, Левая нога (Заострённые) +#marking-MothRLegPointy-pointy_r_leg = Правая Нога +#marking-MothRLegPointy = Ниан, Правая нога (Заострённые) +#marking-MothLArmPointy-pointy_l_arm = Левая Рука +#marking-MothLArmPointy = Ниан, Левая рука (Заострённые) +#marking-MothRArmPointy-pointy_r_arm = Правая Рука +#marking-MothRArmPointy = Ниан, Правая рука (Заострённые) +#marking-MothChestRagged-ragged_chest = Грудь +#marking-MothChestRagged = Ниан, Грудь (Потрёпанные) +#marking-MothHeadRagged-ragged_head = Голова +#marking-MothHeadRagged = Ниан, Голова (Потрёпанные) +#marking-MothLLegRagged-ragged_l_leg = Левая Нога +#marking-MothLLegRagged = Ниан, Левая нога (Потрёпанные) +#marking-MothRLegRagged-ragged_r_leg = Правая Нога +#marking-MothRLegRagged = Ниан, Правая нога (Потрёпанные) +#marking-MothLArmRagged-ragged_l_arm = Левая Рука +#marking-MothLArmRagged = Ниан, Левая рука (Потрёпанные) +#marking-MothRArmRagged-ragged_r_arm = Правая Рука +#marking-MothRArmRagged = Ниан, Правая рука (Потрёпанные) +#marking-MothChestRoyal-royal_chest = Грудь +#marking-MothChestRoyal = Ниан, Грудь (Королевские) +#marking-MothHeadRoyal-royal_head = Голова +#marking-MothHeadRoyal = Ниан, Голова (Королевские) +#marking-MothLLegRoyal-royal_l_leg = Левая Нога +#marking-MothLLegRoyal = Ниан, Левая нога (Королевские) +#marking-MothRLegRoyal-royal_r_leg = Правая Нога +#marking-MothRLegRoyal = Ниан, Правая нога (Королевские) +#marking-MothLArmRoyal-royal_l_arm = Левая Рука +#marking-MothLArmRoyal = Ниан, Левая рука (Королевские) +#marking-MothRArmRoyal-royal_r_arm = Правая Рука +#marking-MothRArmRoyal = Ниан, Правая рука (Королевские) +#marking-MothChestWhitefly-whitefly_chest = Грудь +#marking-MothChestWhitefly = Ниан, Грудь (Белая муха) +#marking-MothHeadWhitefly-whitefly_head = Голова +#marking-MothHeadWhitefly = Ниан, Голова (Белая муха) +#marking-MothLLegWhitefly-whitefly_l_leg = Левая Нога +#marking-MothLLegWhitefly = Ниан, Левая нога (Белая муха) +#marking-MothRLegWhitefly-whitefly_r_leg = Правая Нога +#marking-MothRLegWhitefly = Ниан, Правая нога (Белая муха) +#marking-MothLArmWhitefly-whitefly_l_arm = Левая Рука +#marking-MothLArmWhitefly = Ниан, Левая рука (Белая муха) +#marking-MothRArmWhitefly-whitefly_r_arm = Правая Рука +#marking-MothRArmWhitefly = Ниан, Правая рука (Белая муха) +#marking-MothChestWitchwing-witchwing_chest = Грудь +#marking-MothChestWitchwing = Ниан, Грудь (Ведьмино крыло) +#marking-MothHeadWitchwing-witchwing_head = Голова +#marking-MothHeadWitchwing = Ниан, Голова (Ведьмино крыло) +#marking-MothLLegWitchwing-witchwing_l_leg = Левая Нога +#marking-MothLLegWitchwing = Ниан, Левая нога (Ведьмино крыло) +#marking-MothRLegWitchwing-witchwing_r_leg = Правая Нога +#marking-MothRLegWitchwing = Ниан, Правая нога (Ведьмино крыло) +#marking-MothLArmWitchwing-witchwing_l_arm = Левая Рука +#marking-MothLArmWitchwing = Ниан, Левая рука (Ведьмино крыло) +#marking-MothRArmWitchwing-witchwing_r_arm = Правая Рука +#marking-MothRArmWitchwing = Ниан, Правая рука (Ведьмино крыло) \ No newline at end of file diff --git a/Resources/Locale/ru-RU/species/species.ftl b/Resources/Locale/ru-RU/species/species.ftl index 0f2b10ddf26..7a96db115b8 100644 --- a/Resources/Locale/ru-RU/species/species.ftl +++ b/Resources/Locale/ru-RU/species/species.ftl @@ -6,6 +6,6 @@ species-name-reptilian = Унатх species-name-slime = Слаймолюд species-name-diona = Диона species-name-arachnid = Арахнид -species-name-moth = Ниан +#species-name-moth = Ниан species-name-skeleton = Скелет species-name-vox = Вокс diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/body/parts/moth.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/body/parts/moth.ftl index a7c4b197eee..a9b55a2b1bc 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/body/parts/moth.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/body/parts/moth.ftl @@ -1,22 +1,22 @@ -ent-PartMoth = часть тела нианы - .desc = { ent-BasePart.desc } -ent-TorsoMoth = торс нианы - .desc = { ent-PartMoth.desc } -ent-HeadMoth = голова нианы - .desc = { ent-PartMoth.desc } -ent-LeftArmMoth = левая рука нианы - .desc = { ent-PartMoth.desc } -ent-RightArmMoth = правая рука нианы - .desc = { ent-PartMoth.desc } -ent-LeftHandMoth = левая кисть нианы - .desc = { ent-PartMoth.desc } -ent-RightHandMoth = правая кисть нианы - .desc = { ent-PartMoth.desc } -ent-LeftLegMoth = левая нога нианы - .desc = { ent-PartMoth.desc } -ent-RightLegMoth = правая нога нианы - .desc = { ent-PartMoth.desc } -ent-LeftFootMoth = левая стопа нианы - .desc = { ent-PartMoth.desc } -ent-RightFootMoth = правая стопа нианы - .desc = { ent-PartMoth.desc } +#ent-PartMoth = часть тела нианы +# .desc = { ent-BasePart.desc } +#ent-TorsoMoth = торс нианы +# .desc = { ent-PartMoth.desc } +#ent-HeadMoth = голова нианы +# .desc = { ent-PartMoth.desc } +#ent-LeftArmMoth = левая рука нианы +# .desc = { ent-PartMoth.desc } +#ent-RightArmMoth = правая рука нианы +# .desc = { ent-PartMoth.desc } +#ent-LeftHandMoth = левая кисть нианы +# .desc = { ent-PartMoth.desc } +#ent-RightHandMoth = правая кисть нианы +# .desc = { ent-PartMoth.desc } +#ent-LeftLegMoth = левая нога нианы +# .desc = { ent-PartMoth.desc } +#ent-RightLegMoth = правая нога нианы +# .desc = { ent-PartMoth.desc } +#ent-LeftFootMoth = левая стопа нианы +# .desc = { ent-PartMoth.desc } +#ent-RightFootMoth = правая стопа нианы +# .desc = { ent-PartMoth.desc } \ No newline at end of file diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/clothing/ears/headsets.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/clothing/ears/headsets.ftl deleted file mode 100644 index 989ef2605ab..00000000000 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/clothing/ears/headsets.ftl +++ /dev/null @@ -1,2 +0,0 @@ -ent-ClothingHeadsetIAA = гарнитура АВД - .desc = Гарнитура агента внутренних дел, чтобы услышать последние слова капитана. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/devices/encryption_keys.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/devices/encryption_keys.ftl index f1b32d9d160..6dc02e6b1ff 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/devices/encryption_keys.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/devices/encryption_keys.ftl @@ -1,2 +1,3 @@ ent-EncryptionKeyIAA = ключ шифрования агента внутренних дел .desc = Ключ шифрования, используемый самой дотошной персоной. + .suffix = НЕ ТРОГАТЬ, это Корвакс diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/misc/tiles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/misc/tiles.ftl index 5c9b21d0c29..bc0b2bd3f3c 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/misc/tiles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/objects/misc/tiles.ftl @@ -1,36 +1,36 @@ -ent-FloorTileItemWoodParquet = tiles-wood-parquet +ent-FloorTileItemWoodParquet = деревянный паркет .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWoodBlack = tiles-wood-black +ent-FloorTileItemWoodBlack = деревянный чёрный пол .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWoodDark = tiles-wood-dark +ent-FloorTileItemWoodDark = деревянный тёмный пол .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWoodLight = tiles-wood-light +ent-FloorTileItemWoodLight = деревянный светлый пол .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWoodRed = tiles-wood-red +ent-FloorTileItemWoodRed = деревянный красный пол .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWoodLargeBlack = large black wood floor +ent-FloorTileItemWoodLargeBlack = большой деревянный чёрный пол .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWoodLargeDark = large dark wood floor +ent-FloorTileItemWoodLargeDark = большой деревянный тёмный пол .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWoodLargeLight = large light wood floor +ent-FloorTileItemWoodLargeLight = большой деревянный светлый пол .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWoodLargeRed = large red wood floor +ent-FloorTileItemWoodLargeRed = большой деревянный красный пол .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWoodParquetBlack = parquet black wood floor +ent-FloorTileItemWoodParquetBlack = чёрный деревянный паркет .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWoodParquetDark = parquet dark wood floor +ent-FloorTileItemWoodParquetDark = тёмный деревянный паркет .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWoodParquetLight = parquet light wood floor +ent-FloorTileItemWoodParquetLight = светлый деревянный паркет .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWoodParquetRed = parquet red wood floor +ent-FloorTileItemWoodParquetRed = красный деревянный паркет .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWoodChess = chess wood floor +ent-FloorTileItemWoodChess = деревянный шахматный пол .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWoodChessBlack = chess black wood floor +ent-FloorTileItemWoodChessBlack = чёрный деревянный шахматный пол .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWoodChessDark = chess dark wood floor +ent-FloorTileItemWoodChessDark = тёмный деревянный шахматный пол .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWoodChessLight = chess light wood floor +ent-FloorTileItemWoodChessLight = светлый деревянный шахматный пол .desc = { ent-FloorTileItemBase.desc } -ent-FloorTileItemWoodChessRed = chess red wood floor +ent-FloorTileItemWoodChessRed = красный деревянный шахматный пол .desc = { ent-FloorTileItemBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/moth.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/moth.ftl index c01dd8a1de0..1d03f099943 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/moth.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/moth.ftl @@ -1,2 +1,2 @@ -ent-MobMoth = Урист МакФлафф - .desc = { ent-BaseMobMoth.desc } +#ent-MobMoth = Урист МакФлафф +# .desc = { ent-BaseMobMoth.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/species/moth.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/species/moth.ftl index 91487be12e1..6835b62338b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/species/moth.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/species/moth.ftl @@ -1,5 +1,5 @@ -ent-BaseMobMoth = Урист МакФлафф - .desc = { ent-BaseMobSpeciesOrganic.desc } - .suffix = Ниан -ent-MobMothDummy = { ent-BaseSpeciesDummy } - .desc = { ent-BaseSpeciesDummy.desc } +# ent-BaseMobMoth = Урист МакФлафф +# .desc = { ent-BaseMobSpeciesOrganic.desc } +# .suffix = Ниан +# ent-MobMothDummy = { ent-BaseSpeciesDummy } +# .desc = { ent-BaseSpeciesDummy.desc } diff --git a/Resources/Maps/corvax_delta.yml b/Resources/Maps/corvax_delta.yml index dc9a00e1fe3..f83e3fe985e 100644 --- a/Resources/Maps/corvax_delta.yml +++ b/Resources/Maps/corvax_delta.yml @@ -694,42 +694,42 @@ entities: color: '#DE3A3A96' id: 1 decals: - 793: 59,19 + 792: 59,19 - node: color: '#DE3A3A96' id: 2 decals: - 794: 60,19 + 793: 60,19 - node: color: '#DE3A3A96' id: 3 decals: - 795: 61,19 + 794: 61,19 - node: color: '#DE3A3A96' id: 4 decals: - 796: 62,19 + 795: 62,19 - node: color: '#DE3A3A96' id: 5 decals: - 797: 63,19 + 796: 63,19 - node: color: '#DE3A3A96' id: 6 decals: - 798: 64,19 + 797: 64,19 - node: color: '#DE3A3A96' id: 7 decals: - 799: 65,19 + 798: 65,19 - node: color: '#DE3A3A96' id: 8 decals: - 800: 66,19 + 799: 66,19 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -740,8 +740,8 @@ entities: color: '#FFFFFFFF' id: Basalt2 decals: - 15802: 88,3 - 21315: -16.954817,20.099903 + 15739: 88,3 + 21247: -16.954817,20.099903 - node: color: '#FFFFFFFF' id: Bot @@ -778,11 +778,6 @@ entities: 56: 10,50 57: 10,49 93: -41,-38 - 105: 26,-60 - 106: 26,-61 - 107: 26,-62 - 108: 27,-62 - 109: 28,-62 126: -74,12 137: -27,15 138: -24,15 @@ -795,54 +790,54 @@ entities: 147: -37,10 148: -37,11 150: -36,23 - 166: 31,60 - 700: -41,-36 - 745: 63,13 - 746: 62,13 - 960: 29,32 - 983: -31,-54 - 1058: -32,-40 - 1059: -32,-47 - 1140: -95,-6 - 1141: -91,-6 - 1142: -91,-10 - 1143: -95,-10 - 1218: 61,9 - 1219: 61,8 - 1220: 61,7 - 1221: 63,7 - 1222: 63,8 - 1223: 63,9 - 6974: 4,29 - 6975: 5,29 - 6976: 6,29 - 6977: 7,29 - 6978: 8,29 - 6979: 8,28 + 165: 31,60 + 699: -41,-36 + 744: 63,13 + 745: 62,13 + 959: 29,32 + 982: -31,-54 + 1057: -32,-40 + 1058: -32,-47 + 1139: -95,-6 + 1140: -91,-6 + 1141: -91,-10 + 1142: -95,-10 + 1217: 61,9 + 1218: 61,8 + 1219: 61,7 + 1220: 63,7 + 1221: 63,8 + 1222: 63,9 + 6973: 4,29 + 6974: 5,29 + 6975: 6,29 + 6976: 7,29 + 6977: 8,29 + 6978: 8,28 + 6979: 7,28 6980: 7,28 - 6981: 7,28 - 6982: 6,28 - 6983: 5,28 - 6984: 4,28 - 18529: 12,-13 - 18530: 13,-13 - 18531: 14,-13 - 18532: 14,-14 - 18533: 13,-14 - 18534: 12,-14 + 6981: 6,28 + 6982: 5,28 + 6983: 4,28 + 18466: 12,-13 + 18467: 13,-13 + 18468: 14,-13 + 18469: 14,-14 + 18470: 13,-14 + 18471: 12,-14 - node: cleanable: True color: '#FFFFFFFF' id: Bot decals: - 626: -121,17 - 627: -123,17 - 934: 33,36 - 935: 34,36 - 936: 34,35 - 937: 33,35 - 938: 33,34 - 939: 34,34 + 625: -121,17 + 626: -123,17 + 933: 33,36 + 934: 34,36 + 935: 34,35 + 936: 33,35 + 937: 33,34 + 938: 34,34 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -863,41 +858,47 @@ entities: color: '#0096FFFF' id: BotGreyscale decals: - 1208: 59,7 - 1209: 59,8 - 1210: 59,9 - 1211: 57,9 - 1212: 57,8 - 1213: 57,7 + 1207: 59,7 + 1208: 59,8 + 1209: 59,9 + 1210: 57,9 + 1211: 57,8 + 1212: 57,7 + - node: + color: '#439909FF' + id: BotGreyscale + decals: + 24627: 27,-62 + 24628: 28,-62 - node: color: '#FF0000FF' id: BotGreyscale decals: - 1230: 65,7 - 1231: 65,8 - 1232: 65,9 - 1233: 67,9 - 1234: 67,8 - 1235: 67,7 - 1236: 68,8 - 1237: 68,10 - 1238: 69,10 - 1239: 70,10 - 1240: 70,8 + 1229: 65,7 + 1230: 65,8 + 1231: 65,9 + 1232: 67,9 + 1233: 67,8 + 1234: 67,7 + 1235: 68,8 + 1236: 68,10 + 1237: 69,10 + 1238: 70,10 + 1239: 70,8 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 1144: -95,-3 - 1145: -91,-3 - 1146: -91,-13 - 1147: -95,-13 - 19982: -16,4 - 19983: -16,3 - 19984: -16,2 - 19985: -16,1 - 19986: -16,0 - 19987: -16,-1 + 1143: -95,-3 + 1144: -91,-3 + 1145: -91,-13 + 1146: -95,-13 + 19918: -16,4 + 19919: -16,3 + 19920: -16,2 + 19921: -16,1 + 19922: -16,0 + 19923: -16,-1 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -935,19229 +936,19202 @@ entities: color: '#FFFFFFFF' id: BotRight decals: - 554: -50,25 - 555: -49,25 - 556: -48,25 - 557: -47,25 - 893: -47,24 - 894: -48,24 - 895: -49,24 - 896: -50,24 + 553: -50,25 + 554: -49,25 + 555: -48,25 + 556: -47,25 + 892: -47,24 + 893: -48,24 + 894: -49,24 + 895: -50,24 - node: color: '#A9DA8BFF' id: Box decals: - 3011: -31,45 - 3012: -31,38 + 3010: -31,45 + 3011: -31,38 - node: color: '#FFFFFFFF' id: Box decals: - 549: -93,-8 - 701: 20,-53 - 737: 64,13 - 738: 65,13 - 739: 66,13 - 740: 66,11 - 741: 65,11 - 742: 64,11 - 749: 78,23 - 750: 77,23 - 981: -30,-53 - 982: -31,-53 - 984: -31,-52 - 1051: -35,-44 - 1052: -35,-46 - 1053: -35,-41 - 1054: -35,-39 + 548: -93,-8 + 700: 20,-53 + 736: 64,13 + 737: 65,13 + 738: 66,13 + 739: 66,11 + 740: 65,11 + 741: 64,11 + 748: 78,23 + 749: 77,23 + 980: -30,-53 + 981: -31,-53 + 983: -31,-52 + 1050: -35,-44 + 1051: -35,-46 + 1052: -35,-41 + 1053: -35,-39 - node: cleanable: True color: '#FFFFFFFF' id: Box decals: - 949: 29,28 - 950: 29,27 - 951: 29,26 + 948: 29,28 + 949: 29,27 + 950: 29,26 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 20001: -16,3 - 20002: -16,2 - 20003: -16,1 - 20004: -16,0 - 20005: -16,-1 - 20006: -16,4 + 19937: -16,3 + 19938: -16,2 + 19939: -16,1 + 19940: -16,0 + 19941: -16,-1 + 19942: -16,4 - node: color: '#DA8B8BFF' id: BrickTileDarkBox decals: - 19302: 55,9 + 19239: 55,9 - node: color: '#EFB341FF' id: BrickTileDarkBox decals: - 17813: -61,57 - 17814: -63,53 - 17815: -61,50 - 17816: -61,48 - 17817: -59,55 - 17818: -54,43 - 17819: -56,43 - 17820: -51,41 - 17821: -55,39 - 17822: -48,43 - 17823: -46,41 + 17750: -61,57 + 17751: -63,53 + 17752: -61,50 + 17753: -61,48 + 17754: -59,55 + 17755: -54,43 + 17756: -56,43 + 17757: -51,41 + 17758: -55,39 + 17759: -48,43 + 17760: -46,41 - node: color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 1971: -8,30 - 1972: -8,33 - 1973: -4,30 - 1974: -8,27 - 1991: -9,25 - 2249: -14,48 - 2250: -14,50 - 2272: -25,41 - 2325: -28,30 - 2388: -31,29 - 2409: -30,39 - 2513: -9,45 - 2603: -5,37 - 2604: -1,42 - 2606: -1,40 - 2636: -1,55 - 2637: -2,51 - 2693: 3,49 - 2695: -12,51 - 2711: -6,51 - 2766: -1,48 - 2788: -4,47 - 2834: -30,44 - 2835: -32,44 - 2985: -36,49 - 2986: -38,44 - 3433: -1,61 - 3436: 2,59 - 3562: -14,77 - 3563: -16,77 - 3564: -10,77 - 3565: -8,77 - 3641: 4,77 - 3642: 2,77 - 3643: 4,84 - 3644: 2,84 - 3645: 6,86 - 3681: 6,66 - 3687: 4,64 - 3690: 4,60 - 3693: 5,91 - 3706: 10,83 - 3707: 13,78 - 3708: 12,73 - 3713: 10,89 - 3714: 12,87 - 3718: 5,93 - 3719: 10,91 - 3723: -22,55 - 3725: -25,66 - 3727: -25,63 - 3728: -25,61 - 3729: -25,59 - 3730: -28,59 - 3731: -30,66 - 3773: 4,57 - 3820: 9,68 - 3824: 13,67 - 3891: 24,66 - 3892: 16,66 - 3921: 7,58 - 3965: -31,59 + 1970: -8,30 + 1971: -8,33 + 1972: -4,30 + 1973: -8,27 + 1990: -9,25 + 2248: -14,48 + 2249: -14,50 + 2271: -25,41 + 2324: -28,30 + 2387: -31,29 + 2408: -30,39 + 2512: -9,45 + 2602: -5,37 + 2603: -1,42 + 2605: -1,40 + 2635: -1,55 + 2636: -2,51 + 2692: 3,49 + 2694: -12,51 + 2710: -6,51 + 2765: -1,48 + 2787: -4,47 + 2833: -30,44 + 2834: -32,44 + 2984: -36,49 + 2985: -38,44 + 3432: -1,61 + 3435: 2,59 + 3561: -14,77 + 3562: -16,77 + 3563: -10,77 + 3564: -8,77 + 3640: 4,77 + 3641: 2,77 + 3642: 4,84 + 3643: 2,84 + 3644: 6,86 + 3680: 6,66 + 3686: 4,64 + 3689: 4,60 + 3692: 5,91 + 3705: 10,83 + 3706: 13,78 + 3707: 12,73 + 3712: 10,89 + 3713: 12,87 + 3717: 5,93 + 3718: 10,91 + 3722: -22,55 + 3724: -25,66 + 3726: -25,63 + 3727: -25,61 + 3728: -25,59 + 3729: -28,59 + 3730: -30,66 + 3772: 4,57 + 3819: 9,68 + 3823: 13,67 + 3890: 24,66 + 3891: 16,66 + 3920: 7,58 + 3964: -31,59 + 3965: -38,58 3966: -38,58 3967: -38,58 - 3968: -38,58 - 3969: -36,58 - 4122: -21,20 - 4160: -25,18 - 4161: -21,20 - 4162: -21,17 - 4197: -10,12 - 4382: 1,29 - 4385: 4,32 - 4386: 9,32 - 4387: 11,28 - 4388: 11,30 - 4389: 13,33 - 4476: 15,33 - 4512: 10,38 - 4513: 5,38 - 4514: 10,41 - 4589: 12,45 - 4590: 12,43 - 4653: 19,24 - 4654: 21,25 - 4663: 28,31 - 4664: 23,36 - 4790: 28,39 - 4860: 33,51 - 4861: 33,49 - 4862: 39,51 - 4900: 10,55 - 4901: 17,55 - 5061: 39,52 - 5062: 39,48 - 5063: 33,48 - 5064: 33,52 - 5065: 39,49 - 5090: 31,29 - 5091: 35,29 - 5092: 37,30 - 5093: 35,33 - 5524: -17,4 - 5525: -17,-1 - 5581: -35,26 - 5630: -1,-7 - 5631: 8,-7 - 5639: 15,-4 - 5642: -11,6 - 5643: -15,4 - 5644: -14,-5 - 5653: 8,12 - 5684: 13,3 - 5699: 8,4 - 5712: 10,-1 - 5771: 12,-3 - 5800: -10,-7 - 6240: -4,-13 - 6241: 2,-13 - 6242: -4,-18 - 6243: -3,-16 - 6348: 8,-18 - 6349: 11,-16 - 6438: -21,-20 - 6540: -24,-10 - 6681: -31,1 - 6693: -24,-1 - 6694: -23,3 - 6702: -28,-17 - 6768: -17,-1 - 6770: -31,7 - 6771: -36,7 - 6776: -26,16 - 6800: -42,2 - 6892: -36,17 + 3968: -36,58 + 4121: -21,20 + 4159: -25,18 + 4160: -21,20 + 4161: -21,17 + 4196: -10,12 + 4381: 1,29 + 4384: 4,32 + 4385: 9,32 + 4386: 11,28 + 4387: 11,30 + 4388: 13,33 + 4475: 15,33 + 4511: 10,38 + 4512: 5,38 + 4513: 10,41 + 4588: 12,45 + 4589: 12,43 + 4652: 19,24 + 4653: 21,25 + 4662: 28,31 + 4663: 23,36 + 4789: 28,39 + 4859: 33,51 + 4860: 33,49 + 4861: 39,51 + 4899: 10,55 + 4900: 17,55 + 5060: 39,52 + 5061: 39,48 + 5062: 33,48 + 5063: 33,52 + 5064: 39,49 + 5089: 31,29 + 5090: 35,29 + 5091: 37,30 + 5092: 35,33 + 5523: -17,4 + 5524: -17,-1 + 5580: -35,26 + 5629: -1,-7 + 5630: 8,-7 + 5638: 15,-4 + 5641: -11,6 + 5642: -15,4 + 5643: -14,-5 + 5652: 8,12 + 5683: 13,3 + 5698: 8,4 + 5711: 10,-1 + 5770: 12,-3 + 5799: -10,-7 + 6239: -4,-13 + 6240: 2,-13 + 6241: -4,-18 + 6242: -3,-16 + 6347: 8,-18 + 6348: 11,-16 + 6437: -21,-20 + 6539: -24,-10 + 6680: -31,1 + 6692: -24,-1 + 6693: -23,3 + 6701: -28,-17 + 6767: -17,-1 + 6769: -31,7 + 6770: -36,7 + 6775: -26,16 + 6799: -42,2 + 6891: -36,17 + 6944: -24,-19 6945: -24,-19 - 6946: -24,-19 - 7048: 22,7 - 7067: 22,3 - 7068: 19,-3 - 7069: 22,-9 - 7116: 24,-8 - 7167: 32,1 - 7168: 35,3 - 7169: 36,-3 - 7170: 24,-2 - 7173: 30,3 - 7279: 29,7 - 7340: 33,6 - 7341: 33,4 - 7342: 36,7 - 7343: 36,10 - 7344: 38,6 - 7345: 38,4 - 7366: 45,8 - 7367: 40,10 - 7368: 45,12 - 7369: 40,2 - 7370: 45,0 - 7371: 36,10 - 7466: 49,4 - 7469: 49,8 - 7472: 53,10 - 7484: 47,14 - 7485: 51,14 - 7497: 49,16 - 7510: 37,20 - 7511: 44,20 - 7512: 52,20 - 7513: 57,20 - 7514: 55,17 - 7515: 60,25 - 7546: 49,12 - 7552: 75,24 - 7553: 75,26 - 7554: 73,20 - 7555: 71,18 - 7556: 71,13 - 7557: 71,6 - 7558: 73,4 - 7559: 75,9 - 7560: 79,9 - 7561: 83,11 - 7562: 94,17 - 7563: 94,21 - 7564: 90,21 - 7565: 92,27 - 7566: 92,24 - 7567: 83,11 - 7568: 73,4 + 7047: 22,7 + 7066: 22,3 + 7067: 19,-3 + 7068: 22,-9 + 7115: 24,-8 + 7166: 32,1 + 7167: 35,3 + 7168: 36,-3 + 7169: 24,-2 + 7172: 30,3 + 7278: 29,7 + 7339: 33,6 + 7340: 33,4 + 7341: 36,7 + 7342: 36,10 + 7343: 38,6 + 7344: 38,4 + 7365: 45,8 + 7366: 40,10 + 7367: 45,12 + 7368: 40,2 + 7369: 45,0 + 7370: 36,10 + 7465: 49,4 + 7468: 49,8 + 7471: 53,10 + 7483: 47,14 + 7484: 51,14 + 7496: 49,16 + 7509: 37,20 + 7510: 44,20 + 7511: 52,20 + 7512: 57,20 + 7513: 55,17 + 7514: 60,25 + 7545: 49,12 + 7551: 75,24 + 7552: 75,26 + 7553: 73,20 + 7554: 71,18 + 7555: 71,13 + 7556: 71,6 + 7557: 73,4 + 7558: 75,9 + 7559: 79,9 + 7560: 83,11 + 7561: 94,17 + 7562: 94,21 + 7563: 90,21 + 7564: 92,27 + 7565: 92,24 + 7566: 83,11 + 7567: 73,4 + 7568: 72,-4 7569: 72,-4 - 7570: 72,-4 + 7570: 69,-2 7571: 69,-2 - 7572: 69,-2 + 7572: 64,-4 7573: 64,-4 - 7574: 64,-4 - 7575: 61,-2 - 7576: 65,-2 - 7577: 52,-2 + 7574: 61,-2 + 7575: 65,-2 + 7576: 52,-2 + 7577: 47,-2 7578: 47,-2 - 7579: 47,-2 - 7614: 58,2 - 7615: 62,2 - 7616: 66,2 - 7617: 62,10 - 7618: 61,12 - 7619: 71,6 - 7638: 71,18 - 7639: 71,13 - 7644: 73,20 - 7764: 68,-1 - 7765: 68,1 - 7766: 71,-1 - 7767: 71,1 - 7949: 64,-19 - 7950: 66,-19 - 7951: 66,-22 - 7952: 64,-22 - 7953: 76,-22 - 7954: 76,-19 - 7955: 78,-19 - 7956: 78,-22 - 7957: 82,-22 - 7958: 82,-19 - 8007: 54,-21 - 8008: 54,-19 - 8009: 54,-11 - 8074: 23,-15 - 8075: 25,-13 - 8076: 32,-16 - 8077: 27,-17 - 8078: 29,-17 - 8079: 31,-17 - 8134: 25,-19 - 8141: 32,-12 + 7613: 58,2 + 7614: 62,2 + 7615: 66,2 + 7616: 62,10 + 7617: 61,12 + 7618: 71,6 + 7637: 71,18 + 7638: 71,13 + 7643: 73,20 + 7763: 68,-1 + 7764: 68,1 + 7765: 71,-1 + 7766: 71,1 + 7948: 64,-19 + 7949: 66,-19 + 7950: 66,-22 + 7951: 64,-22 + 7952: 76,-22 + 7953: 76,-19 + 7954: 78,-19 + 7955: 78,-22 + 7956: 82,-22 + 7957: 82,-19 + 8006: 54,-21 + 8007: 54,-19 + 8008: 54,-11 + 8073: 23,-15 + 8074: 25,-13 + 8075: 32,-16 + 8076: 27,-17 + 8077: 29,-17 + 8078: 31,-17 + 8133: 25,-19 + 8140: 32,-12 + 8141: 32,-10 8142: 32,-10 - 8143: 32,-10 - 8202: 33,-6 - 8206: 42,-8 - 8207: 39,-18 + 8201: 33,-6 + 8205: 42,-8 + 8206: 39,-18 + 8207: 41,-18 8208: 41,-18 - 8209: 41,-18 - 8210: 42,-19 - 8211: 42,-21 - 8214: 44,-22 - 8215: 48,-22 - 8216: 52,-22 - 8267: 40,-17 - 8345: 46,-13 - 8386: 52,-18 - 8560: 54,-29 - 9532: 2,-35 - 9533: 5,-29 - 9534: 11,-29 - 9537: 15,-31 - 9602: 9,-36 - 9603: 9,-34 - 9604: 5,-37 - 9609: 1,-39 - 9688: 15,-35 - 9719: 21,-33 - 9720: 29,-33 - 9721: 36,-33 - 9722: 33,-23 - 9723: 29,-28 - 9724: 23,-29 - 9725: 29,-40 - 9726: 25,-44 - 9727: 29,-44 - 9728: 29,-50 - 9729: 19,-44 - 9730: 22,-50 - 9731: 17,-48 - 9734: 27,-54 - 9898: 15,-44 - 9940: 39,-35 - 9945: 37,-43 - 10074: 35,-26 - 10075: 37,-27 - 10076: 37,-25 - 10154: 31,-54 - 10293: 4,-42 - 10294: 1,-44 - 10295: 9,-42 - 10296: 4,-48 - 10297: 1,-51 - 10298: 10,-54 - 10299: 8,-56 - 10300: 2,-55 - 10301: 12,-56 - 10302: 10,-57 - 10303: 7,-57 - 10304: 13,-47 - 10305: 17,-54 - 10485: 25,-56 - 10486: 29,-56 - 10511: 2,-60 - 10512: 2,-60 - 10513: 5,-63 - 10514: 5,-63 - 10526: 5,-73 - 10527: 5,-73 - 10528: 7,-75 - 10529: 5,-79 - 10530: 4,-87 - 10531: 4,-83 - 10532: 7,-77 - 10533: 7,-65 - 10642: 76,-45 - 10643: 73,-41 - 10644: 68,-41 - 10645: 73,-48 - 10646: 71,-50 - 10821: 33,-61 - 10873: 42,-62 - 10874: 37,-62 - 10889: 33,-68 - 10890: 37,-70 - 10891: 39,-72 - 10892: 41,-72 - 10893: 41,-72 - 11183: -61,-43 - 11184: -59,-33 - 11185: -59,-40 - 11186: -47,-46 - 11187: -47,-42 - 11299: -11,-83 - 11300: -11,-79 - 11301: -6,-83 - 11302: -4,-83 - 11303: -4,-83 - 11304: 2,-87 - 11305: -4,-87 - 11306: -6,-87 - 11310: 2,-83 - 11353: -24,-63 - 11354: -23,-71 - 11355: -23,-77 - 11356: -23,-79 - 11357: -21,-77 - 11358: -18,-78 - 11359: -12,-78 - 11360: -14,-77 - 11361: -19,-81 - 11362: -10,-63 - 11367: -34,-51 - 11368: -36,-53 - 11369: -34,-55 - 11370: -32,-53 - 11371: -3,-48 - 11379: -4,-35 - 11381: -6,-29 - 11385: -15,-29 - 11386: -13,-29 - 11621: -11,-35 - 11622: -11,-34 - 11623: -13,-33 - 11624: -15,-33 - 11674: -7,-37 - 11675: -6,-45 - 11676: -12,-50 - 11677: -20,-52 - 11678: -18,-51 - 11679: -6,-54 - 11680: -4,-56 - 11681: -16,-55 - 11686: -19,-45 - 11687: -19,-45 - 11688: -16,-40 - 11689: -34,-25 - 11690: -38,-25 - 11691: -42,-25 - 11692: -49,-28 - 11693: -42,-31 - 11694: -38,-31 - 11695: -34,-31 - 11707: -46,-24 - 11708: -48,-23 - 11709: -48,-23 - 11710: -35,-37 - 11711: -35,-37 - 11712: -42,-37 - 11713: -42,-37 - 11714: -45,-35 - 11715: -29,-37 - 11716: -29,-37 - 11717: -31,-39 - 11718: -29,-43 - 11719: -29,-43 - 11720: -24,-37 - 11721: -12,-41 - 11797: -12,-59 - 11798: -24,-43 - 11799: -24,-49 - 11858: -36,-45 - 11859: -36,-40 - 12052: -25,-24 - 12053: -23,-23 - 12054: -21,-26 - 12055: -17,-24 - 12056: -21,-31 - 12345: -17,-64 - 12346: -4,-60 - 12681: -37,27 - 12723: -45,9 - 12725: -45,18 - 12839: -45,9 - 12841: -44,23 - 13275: 52,-37 - 13341: -37,-59 - 13342: -37,-64 - 13343: -35,-66 - 13344: -41,-64 - 13355: -30,-61 - 13550: -33,-72 - 14373: -46,12 - 14374: -46,14 - 15335: -49,9 - 15336: -48,7 - 15352: -42,2 - 15549: 75,1 - 15555: 92,8 - 15556: 94,10 - 15557: 78,3 - 15558: 81,-1 - 15559: 85,-1 - 15560: 89,-1 - 15566: 96,-3 - 15872: 94,13 - 16139: -61,-48 - 16663: -58,-11 - 16664: -56,-9 - 16665: -56,-7 - 16688: -58,-11 - 16694: -56,-19 - 16695: -54,-19 - 16698: -60,-17 - 16699: -62,-17 - 16745: -58,-5 - 16750: -48,1 - 16751: -49,3 - 16815: -56,-7 - 16816: -56,-9 - 16817: -62,-7 - 16907: -62,1 - 16908: -65,1 - 16968: -62,-7 - 17051: -51,-15 - 17082: -61,-18 - 17111: -60,14 - 17112: -67,15 - 17113: -72,13 - 17114: -72,9 - 17115: -79,14 - 17116: -77,8 - 17117: -83,14 - 17118: -77,2 - 17119: -75,0 - 17120: -73,3 - 17121: -65,1 - 17122: -71,-5 - 17123: -69,-5 - 17132: -60,14 - 17133: -58,16 - 17134: -67,15 - 17135: -72,13 - 17136: -77,12 - 17137: -79,14 - 17138: -77,8 - 17139: -72,9 - 17140: -73,3 - 17141: -77,2 - 17142: -75,0 - 17143: -80,0 - 17144: -80,-5 - 17145: -82,-3 - 17146: -62,-7 - 17147: -60,6 - 17148: -60,10 - 17149: -46,14 - 17150: -46,12 - 17224: -77,8 - 17225: -72,9 - 17226: -73,3 - 17227: -77,2 - 17228: -75,0 - 17229: -80,0 - 17422: 9,90 - 17423: 11,90 - 17812: -69,55 - 17824: -55,39 - 17825: -54,43 - 17826: -56,43 - 17827: -51,41 - 17828: -48,43 - 17829: -46,41 - 17830: -61,48 - 17831: -61,50 - 17832: -63,53 - 17833: -61,57 - 17834: -67,57 - 17835: -59,55 - 17836: -60,39 - 17837: -62,39 - 17838: -55,31 - 17839: -51,21 - 18039: -44,52 - 18040: -44,50 - 18073: -52,20 - 18463: -14,-11 - 18464: -10,-11 - 18500: 8,-11 - 18951: 57,3 - 18952: 59,3 - 18953: 61,3 - 18954: 63,3 - 18955: 65,3 - 18956: 67,3 - 18960: 57,6 - 18961: 59,6 - 18962: 61,6 - 18963: 63,6 - 18964: 65,6 - 18965: 67,6 - 18966: 68,7 - 18967: 70,7 - 18968: 70,8 - 18969: 68,8 - 19790: -29,-25 - 19892: -48,-3 - 19977: -16,5 - 19978: -16,-2 - 20013: 37,39 - 20036: 71,26 - 20069: 62,27 - 20104: 40,-17 - 20105: 40,-17 - 21172: 75,-4 - 21202: 45,-8 - 21212: 51,-6 - 21231: 56,-2 - 21342: 21,23 + 8209: 42,-19 + 8210: 42,-21 + 8213: 44,-22 + 8214: 48,-22 + 8215: 52,-22 + 8266: 40,-17 + 8344: 46,-13 + 8385: 52,-18 + 8559: 54,-29 + 9512: 2,-35 + 9513: 5,-29 + 9514: 11,-29 + 9515: 15,-31 + 9578: 9,-36 + 9579: 9,-34 + 9580: 5,-37 + 9585: 1,-39 + 9658: 15,-35 + 9682: 21,-33 + 9683: 29,-33 + 9684: 36,-33 + 9685: 33,-23 + 9686: 29,-28 + 9687: 23,-29 + 9688: 29,-40 + 9689: 25,-44 + 9690: 29,-44 + 9691: 29,-50 + 9692: 19,-44 + 9693: 22,-50 + 9694: 17,-48 + 9697: 27,-54 + 9845: 15,-44 + 9887: 39,-35 + 9892: 37,-43 + 10020: 35,-26 + 10021: 37,-27 + 10022: 37,-25 + 10100: 31,-54 + 10239: 4,-42 + 10240: 1,-44 + 10241: 9,-42 + 10242: 4,-48 + 10243: 1,-51 + 10244: 10,-54 + 10245: 8,-56 + 10246: 2,-55 + 10247: 12,-56 + 10248: 10,-57 + 10249: 7,-57 + 10250: 13,-47 + 10251: 17,-54 + 10423: 25,-56 + 10424: 29,-56 + 10449: 2,-60 + 10450: 2,-60 + 10451: 5,-63 + 10452: 5,-63 + 10464: 5,-73 + 10465: 5,-73 + 10466: 7,-75 + 10467: 5,-79 + 10468: 4,-87 + 10469: 4,-83 + 10470: 7,-77 + 10471: 7,-65 + 10580: 76,-45 + 10581: 73,-41 + 10582: 68,-41 + 10583: 73,-48 + 10584: 71,-50 + 10829: 39,-72 + 10830: 41,-72 + 10831: 41,-72 + 11121: -61,-43 + 11122: -59,-33 + 11123: -59,-40 + 11124: -47,-46 + 11125: -47,-42 + 11237: -11,-83 + 11238: -11,-79 + 11239: -6,-83 + 11240: -4,-83 + 11241: -4,-83 + 11242: 2,-87 + 11243: -4,-87 + 11244: -6,-87 + 11248: 2,-83 + 11291: -24,-63 + 11292: -23,-71 + 11293: -23,-77 + 11294: -23,-79 + 11295: -21,-77 + 11296: -18,-78 + 11297: -12,-78 + 11298: -14,-77 + 11299: -19,-81 + 11300: -10,-63 + 11305: -34,-51 + 11306: -36,-53 + 11307: -34,-55 + 11308: -32,-53 + 11309: -3,-48 + 11317: -4,-35 + 11319: -6,-29 + 11323: -15,-29 + 11324: -13,-29 + 11559: -11,-35 + 11560: -11,-34 + 11561: -13,-33 + 11562: -15,-33 + 11612: -7,-37 + 11613: -6,-45 + 11614: -12,-50 + 11615: -20,-52 + 11616: -18,-51 + 11617: -6,-54 + 11618: -4,-56 + 11619: -16,-55 + 11624: -19,-45 + 11625: -19,-45 + 11626: -16,-40 + 11627: -34,-25 + 11628: -38,-25 + 11629: -42,-25 + 11631: -42,-31 + 11632: -38,-31 + 11633: -34,-31 + 11645: -46,-24 + 11646: -48,-23 + 11647: -48,-23 + 11648: -35,-37 + 11649: -35,-37 + 11650: -42,-37 + 11651: -42,-37 + 11652: -45,-35 + 11653: -29,-37 + 11654: -29,-37 + 11655: -31,-39 + 11656: -29,-43 + 11657: -29,-43 + 11658: -24,-37 + 11659: -12,-41 + 11735: -12,-59 + 11736: -24,-43 + 11737: -24,-49 + 11796: -36,-45 + 11797: -36,-40 + 11990: -25,-24 + 11991: -23,-23 + 11992: -21,-26 + 11993: -17,-24 + 11994: -21,-31 + 12283: -17,-64 + 12284: -4,-60 + 12618: -37,27 + 12660: -45,9 + 12662: -45,18 + 12776: -45,9 + 12778: -44,23 + 13212: 52,-37 + 13278: -37,-59 + 13279: -37,-64 + 13280: -35,-66 + 13281: -41,-64 + 13292: -30,-61 + 13487: -33,-72 + 14310: -46,12 + 14311: -46,14 + 15272: -49,9 + 15273: -48,7 + 15289: -42,2 + 15486: 75,1 + 15492: 92,8 + 15493: 94,10 + 15494: 78,3 + 15495: 81,-1 + 15496: 85,-1 + 15497: 89,-1 + 15503: 96,-3 + 15809: 94,13 + 16076: -61,-48 + 16600: -58,-11 + 16601: -56,-9 + 16602: -56,-7 + 16625: -58,-11 + 16631: -56,-19 + 16632: -54,-19 + 16635: -60,-17 + 16636: -62,-17 + 16682: -58,-5 + 16687: -48,1 + 16688: -49,3 + 16752: -56,-7 + 16753: -56,-9 + 16754: -62,-7 + 16844: -62,1 + 16845: -65,1 + 16905: -62,-7 + 16988: -51,-15 + 17019: -61,-18 + 17048: -60,14 + 17049: -67,15 + 17050: -72,13 + 17051: -72,9 + 17052: -79,14 + 17053: -77,8 + 17054: -83,14 + 17055: -77,2 + 17056: -75,0 + 17057: -73,3 + 17058: -65,1 + 17059: -71,-5 + 17060: -69,-5 + 17069: -60,14 + 17070: -58,16 + 17071: -67,15 + 17072: -72,13 + 17073: -77,12 + 17074: -79,14 + 17075: -77,8 + 17076: -72,9 + 17077: -73,3 + 17078: -77,2 + 17079: -75,0 + 17080: -80,0 + 17081: -80,-5 + 17082: -82,-3 + 17083: -62,-7 + 17084: -60,6 + 17085: -60,10 + 17086: -46,14 + 17087: -46,12 + 17161: -77,8 + 17162: -72,9 + 17163: -73,3 + 17164: -77,2 + 17165: -75,0 + 17166: -80,0 + 17359: 9,90 + 17360: 11,90 + 17749: -69,55 + 17761: -55,39 + 17762: -54,43 + 17763: -56,43 + 17764: -51,41 + 17765: -48,43 + 17766: -46,41 + 17767: -61,48 + 17768: -61,50 + 17769: -63,53 + 17770: -61,57 + 17771: -67,57 + 17772: -59,55 + 17773: -60,39 + 17774: -62,39 + 17775: -55,31 + 17776: -51,21 + 17976: -44,52 + 17977: -44,50 + 18010: -52,20 + 18400: -14,-11 + 18401: -10,-11 + 18437: 8,-11 + 18888: 57,3 + 18889: 59,3 + 18890: 61,3 + 18891: 63,3 + 18892: 65,3 + 18893: 67,3 + 18897: 57,6 + 18898: 59,6 + 18899: 61,6 + 18900: 63,6 + 18901: 65,6 + 18902: 67,6 + 18903: 68,7 + 18904: 70,7 + 18905: 70,8 + 18906: 68,8 + 19828: -48,-3 + 19913: -16,5 + 19914: -16,-2 + 19949: 37,39 + 19972: 71,26 + 20005: 62,27 + 20040: 40,-17 + 20041: 40,-17 + 21104: 75,-4 + 21134: 45,-8 + 21144: 51,-6 + 21163: 56,-2 + 21274: 21,23 + 24253: -29,-25 + 24259: -49,-28 + 24613: 33,-61 + 24614: 29,-61 + 24615: 27,-59 + 24616: 42,-62 + 24617: 37,-62 + 24618: 37,-70 + 24619: 40,-69 + 24620: 33,-68 + 24621: 41,-72 + 24622: 39,-72 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkBox decals: - 4101: 0,25 + 4100: 0,25 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerNe decals: - 4190: -11,16 - 4209: 11,16 - 4273: 4,18 - 4274: 7,16 - 4305: 14,16 - 9933: 34,-44 + 4189: -11,16 + 4208: 11,16 + 4272: 4,18 + 4273: 7,16 + 4304: 14,16 + 9880: 34,-44 - node: color: '#A9DA8BFF' id: BrickTileDarkCornerNe decals: - 2977: -26,54 - 2978: -25,53 + 2976: -26,54 + 2977: -25,53 - node: color: '#B18BDAFF' id: BrickTileDarkCornerNe decals: - 11728: -5,-38 - 11729: -4,-39 - 12618: -51,-25 - 12619: -50,-27 + 11666: -5,-38 + 11667: -4,-39 + - node: + color: '#D381C9FF' + id: BrickTileDarkCornerNe + decals: + 24244: -45,-25 + 24245: -41,-26 + 24246: -37,-26 + 24247: -33,-26 + 24248: -26,-26 + 24294: -45,-22 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerNe decals: - 7414: 37,9 - 7430: 37,12 - 7433: 48,-3 - 7599: 58,-3 - 7602: 53,-3 - 15539: 74,3 - 19013: 74,19 - 19039: 44,1 - 19082: 41,1 - 19098: 44,9 - 19099: 44,13 - 19100: 41,13 - 19136: 47,24 - 19140: 48,19 - 19170: 54,19 - 19185: 71,-3 - 19200: 76,23 - 19267: 60,13 - 19300: 55,9 - 19597: 55,29 - 20010: 58,32 - 20011: 59,31 + 7413: 37,9 + 7429: 37,12 + 7432: 48,-3 + 7598: 58,-3 + 7601: 53,-3 + 15476: 74,3 + 18950: 74,19 + 18976: 44,1 + 19019: 41,1 + 19035: 44,9 + 19036: 44,13 + 19037: 41,13 + 19073: 47,24 + 19077: 48,19 + 19107: 54,19 + 19122: 71,-3 + 19137: 76,23 + 19204: 60,13 + 19237: 55,9 + 19533: 55,29 + 19946: 58,32 + 19947: 59,31 - node: color: '#EFB341FF' id: BrickTileDarkCornerNe decals: - 17551: -61,11 - 17631: -70,8 - 18218: -67,1 + 17488: -61,11 + 17568: -70,8 + 18155: -67,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: - 1202: 13,-59 - 1242: 70,4 - 2021: -15,28 - 2340: -28,38 - 2412: -10,46 - 2470: -10,46 - 2543: -6,43 - 2544: -7,46 - 3208: -2,65 - 3947: 18,61 - 5706: 11,7 - 5720: 11,3 - 5766: 8,-2 - 5803: -15,-4 - 5813: -9,-3 - 5926: 1,14 + 1201: 13,-59 + 1241: 70,4 + 2020: -15,28 + 2339: -28,38 + 2411: -10,46 + 2469: -10,46 + 2542: -6,43 + 2543: -7,46 + 3207: -2,65 + 3946: 18,61 + 5705: 11,7 + 5719: 11,3 + 5765: 8,-2 + 5802: -15,-4 + 5812: -9,-3 + 5925: 1,14 + 6554: -22,-5 6555: -22,-5 - 6556: -22,-5 - 7208: 23,2 - 7270: 36,1 - 7314: 33,11 - 7675: 43,22 - 7694: 36,21 - 8509: 53,-23 - 8587: 65,-10 - 8591: 65,-29 - 10236: 37,-29 - 10237: 37,-29 - 10402: 12,-49 - 10471: 14,-58 - 10572: 51,-54 - 10669: 82,-43 - 10684: 74,-37 - 10765: 45,-51 - 11298: -74,-34 - 12388: -15,-74 - 12409: -13,-65 - 12423: -13,-79 - 12435: -21,-80 - 12591: -23,-64 - 13348: -38,-66 - 13522: -29,-73 - 13554: -31,-77 - 15641: 93,7 - 15680: 100,-2 - 15714: 96,3 - 16010: 91,9 - 16760: -45,6 - 17089: -46,-12 - 17712: -78,11 - 18044: -44,48 - 18059: -53,38 - 18080: -52,25 - 18117: -57,7 - 18357: -50,-36 - 18523: 14,-13 - 18539: 14,-13 - 18540: 14,-13 - 19417: -9,34 - 19426: -12,34 - 19483: -12,34 - 19500: -9,34 - 19799: -27,-22 - 20090: 68,30 - 21354: 26,17 - 21398: 25,16 + 7207: 23,2 + 7269: 36,1 + 7313: 33,11 + 7674: 43,22 + 7693: 36,21 + 8508: 53,-23 + 8586: 65,-10 + 8590: 65,-29 + 10182: 37,-29 + 10183: 37,-29 + 10340: 12,-49 + 10409: 14,-58 + 10510: 51,-54 + 10607: 82,-43 + 10622: 74,-37 + 10703: 45,-51 + 11236: -74,-34 + 12325: -15,-74 + 12346: -13,-65 + 12360: -13,-79 + 12372: -21,-80 + 12528: -23,-64 + 13285: -38,-66 + 13459: -29,-73 + 13491: -31,-77 + 15578: 93,7 + 15617: 100,-2 + 15651: 96,3 + 15947: 91,9 + 16697: -45,6 + 17026: -46,-12 + 17649: -78,11 + 17981: -44,48 + 17996: -53,38 + 18017: -52,25 + 18054: -57,7 + 18294: -50,-36 + 18460: 14,-13 + 18476: 14,-13 + 18477: 14,-13 + 19353: -9,34 + 19362: -12,34 + 19419: -12,34 + 19436: -9,34 + 20026: 68,30 + 21286: 26,17 + 21330: 25,16 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerNw decals: - 4172: -16,16 - 4179: -13,16 - 4211: 9,16 - 4260: -9,16 - 4263: -6,18 - 21294: -16,16 + 4171: -16,16 + 4178: -13,16 + 4210: 9,16 + 4259: -9,16 + 4262: -6,18 + 21226: -16,16 - node: color: '#B18BDAFF' id: BrickTileDarkCornerNw decals: - 11722: -10,-38 - 11723: -10,-38 - 11724: -11,-39 - 12617: -53,-25 + 11660: -10,-38 + 11661: -10,-38 + 11662: -11,-39 + - node: + color: '#D381C9FF' + id: BrickTileDarkCornerNw + decals: + 24296: -47,-22 + 24320: -43,-26 + 24321: -39,-26 + 24322: -35,-26 + 24369: -31,-26 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerNw decals: - 7429: 35,12 - 7596: 50,-3 + 7428: 35,12 + 7595: 50,-3 + 7596: 55,-3 7597: 55,-3 - 7598: 55,-3 - 15540: 72,3 - 19014: 72,19 - 19040: 43,1 - 19079: 35,9 - 19081: 39,1 - 19095: 43,13 - 19096: 39,13 - 19097: 43,9 - 19120: 46,13 - 19134: 45,24 - 19169: 50,19 - 19183: 56,19 - 19184: 68,-3 - 19199: 72,23 - 19268: 50,13 - 19301: 50,9 - 19358: -20,-24 - 19596: 53,29 - 20007: 50,32 - 20008: 49,31 + 15477: 72,3 + 18951: 72,19 + 18977: 43,1 + 19016: 35,9 + 19018: 39,1 + 19032: 43,13 + 19033: 39,13 + 19034: 43,9 + 19057: 46,13 + 19071: 45,24 + 19106: 50,19 + 19120: 56,19 + 19121: 68,-3 + 19136: 72,23 + 19205: 50,13 + 19238: 50,9 + 19295: -20,-24 + 19532: 53,29 + 19943: 50,32 + 19944: 49,31 - node: color: '#DE3A3AFF' id: BrickTileDarkCornerNw decals: - 20280: -24,2 + 20216: -24,2 - node: color: '#EFB341FF' id: BrickTileDarkCornerNw decals: - 17550: -66,11 - 17632: -74,8 - 18217: -73,1 + 17487: -66,11 + 17569: -74,8 + 18154: -73,1 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: - 1203: 11,-59 - 1241: 68,4 - 2010: -17,34 - 2533: -8,46 - 2612: -4,40 - 2718: -7,54 - 3933: 12,62 - 3981: -42,63 - 5696: 7,7 - 5708: 7,3 - 5765: 7,-2 - 5802: -16,-4 - 5811: -13,-3 - 5925: -3,14 + 1202: 11,-59 + 1240: 68,4 + 2009: -17,34 + 2532: -8,46 + 2611: -4,40 + 2717: -7,54 + 3932: 12,62 + 3980: -42,63 + 5695: 7,7 + 5707: 7,3 + 5764: 7,-2 + 5801: -16,-4 + 5810: -13,-3 + 5924: -3,14 + 6552: -26,-5 6553: -26,-5 - 6554: -26,-5 - 7218: 20,2 - 7269: 34,1 - 7285: 26,9 - 7313: 29,11 - 7669: 39,22 + 7217: 20,2 + 7268: 34,1 + 7284: 26,9 + 7312: 29,11 + 7668: 39,22 + 7691: 34,21 7692: 34,21 - 7693: 34,21 - 8508: 51,-23 - 8585: 64,-29 - 8586: 64,-10 - 10235: 35,-29 - 10401: 2,-49 - 10436: 2,-49 - 10571: 49,-54 - 10668: 80,-43 - 10683: 72,-37 - 10764: 44,-51 - 11296: -75,-34 - 11297: -75,-34 - 12389: -19,-74 - 12408: -21,-65 - 12422: -16,-79 - 12434: -23,-80 - 12542: -18,-80 - 12577: -25,-64 - 12578: -24,-72 - 12592: -25,-64 - 12674: -39,26 - 13345: -41,-66 - 13553: -35,-77 - 15629: 89,10 - 15644: 91,7 - 15679: 99,-2 - 15707: 93,3 - 15825: 79,-2 - 15852: 83,-2 - 15853: 87,-2 - 15882: 95,14 - 16013: 93,9 - 16756: -49,6 - 17713: -79,11 - 18043: -45,48 - 18116: -58,7 - 18347: -53,-36 - 18524: 12,-13 - 18538: 12,-13 - 19416: -10,34 - 19440: -15,31 - 19482: -10,34 - 19793: -31,-22 - 20081: 61,30 - 21353: 22,17 - 21397: 23,16 + 8507: 51,-23 + 8584: 64,-29 + 8585: 64,-10 + 10181: 35,-29 + 10339: 2,-49 + 10374: 2,-49 + 10509: 49,-54 + 10606: 80,-43 + 10621: 72,-37 + 10702: 44,-51 + 11234: -75,-34 + 11235: -75,-34 + 12326: -19,-74 + 12345: -21,-65 + 12359: -16,-79 + 12371: -23,-80 + 12479: -18,-80 + 12514: -25,-64 + 12515: -24,-72 + 12529: -25,-64 + 12611: -39,26 + 13282: -41,-66 + 13490: -35,-77 + 15566: 89,10 + 15581: 91,7 + 15616: 99,-2 + 15644: 93,3 + 15762: 79,-2 + 15789: 83,-2 + 15790: 87,-2 + 15819: 95,14 + 15950: 93,9 + 16693: -49,6 + 17650: -79,11 + 17980: -45,48 + 18053: -58,7 + 18284: -53,-36 + 18461: 12,-13 + 18475: 12,-13 + 19352: -10,34 + 19376: -15,31 + 19418: -10,34 + 20017: 61,30 + 21285: 22,17 + 21329: 23,16 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerSe decals: - 4208: 11,13 - 4286: -4,13 - 4306: 14,13 - 9934: 34,-45 + 4207: 11,13 + 4285: -4,13 + 4305: 14,13 + 9881: 34,-45 - node: color: '#A9DA8BFF' id: BrickTileDarkCornerSe decals: - 2979: -25,52 + 2978: -25,52 - node: color: '#B18BDAFF' id: BrickTileDarkCornerSe decals: - 11730: -4,-43 - 11731: -5,-44 - 12116: -23,-48 - 12620: -50,-29 - 12621: -51,-31 + 11668: -4,-43 + 11669: -5,-44 + 12054: -23,-48 + - node: + color: '#D381C9FF' + id: BrickTileDarkCornerSe + decals: + 24285: -45,-31 + 24293: -45,-23 + 24314: -33,-30 + 24315: -37,-30 + 24316: -41,-30 + 24359: -26,-32 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerSe decals: - 7428: 37,11 - 7435: 48,-5 - 7590: 58,-5 - 7591: 53,-5 - 15547: 74,-1 - 19016: 74,5 - 19036: 44,-1 - 19080: 41,-1 - 19092: 44,7 - 19093: 44,11 - 19094: 41,11 - 19118: 60,11 - 19123: 48,15 - 19154: 59,21 - 19171: 54,15 - 19181: 57,15 - 19187: 71,-5 - 19198: 76,21 - 19306: 55,3 - 19359: -18,-28 - 19612: 52,31 + 7427: 37,11 + 7434: 48,-5 + 7589: 58,-5 + 7590: 53,-5 + 15484: 74,-1 + 18953: 74,5 + 18973: 44,-1 + 19017: 41,-1 + 19029: 44,7 + 19030: 44,11 + 19031: 41,11 + 19055: 60,11 + 19060: 48,15 + 19091: 59,21 + 19108: 54,15 + 19118: 57,15 + 19124: 71,-5 + 19135: 76,21 + 19243: 55,3 + 19296: -18,-28 + 19548: 52,31 - node: color: '#DE3A3AFF' id: BrickTileDarkCornerSe decals: - 20279: -22,0 + 20215: -22,0 - node: color: '#EFB341FF' id: BrickTileDarkCornerSe decals: - 17549: -61,4 - 17624: -70,4 - 18232: -67,-3 + 17486: -61,4 + 17561: -70,4 + 18169: -67,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe decals: - 1204: 13,-61 - 2018: -15,26 - 2022: -15,32 - 2416: -10,36 - 2479: -10,36 - 2531: -6,36 - 2615: -2,36 - 2666: 2,54 - 2714: -5,52 - 3205: -2,60 - 3886: 23,65 - 3986: -40,59 - 5704: 11,5 - 5715: 11,0 - 5764: 8,-3 - 5805: -15,-6 - 5814: -9,-6 - 5924: 1,12 - 6552: -22,-9 - 6820: -33,8 - 7264: 36,-1 - 7280: 27,8 - 7318: 33,8 + 1203: 13,-61 + 2017: -15,26 + 2021: -15,32 + 2415: -10,36 + 2478: -10,36 + 2530: -6,36 + 2614: -2,36 + 2665: 2,54 + 2713: -5,52 + 3204: -2,60 + 3885: 23,65 + 3985: -40,59 + 5703: 11,5 + 5714: 11,0 + 5763: 8,-3 + 5804: -15,-6 + 5813: -9,-6 + 5923: 1,12 + 6551: -22,-9 + 6819: -33,8 + 7263: 36,-1 + 7279: 27,8 + 7317: 33,8 + 7675: 43,18 7676: 43,18 - 7677: 43,18 - 7689: 36,19 - 8518: 53,-26 - 8583: 65,-12 - 8584: 65,-31 - 10234: 37,-31 - 10404: 12,-53 - 10465: 14,-62 - 10573: 51,-56 - 10667: 82,-47 - 10686: 74,-40 - 10763: 45,-55 - 11291: -74,-36 - 12395: -15,-76 - 12429: -13,-82 - 12432: -21,-82 - 12540: -17,-82 - 12676: -38,25 - 13353: -38,-68 - 13542: -36,-78 - 13560: -31,-80 - 15642: 93,6 - 15682: 100,-4 - 15713: 96,1 - 15831: 81,-5 - 15848: 89,-5 - 15849: 85,-5 - 15880: 96,12 - 16761: -45,4 - 17094: -46,-18 - 17714: -78,9 - 18042: -44,46 - 18121: -57,5 - 18528: 14,-14 - 18536: 14,-14 - 18957: 70,3 - 19428: -12,26 - 19488: -12,26 - 19794: -27,-24 - 20091: 68,28 - 21352: 26,12 - 21393: 25,13 + 7688: 36,19 + 8517: 53,-26 + 8582: 65,-12 + 8583: 65,-31 + 10180: 37,-31 + 10342: 12,-53 + 10403: 14,-62 + 10511: 51,-56 + 10605: 82,-47 + 10624: 74,-40 + 10701: 45,-55 + 11229: -74,-36 + 12332: -15,-76 + 12366: -13,-82 + 12369: -21,-82 + 12477: -17,-82 + 12613: -38,25 + 13290: -38,-68 + 13479: -36,-78 + 13497: -31,-80 + 15579: 93,6 + 15619: 100,-4 + 15650: 96,1 + 15768: 81,-5 + 15785: 89,-5 + 15786: 85,-5 + 15817: 96,12 + 16698: -45,4 + 17031: -46,-18 + 17651: -78,9 + 17979: -44,46 + 18058: -57,5 + 18465: 14,-14 + 18473: 14,-14 + 18894: 70,3 + 19364: -12,26 + 19424: -12,26 + 20027: 68,28 + 21284: 26,12 + 21325: 25,13 - node: color: '#8CB7E8FF' id: BrickTileDarkCornerSw decals: - 4173: -16,13 - 4178: -13,13 - 4285: 2,13 - 9935: 30,-45 - 21290: -13,13 - 21291: -16,13 + 4172: -16,13 + 4177: -13,13 + 4284: 2,13 + 9882: 30,-45 + 21222: -13,13 + 21223: -16,13 - node: color: '#A9DA8BFF' id: BrickTileDarkCornerSw decals: - 2973: -27,52 + 2972: -27,52 - node: color: '#B18BDAFF' id: BrickTileDarkCornerSw decals: - 11732: -11,-44 - 12117: -30,-48 - 12622: -53,-31 + 11670: -11,-44 + 12055: -30,-48 + - node: + color: '#D381C9FF' + id: BrickTileDarkCornerSw + decals: + 24317: -43,-30 + 24318: -39,-30 + 24319: -35,-30 + 24356: -31,-32 - node: color: '#DA8B8BFF' id: BrickTileDarkCornerSw decals: - 7431: 35,11 - 7588: 50,-5 - 7589: 55,-5 - 19015: 72,5 - 19033: 46,-1 - 19034: 39,-1 - 19035: 43,-1 - 19078: 35,8 - 19089: 39,11 - 19090: 43,11 - 19091: 43,7 - 19119: 50,11 - 19124: 45,15 - 19155: 49,21 - 19168: 50,15 - 19182: 56,15 - 19186: 68,-5 - 19201: 72,21 - 19307: 50,3 - 19360: -20,-28 - 19613: 56,31 + 7430: 35,11 + 7587: 50,-5 + 7588: 55,-5 + 18952: 72,5 + 18970: 46,-1 + 18971: 39,-1 + 18972: 43,-1 + 19015: 35,8 + 19026: 39,11 + 19027: 43,11 + 19028: 43,7 + 19056: 50,11 + 19061: 45,15 + 19092: 49,21 + 19105: 50,15 + 19119: 56,15 + 19123: 68,-5 + 19138: 72,21 + 19244: 50,3 + 19297: -20,-28 + 19549: 56,31 - node: color: '#EFB341FF' id: BrickTileDarkCornerSw decals: - 17548: -66,4 - 17625: -74,4 - 18231: -73,-3 + 17485: -66,4 + 17562: -74,4 + 18168: -73,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 1201: 11,-61 - 2017: -17,26 - 2530: -8,36 - 2613: -4,36 - 2667: 1,54 - 2682: -1,50 - 2713: -7,52 - 3890: 17,65 - 3984: -42,59 - 5698: 7,5 - 5711: 7,0 - 5767: 7,-3 - 5804: -16,-6 - 5815: -13,-6 - 5923: -3,12 - 6548: -26,-9 - 6819: -39,8 - 7217: 20,-8 - 7263: 34,-1 - 7286: 26,8 - 7681: 39,18 + 1200: 11,-61 + 2016: -17,26 + 2529: -8,36 + 2612: -4,36 + 2666: 1,54 + 2681: -1,50 + 2712: -7,52 + 3889: 17,65 + 3983: -42,59 + 5697: 7,5 + 5710: 7,0 + 5766: 7,-3 + 5803: -16,-6 + 5814: -13,-6 + 5922: -3,12 + 6547: -26,-9 + 6818: -39,8 + 7216: 20,-8 + 7262: 34,-1 + 7285: 26,8 + 7680: 39,18 + 7689: 34,19 7690: 34,19 - 7691: 34,19 - 8519: 51,-26 - 8588: 64,-12 + 8518: 51,-26 + 8587: 64,-12 + 8588: 64,-31 8589: 64,-31 - 8590: 64,-31 - 10233: 35,-31 - 10403: 2,-53 - 10464: 10,-62 - 10570: 49,-56 - 10687: 72,-40 - 10762: 44,-55 - 11292: -75,-36 - 12394: -19,-76 - 12428: -16,-82 - 12433: -23,-82 - 12541: -18,-82 - 12575: -24,-76 - 12576: -25,-70 - 12675: -39,25 - 13350: -41,-68 - 13526: -30,-80 - 13543: -30,-78 - 13548: -37,-80 - 13561: -35,-80 - 13562: -32,-80 - 15643: 91,6 - 15681: 99,-4 - 15712: 93,1 - 15832: 79,-5 - 15850: 83,-5 - 15851: 87,-5 - 15883: 95,12 - 17715: -79,9 - 18041: -45,46 - 18120: -58,5 - 18349: -53,-38 - 18526: 12,-14 - 18535: 12,-14 - 18958: 68,3 - 19418: -10,26 - 19431: -14,26 - 19439: -15,29 - 19487: -10,26 - 19795: -31,-24 - 20092: 61,28 - 21351: 22,12 - 21392: 23,13 - - node: - color: '#CEDA8BFF' + 10179: 35,-31 + 10341: 2,-53 + 10402: 10,-62 + 10508: 49,-56 + 10625: 72,-40 + 10700: 44,-55 + 11230: -75,-36 + 12331: -19,-76 + 12365: -16,-82 + 12370: -23,-82 + 12478: -18,-82 + 12512: -24,-76 + 12513: -25,-70 + 12612: -39,25 + 13287: -41,-68 + 13463: -30,-80 + 13480: -30,-78 + 13485: -37,-80 + 13498: -35,-80 + 13499: -32,-80 + 15580: 91,6 + 15618: 99,-4 + 15649: 93,1 + 15769: 79,-5 + 15787: 83,-5 + 15788: 87,-5 + 15820: 95,12 + 17652: -79,9 + 17978: -45,46 + 18057: -58,5 + 18286: -53,-38 + 18463: 12,-14 + 18472: 12,-14 + 18895: 68,3 + 19354: -10,26 + 19367: -14,26 + 19375: -15,29 + 19423: -10,26 + 20028: 61,28 + 21283: 22,12 + 21324: 23,13 + - node: + color: '#439909FF' id: BrickTileDarkEndE decals: - 10844: 45,-64 - 10845: 45,-61 - 10859: 41,-64 + 24667: 45,-61 + 24668: 45,-64 + 24684: 41,-64 - node: color: '#DA8B8BFF' id: BrickTileDarkEndE decals: - 19202: 76,25 + 19139: 76,25 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE decals: - 2215: -18,54 - 2662: 2,55 - 3847: 23,72 - 3859: 19,68 - 3860: 22,68 - 4319: 4,12 - 4320: -5,12 - 4445: 16,25 - 4591: 21,33 - 5514: -18,7 - 5530: -18,-7 - 5551: -33,30 - 5554: -31,25 - 5583: -10,66 - 5584: -10,59 - 5633: 11,-7 - 5964: 0,7 - 5965: 0,3 - 5966: 0,-1 - 5967: 0,-5 - 6074: -11,-18 - 6114: 18,-7 - 6124: 18,7 - 6169: -18,-22 - 6300: 18,-22 - 6372: 14,-18 - 6544: -32,3 - 6545: -32,-10 - 6772: -25,7 + 2214: -18,54 + 2661: 2,55 + 3846: 23,72 + 3858: 19,68 + 3859: 22,68 + 4318: 4,12 + 4319: -5,12 + 4444: 16,25 + 4590: 21,33 + 5513: -18,7 + 5529: -18,-7 + 5550: -33,30 + 5553: -31,25 + 5582: -10,66 + 5583: -10,59 + 5632: 11,-7 + 5963: 0,7 + 5964: 0,3 + 5965: 0,-1 + 5966: 0,-5 + 6073: -11,-18 + 6113: 18,-7 + 6123: 18,7 + 6168: -18,-22 + 6299: 18,-22 + 6371: 14,-18 + 6543: -32,3 + 6544: -32,-10 + 6771: -25,7 + 6811: -38,16 6812: -38,16 - 6813: -38,16 + 6816: -38,8 6817: -38,8 - 6818: -38,8 - 7452: 48,10 + 7451: 48,10 + 8169: 36,-17 8170: 36,-17 - 8171: 36,-17 - 8197: 36,-7 - 8212: 47,-18 - 8711: 0,-22 - 8712: 0,-29 - 8713: -6,-22 - 8714: -13,-22 - 8715: 5,-22 - 8716: 12,-22 - 8717: 0,-37 - 8718: 0,-57 - 8719: 0,-63 - 9089: -4,-74 - 9099: -3,-68 - 9100: -3,-66 - 9136: 0,-82 - 9666: 18,-37 - 9667: 28,-37 - 11508: -18,-33 - 11516: -22,-33 - 11517: -22,-33 - 11526: -13,-37 - 11527: -13,-37 - 11682: -13,-45 - 12727: -17,59 - 12728: -3,59 - 12729: -3,66 - 12730: -17,66 - 12731: -11,70 - 12732: 7,70 - 12733: -29,70 - 13547: -36,-80 - 14379: -57,20 - 14404: -61,13 - 14446: -18,21 - 14451: 18,21 - 15350: -41,3 - 15364: -41,7 - 15865: 80,-1 - 15866: 84,-1 - 15867: 88,-1 - 15868: 84,-1 - 15869: 80,-1 - 15874: 98,14 - 15998: 93,15 - 16752: -52,3 - 16753: -52,7 - 16915: -56,3 - 17124: -69,-9 - 17369: -69,-9 - 17670: -80,13 - 17674: -80,15 - 17840: -53,19 - 18050: -56,38 - 18363: -48,-38 - 18519: 14,-11 - 18970: 70,10 - 19771: -6,-40 - 20071: 67,27 + 8196: 36,-7 + 8211: 47,-18 + 8710: 0,-22 + 8711: 0,-29 + 8712: -6,-22 + 8713: -13,-22 + 8714: 5,-22 + 8715: 12,-22 + 8716: 0,-37 + 8717: 0,-57 + 8718: 0,-63 + 9078: -4,-74 + 9088: -3,-68 + 9089: -3,-66 + 9125: 0,-82 + 9641: 18,-37 + 9642: 28,-37 + 11446: -18,-33 + 11454: -22,-33 + 11455: -22,-33 + 11464: -13,-37 + 11465: -13,-37 + 11620: -13,-45 + 12664: -17,59 + 12665: -3,59 + 12666: -3,66 + 12667: -17,66 + 12668: -11,70 + 12669: 7,70 + 12670: -29,70 + 13484: -36,-80 + 14316: -57,20 + 14341: -61,13 + 14383: -18,21 + 14388: 18,21 + 15287: -41,3 + 15301: -41,7 + 15802: 80,-1 + 15803: 84,-1 + 15804: 88,-1 + 15805: 84,-1 + 15806: 80,-1 + 15811: 98,14 + 15935: 93,15 + 16689: -52,3 + 16690: -52,7 + 16852: -56,3 + 17061: -69,-9 + 17306: -69,-9 + 17607: -80,13 + 17611: -80,15 + 17777: -53,19 + 17987: -56,38 + 18300: -48,-38 + 18456: 14,-11 + 18907: 70,10 + 19707: -6,-40 + 20007: 67,27 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkEndE decals: - 4043: -18,25 - 4110: 8,25 - 4111: 5,25 + 4042: -18,25 + 4109: 8,25 + 4110: 5,25 - node: color: '#A9DA8BFF' id: BrickTileDarkEndN decals: - 2976: -27,55 + 2975: -27,55 - node: color: '#B18BDAFF' id: BrickTileDarkEndN decals: - 12095: -30,-44 - 12096: -23,-44 + 12033: -30,-44 + 12034: -23,-44 - node: color: '#EFB341FF' id: BrickTileDarkEndN decals: - 17796: -59,7 - 17797: -56,7 - 18224: -68,0 + 17733: -59,7 + 17734: -56,7 + 18161: -68,0 - node: color: '#FFFFFFFF' id: BrickTileDarkEndN decals: + 2510: -9,43 2511: -9,43 - 2512: -9,43 - 2668: 4,54 - 2854: -24,48 - 2857: -24,51 - 3134: -16,65 - 3148: -8,65 - 3192: -22,65 - 3556: -22,58 - 3639: 9,81 - 3646: 9,76 - 3826: 16,71 - 4163: -14,15 - 4168: -17,15 - 4297: 12,15 - 4298: 15,15 - 4510: 12,36 - 4896: 14,53 - 4899: 14,50 - 5222: -32,82 - 5223: -28,82 - 5224: -28,92 - 5225: -32,92 - 5309: -14,92 - 5310: -10,92 - 5327: -10,82 + 2667: 4,54 + 2853: -24,48 + 2856: -24,51 + 3133: -16,65 + 3147: -8,65 + 3191: -22,65 + 3555: -22,58 + 3638: 9,81 + 3645: 9,76 + 3825: 16,71 + 4162: -14,15 + 4167: -17,15 + 4296: 12,15 + 4297: 15,15 + 4509: 12,36 + 4895: 14,53 + 4898: 14,50 + 5221: -32,82 + 5222: -28,82 + 5223: -28,92 + 5224: -32,92 + 5308: -14,92 + 5309: -10,92 + 5326: -10,82 + 5327: -14,82 5328: -14,82 - 5329: -14,82 - 5341: 4,82 + 5340: 4,82 + 5558: -29,28 5559: -29,28 - 5560: -29,28 - 5600: -17,-8 - 5601: 15,-8 - 5626: -17,-19 - 5645: -7,10 - 5649: 5,10 - 5963: -1,8 - 6153: -3,-19 - 6154: 1,-19 - 6155: -17,-19 - 6168: 15,-19 - 6541: -21,-2 - 6775: -21,12 - 6944: -22,-16 - 7033: 26,6 - 7040: 19,6 - 7070: 26,-10 - 7071: 19,-10 - 7376: 49,1 - 7533: 48,23 - 7621: 56,5 - 8179: 42,-14 + 5599: -17,-8 + 5600: 15,-8 + 5625: -17,-19 + 5644: -7,10 + 5648: 5,10 + 5962: -1,8 + 6152: -3,-19 + 6153: 1,-19 + 6154: -17,-19 + 6167: 15,-19 + 6540: -21,-2 + 6774: -21,12 + 6943: -22,-16 + 7032: 26,6 + 7039: 19,6 + 7069: 26,-10 + 7070: 19,-10 + 7375: 49,1 + 7532: 48,23 + 7620: 56,5 + 8178: 42,-14 + 8179: 42,-10 8180: 42,-10 - 8181: 42,-10 - 8810: 1,-25 - 8811: -3,-25 - 9087: -2,-69 - 9088: -7,-69 - 9104: -1,-67 - 9105: -1,-67 - 9106: -8,-67 - 9107: -8,-72 - 9108: -1,-72 - 9109: -1,-72 - 9120: -6,-72 - 9121: -6,-72 - 9122: -3,-72 - 9123: -3,-72 - 9344: 1,-46 - 9345: 1,-55 - 9346: 1,-55 - 9349: -3,-55 - 9351: 1,-46 - 9520: 15,-25 - 9541: 19,-27 - 9662: 19,-39 - 9663: 25,-39 - 9732: 15,-39 - 10272: 20,-51 - 10520: 3,-66 - 10521: 3,-75 - 10522: 3,-75 - 10761: 53,-50 - 11349: -12,-66 - 11350: -22,-66 - 11373: -3,-40 - 11514: -21,-34 - 11515: -21,-34 - 11698: -44,-27 - 11699: -32,-27 - 12323: -21,-46 - 12549: -20,-80 - 12550: -24,-80 - 12671: -38,29 - 14434: -21,24 - 14435: -8,24 - 14436: 6,24 - 15349: -40,6 - 15481: 58,-26 - 15482: 60,-26 - 15491: 58,-13 - 15492: 60,-13 - 15836: 80,-3 - 15840: 84,-3 - 15841: 88,-3 - 16772: -54,6 - 16773: -51,6 - 16830: -55,-10 - 16831: -55,-5 - 17126: -74,-6 - 17294: -50,-7 - 17362: -74,-6 - 17680: -79,7 - 17681: -76,7 - 17711: -76,11 - 17843: -56,24 - 18047: -57,34 - 18069: -55,22 - 18154: -55,-5 - 18422: -16,-13 - 18425: -14,-13 - 18426: -12,-13 - 18427: -10,-13 - 18442: -8,-16 - 18974: 57,9 - 18975: 59,9 - 18976: 63,9 - 18977: 61,9 - 20108: -21,6 - 21325: 19,15 - 21334: 21,15 - 21349: 24,15 - 23174: 19,-34 + 8809: 1,-25 + 8810: -3,-25 + 9076: -2,-69 + 9077: -7,-69 + 9093: -1,-67 + 9094: -1,-67 + 9095: -8,-67 + 9096: -8,-72 + 9097: -1,-72 + 9098: -1,-72 + 9109: -6,-72 + 9110: -6,-72 + 9111: -3,-72 + 9112: -3,-72 + 9333: 1,-46 + 9334: 1,-55 + 9335: 1,-55 + 9338: -3,-55 + 9340: 1,-46 + 9500: 15,-25 + 9518: 19,-27 + 9637: 19,-39 + 9638: 25,-39 + 9695: 15,-39 + 10218: 20,-51 + 10458: 3,-66 + 10459: 3,-75 + 10460: 3,-75 + 10699: 53,-50 + 11287: -12,-66 + 11288: -22,-66 + 11311: -3,-40 + 11452: -21,-34 + 11453: -21,-34 + 12261: -21,-46 + 12486: -20,-80 + 12487: -24,-80 + 12608: -38,29 + 14371: -21,24 + 14372: -8,24 + 14373: 6,24 + 15286: -40,6 + 15418: 58,-26 + 15419: 60,-26 + 15428: 58,-13 + 15429: 60,-13 + 15773: 80,-3 + 15777: 84,-3 + 15778: 88,-3 + 16709: -54,6 + 16710: -51,6 + 16767: -55,-10 + 16768: -55,-5 + 17063: -74,-6 + 17231: -50,-7 + 17299: -74,-6 + 17617: -79,7 + 17618: -76,7 + 17648: -76,11 + 17780: -56,24 + 17984: -57,34 + 18006: -55,22 + 18091: -55,-5 + 18359: -16,-13 + 18362: -14,-13 + 18363: -12,-13 + 18364: -10,-13 + 18379: -8,-16 + 18911: 57,9 + 18912: 59,9 + 18913: 63,9 + 18914: 61,9 + 20044: -21,6 + 21257: 19,15 + 21266: 21,15 + 21281: 24,15 + 23103: 19,-34 + 24257: -44,-27 + 24258: -32,-27 - node: color: '#EFB341FF' id: BrickTileDarkEndS decals: - 17798: -59,5 - 17799: -56,5 + 17735: -59,5 + 17736: -56,5 - node: color: '#FFFFFFFF' id: BrickTileDarkEndS decals: - 2328: -28,32 - 2514: -9,39 - 2669: 4,50 - 2855: -24,47 - 2856: -24,50 - 3139: -16,60 - 3149: -8,60 - 3193: -22,60 - 3557: -22,57 - 3640: 9,80 - 3647: 9,75 - 3827: 16,70 - 4164: -14,14 - 4169: -17,14 - 4299: 12,14 - 4300: 15,14 - 4511: 12,35 - 4897: 14,52 - 4898: 14,49 - 5226: -32,88 + 2327: -28,32 + 2513: -9,39 + 2668: 4,50 + 2854: -24,47 + 2855: -24,50 + 3138: -16,60 + 3148: -8,60 + 3192: -22,60 + 3556: -22,57 + 3639: 9,80 + 3646: 9,75 + 3826: 16,70 + 4163: -14,14 + 4168: -17,14 + 4298: 12,14 + 4299: 15,14 + 4510: 12,35 + 4896: 14,52 + 4897: 14,49 + 5225: -32,88 + 5226: -28,88 5227: -28,88 - 5228: -28,88 - 5229: -28,79 - 5230: -32,79 - 5311: -14,88 - 5312: -10,88 - 5330: -14,79 - 5331: -10,79 - 5345: 4,79 + 5228: -28,79 + 5229: -32,79 + 5310: -14,88 + 5311: -10,88 + 5329: -14,79 + 5330: -10,79 + 5344: 4,79 + 5560: -29,27 5561: -29,27 - 5562: -29,27 - 5627: -17,-21 - 5646: -7,8 - 5650: 5,8 - 6017: -8,-17 - 6018: -8,-13 - 6036: -16,-16 - 6037: -14,-16 - 6038: -12,-16 - 6039: -10,-16 - 6159: -3,-21 - 6160: 1,-21 - 6167: 15,-21 - 6542: -21,-3 - 6774: -21,11 - 6947: -22,-17 - 7034: 26,4 - 7041: 19,4 - 7072: 19,-12 - 7073: 26,-12 - 7377: 49,-1 - 7534: 48,22 - 7620: 56,4 - 8182: 42,-16 - 8183: 42,-12 - 8812: -3,-26 - 8813: 1,-26 - 9092: -7,-71 - 9093: -2,-71 - 9110: -8,-74 - 9111: -1,-74 - 9112: -1,-74 - 9113: -3,-73 - 9114: -3,-73 - 9115: -6,-73 - 9116: -6,-73 - 9117: -8,-68 - 9118: -1,-68 - 9119: -1,-68 - 9347: -3,-56 - 9348: 1,-56 - 9350: 1,-47 - 9521: 15,-26 - 9542: 19,-28 - 9664: 19,-40 - 9665: 25,-40 - 9672: 19,-36 - 9733: 15,-40 - 10273: 20,-53 - 10523: 3,-76 - 10524: 3,-67 - 10525: 5,-73 - 10753: 53,-56 - 11351: -22,-67 - 11352: -12,-67 - 11374: -3,-41 - 11513: -21,-36 - 11696: -44,-29 - 11697: -32,-29 - 12324: -21,-48 - 12548: -20,-82 - 12551: -24,-82 - 14437: 6,22 - 14438: -8,22 - 14439: -21,22 - 15368: -40,4 - 15483: 58,-28 - 15484: 60,-28 - 15493: 58,-15 - 15494: 60,-15 - 15837: 80,-4 - 15838: 84,-4 - 15839: 88,-4 - 16774: -54,4 - 16775: -51,4 - 16832: -55,-11 - 16833: -55,-6 - 17127: -74,-8 - 17295: -50,-9 - 17363: -74,-8 - 17688: -76,3 - 17689: -79,3 - 17842: -56,23 - 18052: -57,32 - 18060: -53,32 - 18070: -55,20 - 18075: -52,22 - 18445: -17,-10 - 18474: 15,-10 - 18512: 15,-10 - 18978: 57,7 - 18979: 59,7 - 18980: 61,7 - 18981: 63,7 - 20109: -21,4 - 21326: 19,14 - 21335: 21,14 - 21350: 24,14 - - node: - color: '#CEDA8BFF' + 5626: -17,-21 + 5645: -7,8 + 5649: 5,8 + 6016: -8,-17 + 6017: -8,-13 + 6035: -16,-16 + 6036: -14,-16 + 6037: -12,-16 + 6038: -10,-16 + 6158: -3,-21 + 6159: 1,-21 + 6166: 15,-21 + 6541: -21,-3 + 6773: -21,11 + 6946: -22,-17 + 7033: 26,4 + 7040: 19,4 + 7071: 19,-12 + 7072: 26,-12 + 7376: 49,-1 + 7533: 48,22 + 7619: 56,4 + 8181: 42,-16 + 8182: 42,-12 + 8811: -3,-26 + 8812: 1,-26 + 9081: -7,-71 + 9082: -2,-71 + 9099: -8,-74 + 9100: -1,-74 + 9101: -1,-74 + 9102: -3,-73 + 9103: -3,-73 + 9104: -6,-73 + 9105: -6,-73 + 9106: -8,-68 + 9107: -1,-68 + 9108: -1,-68 + 9336: -3,-56 + 9337: 1,-56 + 9339: 1,-47 + 9501: 15,-26 + 9519: 19,-28 + 9639: 19,-40 + 9640: 25,-40 + 9647: 19,-36 + 9696: 15,-40 + 10219: 20,-53 + 10461: 3,-76 + 10462: 3,-67 + 10463: 5,-73 + 10691: 53,-56 + 11289: -22,-67 + 11290: -12,-67 + 11312: -3,-41 + 11451: -21,-36 + 12262: -21,-48 + 12485: -20,-82 + 12488: -24,-82 + 14374: 6,22 + 14375: -8,22 + 14376: -21,22 + 15305: -40,4 + 15420: 58,-28 + 15421: 60,-28 + 15430: 58,-15 + 15431: 60,-15 + 15774: 80,-4 + 15775: 84,-4 + 15776: 88,-4 + 16711: -54,4 + 16712: -51,4 + 16769: -55,-11 + 16770: -55,-6 + 17064: -74,-8 + 17232: -50,-9 + 17300: -74,-8 + 17625: -76,3 + 17626: -79,3 + 17779: -56,23 + 17989: -57,32 + 17997: -53,32 + 18007: -55,20 + 18012: -52,22 + 18382: -17,-10 + 18411: 15,-10 + 18449: 15,-10 + 18915: 57,7 + 18916: 59,7 + 18917: 61,7 + 18918: 63,7 + 20045: -21,4 + 21258: 19,14 + 21267: 21,14 + 21282: 24,14 + 24260: -44,-29 + 24261: -32,-29 + - node: + color: '#439909FF' id: BrickTileDarkEndW decals: - 10846: 43,-61 - 10860: 38,-64 + 24669: 43,-61 + 24685: 38,-64 - node: color: '#DA8B8BFF' id: BrickTileDarkEndW decals: - 19203: 74,25 + 19140: 74,25 - node: color: '#FFFFFFFF' id: BrickTileDarkEndW decals: - 2216: -20,54 - 2327: -29,38 - 2663: 1,55 - 3848: 17,72 - 3861: 18,68 - 3862: 21,68 - 4321: -6,12 - 4322: 3,12 - 4446: 14,25 - 4592: 20,33 - 5515: -20,7 - 5531: -20,-7 - 5552: -34,30 - 5553: -34,25 - 5585: -14,59 - 5586: -14,66 - 5632: 10,-7 - 5968: -2,-5 - 5969: -2,-1 - 5970: -2,3 - 5971: -2,7 - 6075: -13,-18 - 6113: 16,-7 - 6125: 16,7 - 6170: -20,-22 - 6301: 16,-22 + 2215: -20,54 + 2326: -29,38 + 2662: 1,55 + 3847: 17,72 + 3860: 18,68 + 3861: 21,68 + 4320: -6,12 + 4321: 3,12 + 4445: 14,25 + 4591: 20,33 + 5514: -20,7 + 5530: -20,-7 + 5551: -34,30 + 5552: -34,25 + 5584: -14,59 + 5585: -14,66 + 5631: 10,-7 + 5967: -2,-5 + 5968: -2,-1 + 5969: -2,3 + 5970: -2,7 + 6074: -13,-18 + 6112: 16,-7 + 6124: 16,7 + 6169: -20,-22 + 6300: 16,-22 + 6372: 12,-18 6373: 12,-18 - 6374: 12,-18 - 6543: -33,3 - 6546: -33,-10 - 6547: -17,-1 - 6773: -26,7 + 6542: -33,3 + 6545: -33,-10 + 6546: -17,-1 + 6772: -26,7 + 6813: -34,16 6814: -34,16 - 6815: -34,16 - 6816: -34,8 - 7453: 46,10 - 8172: 33,-17 - 8198: 34,-7 - 8213: 46,-18 - 8720: -2,-37 - 8721: -2,-29 - 8722: -2,-22 - 8723: -7,-22 - 8724: -14,-22 - 8725: 4,-22 - 8726: 11,-22 - 8727: -2,-57 - 8728: -2,-63 - 9090: -5,-74 - 9091: -2,-63 - 9101: -6,-66 - 9102: -6,-66 - 9103: -6,-68 - 9137: -2,-82 - 9138: -2,-82 - 9660: 16,-37 - 9661: 26,-37 - 11509: -20,-33 - 11518: -24,-33 - 11528: -15,-37 - 11683: -15,-45 - 12557: -24,-78 - 12734: -31,70 - 12735: -13,70 - 12736: -21,66 - 12737: -7,66 - 12738: 5,70 - 12774: -21,59 - 12781: -7,59 - 13546: -30,-80 - 14380: -61,20 - 14403: -66,13 - 14447: -20,21 - 14453: 16,21 - 15351: -43,3 - 15365: -43,7 - 15862: 79,-1 - 15863: 83,-1 - 15864: 87,-1 - 15999: 91,15 - 16005: 91,15 - 16754: -53,7 - 16755: -53,3 - 16916: -59,3 - 17083: -49,-12 - 17084: -49,-18 - 17125: -71,-9 - 17368: -71,-9 - 17671: -82,13 - 17672: -82,15 - 17673: -82,15 - 17841: -54,19 - 18048: -54,35 - 18049: -57,38 - 18051: -54,38 - 18074: -55,25 - 18520: 12,-11 - 18971: 68,10 - 19770: -9,-40 - 20070: 64,27 + 6815: -34,8 + 7452: 46,10 + 8171: 33,-17 + 8197: 34,-7 + 8212: 46,-18 + 8719: -2,-37 + 8720: -2,-29 + 8721: -2,-22 + 8722: -7,-22 + 8723: -14,-22 + 8724: 4,-22 + 8725: 11,-22 + 8726: -2,-57 + 8727: -2,-63 + 9079: -5,-74 + 9080: -2,-63 + 9090: -6,-66 + 9091: -6,-66 + 9092: -6,-68 + 9126: -2,-82 + 9127: -2,-82 + 9635: 16,-37 + 9636: 26,-37 + 11447: -20,-33 + 11456: -24,-33 + 11466: -15,-37 + 11621: -15,-45 + 12494: -24,-78 + 12671: -31,70 + 12672: -13,70 + 12673: -21,66 + 12674: -7,66 + 12675: 5,70 + 12711: -21,59 + 12718: -7,59 + 13483: -30,-80 + 14317: -61,20 + 14340: -66,13 + 14384: -20,21 + 14390: 16,21 + 15288: -43,3 + 15302: -43,7 + 15799: 79,-1 + 15800: 83,-1 + 15801: 87,-1 + 15936: 91,15 + 15942: 91,15 + 16691: -53,7 + 16692: -53,3 + 16853: -59,3 + 17020: -49,-12 + 17021: -49,-18 + 17062: -71,-9 + 17305: -71,-9 + 17608: -82,13 + 17609: -82,15 + 17610: -82,15 + 17778: -54,19 + 17985: -54,35 + 17986: -57,38 + 17988: -54,38 + 18011: -55,25 + 18457: 12,-11 + 18908: 68,10 + 19706: -9,-40 + 20006: 64,27 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkEndW decals: - 4044: -20,25 - 4112: 4,25 - 4113: 7,25 + 4043: -20,25 + 4111: 4,25 + 4112: 7,25 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerNe decals: - 4192: -11,15 - 4279: 4,16 - 4282: 7,15 - 4296: 11,15 - 4308: 14,15 - 15217: -6,14 - 15218: -12,15 - 15219: 1,16 - 15220: 8,14 - 15221: 10,15 - 21303: -18,11 - 21314: -18,15 + 4191: -11,15 + 4278: 4,16 + 4281: 7,15 + 4295: 11,15 + 4307: 14,15 + 15154: -6,14 + 15155: -12,15 + 15156: 1,16 + 15157: 8,14 + 15158: 10,15 + 21235: -18,11 + 21246: -18,15 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerNe decals: - 2982: -26,53 - 2983: -27,54 + 2981: -26,53 + 2982: -27,54 - node: color: '#B18BDAFF' id: BrickTileDarkInnerNe decals: - 11751: -7,-38 - 11752: -4,-40 - 11759: -7,-38 - 11760: -5,-39 - 12127: -30,-48 - 12632: -50,-28 - 12636: -51,-27 + 11689: -7,-38 + 11690: -4,-40 + 11697: -7,-38 + 11698: -5,-39 + 12065: -30,-48 + - node: + color: '#D381C9FF' + id: BrickTileDarkInnerNe + decals: + 24287: -46,-25 + 24303: -45,-27 + 24326: -42,-26 + 24327: -38,-26 + 24328: -34,-26 + 24338: -33,-27 + 24342: -41,-27 + 24348: -37,-27 + 24349: -29,-26 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerNe decals: - 7413: 36,9 - 7415: 37,8 - 7418: 40,1 - 7423: 48,12 - 7427: 47,13 - 7437: 47,-3 - 7445: 73,19 - 7447: 53,9 - 7451: 73,3 + 7412: 36,9 + 7414: 37,8 + 7417: 40,1 + 7422: 48,12 + 7426: 47,13 + 7436: 47,-3 + 7444: 73,19 + 7446: 53,9 + 7450: 73,3 + 7477: 51,13 7478: 51,13 - 7479: 51,13 - 7493: 47,23 - 7496: 48,16 - 7504: 52,19 - 7505: 54,17 - 7518: 57,19 - 7544: 59,25 - 7601: 52,-3 - 7629: 60,12 - 7648: 75,23 - 7657: 76,22 - 7662: 75,25 - 7667: 74,9 - 15553: 74,1 - 19030: 67,-1 - 19037: 44,0 - 19051: 36,6 - 19070: 37,4 - 19102: 44,8 - 19103: 44,12 - 19139: 47,19 - 19190: 71,-4 - 19193: 69,-3 - 19319: 55,5 - 19340: 70,-1 - 19625: 51,21 - 19626: 54,21 - 19627: 50,28 - 19628: 55,28 - 20012: 58,31 + 7492: 47,23 + 7495: 48,16 + 7503: 52,19 + 7504: 54,17 + 7517: 57,19 + 7543: 59,25 + 7600: 52,-3 + 7628: 60,12 + 7647: 75,23 + 7656: 76,22 + 7661: 75,25 + 7666: 74,9 + 15490: 74,1 + 18967: 67,-1 + 18974: 44,0 + 18988: 36,6 + 19007: 37,4 + 19039: 44,8 + 19040: 44,12 + 19076: 47,19 + 19127: 71,-4 + 19130: 69,-3 + 19256: 55,5 + 19277: 70,-1 + 19561: 51,21 + 19562: 54,21 + 19563: 50,28 + 19564: 55,28 + 19948: 58,31 - node: color: '#EFB341FF' id: BrickTileDarkInnerNe decals: - 17547: -66,4 - 17573: -61,6 - 17574: -61,10 - 17627: -72,8 + 17484: -66,4 + 17510: -61,6 + 17511: -61,10 + 17564: -72,8 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 1975: -9,33 - 1981: -12,33 - 2030: -16,28 - 2403: -33,37 - 2405: -31,37 - 2406: -30,36 - 2417: -10,45 + 1974: -9,33 + 1980: -12,33 + 2029: -16,28 + 2402: -33,37 + 2404: -31,37 + 2405: -30,36 + 2416: -10,45 + 2419: -10,43 2420: -10,43 - 2421: -10,43 - 2548: -7,43 - 2549: -6,37 - 2620: -2,40 - 2625: -3,40 - 3215: -3,64 - 3216: -2,61 - 3447: -3,64 - 3880: 19,67 - 3883: 22,67 - 3884: 23,66 - 3945: 17,61 - 3950: 18,60 - 5717: 11,1 - 5723: 8,3 - 5807: -15,-5 - 5853: -10,-3 - 6571: -24,-5 - 6616: -24,-7 - 7231: 23,-8 - 7232: 23,-2 - 7235: 22,2 - 7282: 27,9 - 7389: 37,4 + 2547: -7,43 + 2548: -6,37 + 2619: -2,40 + 2624: -3,40 + 3214: -3,64 + 3215: -2,61 + 3446: -3,64 + 3879: 19,67 + 3882: 22,67 + 3883: 23,66 + 3944: 17,61 + 3949: 18,60 + 5716: 11,1 + 5722: 8,3 + 5806: -15,-5 + 5852: -10,-3 + 6570: -24,-5 + 6615: -24,-7 + 7230: 23,-8 + 7231: 23,-2 + 7234: 22,2 + 7281: 27,9 + 7388: 37,4 + 7694: 36,20 7695: 36,20 - 7696: 36,20 - 7702: 43,20 - 8499: 56,-24 + 7701: 43,20 + 8498: 56,-24 + 8504: 56,-20 8505: 56,-20 - 8506: 56,-20 - 8511: 52,-23 - 9006: -8,-28 - 9007: -8,-23 - 9013: -4,-23 - 9018: -4,-27 - 9019: -15,-23 - 9023: -16,-27 - 9045: 3,-23 - 9046: 10,-23 - 9047: 14,-23 - 9048: 14,-27 - 9049: 2,-27 - 9064: 10,-28 - 10430: 4,-49 - 10454: 13,-60 - 10455: 12,-59 - 10475: 10,-58 - 12400: -17,-74 - 12418: -17,-65 - 12531: -14,-78 - 12552: -20,-81 - 12587: -23,-66 - 12601: -24,-64 - 12680: -38,27 - 13541: -31,-79 - 13545: -37,-79 - 13549: -37,-80 - 15480: 60,-31 - 15621: 79,1 - 15622: 84,1 - 15623: 88,1 - 15640: 92,7 - 15719: 95,3 - 16770: -48,6 - 16836: -53,-1 - 16837: -56,1 - 16838: -53,-7 - 16839: -53,-12 - 16840: -55,-17 - 18329: -64,-7 - 18330: -69,-7 - 18331: -58,-8 - 18361: -50,-38 - 19422: -9,27 - 19423: -9,30 - 19481: -12,33 - 19491: -9,30 - 19495: -9,27 - 19499: -9,33 - 19897: 96,2 - 20035: -1,54 + 8510: 52,-23 + 9001: -8,-28 + 9002: -8,-23 + 9008: -4,-23 + 9013: -4,-27 + 9014: -15,-23 + 9018: -16,-27 + 9039: 3,-23 + 9040: 10,-23 + 9041: 14,-23 + 9042: 14,-27 + 9043: 2,-27 + 9057: 10,-28 + 10368: 4,-49 + 10392: 13,-60 + 10393: 12,-59 + 10413: 10,-58 + 12337: -17,-74 + 12355: -17,-65 + 12468: -14,-78 + 12489: -20,-81 + 12524: -23,-66 + 12538: -24,-64 + 12617: -38,27 + 13478: -31,-79 + 13482: -37,-79 + 13486: -37,-80 + 15417: 60,-31 + 15558: 79,1 + 15559: 84,1 + 15560: 88,1 + 15577: 92,7 + 15656: 95,3 + 16707: -48,6 + 16773: -53,-1 + 16774: -56,1 + 16775: -53,-7 + 16776: -53,-12 + 16777: -55,-17 + 18266: -64,-7 + 18267: -69,-7 + 18268: -58,-8 + 18298: -50,-38 + 19358: -9,27 + 19359: -9,30 + 19417: -12,33 + 19427: -9,30 + 19431: -9,27 + 19435: -9,33 + 19833: 96,2 + 19971: -1,54 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerNw decals: - 4176: -16,15 - 4182: -13,15 - 4193: -9,15 - 4281: 9,15 - 5511: -6,16 - 15214: -10,14 - 15216: -12,15 - 15222: 10,15 - 15233: 4,14 - 21293: -16,15 - 21306: 16,11 - 21311: 16,15 + 4175: -16,15 + 4181: -13,15 + 4192: -9,15 + 4280: 9,15 + 5510: -6,16 + 15151: -10,14 + 15153: -12,15 + 15159: 10,15 + 15170: 4,14 + 21225: -16,15 + 21238: 16,11 + 21243: 16,15 - node: color: '#96A4EBFF' id: BrickTileDarkInnerNw decals: - 15213: -10,14 - 19508: -3,16 + 15150: -10,14 + 19444: -3,16 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerNw decals: - 2974: -27,53 + 2973: -27,53 - node: color: '#B18BDAFF' id: BrickTileDarkInnerNw decals: - 11750: -7,-38 - 11755: -11,-41 - 11758: -7,-38 - 11761: -10,-39 - 12121: -30,-46 - 12126: -23,-48 + 11688: -7,-38 + 11693: -11,-41 + 11696: -7,-38 + 11699: -10,-39 + 12059: -30,-46 + 12064: -23,-48 + - node: + color: '#D381C9FF' + id: BrickTileDarkInnerNw + decals: + 24278: -48,-28 + 24280: -48,-31 + 24288: -46,-25 + 24297: -47,-23 + 24323: -42,-26 + 24324: -38,-26 + 24325: -34,-26 + 24337: -43,-27 + 24341: -39,-27 + 24347: -35,-27 + 24350: -29,-26 + 24370: -31,-27 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerNw decals: - 7375: 39,6 - 7386: 39,4 - 7406: 39,8 - 7408: 46,12 + 7374: 39,6 + 7385: 39,4 + 7405: 39,8 + 7407: 46,12 + 7410: 36,9 7411: 36,9 - 7412: 36,9 - 7417: 40,1 - 7420: 46,0 - 7426: 47,13 - 7436: 47,-3 - 7444: 73,19 - 7446: 53,9 - 7448: 72,1 - 7450: 73,3 - 7462: 50,8 - 7465: 50,4 - 7477: 51,13 - 7483: 50,12 - 7499: 45,20 - 7503: 52,19 - 7506: 50,16 - 7522: 57,19 - 7523: 56,17 - 7532: 49,23 - 7600: 52,-3 - 7633: 72,6 - 7634: 72,13 - 7636: 72,18 - 7647: 75,23 - 7663: 75,25 - 15544: 72,-1 - 19050: 36,6 - 19069: 34,4 - 19192: 69,-3 - 19342: 69,-1 - 19373: -20,-26 - 19621: 53,28 - 19622: 58,28 - 19623: 57,21 - 19624: 54,21 - 20009: 50,31 + 7416: 40,1 + 7419: 46,0 + 7425: 47,13 + 7435: 47,-3 + 7443: 73,19 + 7445: 53,9 + 7447: 72,1 + 7449: 73,3 + 7461: 50,8 + 7464: 50,4 + 7476: 51,13 + 7482: 50,12 + 7498: 45,20 + 7502: 52,19 + 7505: 50,16 + 7521: 57,19 + 7522: 56,17 + 7531: 49,23 + 7599: 52,-3 + 7632: 72,6 + 7633: 72,13 + 7635: 72,18 + 7646: 75,23 + 7662: 75,25 + 15481: 72,-1 + 18987: 36,6 + 19006: 34,4 + 19129: 69,-3 + 19279: 69,-1 + 19310: -20,-26 + 19557: 53,28 + 19558: 58,28 + 19559: 57,21 + 19560: 54,21 + 19945: 50,31 - node: color: '#EFB341FF' id: BrickTileDarkInnerNw decals: - 17546: -61,4 - 17626: -72,8 - 17804: -59,6 + 17483: -61,4 + 17563: -72,8 + 17741: -59,6 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 1982: -10,33 - 2032: -17,30 - 2037: -15,34 - 2384: -30,32 - 2385: -29,33 - 2404: -31,37 - 2534: -8,45 - 2536: -8,43 - 2623: -4,37 - 2624: -3,40 - 2690: -1,51 - 2726: -4,54 - 3223: -2,60 - 3881: 21,67 - 3951: 16,62 - 4659: 21,24 - 5724: 8,3 - 5817: -13,-5 - 5852: -10,-3 - 6569: -26,-6 - 6570: -24,-5 - 6615: -24,-7 - 7227: 20,-3 - 7234: 22,2 - 7358: 34,4 + 1981: -10,33 + 2031: -17,30 + 2036: -15,34 + 2383: -30,32 + 2384: -29,33 + 2403: -31,37 + 2533: -8,45 + 2535: -8,43 + 2622: -4,37 + 2623: -3,40 + 2689: -1,51 + 2725: -4,54 + 3222: -2,60 + 3880: 21,67 + 3950: 16,62 + 4658: 21,24 + 5723: 8,3 + 5816: -13,-5 + 5851: -10,-3 + 6568: -26,-6 + 6569: -24,-5 + 6614: -24,-7 + 7226: 20,-3 + 7233: 22,2 + 7357: 34,4 + 8499: 62,-24 8500: 62,-24 - 8501: 62,-24 - 8510: 52,-23 - 9005: -12,-28 - 9009: -12,-23 - 9012: -5,-23 - 9017: -4,-27 - 9020: -16,-23 - 9024: -16,-27 - 9040: 2,-23 - 9041: 6,-23 - 9042: 13,-23 - 9043: 14,-27 - 9044: 14,-27 - 9050: 2,-27 - 9063: 6,-28 - 10431: 4,-49 - 10439: 2,-51 - 10452: 11,-60 - 10456: 12,-59 - 10680: 80,-47 - 10681: 80,-47 - 12399: -17,-74 - 12417: -17,-65 - 12530: -14,-78 - 12545: -17,-80 - 12558: -23,-78 - 12579: -23,-72 - 12602: -24,-64 - 12683: -38,26 - 12844: -18,-81 - 13557: -35,-79 - 15479: 58,-31 - 15618: 77,1 - 15619: 81,1 - 15620: 86,1 - 15639: 92,7 - 15717: 94,3 - 15718: 93,2 - 15827: 81,-2 - 15858: 85,-2 - 15859: 89,-2 - 15885: 95,13 - 16769: -48,6 - 16834: -53,-1 - 16835: -58,1 - 16841: -53,-12 - 16842: -57,-17 - 16843: -53,-7 - 17105: -46,-18 - 18067: -53,35 - 18326: -72,-7 - 18327: -67,-7 - 18328: -60,-8 - 19441: -14,31 - 19480: -10,33 - 21361: 22,15 + 8509: 52,-23 + 9000: -12,-28 + 9004: -12,-23 + 9007: -5,-23 + 9012: -4,-27 + 9015: -16,-23 + 9019: -16,-27 + 9034: 2,-23 + 9035: 6,-23 + 9036: 13,-23 + 9037: 14,-27 + 9038: 14,-27 + 9044: 2,-27 + 9056: 6,-28 + 10369: 4,-49 + 10377: 2,-51 + 10390: 11,-60 + 10394: 12,-59 + 10618: 80,-47 + 10619: 80,-47 + 12336: -17,-74 + 12354: -17,-65 + 12467: -14,-78 + 12482: -17,-80 + 12495: -23,-78 + 12516: -23,-72 + 12539: -24,-64 + 12620: -38,26 + 12781: -18,-81 + 13494: -35,-79 + 15416: 58,-31 + 15555: 77,1 + 15556: 81,1 + 15557: 86,1 + 15576: 92,7 + 15654: 94,3 + 15655: 93,2 + 15764: 81,-2 + 15795: 85,-2 + 15796: 89,-2 + 15822: 95,13 + 16706: -48,6 + 16771: -53,-1 + 16772: -58,1 + 16778: -53,-12 + 16779: -57,-17 + 16780: -53,-7 + 17042: -46,-18 + 18004: -53,35 + 18263: -72,-7 + 18264: -67,-7 + 18265: -60,-8 + 19377: -14,31 + 19416: -10,33 + 21293: 22,15 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerSe decals: - 4196: -10,13 - 4284: 8,13 - 4294: -4,15 - 4295: 11,14 - 4307: 14,14 - 4317: -2,15 - 15223: -12,14 - 15224: -6,14 - 15225: 1,16 - 15226: 8,14 - 15227: 10,14 - 21304: -18,18 - 21313: -18,14 + 4195: -10,13 + 4283: 8,13 + 4293: -4,15 + 4294: 11,14 + 4306: 14,14 + 4316: -2,15 + 15160: -12,14 + 15161: -6,14 + 15162: 1,16 + 15163: 8,14 + 15164: 10,14 + 21236: -18,18 + 21245: -18,14 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerSe decals: - 2981: -26,52 + 2980: -26,52 - node: color: '#B18BDAFF' id: BrickTileDarkInnerSe decals: - 11753: -4,-41 - 11756: -6,-44 - 11762: -5,-43 - 12124: -24,-48 - 12634: -50,-28 - 12635: -51,-29 + 11691: -4,-41 + 11694: -6,-44 + 11700: -5,-43 + 12062: -24,-48 + - node: + color: '#D381C9FF' + id: BrickTileDarkInnerSe + decals: + 24299: -46,-23 + 24304: -45,-29 + 24332: -42,-30 + 24333: -38,-30 + 24334: -34,-30 + 24335: -33,-29 + 24344: -41,-29 + 24345: -37,-29 + 24354: -29,-32 + 24373: -29,-32 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerSe decals: - 7409: 36,11 - 7421: 47,-1 + 7408: 36,11 + 7420: 47,-1 + 7423: 48,12 7424: 48,12 - 7425: 48,12 - 7441: 61,-1 - 7442: 52,-1 - 7443: 65,-1 - 7480: 53,11 - 7491: 47,15 - 7494: 47,22 - 7495: 48,16 - 7502: 51,15 - 7507: 54,17 - 7521: 57,19 - 7529: 52,21 - 7542: 57,21 - 7543: 59,25 - 7628: 60,12 - 7654: 73,21 - 7658: 76,22 - 7665: 75,25 - 7666: 74,9 - 7837: 73,5 - 15554: 74,1 - 19038: 44,0 - 19068: 35,4 - 19071: 37,6 - 19076: 36,8 - 19104: 44,8 - 19105: 44,12 - 19106: 40,11 - 19191: 71,-4 - 19320: 55,4 - 19329: 69,-1 - 19339: 70,1 - 19369: -18,-24 - 19614: 51,28 - 19615: 54,28 - 19616: 50,31 - 19617: 52,32 + 7440: 61,-1 + 7441: 52,-1 + 7442: 65,-1 + 7479: 53,11 + 7490: 47,15 + 7493: 47,22 + 7494: 48,16 + 7501: 51,15 + 7506: 54,17 + 7520: 57,19 + 7528: 52,21 + 7541: 57,21 + 7542: 59,25 + 7627: 60,12 + 7653: 73,21 + 7657: 76,22 + 7664: 75,25 + 7665: 74,9 + 7836: 73,5 + 15491: 74,1 + 18975: 44,0 + 19005: 35,4 + 19008: 37,6 + 19013: 36,8 + 19041: 44,8 + 19042: 44,12 + 19043: 40,11 + 19128: 71,-4 + 19257: 55,4 + 19266: 69,-1 + 19276: 70,1 + 19306: -18,-24 + 19550: 51,28 + 19551: 54,28 + 19552: 50,31 + 19553: 52,32 - node: color: '#EFB341FF' id: BrickTileDarkInnerSe decals: - 17544: -66,11 - 17575: -61,10 - 17576: -61,6 - 17643: -73,4 + 17481: -66,11 + 17512: -61,10 + 17513: -61,6 + 17580: -73,4 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: - 1980: -9,33 - 2029: -16,32 - 2048: -18,35 - 2401: -33,33 - 2407: -31,33 - 2408: -30,34 - 2418: -10,45 - 2424: -10,39 + 1979: -9,33 + 2028: -16,32 + 2047: -18,35 + 2400: -33,33 + 2406: -31,33 + 2407: -30,34 + 2417: -10,45 + 2423: -10,39 + 2549: -6,37 2550: -6,37 - 2551: -6,37 - 2619: -2,40 - 2681: 3,50 - 2720: -5,54 - 2727: -6,52 - 3214: -3,61 - 3217: -2,61 - 3448: -3,61 - 3885: 23,66 - 3942: 17,58 - 5700: 8,5 - 5718: 11,1 - 5761: 10,0 - 5808: -15,-5 - 5822: -10,-6 - 6573: -24,-9 - 6618: -24,-7 - 7230: 22,-8 - 7233: 23,-2 - 7283: 27,9 - 7322: 29,8 - 7361: 35,4 - 7390: 37,6 + 2618: -2,40 + 2680: 3,50 + 2719: -5,54 + 2726: -6,52 + 3213: -3,61 + 3216: -2,61 + 3447: -3,61 + 3884: 23,66 + 3941: 17,58 + 5699: 8,5 + 5717: 11,1 + 5760: 10,0 + 5807: -15,-5 + 5821: -10,-6 + 6572: -24,-9 + 6617: -24,-7 + 7229: 22,-8 + 7232: 23,-2 + 7282: 27,9 + 7321: 29,8 + 7360: 35,4 + 7389: 37,6 + 7696: 36,20 7697: 36,20 - 7698: 36,20 - 7703: 43,20 + 7702: 43,20 + 8502: 56,-17 8503: 56,-17 - 8504: 56,-17 - 8507: 56,-21 - 9003: -8,-28 - 9010: -8,-23 - 9014: -4,-23 - 9015: -4,-28 - 9022: -15,-23 - 9026: -16,-28 - 9033: 10,-23 - 9034: 14,-23 - 9035: 14,-28 - 9052: 2,-28 - 9053: 3,-23 - 9065: 10,-28 - 10442: 10,-53 - 10451: 13,-60 - 10458: 12,-61 - 10696: 73,-40 - 12402: -17,-67 - 12532: -13,-78 - 12553: -20,-81 - 12586: -23,-67 - 12679: -38,27 - 13544: -37,-79 - 13559: -31,-79 - 13564: -34,-79 - 15354: -42,3 - 15478: 60,-10 - 15624: 79,1 - 15625: 84,1 - 15626: 88,1 - 15634: 92,9 - 15672: 92,6 - 15721: 95,1 - 15737: 96,2 - 15871: 93,10 - 15877: 97,14 - 15879: 96,14 - 16771: -49,4 - 16849: -55,-17 - 16850: -53,-15 - 16851: -53,-9 - 16852: -53,-4 - 16853: -56,1 - 18335: -64,-7 - 18336: -69,-7 - 19421: -9,27 - 19424: -9,30 - 19430: -12,27 - 19485: -12,27 - 19490: -9,30 - 19492: -9,27 - 19498: -9,33 - 19805: -29,-24 - 20094: 62,28 - 20095: 67,28 + 8506: 56,-21 + 8998: -8,-28 + 9005: -8,-23 + 9009: -4,-23 + 9010: -4,-28 + 9017: -15,-23 + 9021: -16,-28 + 9027: 10,-23 + 9028: 14,-23 + 9029: 14,-28 + 9046: 2,-28 + 9047: 3,-23 + 9058: 10,-28 + 10380: 10,-53 + 10389: 13,-60 + 10396: 12,-61 + 10634: 73,-40 + 12339: -17,-67 + 12469: -13,-78 + 12490: -20,-81 + 12523: -23,-67 + 12616: -38,27 + 13481: -37,-79 + 13496: -31,-79 + 13501: -34,-79 + 15291: -42,3 + 15415: 60,-10 + 15561: 79,1 + 15562: 84,1 + 15563: 88,1 + 15571: 92,9 + 15609: 92,6 + 15658: 95,1 + 15674: 96,2 + 15808: 93,10 + 15814: 97,14 + 15816: 96,14 + 16708: -49,4 + 16786: -55,-17 + 16787: -53,-15 + 16788: -53,-9 + 16789: -53,-4 + 16790: -56,1 + 18272: -64,-7 + 18273: -69,-7 + 19357: -9,27 + 19360: -9,30 + 19366: -12,27 + 19421: -12,27 + 19426: -9,30 + 19428: -9,27 + 19434: -9,33 + 20030: 62,28 + 20031: 67,28 - node: color: '#8CB7E8FF' id: BrickTileDarkInnerSw decals: - 4177: -16,14 - 4183: -13,14 - 4195: -10,13 - 4283: 8,13 - 4293: 2,15 - 4316: -2,15 - 9936: 30,-44 - 15228: 4,14 - 15229: 10,14 - 15230: -3,16 - 15231: -10,14 - 15232: -12,14 - 21292: -16,14 - 21305: 16,18 - 21312: 16,14 + 4176: -16,14 + 4182: -13,14 + 4194: -10,13 + 4282: 8,13 + 4292: 2,15 + 4315: -2,15 + 9883: 30,-44 + 15165: 4,14 + 15166: 10,14 + 15167: -3,16 + 15168: -10,14 + 15169: -12,14 + 21224: -16,14 + 21237: 16,18 + 21244: 16,14 - node: color: '#A9DA8BFF' id: BrickTileDarkInnerSw decals: - 2975: -27,53 - 2980: -26,52 + 2974: -27,53 + 2979: -26,52 - node: color: '#B18BDAFF' id: BrickTileDarkInnerSw decals: - 11754: -11,-41 - 11757: -6,-44 - 12122: -30,-46 - 12123: -24,-48 + 11692: -11,-41 + 11695: -6,-44 + 12060: -30,-46 + 12061: -24,-48 + - node: + color: '#D381C9FF' + id: BrickTileDarkInnerSw + decals: + 24277: -48,-28 + 24279: -48,-25 + 24298: -46,-23 + 24329: -42,-30 + 24330: -38,-30 + 24331: -34,-30 + 24336: -43,-29 + 24343: -39,-29 + 24346: -35,-29 + 24355: -29,-32 + 24371: -31,-29 + 24372: -29,-32 - node: color: '#DA8B8BFF' id: BrickTileDarkInnerSw decals: - 7374: 39,4 - 7387: 39,6 - 7405: 39,8 - 7407: 46,12 - 7410: 36,11 - 7419: 46,0 - 7422: 47,-1 - 7438: 52,-1 - 7439: 61,-1 - 7440: 65,-1 - 7449: 72,1 - 7463: 50,8 - 7464: 50,4 - 7481: 53,11 - 7482: 50,12 - 7492: 47,15 - 7500: 45,20 - 7501: 51,15 - 7508: 50,16 + 7373: 39,4 + 7386: 39,6 + 7404: 39,8 + 7406: 46,12 + 7409: 36,11 + 7418: 46,0 + 7421: 47,-1 + 7437: 52,-1 + 7438: 61,-1 + 7439: 65,-1 + 7448: 72,1 + 7462: 50,8 + 7463: 50,4 + 7480: 53,11 + 7481: 50,12 + 7491: 47,15 + 7499: 45,20 + 7500: 51,15 + 7507: 50,16 + 7523: 56,17 7524: 56,17 - 7525: 56,17 - 7530: 52,21 - 7531: 49,22 - 7541: 57,21 - 7632: 72,6 - 7635: 72,13 - 7637: 72,18 - 7653: 73,21 - 7664: 75,25 - 7838: 73,5 - 15543: 72,-1 - 19065: 34,6 - 19066: 35,4 - 19077: 36,8 - 19107: 40,11 - 19330: 69,-1 - 19341: 69,1 - 19372: -20,-26 - 19618: 56,32 - 19619: 58,31 - 19620: 57,28 - 19651: 54,28 + 7529: 52,21 + 7530: 49,22 + 7540: 57,21 + 7631: 72,6 + 7634: 72,13 + 7636: 72,18 + 7652: 73,21 + 7663: 75,25 + 7837: 73,5 + 15480: 72,-1 + 19002: 34,6 + 19003: 35,4 + 19014: 36,8 + 19044: 40,11 + 19267: 69,-1 + 19278: 69,1 + 19309: -20,-26 + 19554: 56,32 + 19555: 58,31 + 19556: 57,28 + 19587: 54,28 - node: color: '#EFB341FF' id: BrickTileDarkInnerSw decals: - 17545: -61,11 - 17642: -73,4 - 17803: -59,6 + 17482: -61,11 + 17579: -73,4 + 17740: -59,6 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 1992: -10,27 - 2031: -17,30 - 2341: -28,38 - 2386: -29,37 - 2387: -30,38 - 2402: -31,33 - 2535: -8,45 - 2537: -8,39 - 2622: -4,37 - 2680: 3,50 - 2689: -1,51 - 2728: -6,52 - 3941: 17,58 - 5701: 8,5 - 5760: 10,0 - 5818: -13,-5 - 5821: -10,-6 - 6568: -26,-6 - 6572: -24,-9 - 6617: -24,-7 - 7228: 20,-3 - 7229: 22,-8 - 7359: 34,6 - 7360: 35,4 - 8502: 62,-17 - 9004: -12,-28 - 9008: -12,-23 - 9011: -5,-23 - 9016: -4,-28 - 9021: -16,-23 - 9025: -16,-28 - 9036: 14,-28 - 9037: 2,-23 - 9038: 6,-23 - 9039: 13,-23 - 9051: 2,-28 - 9066: 6,-28 - 10437: 2,-51 - 10441: 10,-53 - 10453: 11,-60 - 10457: 12,-61 - 10695: 73,-40 - 12401: -17,-67 - 12544: -17,-78 - 12559: -23,-78 - 12585: -23,-76 - 12600: -23,-70 - 12843: -18,-81 - 13558: -35,-79 - 15355: -42,3 - 15477: 58,-10 - 15627: 81,1 - 15628: 77,1 - 15635: 92,9 - 15671: 92,6 - 15720: 94,1 - 15736: 93,2 - 15878: 97,14 - 15884: 95,13 - 16844: -58,1 - 16845: -53,-4 - 16846: -53,-9 - 16847: -53,-15 - 16848: -57,-17 - 17106: -46,-12 - 18065: -53,38 - 18066: -53,35 - 18081: -52,25 - 18332: -72,-7 - 18333: -67,-7 - 18334: -60,-8 - 19419: -9,26 - 19442: -14,34 - 19484: -10,27 - 19501: -14,29 - 19804: -29,-24 - 19974: 86,1 - 20096: 64,28 - 20097: 62,28 - 21362: 22,14 + 1991: -10,27 + 2030: -17,30 + 2340: -28,38 + 2385: -29,37 + 2386: -30,38 + 2401: -31,33 + 2534: -8,45 + 2536: -8,39 + 2621: -4,37 + 2679: 3,50 + 2688: -1,51 + 2727: -6,52 + 3940: 17,58 + 5700: 8,5 + 5759: 10,0 + 5817: -13,-5 + 5820: -10,-6 + 6567: -26,-6 + 6571: -24,-9 + 6616: -24,-7 + 7227: 20,-3 + 7228: 22,-8 + 7358: 34,6 + 7359: 35,4 + 8501: 62,-17 + 8999: -12,-28 + 9003: -12,-23 + 9006: -5,-23 + 9011: -4,-28 + 9016: -16,-23 + 9020: -16,-28 + 9030: 14,-28 + 9031: 2,-23 + 9032: 6,-23 + 9033: 13,-23 + 9045: 2,-28 + 9059: 6,-28 + 10375: 2,-51 + 10379: 10,-53 + 10391: 11,-60 + 10395: 12,-61 + 10633: 73,-40 + 12338: -17,-67 + 12481: -17,-78 + 12496: -23,-78 + 12522: -23,-76 + 12537: -23,-70 + 12780: -18,-81 + 13495: -35,-79 + 15292: -42,3 + 15414: 58,-10 + 15564: 81,1 + 15565: 77,1 + 15572: 92,9 + 15608: 92,6 + 15657: 94,1 + 15673: 93,2 + 15815: 97,14 + 15821: 95,13 + 16781: -58,1 + 16782: -53,-4 + 16783: -53,-9 + 16784: -53,-15 + 16785: -57,-17 + 17043: -46,-12 + 18002: -53,38 + 18003: -53,35 + 18018: -52,25 + 18269: -72,-7 + 18270: -67,-7 + 18271: -60,-8 + 19355: -9,26 + 19378: -14,34 + 19420: -10,27 + 19437: -14,29 + 19910: 86,1 + 20032: 64,28 + 20033: 62,28 + 21294: 22,14 - node: color: '#8CB7E8FF' id: BrickTileDarkLineE decals: - 4174: -17,14 - 4175: -17,15 - 4180: -14,15 - 4181: -14,14 - 4251: -11,14 - 4252: -13,14 - 4253: -13,15 - 4254: -4,16 - 4255: 3,14 - 4256: 9,14 - 4257: 9,15 - 4276: 4,17 - 4287: -4,14 - 9928: 29,-44 - 21295: -18,16 - 21296: -18,17 - 21297: -18,13 - 21298: -18,12 + 4173: -17,14 + 4174: -17,15 + 4179: -14,15 + 4180: -14,14 + 4250: -11,14 + 4251: -13,14 + 4252: -13,15 + 4253: -4,16 + 4254: 3,14 + 4255: 9,14 + 4256: 9,15 + 4275: 4,17 + 4286: -4,14 + 9875: 29,-44 + 21227: -18,16 + 21228: -18,17 + 21229: -18,13 + 21230: -18,12 - node: color: '#96A4EBFF' id: BrickTileDarkLineE decals: - 21271: -18,13 - 21272: -18,12 - 21273: -18,16 - 21274: -18,17 + 21203: -18,13 + 21204: -18,12 + 21205: -18,16 + 21206: -18,17 - node: color: '#B18BDAFF' id: BrickTileDarkLineE decals: - 11743: -4,-42 - 11748: -12,-41 - 12097: -30,-45 - 12098: -30,-46 - 12099: -30,-47 - 12120: -31,-46 - 12245: -23,-47 - 12246: -23,-46 - 12247: -23,-45 - 12630: -51,-26 - 12631: -51,-30 + 11681: -4,-42 + 11686: -12,-41 + 12035: -30,-45 + 12036: -30,-46 + 12037: -30,-47 + 12058: -31,-46 + 12183: -23,-47 + 12184: -23,-46 + 12185: -23,-45 + - node: + color: '#D381C9FF' + id: BrickTileDarkLineE + decals: + 24276: -49,-28 + 24286: -45,-30 + 24291: -48,-23 + 24302: -45,-26 + 24305: -44,-29 + 24306: -44,-28 + 24307: -44,-27 + 24308: -32,-29 + 24309: -32,-28 + 24310: -32,-27 + 24361: -26,-31 + 24362: -26,-30 + 24363: -26,-29 + 24364: -26,-28 + 24365: -26,-27 - node: color: '#DA8B8BFF' id: BrickTileDarkLineE decals: - 3697: -1,61 - 3700: -1,61 - 4588: 11,30 - 7372: 38,4 - 7373: 38,6 - 7383: 49,-1 - 7384: 49,0 - 7385: 49,1 - 7392: 45,8 - 7395: 45,12 - 7404: 45,0 - 7434: 48,-4 - 7468: 49,4 - 7471: 49,8 - 7509: 49,16 - 7526: 55,17 - 7537: 48,22 + 3696: -1,61 + 3699: -1,61 + 4587: 11,30 + 7371: 38,4 + 7372: 38,6 + 7382: 49,-1 + 7383: 49,0 + 7384: 49,1 + 7391: 45,8 + 7394: 45,12 + 7403: 45,0 + 7433: 48,-4 + 7467: 49,4 + 7470: 49,8 + 7508: 49,16 + 7525: 55,17 + 7536: 48,22 + 7537: 48,23 7538: 48,23 - 7539: 48,23 - 7548: 49,12 - 7549: 44,20 - 7592: 53,-4 - 7593: 58,-4 - 7631: 71,6 - 7640: 71,13 - 7641: 71,18 - 7770: 71,-1 - 7771: 71,1 - 10515: 2,-60 - 10536: 3,-67 - 10537: 3,-66 - 10538: 3,-66 - 10539: 3,-75 - 10540: 3,-75 - 10541: 3,-76 - 10545: 7,-75 - 10546: 7,-77 - 10548: 7,-65 - 10549: 7,-65 - 15340: -49,9 - 15548: 74,0 - 15552: 74,2 - 19001: 74,6 - 19002: 74,7 - 19003: 74,8 - 19004: 74,10 - 19005: 74,11 - 19006: 74,13 - 19007: 74,12 - 19008: 74,14 - 19009: 74,15 - 19010: 74,17 - 19011: 74,16 - 19012: 74,18 - 19031: 67,0 - 19057: 33,6 - 19058: 33,4 - 19063: 37,5 - 19074: 38,4 - 19075: 38,6 - 19084: 41,0 - 19108: 48,11 - 19137: 47,21 - 19138: 47,20 - 19141: 48,17 - 19142: 48,18 - 19143: 59,22 - 19144: 59,23 - 19145: 59,24 - 19151: 59,28 - 19152: 59,27 - 19153: 59,26 - 19172: 54,16 - 19173: 54,18 - 19176: 57,17 - 19179: 57,18 - 19180: 57,16 - 19303: 55,6 - 19304: 55,7 - 19305: 55,8 - 19332: 68,-1 - 19333: 68,1 - 19338: 70,0 - 19366: -18,-25 - 19367: -18,-26 - 19368: -18,-27 - 19371: -21,-26 - 19561: 51,27 - 19562: 51,26 - 19563: 51,26 - 19564: 51,25 - 19565: 51,24 - 19566: 51,23 - 19567: 51,22 - 19576: 54,27 - 19577: 54,26 - 19578: 54,26 - 19579: 54,25 - 19580: 54,24 - 19581: 54,23 - 19582: 54,22 - 19590: 59,31 - 19591: 59,30 - 19592: 59,30 - 19593: 59,29 - 19605: 50,29 - 19606: 50,30 + 7547: 49,12 + 7548: 44,20 + 7591: 53,-4 + 7592: 58,-4 + 7630: 71,6 + 7639: 71,13 + 7640: 71,18 + 7769: 71,-1 + 7770: 71,1 + 10453: 2,-60 + 10474: 3,-67 + 10475: 3,-66 + 10476: 3,-66 + 10477: 3,-75 + 10478: 3,-75 + 10479: 3,-76 + 10483: 7,-75 + 10484: 7,-77 + 10486: 7,-65 + 10487: 7,-65 + 15277: -49,9 + 15485: 74,0 + 15489: 74,2 + 18938: 74,6 + 18939: 74,7 + 18940: 74,8 + 18941: 74,10 + 18942: 74,11 + 18943: 74,13 + 18944: 74,12 + 18945: 74,14 + 18946: 74,15 + 18947: 74,17 + 18948: 74,16 + 18949: 74,18 + 18968: 67,0 + 18994: 33,6 + 18995: 33,4 + 19000: 37,5 + 19011: 38,4 + 19012: 38,6 + 19021: 41,0 + 19045: 48,11 + 19074: 47,21 + 19075: 47,20 + 19078: 48,17 + 19079: 48,18 + 19080: 59,22 + 19081: 59,23 + 19082: 59,24 + 19088: 59,28 + 19089: 59,27 + 19090: 59,26 + 19109: 54,16 + 19110: 54,18 + 19113: 57,17 + 19116: 57,18 + 19117: 57,16 + 19240: 55,6 + 19241: 55,7 + 19242: 55,8 + 19269: 68,-1 + 19270: 68,1 + 19275: 70,0 + 19303: -18,-25 + 19304: -18,-26 + 19305: -18,-27 + 19308: -21,-26 + 19497: 51,27 + 19498: 51,26 + 19499: 51,26 + 19500: 51,25 + 19501: 51,24 + 19502: 51,23 + 19503: 51,22 + 19512: 54,27 + 19513: 54,26 + 19514: 54,26 + 19515: 54,25 + 19516: 54,24 + 19517: 54,23 + 19518: 54,22 + 19526: 59,31 + 19527: 59,30 + 19528: 59,30 + 19529: 59,29 + 19541: 50,29 + 19542: 50,30 - node: color: '#EFB341FF' id: BrickTileDarkLineE decals: - 17538: -66,5 - 17539: -66,6 - 17540: -66,7 - 17541: -66,8 - 17542: -66,9 - 17543: -66,10 - 17552: -61,9 - 17553: -61,8 - 17554: -61,7 - 17555: -61,5 - 17636: -70,5 - 17637: -70,6 - 17638: -70,7 - 17801: -56,6 - 17802: -59,6 - 17805: -60,6 - 18228: -67,0 - 18229: -67,-1 - 18230: -67,-2 + 17475: -66,5 + 17476: -66,6 + 17477: -66,7 + 17478: -66,8 + 17479: -66,9 + 17480: -66,10 + 17489: -61,9 + 17490: -61,8 + 17491: -61,7 + 17492: -61,5 + 17573: -70,5 + 17574: -70,6 + 17575: -70,7 + 17738: -56,6 + 17739: -59,6 + 17742: -60,6 + 18165: -67,0 + 18166: -67,-1 + 18167: -67,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 1976: -9,28 - 1977: -9,29 - 1978: -9,31 - 1979: -9,32 - 2020: -15,27 - 2023: -16,31 - 2024: -15,33 - 2025: -16,30 - 2026: -16,29 - 2027: -16,30 - 2028: -16,31 - 2033: -18,26 - 2036: -15,34 - 2040: -18,34 - 2041: -18,33 - 2042: -18,32 - 2043: -18,31 - 2044: -18,29 - 2045: -18,28 - 2046: -18,27 - 2047: -18,30 - 2335: -28,33 - 2336: -28,34 - 2337: -28,35 - 2338: -28,36 - 2339: -28,37 - 2419: -10,44 - 2422: -10,37 - 2423: -10,38 - 2518: -9,40 - 2519: -9,41 - 2520: -9,42 - 2538: -9,39 - 2539: -9,40 - 2540: -9,41 - 2541: -9,42 - 2542: -9,43 - 2545: -7,45 + 1975: -9,28 + 1976: -9,29 + 1977: -9,31 + 1978: -9,32 + 2019: -15,27 + 2022: -16,31 + 2023: -15,33 + 2024: -16,30 + 2025: -16,29 + 2026: -16,30 + 2027: -16,31 + 2032: -18,26 + 2035: -15,34 + 2039: -18,34 + 2040: -18,33 + 2041: -18,32 + 2042: -18,31 + 2043: -18,29 + 2044: -18,28 + 2045: -18,27 + 2046: -18,30 + 2334: -28,33 + 2335: -28,34 + 2336: -28,35 + 2337: -28,36 + 2338: -28,37 + 2418: -10,44 + 2421: -10,37 + 2422: -10,38 + 2517: -9,40 + 2518: -9,41 + 2519: -9,42 + 2537: -9,39 + 2538: -9,40 + 2539: -9,41 + 2540: -9,42 + 2541: -9,43 + 2544: -7,45 + 2545: -7,44 2546: -7,44 - 2547: -7,44 - 2552: -6,38 - 2553: -6,39 - 2554: -6,40 - 2555: -6,41 - 2556: -6,42 - 2557: -9,45 - 2609: -5,37 - 2616: -2,37 - 2617: -2,38 - 2618: -2,39 - 2674: 4,53 - 2675: 4,52 - 2676: 4,51 - 2691: -2,51 - 2715: -5,53 - 3140: -16,61 - 3141: -16,62 - 3142: -16,63 - 3143: -16,64 - 3144: -8,64 - 3145: -8,63 - 3146: -8,62 - 3147: -8,61 - 3198: -22,61 - 3199: -22,62 - 3200: -22,63 - 3201: -22,64 - 3202: -2,64 - 3203: -2,63 - 3204: -2,62 - 3206: -3,60 - 3207: -3,65 - 3435: -1,61 - 3943: 17,62 - 3946: 18,61 - 3985: -40,62 - 4655: 19,24 - 5237: -28,91 + 2551: -6,38 + 2552: -6,39 + 2553: -6,40 + 2554: -6,41 + 2555: -6,42 + 2556: -9,45 + 2608: -5,37 + 2615: -2,37 + 2616: -2,38 + 2617: -2,39 + 2673: 4,53 + 2674: 4,52 + 2675: 4,51 + 2690: -2,51 + 2714: -5,53 + 3139: -16,61 + 3140: -16,62 + 3141: -16,63 + 3142: -16,64 + 3143: -8,64 + 3144: -8,63 + 3145: -8,62 + 3146: -8,61 + 3197: -22,61 + 3198: -22,62 + 3199: -22,63 + 3200: -22,64 + 3201: -2,64 + 3202: -2,63 + 3203: -2,62 + 3205: -3,60 + 3206: -3,65 + 3434: -1,61 + 3942: 17,62 + 3945: 18,61 + 3984: -40,62 + 4654: 19,24 + 5236: -28,91 + 5237: -28,90 5238: -28,90 - 5239: -28,90 - 5240: -28,89 - 5241: -28,81 - 5242: -28,80 - 5243: -32,80 - 5244: -32,81 - 5245: -32,89 + 5239: -28,89 + 5240: -28,81 + 5241: -28,80 + 5242: -32,80 + 5243: -32,81 + 5244: -32,89 + 5245: -32,90 5246: -32,90 - 5247: -32,90 - 5248: -32,91 - 5316: -14,91 - 5317: -14,90 - 5318: -14,89 - 5324: -10,91 - 5325: -10,90 - 5326: -10,89 - 5335: -14,80 - 5336: -14,81 - 5339: -10,80 - 5340: -10,81 - 5346: 4,80 + 5247: -32,91 + 5315: -14,91 + 5316: -14,90 + 5317: -14,89 + 5323: -10,91 + 5324: -10,90 + 5325: -10,89 + 5334: -14,80 + 5335: -14,81 + 5338: -10,80 + 5339: -10,81 + 5345: 4,80 + 5346: 4,81 5347: 4,81 - 5348: 4,81 - 5349: 4,82 - 5629: -17,-20 - 5648: -7,9 - 5652: 5,9 - 5705: 11,6 - 5719: 11,2 - 5816: -14,-5 - 5823: -9,-4 - 5824: -9,-5 - 5933: 1,13 - 5972: -1,6 - 5973: -1,5 - 5974: -1,4 - 5975: -1,2 + 5348: 4,82 + 5628: -17,-20 + 5647: -7,9 + 5651: 5,9 + 5704: 11,6 + 5718: 11,2 + 5815: -14,-5 + 5822: -9,-4 + 5823: -9,-5 + 5932: 1,13 + 5971: -1,6 + 5972: -1,5 + 5973: -1,4 + 5974: -1,2 + 5975: -1,1 5976: -1,1 - 5977: -1,1 - 5978: -1,0 - 5979: -1,-2 - 5980: -1,-3 + 5977: -1,0 + 5978: -1,-2 + 5979: -1,-3 + 5980: -1,-4 5981: -1,-4 - 5982: -1,-4 - 5983: -1,-6 - 6015: -8,-12 - 6016: -8,-16 - 6052: -12,-15 - 6053: -12,-14 - 6054: -12,-13 - 6055: -10,-15 - 6056: -10,-14 - 6057: -10,-13 - 6058: -14,-15 - 6059: -14,-14 - 6060: -14,-13 - 6163: -3,-20 - 6164: 1,-20 - 6165: 15,-20 - 6563: -22,-8 + 5982: -1,-6 + 6014: -8,-12 + 6015: -8,-16 + 6051: -12,-15 + 6052: -12,-14 + 6053: -12,-13 + 6054: -10,-15 + 6055: -10,-14 + 6056: -10,-13 + 6057: -14,-15 + 6058: -14,-14 + 6059: -14,-13 + 6162: -3,-20 + 6163: 1,-20 + 6164: 15,-20 + 6562: -22,-8 + 6563: -22,-7 6564: -22,-7 - 6565: -22,-7 + 6565: -22,-6 6566: -22,-6 - 6567: -22,-6 - 6604: -27,-6 + 6603: -27,-6 + 6611: -25,-7 6612: -25,-7 - 6613: -25,-7 - 6821: -33,9 - 6822: -33,10 + 6820: -33,9 + 6821: -33,10 + 6822: -33,11 6823: -33,11 - 6824: -33,11 + 6824: -33,12 6825: -33,12 - 6826: -33,12 + 6826: -33,13 6827: -33,13 6828: -33,13 - 6829: -33,13 - 6830: -33,15 + 6829: -33,15 + 6830: -33,14 6831: -33,14 - 6832: -33,14 - 6840: -39,9 - 6841: -39,10 + 6839: -39,9 + 6840: -39,10 + 6841: -39,11 6842: -39,11 - 6843: -39,11 + 6843: -39,12 6844: -39,12 - 6845: -39,12 + 6845: -39,13 6846: -39,13 6847: -39,13 6848: -39,13 - 6849: -39,13 + 6849: -39,14 6850: -39,14 - 6851: -39,14 + 6851: -39,15 6852: -39,15 - 6853: -39,15 - 7022: 19,5 - 7036: 26,5 - 7076: 19,-11 - 7077: 26,-11 - 7209: 23,1 - 7210: 23,0 - 7211: 23,-1 - 7212: 23,-3 - 7213: 23,-4 - 7214: 23,-5 - 7215: 23,-6 - 7216: 23,-7 - 7237: 19,-3 - 7267: 36,0 - 7319: 33,9 - 7320: 33,10 - 7354: 33,4 - 7355: 33,6 - 7379: 49,0 - 7388: 37,5 - 7704: 43,19 - 7705: 43,21 + 7021: 19,5 + 7035: 26,5 + 7075: 19,-11 + 7076: 26,-11 + 7208: 23,1 + 7209: 23,0 + 7210: 23,-1 + 7211: 23,-3 + 7212: 23,-4 + 7213: 23,-5 + 7214: 23,-6 + 7215: 23,-7 + 7236: 19,-3 + 7266: 36,0 + 7318: 33,9 + 7319: 33,10 + 7353: 33,4 + 7354: 33,6 + 7378: 49,0 + 7387: 37,5 + 7703: 43,19 + 7704: 43,21 + 8186: 42,-15 8187: 42,-15 - 8188: 42,-15 - 8189: 42,-11 - 8493: 56,-18 - 8494: 56,-19 + 8188: 42,-11 + 8492: 56,-18 + 8493: 56,-19 + 8494: 56,-22 8495: 56,-22 - 8496: 56,-22 + 8496: 56,-23 8497: 56,-23 - 8498: 56,-23 + 8514: 53,-24 8515: 53,-24 - 8516: 53,-24 - 8517: 53,-25 - 8594: 65,-11 - 8595: 65,-30 - 8596: 60,-26 - 8986: 13,-27 - 8987: 12,-23 - 8988: 5,-23 - 8989: -13,-23 - 8992: -6,-23 - 8993: -5,-27 - 8994: -5,-28 - 9002: -13,-28 - 9062: 5,-28 - 9096: -7,-70 - 9097: -7,-70 - 9098: -2,-70 - 9127: -8,-73 - 9128: -1,-73 - 9129: -1,-73 - 9674: 19,-35 - 10240: 37,-30 - 10274: 20,-52 - 10417: 12,-52 - 10418: 12,-51 - 10419: 12,-50 - 10438: 1,-51 - 10448: 10,-60 - 10472: 14,-59 - 10473: 14,-60 - 10474: 14,-61 - 10477: 12,-59 - 10478: 12,-60 - 10479: 12,-61 - 10480: 12,-60 - 10481: 12,-61 - 10578: 51,-55 - 10670: 82,-44 - 10671: 82,-45 - 10672: 82,-46 - 10682: 79,-47 - 10691: 74,-39 - 10692: 74,-38 - 10758: 53,-55 - 10759: 53,-54 - 10760: 53,-53 - 10766: 45,-52 - 10767: 45,-53 - 10768: 45,-54 - 10781: 43,-56 - 10782: 43,-56 - 10783: 43,-55 - 10784: 43,-50 - 10785: 43,-50 - 11293: -74,-35 - 11294: -74,-35 - 11520: -21,-35 - 11703: -44,-28 - 11704: -44,-28 - 11705: -32,-28 - 11706: -32,-28 - 12326: -21,-47 - 12357: -17,-68 - 12358: -17,-69 - 12359: -17,-70 - 12360: -17,-71 - 12361: -17,-72 - 12362: -17,-73 - 12392: -15,-75 - 12393: -15,-76 - 12426: -13,-80 - 12427: -13,-81 - 12438: -21,-81 - 12442: -22,-67 - 12443: -22,-66 - 12523: -18,-78 - 12537: -17,-79 - 12538: -17,-80 - 12539: -17,-81 - 12546: -19,-81 - 12555: -24,-81 - 12556: -23,-78 - 12565: -23,-76 - 12566: -23,-75 - 12567: -23,-74 - 12568: -23,-73 - 12569: -23,-73 - 12570: -23,-72 - 12571: -23,-70 - 12572: -23,-69 - 12573: -23,-68 - 12574: -23,-65 - 12677: -38,26 - 12678: -38,28 - 12845: -19,-81 - 13354: -38,-67 - 13523: -29,-74 - 13524: -29,-77 - 13525: -29,-78 - 13535: -36,-78 - 13538: -31,-78 - 13539: -31,-77 - 13540: -31,-80 - 14443: -21,23 - 14444: -8,23 - 14445: 6,23 - 15370: -40,5 - 15473: 57,-31 - 15476: 57,-10 - 15487: 58,-27 - 15488: 60,-27 - 15489: 60,-14 - 15490: 58,-14 - 15601: 76,1 - 15602: 80,1 - 15617: 85,1 - 15684: 100,-3 - 15711: 92,2 - 15828: 81,-2 - 15829: 81,-3 - 15830: 81,-4 - 15842: 85,-2 - 15843: 85,-3 - 15844: 85,-4 - 15845: 89,-2 - 15846: 89,-3 - 15847: 89,-4 - 15873: 94,13 - 15881: 96,13 - 16721: -58,-17 - 16722: -54,-12 - 16723: -54,-13 - 16724: -54,-14 - 16725: -54,-15 - 16726: -54,-9 - 16727: -54,-8 - 16728: -54,-7 - 16729: -59,1 - 16768: -45,5 - 16778: -51,5 - 16779: -54,5 - 17095: -46,-17 - 17096: -46,-16 - 17097: -46,-15 - 17098: -46,-14 - 17099: -46,-13 - 17129: -74,-7 - 17297: -50,-8 - 17364: -74,-7 - 17685: -76,6 - 17686: -76,5 - 17687: -76,4 - 17690: -79,4 - 17691: -79,5 - 17692: -79,6 - 17716: -78,10 - 17717: -76,10 - 18046: -44,47 - 18053: -57,33 - 18054: -53,33 - 18055: -53,34 - 18056: -53,35 - 18057: -53,36 - 18058: -53,37 - 18072: -55,21 - 18084: -52,24 - 18085: -52,23 - 18119: -57,6 - 18156: -54,-4 - 18157: -54,-3 - 18158: -54,-2 - 18159: -54,-1 - 18320: -73,-7 - 18321: -68,-7 - 18322: -61,-8 - 18356: -50,-37 - 18423: -16,-14 - 18424: -16,-15 - 18446: -17,-9 - 18475: 15,-9 - 18986: 57,8 - 18987: 59,8 - 18988: 63,8 - 18989: 61,8 - 19420: -9,26 - 19489: -9,26 - 19493: -9,28 - 19494: -9,29 - 19496: -9,31 - 19497: -9,32 - 19801: -27,-23 - 20110: -21,5 - 21340: 19,14 - 21341: 19,15 - 21345: 23,14 - 21346: 23,15 - 21366: 26,14 - 21367: 26,13 - 21368: 26,14 - 21369: 26,15 - 21370: 26,16 - 21395: 25,14 - 21396: 25,15 - 22640: -5,-28 - 22649: -13,-28 - 23136: 13,-28 + 8516: 53,-25 + 8593: 65,-11 + 8594: 65,-30 + 8595: 60,-26 + 8982: 13,-27 + 8983: 12,-23 + 8984: 5,-23 + 8985: -13,-23 + 8987: -6,-23 + 8988: -5,-27 + 8989: -5,-28 + 8997: -13,-28 + 9055: 5,-28 + 9085: -7,-70 + 9086: -7,-70 + 9087: -2,-70 + 9116: -8,-73 + 9117: -1,-73 + 9118: -1,-73 + 9649: 19,-35 + 10186: 37,-30 + 10220: 20,-52 + 10355: 12,-52 + 10356: 12,-51 + 10357: 12,-50 + 10376: 1,-51 + 10386: 10,-60 + 10410: 14,-59 + 10411: 14,-60 + 10412: 14,-61 + 10415: 12,-59 + 10416: 12,-60 + 10417: 12,-61 + 10418: 12,-60 + 10419: 12,-61 + 10516: 51,-55 + 10608: 82,-44 + 10609: 82,-45 + 10610: 82,-46 + 10620: 79,-47 + 10629: 74,-39 + 10630: 74,-38 + 10696: 53,-55 + 10697: 53,-54 + 10698: 53,-53 + 10704: 45,-52 + 10705: 45,-53 + 10706: 45,-54 + 10719: 43,-56 + 10720: 43,-56 + 10721: 43,-55 + 10722: 43,-50 + 10723: 43,-50 + 11231: -74,-35 + 11232: -74,-35 + 11458: -21,-35 + 12264: -21,-47 + 12294: -17,-68 + 12295: -17,-69 + 12296: -17,-70 + 12297: -17,-71 + 12298: -17,-72 + 12299: -17,-73 + 12329: -15,-75 + 12330: -15,-76 + 12363: -13,-80 + 12364: -13,-81 + 12375: -21,-81 + 12379: -22,-67 + 12380: -22,-66 + 12460: -18,-78 + 12474: -17,-79 + 12475: -17,-80 + 12476: -17,-81 + 12483: -19,-81 + 12492: -24,-81 + 12493: -23,-78 + 12502: -23,-76 + 12503: -23,-75 + 12504: -23,-74 + 12505: -23,-73 + 12506: -23,-73 + 12507: -23,-72 + 12508: -23,-70 + 12509: -23,-69 + 12510: -23,-68 + 12511: -23,-65 + 12614: -38,26 + 12615: -38,28 + 12782: -19,-81 + 13291: -38,-67 + 13460: -29,-74 + 13461: -29,-77 + 13462: -29,-78 + 13472: -36,-78 + 13475: -31,-78 + 13476: -31,-77 + 13477: -31,-80 + 14380: -21,23 + 14381: -8,23 + 14382: 6,23 + 15307: -40,5 + 15410: 57,-31 + 15413: 57,-10 + 15424: 58,-27 + 15425: 60,-27 + 15426: 60,-14 + 15427: 58,-14 + 15538: 76,1 + 15539: 80,1 + 15554: 85,1 + 15621: 100,-3 + 15648: 92,2 + 15765: 81,-2 + 15766: 81,-3 + 15767: 81,-4 + 15779: 85,-2 + 15780: 85,-3 + 15781: 85,-4 + 15782: 89,-2 + 15783: 89,-3 + 15784: 89,-4 + 15810: 94,13 + 15818: 96,13 + 16658: -58,-17 + 16659: -54,-12 + 16660: -54,-13 + 16661: -54,-14 + 16662: -54,-15 + 16663: -54,-9 + 16664: -54,-8 + 16665: -54,-7 + 16666: -59,1 + 16705: -45,5 + 16715: -51,5 + 16716: -54,5 + 17032: -46,-17 + 17033: -46,-16 + 17034: -46,-15 + 17035: -46,-14 + 17036: -46,-13 + 17066: -74,-7 + 17234: -50,-8 + 17301: -74,-7 + 17622: -76,6 + 17623: -76,5 + 17624: -76,4 + 17627: -79,4 + 17628: -79,5 + 17629: -79,6 + 17653: -78,10 + 17654: -76,10 + 17983: -44,47 + 17990: -57,33 + 17991: -53,33 + 17992: -53,34 + 17993: -53,35 + 17994: -53,36 + 17995: -53,37 + 18009: -55,21 + 18021: -52,24 + 18022: -52,23 + 18056: -57,6 + 18093: -54,-4 + 18094: -54,-3 + 18095: -54,-2 + 18096: -54,-1 + 18257: -73,-7 + 18258: -68,-7 + 18259: -61,-8 + 18293: -50,-37 + 18360: -16,-14 + 18361: -16,-15 + 18383: -17,-9 + 18412: 15,-9 + 18923: 57,8 + 18924: 59,8 + 18925: 63,8 + 18926: 61,8 + 19356: -9,26 + 19425: -9,26 + 19429: -9,28 + 19430: -9,29 + 19432: -9,31 + 19433: -9,32 + 20046: -21,5 + 21272: 19,14 + 21273: 19,15 + 21277: 23,14 + 21278: 23,15 + 21298: 26,14 + 21299: 26,13 + 21300: 26,14 + 21301: 26,15 + 21302: 26,16 + 21327: 25,14 + 21328: 25,15 + 22572: -5,-28 + 22581: -13,-28 + 23066: 13,-28 + 24264: -44,-28 + 24265: -32,-28 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 4042: -15,27 + 4041: -15,27 + - node: + color: '#439909FF' + id: BrickTileDarkLineN + decals: + 24671: 44,-64 + 24672: 44,-61 + 24688: 39,-64 + 24689: 40,-64 - node: color: '#8CB7E8FF' id: BrickTileDarkLineN decals: - 4189: -12,16 - 4191: -10,15 - 4198: -10,12 - 4210: 10,16 - 4229: -12,13 - 4230: -10,13 - 4231: -9,13 - 4232: -8,13 - 4233: -7,13 - 4234: -6,13 - 4235: -3,15 - 4236: -2,15 - 4237: -1,15 - 4238: 0,15 - 4239: 1,15 - 4240: 4,13 - 4241: 5,13 - 4242: 6,13 - 4243: 7,13 - 4244: 8,13 - 4245: 10,13 - 4261: -8,16 - 4262: -7,16 - 4264: -5,18 - 4265: -4,18 - 4266: -3,18 - 4267: -2,18 - 4268: -1,18 - 4269: 0,18 - 4270: 1,18 - 4271: 2,18 - 4272: 3,18 - 4277: 5,16 - 4278: 6,16 - 4280: 8,15 - 4318: -2,14 - 5513: -10,12 - 5654: 8,12 - 9929: 30,-44 - 9930: 31,-44 - 9931: 32,-44 - 9932: 33,-44 - 15215: -12,13 + 4188: -12,16 + 4190: -10,15 + 4197: -10,12 + 4209: 10,16 + 4228: -12,13 + 4229: -10,13 + 4230: -9,13 + 4231: -8,13 + 4232: -7,13 + 4233: -6,13 + 4234: -3,15 + 4235: -2,15 + 4236: -1,15 + 4237: 0,15 + 4238: 1,15 + 4239: 4,13 + 4240: 5,13 + 4241: 6,13 + 4242: 7,13 + 4243: 8,13 + 4244: 10,13 + 4260: -8,16 + 4261: -7,16 + 4263: -5,18 + 4264: -4,18 + 4265: -3,18 + 4266: -2,18 + 4267: -1,18 + 4268: 0,18 + 4269: 1,18 + 4270: 2,18 + 4271: 3,18 + 4276: 5,16 + 4277: 6,16 + 4279: 8,15 + 4317: -2,14 + 5512: -10,12 + 5653: 8,12 + 9876: 30,-44 + 9877: 31,-44 + 9878: 32,-44 + 9879: 33,-44 + 15152: -12,13 - node: color: '#96A4EBFF' id: BrickTileDarkLineN decals: - 5509: -12,13 - 5510: -10,12 + 5508: -12,13 + 5509: -10,12 - node: color: '#B18BDAFF' id: BrickTileDarkLineN decals: - 11725: -9,-38 - 11726: -8,-38 - 11727: -6,-38 - 11749: -6,-45 - 12109: -24,-49 - 12110: -29,-48 - 12111: -28,-48 - 12112: -27,-48 - 12113: -26,-48 - 12114: -25,-48 - 12115: -24,-48 - 12629: -52,-25 + 11663: -9,-38 + 11664: -8,-38 + 11665: -6,-38 + 11687: -6,-45 + 12047: -24,-49 + 12048: -29,-48 + 12049: -28,-48 + 12050: -27,-48 + 12051: -26,-48 + 12052: -25,-48 + 12053: -24,-48 - node: - color: '#CEDA8BFF' + color: '#D381C9FF' id: BrickTileDarkLineN decals: - 10847: 44,-61 - 10848: 44,-64 - 10863: 39,-64 - 10864: 40,-64 + 24290: -46,-24 + 24295: -46,-22 + 24300: -48,-25 + 24301: -47,-25 + 24311: -42,-31 + 24312: -38,-31 + 24313: -34,-31 + 24339: -36,-27 + 24340: -40,-27 + 24351: -29,-33 + 24366: -28,-26 + 24367: -27,-26 + 24368: -30,-26 - node: color: '#DA8B8BFF' id: BrickTileDarkLineN decals: - 3695: 2,59 - 3698: 2,59 - 6696: -24,-1 - 7397: 40,10 - 7398: 36,7 - 7400: 36,10 - 7402: 40,2 - 7432: 36,12 - 7456: 46,10 - 7457: 47,10 - 7458: 48,10 + 3694: 2,59 + 3697: 2,59 + 6695: -24,-1 + 7396: 40,10 + 7397: 36,7 + 7399: 36,10 + 7401: 40,2 + 7431: 36,12 + 7455: 46,10 + 7456: 47,10 + 7457: 48,10 + 7474: 53,10 7475: 53,10 - 7476: 53,10 - 7489: 47,14 - 7490: 51,14 - 7528: 52,20 - 7540: 57,20 - 7581: 47,-2 - 7582: 52,-2 - 7587: 51,-3 - 7603: 61,-2 - 7604: 65,-2 - 7646: 73,20 - 7652: 73,20 + 7488: 47,14 + 7489: 51,14 + 7527: 52,20 + 7539: 57,20 + 7580: 47,-2 + 7581: 52,-2 + 7586: 51,-3 + 7602: 61,-2 + 7603: 65,-2 + 7645: 73,20 + 7651: 73,20 + 7658: 75,24 7659: 75,24 - 7660: 75,24 - 7840: 73,4 - 10518: 5,-63 - 10535: 5,-73 - 10547: 5,-79 - 10556: 4,-83 - 15341: -48,7 - 19044: 50,1 - 19045: 51,1 - 19053: 36,7 - 19054: 37,6 - 19055: 35,6 - 19056: 34,6 - 19067: 35,3 - 19101: 40,13 - 19135: 46,24 - 19174: 51,19 - 19175: 53,19 - 19194: 70,-3 - 19204: 73,23 - 19205: 74,23 - 19258: 52,13 - 19259: 53,13 - 19260: 54,13 - 19261: 55,13 - 19262: 56,13 - 19263: 57,13 - 19264: 58,13 - 19265: 58,13 - 19266: 59,13 - 19297: 52,9 - 19298: 51,9 - 19299: 54,9 - 19331: 69,-2 - 19334: 69,1 - 19335: 70,1 - 19364: -19,-24 - 19365: -18,-24 - 19540: 50,32 - 19541: 51,32 - 19542: 52,32 - 19543: 52,32 - 19544: 56,32 - 19545: 53,32 - 19546: 54,32 - 19547: 55,32 - 19548: 55,32 - 19583: 52,21 - 19584: 53,21 - 19585: 55,21 - 19586: 56,21 - 19594: 57,32 - 19595: 58,32 - 19598: 54,29 - 19599: 56,28 - 19600: 57,28 - 19601: 52,28 - 19602: 51,28 + 7839: 73,4 + 10456: 5,-63 + 10473: 5,-73 + 10485: 5,-79 + 10494: 4,-83 + 15278: -48,7 + 18981: 50,1 + 18982: 51,1 + 18990: 36,7 + 18991: 37,6 + 18992: 35,6 + 18993: 34,6 + 19004: 35,3 + 19038: 40,13 + 19072: 46,24 + 19111: 51,19 + 19112: 53,19 + 19131: 70,-3 + 19141: 73,23 + 19142: 74,23 + 19195: 52,13 + 19196: 53,13 + 19197: 54,13 + 19198: 55,13 + 19199: 56,13 + 19200: 57,13 + 19201: 58,13 + 19202: 58,13 + 19203: 59,13 + 19234: 52,9 + 19235: 51,9 + 19236: 54,9 + 19268: 69,-2 + 19271: 69,1 + 19272: 70,1 + 19301: -19,-24 + 19302: -18,-24 + 19476: 50,32 + 19477: 51,32 + 19478: 52,32 + 19479: 52,32 + 19480: 56,32 + 19481: 53,32 + 19482: 54,32 + 19483: 55,32 + 19484: 55,32 + 19519: 52,21 + 19520: 53,21 + 19521: 55,21 + 19522: 56,21 + 19530: 57,32 + 19531: 58,32 + 19534: 54,29 + 19535: 56,28 + 19536: 57,28 + 19537: 52,28 + 19538: 51,28 - node: color: '#DABC8BFF' id: BrickTileDarkLineN decals: - 3692: 6,86 + 3691: 6,86 - node: color: '#DE3A3AFF' id: BrickTileDarkLineN decals: - 20282: -24,-1 + 20218: -24,-1 - node: color: '#EFB341FF' id: BrickTileDarkLineN decals: - 17534: -65,4 - 17535: -64,4 - 17536: -63,4 - 17537: -62,4 - 17557: -65,11 - 17558: -64,11 - 17559: -63,11 - 17560: -62,11 - 17629: -73,8 - 17630: -71,8 - 17641: -73,3 - 18219: -72,1 - 18220: -71,1 - 18221: -69,1 - 18222: -70,1 - 18223: -68,1 + 17471: -65,4 + 17472: -64,4 + 17473: -63,4 + 17474: -62,4 + 17494: -65,11 + 17495: -64,11 + 17496: -63,11 + 17497: -62,11 + 17566: -73,8 + 17567: -71,8 + 17578: -73,3 + 18156: -72,1 + 18157: -71,1 + 18158: -69,1 + 18159: -70,1 + 18160: -68,1 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 1243: 69,4 - 1993: -9,25 - 1994: -8,34 - 2038: -16,34 - 2218: -19,54 - 2411: -14,46 - 2466: -14,46 - 2467: -13,46 - 2468: -12,46 - 2469: -11,46 - 2621: -2,40 - 2687: 0,54 - 2688: 3,54 - 2694: 3,49 - 2712: -6,51 - 2717: -6,54 - 2719: -5,54 - 3437: 2,59 - 3854: 18,72 - 3855: 19,72 - 3856: 20,72 - 3857: 21,72 - 3858: 22,72 - 3882: 20,67 - 3934: 13,62 - 3935: 14,62 - 3936: 15,62 - 3944: 18,61 - 3948: 19,60 - 3949: 20,60 - 4448: 15,25 - 4658: 20,24 - 5517: -19,7 - 5533: -19,-7 - 5557: -33,25 - 5558: -32,25 - 5594: -13,59 - 5595: -12,59 - 5596: -11,59 - 5597: -13,66 - 5598: -12,66 - 5599: -11,66 - 5707: 9,7 - 5721: 10,3 - 5722: 9,3 - 5745: 8,4 - 5746: 10,-1 - 5812: -12,-3 - 5825: -10,-7 - 5851: -11,-3 - 5927: -1,14 - 5928: 0,14 - 5984: -1,-7 - 6077: -12,-18 + 1242: 69,4 + 1992: -9,25 + 1993: -8,34 + 2037: -16,34 + 2217: -19,54 + 2410: -14,46 + 2465: -14,46 + 2466: -13,46 + 2467: -12,46 + 2468: -11,46 + 2620: -2,40 + 2686: 0,54 + 2687: 3,54 + 2693: 3,49 + 2711: -6,51 + 2716: -6,54 + 2718: -5,54 + 3436: 2,59 + 3853: 18,72 + 3854: 19,72 + 3855: 20,72 + 3856: 21,72 + 3857: 22,72 + 3881: 20,67 + 3933: 13,62 + 3934: 14,62 + 3935: 15,62 + 3943: 18,61 + 3947: 19,60 + 3948: 20,60 + 4447: 15,25 + 4657: 20,24 + 5516: -19,7 + 5532: -19,-7 + 5556: -33,25 + 5557: -32,25 + 5593: -13,59 + 5594: -12,59 + 5595: -11,59 + 5596: -13,66 + 5597: -12,66 + 5598: -11,66 + 5706: 9,7 + 5720: 10,3 + 5721: 9,3 + 5744: 8,4 + 5745: 10,-1 + 5811: -12,-3 + 5824: -10,-7 + 5850: -11,-3 + 5926: -1,14 + 5927: 0,14 + 5983: -1,-7 + 6076: -12,-18 + 6115: 17,-7 6116: 17,-7 - 6117: 17,-7 - 6127: 17,7 - 6172: -19,-22 - 6303: 17,-22 + 6126: 17,7 + 6171: -19,-22 + 6302: 17,-22 + 6375: 13,-18 6376: 13,-18 - 6377: 13,-18 + 6558: -23,-5 6559: -23,-5 - 6560: -23,-5 + 6560: -25,-5 6561: -25,-5 - 6562: -25,-5 - 6574: -24,-10 - 6614: -24,-8 - 7207: 21,2 - 7238: 22,-9 - 7268: 35,1 - 7284: 27,9 - 7310: 30,11 - 7311: 31,11 - 7312: 32,11 - 7321: 29,7 - 7351: 34,6 - 7352: 35,6 - 7353: 37,6 - 7362: 35,3 - 7455: 47,10 + 6573: -24,-10 + 6613: -24,-8 + 7206: 21,2 + 7237: 22,-9 + 7267: 35,1 + 7283: 27,9 + 7309: 30,11 + 7310: 31,11 + 7311: 32,11 + 7320: 29,7 + 7350: 34,6 + 7351: 35,6 + 7352: 37,6 + 7361: 35,3 + 7454: 47,10 + 7669: 40,22 7670: 40,22 - 7671: 40,22 - 7672: 41,22 + 7671: 41,22 + 7672: 42,22 7673: 42,22 - 7674: 42,22 - 7688: 35,21 - 8176: 34,-17 + 7687: 35,21 + 8175: 34,-17 + 8176: 35,-17 8177: 35,-17 - 8178: 35,-17 - 8201: 35,-7 - 8477: 57,-24 + 8200: 35,-7 + 8476: 57,-24 + 8477: 58,-24 8478: 58,-24 - 8479: 58,-24 + 8479: 59,-24 8480: 59,-24 - 8481: 59,-24 + 8481: 60,-24 8482: 60,-24 - 8483: 60,-24 - 8484: 61,-24 - 8732: -1,-29 - 8733: -1,-22 - 8734: -1,-37 - 8735: -1,-57 - 8736: -1,-63 - 8964: -5,-24 - 8965: -4,-24 - 8966: 6,-24 - 8967: 7,-24 - 8968: 8,-24 - 8969: 9,-24 - 8970: 10,-24 - 8971: -8,-24 - 8972: -9,-24 - 8973: -10,-24 - 8974: -11,-24 - 8975: -12,-24 - 8991: -15,-24 - 9027: 2,-24 - 9028: 3,-24 - 9029: 13,-24 - 9030: 14,-24 - 9081: 14,-24 - 9084: 2,-24 - 9133: -5,-66 - 9134: -4,-66 - 9135: -4,-66 - 9140: -1,-82 - 9420: -5,-68 - 9421: -4,-68 - 9670: 17,-37 - 9671: 27,-37 - 10241: 36,-29 - 10242: 36,-29 - 10420: 11,-49 - 10421: 10,-49 - 10422: 9,-49 - 10423: 9,-49 - 10424: 9,-49 - 10425: 8,-49 - 10426: 6,-49 - 10427: 7,-49 - 10428: 6,-49 - 10429: 5,-49 - 10433: 3,-49 - 10440: 10,-54 - 10460: 12,-62 - 10466: 11,-58 - 10467: 12,-58 - 10468: 12,-58 - 10469: 13,-58 - 10470: 13,-58 - 10576: 50,-54 - 10577: 50,-54 - 10673: 81,-43 - 10688: 73,-41 - 10689: 73,-41 - 10690: 73,-37 - 11512: -19,-33 - 11525: -23,-33 - 11529: -14,-37 - 11530: -14,-37 - 11685: -14,-45 - 12377: -20,-66 - 12378: -20,-66 - 12379: -19,-66 - 12380: -18,-66 - 12381: -16,-66 - 12382: -15,-66 - 12383: -14,-66 - 12384: -13,-66 - 12385: -17,-66 - 12386: -16,-74 - 12387: -18,-74 - 12403: -21,-76 - 12404: -21,-76 - 12405: -20,-76 - 12406: -14,-76 - 12407: -13,-76 - 12410: -20,-65 - 12411: -19,-65 - 12412: -18,-65 - 12413: -16,-65 - 12414: -15,-65 - 12415: -14,-65 - 12424: -15,-79 - 12425: -14,-79 - 12436: -22,-80 - 12441: -21,-66 - 12524: -21,-77 - 12525: -17,-78 - 12526: -16,-78 - 12527: -15,-78 - 12529: -13,-78 - 12560: -23,-79 - 12562: -23,-77 - 12581: -23,-71 - 12748: -30,70 - 12749: -12,70 - 12750: -20,66 - 12751: -19,66 - 12752: -18,66 - 12753: -6,66 - 12754: -5,66 - 12755: -4,66 - 12756: 6,70 - 12782: -6,59 - 12783: -5,59 - 12784: -4,59 - 12785: -18,59 - 12786: -19,59 - 12787: -20,59 - 12788: -20,66 - 12789: -19,66 - 13346: -40,-66 - 13347: -39,-66 - 13517: -36,-73 - 13518: -35,-73 - 13519: -34,-73 - 13520: -32,-73 - 13521: -31,-73 - 13551: -33,-77 - 13552: -34,-77 - 13555: -32,-77 - 14384: -60,20 - 14385: -59,20 - 14386: -58,20 - 14410: -65,13 - 14411: -64,13 - 14412: -64,13 - 14413: -63,13 - 14414: -62,13 - 14449: -19,21 - 14450: 17,21 - 15353: -42,2 - 15356: -42,3 - 15367: -42,7 - 15467: 58,-11 - 15468: 59,-11 - 15469: 60,-11 - 15592: 77,0 - 15593: 78,0 - 15594: 79,0 - 15595: 82,0 - 15596: 83,0 - 15597: 84,0 - 15598: 86,0 - 15599: 87,0 - 15600: 88,0 - 15616: 81,0 - 15630: 90,10 - 15631: 91,10 - 15632: 92,10 - 15633: 93,10 - 15636: 92,8 - 15638: 91,7 - 15670: 92,5 - 15715: 95,0 - 15716: 94,0 - 15826: 80,-2 - 15854: 88,-2 - 15855: 84,-2 - 15875: 97,14 - 15876: 97,13 - 15886: 96,14 - 15891: 97,13 - 16001: 92,15 - 16011: 89,9 - 16012: 90,9 - 16713: -58,0 - 16714: -56,0 - 16715: -53,-5 - 16716: -53,-10 - 16717: -53,-16 - 16718: -57,-18 - 16719: -56,-18 - 16720: -55,-18 - 16758: -47,6 - 16759: -46,6 - 16764: -49,3 - 16919: -58,3 - 16920: -57,3 - 17085: -48,-18 - 17086: -47,-18 - 17087: -48,-12 - 17088: -47,-12 - 17131: -70,-9 - 17367: -70,-9 - 17677: -81,15 - 17678: -81,13 - 18082: -54,25 - 18083: -53,25 - 18155: -57,0 - 18307: -60,-9 - 18308: -59,-9 - 18309: -58,-9 - 18310: -67,-8 - 18311: -66,-8 - 18312: -65,-8 - 18313: -65,-8 - 18314: -64,-8 - 18315: -69,-8 - 18316: -69,-8 - 18317: -70,-8 - 18318: -71,-8 - 18319: -72,-8 - 18358: -52,-36 - 18359: -52,-36 - 18360: -51,-36 - 18362: -49,-38 - 18522: 13,-11 - 18525: 13,-13 - 18541: 13,-13 - 18973: 69,10 - 19425: -11,33 - 19432: -14,34 - 19433: -13,34 - 19479: -11,33 - 19774: -8,-40 - 19775: -7,-40 - 19796: -30,-22 - 19797: -29,-22 - 19798: -28,-22 - 19806: -29,-25 - 20074: 65,27 - 20075: 66,27 - 20082: 62,30 - 20083: 63,30 - 20084: 64,30 - 20085: 65,30 - 20086: 65,30 - 20087: 67,30 - 20088: 67,30 - 20089: 66,30 - 20099: 62,27 - 20100: 64,27 - 20101: 65,27 - 20102: 66,27 - 20103: 67,27 - 21337: 20,15 - 21348: 24,13 - 21355: 23,17 - 21356: 25,17 - 21357: 25,17 - 21358: 24,17 - 21401: 24,16 - 23124: -16,-24 + 8483: 61,-24 + 8731: -1,-29 + 8732: -1,-22 + 8733: -1,-37 + 8734: -1,-57 + 8735: -1,-63 + 8961: -5,-24 + 8962: -4,-24 + 8963: 6,-24 + 8964: 7,-24 + 8965: 8,-24 + 8966: 9,-24 + 8967: 10,-24 + 8968: -8,-24 + 8969: -9,-24 + 8970: -10,-24 + 8971: -11,-24 + 8972: -12,-24 + 8986: -15,-24 + 9022: 2,-24 + 9023: 3,-24 + 9024: 13,-24 + 9025: 14,-24 + 9072: 14,-24 + 9074: 2,-24 + 9122: -5,-66 + 9123: -4,-66 + 9124: -4,-66 + 9129: -1,-82 + 9408: -5,-68 + 9409: -4,-68 + 9645: 17,-37 + 9646: 27,-37 + 10187: 36,-29 + 10188: 36,-29 + 10358: 11,-49 + 10359: 10,-49 + 10360: 9,-49 + 10361: 9,-49 + 10362: 9,-49 + 10363: 8,-49 + 10364: 6,-49 + 10365: 7,-49 + 10366: 6,-49 + 10367: 5,-49 + 10371: 3,-49 + 10378: 10,-54 + 10398: 12,-62 + 10404: 11,-58 + 10405: 12,-58 + 10406: 12,-58 + 10407: 13,-58 + 10408: 13,-58 + 10514: 50,-54 + 10515: 50,-54 + 10611: 81,-43 + 10626: 73,-41 + 10627: 73,-41 + 10628: 73,-37 + 11450: -19,-33 + 11463: -23,-33 + 11467: -14,-37 + 11468: -14,-37 + 11623: -14,-45 + 12314: -20,-66 + 12315: -20,-66 + 12316: -19,-66 + 12317: -18,-66 + 12318: -16,-66 + 12319: -15,-66 + 12320: -14,-66 + 12321: -13,-66 + 12322: -17,-66 + 12323: -16,-74 + 12324: -18,-74 + 12340: -21,-76 + 12341: -21,-76 + 12342: -20,-76 + 12343: -14,-76 + 12344: -13,-76 + 12347: -20,-65 + 12348: -19,-65 + 12349: -18,-65 + 12350: -16,-65 + 12351: -15,-65 + 12352: -14,-65 + 12361: -15,-79 + 12362: -14,-79 + 12373: -22,-80 + 12378: -21,-66 + 12461: -21,-77 + 12462: -17,-78 + 12463: -16,-78 + 12464: -15,-78 + 12466: -13,-78 + 12497: -23,-79 + 12499: -23,-77 + 12518: -23,-71 + 12685: -30,70 + 12686: -12,70 + 12687: -20,66 + 12688: -19,66 + 12689: -18,66 + 12690: -6,66 + 12691: -5,66 + 12692: -4,66 + 12693: 6,70 + 12719: -6,59 + 12720: -5,59 + 12721: -4,59 + 12722: -18,59 + 12723: -19,59 + 12724: -20,59 + 12725: -20,66 + 12726: -19,66 + 13283: -40,-66 + 13284: -39,-66 + 13454: -36,-73 + 13455: -35,-73 + 13456: -34,-73 + 13457: -32,-73 + 13458: -31,-73 + 13488: -33,-77 + 13489: -34,-77 + 13492: -32,-77 + 14321: -60,20 + 14322: -59,20 + 14323: -58,20 + 14347: -65,13 + 14348: -64,13 + 14349: -64,13 + 14350: -63,13 + 14351: -62,13 + 14386: -19,21 + 14387: 17,21 + 15290: -42,2 + 15293: -42,3 + 15304: -42,7 + 15404: 58,-11 + 15405: 59,-11 + 15406: 60,-11 + 15529: 77,0 + 15530: 78,0 + 15531: 79,0 + 15532: 82,0 + 15533: 83,0 + 15534: 84,0 + 15535: 86,0 + 15536: 87,0 + 15537: 88,0 + 15553: 81,0 + 15567: 90,10 + 15568: 91,10 + 15569: 92,10 + 15570: 93,10 + 15573: 92,8 + 15575: 91,7 + 15607: 92,5 + 15652: 95,0 + 15653: 94,0 + 15763: 80,-2 + 15791: 88,-2 + 15792: 84,-2 + 15812: 97,14 + 15813: 97,13 + 15823: 96,14 + 15828: 97,13 + 15938: 92,15 + 15948: 89,9 + 15949: 90,9 + 16650: -58,0 + 16651: -56,0 + 16652: -53,-5 + 16653: -53,-10 + 16654: -53,-16 + 16655: -57,-18 + 16656: -56,-18 + 16657: -55,-18 + 16695: -47,6 + 16696: -46,6 + 16701: -49,3 + 16856: -58,3 + 16857: -57,3 + 17022: -48,-18 + 17023: -47,-18 + 17024: -48,-12 + 17025: -47,-12 + 17068: -70,-9 + 17304: -70,-9 + 17614: -81,15 + 17615: -81,13 + 18019: -54,25 + 18020: -53,25 + 18092: -57,0 + 18244: -60,-9 + 18245: -59,-9 + 18246: -58,-9 + 18247: -67,-8 + 18248: -66,-8 + 18249: -65,-8 + 18250: -65,-8 + 18251: -64,-8 + 18252: -69,-8 + 18253: -69,-8 + 18254: -70,-8 + 18255: -71,-8 + 18256: -72,-8 + 18295: -52,-36 + 18296: -52,-36 + 18297: -51,-36 + 18299: -49,-38 + 18459: 13,-11 + 18462: 13,-13 + 18478: 13,-13 + 18910: 69,10 + 19361: -11,33 + 19368: -14,34 + 19369: -13,34 + 19415: -11,33 + 19710: -8,-40 + 19711: -7,-40 + 20010: 65,27 + 20011: 66,27 + 20018: 62,30 + 20019: 63,30 + 20020: 64,30 + 20021: 65,30 + 20022: 65,30 + 20023: 67,30 + 20024: 67,30 + 20025: 66,30 + 20035: 62,27 + 20036: 64,27 + 20037: 65,27 + 20038: 66,27 + 20039: 67,27 + 21269: 20,15 + 21280: 24,13 + 21287: 23,17 + 21288: 25,17 + 21289: 25,17 + 21290: 24,17 + 21333: 24,16 + 23056: -16,-24 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 4046: -19,25 + 4045: -19,25 + - node: + color: '#439909FF' + id: BrickTileDarkLineS + decals: + 24670: 44,-64 + 24673: 44,-61 + 24686: 39,-64 + 24687: 40,-64 - node: color: '#8CB7E8FF' id: BrickTileDarkLineS decals: - 4184: -12,13 - 4185: -11,13 - 4186: -9,13 - 4187: -8,13 - 4188: -7,13 - 4199: -6,13 - 4200: -5,13 - 4201: 3,13 - 4202: 4,13 - 4203: 5,13 - 4204: 6,13 - 4205: 7,13 - 4206: 9,13 - 4207: 10,13 - 4212: -10,15 - 4213: -9,15 - 4214: -8,15 - 4215: -7,15 - 4216: -3,17 + 4183: -12,13 + 4184: -11,13 + 4185: -9,13 + 4186: -8,13 + 4187: -7,13 + 4198: -6,13 + 4199: -5,13 + 4200: 3,13 + 4201: 4,13 + 4202: 5,13 + 4203: 6,13 + 4204: 7,13 + 4205: 9,13 + 4206: 10,13 + 4211: -10,15 + 4212: -9,15 + 4213: -8,15 + 4214: -7,15 + 4215: -3,17 + 4216: -1,17 4217: -1,17 - 4218: -1,17 - 4219: -2,17 - 4220: 0,17 - 4221: 1,17 - 4222: 4,15 - 4223: 5,15 - 4224: 6,15 - 4225: 7,15 - 4226: 8,15 - 4227: 10,16 - 4228: -12,16 - 4288: -3,15 - 4289: -1,15 - 4290: 0,15 - 4291: 1,15 - 5512: -6,15 - 9937: 31,-45 - 9938: 32,-45 - 9939: 33,-45 - 21288: -12,13 - 21289: -11,13 + 4218: -2,17 + 4219: 0,17 + 4220: 1,17 + 4221: 4,15 + 4222: 5,15 + 4223: 6,15 + 4224: 7,15 + 4225: 8,15 + 4226: 10,16 + 4227: -12,16 + 4287: -3,15 + 4288: -1,15 + 4289: 0,15 + 4290: 1,15 + 5511: -6,15 + 9884: 31,-45 + 9885: 32,-45 + 9886: 33,-45 + 21220: -12,13 + 21221: -11,13 - node: color: '#B18BDAFF' id: BrickTileDarkLineS decals: - 11733: -10,-44 - 11734: -9,-44 - 11735: -8,-44 - 11736: -8,-44 - 11737: -7,-44 - 11746: -7,-37 - 11747: -7,-37 - 12103: -29,-48 - 12104: -28,-48 - 12105: -28,-48 - 12106: -27,-48 - 12107: -26,-48 - 12108: -25,-48 - 12628: -52,-31 + 11671: -10,-44 + 11672: -9,-44 + 11673: -8,-44 + 11674: -8,-44 + 11675: -7,-44 + 11684: -7,-37 + 11685: -7,-37 + 12041: -29,-48 + 12042: -28,-48 + 12043: -28,-48 + 12044: -27,-48 + 12045: -26,-48 + 12046: -25,-48 - node: - color: '#CEDA8BFF' + color: '#D381C9FF' id: BrickTileDarkLineS decals: - 10849: 44,-61 - 10850: 44,-64 - 10861: 40,-64 - 10862: 39,-64 + 24249: -42,-25 + 24250: -38,-25 + 24251: -34,-25 + 24252: -29,-25 + 24254: -29,-25 + 24255: -40,-29 + 24256: -36,-29 + 24281: -48,-31 + 24282: -47,-31 + 24283: -45,-31 + 24284: -46,-31 + 24289: -46,-24 + 24292: -47,-23 + 24352: -30,-32 + 24353: -28,-32 + 24360: -27,-32 - node: color: '#DA8B8BFF' id: BrickTileDarkLineS decals: - 4587: 13,33 - 6695: -23,3 - 7391: 40,10 - 7396: 40,10 - 7399: 36,10 - 7401: 40,2 - 7416: 37,8 - 7459: 46,10 - 7460: 47,10 - 7461: 48,10 + 4586: 13,33 + 6694: -23,3 + 7390: 40,10 + 7395: 40,10 + 7398: 36,10 + 7400: 40,2 + 7415: 37,8 + 7458: 46,10 + 7459: 47,10 + 7460: 48,10 + 7472: 53,10 7473: 53,10 - 7474: 53,10 - 7486: 47,14 + 7485: 47,14 + 7486: 51,14 7487: 51,14 - 7488: 51,14 - 7516: 52,20 - 7517: 57,20 - 7580: 47,-2 - 7583: 52,-2 - 7584: 56,-5 - 7585: 57,-5 - 7586: 52,-5 - 7622: 58,2 - 7623: 62,2 - 7624: 66,2 - 7645: 73,20 + 7515: 52,20 + 7516: 57,20 + 7579: 47,-2 + 7582: 52,-2 + 7583: 56,-5 + 7584: 57,-5 + 7585: 52,-5 + 7621: 58,2 + 7622: 62,2 + 7623: 66,2 + 7644: 73,20 + 7648: 75,24 7649: 75,24 - 7650: 75,24 - 7651: 73,20 - 7661: 75,26 - 7835: 69,-2 - 7839: 73,4 - 9715: 11,-29 - 10510: 7,-57 - 10519: 5,-63 - 10542: 5,-73 - 10557: 5,-79 - 15545: 72,-1 - 15546: 73,-1 - 19017: 51,-1 - 19018: 50,-1 - 19019: 55,-1 - 19020: 54,-1 - 19021: 53,-1 - 19022: 60,-1 - 19023: 59,-1 - 19024: 58,-1 - 19025: 64,-1 - 19026: 63,-1 - 19027: 62,-1 - 19028: 66,-1 - 19029: 67,-1 - 19032: 48,-1 - 19052: 36,7 - 19059: 34,4 - 19060: 36,4 - 19061: 36,4 - 19062: 37,4 - 19085: 40,-1 - 19109: 52,11 - 19110: 51,11 - 19111: 54,11 - 19112: 55,11 - 19113: 56,11 - 19114: 57,11 - 19115: 58,11 - 19116: 58,11 - 19117: 59,11 - 19121: 47,14 - 19122: 46,15 - 19156: 50,21 - 19157: 51,21 - 19158: 56,21 - 19159: 55,21 - 19160: 54,21 - 19161: 54,21 - 19162: 53,21 - 19163: 58,21 - 19164: 53,15 - 19165: 52,15 - 19188: 69,-5 - 19189: 70,-5 - 19206: 74,21 - 19207: 75,21 - 19308: 51,3 - 19309: 52,3 - 19310: 53,3 - 19311: 54,3 - 19312: 54,3 - 19328: 70,-1 - 19361: -19,-28 - 19375: 7,-57 - 19549: 52,28 - 19550: 53,28 - 19559: 55,28 - 19560: 56,28 - 19607: 51,31 - 19608: 57,31 - 19609: 54,32 - 19610: 53,32 - 19611: 55,32 + 7650: 73,20 + 7660: 75,26 + 7834: 69,-2 + 7838: 73,4 + 9680: 11,-29 + 10448: 7,-57 + 10457: 5,-63 + 10480: 5,-73 + 10495: 5,-79 + 15482: 72,-1 + 15483: 73,-1 + 18954: 51,-1 + 18955: 50,-1 + 18956: 55,-1 + 18957: 54,-1 + 18958: 53,-1 + 18959: 60,-1 + 18960: 59,-1 + 18961: 58,-1 + 18962: 64,-1 + 18963: 63,-1 + 18964: 62,-1 + 18965: 66,-1 + 18966: 67,-1 + 18969: 48,-1 + 18989: 36,7 + 18996: 34,4 + 18997: 36,4 + 18998: 36,4 + 18999: 37,4 + 19022: 40,-1 + 19046: 52,11 + 19047: 51,11 + 19048: 54,11 + 19049: 55,11 + 19050: 56,11 + 19051: 57,11 + 19052: 58,11 + 19053: 58,11 + 19054: 59,11 + 19058: 47,14 + 19059: 46,15 + 19093: 50,21 + 19094: 51,21 + 19095: 56,21 + 19096: 55,21 + 19097: 54,21 + 19098: 54,21 + 19099: 53,21 + 19100: 58,21 + 19101: 53,15 + 19102: 52,15 + 19125: 69,-5 + 19126: 70,-5 + 19143: 74,21 + 19144: 75,21 + 19245: 51,3 + 19246: 52,3 + 19247: 53,3 + 19248: 54,3 + 19249: 54,3 + 19265: 70,-1 + 19298: -19,-28 + 19311: 7,-57 + 19485: 52,28 + 19486: 53,28 + 19495: 55,28 + 19496: 56,28 + 19543: 51,31 + 19544: 57,31 + 19545: 54,32 + 19546: 53,32 + 19547: 55,32 - node: color: '#DABC8BFF' id: BrickTileDarkLineS decals: - 3694: 5,91 + 3693: 5,91 - node: color: '#DE3A3AFF' id: BrickTileDarkLineS decals: - 20281: -23,3 + 20217: -23,3 - node: color: '#EFB341FF' id: BrickTileDarkLineS decals: - 17525: -65,11 - 17526: -64,11 - 17527: -63,11 - 17528: -62,11 - 17568: -65,4 - 17569: -64,4 - 17570: -63,4 - 17571: -62,4 - 17628: -72,9 - 17639: -72,4 - 17640: -71,4 - 17644: -72,9 - 18233: -72,-3 - 18234: -71,-3 - 18235: -72,-3 - 18236: -70,-3 - 18237: -69,-3 - 18238: -68,-3 + 17462: -65,11 + 17463: -64,11 + 17464: -63,11 + 17465: -62,11 + 17505: -65,4 + 17506: -64,4 + 17507: -63,4 + 17508: -62,4 + 17565: -72,9 + 17576: -72,4 + 17577: -71,4 + 17581: -72,9 + 18170: -72,-3 + 18171: -71,-3 + 18172: -72,-3 + 18173: -70,-3 + 18174: -69,-3 + 18175: -68,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 2019: -16,26 - 2034: -17,35 - 2035: -16,35 - 2039: -15,35 - 2217: -19,54 - 2289: -15,35 - 2414: -14,36 - 2472: -14,36 + 2018: -16,26 + 2033: -17,35 + 2034: -16,35 + 2038: -15,35 + 2216: -19,54 + 2288: -15,35 + 2413: -14,36 + 2471: -14,36 + 2472: -13,36 2473: -13,36 - 2474: -13,36 + 2474: -11,36 2475: -11,36 - 2476: -11,36 - 2477: -12,36 - 2532: -7,36 - 2614: -3,36 - 2627: -3,41 - 2664: 1,55 - 2665: 2,55 - 2677: 0,50 - 2678: 1,50 - 2679: 2,50 - 2692: -1,55 - 3683: 6,66 - 3849: 18,72 - 3850: 19,72 - 3851: 20,72 - 3852: 21,72 - 3853: 22,72 - 3877: 19,68 - 3878: 21,68 - 3879: 22,68 - 3887: 21,65 - 3888: 22,65 - 3889: 18,65 - 3937: 13,58 - 3938: 14,58 - 3939: 15,58 - 3940: 16,58 - 4447: 15,25 - 4656: 20,24 - 4657: 21,24 - 4660: 21,25 - 5516: -19,7 - 5532: -19,-7 - 5555: -33,25 - 5556: -32,25 - 5587: -13,66 - 5588: -12,66 - 5589: -11,66 - 5590: -13,59 - 5591: -12,59 + 2476: -12,36 + 2531: -7,36 + 2613: -3,36 + 2626: -3,41 + 2663: 1,55 + 2664: 2,55 + 2676: 0,50 + 2677: 1,50 + 2678: 2,50 + 2691: -1,55 + 3682: 6,66 + 3848: 18,72 + 3849: 19,72 + 3850: 20,72 + 3851: 21,72 + 3852: 22,72 + 3876: 19,68 + 3877: 21,68 + 3878: 22,68 + 3886: 21,65 + 3887: 22,65 + 3888: 18,65 + 3936: 13,58 + 3937: 14,58 + 3938: 15,58 + 3939: 16,58 + 4446: 15,25 + 4655: 20,24 + 4656: 21,24 + 4659: 21,25 + 5515: -19,7 + 5531: -19,-7 + 5554: -33,25 + 5555: -32,25 + 5586: -13,66 + 5587: -12,66 + 5588: -11,66 + 5589: -13,59 + 5590: -12,59 + 5591: -11,59 5592: -11,59 - 5593: -11,59 - 5702: 9,5 - 5703: 10,5 - 5713: 8,0 - 5714: 9,0 - 5744: 8,4 - 5819: -12,-6 - 5820: -11,-6 - 5854: -10,-2 - 5894: -10,-2 - 5929: -2,12 + 5701: 9,5 + 5702: 10,5 + 5712: 8,0 + 5713: 9,0 + 5743: 8,4 + 5818: -12,-6 + 5819: -11,-6 + 5853: -10,-2 + 5893: -10,-2 + 5928: -2,12 + 5929: -1,12 5930: -1,12 - 5931: -1,12 - 5932: 0,12 - 6076: -12,-18 - 6115: 17,-7 - 6126: 17,7 - 6171: -19,-22 - 6302: 17,-22 - 6371: 19,-14 - 6375: 13,-18 - 6549: -25,-9 + 5931: 0,12 + 6075: -12,-18 + 6114: 17,-7 + 6125: 17,7 + 6170: -19,-22 + 6301: 17,-22 + 6370: 19,-14 + 6374: 13,-18 + 6548: -25,-9 + 6549: -23,-9 6550: -23,-9 - 6551: -23,-9 - 6605: -24,-4 + 6604: -24,-4 + 6607: -24,-6 6608: -24,-6 - 6609: -24,-6 - 7205: 21,-8 - 7206: 23,-8 - 7236: 22,3 - 7265: 35,-1 - 7315: 30,8 - 7316: 31,8 - 7317: 32,8 - 7348: 34,4 - 7349: 36,4 - 7350: 37,4 - 7365: 36,7 - 7454: 47,10 - 7678: 42,18 - 7679: 41,18 - 7680: 40,18 - 7687: 35,19 - 8173: 34,-17 + 7204: 21,-8 + 7205: 23,-8 + 7235: 22,3 + 7264: 35,-1 + 7314: 30,8 + 7315: 31,8 + 7316: 32,8 + 7347: 34,4 + 7348: 36,4 + 7349: 37,4 + 7364: 36,7 + 7453: 47,10 + 7677: 42,18 + 7678: 41,18 + 7679: 40,18 + 7686: 35,19 + 8172: 34,-17 + 8173: 35,-17 8174: 35,-17 - 8175: 35,-17 + 8198: 35,-7 8199: 35,-7 - 8200: 35,-7 - 8470: 57,-17 + 8469: 57,-17 + 8470: 58,-17 8471: 58,-17 - 8472: 58,-17 + 8472: 59,-17 8473: 59,-17 - 8474: 59,-17 - 8475: 60,-17 - 8476: 61,-17 - 8520: 52,-26 - 8521: 52,-22 - 8729: -1,-37 - 8730: -1,-29 - 8731: -1,-22 - 8737: -1,-63 - 8738: -1,-57 - 8995: -16,-26 - 8996: -12,-27 - 8997: -11,-27 - 8998: -10,-27 - 8999: -9,-27 - 9000: -8,-27 - 9001: -4,-26 - 9031: 2,-26 - 9054: 6,-27 - 9055: 6,-27 - 9056: 7,-27 - 9057: 8,-27 - 9058: 9,-27 - 9059: 10,-27 - 9060: 10,-27 - 9130: -5,-66 - 9131: -4,-66 - 9132: -4,-66 - 9139: -1,-82 - 9418: -5,-68 - 9419: -4,-68 - 9668: 17,-37 - 9669: 27,-37 - 10238: 36,-31 - 10239: 36,-31 - 10405: 3,-53 - 10406: 4,-53 - 10407: 5,-53 - 10408: 6,-53 - 10409: 6,-53 - 10410: 7,-53 - 10411: 7,-53 - 10412: 8,-53 - 10413: 8,-53 - 10414: 9,-53 - 10415: 9,-53 - 10416: 11,-53 - 10432: 4,-48 - 10459: 12,-58 - 10461: 11,-62 - 10462: 12,-62 - 10463: 13,-62 - 10476: 10,-57 - 10574: 50,-56 - 10575: 50,-56 - 10678: 80,-47 - 10679: 81,-47 - 11219: -64,-48 - 11510: -19,-33 - 11511: -19,-33 - 11521: -23,-33 - 11522: -23,-33 - 11523: -14,-37 - 11524: -14,-37 - 11684: -14,-45 - 12352: -13,-67 - 12353: -14,-67 - 12354: -15,-67 - 12372: -16,-67 - 12373: -19,-67 - 12374: -20,-67 - 12375: -19,-67 - 12376: -18,-67 - 12396: -18,-76 - 12397: -17,-76 - 12398: -16,-76 - 12416: -17,-64 - 12430: -15,-82 - 12431: -14,-82 - 12437: -22,-82 - 12440: -21,-67 - 12528: -14,-77 - 12533: -13,-78 - 12534: -14,-78 - 12535: -15,-78 - 12536: -16,-78 - 12561: -23,-79 - 12563: -23,-77 - 12580: -23,-71 - 12590: -24,-63 - 12599: -24,-70 - 12739: 6,70 - 12740: -6,66 - 12741: -5,66 - 12742: -4,66 - 12743: -20,66 - 12744: -19,66 - 12745: -18,66 - 12746: -12,70 - 12747: -30,70 - 12775: -20,59 - 12776: -19,59 - 12777: -18,59 - 12778: -6,59 - 12779: -5,59 - 12780: -4,59 - 13351: -40,-68 - 13352: -39,-68 - 13529: -35,-76 - 13530: -34,-76 - 13531: -32,-76 - 13532: -32,-76 - 13533: -33,-76 - 13534: -31,-76 - 13563: -33,-79 - 14381: -60,20 - 14382: -59,20 - 14383: -58,20 - 14405: -65,13 - 14406: -64,13 - 14407: -64,13 - 14408: -62,13 - 14409: -63,13 - 14448: -19,21 - 14452: 17,21 - 15357: -42,3 - 15366: -42,7 - 15470: 58,-30 - 15471: 59,-30 - 15472: 60,-30 - 15580: 77,2 - 15581: 78,2 - 15582: 79,2 - 15583: 81,2 - 15584: 82,2 - 15585: 83,2 - 15586: 83,2 - 15587: 84,2 - 15588: 86,2 - 15589: 87,2 - 15590: 88,2 - 15591: 88,2 - 15637: 92,8 - 15708: 94,4 - 15709: 95,4 - 15833: 80,-5 - 15860: 88,-5 - 15861: 84,-5 - 16000: 92,15 - 16705: -57,-16 - 16706: -56,-16 - 16707: -55,-16 - 16708: -53,-11 - 16709: -53,-6 - 16710: -53,0 - 16711: -56,2 - 16712: -57,2 - 16757: -48,7 - 16765: -48,4 - 16766: -47,4 - 16767: -46,4 - 16917: -58,3 - 16918: -57,3 - 16921: -58,2 - 17090: -48,-12 - 17091: -47,-12 - 17092: -48,-18 - 17093: -47,-18 - 17130: -70,-9 - 17366: -70,-9 - 17675: -81,13 - 17676: -81,15 - 18078: -54,25 - 18079: -53,25 - 18295: -72,-6 - 18296: -71,-6 - 18297: -70,-6 - 18298: -69,-6 - 18299: -67,-6 - 18300: -66,-6 - 18301: -65,-6 - 18302: -64,-6 - 18303: -60,-7 - 18304: -59,-7 - 18305: -59,-7 - 18306: -58,-7 - 18350: -52,-38 - 18351: -51,-38 - 18352: -51,-38 - 18353: -50,-38 - 18354: -49,-38 - 18355: -49,-38 - 18521: 13,-11 - 18527: 13,-14 - 18537: 13,-14 - 18959: 69,3 - 18972: 69,10 - 19427: -13,26 - 19429: -11,27 - 19486: -11,27 - 19772: -8,-40 - 19773: -7,-40 - 19802: -30,-24 - 19803: -28,-24 - 20072: 65,27 - 20073: 66,27 - 20093: 63,28 - 21336: 20,14 - 21347: 24,16 - 21363: 23,12 - 21364: 24,12 - 21365: 25,12 - 21394: 24,13 + 8474: 60,-17 + 8475: 61,-17 + 8519: 52,-26 + 8520: 52,-22 + 8728: -1,-37 + 8729: -1,-29 + 8730: -1,-22 + 8736: -1,-63 + 8737: -1,-57 + 8990: -16,-26 + 8991: -12,-27 + 8992: -11,-27 + 8993: -10,-27 + 8994: -9,-27 + 8995: -8,-27 + 8996: -4,-26 + 9026: 2,-26 + 9048: 6,-27 + 9049: 6,-27 + 9050: 7,-27 + 9051: 8,-27 + 9052: 9,-27 + 9053: 10,-27 + 9054: 10,-27 + 9119: -5,-66 + 9120: -4,-66 + 9121: -4,-66 + 9128: -1,-82 + 9406: -5,-68 + 9407: -4,-68 + 9643: 17,-37 + 9644: 27,-37 + 10184: 36,-31 + 10185: 36,-31 + 10343: 3,-53 + 10344: 4,-53 + 10345: 5,-53 + 10346: 6,-53 + 10347: 6,-53 + 10348: 7,-53 + 10349: 7,-53 + 10350: 8,-53 + 10351: 8,-53 + 10352: 9,-53 + 10353: 9,-53 + 10354: 11,-53 + 10370: 4,-48 + 10397: 12,-58 + 10399: 11,-62 + 10400: 12,-62 + 10401: 13,-62 + 10414: 10,-57 + 10512: 50,-56 + 10513: 50,-56 + 10616: 80,-47 + 10617: 81,-47 + 11157: -64,-48 + 11448: -19,-33 + 11449: -19,-33 + 11459: -23,-33 + 11460: -23,-33 + 11461: -14,-37 + 11462: -14,-37 + 11622: -14,-45 + 12289: -13,-67 + 12290: -14,-67 + 12291: -15,-67 + 12309: -16,-67 + 12310: -19,-67 + 12311: -20,-67 + 12312: -19,-67 + 12313: -18,-67 + 12333: -18,-76 + 12334: -17,-76 + 12335: -16,-76 + 12353: -17,-64 + 12367: -15,-82 + 12368: -14,-82 + 12374: -22,-82 + 12377: -21,-67 + 12465: -14,-77 + 12470: -13,-78 + 12471: -14,-78 + 12472: -15,-78 + 12473: -16,-78 + 12498: -23,-79 + 12500: -23,-77 + 12517: -23,-71 + 12527: -24,-63 + 12536: -24,-70 + 12676: 6,70 + 12677: -6,66 + 12678: -5,66 + 12679: -4,66 + 12680: -20,66 + 12681: -19,66 + 12682: -18,66 + 12683: -12,70 + 12684: -30,70 + 12712: -20,59 + 12713: -19,59 + 12714: -18,59 + 12715: -6,59 + 12716: -5,59 + 12717: -4,59 + 13288: -40,-68 + 13289: -39,-68 + 13466: -35,-76 + 13467: -34,-76 + 13468: -32,-76 + 13469: -32,-76 + 13470: -33,-76 + 13471: -31,-76 + 13500: -33,-79 + 14318: -60,20 + 14319: -59,20 + 14320: -58,20 + 14342: -65,13 + 14343: -64,13 + 14344: -64,13 + 14345: -62,13 + 14346: -63,13 + 14385: -19,21 + 14389: 17,21 + 15294: -42,3 + 15303: -42,7 + 15407: 58,-30 + 15408: 59,-30 + 15409: 60,-30 + 15517: 77,2 + 15518: 78,2 + 15519: 79,2 + 15520: 81,2 + 15521: 82,2 + 15522: 83,2 + 15523: 83,2 + 15524: 84,2 + 15525: 86,2 + 15526: 87,2 + 15527: 88,2 + 15528: 88,2 + 15574: 92,8 + 15645: 94,4 + 15646: 95,4 + 15770: 80,-5 + 15797: 88,-5 + 15798: 84,-5 + 15937: 92,15 + 16642: -57,-16 + 16643: -56,-16 + 16644: -55,-16 + 16645: -53,-11 + 16646: -53,-6 + 16647: -53,0 + 16648: -56,2 + 16649: -57,2 + 16694: -48,7 + 16702: -48,4 + 16703: -47,4 + 16704: -46,4 + 16854: -58,3 + 16855: -57,3 + 16858: -58,2 + 17027: -48,-12 + 17028: -47,-12 + 17029: -48,-18 + 17030: -47,-18 + 17067: -70,-9 + 17303: -70,-9 + 17612: -81,13 + 17613: -81,15 + 18015: -54,25 + 18016: -53,25 + 18232: -72,-6 + 18233: -71,-6 + 18234: -70,-6 + 18235: -69,-6 + 18236: -67,-6 + 18237: -66,-6 + 18238: -65,-6 + 18239: -64,-6 + 18240: -60,-7 + 18241: -59,-7 + 18242: -59,-7 + 18243: -58,-7 + 18287: -52,-38 + 18288: -51,-38 + 18289: -51,-38 + 18290: -50,-38 + 18291: -49,-38 + 18292: -49,-38 + 18458: 13,-11 + 18464: 13,-14 + 18474: 13,-14 + 18896: 69,3 + 18909: 69,10 + 19363: -13,26 + 19365: -11,27 + 19422: -11,27 + 19708: -8,-40 + 19709: -7,-40 + 20008: 65,27 + 20009: 66,27 + 20029: 63,28 + 21268: 20,14 + 21279: 24,16 + 21295: 23,12 + 21296: 24,12 + 21297: 25,12 + 21326: 24,13 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 4045: -19,25 + 4044: -19,25 - node: color: '#00C9DAFF' id: BrickTileDarkLineW decals: - 8103: 32,-16 + 8102: 32,-16 - node: color: '#8CB7E8FF' id: BrickTileDarkLineW decals: - 4194: -9,16 - 4246: 9,14 - 4247: 11,14 - 4248: 11,15 - 4249: 2,16 - 4250: -5,14 - 4258: -11,14 - 4259: -11,15 - 4275: -6,17 - 4292: 2,14 - 4301: 12,14 - 4302: 12,15 - 4303: 15,14 - 4304: 15,15 - 21299: 16,16 - 21300: 16,13 - 21301: 16,12 - 21302: 16,17 + 4193: -9,16 + 4245: 9,14 + 4246: 11,14 + 4247: 11,15 + 4248: 2,16 + 4249: -5,14 + 4257: -11,14 + 4258: -11,15 + 4274: -6,17 + 4291: 2,14 + 4300: 12,14 + 4301: 12,15 + 4302: 15,14 + 4303: 15,15 + 21231: 16,16 + 21232: 16,13 + 21233: 16,12 + 21234: 16,17 - node: color: '#A9DA8BFF' id: BrickTileDarkLineW decals: - 2984: -27,54 + 2983: -27,54 - node: color: '#B18BDAFF' id: BrickTileDarkLineW decals: - 11738: -11,-43 - 11739: -11,-42 - 11740: -11,-42 - 11741: -11,-40 - 11742: -11,-40 - 11744: -3,-41 - 11745: -3,-40 - 12100: -23,-45 - 12101: -23,-46 - 12102: -23,-47 - 12118: -30,-47 - 12119: -30,-45 - 12623: -53,-30 - 12624: -53,-29 - 12625: -53,-27 - 12626: -53,-27 - 12627: -53,-26 - 12633: -49,-28 - 12966: -53,-28 + 11676: -11,-43 + 11677: -11,-42 + 11678: -11,-42 + 11679: -11,-40 + 11680: -11,-40 + 11682: -3,-41 + 11683: -3,-40 + 12038: -23,-45 + 12039: -23,-46 + 12040: -23,-47 + 12056: -30,-47 + 12057: -30,-45 + - node: + color: '#D381C9FF' + id: BrickTileDarkLineW + decals: + 24266: -44,-29 + 24267: -44,-28 + 24268: -44,-27 + 24269: -32,-29 + 24270: -32,-28 + 24271: -32,-27 + 24272: -48,-30 + 24273: -48,-29 + 24274: -48,-27 + 24275: -48,-26 + 24357: -31,-31 + 24358: -31,-30 - node: color: '#DA8B8BFF' id: BrickTileDarkLineW decals: - 3696: 4,60 - 3699: 4,60 - 3701: 4,64 - 7380: 49,1 - 7381: 49,0 - 7382: 49,-1 - 7393: 45,8 - 7394: 45,12 - 7403: 45,0 - 7467: 49,4 - 7470: 49,8 - 7498: 49,16 + 3695: 4,60 + 3698: 4,60 + 3700: 4,64 + 7379: 49,1 + 7380: 49,0 + 7381: 49,-1 + 7392: 45,8 + 7393: 45,12 + 7402: 45,0 + 7466: 49,4 + 7469: 49,8 + 7497: 49,16 + 7518: 58,19 7519: 58,19 - 7520: 58,19 - 7527: 55,17 - 7535: 48,22 - 7536: 48,23 - 7545: 60,25 - 7547: 49,12 - 7594: 55,-4 - 7595: 50,-4 - 7625: 56,4 - 7626: 56,5 - 7627: 61,12 - 7630: 61,12 + 7526: 55,17 + 7534: 48,22 + 7535: 48,23 + 7544: 60,25 + 7546: 49,12 + 7593: 55,-4 + 7594: 50,-4 + 7624: 56,4 + 7625: 56,5 + 7626: 61,12 + 7629: 61,12 + 7654: 77,22 7655: 77,22 - 7656: 77,22 - 7668: 75,9 - 7768: 68,1 - 7769: 68,-1 - 7836: 72,-4 - 9717: 15,-31 - 10534: 7,-65 - 10543: 7,-77 - 10544: 7,-75 - 15339: -45,9 - 15541: 72,2 - 15542: 72,0 - 15551: 75,1 - 18990: 72,7 - 18991: 72,8 - 18992: 72,9 - 18993: 72,9 - 18994: 72,10 - 18995: 72,11 - 18996: 72,12 - 18997: 72,14 - 18998: 72,15 - 18999: 72,16 - 19000: 72,17 - 19041: 43,0 - 19042: 46,2 - 19043: 46,1 - 19046: 68,1 - 19047: 68,-1 - 19048: 46,11 - 19049: 39,7 - 19064: 34,5 - 19072: 38,4 - 19073: 38,6 - 19083: 39,0 - 19086: 39,12 - 19087: 43,12 - 19088: 43,8 - 19125: 45,16 - 19126: 45,17 - 19127: 45,18 - 19128: 45,18 - 19129: 45,19 - 19130: 45,23 - 19131: 45,22 - 19132: 45,22 - 19133: 45,21 - 19146: 49,25 - 19147: 49,24 - 19148: 49,26 - 19149: 49,27 - 19150: 49,28 - 19166: 50,18 - 19167: 50,17 - 19177: 56,16 - 19178: 56,18 - 19195: 68,-4 - 19208: 72,22 - 19313: 50,5 - 19314: 50,6 - 19315: 50,7 - 19321: 69,0 - 19336: 71,1 - 19337: 71,-1 - 19362: -20,-27 - 19363: -20,-25 - 19370: -17,-24 - 19551: 54,27 - 19552: 54,26 - 19553: 54,25 - 19554: 54,25 - 19555: 54,24 - 19556: 54,24 - 19557: 54,23 - 19558: 54,22 - 19568: 57,22 - 19569: 57,22 - 19570: 57,23 - 19571: 57,24 - 19572: 57,25 - 19573: 57,25 - 19574: 57,26 - 19575: 57,27 - 19587: 49,29 - 19588: 49,30 - 19589: 49,31 - 19603: 58,29 - 19604: 58,30 + 7667: 75,9 + 7767: 68,1 + 7768: 68,-1 + 7835: 72,-4 + 9681: 15,-31 + 10472: 7,-65 + 10481: 7,-77 + 10482: 7,-75 + 15276: -45,9 + 15478: 72,2 + 15479: 72,0 + 15488: 75,1 + 18927: 72,7 + 18928: 72,8 + 18929: 72,9 + 18930: 72,9 + 18931: 72,10 + 18932: 72,11 + 18933: 72,12 + 18934: 72,14 + 18935: 72,15 + 18936: 72,16 + 18937: 72,17 + 18978: 43,0 + 18979: 46,2 + 18980: 46,1 + 18983: 68,1 + 18984: 68,-1 + 18985: 46,11 + 18986: 39,7 + 19001: 34,5 + 19009: 38,4 + 19010: 38,6 + 19020: 39,0 + 19023: 39,12 + 19024: 43,12 + 19025: 43,8 + 19062: 45,16 + 19063: 45,17 + 19064: 45,18 + 19065: 45,18 + 19066: 45,19 + 19067: 45,23 + 19068: 45,22 + 19069: 45,22 + 19070: 45,21 + 19083: 49,25 + 19084: 49,24 + 19085: 49,26 + 19086: 49,27 + 19087: 49,28 + 19103: 50,18 + 19104: 50,17 + 19114: 56,16 + 19115: 56,18 + 19132: 68,-4 + 19145: 72,22 + 19250: 50,5 + 19251: 50,6 + 19252: 50,7 + 19258: 69,0 + 19273: 71,1 + 19274: 71,-1 + 19299: -20,-27 + 19300: -20,-25 + 19307: -17,-24 + 19487: 54,27 + 19488: 54,26 + 19489: 54,25 + 19490: 54,25 + 19491: 54,24 + 19492: 54,24 + 19493: 54,23 + 19494: 54,22 + 19504: 57,22 + 19505: 57,22 + 19506: 57,23 + 19507: 57,24 + 19508: 57,25 + 19509: 57,25 + 19510: 57,26 + 19511: 57,27 + 19523: 49,29 + 19524: 49,30 + 19525: 49,31 + 19539: 58,29 + 19540: 58,30 - node: color: '#DE3A3AFF' id: BrickTileDarkLineW decals: - 20283: -24,0 - 20284: -24,1 + 20219: -24,0 + 20220: -24,1 - node: color: '#EFB341FF' id: BrickTileDarkLineW decals: - 17529: -61,9 - 17530: -61,8 - 17531: -61,7 - 17532: -61,6 - 17533: -61,5 - 17556: -61,10 - 17561: -66,10 - 17562: -66,9 - 17563: -66,8 - 17564: -66,8 - 17565: -66,7 - 17566: -66,6 - 17567: -66,5 - 17572: -60,6 - 17577: -60,10 - 17579: -60,6 - 17633: -74,7 - 17634: -74,6 - 17635: -74,5 - 17800: -56,6 - 17806: -60,6 - 17807: -60,10 - 18225: -73,0 - 18226: -73,-1 - 18227: -73,-2 + 17466: -61,9 + 17467: -61,8 + 17468: -61,7 + 17469: -61,6 + 17470: -61,5 + 17493: -61,10 + 17498: -66,10 + 17499: -66,9 + 17500: -66,8 + 17501: -66,8 + 17502: -66,7 + 17503: -66,6 + 17504: -66,5 + 17509: -60,6 + 17514: -60,10 + 17516: -60,6 + 17570: -74,7 + 17571: -74,6 + 17572: -74,5 + 17737: -56,6 + 17743: -60,6 + 17744: -60,10 + 18162: -73,0 + 18163: -73,-1 + 18164: -73,-2 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW decals: - 1983: -8,30 - 1984: -8,33 - 1985: -8,27 - 2011: -17,33 - 2012: -17,32 - 2013: -17,31 - 2014: -17,29 - 2015: -17,28 - 2016: -17,27 - 2329: -28,33 + 1982: -8,30 + 1983: -8,33 + 1984: -8,27 + 2010: -17,33 + 2011: -17,32 + 2012: -17,31 + 2013: -17,29 + 2014: -17,28 + 2015: -17,27 + 2328: -28,33 + 2329: -28,34 2330: -28,34 - 2331: -28,34 - 2332: -28,35 - 2333: -28,36 - 2334: -28,37 - 2515: -9,40 - 2516: -9,41 - 2517: -9,42 - 2521: -9,43 - 2522: -9,42 - 2523: -9,41 - 2524: -9,40 - 2525: -9,39 - 2526: -9,45 - 2527: -8,44 - 2528: -8,38 - 2529: -8,37 - 2605: -5,37 - 2610: -4,38 - 2611: -4,39 - 2626: -1,40 - 2670: 4,51 - 2671: 4,52 + 2331: -28,35 + 2332: -28,36 + 2333: -28,37 + 2514: -9,40 + 2515: -9,41 + 2516: -9,42 + 2520: -9,43 + 2521: -9,42 + 2522: -9,41 + 2523: -9,40 + 2524: -9,39 + 2525: -9,45 + 2526: -8,44 + 2527: -8,38 + 2528: -8,37 + 2604: -5,37 + 2609: -4,38 + 2610: -4,39 + 2625: -1,40 + 2669: 4,51 + 2670: 4,52 + 2671: 4,53 2672: 4,53 - 2673: 4,53 - 2683: -1,52 - 2684: -1,53 + 2682: -1,52 + 2683: -1,53 + 2684: -1,54 2685: -1,54 - 2686: -1,54 - 2716: -7,53 - 2721: -4,54 - 3135: -16,64 - 3136: -16,63 - 3137: -16,62 - 3138: -16,61 - 3150: -8,61 - 3151: -8,62 + 2715: -7,53 + 2720: -4,54 + 3134: -16,64 + 3135: -16,63 + 3136: -16,62 + 3137: -16,61 + 3149: -8,61 + 3150: -8,62 + 3151: -8,63 3152: -8,63 - 3153: -8,63 - 3154: -8,64 - 3194: -22,61 - 3195: -22,62 - 3196: -22,63 - 3197: -22,64 - 3209: -2,64 - 3210: -2,63 + 3153: -8,64 + 3193: -22,61 + 3194: -22,62 + 3195: -22,63 + 3196: -22,64 + 3208: -2,64 + 3209: -2,63 + 3210: -2,62 3211: -2,62 - 3212: -2,62 - 3213: -2,61 - 3218: -1,61 - 3434: -1,61 - 3689: 4,64 - 3691: 4,60 - 3898: 24,66 - 3982: -42,61 - 3983: -42,60 - 5231: -32,80 - 5232: -32,81 + 3212: -2,61 + 3217: -1,61 + 3433: -1,61 + 3688: 4,64 + 3690: 4,60 + 3897: 24,66 + 3981: -42,61 + 3982: -42,60 + 5230: -32,80 + 5231: -32,81 + 5232: -32,89 5233: -32,89 - 5234: -32,89 - 5235: -32,90 - 5236: -32,91 - 5249: -28,91 - 5250: -28,90 + 5234: -32,90 + 5235: -32,91 + 5248: -28,91 + 5249: -28,90 + 5250: -28,89 5251: -28,89 - 5252: -28,89 - 5253: -28,81 + 5252: -28,81 + 5253: -28,80 5254: -28,80 - 5255: -28,80 - 5313: -14,89 - 5314: -14,90 - 5315: -14,91 - 5319: -10,89 + 5312: -14,89 + 5313: -14,90 + 5314: -14,91 + 5318: -10,89 + 5319: -10,90 5320: -10,90 - 5321: -10,90 + 5321: -10,91 5322: -10,91 - 5323: -10,91 + 5331: -14,80 5332: -14,80 - 5333: -14,80 - 5334: -14,81 - 5337: -10,80 - 5338: -10,81 - 5342: 4,81 - 5343: 4,80 - 5344: 4,79 - 5628: -17,-20 - 5647: -7,9 - 5651: 5,9 - 5697: 7,6 - 5709: 7,2 - 5710: 7,1 - 5716: 12,1 - 5806: -16,-5 - 5809: -14,-5 - 5810: -13,-4 - 5934: -3,13 - 5950: -1,-6 - 5951: -1,-4 - 5952: -1,-3 + 5333: -14,81 + 5336: -10,80 + 5337: -10,81 + 5341: 4,81 + 5342: 4,80 + 5343: 4,79 + 5627: -17,-20 + 5646: -7,9 + 5650: 5,9 + 5696: 7,6 + 5708: 7,2 + 5709: 7,1 + 5715: 12,1 + 5805: -16,-5 + 5808: -14,-5 + 5809: -13,-4 + 5933: -3,13 + 5949: -1,-6 + 5950: -1,-4 + 5951: -1,-3 + 5952: -1,-2 5953: -1,-2 - 5954: -1,-2 - 5955: -1,0 + 5954: -1,0 + 5955: -1,1 5956: -1,1 - 5957: -1,1 - 5958: -1,2 - 5959: -1,4 + 5957: -1,2 + 5958: -1,4 + 5959: -1,5 5960: -1,5 - 5961: -1,5 - 5962: -1,6 - 6013: -8,-16 - 6014: -8,-12 - 6040: -14,-15 - 6041: -14,-14 - 6042: -14,-13 - 6043: -12,-15 - 6044: -12,-14 - 6045: -12,-13 - 6046: -16,-15 - 6047: -16,-14 - 6048: -16,-13 - 6049: -10,-15 - 6050: -10,-14 - 6051: -10,-13 - 6161: -3,-20 - 6162: 1,-20 - 6166: 15,-20 - 6557: -26,-7 - 6558: -26,-8 + 5961: -1,6 + 6012: -8,-16 + 6013: -8,-12 + 6039: -14,-15 + 6040: -14,-14 + 6041: -14,-13 + 6042: -12,-15 + 6043: -12,-14 + 6044: -12,-13 + 6045: -16,-15 + 6046: -16,-14 + 6047: -16,-13 + 6048: -10,-15 + 6049: -10,-14 + 6050: -10,-13 + 6160: -3,-20 + 6161: 1,-20 + 6165: 15,-20 + 6556: -26,-7 + 6557: -26,-8 + 6609: -23,-7 6610: -23,-7 - 6611: -23,-7 - 6833: -33,15 - 6834: -33,14 - 6835: -33,13 - 6836: -33,12 - 6837: -33,11 - 6838: -33,10 - 6839: -33,9 - 6854: -39,10 - 6855: -39,9 + 6832: -33,15 + 6833: -33,14 + 6834: -33,13 + 6835: -33,12 + 6836: -33,11 + 6837: -33,10 + 6838: -33,9 + 6853: -39,10 + 6854: -39,9 + 6855: -39,11 6856: -39,11 - 6857: -39,11 - 6858: -39,12 - 6859: -39,13 + 6857: -39,12 + 6858: -39,13 + 6859: -39,14 6860: -39,14 6861: -39,14 - 6862: -39,14 - 6863: -39,15 - 6864: -39,16 - 7021: 19,5 - 7035: 26,5 - 7074: 19,-11 - 7075: 26,-11 - 7219: 20,1 - 7220: 20,0 - 7221: 20,-1 - 7222: 20,-2 - 7223: 20,-4 - 7224: 20,-5 - 7225: 20,-6 - 7226: 20,-7 - 7239: 24,-8 - 7240: 24,-2 - 7266: 34,0 - 7281: 28,9 - 7307: 29,8 - 7308: 29,9 - 7309: 29,10 - 7356: 34,5 - 7363: 38,6 - 7364: 38,4 - 7378: 49,0 - 7682: 39,19 - 7683: 39,20 + 6862: -39,15 + 6863: -39,16 + 7020: 19,5 + 7034: 26,5 + 7073: 19,-11 + 7074: 26,-11 + 7218: 20,1 + 7219: 20,0 + 7220: 20,-1 + 7221: 20,-2 + 7222: 20,-4 + 7223: 20,-5 + 7224: 20,-6 + 7225: 20,-7 + 7238: 24,-8 + 7239: 24,-2 + 7265: 34,0 + 7280: 28,9 + 7306: 29,8 + 7307: 29,9 + 7308: 29,10 + 7355: 34,5 + 7362: 38,6 + 7363: 38,4 + 7377: 49,0 + 7681: 39,19 + 7682: 39,20 + 7683: 39,21 7684: 39,21 - 7685: 39,21 - 7686: 34,20 + 7685: 34,20 + 7698: 37,20 7699: 37,20 - 7700: 37,20 - 7701: 44,20 - 8184: 42,-11 + 7700: 44,20 + 8183: 42,-11 + 8184: 42,-15 8185: 42,-15 - 8186: 42,-15 - 8468: 57,-20 - 8469: 57,-21 + 8467: 57,-20 + 8468: 57,-21 + 8484: 62,-23 8485: 62,-23 - 8486: 62,-23 + 8486: 62,-22 8487: 62,-22 - 8488: 62,-22 - 8489: 62,-20 - 8490: 62,-19 - 8491: 62,-18 - 8492: 62,-21 + 8488: 62,-20 + 8489: 62,-19 + 8490: 62,-18 + 8491: 62,-21 + 8511: 51,-24 8512: 51,-24 - 8513: 51,-24 - 8514: 51,-25 - 8592: 64,-30 - 8593: 64,-11 - 8976: -7,-23 - 8977: -14,-23 - 8978: -15,-28 - 8979: -15,-27 - 8980: -7,-28 - 8981: 11,-23 - 8982: 4,-23 - 8983: 3,-28 - 8984: 3,-27 - 9076: 3,-28 - 9094: -7,-70 - 9095: -2,-70 - 9124: -8,-73 - 9125: -1,-73 - 9126: -1,-73 - 9673: 19,-35 - 10243: 35,-30 - 10275: 20,-52 - 10434: 2,-50 - 10435: 2,-52 - 10443: 10,-58 - 10444: 10,-59 - 10445: 10,-60 - 10446: 10,-60 - 10447: 10,-61 - 10449: 14,-60 - 10450: 14,-60 - 10482: 12,-61 - 10483: 12,-60 - 10484: 12,-59 - 10579: 49,-55 - 10674: 80,-44 - 10675: 80,-45 - 10676: 80,-45 - 10677: 80,-46 - 10693: 72,-39 - 10694: 72,-38 - 10754: 53,-55 - 10755: 53,-55 - 10756: 53,-54 - 10757: 53,-53 - 10769: 44,-55 - 10770: 44,-54 - 10771: 43,-51 - 10772: 43,-51 - 10773: 43,-52 - 10774: 43,-53 - 10775: 43,-54 - 10776: 43,-54 - 10777: 43,-55 - 10778: 43,-56 - 10779: 43,-51 - 10780: 43,-50 - 11295: -75,-35 - 11519: -21,-35 - 11700: -44,-28 - 11701: -32,-28 - 11702: -32,-28 - 12325: -21,-47 - 12355: -12,-67 - 12356: -12,-66 - 12363: -17,-73 - 12364: -17,-72 - 12365: -17,-71 - 12366: -17,-71 - 12367: -17,-70 - 12368: -17,-70 - 12369: -17,-69 - 12370: -17,-69 - 12371: -17,-68 - 12390: -19,-75 - 12391: -19,-76 - 12419: -16,-82 - 12420: -16,-81 - 12421: -16,-80 - 12439: -23,-81 - 12444: -12,-66 - 12445: -12,-67 - 12543: -17,-79 - 12547: -19,-81 - 12554: -24,-81 - 12564: -12,-78 - 12582: -24,-73 - 12583: -24,-74 - 12584: -24,-75 - 12588: -22,-66 - 12589: -22,-67 - 12593: -25,-65 - 12594: -25,-66 - 12595: -25,-67 - 12596: -25,-67 - 12597: -25,-68 - 12598: -25,-69 - 12672: -38,28 - 12673: -38,27 - 12682: -37,27 - 13349: -41,-67 - 13515: -37,-79 - 13516: -37,-74 - 13527: -30,-78 - 13528: -30,-77 - 13536: -35,-78 - 13537: -35,-77 - 13556: -35,-80 - 14440: -21,23 - 14441: -8,23 - 14442: 6,23 - 15369: -40,5 - 15474: 61,-31 - 15475: 61,-10 - 15485: 58,-27 - 15486: 60,-27 - 15495: 58,-14 - 15496: 60,-14 - 15550: 75,1 - 15603: 80,1 - 15604: 89,1 - 15615: 85,1 - 15683: 99,-3 - 15710: 97,2 - 15834: 79,-4 - 15835: 79,-3 - 15856: 83,-3 - 15857: 83,-4 - 15870: 94,10 - 16071: 87,-4 - 16072: 87,-3 - 16730: -55,1 - 16731: -52,-1 - 16732: -52,-2 - 16733: -52,-2 - 16734: -52,-3 - 16735: -52,-4 - 16736: -52,-7 - 16737: -52,-8 - 16738: -52,-9 - 16739: -52,-12 - 16740: -52,-13 - 16741: -52,-14 - 16742: -52,-15 - 16743: -54,-17 - 16762: -49,4 - 16763: -49,5 - 16776: -54,5 - 16777: -51,5 - 17100: -46,-13 - 17101: -46,-14 - 17102: -46,-15 - 17103: -46,-16 - 17104: -46,-17 - 17128: -74,-7 - 17296: -50,-8 - 17365: -74,-7 - 17682: -79,6 - 17683: -79,5 - 17684: -79,4 - 17693: -76,6 - 17694: -76,5 - 17695: -76,4 - 17718: -76,10 - 17719: -79,10 - 18045: -45,47 - 18061: -53,33 - 18062: -53,34 - 18063: -53,36 - 18064: -53,37 - 18068: -57,33 - 18071: -55,21 - 18076: -52,23 - 18077: -52,24 - 18118: -58,6 - 18323: -63,-7 - 18324: -68,-7 - 18325: -57,-8 - 18348: -53,-37 - 18443: -17,-9 - 18444: -17,-10 - 18476: 15,-9 - 18982: 57,8 - 18983: 59,8 - 18984: 61,8 - 18985: 63,8 - 19434: -14,33 - 19435: -14,32 - 19436: -15,30 - 19437: -14,28 - 19438: -14,27 - 19800: -31,-23 - 20098: 61,29 - 20111: -21,5 - 21338: 21,14 - 21339: 21,15 - 21343: 25,14 - 21344: 25,15 - 21359: 22,16 - 21360: 22,13 - 21399: 23,15 - 21400: 23,14 - 22639: -7,-28 - 22648: -15,-28 - 23133: 11,-28 + 8513: 51,-25 + 8591: 64,-30 + 8592: 64,-11 + 8973: -7,-23 + 8974: -14,-23 + 8975: -15,-28 + 8976: -15,-27 + 8977: -7,-28 + 8978: 11,-23 + 8979: 4,-23 + 8980: 3,-28 + 8981: 3,-27 + 9069: 3,-28 + 9083: -7,-70 + 9084: -2,-70 + 9113: -8,-73 + 9114: -1,-73 + 9115: -1,-73 + 9648: 19,-35 + 10189: 35,-30 + 10221: 20,-52 + 10372: 2,-50 + 10373: 2,-52 + 10381: 10,-58 + 10382: 10,-59 + 10383: 10,-60 + 10384: 10,-60 + 10385: 10,-61 + 10387: 14,-60 + 10388: 14,-60 + 10420: 12,-61 + 10421: 12,-60 + 10422: 12,-59 + 10517: 49,-55 + 10612: 80,-44 + 10613: 80,-45 + 10614: 80,-45 + 10615: 80,-46 + 10631: 72,-39 + 10632: 72,-38 + 10692: 53,-55 + 10693: 53,-55 + 10694: 53,-54 + 10695: 53,-53 + 10707: 44,-55 + 10708: 44,-54 + 10709: 43,-51 + 10710: 43,-51 + 10711: 43,-52 + 10712: 43,-53 + 10713: 43,-54 + 10714: 43,-54 + 10715: 43,-55 + 10716: 43,-56 + 10717: 43,-51 + 10718: 43,-50 + 11233: -75,-35 + 11457: -21,-35 + 12263: -21,-47 + 12292: -12,-67 + 12293: -12,-66 + 12300: -17,-73 + 12301: -17,-72 + 12302: -17,-71 + 12303: -17,-71 + 12304: -17,-70 + 12305: -17,-70 + 12306: -17,-69 + 12307: -17,-69 + 12308: -17,-68 + 12327: -19,-75 + 12328: -19,-76 + 12356: -16,-82 + 12357: -16,-81 + 12358: -16,-80 + 12376: -23,-81 + 12381: -12,-66 + 12382: -12,-67 + 12480: -17,-79 + 12484: -19,-81 + 12491: -24,-81 + 12501: -12,-78 + 12519: -24,-73 + 12520: -24,-74 + 12521: -24,-75 + 12525: -22,-66 + 12526: -22,-67 + 12530: -25,-65 + 12531: -25,-66 + 12532: -25,-67 + 12533: -25,-67 + 12534: -25,-68 + 12535: -25,-69 + 12609: -38,28 + 12610: -38,27 + 12619: -37,27 + 13286: -41,-67 + 13452: -37,-79 + 13453: -37,-74 + 13464: -30,-78 + 13465: -30,-77 + 13473: -35,-78 + 13474: -35,-77 + 13493: -35,-80 + 14377: -21,23 + 14378: -8,23 + 14379: 6,23 + 15306: -40,5 + 15411: 61,-31 + 15412: 61,-10 + 15422: 58,-27 + 15423: 60,-27 + 15432: 58,-14 + 15433: 60,-14 + 15487: 75,1 + 15540: 80,1 + 15541: 89,1 + 15552: 85,1 + 15620: 99,-3 + 15647: 97,2 + 15771: 79,-4 + 15772: 79,-3 + 15793: 83,-3 + 15794: 83,-4 + 15807: 94,10 + 16008: 87,-4 + 16009: 87,-3 + 16667: -55,1 + 16668: -52,-1 + 16669: -52,-2 + 16670: -52,-2 + 16671: -52,-3 + 16672: -52,-4 + 16673: -52,-7 + 16674: -52,-8 + 16675: -52,-9 + 16676: -52,-12 + 16677: -52,-13 + 16678: -52,-14 + 16679: -52,-15 + 16680: -54,-17 + 16699: -49,4 + 16700: -49,5 + 16713: -54,5 + 16714: -51,5 + 17037: -46,-13 + 17038: -46,-14 + 17039: -46,-15 + 17040: -46,-16 + 17041: -46,-17 + 17065: -74,-7 + 17233: -50,-8 + 17302: -74,-7 + 17619: -79,6 + 17620: -79,5 + 17621: -79,4 + 17630: -76,6 + 17631: -76,5 + 17632: -76,4 + 17655: -76,10 + 17656: -79,10 + 17982: -45,47 + 17998: -53,33 + 17999: -53,34 + 18000: -53,36 + 18001: -53,37 + 18005: -57,33 + 18008: -55,21 + 18013: -52,23 + 18014: -52,24 + 18055: -58,6 + 18260: -63,-7 + 18261: -68,-7 + 18262: -57,-8 + 18285: -53,-37 + 18380: -17,-9 + 18381: -17,-10 + 18413: 15,-9 + 18919: 57,8 + 18920: 59,8 + 18921: 61,8 + 18922: 63,8 + 19370: -14,33 + 19371: -14,32 + 19372: -15,30 + 19373: -14,28 + 19374: -14,27 + 20034: 61,29 + 20047: -21,5 + 21270: 21,14 + 21271: 21,15 + 21275: 25,14 + 21276: 25,15 + 21291: 22,16 + 21292: 22,13 + 21331: 23,15 + 21332: 23,14 + 22571: -7,-28 + 22580: -15,-28 + 23063: 11,-28 + 24262: -44,-28 + 24263: -32,-28 - node: color: '#DE3A3AFF' id: BrickTileSteelBox decals: - 20836: 55,9 + 20768: 55,9 - node: color: '#FFFFFFFF' id: BrickTileSteelBox decals: - 7643: 73,20 + 7642: 73,20 - node: color: '#00C9DAFF' id: BrickTileSteelCornerNe decals: - 8093: 31,-14 - 8094: 22,-14 + 8092: 31,-14 + 8093: 22,-14 - node: color: '#00FFFFFF' id: BrickTileSteelCornerNe decals: - 15754: 79,6 + 15691: 79,6 - node: color: '#52B4E9FF' id: BrickTileSteelCornerNe decals: - 23358: 24,-46 - 23779: 31,-23 - 23780: 32,-22 + 23285: 24,-46 + 23699: 31,-23 + 23700: 32,-22 - node: color: '#8BC9DAFF' id: BrickTileSteelCornerNe decals: - 3923: 21,63 + 3922: 21,63 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerNe decals: - 9775: 22,-31 - 10009: 32,-31 - 10010: 25,-31 - 10015: 26,-25 - 10039: 31,-23 - 10048: 32,-22 - 10127: 24,-46 - 10191: 34,-47 + 9738: 22,-31 + 9955: 32,-31 + 9956: 25,-31 + 9961: 26,-25 + 9985: 31,-23 + 9994: 32,-22 + 10073: 24,-46 + 10137: 34,-47 - node: color: '#B18BDAFF' id: BrickTileSteelCornerNe decals: - 11936: -26,-26 - 11954: -45,-25 - 11955: -41,-26 - 11956: -33,-26 - 11957: -37,-26 - 11958: -37,-26 - 12041: -45,-22 - 12141: -28,-38 - 12142: -23,-38 - 12315: -17,-38 - 16130: -62,-46 - 16131: -63,-45 - - node: - color: '#CEDA8BFF' - id: BrickTileSteelCornerNe - decals: - 10930: 32,-66 + 12079: -28,-38 + 12080: -23,-38 + 12253: -17,-38 + 16067: -62,-46 + 16068: -63,-45 - node: color: '#D381C9FF' id: BrickTileSteelCornerNe decals: - 22816: -17,-38 + 22748: -17,-38 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerNe decals: - 20285: -22,2 - 20337: 6,-80 - 20367: 6,-64 - 20368: 6,-74 - 20374: 10,-77 - 20375: 10,-74 - 20376: 9,-64 - 20404: 8,-58 - 20432: 14,-30 - 20475: 3,65 - 20485: 59,31 - 20486: 58,32 - 20493: 48,13 - 20505: 41,13 - 20525: 41,9 - 20537: 37,9 - 20540: 37,12 - 20580: 93,23 - 20581: 86,10 - 20582: 74,3 - 20588: 74,19 - 20615: 44,13 - 20759: 54,19 - 20760: 48,19 - 20761: 47,24 - 20817: 60,13 - 20905: 78,10 - 20980: 76,23 - 21022: 71,-3 - 21042: 48,-3 - 21052: 53,-3 - 21059: 58,-3 - 21080: 44,1 - 21090: 41,1 - 21133: 44,9 - 21161: 77,-2 - 21162: 74,-3 - 21371: 28,22 + 20221: -22,2 + 20273: 6,-80 + 20303: 6,-64 + 20304: 6,-74 + 20310: 10,-77 + 20311: 10,-74 + 20312: 9,-64 + 20340: 8,-58 + 20366: 14,-30 + 20407: 3,65 + 20417: 59,31 + 20418: 58,32 + 20425: 48,13 + 20437: 41,13 + 20457: 41,9 + 20469: 37,9 + 20472: 37,12 + 20512: 93,23 + 20513: 86,10 + 20514: 74,3 + 20520: 74,19 + 20547: 44,13 + 20691: 54,19 + 20692: 48,19 + 20693: 47,24 + 20749: 60,13 + 20837: 78,10 + 20912: 76,23 + 20954: 71,-3 + 20974: 48,-3 + 20984: 53,-3 + 20991: 58,-3 + 21012: 44,1 + 21022: 41,1 + 21065: 44,9 + 21093: 77,-2 + 21094: 74,-3 + 21303: 28,22 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNe decals: - 2214: -17,53 - 2234: -15,52 - 2349: -28,38 - 2394: -33,38 - 2782: -2,46 - 2796: -5,28 - 2817: -26,43 - 3460: -28,92 - 3469: -29,96 - 3478: -28,82 - 3489: -11,96 - 3503: -10,92 - 3511: -10,82 - 3551: 8,69 - 3771: 3,58 - 4150: -23,23 - 5128: 36,32 - 6327: 4,-14 - 6395: 14,-15 - 6807: -35,16 - 6808: -34,15 - 6899: -35,19 - 6916: -22,15 - 7057: 24,10 - 7140: 31,2 - 7154: 31,-7 - 8633: 63,-10 - 8637: 57,-10 + 2213: -17,53 + 2233: -15,52 + 2348: -28,38 + 2393: -33,38 + 2781: -2,46 + 2795: -5,28 + 2816: -26,43 + 3459: -28,92 + 3468: -29,96 + 3477: -28,82 + 3488: -11,96 + 3502: -10,92 + 3510: -10,82 + 3550: 8,69 + 3770: 3,58 + 4149: -23,23 + 5127: 36,32 + 6326: 4,-14 + 6394: 14,-15 + 6806: -35,16 + 6807: -34,15 + 6898: -35,19 + 6915: -22,15 + 7056: 24,10 + 7139: 31,2 + 7153: 31,-7 + 8632: 63,-10 + 8636: 57,-10 + 8859: 1,-34 8860: 1,-34 - 8861: 1,-34 - 9147: 2,-64 - 9148: 2,-64 - 9287: 1,-58 - 9288: 1,-58 - 9426: -39,-14 - 10581: 56,-43 - 10582: 56,-43 - 10626: 49,-38 - 10627: 49,-38 - 11233: -58,-34 - 11279: -77,-19 - 11280: -77,-26 - 11801: -37,-51 - 11802: -37,-55 - 11837: -23,-50 - 11852: -33,-52 - 11853: -33,-52 - 13392: -36,-60 - 15326: -8,-69 - 15767: 89,2 - 16421: -39,-6 - 16685: -55,-12 - 16810: -49,-1 - 17490: 7,85 - 17496: 8,82 - 18430: -9,-12 - 18431: -9,-12 - 18432: -9,-12 - 18505: 10,-12 - 24032: -28,-11 + 9136: 2,-64 + 9137: 2,-64 + 9276: 1,-58 + 9277: 1,-58 + 9414: -39,-14 + 10519: 56,-43 + 10520: 56,-43 + 10564: 49,-38 + 10565: 49,-38 + 11171: -58,-34 + 11217: -77,-19 + 11218: -77,-26 + 11739: -37,-51 + 11740: -37,-55 + 11775: -23,-50 + 11790: -33,-52 + 11791: -33,-52 + 13329: -36,-60 + 15263: -8,-69 + 15704: 89,2 + 16358: -39,-6 + 16622: -55,-12 + 16747: -49,-1 + 17427: 7,85 + 17433: 8,82 + 18367: -9,-12 + 18368: -9,-12 + 18369: -9,-12 + 18442: 10,-12 + 23951: -28,-11 - node: color: '#00C9DAFF' id: BrickTileSteelCornerNw decals: - 8091: 20,-14 - 8092: 24,-14 + 8090: 20,-14 + 8091: 24,-14 - node: color: '#00FFFFFF' id: BrickTileSteelCornerNw decals: - 3740: -28,65 + 3739: -28,65 - node: color: '#52B4E9FF' id: BrickTileSteelCornerNw decals: - 23363: 20,-46 - 23778: 29,-23 - 23781: 28,-22 + 23290: 20,-46 + 23698: 29,-23 + 23701: 28,-22 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerNw decals: - 9776: 20,-31 - 10008: 31,-31 - 10012: 24,-31 - 10016: 24,-25 - 10040: 29,-23 - 10053: 28,-22 - 10126: 20,-46 - 10190: 32,-47 + 9739: 20,-31 + 9954: 31,-31 + 9958: 24,-31 + 9962: 24,-25 + 9986: 29,-23 + 9999: 28,-22 + 10072: 20,-46 + 10136: 32,-47 - node: color: '#B18BDAFF' id: BrickTileSteelCornerNw decals: - 11941: -31,-26 - 11966: -43,-26 - 11967: -43,-26 - 11968: -35,-26 - 12000: -39,-26 - 12042: -47,-22 - 12143: -30,-38 - 12144: -26,-38 - 12316: -21,-38 - 16132: -65,-45 - - node: - color: '#CEDA8BFF' - id: BrickTileSteelCornerNw - decals: - 10929: 26,-66 + 12081: -30,-38 + 12082: -26,-38 + 12254: -21,-38 + 16069: -65,-45 - node: color: '#D381C9FF' id: BrickTileSteelCornerNw decals: - 22815: -21,-38 + 22747: -21,-38 - node: color: '#DA8B8BFF' id: BrickTileSteelCornerNw decals: - 7817: 68,6 + 7816: 68,6 - node: color: '#DA8BC9FF' id: BrickTileSteelCornerNw decals: - 3928: 18,63 + 3927: 18,63 - node: color: '#DAA58BFF' id: BrickTileSteelCornerNw decals: - 4554: 13,39 + 4553: 13,39 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerNw decals: - 20292: -24,2 - 20336: 4,-80 - 20365: 4,-74 - 20366: 4,-64 - 20391: 8,-74 - 20412: 3,-58 - 20416: 8,-64 - 20435: 10,-30 - 20455: 12,32 - 20476: 0,65 - 20487: 50,32 - 20488: 49,31 - 20489: 45,24 - 20506: 39,13 - 20526: 39,9 - 20538: 35,9 - 20539: 35,12 - 20583: 72,3 - 20587: 72,19 - 20611: 46,13 - 20612: 43,13 - 20649: 91,23 - 20650: 81,14 - 20651: 80,10 - 20652: 76,10 - 20653: 72,23 - 20758: 50,19 - 20790: 56,19 - 20816: 50,13 - 20839: 50,9 - 21025: 68,-3 - 21057: 50,-3 - 21058: 55,-3 - 21081: 43,1 - 21082: 39,1 - 21132: 43,9 - 21163: 73,-3 - 21164: 76,-2 - 21194: -20,-24 - 21210: 45,-3 - 21228: 46,-7 - 21374: 20,22 - 23121: -20,-24 + 20228: -24,2 + 20272: 4,-80 + 20301: 4,-74 + 20302: 4,-64 + 20327: 8,-74 + 20348: 3,-58 + 20352: 8,-64 + 20369: 10,-30 + 20387: 12,32 + 20408: 0,65 + 20419: 50,32 + 20420: 49,31 + 20421: 45,24 + 20438: 39,13 + 20458: 39,9 + 20470: 35,9 + 20471: 35,12 + 20515: 72,3 + 20519: 72,19 + 20543: 46,13 + 20544: 43,13 + 20581: 91,23 + 20582: 81,14 + 20583: 80,10 + 20584: 76,10 + 20585: 72,23 + 20690: 50,19 + 20722: 56,19 + 20748: 50,13 + 20771: 50,9 + 20957: 68,-3 + 20989: 50,-3 + 20990: 55,-3 + 21013: 43,1 + 21014: 39,1 + 21064: 43,9 + 21095: 73,-3 + 21096: 76,-2 + 21126: -20,-24 + 21142: 45,-3 + 21160: 46,-7 + 21306: 20,22 + 23053: -20,-24 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 2212: -23,52 - 2213: -21,53 - 2257: -24,45 - 2315: -28,39 - 2378: -30,33 - 2393: -34,38 - 2753: -3,51 - 2783: -5,46 - 2798: -7,28 - 3314: -32,69 - 3422: -32,92 - 3423: -32,82 - 3470: -31,96 - 3490: -13,96 - 3504: -14,92 - 3512: -14,82 - 3653: 4,82 - 5109: 29,32 - 5549: -21,-15 - 5786: 7,-4 - 6246: -6,-14 + 2211: -23,52 + 2212: -21,53 + 2256: -24,45 + 2314: -28,39 + 2377: -30,33 + 2392: -34,38 + 2752: -3,51 + 2782: -5,46 + 2797: -7,28 + 3313: -32,69 + 3421: -32,92 + 3422: -32,82 + 3469: -31,96 + 3489: -13,96 + 3503: -14,92 + 3511: -14,82 + 3652: 4,82 + 5108: 29,32 + 5548: -21,-15 + 5785: 7,-4 + 6245: -6,-14 + 6395: 12,-15 6396: 12,-15 - 6397: 12,-15 - 6798: -44,21 + 6797: -44,21 + 6808: -37,16 6809: -37,16 - 6810: -37,16 - 6811: -38,15 - 6887: -37,16 - 6900: -37,19 + 6810: -38,15 + 6886: -37,16 + 6899: -37,19 + 6923: -29,15 6924: -29,15 - 6925: -29,15 - 7058: 20,10 - 7135: 25,2 - 7146: 25,-7 - 7296: 28,12 - 8338: 38,-19 - 8636: 61,-10 - 8642: 55,-10 - 8862: -3,-34 - 9289: -3,-58 - 9290: -3,-58 - 9304: -3,-58 - 9618: -11,-64 - 10580: 54,-43 - 10624: 43,-38 - 10625: 43,-38 - 11278: -78,-19 - 11286: -78,-26 - 11287: -78,-23 - 11800: -42,-51 - 11807: -39,-55 - 11836: -26,-50 - 11854: -35,-52 - 11855: -35,-52 - 13393: -38,-60 - 14371: -45,15 - 15327: -1,-69 - 15562: 76,2 - 16423: -40,-6 - 16657: -61,-12 - 16784: -61,-1 - 16812: -51,-1 - 17491: 5,85 - 18502: 6,-12 - 20062: 61,26 - 24031: -35,-11 + 7057: 20,10 + 7134: 25,2 + 7145: 25,-7 + 7295: 28,12 + 8337: 38,-19 + 8635: 61,-10 + 8641: 55,-10 + 8861: -3,-34 + 9278: -3,-58 + 9279: -3,-58 + 9293: -3,-58 + 9594: -11,-64 + 10518: 54,-43 + 10562: 43,-38 + 10563: 43,-38 + 11216: -78,-19 + 11224: -78,-26 + 11225: -78,-23 + 11738: -42,-51 + 11745: -39,-55 + 11774: -26,-50 + 11792: -35,-52 + 11793: -35,-52 + 13330: -38,-60 + 14308: -45,15 + 15264: -1,-69 + 15499: 76,2 + 16360: -40,-6 + 16594: -61,-12 + 16721: -61,-1 + 16749: -51,-1 + 17428: 5,85 + 18439: 6,-12 + 19998: 61,26 + 23950: -35,-11 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelCornerNw decals: - 916: 28,1 + 915: 28,1 - node: color: '#00C9DAFF' id: BrickTileSteelCornerSe decals: - 8095: 22,-16 + 8094: 22,-16 - node: color: '#00FFFFFF' id: BrickTileSteelCornerSe decals: - 15741: 79,4 + 15678: 79,4 - node: color: '#52B4E9FF' id: BrickTileSteelCornerSe decals: - 23370: 24,-49 + 23297: 24,-49 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerSe decals: - 9778: 22,-32 - 10006: 32,-32 - 10007: 32,-32 - 10013: 25,-32 - 10027: 26,-26 - 10136: 24,-49 - 10193: 34,-53 + 9741: 22,-32 + 9952: 32,-32 + 9953: 32,-32 + 9959: 25,-32 + 9973: 26,-26 + 10082: 24,-49 + 10139: 34,-53 - node: color: '#B18BDAFF' id: BrickTileSteelCornerSe decals: - 11928: -26,-32 - 11962: -33,-30 - 11963: -37,-30 - 11964: -41,-30 - 11965: -45,-31 - 12043: -45,-23 - 12076: -24,-47 - 12145: -28,-42 - 12146: -23,-42 - - node: - color: '#CEDA8BFF' - id: BrickTileSteelCornerSe - decals: - 10928: 32,-70 + 11900: -33,-30 + 12014: -24,-47 + 12083: -28,-42 + 12084: -23,-42 - node: color: '#D381C9FF' id: BrickTileSteelCornerSe decals: - 22776: -17,-44 + 22708: -17,-44 - node: color: '#DA8B8BFF' id: BrickTileSteelCornerSe decals: - 7775: 59,3 - 7776: 63,3 - 7777: 67,3 - 7796: 70,5 - 19247: 67,4 + 7774: 59,3 + 7775: 63,3 + 7776: 67,3 + 7795: 70,5 + 19184: 67,4 - node: color: '#DA8BC9FF' id: BrickTileSteelCornerSe decals: - 3952: 21,61 + 3951: 21,61 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerSe decals: - 20287: -22,0 - 20298: -46,8 - 20342: 6,-82 - 20343: 10,-78 - 20344: 10,-75 - 20345: 6,-72 - 20346: 9,-66 - 20347: 8,-62 - 20348: 6,-78 - 20434: 14,-32 - 20456: 13,30 - 20490: 48,15 - 20507: 41,11 - 20541: 37,11 - 20592: 76,21 - 20613: 44,11 - 20647: 86,9 - 20648: 93,12 - 20709: 59,21 - 20788: 57,15 - 20801: 54,15 - 20818: 60,11 - 20837: 55,3 - 20904: 78,8 - 20933: 74,-1 - 20934: 74,5 - 21031: 71,-5 - 21043: 48,-5 - 21061: 53,-5 - 21062: 58,-5 - 21076: 44,-1 - 21079: 41,-1 - 21131: 44,7 - 21169: 74,-5 - 21176: 77,-4 - 21196: -18,-28 - 21225: 51,-9 - 21373: 28,21 + 20223: -22,0 + 20234: -46,8 + 20278: 6,-82 + 20279: 10,-78 + 20280: 10,-75 + 20281: 6,-72 + 20282: 9,-66 + 20283: 8,-62 + 20284: 6,-78 + 20368: 14,-32 + 20388: 13,30 + 20422: 48,15 + 20439: 41,11 + 20473: 37,11 + 20524: 76,21 + 20545: 44,11 + 20579: 86,9 + 20580: 93,12 + 20641: 59,21 + 20720: 57,15 + 20733: 54,15 + 20750: 60,11 + 20769: 55,3 + 20836: 78,8 + 20865: 74,-1 + 20866: 74,5 + 20963: 71,-5 + 20975: 48,-5 + 20993: 53,-5 + 20994: 58,-5 + 21008: 44,-1 + 21011: 41,-1 + 21063: 44,7 + 21101: 74,-5 + 21108: 77,-4 + 21128: -18,-28 + 21157: 51,-9 + 21305: 28,21 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 2233: -17,55 - 2317: -25,29 - 2391: -33,32 - 2786: -2,44 - 2797: -5,26 - 3474: -28,88 - 3482: -28,79 - 3499: -10,88 - 3516: -10,79 - 3775: 3,56 - 5780: 14,-6 - 6065: -9,-17 - 6306: 18,-21 - 6324: 4,-17 - 6360: 10,-17 - 6805: -35,8 - 6806: -34,9 - 6898: -35,18 - 6915: -22,8 - 7054: 24,8 - 7157: 31,-8 - 7159: 31,-6 - 8602: 57,-31 + 2232: -17,55 + 2316: -25,29 + 2390: -33,32 + 2785: -2,44 + 2796: -5,26 + 3473: -28,88 + 3481: -28,79 + 3498: -10,88 + 3515: -10,79 + 3774: 3,56 + 5779: 14,-6 + 6064: -9,-17 + 6305: 18,-21 + 6323: 4,-17 + 6359: 10,-17 + 6804: -35,8 + 6805: -34,9 + 6897: -35,18 + 6914: -22,8 + 7053: 24,8 + 7156: 31,-8 + 7158: 31,-6 + 8601: 57,-31 + 8610: 63,-31 8611: 63,-31 - 8612: 63,-31 - 8857: 1,-36 - 9157: -8,-66 - 9221: -3,-82 - 9283: 1,-62 - 9284: 1,-62 - 10584: 56,-44 - 10621: 49,-45 - 11231: -58,-39 - 11232: -58,-39 - 11271: -77,-32 - 11288: -77,-24 - 11803: -37,-56 - 11804: -37,-56 - 11822: -41,-56 - 11846: -23,-54 - 11857: -33,-54 - 15324: -8,-71 - 16420: 8,67 - 16422: -39,-7 - 16681: -55,-15 - 16813: -49,-4 - 17507: 8,74 - 19999: -16,-1 - 20055: 70,21 + 8856: 1,-36 + 9146: -8,-66 + 9210: -3,-82 + 9272: 1,-62 + 9273: 1,-62 + 10522: 56,-44 + 10559: 49,-45 + 11169: -58,-39 + 11170: -58,-39 + 11209: -77,-32 + 11226: -77,-24 + 11741: -37,-56 + 11742: -37,-56 + 11760: -41,-56 + 11784: -23,-54 + 11795: -33,-54 + 15261: -8,-71 + 16357: 8,67 + 16359: -39,-7 + 16618: -55,-15 + 16750: -49,-4 + 17444: 8,74 + 19935: -16,-1 + 19991: 70,21 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelCornerSe decals: - 920: 30,1 + 919: 30,1 - node: color: '#00C9DAFF' id: BrickTileSteelCornerSw decals: - 8089: 20,-16 - 8090: 24,-18 + 8088: 20,-16 + 8089: 24,-18 - node: color: '#00FFFFFF' id: BrickTileSteelCornerSw decals: - 3749: -26,59 - 10648: 69,-50 - 10649: 69,-50 + 3748: -26,59 + 10586: 69,-50 + 10587: 69,-50 - node: color: '#52B4E9FF' id: BrickTileSteelCornerSw decals: - 23362: 20,-49 + 23289: 20,-49 - node: color: '#8BC9DAFF' id: BrickTileSteelCornerSw decals: - 3925: 18,62 + 3924: 18,62 - node: color: '#8CB7E8FF' id: BrickTileSteelCornerSw decals: - 9777: 20,-32 - 10005: 31,-32 - 10011: 24,-32 - 10026: 24,-26 - 10137: 20,-49 - 10192: 32,-53 - 19343: 5,62 + 9740: 20,-32 + 9951: 31,-32 + 9957: 24,-32 + 9972: 24,-26 + 10083: 20,-49 + 10138: 32,-53 + 19280: 5,62 - node: color: '#B18BDAFF' id: BrickTileSteelCornerSw decals: - 11946: -31,-32 - 11959: -43,-30 - 11960: -39,-30 - 11961: -35,-30 - 12075: -29,-47 - 12147: -26,-42 - 12148: -30,-42 - 16125: -66,-48 - - node: - color: '#CEDA8BFF' - id: BrickTileSteelCornerSw - decals: - 10927: 26,-70 + 12013: -29,-47 + 12085: -26,-42 + 12086: -30,-42 + 16062: -66,-48 - node: color: '#D381C9FF' id: BrickTileSteelCornerSw decals: - 22798: -21,-44 + 22730: -21,-44 - node: color: '#DA8B8BFF' id: BrickTileSteelCornerSw decals: - 7772: 57,3 - 7773: 61,3 - 7774: 65,3 + 7771: 57,3 + 7772: 61,3 + 7773: 65,3 - node: color: '#DA8BC9FF' id: BrickTileSteelCornerSw decals: - 3927: 19,61 + 3926: 19,61 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerSw decals: - 20369: 4,-78 - 20370: 4,-72 - 20371: 3,-62 - 20372: 8,-66 - 20373: 8,-78 - 20433: 10,-32 - 20477: 0,60 - 20491: 45,15 - 20492: 39,3 - 20508: 39,11 - 20542: 35,11 - 20543: 35,8 - 20614: 43,11 - 20700: 49,21 - 20789: 56,15 - 20802: 50,15 - 20803: 50,11 - 20838: 50,3 - 20892: 81,12 - 20903: 76,8 - 20932: 72,5 - 20971: 72,21 - 21021: 68,-5 - 21053: 50,-5 - 21054: 55,-5 - 21070: 46,-1 - 21077: 43,-1 - 21078: 39,-1 - 21130: 43,7 - 21168: 73,-5 - 21195: -20,-28 - 21209: 45,-5 - 21226: 46,-9 - 21372: 20,21 + 20305: 4,-78 + 20306: 4,-72 + 20307: 3,-62 + 20308: 8,-66 + 20309: 8,-78 + 20367: 10,-32 + 20409: 0,60 + 20423: 45,15 + 20424: 39,3 + 20440: 39,11 + 20474: 35,11 + 20475: 35,8 + 20546: 43,11 + 20632: 49,21 + 20721: 56,15 + 20734: 50,15 + 20735: 50,11 + 20770: 50,3 + 20824: 81,12 + 20835: 76,8 + 20864: 72,5 + 20903: 72,21 + 20953: 68,-5 + 20985: 50,-5 + 20986: 55,-5 + 21002: 46,-1 + 21009: 43,-1 + 21010: 39,-1 + 21062: 43,7 + 21100: 73,-5 + 21127: -20,-28 + 21141: 45,-5 + 21158: 46,-9 + 21304: 20,21 - node: color: '#FFFFFFFF' id: BrickTileSteelCornerSw decals: - 2261: -24,40 - 2290: -23,28 - 2318: -27,29 - 2379: -30,37 - 2392: -34,32 - 2784: -5,45 - 2785: -4,44 - 2799: -7,26 - 3313: -32,67 - 3475: -32,88 - 3481: -32,79 - 3506: -14,88 - 3513: -14,79 - 3656: 4,79 - 5116: 29,30 - 5550: -21,-18 - 5784: 7,-6 - 6250: -6,-17 + 2260: -24,40 + 2289: -23,28 + 2317: -27,29 + 2378: -30,37 + 2391: -34,32 + 2783: -5,45 + 2784: -4,44 + 2798: -7,26 + 3312: -32,67 + 3474: -32,88 + 3480: -32,79 + 3505: -14,88 + 3512: -14,79 + 3655: 4,79 + 5115: 29,30 + 5549: -21,-18 + 5783: 7,-6 + 6249: -6,-17 + 6362: 6,-17 6363: 6,-17 - 6364: 6,-17 - 6428: -20,-21 - 6799: -44,8 - 6803: -37,8 - 6804: -38,9 - 6901: -37,18 - 6936: -29,8 - 7053: 20,8 - 8351: 38,-21 + 6427: -20,-21 + 6798: -44,8 + 6802: -37,8 + 6803: -38,9 + 6900: -37,18 + 6935: -29,8 + 7052: 20,8 + 8350: 38,-21 + 8599: 55,-31 8600: 55,-31 - 8601: 55,-31 - 8609: 61,-31 + 8608: 61,-31 + 8857: -3,-36 8858: -3,-36 - 8859: -3,-36 - 9156: -1,-66 - 9215: -9,-82 - 9222: 1,-82 - 9223: 1,-82 - 9279: -3,-62 - 9433: -42,-18 - 10622: 43,-45 - 10623: 43,-45 - 11221: -60,-39 - 11272: -78,-32 - 11273: -78,-28 - 11274: -78,-24 - 11275: -78,-21 - 11821: -42,-56 - 11835: -26,-54 - 11856: -35,-54 - 14375: -45,11 - 15325: -1,-71 - 15361: -43,4 - 15563: 76,0 - 16424: -40,-7 - 16668: -61,-15 - 16787: -61,-4 - 20054: 61,21 - 24030: -35,-16 + 9145: -1,-66 + 9204: -9,-82 + 9211: 1,-82 + 9212: 1,-82 + 9268: -3,-62 + 9421: -42,-18 + 10560: 43,-45 + 10561: 43,-45 + 11159: -60,-39 + 11210: -78,-32 + 11211: -78,-28 + 11212: -78,-24 + 11213: -78,-21 + 11759: -42,-56 + 11773: -26,-54 + 11794: -35,-54 + 14312: -45,11 + 15262: -1,-71 + 15298: -43,4 + 15500: 76,0 + 16361: -40,-7 + 16605: -61,-15 + 16724: -61,-4 + 19990: 61,21 + 23949: -35,-16 - node: color: '#00FFFFFF' id: BrickTileSteelEndE decals: - 3733: -24,65 - 3762: -24,59 - 3763: -24,61 - 3764: -24,63 - 10219: 38,-26 - - node: - color: '#CEDA8BFF' - id: BrickTileSteelEndE - decals: - 10843: 45,-64 - 10909: 42,-75 - 10910: 39,-75 + 3732: -24,65 + 3761: -24,59 + 3762: -24,61 + 3763: -24,63 + 10165: 38,-26 - node: color: '#DA8B8BFF' id: BrickTileSteelEndE decals: - 19271: 70,9 + 19208: 70,9 - node: color: '#DE3A3AFF' id: BrickTileSteelEndE decals: - 20987: 76,25 + 20919: 76,25 - node: color: '#FFFFFFFF' id: BrickTileSteelEndE decals: - 7302: 33,12 + 7301: 33,12 - node: color: '#00FFFFFF' id: BrickTileSteelEndN decals: - 10647: 69,-49 + 10585: 69,-49 - node: color: '#A9DA8BFF' id: BrickTileSteelEndN decals: - 2987: -39,50 - 3003: -39,46 + 2986: -39,50 + 3002: -39,46 - node: color: '#DA8B8BFF' id: BrickTileSteelEndN decals: - 19269: 58,9 - 19270: 66,9 + 19206: 58,9 + 19207: 66,9 - node: color: '#00C9DAFF' id: BrickTileSteelEndS decals: - 8107: 27,-18 - 8108: 29,-18 + 8106: 27,-18 + 8107: 29,-18 + 8108: 31,-18 8109: 31,-18 - 8110: 31,-18 - node: color: '#A9DA8BFF' id: BrickTileSteelEndS decals: - 2988: -39,48 - 3008: -39,45 + 2987: -39,48 + 3007: -39,45 - node: color: '#B18BDAFF' id: BrickTileSteelEndS decals: - 12285: -21,-44 - 12286: -17,-44 + 12223: -21,-44 + 12224: -17,-44 - node: color: '#FFFFFFFF' id: BrickTileSteelEndS decals: - 7287: 28,8 - 12519: -21,-78 + 7286: 28,8 + 12456: -21,-78 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelEndS decals: - 908: 28,-8 + 907: 28,-8 - node: color: '#00FFFFFF' id: BrickTileSteelEndW decals: - 10227: 34,-26 - 10349: 12,-47 - 15742: 76,6 - 15743: 76,4 + 10173: 34,-26 + 10291: 12,-47 + 15679: 76,6 + 15680: 76,4 - node: color: '#B18BDAFF' id: BrickTileSteelEndW decals: - 16123: -67,-46 - - node: - color: '#CEDA8BFF' - id: BrickTileSteelEndW - decals: - 10911: 38,-75 - 10912: 41,-75 + 16060: -67,-46 - node: color: '#DA8B8BFF' id: BrickTileSteelEndW decals: - 19272: 68,9 + 19209: 68,9 - node: color: '#DE3A3AFF' id: BrickTileSteelEndW decals: - 20988: 74,25 + 20920: 74,25 - node: color: '#FFFFFFFF' id: BrickTileSteelEndW decals: - 2350: -28,39 + 2349: -28,39 + 6060: -16,-17 6061: -16,-17 - 6062: -16,-17 - 12520: -19,-78 - 18429: -16,-12 + 12457: -19,-78 + 18366: -16,-12 - node: color: '#00C9DAFF' id: BrickTileSteelInnerNe decals: - 8124: 25,-14 + 8123: 25,-14 + 8126: 22,-15 8127: 22,-15 - 8128: 22,-15 - 8140: 31,-16 + 8139: 31,-16 - node: color: '#00FFFFFF' id: BrickTileSteelInnerNe decals: - 3744: -25,65 - 3750: -26,59 - 3751: -26,61 - 3752: -26,63 - 10223: 37,-26 - 10650: 69,-50 + 3743: -25,65 + 3749: -26,59 + 3750: -26,61 + 3751: -26,63 + 10169: 37,-26 + 10588: 69,-50 - node: color: '#52B4E9FF' id: BrickTileSteelInnerNe decals: - 23790: 32,-23 + 23710: 32,-23 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerNe decals: - 10054: 32,-23 + 10000: 32,-23 - node: color: '#B18BDAFF' id: BrickTileSteelInnerNe decals: - 11980: -42,-26 - 11981: -38,-26 - 11982: -38,-26 - 11983: -34,-26 - 11984: -34,-26 - 11999: -37,-27 - 12002: -41,-27 - 12008: -37,-27 - 12010: -37,-27 - 12011: -33,-27 - 12023: -45,-27 - 12026: -46,-25 - 12091: -29,-44 - 12160: -29,-38 - 12161: -24,-38 - 12321: -17,-40 - 16136: -63,-46 - 16137: -62,-48 - 19769: -6,-41 - 19784: -6,-40 - 19792: -29,-26 - - node: - color: '#CEDA8BFF' - id: BrickTileSteelInnerNe - decals: - 10946: 32,-68 + 11949: -33,-27 + 12029: -29,-44 + 12098: -29,-38 + 12099: -24,-38 + 12259: -17,-40 + 16073: -63,-46 + 16074: -62,-48 + 19705: -6,-41 + 19720: -6,-40 - node: color: '#D381C9FF' id: BrickTileSteelInnerNe decals: - 22767: -17,-40 + 22699: -17,-40 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerNe decals: - 7820: 66,5 - 7821: 69,6 - 7830: 58,5 - 7831: 62,5 + 7819: 66,5 + 7820: 69,6 + 7829: 58,5 + 7830: 62,5 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerNe decals: - 20291: -23,2 - 20339: 5,-80 - 20349: 6,-77 - 20350: 6,-75 - 20354: 6,-65 - 20355: 5,-64 - 20406: 7,-58 - 20425: 5,-74 - 20438: 11,-30 - 20445: 14,-31 - 20448: 13,-30 - 20470: 3,64 - 20482: 3,60 - 20529: 40,9 - 20598: 74,9 - 20607: 48,12 - 20608: 47,13 - 20609: 47,13 - 20618: 44,12 - 20632: 48,8 - 20679: 58,31 - 20680: 59,25 - 20725: 51,21 - 20726: 54,21 - 20727: 50,28 - 20728: 55,28 - 20776: 48,16 - 20777: 47,19 - 20781: 47,23 - 20793: 57,19 - 20797: 54,17 - 20813: 52,19 - 20821: 60,12 - 20825: 51,13 - 20834: 48,4 - 20866: 93,21 - 20874: 93,13 - 20897: 83,10 - 20909: 78,9 - 20970: 73,19 - 20979: 76,22 - 20982: 75,23 - 20983: 75,25 - 20992: 93,17 - 20996: 92,23 - 20999: 73,3 - 21000: 74,1 - 21015: 70,-1 - 21019: 67,-1 - 21028: 69,-3 - 21032: 71,-4 - 21041: 47,-3 - 21065: 52,-3 - 21085: 44,0 - 21086: 40,1 - 21112: 36,6 - 21114: 37,4 - 21121: 36,9 - 21123: 37,8 - 21127: 44,8 - 21135: 53,9 - 21137: 55,5 - 21171: 74,-4 - 21238: 56,-3 - 21241: 48,1 - 21267: 58,1 - 21268: 62,1 - 21269: 66,1 - 21377: 21,22 - 21977: 10,30 - 21981: 10,29 - 22571: 32,6 - 22574: 32,4 - 23229: 12,-34 - 23232: 11,-34 - 23899: 2,58 - 23903: 0,58 - 24064: 1,-60 - 24067: 1,-62 - 24068: 2,-69 - 24069: 2,-66 - 24070: 2,-75 - 24071: 2,-78 + 20227: -23,2 + 20275: 5,-80 + 20285: 6,-77 + 20286: 6,-75 + 20290: 6,-65 + 20291: 5,-64 + 20342: 7,-58 + 20361: 5,-74 + 20372: 11,-30 + 20378: 14,-31 + 20381: 13,-30 + 20402: 3,64 + 20414: 3,60 + 20461: 40,9 + 20530: 74,9 + 20539: 48,12 + 20540: 47,13 + 20541: 47,13 + 20550: 44,12 + 20564: 48,8 + 20611: 58,31 + 20612: 59,25 + 20657: 51,21 + 20658: 54,21 + 20659: 50,28 + 20660: 55,28 + 20708: 48,16 + 20709: 47,19 + 20713: 47,23 + 20725: 57,19 + 20729: 54,17 + 20745: 52,19 + 20753: 60,12 + 20757: 51,13 + 20766: 48,4 + 20798: 93,21 + 20806: 93,13 + 20829: 83,10 + 20841: 78,9 + 20902: 73,19 + 20911: 76,22 + 20914: 75,23 + 20915: 75,25 + 20924: 93,17 + 20928: 92,23 + 20931: 73,3 + 20932: 74,1 + 20947: 70,-1 + 20951: 67,-1 + 20960: 69,-3 + 20964: 71,-4 + 20973: 47,-3 + 20997: 52,-3 + 21017: 44,0 + 21018: 40,1 + 21044: 36,6 + 21046: 37,4 + 21053: 36,9 + 21055: 37,8 + 21059: 44,8 + 21067: 53,9 + 21069: 55,5 + 21103: 74,-4 + 21170: 56,-3 + 21173: 48,1 + 21199: 58,1 + 21200: 62,1 + 21201: 66,1 + 21309: 21,22 + 21909: 10,30 + 21913: 10,29 + 22503: 32,6 + 22506: 32,4 + 23157: 12,-34 + 23160: 11,-34 + 23818: 2,58 + 23822: 0,58 + 23983: 1,-60 + 23986: 1,-62 + 23987: 2,-69 + 23988: 2,-66 + 23989: 2,-75 + 23990: 2,-78 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNe decals: + 2218: -18,53 2219: -18,53 - 2220: -18,53 - 2240: -17,52 - 2243: -15,50 - 2244: -15,48 - 2248: -15,46 - 2352: -29,38 - 2757: -3,48 - 2758: -6,50 - 2759: -12,50 - 2794: -4,46 - 2822: -30,43 - 2828: -26,41 - 2833: -32,43 - 3062: -17,58 - 3411: -11,69 - 3440: -3,58 - 3456: -29,69 - 3457: -29,77 - 3458: -29,84 - 3461: -29,92 - 3472: -30,96 - 3477: -29,82 - 3492: -12,96 - 3493: -11,92 - 3494: -11,84 - 3495: -11,77 - 3510: -11,82 - 3553: 8,68 - 3635: 7,69 - 3770: 2,58 - 3777: 3,57 - 5106: 31,28 - 5130: 36,30 - 5422: 18,-3 - 5436: -25,6 - 5465: -31,6 - 5473: -42,23 - 5529: -18,-1 - 5604: 11,-8 - 5614: -18,-8 - 5637: 8,-8 - 5774: 12,-4 - 5797: -1,-8 - 5798: -10,-8 - 6085: -11,-19 - 6111: 18,-10 - 6158: -18,-19 - 6256: -4,-16 - 6263: -4,-19 - 6307: 18,-20 - 6330: 2,-14 - 6368: 10,-16 - 6386: 14,-19 - 6401: 8,-19 + 2239: -17,52 + 2242: -15,50 + 2243: -15,48 + 2247: -15,46 + 2351: -29,38 + 2756: -3,48 + 2757: -6,50 + 2758: -12,50 + 2793: -4,46 + 2821: -30,43 + 2827: -26,41 + 2832: -32,43 + 3061: -17,58 + 3410: -11,69 + 3439: -3,58 + 3455: -29,69 + 3456: -29,77 + 3457: -29,84 + 3460: -29,92 + 3471: -30,96 + 3476: -29,82 + 3491: -12,96 + 3492: -11,92 + 3493: -11,84 + 3494: -11,77 + 3509: -11,82 + 3552: 8,68 + 3634: 7,69 + 3769: 2,58 + 3776: 3,57 + 5105: 31,28 + 5129: 36,30 + 5421: 18,-3 + 5435: -25,6 + 5464: -31,6 + 5472: -42,23 + 5528: -18,-1 + 5603: 11,-8 + 5613: -18,-8 + 5636: 8,-8 + 5773: 12,-4 + 5796: -1,-8 + 5797: -10,-8 + 6084: -11,-19 + 6110: 18,-10 + 6157: -18,-19 + 6255: -4,-16 + 6262: -4,-19 + 6306: 18,-20 + 6329: 2,-14 + 6367: 10,-16 + 6385: 14,-19 + 6400: 8,-19 + 6788: -36,6 6789: -36,6 - 6790: -36,6 - 6889: -36,16 - 6891: -35,15 - 6919: -26,15 - 6923: -27,15 - 6943: -22,12 - 7016: 18,12 - 7017: 18,18 - 7020: 18,6 - 7062: 22,10 - 7063: 22,6 - 7114: 22,-10 - 7141: 31,1 - 7201: 29,6 - 7993: 81,-22 - 8243: 31,-12 + 6888: -36,16 + 6890: -35,15 + 6918: -26,15 + 6922: -27,15 + 6942: -22,12 + 7015: 18,12 + 7016: 18,18 + 7019: 18,6 + 7061: 22,10 + 7062: 22,6 + 7113: 22,-10 + 7140: 31,1 + 7200: 29,6 + 7992: 81,-22 + 8242: 31,-12 + 8277: 41,-8 8278: 41,-8 - 8279: 41,-8 - 8290: 33,-8 - 8333: 39,-19 + 8289: 33,-8 + 8332: 39,-19 + 8333: 41,-19 8334: 41,-19 - 8335: 41,-19 - 8357: 41,-21 - 8392: 47,-19 + 8356: 41,-21 + 8391: 47,-19 + 8412: 52,-19 8413: 52,-19 - 8414: 52,-19 - 8420: 53,-21 - 8466: 56,-20 - 8646: 60,-31 - 8647: 63,-22 - 8648: 63,-19 - 8821: 0,-25 - 8864: 0,-34 - 8927: -8,-28 - 8930: -4,-27 - 8939: -15,-23 - 8940: -15,-23 - 8941: -8,-23 - 8942: -8,-23 - 8961: -16,-27 - 9145: 0,-64 - 9146: 0,-64 - 9153: 2,-66 - 9154: 2,-66 - 9192: -10,-64 - 9264: -9,-69 - 9265: -9,-69 - 9266: -9,-75 - 9302: 0,-58 - 9434: -39,-16 - 9551: 1,-35 - 9611: 0,-39 - 10555: 2,-75 - 10568: 1,-60 - 10641: 49,-42 - 11234: -59,-34 - 11239: -59,-41 - 11240: -59,-41 - 11283: -77,-31 - 11403: -15,-30 - 11825: -37,-53 - 11839: -24,-50 - 11840: -24,-50 - 13385: -37,-60 - 14916: 16,24 - 14919: 8,24 - 14920: 5,24 - 14923: 0,24 - 14924: -9,24 - 14936: -18,24 - 15371: -41,6 - 15758: 78,2 - 16662: -58,-12 - 16749: -58,-6 - 16809: -52,2 - 16824: -57,-9 - 16825: -57,-7 - 17493: 6,85 - 17497: 7,82 - 17499: 8,81 - 17504: 8,76 - 18440: -14,-12 - 18441: -10,-12 - 18507: 8,-12 - 19880: -24,13 - 20067: 67,26 - 20068: 62,26 - 20275: -18,4 - 20278: -18,-1 - 21327: 18,15 - 24009: -32,1 - 24010: -32,-2 - 24011: -24,-2 - 24041: -32,-11 - 24046: -35,-16 + 8419: 53,-21 + 8465: 56,-20 + 8645: 60,-31 + 8646: 63,-22 + 8647: 63,-19 + 8820: 0,-25 + 8863: 0,-34 + 8925: -8,-28 + 8928: -4,-27 + 8937: -15,-23 + 8938: -15,-23 + 8939: -8,-23 + 8940: -8,-23 + 8958: -16,-27 + 9134: 0,-64 + 9135: 0,-64 + 9142: 2,-66 + 9143: 2,-66 + 9181: -10,-64 + 9253: -9,-69 + 9254: -9,-69 + 9255: -9,-75 + 9291: 0,-58 + 9422: -39,-16 + 9527: 1,-35 + 9587: 0,-39 + 10493: 2,-75 + 10506: 1,-60 + 10579: 49,-42 + 11172: -59,-34 + 11177: -59,-41 + 11178: -59,-41 + 11221: -77,-31 + 11341: -15,-30 + 11763: -37,-53 + 11777: -24,-50 + 11778: -24,-50 + 13322: -37,-60 + 14853: 16,24 + 14856: 8,24 + 14857: 5,24 + 14860: 0,24 + 14861: -9,24 + 14873: -18,24 + 15308: -41,6 + 15695: 78,2 + 16599: -58,-12 + 16686: -58,-6 + 16746: -52,2 + 16761: -57,-9 + 16762: -57,-7 + 17430: 6,85 + 17434: 7,82 + 17436: 8,81 + 17441: 8,76 + 18377: -14,-12 + 18378: -10,-12 + 18444: 8,-12 + 19816: -24,13 + 20003: 67,26 + 20004: 62,26 + 20211: -18,4 + 20214: -18,-1 + 21259: 18,15 + 23928: -32,1 + 23929: -32,-2 + 23930: -24,-2 + 23960: -32,-11 + 23965: -35,-16 - node: color: '#00C9DAFF' id: BrickTileSteelInnerNw decals: - 8123: 25,-14 - 8126: 24,-15 + 8122: 25,-14 + 8125: 24,-15 - node: color: '#00FFFFFF' id: BrickTileSteelInnerNw decals: - 3743: -25,65 - 10222: 37,-26 - 15749: 77,4 + 3742: -25,65 + 10168: 37,-26 + 15686: 77,4 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerNw decals: - 10188: 32,-51 - 10189: 32,-49 - 18418: 17,-31 + 10134: 32,-51 + 10135: 32,-49 + 18355: 17,-31 - node: color: '#B18BDAFF' id: BrickTileSteelInnerNw decals: - 11939: -29,-26 - 11940: -29,-26 - 11952: -31,-27 - 11953: -31,-27 - 11977: -42,-26 - 11978: -38,-26 - 11979: -38,-26 - 11997: -39,-27 - 11998: -35,-27 - 12007: -43,-27 - 12016: -34,-26 - 12025: -46,-25 - 12038: -48,-28 - 12040: -48,-31 - 12044: -47,-23 - 12092: -24,-44 - 12153: -30,-39 - 12158: -29,-38 - 12159: -24,-38 - 16135: -65,-46 - 19768: -9,-41 - 19783: -9,-40 + 12030: -24,-44 + 12091: -30,-39 + 12096: -29,-38 + 12097: -24,-38 + 16072: -65,-46 + 19704: -9,-41 + 19719: -9,-40 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerNw decals: - 7818: 69,6 - 7819: 66,5 - 7828: 58,5 - 7829: 62,5 - 19296: 68,5 + 7817: 69,6 + 7818: 66,5 + 7827: 58,5 + 7828: 62,5 + 19233: 68,5 - node: color: '#DAA58BFF' id: BrickTileSteelInnerNw decals: - 4368: 7,31 - 4582: 13,36 + 4367: 7,31 + 4581: 13,36 - node: color: '#DABC8BFF' id: BrickTileSteelInnerNw decals: - 9597: 5,-32 + 9573: 5,-32 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerNw decals: - 20290: -23,2 - 20338: 5,-80 - 20356: 5,-64 - 20363: 4,-66 - 20364: 4,-75 - 20393: 8,-75 - 20405: 7,-58 - 20407: 3,-60 - 20418: 8,-65 - 20419: 8,-65 - 20424: 5,-74 - 20437: 11,-30 - 20447: 13,-30 - 20458: 12,30 - 20459: 13,32 - 20468: 0,61 - 20528: 40,9 - 20530: 39,8 - 20584: 73,3 - 20610: 47,13 - 20623: 46,12 - 20633: 46,8 - 20690: 50,31 - 20698: 49,23 - 20723: 54,21 - 20724: 57,21 - 20729: 53,28 - 20730: 58,28 - 20778: 45,20 - 20792: 57,19 - 20796: 56,17 - 20811: 50,16 - 20812: 52,19 - 20822: 50,12 - 20824: 51,13 - 20865: 91,21 - 20873: 91,14 - 20895: 83,10 - 20898: 80,9 - 20908: 76,9 - 20936: 72,-1 - 20960: 71,13 - 20961: 72,13 - 20968: 72,18 - 20969: 73,19 - 20981: 75,23 - 20984: 75,25 - 20994: 91,21 - 20995: 92,23 - 20997: 72,6 - 21003: 72,1 - 21018: 69,-1 - 21029: 69,-3 - 21040: 47,-3 - 21064: 52,-3 - 21073: 46,0 - 21087: 40,1 - 21109: 34,4 - 21110: 36,6 - 21115: 39,4 - 21118: 39,6 - 21120: 36,9 - 21134: 53,9 - 21147: 50,8 - 21152: 50,4 - 21166: 73,-4 - 21179: 76,-4 - 21198: -20,-26 - 21217: 51,-7 - 21229: 46,-8 - 21239: 56,-3 - 21240: 46,5 - 21264: 58,1 - 21265: 62,1 - 21266: 66,1 - 21376: 21,22 - 21628: -44,9 - 23125: -16,-25 - 23127: -16,-24 - 23167: 16,-31 - 23226: 16,-32 - 23228: 12,-34 - 23231: 13,-34 - 23900: 2,58 + 20226: -23,2 + 20274: 5,-80 + 20292: 5,-64 + 20299: 4,-66 + 20300: 4,-75 + 20329: 8,-75 + 20341: 7,-58 + 20343: 3,-60 + 20354: 8,-65 + 20355: 8,-65 + 20360: 5,-74 + 20371: 11,-30 + 20380: 13,-30 + 20390: 12,30 + 20391: 13,32 + 20400: 0,61 + 20460: 40,9 + 20462: 39,8 + 20516: 73,3 + 20542: 47,13 + 20555: 46,12 + 20565: 46,8 + 20622: 50,31 + 20630: 49,23 + 20655: 54,21 + 20656: 57,21 + 20661: 53,28 + 20662: 58,28 + 20710: 45,20 + 20724: 57,19 + 20728: 56,17 + 20743: 50,16 + 20744: 52,19 + 20754: 50,12 + 20756: 51,13 + 20797: 91,21 + 20805: 91,14 + 20827: 83,10 + 20830: 80,9 + 20840: 76,9 + 20868: 72,-1 + 20892: 71,13 + 20893: 72,13 + 20900: 72,18 + 20901: 73,19 + 20913: 75,23 + 20916: 75,25 + 20926: 91,21 + 20927: 92,23 + 20929: 72,6 + 20935: 72,1 + 20950: 69,-1 + 20961: 69,-3 + 20972: 47,-3 + 20996: 52,-3 + 21005: 46,0 + 21019: 40,1 + 21041: 34,4 + 21042: 36,6 + 21047: 39,4 + 21050: 39,6 + 21052: 36,9 + 21066: 53,9 + 21079: 50,8 + 21084: 50,4 + 21098: 73,-4 + 21111: 76,-4 + 21130: -20,-26 + 21149: 51,-7 + 21161: 46,-8 + 21171: 56,-3 + 21172: 46,5 + 21196: 58,1 + 21197: 62,1 + 21198: 66,1 + 21308: 21,22 + 21560: -44,9 + 23057: -16,-25 + 23059: -16,-24 + 23096: 16,-31 + 23154: 16,-32 + 23156: 12,-34 + 23159: 13,-34 + 23819: 2,58 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 2221: -20,53 + 2220: -20,53 + 2237: -21,52 2238: -21,52 - 2239: -21,52 - 2253: -23,51 - 2256: -23,48 - 2274: -24,41 - 2275: -23,45 - 2322: -27,30 - 2731: -13,48 - 2764: -6,50 - 2765: -12,50 - 2793: -4,46 - 2801: -7,27 - 2821: -30,43 - 3076: -7,58 - 3316: -31,69 - 3370: -13,69 - 3462: -31,92 - 3463: -31,84 - 3464: -31,77 - 3471: -30,96 - 3476: -31,82 - 3491: -12,96 - 3507: -13,92 - 3508: -13,84 - 3509: -13,82 - 3514: -13,77 - 3550: 5,69 - 3561: -21,55 - 3638: 5,84 - 3654: 5,82 - 3657: 5,77 - 3772: 2,58 - 5105: 31,28 - 5356: 16,-8 - 5420: 16,-4 - 5464: -31,6 - 5472: -42,23 - 5548: -20,-15 - 5603: 10,-8 - 5638: 8,-8 - 5773: 12,-4 - 5796: -1,-8 - 5799: -10,-8 - 6066: -15,-17 - 6084: -13,-19 - 6253: -4,-14 - 6262: -4,-19 - 6291: 16,-19 - 6385: 12,-19 - 6392: 12,-16 - 6402: 8,-19 - 6431: -20,-20 - 6777: -36,6 + 2252: -23,51 + 2255: -23,48 + 2273: -24,41 + 2274: -23,45 + 2321: -27,30 + 2730: -13,48 + 2763: -6,50 + 2764: -12,50 + 2792: -4,46 + 2800: -7,27 + 2820: -30,43 + 3075: -7,58 + 3315: -31,69 + 3369: -13,69 + 3461: -31,92 + 3462: -31,84 + 3463: -31,77 + 3470: -30,96 + 3475: -31,82 + 3490: -12,96 + 3506: -13,92 + 3507: -13,84 + 3508: -13,82 + 3513: -13,77 + 3549: 5,69 + 3560: -21,55 + 3637: 5,84 + 3653: 5,82 + 3656: 5,77 + 3771: 2,58 + 5104: 31,28 + 5355: 16,-8 + 5419: 16,-4 + 5463: -31,6 + 5471: -42,23 + 5547: -20,-15 + 5602: 10,-8 + 5637: 8,-8 + 5772: 12,-4 + 5795: -1,-8 + 5798: -10,-8 + 6065: -15,-17 + 6083: -13,-19 + 6252: -4,-14 + 6261: -4,-19 + 6290: 16,-19 + 6384: 12,-19 + 6391: 12,-16 + 6401: 8,-19 + 6430: -20,-20 + 6776: -36,6 + 6777: -26,6 6778: -26,6 - 6779: -26,6 - 6780: -20,12 - 6888: -36,16 - 6890: -37,15 - 6918: -26,15 - 6922: -25,15 - 6926: -28,15 + 6779: -20,12 + 6887: -36,16 + 6889: -37,15 + 6917: -26,15 + 6921: -25,15 + 6925: -28,15 + 6950: -21,-16 6951: -21,-16 - 6952: -21,-16 - 7061: 22,10 - 7064: 22,6 - 7113: 22,-10 - 7147: 25,-8 - 7200: 29,6 - 7303: 28,11 - 7994: 79,-22 - 8153: 33,-12 + 7060: 22,10 + 7063: 22,6 + 7112: 22,-10 + 7146: 25,-8 + 7199: 29,6 + 7302: 28,11 + 7993: 79,-22 + 8152: 33,-12 + 8153: 33,-10 8154: 33,-10 - 8155: 33,-10 - 8166: 33,-16 - 8332: 39,-19 - 8336: 41,-19 - 8359: 43,-21 - 8398: 46,-19 - 8412: 52,-19 - 8452: 55,-19 - 8455: 55,-21 - 8564: 55,-29 - 8565: 55,-11 - 8645: 58,-31 - 8818: -2,-25 - 8863: -2,-34 - 8928: -12,-28 - 8929: -4,-27 - 8935: -16,-23 - 8936: -16,-23 - 8943: -12,-23 - 8944: -12,-23 - 8945: -5,-23 - 8946: -5,-23 - 8960: -16,-27 - 9144: -2,-64 - 9191: -10,-64 - 9206: -11,-78 - 9207: -11,-78 - 9267: 0,-69 - 9268: 0,-75 - 9269: -5,-75 - 9292: -3,-60 - 9303: -2,-58 - 9616: -11,-66 - 10640: 43,-42 - 11236: -59,-34 - 11237: -59,-41 - 11238: -59,-41 - 11242: -60,-36 - 11246: -60,-43 - 11284: -78,-27 - 11376: -2,-40 - 11404: -13,-30 - 11838: -24,-50 - 11850: -26,-52 - 12722: -23,39 - 12846: -3,50 - 13384: -37,-60 - 14370: -44,15 - 14917: 14,24 - 14918: 7,24 - 14921: 4,24 - 14922: 0,24 - 14925: -9,24 - 14929: -20,24 - 15757: 78,2 - 15794: 76,1 - 16661: -58,-12 - 16748: -58,-6 - 16808: -53,2 - 16826: -55,-7 - 16827: -61,-7 - 17492: 6,85 - 18438: -14,-12 - 18439: -10,-12 - 18506: 8,-12 - 19513: -43,21 - 19879: -27,13 - 20000: -16,-1 - 20060: 61,25 - 20061: 54,32 - 20063: 62,26 - 20064: 64,26 - 20183: -20,6 - 20192: -20,-2 - 20272: -20,17 - 20273: -20,20 - 24012: -24,-2 - 24039: -30,-16 - 24040: -33,-11 + 8165: 33,-16 + 8331: 39,-19 + 8335: 41,-19 + 8358: 43,-21 + 8397: 46,-19 + 8411: 52,-19 + 8451: 55,-19 + 8454: 55,-21 + 8563: 55,-29 + 8564: 55,-11 + 8644: 58,-31 + 8817: -2,-25 + 8862: -2,-34 + 8926: -12,-28 + 8927: -4,-27 + 8933: -16,-23 + 8934: -16,-23 + 8941: -12,-23 + 8942: -12,-23 + 8943: -5,-23 + 8944: -5,-23 + 8957: -16,-27 + 9133: -2,-64 + 9180: -10,-64 + 9195: -11,-78 + 9196: -11,-78 + 9256: 0,-69 + 9257: 0,-75 + 9258: -5,-75 + 9281: -3,-60 + 9292: -2,-58 + 9592: -11,-66 + 10578: 43,-42 + 11174: -59,-34 + 11175: -59,-41 + 11176: -59,-41 + 11180: -60,-36 + 11184: -60,-43 + 11222: -78,-27 + 11314: -2,-40 + 11342: -13,-30 + 11776: -24,-50 + 11788: -26,-52 + 12659: -23,39 + 12783: -3,50 + 13321: -37,-60 + 14307: -44,15 + 14854: 14,24 + 14855: 7,24 + 14858: 4,24 + 14859: 0,24 + 14862: -9,24 + 14866: -20,24 + 15694: 78,2 + 15731: 76,1 + 16598: -58,-12 + 16685: -58,-6 + 16745: -53,2 + 16763: -55,-7 + 16764: -61,-7 + 17429: 6,85 + 18375: -14,-12 + 18376: -10,-12 + 18443: 8,-12 + 19449: -43,21 + 19815: -27,13 + 19936: -16,-1 + 19996: 61,25 + 19997: 54,32 + 19999: 62,26 + 20000: 64,26 + 20119: -20,6 + 20128: -20,-2 + 20208: -20,17 + 20209: -20,20 + 23931: -24,-2 + 23958: -30,-16 + 23959: -33,-11 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelInnerNw decals: - 4106: -20,20 - 4109: -20,17 + 4105: -20,20 + 4108: -20,17 - node: color: '#00C9DAFF' id: BrickTileSteelInnerSe decals: - 8120: 25,-16 - 8121: 27,-16 - 8122: 29,-16 + 8119: 25,-16 + 8120: 27,-16 + 8121: 29,-16 + 8128: 22,-15 8129: 22,-15 - 8130: 22,-15 - 8138: 31,-16 + 8137: 31,-16 - node: color: '#00FFFFFF' id: BrickTileSteelInnerSe decals: - 3753: -26,65 - 3754: -26,63 - 3755: -26,61 - 3768: -28,60 - 10226: 37,-26 - 15747: 78,4 + 3752: -26,65 + 3753: -26,63 + 3754: -26,61 + 3767: -28,60 + 10172: 37,-26 + 15684: 78,4 - node: color: '#52B4E9FF' id: BrickTileSteelInnerSe decals: - 23357: 24,-45 - 23375: 22,-49 - 23776: 28,-24 - 23791: 32,-23 + 23284: 24,-45 + 23302: 22,-49 + 23696: 28,-24 + 23711: 32,-23 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerSe decals: - 9780: 21,-32 - 10029: 25,-26 - 10043: 28,-24 - 10055: 32,-23 - 10123: 22,-49 - 10133: 24,-45 - 10153: 24,-45 + 9743: 21,-32 + 9975: 25,-26 + 9989: 28,-24 + 10001: 32,-23 + 10069: 22,-49 + 10079: 24,-45 + 10099: 24,-45 - node: color: '#B18BDAFF' id: BrickTileSteelInnerSe decals: - 11924: -29,-32 - 11988: -42,-30 - 11989: -38,-30 - 11990: -34,-30 - 11991: -37,-29 - 11992: -41,-29 - 12012: -33,-29 - 12022: -45,-29 - 12045: -46,-23 - 12150: -24,-42 - 12151: -29,-42 - 12344: -17,-40 - 19767: -6,-43 - - node: - color: '#CEDA8BFF' - id: BrickTileSteelInnerSe - decals: - 10945: 32,-68 + 11950: -33,-29 + 12088: -24,-42 + 12089: -29,-42 + 12282: -17,-40 + 19703: -6,-43 - node: color: '#D381C9FF' id: BrickTileSteelInnerSe decals: - 22768: -17,-40 + 22700: -17,-40 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerSe decals: - 7784: 58,3 - 7785: 62,3 - 7786: 66,3 - 7787: 63,4 - 7788: 59,4 - 7797: 70,6 - 7798: 67,5 - 19255: 62,4 - 19256: 58,4 - 19257: 66,4 - 19277: 69,9 + 7783: 58,3 + 7784: 62,3 + 7785: 66,3 + 7786: 63,4 + 7787: 59,4 + 7796: 70,6 + 7797: 67,5 + 19192: 62,4 + 19193: 58,4 + 19194: 66,4 + 19214: 69,9 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerSe decals: - 20295: -24,0 - 20305: -46,9 - 20306: -48,8 - 20312: 5,-62 - 20313: 5,-72 - 20314: 5,-78 - 20315: 4,-82 - 20351: 6,-77 - 20352: 6,-75 - 20353: 6,-65 - 20442: 12,-32 - 20444: 14,-31 - 20471: 3,64 - 20481: 2,60 - 20500: 40,3 - 20504: 40,11 - 20510: 40,11 - 20577: 93,21 - 20578: 93,17 - 20597: 74,9 - 20606: 48,12 - 20617: 44,12 - 20630: 48,8 - 20710: 59,25 - 20711: 57,21 - 20714: 52,21 - 20715: 51,28 - 20716: 50,31 - 20717: 52,32 - 20722: 54,28 - 20773: 47,15 - 20774: 48,16 - 20775: 54,17 - 20780: 47,22 - 20794: 57,19 - 20808: 51,15 - 20820: 60,12 - 20827: 53,11 - 20835: 48,4 - 20875: 93,13 - 20889: 83,12 - 20910: 78,9 - 20935: 73,5 - 20946: 70,1 - 20976: 73,21 - 20977: 76,22 - 20986: 75,25 - 21001: 74,1 - 21017: 69,-1 - 21033: 71,-4 - 21034: 65,-1 - 21035: 61,-1 - 21067: 52,-1 - 21068: 47,-1 - 21084: 44,0 - 21103: 35,4 - 21113: 37,6 - 21122: 36,8 - 21125: 36,11 - 21126: 44,8 - 21136: 55,4 - 21170: 74,-4 - 21200: -18,-24 - 21215: 51,-5 - 21236: 56,-1 - 21631: -45,11 - 21979: 10,30 - 21988: 13,34 - 22572: 32,6 - 22573: 32,4 - 23138: 11,-28 - 23143: 13,-28 - 24065: 1,-60 - 24066: 1,-58 - 24072: 2,-76 - 24073: 2,-73 - 24074: 2,-64 - 24075: 2,-67 + 20231: -24,0 + 20241: -46,9 + 20242: -48,8 + 20248: 5,-62 + 20249: 5,-72 + 20250: 5,-78 + 20251: 4,-82 + 20287: 6,-77 + 20288: 6,-75 + 20289: 6,-65 + 20376: 12,-32 + 20377: 14,-31 + 20403: 3,64 + 20413: 2,60 + 20432: 40,3 + 20436: 40,11 + 20442: 40,11 + 20509: 93,21 + 20510: 93,17 + 20529: 74,9 + 20538: 48,12 + 20549: 44,12 + 20562: 48,8 + 20642: 59,25 + 20643: 57,21 + 20646: 52,21 + 20647: 51,28 + 20648: 50,31 + 20649: 52,32 + 20654: 54,28 + 20705: 47,15 + 20706: 48,16 + 20707: 54,17 + 20712: 47,22 + 20726: 57,19 + 20740: 51,15 + 20752: 60,12 + 20759: 53,11 + 20767: 48,4 + 20807: 93,13 + 20821: 83,12 + 20842: 78,9 + 20867: 73,5 + 20878: 70,1 + 20908: 73,21 + 20909: 76,22 + 20918: 75,25 + 20933: 74,1 + 20949: 69,-1 + 20965: 71,-4 + 20966: 65,-1 + 20967: 61,-1 + 20999: 52,-1 + 21000: 47,-1 + 21016: 44,0 + 21035: 35,4 + 21045: 37,6 + 21054: 36,8 + 21057: 36,11 + 21058: 44,8 + 21068: 55,4 + 21102: 74,-4 + 21132: -18,-24 + 21147: 51,-5 + 21168: 56,-1 + 21563: -45,11 + 21911: 10,30 + 21920: 13,34 + 22504: 32,6 + 22505: 32,4 + 23068: 11,-28 + 23073: 13,-28 + 23984: 1,-60 + 23985: 1,-58 + 23991: 2,-76 + 23992: 2,-73 + 23993: 2,-64 + 23994: 2,-67 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSe decals: - 2231: -18,55 - 2245: -15,48 - 2246: -15,50 - 2288: -15,36 - 2320: -25,30 - 2763: -3,51 - 2789: -4,48 - 2829: -30,41 - 2845: -32,44 - 3045: -17,56 - 3055: -1,56 - 3181: -17,67 - 3453: -25,67 - 3454: -30,67 - 3459: -29,84 - 3473: -29,88 - 3483: -29,79 - 3484: -29,77 - 3496: -11,77 - 3497: -11,84 - 3498: -11,88 - 3515: -11,79 - 3542: -3,67 - 3552: 8,68 - 3555: 6,67 - 3769: 2,56 - 3776: 3,57 - 5118: 31,30 - 5124: 35,30 - 5423: 18,-3 - 5446: -23,4 - 5455: -32,4 - 5470: -41,23 - 5528: -18,-1 - 5778: 14,-4 - 5790: 8,-6 - 5791: 11,-6 - 6073: -11,-17 - 6112: 18,-12 - 6257: -4,-16 - 6308: 18,-20 - 6366: 8,-17 - 6369: 10,-16 - 6883: -35,9 - 6884: -36,8 - 6897: -36,18 - 6937: -28,8 - 6938: -25,8 - 6942: -22,11 - 7015: 18,12 - 7018: 18,18 - 7019: 18,4 - 7050: 22,8 - 7120: 22,4 - 7142: 31,1 - 7177: 30,4 - 7306: 28,12 - 7992: 81,-19 - 8081: 25,-12 - 8242: 31,-10 - 8291: 41,-8 + 2230: -18,55 + 2244: -15,48 + 2245: -15,50 + 2287: -15,36 + 2319: -25,30 + 2762: -3,51 + 2788: -4,48 + 2828: -30,41 + 2844: -32,44 + 3044: -17,56 + 3054: -1,56 + 3180: -17,67 + 3452: -25,67 + 3453: -30,67 + 3458: -29,84 + 3472: -29,88 + 3482: -29,79 + 3483: -29,77 + 3495: -11,77 + 3496: -11,84 + 3497: -11,88 + 3514: -11,79 + 3541: -3,67 + 3551: 8,68 + 3554: 6,67 + 3768: 2,56 + 3775: 3,57 + 5117: 31,30 + 5123: 35,30 + 5422: 18,-3 + 5445: -23,4 + 5454: -32,4 + 5469: -41,23 + 5527: -18,-1 + 5777: 14,-4 + 5789: 8,-6 + 5790: 11,-6 + 6072: -11,-17 + 6111: 18,-12 + 6256: -4,-16 + 6307: 18,-20 + 6365: 8,-17 + 6368: 10,-16 + 6882: -35,9 + 6883: -36,8 + 6896: -36,18 + 6936: -28,8 + 6937: -25,8 + 6941: -22,11 + 7014: 18,12 + 7017: 18,18 + 7018: 18,4 + 7049: 22,8 + 7119: 22,4 + 7141: 31,1 + 7176: 30,4 + 7305: 28,12 + 7991: 81,-19 + 8080: 25,-12 + 8241: 31,-10 + 8290: 41,-8 + 8320: 39,-16 8321: 39,-16 - 8322: 39,-16 - 8356: 41,-19 - 8402: 48,-21 - 8403: 44,-21 - 8404: 52,-21 - 8421: 53,-19 - 8467: 56,-21 - 8644: 60,-10 - 8649: 63,-19 - 8650: 63,-22 - 8790: -13,-21 - 8791: -6,-21 - 8792: 0,-21 - 8793: 5,-21 - 8794: 12,-21 - 8820: 0,-26 + 8355: 41,-19 + 8401: 48,-21 + 8402: 44,-21 + 8403: 52,-21 + 8420: 53,-19 + 8466: 56,-21 + 8643: 60,-10 + 8648: 63,-19 + 8649: 63,-22 + 8789: -13,-21 + 8790: -6,-21 + 8791: 0,-21 + 8792: 5,-21 + 8793: 12,-21 + 8819: 0,-26 + 8854: 0,-36 8855: 0,-36 - 8856: 0,-36 - 8924: -15,-23 - 8925: -8,-23 - 8932: -8,-28 - 8933: -4,-28 - 8958: -16,-28 - 9155: 2,-67 - 9167: -8,-65 - 9168: -8,-65 - 9209: -11,-78 - 9270: -9,-71 - 9271: -9,-66 - 9281: 0,-62 - 9282: 0,-62 - 9435: -39,-16 - 9550: 1,-35 - 9612: 0,-39 - 9614: -3,-81 - 10554: 2,-76 - 10567: 1,-60 - 10628: 49,-42 - 10629: 47,-45 - 10630: 45,-45 - 10800: -4,-82 - 10801: -6,-82 - 10802: -6,-82 - 11281: -77,-31 - 11289: -77,-23 - 11402: -15,-32 - 11810: -39,-56 - 11834: -41,-53 - 13388: -37,-63 - 14433: -18,22 - 14915: 18,24 - 15790: 81,0 - 15791: 81,0 - 15792: 85,0 - 15793: 85,0 - 16692: -58,-10 - 16791: -58,-4 - 16801: -52,8 - 16822: -57,-7 - 16823: -57,-9 - 17500: 8,80 - 17505: 8,75 - 17508: 7,74 - 18396: -60,-43 - 18451: -18,-10 - 18469: -14,-10 - 18470: -10,-10 - 18499: 8,-10 - 19878: -24,10 - 19996: -16,4 - 20056: 70,26 - 20276: -18,4 - 20277: -18,-1 - 21328: 18,14 - 24013: -32,-3 - 24014: -32,1 - 24015: -29,-3 - 24016: -24,-3 - 24047: -35,-11 + 8922: -15,-23 + 8923: -8,-23 + 8930: -8,-28 + 8931: -4,-28 + 8955: -16,-28 + 9144: 2,-67 + 9156: -8,-65 + 9157: -8,-65 + 9198: -11,-78 + 9259: -9,-71 + 9260: -9,-66 + 9270: 0,-62 + 9271: 0,-62 + 9423: -39,-16 + 9526: 1,-35 + 9588: 0,-39 + 9590: -3,-81 + 10492: 2,-76 + 10505: 1,-60 + 10566: 49,-42 + 10567: 47,-45 + 10568: 45,-45 + 10738: -4,-82 + 10739: -6,-82 + 10740: -6,-82 + 11219: -77,-31 + 11227: -77,-23 + 11340: -15,-32 + 11748: -39,-56 + 11772: -41,-53 + 13325: -37,-63 + 14370: -18,22 + 14852: 18,24 + 15727: 81,0 + 15728: 81,0 + 15729: 85,0 + 15730: 85,0 + 16629: -58,-10 + 16728: -58,-4 + 16738: -52,8 + 16759: -57,-7 + 16760: -57,-9 + 17437: 8,80 + 17442: 8,75 + 17445: 7,74 + 18333: -60,-43 + 18388: -18,-10 + 18406: -14,-10 + 18407: -10,-10 + 18436: 8,-10 + 19814: -24,10 + 19932: -16,4 + 19992: 70,26 + 20212: -18,4 + 20213: -18,-1 + 21260: 18,14 + 23932: -32,-3 + 23933: -32,1 + 23934: -29,-3 + 23935: -24,-3 + 23966: -35,-11 - node: color: '#00C9DAFF' id: BrickTileSteelInnerSw decals: - 8117: 27,-16 - 8118: 29,-16 - 8119: 31,-16 - 8131: 24,-15 - 8136: 25,-18 - 8137: 32,-11 + 8116: 27,-16 + 8117: 29,-16 + 8118: 31,-16 + 8130: 24,-15 + 8135: 25,-18 + 8136: 32,-11 - node: color: '#00FFFFFF' id: BrickTileSteelInnerSw decals: - 3766: -26,60 - 10224: 37,-26 - 10225: 37,-26 - 15746: 78,4 - 15751: 77,6 + 3765: -26,60 + 10170: 37,-26 + 10171: 37,-26 + 15683: 78,4 + 15688: 77,6 - node: color: '#3EB388FF' id: BrickTileSteelInnerSw decals: - 21877: -43,23 + 21809: -43,23 - node: color: '#52B4E9FF' id: BrickTileSteelInnerSw decals: - 23356: 20,-45 - 23373: 22,-49 - 23775: 32,-24 + 23283: 20,-45 + 23300: 22,-49 + 23695: 32,-24 - node: color: '#8CB7E8FF' id: BrickTileSteelInnerSw decals: - 9779: 21,-32 - 10028: 25,-26 - 10042: 32,-24 - 10122: 22,-49 - 10132: 20,-45 - 10152: 20,-45 - 10186: 32,-51 - 10187: 32,-49 + 9742: 21,-32 + 9974: 25,-26 + 9988: 32,-24 + 10068: 22,-49 + 10078: 20,-45 + 10098: 20,-45 + 10132: 32,-51 + 10133: 32,-49 - node: color: '#B18BDAFF' id: BrickTileSteelInnerSw decals: - 11922: -29,-32 - 11923: -29,-32 - 11950: -31,-29 - 11951: -31,-29 - 11985: -42,-30 - 11986: -38,-30 - 11987: -34,-30 - 11993: -39,-29 - 11994: -35,-29 - 12006: -43,-29 - 12037: -48,-28 - 12039: -48,-25 - 12046: -46,-23 - 12149: -24,-42 - 12152: -29,-42 - 12154: -30,-39 - 16138: -66,-46 - 19766: -9,-43 + 12087: -24,-42 + 12090: -29,-42 + 12092: -30,-39 + 16075: -66,-46 + 19702: -9,-43 - node: color: '#DA8B8BFF' id: BrickTileSteelInnerSw decals: - 7781: 58,3 - 7782: 62,3 - 7783: 66,3 - 7789: 65,4 - 7790: 57,4 - 7791: 61,4 - 19252: 62,4 - 19253: 58,4 - 19254: 66,4 - 19276: 69,9 + 7780: 58,3 + 7781: 62,3 + 7782: 66,3 + 7788: 65,4 + 7789: 57,4 + 7790: 61,4 + 19189: 62,4 + 19190: 58,4 + 19191: 66,4 + 19213: 69,9 - node: color: '#DA8BC9FF' id: BrickTileSteelInnerSw decals: - 3932: 19,62 + 3931: 19,62 - node: color: '#DAA58BFF' id: BrickTileSteelInnerSw decals: - 4593: 20,34 + 4592: 20,34 - node: color: '#DE3A3AFF' id: BrickTileSteelInnerSw decals: - 20308: -48,9 - 20309: 5,-72 - 20310: 5,-78 - 20311: 5,-62 - 20361: 4,-76 - 20362: 4,-67 - 20408: 3,-60 - 20417: 8,-65 - 20426: 8,-77 - 20427: 8,-77 - 20428: 12,-32 - 20469: 0,61 - 20480: 2,60 - 20499: 40,3 - 20503: 40,11 - 20509: 40,11 - 20531: 39,8 - 20621: 46,12 - 20622: 46,12 - 20634: 46,8 - 20657: 46,3 - 20658: 39,4 - 20699: 49,22 - 20712: 57,21 - 20713: 52,21 - 20718: 56,32 - 20719: 58,31 - 20720: 57,28 - 20721: 54,28 - 20772: 47,15 - 20779: 45,20 - 20795: 56,17 - 20806: 50,16 - 20807: 51,15 - 20823: 50,12 - 20826: 53,11 - 20864: 91,21 - 20890: 83,12 - 20911: 76,9 - 20929: 72,18 - 20930: 72,13 - 20931: 73,5 - 20975: 73,21 - 20985: 75,25 - 20993: 91,21 - 20998: 72,6 - 21002: 72,1 - 21016: 69,-1 - 21020: 69,1 - 21066: 52,-1 - 21069: 47,-1 - 21074: 46,0 - 21102: 35,4 - 21111: 34,6 - 21116: 39,6 - 21119: 36,8 - 21124: 36,11 - 21145: 50,4 - 21146: 50,8 - 21153: 61,-1 - 21154: 65,-1 - 21167: 73,-4 - 21199: -20,-26 - 21214: 51,-5 - 21230: 46,-8 - 21235: 56,-1 - 21627: -44,9 - 21630: -44,11 - 21985: 14,34 - 21987: 13,34 - 22141: 14,34 - 23126: -16,-24 - 23137: 11,-28 - 23142: 13,-28 - 23166: 16,-31 - 23168: 16,-30 + 20244: -48,9 + 20245: 5,-72 + 20246: 5,-78 + 20247: 5,-62 + 20297: 4,-76 + 20298: 4,-67 + 20344: 3,-60 + 20353: 8,-65 + 20362: 8,-77 + 20363: 8,-77 + 20364: 12,-32 + 20401: 0,61 + 20412: 2,60 + 20431: 40,3 + 20435: 40,11 + 20441: 40,11 + 20463: 39,8 + 20553: 46,12 + 20554: 46,12 + 20566: 46,8 + 20589: 46,3 + 20590: 39,4 + 20631: 49,22 + 20644: 57,21 + 20645: 52,21 + 20650: 56,32 + 20651: 58,31 + 20652: 57,28 + 20653: 54,28 + 20704: 47,15 + 20711: 45,20 + 20727: 56,17 + 20738: 50,16 + 20739: 51,15 + 20755: 50,12 + 20758: 53,11 + 20796: 91,21 + 20822: 83,12 + 20843: 76,9 + 20861: 72,18 + 20862: 72,13 + 20863: 73,5 + 20907: 73,21 + 20917: 75,25 + 20925: 91,21 + 20930: 72,6 + 20934: 72,1 + 20948: 69,-1 + 20952: 69,1 + 20998: 52,-1 + 21001: 47,-1 + 21006: 46,0 + 21034: 35,4 + 21043: 34,6 + 21048: 39,6 + 21051: 36,8 + 21056: 36,11 + 21077: 50,4 + 21078: 50,8 + 21085: 61,-1 + 21086: 65,-1 + 21099: 73,-4 + 21131: -20,-26 + 21146: 51,-5 + 21162: 46,-8 + 21167: 56,-1 + 21559: -44,9 + 21562: -44,11 + 21917: 14,34 + 21919: 13,34 + 22073: 14,34 + 23058: -16,-24 + 23067: 11,-28 + 23072: 13,-28 + 23095: 16,-31 + 23097: 16,-30 - node: color: '#FBB2FFFF' id: BrickTileSteelInnerSw decals: - 22943: -18,-35 + 22875: -18,-35 - node: color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 2255: -23,50 + 2254: -23,50 + 2258: -23,47 2259: -23,47 - 2260: -23,47 - 2262: -24,41 - 2296: -21,28 - 2298: -20,26 - 2309: -23,30 - 2310: -23,40 - 2321: -27,30 - 2324: -27,32 - 2351: -27,39 - 2478: -14,36 - 2730: -13,50 - 2790: -4,48 - 2795: -4,45 - 2800: -7,27 - 2838: -30,40 - 3046: -20,55 - 3053: -1,56 - 3056: 1,56 - 3180: -7,67 - 3432: -21,67 - 3452: -25,67 - 3455: -30,67 - 3465: -31,77 - 3466: -31,79 - 3467: -31,84 - 3468: -31,88 - 3485: -13,77 - 3486: -13,79 - 3487: -13,84 - 3488: -13,88 - 3554: 6,67 - 3637: 5,84 - 3655: 5,79 - 3658: 5,77 - 5117: 31,30 - 5123: 35,30 - 5421: 16,-4 - 5445: -23,4 - 5454: -33,4 - 5788: 10,-6 - 5789: 8,-6 - 6072: -13,-17 - 6259: -4,-17 - 6367: 8,-17 - 6390: 12,-16 + 2261: -24,41 + 2295: -21,28 + 2297: -20,26 + 2308: -23,30 + 2309: -23,40 + 2320: -27,30 + 2323: -27,32 + 2350: -27,39 + 2477: -14,36 + 2729: -13,50 + 2789: -4,48 + 2794: -4,45 + 2799: -7,27 + 2837: -30,40 + 3045: -20,55 + 3052: -1,56 + 3055: 1,56 + 3179: -7,67 + 3431: -21,67 + 3451: -25,67 + 3454: -30,67 + 3464: -31,77 + 3465: -31,79 + 3466: -31,84 + 3467: -31,88 + 3484: -13,77 + 3485: -13,79 + 3486: -13,84 + 3487: -13,88 + 3553: 6,67 + 3636: 5,84 + 3654: 5,79 + 3657: 5,77 + 5116: 31,30 + 5122: 35,30 + 5420: 16,-4 + 5444: -23,4 + 5453: -33,4 + 5787: 10,-6 + 5788: 8,-6 + 6071: -13,-17 + 6258: -4,-17 + 6366: 8,-17 + 6389: 12,-16 + 6428: -20,-20 6429: -20,-20 - 6430: -20,-20 - 6437: -20,-18 - 6781: -20,11 - 6882: -37,9 - 6885: -36,8 - 6896: -36,18 - 6935: -28,8 - 6939: -26,8 - 6953: -21,-17 - 7049: 22,8 - 7119: 22,4 - 7148: 25,-8 - 7176: 30,4 - 7304: 28,11 - 7991: 79,-19 - 8080: 25,-12 + 6436: -20,-18 + 6780: -20,11 + 6881: -37,9 + 6884: -36,8 + 6895: -36,18 + 6934: -28,8 + 6938: -26,8 + 6952: -21,-17 + 7048: 22,8 + 7118: 22,4 + 7147: 25,-8 + 7175: 30,4 + 7303: 28,11 + 7990: 79,-19 + 8079: 25,-12 + 8148: 33,-12 8149: 33,-12 - 8150: 33,-12 + 8150: 33,-10 8151: 33,-10 - 8152: 33,-10 - 8320: 41,-16 + 8319: 41,-16 + 8322: 39,-16 8323: 39,-16 - 8324: 39,-16 - 8358: 43,-19 - 8399: 44,-21 - 8400: 48,-21 - 8401: 52,-21 - 8451: 55,-21 + 8357: 43,-19 + 8398: 44,-21 + 8399: 48,-21 + 8400: 52,-21 + 8450: 55,-21 + 8452: 55,-19 8453: 55,-19 - 8454: 55,-19 - 8563: 55,-29 + 8562: 55,-29 + 8565: 55,-11 8566: 55,-11 - 8567: 55,-11 - 8643: 58,-10 - 8785: 4,-21 - 8786: 11,-21 - 8787: -7,-21 - 8788: -2,-21 - 8789: -14,-21 - 8819: -2,-26 - 8854: -2,-36 - 8926: -12,-23 - 8931: -4,-28 - 8934: -12,-28 - 8937: -16,-23 - 8938: -16,-23 - 8947: -5,-23 - 8948: -5,-23 - 8959: -16,-28 - 9169: -1,-65 - 9208: -11,-78 - 9272: 0,-71 - 9273: 0,-66 - 9280: -2,-62 - 9293: -3,-60 - 9613: 1,-81 - 9615: -11,-67 - 10631: 43,-42 - 10632: 43,-42 - 10633: 45,-45 - 10634: 47,-45 - 10635: 47,-45 - 10797: 2,-82 - 10798: -4,-82 - 10799: -4,-82 - 10803: -6,-82 - 10804: -9,-78 - 11243: -60,-36 - 11244: -60,-36 - 11245: -60,-43 - 11285: -78,-27 - 11375: -2,-41 - 11401: -13,-32 - 11851: -26,-53 - 13387: -37,-63 - 14376: -44,11 - 15008: 16,22 - 15381: -43,8 - 15786: 76,1 - 15787: 81,0 - 15788: 85,0 - 15789: 89,0 - 16368: -60,-48 - 16691: -58,-10 - 16790: -58,-4 - 16800: -53,8 - 16828: -55,-7 - 16829: -55,-9 - 18428: -15,-12 - 18471: -14,-10 - 18472: -10,-10 - 18473: 16,-10 - 18498: 8,-10 - 19877: -27,10 - 19998: -16,4 - 20059: 61,25 - 20173: -20,17 - 20174: -20,11 - 20175: -20,4 - 20176: -20,-3 - 20271: -20,17 - 20274: -20,20 - 24017: -29,-3 - 24018: -24,-3 - 24019: -28,-16 - 24038: -30,-11 + 8642: 58,-10 + 8784: 4,-21 + 8785: 11,-21 + 8786: -7,-21 + 8787: -2,-21 + 8788: -14,-21 + 8818: -2,-26 + 8853: -2,-36 + 8924: -12,-23 + 8929: -4,-28 + 8932: -12,-28 + 8935: -16,-23 + 8936: -16,-23 + 8945: -5,-23 + 8946: -5,-23 + 8956: -16,-28 + 9158: -1,-65 + 9197: -11,-78 + 9261: 0,-71 + 9262: 0,-66 + 9269: -2,-62 + 9282: -3,-60 + 9589: 1,-81 + 9591: -11,-67 + 10569: 43,-42 + 10570: 43,-42 + 10571: 45,-45 + 10572: 47,-45 + 10573: 47,-45 + 10735: 2,-82 + 10736: -4,-82 + 10737: -4,-82 + 10741: -6,-82 + 10742: -9,-78 + 11181: -60,-36 + 11182: -60,-36 + 11183: -60,-43 + 11223: -78,-27 + 11313: -2,-41 + 11339: -13,-32 + 11789: -26,-53 + 13324: -37,-63 + 14313: -44,11 + 14945: 16,22 + 15318: -43,8 + 15723: 76,1 + 15724: 81,0 + 15725: 85,0 + 15726: 89,0 + 16305: -60,-48 + 16628: -58,-10 + 16727: -58,-4 + 16737: -53,8 + 16765: -55,-7 + 16766: -55,-9 + 18365: -15,-12 + 18408: -14,-10 + 18409: -10,-10 + 18410: 16,-10 + 18435: 8,-10 + 19813: -27,10 + 19934: -16,4 + 19995: 61,25 + 20109: -20,17 + 20110: -20,11 + 20111: -20,4 + 20112: -20,-3 + 20207: -20,17 + 20210: -20,20 + 23936: -29,-3 + 23937: -24,-3 + 23938: -28,-16 + 23957: -30,-11 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelInnerSw decals: - 4107: -20,20 - 4108: -20,17 + 4106: -20,20 + 4107: -20,17 - node: color: '#00C9DAFF' id: BrickTileSteelLineE decals: - 8101: 25,-18 - 8102: 25,-17 - 8133: 23,-15 - 8139: 31,-15 + 8100: 25,-18 + 8101: 25,-17 + 8132: 23,-15 + 8138: 31,-15 - node: color: '#00FFFFFF' id: BrickTileSteelLineE decals: - 3746: -26,64 - 3747: -26,62 - 3748: -26,60 - 3759: -25,63 - 3760: -25,61 - 3761: -25,59 - 10229: 35,-26 - 15755: 79,5 + 3745: -26,64 + 3746: -26,62 + 3747: -26,60 + 3758: -25,63 + 3759: -25,61 + 3760: -25,59 + 10175: 35,-26 + 15692: 79,5 - node: color: '#334E6DFF' id: BrickTileSteelLineE decals: - 21275: -18,13 - 21276: -18,12 - 21277: -18,13 - 21278: -18,13 + 21207: -18,13 + 21208: -18,12 + 21209: -18,13 + 21210: -18,13 - node: color: '#52B4E9FF' id: BrickTileSteelLineE decals: - 23368: 24,-47 - 23369: 24,-48 - 23788: 32,-24 - 23789: 31,-24 + 23295: 24,-47 + 23296: 24,-48 + 23708: 32,-24 + 23709: 31,-24 - node: color: '#8BC9DAFF' id: BrickTileSteelLineE decals: - 3684: 4,64 - 3686: 4,64 - 3688: 4,64 - 3924: 21,61 - 3953: 21,61 + 3683: 4,64 + 3685: 4,64 + 3687: 4,64 + 3923: 21,61 + 3952: 21,61 - node: color: '#8CB7E8FF' id: BrickTileSteelLineE decals: - 9927: 29,-44 - 10037: 31,-24 - 10038: 31,-24 - 10047: 32,-24 - 10134: 24,-47 - 10135: 24,-48 - 10183: 31,-49 - 10184: 31,-51 - 10185: 31,-51 - 10195: 34,-52 - 10196: 34,-51 - 10197: 34,-50 - 10198: 34,-49 - 10199: 34,-48 + 9874: 29,-44 + 9983: 31,-24 + 9984: 31,-24 + 9993: 32,-24 + 10080: 24,-47 + 10081: 24,-48 + 10129: 31,-49 + 10130: 31,-51 + 10131: 31,-51 + 10141: 34,-52 + 10142: 34,-51 + 10143: 34,-50 + 10144: 34,-49 + 10145: 34,-48 - node: color: '#96A4EBFF' id: BrickTileSteelLineE decals: - 21270: -18,13 + 21202: -18,13 - node: color: '#A9DA8BFF' id: BrickTileSteelLineE decals: - 2989: -39,49 + 2988: -39,49 - node: color: '#B18BDAFF' id: BrickTileSteelLineE decals: - 11531: -21,-34 - 11532: -21,-35 - 11533: -21,-36 - 11929: -26,-31 - 11930: -26,-31 - 11931: -26,-30 - 11932: -26,-30 - 11933: -26,-29 - 11934: -26,-28 - 11935: -26,-27 - 11943: -32,-27 - 11944: -32,-28 - 11945: -32,-29 - 12003: -44,-27 - 12004: -44,-28 - 12005: -44,-29 - 12020: -45,-26 - 12021: -45,-30 - 12036: -49,-28 - 12049: -48,-23 - 12084: -24,-46 - 12085: -24,-45 - 12086: -24,-44 - 12133: -28,-41 - 12134: -28,-40 - 12135: -28,-39 - 12136: -23,-41 - 12137: -23,-40 - 12138: -23,-39 - 12155: -31,-39 - 12312: -17,-43 - 12313: -17,-42 - 12314: -17,-41 - 12320: -17,-39 - 16129: -62,-47 - 19762: -10,-43 - 19763: -10,-42 - 19764: -10,-41 - 19765: -10,-41 - 19776: -10,-40 - - node: - color: '#CEDA8BFF' - id: BrickTileSteelLineE - decals: - 10942: 32,-69 - 10943: 32,-67 + 11469: -21,-34 + 11470: -21,-35 + 11471: -21,-36 + 11987: -48,-23 + 12022: -24,-46 + 12023: -24,-45 + 12024: -24,-44 + 12071: -28,-41 + 12072: -28,-40 + 12073: -28,-39 + 12074: -23,-41 + 12075: -23,-40 + 12076: -23,-39 + 12093: -31,-39 + 12250: -17,-43 + 12251: -17,-42 + 12252: -17,-41 + 12258: -17,-39 + 16066: -62,-47 + 19698: -10,-43 + 19699: -10,-42 + 19700: -10,-41 + 19701: -10,-41 + 19712: -10,-40 - node: color: '#D381C9FF' id: BrickTileSteelLineE decals: - 22766: -17,-39 - 22769: -17,-41 - 22770: -17,-41 - 22771: -17,-42 - 22772: -17,-42 - 22773: -17,-43 - 22774: -17,-43 - 22775: -17,-43 + 22698: -17,-39 + 22701: -17,-41 + 22702: -17,-41 + 22703: -17,-42 + 22704: -17,-42 + 22705: -17,-43 + 22706: -17,-43 + 22707: -17,-43 - node: color: '#DA8B8BFF' id: BrickTileSteelLineE decals: - 7792: 67,4 - 7799: 64,4 - 7800: 64,5 - 7805: 56,4 - 7806: 56,5 - 7807: 60,4 - 7808: 60,5 - 19241: 58,3 - 19248: 66,3 - 19249: 62,3 - 19274: 69,8 - 19279: 66,8 - 19280: 66,7 - 19285: 62,7 - 19286: 62,8 - 19287: 62,9 - 19293: 58,7 - 19294: 58,8 + 7791: 67,4 + 7798: 64,4 + 7799: 64,5 + 7804: 56,4 + 7805: 56,5 + 7806: 60,4 + 7807: 60,5 + 19178: 58,3 + 19185: 66,3 + 19186: 62,3 + 19211: 69,8 + 19216: 66,8 + 19217: 66,7 + 19222: 62,7 + 19223: 62,8 + 19224: 62,9 + 19230: 58,7 + 19231: 58,8 - node: color: '#DA8BC9FF' id: BrickTileSteelLineE decals: - 3822: 9,68 - 3931: 21,62 + 3821: 9,68 + 3930: 21,62 - node: color: '#DABC8BFF' id: BrickTileSteelLineE decals: - 3702: 9,75 - 3703: 9,76 - 3704: 9,80 - 3705: 9,81 + 3701: 9,75 + 3702: 9,76 + 3703: 9,80 + 3704: 9,81 - node: color: '#DE3A3AFF' id: BrickTileSteelLineE decals: - 20286: -22,1 - 20301: -49,9 - 20328: 4,-86 - 20329: 4,-85 - 20330: 4,-84 - 20341: 6,-81 - 20357: 3,-66 - 20358: 3,-67 - 20359: 3,-75 - 20360: 3,-76 - 20385: 7,-77 - 20386: 7,-75 - 20389: 6,-76 - 20394: 6,-71 - 20395: 6,-70 - 20396: 6,-69 - 20397: 6,-68 - 20398: 6,-67 - 20399: 6,-66 - 20400: 9,-65 - 20401: 8,-61 - 20402: 8,-60 - 20403: 8,-59 - 20409: 2,-60 - 20452: 11,30 - 20453: 13,31 - 20454: 13,32 - 20462: -1,61 - 20472: 3,63 - 20473: 3,62 - 20474: 3,61 - 20511: 41,12 - 20522: 41,6 - 20523: 41,7 - 20524: 41,8 - 20532: 38,8 - 20563: 74,10 - 20564: 74,11 - 20565: 74,12 - 20566: 74,13 - 20567: 74,14 - 20568: 74,15 - 20569: 74,16 - 20570: 74,17 - 20571: 74,18 - 20572: 93,14 - 20573: 93,19 - 20574: 93,19 - 20575: 93,20 - 20576: 93,18 - 20579: 93,16 - 20593: 75,9 - 20594: 79,9 - 20599: 48,2 - 20600: 48,3 - 20601: 48,5 - 20602: 48,6 - 20603: 48,6 - 20604: 48,7 - 20605: 48,11 - 20620: 45,12 - 20629: 48,9 - 20635: 45,8 - 20659: 38,4 - 20660: 38,6 - 20661: 48,17 - 20662: 48,18 - 20663: 54,18 - 20664: 59,22 - 20665: 59,23 - 20666: 59,24 - 20667: 59,27 - 20668: 59,28 - 20669: 59,29 - 20670: 59,30 - 20671: 59,26 - 20684: 48,23 - 20685: 48,22 - 20732: 49,16 - 20737: 49,12 - 20782: 47,21 - 20783: 47,20 - 20784: 57,18 - 20785: 57,17 - 20786: 57,16 - 20787: 57,16 - 20798: 54,16 - 20830: 49,8 - 20833: 49,4 - 20861: 93,22 - 20863: 90,21 - 20899: 79,9 - 20902: 75,9 - 20912: 74,8 - 20913: 74,7 - 20914: 74,6 - 20915: 74,6 - 20937: 71,-1 - 20942: 67,0 - 20945: 70,0 - 20955: 49,-1 - 20956: 49,0 - 20957: 49,1 - 20958: 71,6 - 20959: 71,13 - 20963: 71,13 - 20964: 71,18 - 21011: 68,1 - 21012: 68,-1 - 21013: 71,1 - 21014: 71,-1 - 21046: 48,-4 - 21047: 53,-4 - 21063: 58,-4 - 21075: 45,0 - 21091: 41,0 - 21092: 33,6 - 21093: 33,4 - 21094: 38,4 - 21095: 38,6 - 21105: 37,5 - 21138: 55,6 - 21139: 55,7 - 21140: 55,8 - 21155: 44,20 - 21156: 49,16 - 21157: 55,17 - 21165: 72,-4 - 21174: 75,-4 - 21177: 77,-3 - 21180: 75,-4 - 21182: 72,-4 - 21186: -21,-26 - 21190: -18,-25 - 21191: -18,-26 - 21192: -18,-26 - 21193: -18,-27 - 21218: 51,-7 - 21219: 51,-8 - 21227: 45,-8 - 21243: 74,2 - 21244: 74,0 - 21978: 10,31 - 22566: 32,5 - 23122: -17,-24 - 23165: 15,-31 - 24053: 2,-68 - 24054: 2,-65 - 24055: 2,-74 - 24056: 2,-77 - 24062: 1,-61 - 24063: 1,-59 + 20222: -22,1 + 20237: -49,9 + 20264: 4,-86 + 20265: 4,-85 + 20266: 4,-84 + 20277: 6,-81 + 20293: 3,-66 + 20294: 3,-67 + 20295: 3,-75 + 20296: 3,-76 + 20321: 7,-77 + 20322: 7,-75 + 20325: 6,-76 + 20330: 6,-71 + 20331: 6,-70 + 20332: 6,-69 + 20333: 6,-68 + 20334: 6,-67 + 20335: 6,-66 + 20336: 9,-65 + 20337: 8,-61 + 20338: 8,-60 + 20339: 8,-59 + 20345: 2,-60 + 20384: 11,30 + 20385: 13,31 + 20386: 13,32 + 20394: -1,61 + 20404: 3,63 + 20405: 3,62 + 20406: 3,61 + 20443: 41,12 + 20454: 41,6 + 20455: 41,7 + 20456: 41,8 + 20464: 38,8 + 20495: 74,10 + 20496: 74,11 + 20497: 74,12 + 20498: 74,13 + 20499: 74,14 + 20500: 74,15 + 20501: 74,16 + 20502: 74,17 + 20503: 74,18 + 20504: 93,14 + 20505: 93,19 + 20506: 93,19 + 20507: 93,20 + 20508: 93,18 + 20511: 93,16 + 20525: 75,9 + 20526: 79,9 + 20531: 48,2 + 20532: 48,3 + 20533: 48,5 + 20534: 48,6 + 20535: 48,6 + 20536: 48,7 + 20537: 48,11 + 20552: 45,12 + 20561: 48,9 + 20567: 45,8 + 20591: 38,4 + 20592: 38,6 + 20593: 48,17 + 20594: 48,18 + 20595: 54,18 + 20596: 59,22 + 20597: 59,23 + 20598: 59,24 + 20599: 59,27 + 20600: 59,28 + 20601: 59,29 + 20602: 59,30 + 20603: 59,26 + 20616: 48,23 + 20617: 48,22 + 20664: 49,16 + 20669: 49,12 + 20714: 47,21 + 20715: 47,20 + 20716: 57,18 + 20717: 57,17 + 20718: 57,16 + 20719: 57,16 + 20730: 54,16 + 20762: 49,8 + 20765: 49,4 + 20793: 93,22 + 20795: 90,21 + 20831: 79,9 + 20834: 75,9 + 20844: 74,8 + 20845: 74,7 + 20846: 74,6 + 20847: 74,6 + 20869: 71,-1 + 20874: 67,0 + 20877: 70,0 + 20887: 49,-1 + 20888: 49,0 + 20889: 49,1 + 20890: 71,6 + 20891: 71,13 + 20895: 71,13 + 20896: 71,18 + 20943: 68,1 + 20944: 68,-1 + 20945: 71,1 + 20946: 71,-1 + 20978: 48,-4 + 20979: 53,-4 + 20995: 58,-4 + 21007: 45,0 + 21023: 41,0 + 21024: 33,6 + 21025: 33,4 + 21026: 38,4 + 21027: 38,6 + 21037: 37,5 + 21070: 55,6 + 21071: 55,7 + 21072: 55,8 + 21087: 44,20 + 21088: 49,16 + 21089: 55,17 + 21097: 72,-4 + 21106: 75,-4 + 21109: 77,-3 + 21112: 75,-4 + 21114: 72,-4 + 21118: -21,-26 + 21122: -18,-25 + 21123: -18,-26 + 21124: -18,-26 + 21125: -18,-27 + 21150: 51,-7 + 21151: 51,-8 + 21159: 45,-8 + 21175: 74,2 + 21176: 74,0 + 21910: 10,31 + 22498: 32,5 + 23054: -17,-24 + 23094: 15,-31 + 23972: 2,-68 + 23973: 2,-65 + 23974: 2,-74 + 23975: 2,-77 + 23981: 1,-61 + 23982: 1,-59 - node: color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 2241: -15,51 - 2242: -15,49 - 2247: -15,47 - 2273: -25,41 - 2287: -15,35 - 2299: -24,39 - 2300: -24,38 - 2301: -24,37 - 2302: -24,36 - 2303: -24,35 - 2304: -24,34 - 2305: -24,33 - 2306: -24,32 - 2307: -24,31 - 2308: -24,30 - 2326: -28,30 - 2342: -28,32 - 2343: -28,33 - 2344: -28,34 - 2345: -28,35 - 2346: -28,36 - 2347: -28,37 - 2348: -28,38 - 2732: -14,48 - 2733: -14,50 - 2754: -3,50 - 2755: -3,49 - 2781: -2,45 - 2802: -8,27 - 2804: -5,27 - 2816: -26,42 - 2837: -30,40 - 2858: -24,50 - 2859: -24,51 - 2860: -24,48 - 2861: -24,47 - 3161: -17,59 - 3162: -17,60 - 3163: -17,61 - 3164: -17,62 - 3165: -17,63 + 2240: -15,51 + 2241: -15,49 + 2246: -15,47 + 2272: -25,41 + 2286: -15,35 + 2298: -24,39 + 2299: -24,38 + 2300: -24,37 + 2301: -24,36 + 2302: -24,35 + 2303: -24,34 + 2304: -24,33 + 2305: -24,32 + 2306: -24,31 + 2307: -24,30 + 2325: -28,30 + 2341: -28,32 + 2342: -28,33 + 2343: -28,34 + 2344: -28,35 + 2345: -28,36 + 2346: -28,37 + 2347: -28,38 + 2731: -14,48 + 2732: -14,50 + 2753: -3,50 + 2754: -3,49 + 2780: -2,45 + 2801: -8,27 + 2803: -5,27 + 2815: -26,42 + 2836: -30,40 + 2857: -24,50 + 2858: -24,51 + 2859: -24,48 + 2860: -24,47 + 3160: -17,59 + 3161: -17,60 + 3162: -17,61 + 3163: -17,62 + 3164: -17,63 + 3165: -17,64 3166: -17,64 - 3167: -17,64 - 3168: -17,65 - 3169: -17,66 - 3334: -29,93 - 3335: -29,94 - 3336: -29,95 - 3337: -28,91 - 3338: -28,90 - 3339: -28,89 - 3340: -29,87 - 3341: -29,86 - 3342: -29,85 - 3343: -29,83 - 3344: -28,81 - 3345: -28,80 - 3346: -29,78 - 3347: -29,76 - 3348: -29,75 - 3349: -29,74 - 3350: -29,73 - 3351: -29,72 - 3352: -29,71 - 3353: -29,70 - 3391: -11,93 - 3392: -11,94 - 3393: -11,95 - 3394: -10,91 - 3395: -10,90 - 3396: -10,89 - 3397: -11,86 - 3398: -11,85 - 3399: -11,87 - 3400: -11,83 - 3401: -10,81 - 3402: -10,80 - 3403: -11,78 - 3404: -11,76 - 3405: -11,75 - 3406: -11,74 - 3407: -11,73 - 3408: -11,72 - 3409: -11,71 - 3410: -11,70 - 3441: -3,59 - 3442: -3,63 - 3443: -3,64 + 3167: -17,65 + 3168: -17,66 + 3333: -29,93 + 3334: -29,94 + 3335: -29,95 + 3336: -28,91 + 3337: -28,90 + 3338: -28,89 + 3339: -29,87 + 3340: -29,86 + 3341: -29,85 + 3342: -29,83 + 3343: -28,81 + 3344: -28,80 + 3345: -29,78 + 3346: -29,76 + 3347: -29,75 + 3348: -29,74 + 3349: -29,73 + 3350: -29,72 + 3351: -29,71 + 3352: -29,70 + 3390: -11,93 + 3391: -11,94 + 3392: -11,95 + 3393: -10,91 + 3394: -10,90 + 3395: -10,89 + 3396: -11,86 + 3397: -11,85 + 3398: -11,87 + 3399: -11,83 + 3400: -10,81 + 3401: -10,80 + 3402: -11,78 + 3403: -11,76 + 3404: -11,75 + 3405: -11,74 + 3406: -11,73 + 3407: -11,72 + 3408: -11,71 + 3409: -11,70 + 3440: -3,59 + 3441: -3,63 + 3442: -3,64 + 3443: -3,62 3444: -3,62 - 3445: -3,62 - 3446: -3,61 - 3449: -3,66 - 3500: -10,89 - 3501: -10,90 - 3502: -10,91 - 3566: -14,77 - 3568: -10,77 - 3570: -16,77 - 3576: -14,84 - 3577: -16,84 - 3578: -10,84 - 3589: -32,84 - 3590: -28,84 - 3592: -34,84 - 3597: -28,77 - 3598: -32,77 - 3599: -34,77 - 3607: 5,72 - 3608: 5,73 - 3609: 5,74 - 3610: 5,75 - 3632: 7,73 - 3633: 7,72 - 3634: 7,71 - 3636: 7,70 - 3660: 4,77 - 3661: 2,77 - 3662: 4,84 - 3664: 2,84 - 3724: -22,55 - 4167: -21,20 - 4309: 15,14 - 4310: 15,15 + 3445: -3,61 + 3448: -3,66 + 3499: -10,89 + 3500: -10,90 + 3501: -10,91 + 3565: -14,77 + 3567: -10,77 + 3569: -16,77 + 3575: -14,84 + 3576: -16,84 + 3577: -10,84 + 3588: -32,84 + 3589: -28,84 + 3591: -34,84 + 3596: -28,77 + 3597: -32,77 + 3598: -34,77 + 3606: 5,72 + 3607: 5,73 + 3608: 5,74 + 3609: 5,75 + 3631: 7,73 + 3632: 7,72 + 3633: 7,71 + 3635: 7,70 + 3659: 4,77 + 3660: 2,77 + 3661: 4,84 + 3663: 2,84 + 3723: -22,55 + 4166: -21,20 + 4308: 15,14 + 4309: 15,15 + 4339: 18,20 4340: 18,20 - 4341: 18,20 - 4342: 18,19 - 4343: 18,17 - 4344: 18,16 - 4345: 18,13 - 4346: 18,11 - 4347: 18,10 - 4348: 18,9 - 4349: 18,8 - 4350: 18,7 - 4351: 18,3 - 4352: 18,2 - 4353: 18,1 - 4354: 18,0 - 4355: 18,-1 - 4356: 18,-2 - 4357: 18,-4 - 4358: 18,-5 - 4359: 18,-6 - 4360: 18,-7 - 4361: 18,-8 - 4362: 18,-9 - 5094: 30,28 - 5095: 30,27 - 5096: 30,26 - 5101: 33,28 - 5102: 33,27 - 5103: 33,26 - 5108: 28,31 - 5127: 36,31 - 5210: 18,-6 - 5256: -29,82 + 4341: 18,19 + 4342: 18,17 + 4343: 18,16 + 4344: 18,13 + 4345: 18,11 + 4346: 18,10 + 4347: 18,9 + 4348: 18,8 + 4349: 18,7 + 4350: 18,3 + 4351: 18,2 + 4352: 18,1 + 4353: 18,0 + 4354: 18,-1 + 4355: 18,-2 + 4356: 18,-4 + 4357: 18,-5 + 4358: 18,-6 + 4359: 18,-7 + 4360: 18,-8 + 4361: 18,-9 + 5093: 30,28 + 5094: 30,27 + 5095: 30,26 + 5100: 33,28 + 5101: 33,27 + 5102: 33,26 + 5107: 28,31 + 5126: 36,31 + 5209: 18,-6 + 5255: -29,82 + 5256: -29,81 5257: -29,81 - 5258: -29,81 - 5259: -29,79 - 5260: -29,80 - 5274: -29,92 - 5275: -29,91 + 5258: -29,79 + 5259: -29,80 + 5273: -29,92 + 5274: -29,91 + 5275: -29,90 5276: -29,90 - 5277: -29,90 + 5277: -29,89 5278: -29,89 - 5279: -29,89 + 5279: -29,88 5280: -29,88 - 5281: -29,88 - 5282: -11,79 - 5283: -11,80 - 5284: -11,81 + 5281: -11,79 + 5282: -11,80 + 5283: -11,81 + 5284: -11,82 5285: -11,82 - 5286: -11,82 - 5299: -11,92 + 5298: -11,92 + 5299: -11,91 5300: -11,91 - 5301: -11,91 + 5301: -11,90 5302: -11,90 - 5303: -11,90 - 5304: -11,89 - 5305: -11,88 - 5306: -11,87 - 5377: -18,-7 - 5467: -41,11 - 5468: -41,15 - 5469: -41,22 - 5602: 15,-8 - 5612: -17,-8 + 5303: -11,89 + 5304: -11,88 + 5305: -11,87 + 5376: -18,-7 + 5466: -41,11 + 5467: -41,15 + 5468: -41,22 + 5601: 15,-8 + 5611: -17,-8 + 5614: -18,-11 5615: -18,-11 - 5616: -18,-11 - 5617: -18,-12 + 5616: -18,-12 + 5617: -18,-13 5618: -18,-13 - 5619: -18,-13 - 5620: -18,-15 - 5621: -18,-14 + 5619: -18,-15 + 5620: -18,-14 + 5621: -18,-16 5622: -18,-16 - 5623: -18,-16 - 5624: -18,-17 - 5625: -18,-18 - 5640: 15,-4 - 5779: 14,-5 - 6067: -9,-16 - 6068: -9,-15 - 6069: -9,-14 - 6070: -9,-13 - 6140: -17,-21 - 6141: -17,-20 - 6142: -17,-19 - 6156: -17,-19 - 6254: -4,-14 - 6255: -4,-15 - 6258: -4,-17 - 6267: -3,-21 - 6268: -3,-20 - 6269: -3,-19 - 6270: 1,-19 - 6271: 1,-20 - 6272: 1,-21 - 6285: 15,-21 - 6286: 15,-20 - 6287: 15,-19 - 6292: 18,-13 - 6293: 18,-14 - 6294: 18,-15 - 6295: 18,-16 - 6296: 18,-17 - 6297: 18,-18 - 6298: 18,-19 - 6299: 18,-21 - 6325: 4,-16 - 6326: 4,-15 - 6356: 10,-12 - 6357: 10,-13 - 6358: 10,-14 - 6359: 10,-15 - 6388: 14,-17 - 6389: 14,-16 - 6391: 11,-16 - 6394: 14,-15 - 6439: -21,-20 - 6629: -21,-3 - 6630: -21,-2 - 6782: -21,11 + 5623: -18,-17 + 5624: -18,-18 + 5639: 15,-4 + 5778: 14,-5 + 6066: -9,-16 + 6067: -9,-15 + 6068: -9,-14 + 6069: -9,-13 + 6139: -17,-21 + 6140: -17,-20 + 6141: -17,-19 + 6155: -17,-19 + 6253: -4,-14 + 6254: -4,-15 + 6257: -4,-17 + 6266: -3,-21 + 6267: -3,-20 + 6268: -3,-19 + 6269: 1,-19 + 6270: 1,-20 + 6271: 1,-21 + 6284: 15,-21 + 6285: 15,-20 + 6286: 15,-19 + 6291: 18,-13 + 6292: 18,-14 + 6293: 18,-15 + 6294: 18,-16 + 6295: 18,-17 + 6296: 18,-18 + 6297: 18,-19 + 6298: 18,-21 + 6324: 4,-16 + 6325: 4,-15 + 6355: 10,-12 + 6356: 10,-13 + 6357: 10,-14 + 6358: 10,-15 + 6387: 14,-17 + 6388: 14,-16 + 6390: 11,-16 + 6393: 14,-15 + 6438: -21,-20 + 6628: -21,-3 + 6629: -21,-2 + 6781: -21,11 + 6782: -21,12 6783: -21,12 - 6784: -21,12 - 6872: -34,10 + 6871: -34,10 + 6872: -34,11 6873: -34,11 6874: -34,11 6875: -34,11 - 6876: -34,11 + 6876: -34,12 6877: -34,12 - 6878: -34,12 - 6879: -34,13 + 6878: -34,13 + 6879: -34,14 6880: -34,14 - 6881: -34,14 - 6910: -22,13 - 6911: -22,14 + 6909: -22,13 + 6910: -22,14 + 6911: -22,10 6912: -22,10 - 6913: -22,10 - 6914: -22,9 + 6913: -22,9 + 6947: -22,-16 6948: -22,-16 - 6949: -22,-16 - 6950: -22,-17 - 7045: 19,4 - 7046: 19,5 - 7047: 19,6 - 7055: 24,9 - 7093: 19,-12 - 7094: 19,-11 - 7095: 19,-10 - 7096: 26,-12 - 7097: 26,-11 - 7098: 26,-10 - 7112: 31,-11 - 7158: 31,-5 - 7171: 24,-8 - 7172: 24,-2 - 7196: 26,4 - 7197: 26,5 - 7198: 26,6 + 6949: -22,-17 + 7044: 19,4 + 7045: 19,5 + 7046: 19,6 + 7054: 24,9 + 7092: 19,-12 + 7093: 19,-11 + 7094: 19,-10 + 7095: 26,-12 + 7096: 26,-11 + 7097: 26,-10 + 7111: 31,-11 + 7157: 31,-5 + 7170: 24,-8 + 7171: 24,-2 + 7195: 26,4 + 7196: 26,5 + 7197: 26,6 + 7201: 32,5 7202: 32,5 7203: 32,5 - 7204: 32,5 - 7288: 28,9 - 7289: 28,10 - 7290: 28,11 - 7357: 32,5 - 7979: 81,-21 - 7980: 81,-20 - 7985: 82,-19 - 7986: 82,-22 - 7987: 78,-22 - 7988: 76,-22 - 7989: 76,-19 - 7990: 78,-19 - 8004: 64,-19 - 8005: 64,-22 - 8147: 32,-10 - 8148: 32,-12 - 8160: 32,-16 - 8167: 32,-16 - 8205: 33,-7 - 8268: 41,-17 - 8269: 41,-16 - 8270: 41,-15 - 8271: 41,-14 - 8272: 41,-13 - 8273: 41,-11 - 8274: 41,-10 - 8275: 41,-9 - 8331: 39,-17 - 8355: 41,-20 - 8395: 42,-21 + 7287: 28,9 + 7288: 28,10 + 7289: 28,11 + 7356: 32,5 + 7978: 81,-21 + 7979: 81,-20 + 7984: 82,-19 + 7985: 82,-22 + 7986: 78,-22 + 7987: 76,-22 + 7988: 76,-19 + 7989: 78,-19 + 8003: 64,-19 + 8004: 64,-22 + 8146: 32,-10 + 8147: 32,-12 + 8159: 32,-16 + 8166: 32,-16 + 8204: 33,-7 + 8267: 41,-17 + 8268: 41,-16 + 8269: 41,-15 + 8270: 41,-14 + 8271: 41,-13 + 8272: 41,-11 + 8273: 41,-10 + 8274: 41,-9 + 8330: 39,-17 + 8354: 41,-20 + 8394: 42,-21 + 8395: 42,-19 8396: 42,-19 - 8397: 42,-19 - 8419: 53,-20 - 8449: 54,-19 - 8450: 54,-21 + 8418: 53,-20 + 8448: 54,-19 + 8449: 54,-21 + 8461: 56,-19 8462: 56,-19 - 8463: 56,-19 - 8561: 54,-11 - 8562: 54,-29 + 8560: 54,-11 + 8561: 54,-29 + 8612: 63,-30 8613: 63,-30 - 8614: 63,-30 + 8614: 63,-28 8615: 63,-28 - 8616: 63,-28 - 8617: 63,-29 + 8616: 63,-29 + 8617: 63,-26 8618: 63,-26 - 8619: 63,-26 - 8620: 63,-27 - 8621: 63,-24 - 8622: 63,-25 - 8623: 63,-21 - 8624: 63,-18 - 8625: 63,-17 - 8626: 63,-16 + 8619: 63,-27 + 8620: 63,-24 + 8621: 63,-25 + 8622: 63,-21 + 8623: 63,-18 + 8624: 63,-17 + 8625: 63,-16 + 8626: 63,-15 8627: 63,-15 - 8628: 63,-15 - 8629: 63,-14 - 8630: 63,-13 - 8631: 63,-12 - 8632: 63,-11 + 8628: 63,-14 + 8629: 63,-13 + 8630: 63,-12 + 8631: 63,-11 + 8650: 63,-23 8651: 63,-23 - 8652: 63,-23 - 8653: 63,-20 - 8806: 0,-23 - 8807: 0,-24 - 8808: 0,-27 - 8809: 0,-28 - 8816: -3,-25 - 8817: -3,-26 + 8652: 63,-20 + 8805: 0,-23 + 8806: 0,-24 + 8807: 0,-27 + 8808: 0,-28 + 8815: -3,-25 + 8816: -3,-26 + 8832: 0,-30 8833: 0,-30 - 8834: 0,-30 - 8835: 0,-31 - 8836: 0,-32 - 8837: 0,-33 - 8886: -13,-28 + 8834: 0,-31 + 8835: 0,-32 + 8836: 0,-33 + 8885: -13,-28 + 8893: -5,-28 8894: -5,-28 - 8895: -5,-28 + 8895: -5,-27 8896: -5,-27 - 8897: -5,-27 - 8912: -13,-23 - 8913: -6,-23 - 8914: -6,-23 - 8954: -5,-28 - 9151: 2,-65 - 9152: 2,-65 - 9228: 2,-82 - 9229: 2,-81 - 9230: 2,-80 - 9231: 2,-78 - 9232: 2,-79 - 9233: 2,-79 - 9234: 2,-74 - 9235: 2,-74 - 9236: 2,-73 - 9237: 2,-72 - 9238: 2,-71 - 9239: 2,-70 - 9240: 2,-69 - 9241: -9,-68 - 9242: -9,-67 - 9243: -9,-73 - 9244: -9,-74 - 9245: -9,-72 - 9257: -2,-71 - 9258: -2,-69 - 9259: -2,-70 - 9285: 1,-61 - 9286: 1,-59 - 9305: 0,-38 - 9306: 0,-40 - 9307: 0,-40 - 9308: 0,-41 - 9309: 0,-41 - 9310: 0,-42 - 9311: 0,-43 - 9312: 0,-45 - 9313: 0,-45 - 9314: 0,-48 - 9315: 0,-48 - 9316: 0,-49 - 9317: 0,-50 - 9318: 0,-52 - 9319: 0,-53 - 9320: 0,-54 - 9352: 0,-46 - 9353: 0,-46 - 9354: 0,-47 - 9355: 0,-55 - 9356: 0,-55 - 9357: 0,-56 - 9436: -39,-15 - 10398: 11,-52 - 10399: 11,-51 - 10400: 11,-50 - 10563: 4,-86 - 10564: 4,-86 - 10565: 4,-85 - 10566: 4,-84 - 10612: 49,-39 - 10613: 49,-40 - 10614: 49,-41 - 10615: 49,-43 - 10616: 49,-44 - 10639: 42,-42 - 11226: -58,-36 - 11227: -58,-36 - 11228: -58,-37 - 11229: -58,-37 - 11230: -58,-38 - 11247: -61,-43 - 11248: -58,-43 - 11249: -58,-43 - 11329: -6,-86 - 11330: -6,-86 - 11331: -6,-84 - 11332: -6,-85 - 11333: -6,-85 - 11334: -4,-86 - 11335: -4,-85 - 11336: -4,-85 - 11337: -4,-84 - 11338: 2,-86 - 11339: 2,-85 - 11340: 2,-84 - 11364: -12,-67 - 11365: -12,-66 - 11366: -12,-78 - 11372: -3,-48 - 11377: -3,-40 - 11378: -3,-41 - 11380: -4,-35 - 11389: -13,-30 - 11390: -13,-31 - 11391: -13,-32 - 11823: -37,-52 - 11831: -41,-55 - 11832: -41,-54 - 11833: -41,-54 - 11842: -23,-51 - 11843: -23,-51 - 11844: -23,-52 - 11845: -23,-53 - 12347: -4,-60 - 12724: -45,9 - 12726: -45,18 - 12840: -45,9 - 12842: -44,23 - 13389: -36,-62 - 14377: -46,14 - 14378: -46,12 - 14902: 6,22 - 14903: 6,23 - 14904: 6,24 - 14913: 18,23 - 14914: 18,22 - 14943: -8,22 - 14944: -8,23 - 14945: -8,24 - 15329: -8,-70 - 15378: -40,4 - 15379: -40,5 - 15380: -40,6 - 15385: -41,8 - 15386: -41,9 - 15387: -41,10 - 15388: -41,14 - 15389: -41,13 - 15390: -41,12 - 15391: -41,16 - 15392: -41,17 - 15393: -41,18 - 15394: -41,18 - 15395: -41,19 - 15396: -41,20 - 15397: -41,21 - 15774: 89,1 - 15775: 89,0 - 15785: 75,1 - 16682: -55,-13 - 16683: -55,-14 - 16684: -55,-14 - 16700: -62,-17 - 16701: -60,-17 - 16802: -52,4 - 16803: -52,5 - 16804: -52,6 - 16818: -56,-7 - 16819: -56,-9 - 17151: -46,12 - 17154: -46,14 - 17494: 7,84 - 17495: 7,83 - 17501: 8,79 - 17502: 8,78 - 17503: 8,77 - 17892: -44,23 - 18447: -17,-9 - 18448: -17,-10 - 18516: 15,-10 - 18517: 15,-9 - 18518: 15,-8 - 19855: -28,10 - 19856: -28,11 - 19857: -28,11 - 19858: -28,13 - 19859: -28,12 - 19979: -17,4 - 19980: -17,-1 - 19992: -16,0 - 19993: -16,1 - 19994: -16,2 - 19995: -16,3 - 20039: 70,25 - 20040: 70,24 - 20041: 70,23 - 20042: 70,22 - 20058: 60,25 - 20106: -21,-3 - 20107: -21,-2 - 20115: -21,4 - 20116: -21,5 - 20117: -21,6 - 20121: -18,5 - 20122: -18,3 - 20123: -18,2 - 20124: -18,2 - 20125: -18,1 - 20126: -18,0 - 20127: -18,-3 - 20128: -18,-2 - 20129: -18,-4 - 20130: -18,-4 - 20131: -18,-5 - 20132: -18,-6 - 20133: -18,-6 - 20140: -18,8 - 20141: -18,8 - 20142: -18,9 - 20143: -18,10 - 20144: -18,11 - 20145: -18,12 - 20146: -18,12 - 20147: -18,13 - 20148: -18,11 - 20149: -18,10 - 20150: -18,9 - 20151: -18,8 - 20152: -18,11 - 20153: -18,11 - 20154: -18,12 - 20155: -18,13 - 20156: -18,16 - 20157: -18,17 - 20158: -18,18 - 20159: -18,19 - 20160: -18,19 - 20161: -18,20 - 20177: -21,11 - 20178: -21,12 - 20179: -21,17 - 20180: -21,20 - 20181: -21,11 - 20182: -21,12 - 20184: -21,6 - 20185: -21,5 - 20186: -21,4 - 21331: 18,12 - 23925: -32,0 - 23926: -32,-1 - 23927: -32,-5 - 23928: -32,-5 - 23929: -32,-5 - 23930: -32,-6 - 23931: -32,-7 - 23932: -32,-8 - 23933: -32,-8 - 23934: -32,-4 - 23935: -32,-9 - 23936: -28,-12 - 23937: -28,-13 - 23938: -28,-13 - 23939: -28,-14 - 23940: -28,-15 - 23941: -28,-15 - 23942: -28,-16 - 24007: -32,2 - 24042: -35,-15 - 24043: -35,-14 - 24044: -35,-13 - 24045: -35,-12 + 8910: -13,-23 + 8911: -6,-23 + 8912: -6,-23 + 8952: -5,-28 + 9140: 2,-65 + 9141: 2,-65 + 9217: 2,-82 + 9218: 2,-81 + 9219: 2,-80 + 9220: 2,-78 + 9221: 2,-79 + 9222: 2,-79 + 9223: 2,-74 + 9224: 2,-74 + 9225: 2,-73 + 9226: 2,-72 + 9227: 2,-71 + 9228: 2,-70 + 9229: 2,-69 + 9230: -9,-68 + 9231: -9,-67 + 9232: -9,-73 + 9233: -9,-74 + 9234: -9,-72 + 9246: -2,-71 + 9247: -2,-69 + 9248: -2,-70 + 9274: 1,-61 + 9275: 1,-59 + 9294: 0,-38 + 9295: 0,-40 + 9296: 0,-40 + 9297: 0,-41 + 9298: 0,-41 + 9299: 0,-42 + 9300: 0,-43 + 9301: 0,-45 + 9302: 0,-45 + 9303: 0,-48 + 9304: 0,-48 + 9305: 0,-49 + 9306: 0,-50 + 9307: 0,-52 + 9308: 0,-53 + 9309: 0,-54 + 9341: 0,-46 + 9342: 0,-46 + 9343: 0,-47 + 9344: 0,-55 + 9345: 0,-55 + 9346: 0,-56 + 9424: -39,-15 + 10336: 11,-52 + 10337: 11,-51 + 10338: 11,-50 + 10501: 4,-86 + 10502: 4,-86 + 10503: 4,-85 + 10504: 4,-84 + 10550: 49,-39 + 10551: 49,-40 + 10552: 49,-41 + 10553: 49,-43 + 10554: 49,-44 + 10577: 42,-42 + 11164: -58,-36 + 11165: -58,-36 + 11166: -58,-37 + 11167: -58,-37 + 11168: -58,-38 + 11185: -61,-43 + 11186: -58,-43 + 11187: -58,-43 + 11267: -6,-86 + 11268: -6,-86 + 11269: -6,-84 + 11270: -6,-85 + 11271: -6,-85 + 11272: -4,-86 + 11273: -4,-85 + 11274: -4,-85 + 11275: -4,-84 + 11276: 2,-86 + 11277: 2,-85 + 11278: 2,-84 + 11302: -12,-67 + 11303: -12,-66 + 11304: -12,-78 + 11310: -3,-48 + 11315: -3,-40 + 11316: -3,-41 + 11318: -4,-35 + 11327: -13,-30 + 11328: -13,-31 + 11329: -13,-32 + 11761: -37,-52 + 11769: -41,-55 + 11770: -41,-54 + 11771: -41,-54 + 11780: -23,-51 + 11781: -23,-51 + 11782: -23,-52 + 11783: -23,-53 + 12285: -4,-60 + 12661: -45,9 + 12663: -45,18 + 12777: -45,9 + 12779: -44,23 + 13326: -36,-62 + 14314: -46,14 + 14315: -46,12 + 14839: 6,22 + 14840: 6,23 + 14841: 6,24 + 14850: 18,23 + 14851: 18,22 + 14880: -8,22 + 14881: -8,23 + 14882: -8,24 + 15266: -8,-70 + 15315: -40,4 + 15316: -40,5 + 15317: -40,6 + 15322: -41,8 + 15323: -41,9 + 15324: -41,10 + 15325: -41,14 + 15326: -41,13 + 15327: -41,12 + 15328: -41,16 + 15329: -41,17 + 15330: -41,18 + 15331: -41,18 + 15332: -41,19 + 15333: -41,20 + 15334: -41,21 + 15711: 89,1 + 15712: 89,0 + 15722: 75,1 + 16619: -55,-13 + 16620: -55,-14 + 16621: -55,-14 + 16637: -62,-17 + 16638: -60,-17 + 16739: -52,4 + 16740: -52,5 + 16741: -52,6 + 16755: -56,-7 + 16756: -56,-9 + 17088: -46,12 + 17091: -46,14 + 17431: 7,84 + 17432: 7,83 + 17438: 8,79 + 17439: 8,78 + 17440: 8,77 + 17829: -44,23 + 18384: -17,-9 + 18385: -17,-10 + 18453: 15,-10 + 18454: 15,-9 + 18455: 15,-8 + 19791: -28,10 + 19792: -28,11 + 19793: -28,11 + 19794: -28,13 + 19795: -28,12 + 19915: -17,4 + 19916: -17,-1 + 19928: -16,0 + 19929: -16,1 + 19930: -16,2 + 19931: -16,3 + 19975: 70,25 + 19976: 70,24 + 19977: 70,23 + 19978: 70,22 + 19994: 60,25 + 20042: -21,-3 + 20043: -21,-2 + 20051: -21,4 + 20052: -21,5 + 20053: -21,6 + 20057: -18,5 + 20058: -18,3 + 20059: -18,2 + 20060: -18,2 + 20061: -18,1 + 20062: -18,0 + 20063: -18,-3 + 20064: -18,-2 + 20065: -18,-4 + 20066: -18,-4 + 20067: -18,-5 + 20068: -18,-6 + 20069: -18,-6 + 20076: -18,8 + 20077: -18,8 + 20078: -18,9 + 20079: -18,10 + 20080: -18,11 + 20081: -18,12 + 20082: -18,12 + 20083: -18,13 + 20084: -18,11 + 20085: -18,10 + 20086: -18,9 + 20087: -18,8 + 20088: -18,11 + 20089: -18,11 + 20090: -18,12 + 20091: -18,13 + 20092: -18,16 + 20093: -18,17 + 20094: -18,18 + 20095: -18,19 + 20096: -18,19 + 20097: -18,20 + 20113: -21,11 + 20114: -21,12 + 20115: -21,17 + 20116: -21,20 + 20117: -21,11 + 20118: -21,12 + 20120: -21,6 + 20121: -21,5 + 20122: -21,4 + 21263: 18,12 + 23844: -32,0 + 23845: -32,-1 + 23846: -32,-5 + 23847: -32,-5 + 23848: -32,-5 + 23849: -32,-6 + 23850: -32,-7 + 23851: -32,-8 + 23852: -32,-8 + 23853: -32,-4 + 23854: -32,-9 + 23855: -28,-12 + 23856: -28,-13 + 23857: -28,-13 + 23858: -28,-14 + 23859: -28,-15 + 23860: -28,-15 + 23861: -28,-16 + 23926: -32,2 + 23961: -35,-15 + 23962: -35,-14 + 23963: -35,-13 + 23964: -35,-12 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelLineE decals: - 901: 28,-7 - 902: 28,-6 - 903: 28,-5 - 904: 28,-4 - 905: 28,-3 - 906: 28,-1 - 907: 28,0 - 919: 30,2 - 928: 28,-2 - 4053: -18,20 - 4054: -18,18 - 4055: -18,19 - 4056: -18,18 - 4057: -18,17 - 4058: -18,16 - 4059: -18,13 - 4060: -18,12 - 4061: -18,11 - 4062: -18,10 - 4063: -18,9 - 4064: -18,8 - 4077: -18,7 + 900: 28,-7 + 901: 28,-6 + 902: 28,-5 + 903: 28,-4 + 904: 28,-3 + 905: 28,-1 + 906: 28,0 + 918: 30,2 + 927: 28,-2 + 4052: -18,20 + 4053: -18,18 + 4054: -18,19 + 4055: -18,18 + 4056: -18,17 + 4057: -18,16 + 4058: -18,13 + 4059: -18,12 + 4060: -18,11 + 4061: -18,10 + 4062: -18,9 + 4063: -18,8 + 4076: -18,7 + 4077: -18,6 4078: -18,6 - 4079: -18,6 - node: color: '#00C9DAFF' id: BrickTileSteelLineN decals: - 8083: 26,-14 - 8084: 27,-14 - 8085: 29,-14 - 8086: 30,-14 - 8087: 28,-14 - 8088: 21,-14 - 8114: 27,-17 - 8115: 29,-17 - 8116: 31,-17 - 8135: 25,-19 + 8082: 26,-14 + 8083: 27,-14 + 8084: 29,-14 + 8085: 30,-14 + 8086: 28,-14 + 8087: 21,-14 + 8113: 27,-17 + 8114: 29,-17 + 8115: 31,-17 + 8134: 25,-19 - node: color: '#00FFFFFF' id: BrickTileSteelLineN decals: - 3741: -27,65 - 3742: -26,65 - 3767: -28,59 - 10220: 37,-27 - 10231: 36,-26 - 10232: 36,-26 - 10653: 70,-50 - 10654: 70,-50 - 15748: 78,3 - 15752: 77,6 - 15753: 78,6 + 3740: -27,65 + 3741: -26,65 + 3766: -28,59 + 10166: 37,-27 + 10177: 36,-26 + 10178: 36,-26 + 10591: 70,-50 + 10592: 70,-50 + 15685: 78,3 + 15689: 77,6 + 15690: 78,6 - node: color: '#52B4E9FF' id: BrickTileSteelLineN decals: - 23359: 21,-46 - 23360: 22,-46 - 23361: 23,-46 - 23374: 22,-50 - 23772: 28,-25 - 23773: 28,-25 - 23774: 32,-25 - 23782: 29,-22 - 23783: 30,-22 - 23784: 31,-22 - 23785: 30,-23 + 23286: 21,-46 + 23287: 22,-46 + 23288: 23,-46 + 23301: 22,-50 + 23692: 28,-25 + 23693: 28,-25 + 23694: 32,-25 + 23702: 29,-22 + 23703: 30,-22 + 23704: 31,-22 + 23705: 30,-23 - node: color: '#8BC9DAFF' id: BrickTileSteelLineN decals: - 3922: 19,63 + 3921: 19,63 - node: color: '#8CB7E8FF' id: BrickTileSteelLineN decals: - 9781: 21,-33 - 9782: 21,-31 - 10014: 25,-27 - 10025: 25,-25 - 10035: 28,-25 - 10036: 32,-25 - 10041: 30,-23 - 10049: 30,-22 - 10050: 29,-22 - 10051: 30,-22 - 10052: 31,-22 - 10070: 28,-25 - 10071: 32,-25 - 10121: 22,-50 - 10128: 21,-46 - 10129: 21,-46 - 10130: 22,-46 - 10131: 23,-46 - 10200: 33,-47 + 9744: 21,-33 + 9745: 21,-31 + 9960: 25,-27 + 9971: 25,-25 + 9981: 28,-25 + 9982: 32,-25 + 9987: 30,-23 + 9995: 30,-22 + 9996: 29,-22 + 9997: 30,-22 + 9998: 31,-22 + 10016: 28,-25 + 10017: 32,-25 + 10067: 22,-50 + 10074: 21,-46 + 10075: 21,-46 + 10076: 22,-46 + 10077: 23,-46 + 10146: 33,-47 - node: color: '#B18BDAFF' id: BrickTileSteelLineN decals: - 11921: -29,-33 - 11937: -27,-26 - 11938: -28,-26 - 11942: -30,-26 - 11969: -42,-31 - 11970: -42,-31 - 11971: -38,-31 - 11972: -34,-31 - 11973: -34,-31 - 12001: -40,-27 - 12009: -36,-27 - 12027: -48,-25 - 12028: -47,-25 - 12048: -46,-24 - 12050: -46,-22 - 12087: -28,-44 - 12088: -27,-44 - 12089: -26,-44 - 12090: -25,-44 - 12140: -25,-38 - 12162: -29,-43 - 12163: -24,-43 - 12317: -20,-38 - 12318: -19,-38 - 12319: -18,-38 - 16133: -64,-45 - 16134: -66,-46 - 19748: -9,-44 - 19749: -8,-44 - 19750: -8,-44 - 19751: -7,-44 - 19752: -6,-44 - - node: - color: '#CEDA8BFF' - id: BrickTileSteelLineN - decals: - 10931: 27,-66 - 10932: 28,-66 - 10933: 29,-66 - 10934: 30,-66 - 10935: 31,-66 + 11859: -29,-33 + 11907: -42,-31 + 11908: -42,-31 + 11909: -38,-31 + 11910: -34,-31 + 11911: -34,-31 + 11986: -46,-24 + 12025: -28,-44 + 12026: -27,-44 + 12027: -26,-44 + 12028: -25,-44 + 12078: -25,-38 + 12100: -29,-43 + 12101: -24,-43 + 12255: -20,-38 + 12256: -19,-38 + 12257: -18,-38 + 16070: -64,-45 + 16071: -66,-46 + 19684: -9,-44 + 19685: -8,-44 + 19686: -8,-44 + 19687: -7,-44 + 19688: -6,-44 - node: color: '#D381C9FF' id: BrickTileSteelLineN decals: - 22817: -20,-38 - 22818: -19,-38 - 22819: -18,-38 + 22749: -20,-38 + 22750: -19,-38 + 22751: -18,-38 - node: color: '#DA8B8BFF' id: BrickTileSteelLineN decals: - 7778: 58,2 - 7779: 62,2 - 7780: 66,2 - 7811: 59,5 - 7812: 57,5 - 7813: 61,5 - 7814: 63,5 - 7815: 65,5 - 7816: 67,5 - 7822: 70,6 - 7832: 58,2 - 7833: 62,2 - 7834: 66,2 - 19273: 69,7 - 19278: 69,9 - 19283: 66,6 - 19284: 62,6 - 19295: 58,6 + 7777: 58,2 + 7778: 62,2 + 7779: 66,2 + 7810: 59,5 + 7811: 57,5 + 7812: 61,5 + 7813: 63,5 + 7814: 65,5 + 7815: 67,5 + 7821: 70,6 + 7831: 58,2 + 7832: 62,2 + 7833: 66,2 + 19210: 69,7 + 19215: 69,9 + 19220: 66,6 + 19221: 62,6 + 19232: 58,6 - node: color: '#DA8BC9FF' id: BrickTileSteelLineN decals: - 3929: 20,63 + 3928: 20,63 - node: color: '#DABC8BFF' id: BrickTileSteelLineN decals: - 3709: 12,73 - 3712: 10,83 - 3717: 10,89 - 3722: 5,91 + 3708: 12,73 + 3711: 10,83 + 3716: 10,89 + 3721: 5,91 - node: color: '#DE3A3AFF' id: BrickTileSteelLineN decals: - 20288: -24,-1 - 20300: -48,7 - 20302: -48,9 - 20303: -47,9 - 20304: -46,9 - 20317: 4,-83 - 20318: 5,-79 - 20319: 5,-73 - 20320: 5,-63 - 20331: 4,-87 - 20332: 4,-83 - 20383: 9,-77 - 20384: 8,-77 - 20392: 9,-74 - 20413: 4,-58 - 20414: 5,-58 - 20415: 6,-58 - 20439: 12,-30 - 20463: 2,59 - 20483: 1,65 - 20484: 2,65 - 20501: 40,2 - 20502: 40,10 - 20513: 40,13 - 20518: 42,5 - 20519: 43,5 - 20520: 44,5 - 20521: 45,5 - 20535: 36,10 - 20536: 36,12 - 20586: 73,4 - 20625: 46,10 - 20626: 47,10 - 20627: 47,10 - 20628: 48,10 - 20654: 50,1 - 20655: 51,1 - 20656: 51,1 - 20672: 52,32 - 20673: 51,32 - 20674: 53,32 - 20675: 54,32 - 20676: 55,32 - 20677: 56,32 - 20678: 57,32 - 20686: 52,20 - 20689: 57,20 - 20734: 51,14 - 20735: 47,14 - 20747: 52,13 - 20748: 53,13 - 20749: 54,13 - 20750: 55,13 - 20751: 56,13 - 20752: 57,13 - 20753: 57,13 - 20754: 58,13 - 20755: 59,13 - 20756: 51,19 - 20757: 53,19 - 20762: 46,24 - 20829: 53,10 - 20840: 51,9 - 20841: 52,9 - 20842: 54,9 - 20843: 81,10 - 20844: 84,10 - 20845: 85,10 - 20846: 82,14 - 20847: 83,14 - 20848: 85,14 - 20849: 86,14 - 20850: 88,14 - 20851: 89,14 - 20852: 90,14 - 20853: 87,14 - 20854: 84,14 - 20867: 91,15 - 20868: 92,15 - 20869: 93,15 - 20894: 82,10 - 20906: 77,10 - 20966: 73,20 - 20973: 73,23 - 20974: 74,23 - 20991: 75,24 - 21004: 69,1 - 21005: 70,1 - 21010: 65,-2 - 21024: 70,-3 - 21036: 52,-2 - 21037: 61,-2 - 21038: 47,-2 - 21044: 47,-2 - 21060: 51,-3 - 21098: 36,7 - 21099: 35,3 - 21106: 34,6 - 21107: 35,6 - 21108: 37,6 - 21188: -19,-24 - 21189: -18,-24 - 21203: 48,-7 - 21204: 49,-7 - 21205: 50,-7 - 21206: 46,-3 - 21213: 51,-6 - 21220: 47,-7 - 21232: 57,-3 - 21234: 56,-2 - 21245: 51,1 - 21246: 50,1 - 21247: 52,1 - 21248: 53,1 - 21249: 54,1 - 21250: 55,1 - 21251: 56,1 - 21252: 57,1 - 21253: 59,1 - 21254: 60,1 - 21255: 61,1 - 21256: 63,1 - 21257: 64,1 - 21258: 64,1 - 21259: 65,1 - 21260: 67,1 - 21378: 22,22 - 21379: 23,22 - 21380: 24,22 - 21381: 25,22 - 21382: 26,22 - 21383: 27,22 - 21983: 13,33 - 23139: 11,-29 - 23140: 13,-29 - 23901: 3,58 - 23902: 1,58 + 20224: -24,-1 + 20236: -48,7 + 20238: -48,9 + 20239: -47,9 + 20240: -46,9 + 20253: 4,-83 + 20254: 5,-79 + 20255: 5,-73 + 20256: 5,-63 + 20267: 4,-87 + 20268: 4,-83 + 20319: 9,-77 + 20320: 8,-77 + 20328: 9,-74 + 20349: 4,-58 + 20350: 5,-58 + 20351: 6,-58 + 20373: 12,-30 + 20395: 2,59 + 20415: 1,65 + 20416: 2,65 + 20433: 40,2 + 20434: 40,10 + 20445: 40,13 + 20450: 42,5 + 20451: 43,5 + 20452: 44,5 + 20453: 45,5 + 20467: 36,10 + 20468: 36,12 + 20518: 73,4 + 20557: 46,10 + 20558: 47,10 + 20559: 47,10 + 20560: 48,10 + 20586: 50,1 + 20587: 51,1 + 20588: 51,1 + 20604: 52,32 + 20605: 51,32 + 20606: 53,32 + 20607: 54,32 + 20608: 55,32 + 20609: 56,32 + 20610: 57,32 + 20618: 52,20 + 20621: 57,20 + 20666: 51,14 + 20667: 47,14 + 20679: 52,13 + 20680: 53,13 + 20681: 54,13 + 20682: 55,13 + 20683: 56,13 + 20684: 57,13 + 20685: 57,13 + 20686: 58,13 + 20687: 59,13 + 20688: 51,19 + 20689: 53,19 + 20694: 46,24 + 20761: 53,10 + 20772: 51,9 + 20773: 52,9 + 20774: 54,9 + 20775: 81,10 + 20776: 84,10 + 20777: 85,10 + 20778: 82,14 + 20779: 83,14 + 20780: 85,14 + 20781: 86,14 + 20782: 88,14 + 20783: 89,14 + 20784: 90,14 + 20785: 87,14 + 20786: 84,14 + 20799: 91,15 + 20800: 92,15 + 20801: 93,15 + 20826: 82,10 + 20838: 77,10 + 20898: 73,20 + 20905: 73,23 + 20906: 74,23 + 20923: 75,24 + 20936: 69,1 + 20937: 70,1 + 20942: 65,-2 + 20956: 70,-3 + 20968: 52,-2 + 20969: 61,-2 + 20970: 47,-2 + 20976: 47,-2 + 20992: 51,-3 + 21030: 36,7 + 21031: 35,3 + 21038: 34,6 + 21039: 35,6 + 21040: 37,6 + 21120: -19,-24 + 21121: -18,-24 + 21135: 48,-7 + 21136: 49,-7 + 21137: 50,-7 + 21138: 46,-3 + 21145: 51,-6 + 21152: 47,-7 + 21164: 57,-3 + 21166: 56,-2 + 21177: 51,1 + 21178: 50,1 + 21179: 52,1 + 21180: 53,1 + 21181: 54,1 + 21182: 55,1 + 21183: 56,1 + 21184: 57,1 + 21185: 59,1 + 21186: 60,1 + 21187: 61,1 + 21188: 63,1 + 21189: 64,1 + 21190: 64,1 + 21191: 65,1 + 21192: 67,1 + 21310: 22,22 + 21311: 23,22 + 21312: 24,22 + 21313: 25,22 + 21314: 26,22 + 21315: 27,22 + 21915: 13,33 + 23069: 11,-29 + 23070: 13,-29 + 23820: 3,58 + 23821: 1,58 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 2228: -20,54 - 2229: -19,54 - 2230: -18,54 - 2235: -16,52 + 2227: -20,54 + 2228: -19,54 + 2229: -18,54 + 2234: -16,52 + 2235: -22,52 2236: -22,52 - 2237: -22,52 - 2311: -24,39 - 2312: -25,39 - 2313: -26,39 - 2314: -27,39 - 2377: -31,32 - 2395: -32,37 - 2734: -13,50 - 2735: -11,50 - 2736: -10,50 - 2737: -9,50 - 2738: -8,50 - 2739: -7,50 - 2740: -5,50 - 2741: -4,50 - 2756: -2,48 - 2787: -3,46 - 2791: -4,47 - 2805: -6,28 - 2818: -27,43 - 2819: -28,43 - 2820: -29,43 - 2832: -31,43 - 2839: -30,39 - 3047: -20,54 - 3048: -19,54 - 3049: -18,54 - 3050: 1,59 - 3054: -1,55 - 3057: 1,55 - 3058: 2,55 - 3059: 1,58 - 3060: 0,58 - 3061: -1,58 - 3067: -16,58 - 3068: -15,58 - 3069: -14,58 - 3070: -13,58 - 3071: -12,58 - 3072: -11,58 - 3073: -10,58 - 3074: -9,58 - 3075: -8,58 - 3354: -28,69 - 3355: -27,69 - 3356: -26,69 - 3357: -25,69 - 3358: -24,69 - 3359: -23,69 + 2310: -24,39 + 2311: -25,39 + 2312: -26,39 + 2313: -27,39 + 2376: -31,32 + 2394: -32,37 + 2733: -13,50 + 2734: -11,50 + 2735: -10,50 + 2736: -9,50 + 2737: -8,50 + 2738: -7,50 + 2739: -5,50 + 2740: -4,50 + 2755: -2,48 + 2786: -3,46 + 2790: -4,47 + 2804: -6,28 + 2817: -27,43 + 2818: -28,43 + 2819: -29,43 + 2831: -31,43 + 2838: -30,39 + 3046: -20,54 + 3047: -19,54 + 3048: -18,54 + 3049: 1,59 + 3053: -1,55 + 3056: 1,55 + 3057: 2,55 + 3058: 1,58 + 3059: 0,58 + 3060: -1,58 + 3066: -16,58 + 3067: -15,58 + 3068: -14,58 + 3069: -13,58 + 3070: -12,58 + 3071: -11,58 + 3072: -10,58 + 3073: -9,58 + 3074: -8,58 + 3353: -28,69 + 3354: -27,69 + 3355: -26,69 + 3356: -25,69 + 3357: -24,69 + 3358: -23,69 + 3359: -21,69 3360: -21,69 - 3361: -21,69 - 3362: -22,69 - 3363: -19,69 - 3364: -20,69 - 3365: -18,69 - 3366: -17,69 - 3367: -16,69 - 3368: -15,69 - 3369: -14,69 - 3412: -10,69 - 3413: -9,69 + 3361: -22,69 + 3362: -19,69 + 3363: -20,69 + 3364: -18,69 + 3365: -17,69 + 3366: -16,69 + 3367: -15,69 + 3368: -14,69 + 3411: -10,69 + 3412: -9,69 + 3413: -8,69 3414: -8,69 - 3415: -8,69 - 3416: -7,69 - 3417: -5,69 - 3418: -6,69 - 3419: -5,69 - 3420: -4,69 - 3421: -3,69 - 3439: -2,58 - 3451: 6,66 - 3543: -2,69 - 3544: -1,69 - 3545: 0,69 - 3546: 1,69 - 3547: 2,69 - 3548: 3,69 - 3549: 4,69 - 3572: -9,77 - 3574: -15,77 - 3584: -15,84 - 3585: -9,84 - 3594: -33,84 - 3595: -27,84 - 3605: -33,77 - 3606: -27,77 - 3611: 6,71 - 3666: 3,84 - 3669: 3,77 - 3682: 6,66 - 3726: -25,66 - 3732: -30,66 - 5107: 31,29 - 5110: 30,32 - 5111: 31,32 - 5112: 32,32 - 5113: 33,32 - 5114: 34,32 - 5122: 35,29 - 5358: 14,-8 - 5359: 13,-8 - 5360: 9,-8 - 5361: 7,-8 - 5362: 6,-8 - 5363: 2,-8 - 5364: 1,-8 - 5365: -2,-8 + 3415: -7,69 + 3416: -5,69 + 3417: -6,69 + 3418: -5,69 + 3419: -4,69 + 3420: -3,69 + 3438: -2,58 + 3450: 6,66 + 3542: -2,69 + 3543: -1,69 + 3544: 0,69 + 3545: 1,69 + 3546: 2,69 + 3547: 3,69 + 3548: 4,69 + 3571: -9,77 + 3573: -15,77 + 3583: -15,84 + 3584: -9,84 + 3593: -33,84 + 3594: -27,84 + 3604: -33,77 + 3605: -27,77 + 3610: 6,71 + 3665: 3,84 + 3668: 3,77 + 3681: 6,66 + 3725: -25,66 + 3731: -30,66 + 5106: 31,29 + 5109: 30,32 + 5110: 31,32 + 5111: 32,32 + 5112: 33,32 + 5113: 34,32 + 5121: 35,29 + 5357: 14,-8 + 5358: 13,-8 + 5359: 9,-8 + 5360: 7,-8 + 5361: 6,-8 + 5362: 2,-8 + 5363: 1,-8 + 5364: -2,-8 + 5365: -3,-8 5366: -3,-8 - 5367: -3,-8 - 5368: -4,-8 - 5369: -5,-8 - 5370: -6,-8 - 5371: -11,-8 - 5372: -12,-8 - 5373: -14,-8 - 5374: -15,-8 + 5367: -4,-8 + 5368: -5,-8 + 5369: -6,-8 + 5370: -11,-8 + 5371: -12,-8 + 5372: -14,-8 + 5373: -15,-8 + 5374: -16,-8 5375: -16,-8 - 5376: -16,-8 - 5425: -29,6 + 5424: -29,6 + 5425: -28,6 5426: -28,6 - 5427: -28,6 + 5427: -27,6 5428: -27,6 - 5429: -27,6 + 5429: -24,6 5430: -24,6 - 5431: -24,6 + 5431: -23,6 5432: -23,6 - 5433: -23,6 + 5433: -22,6 5434: -22,6 - 5435: -22,6 - 5456: -39,6 - 5457: -38,6 - 5458: -37,6 - 5459: -35,6 + 5455: -39,6 + 5456: -38,6 + 5457: -37,6 + 5458: -35,6 + 5459: -34,6 5460: -34,6 - 5461: -34,6 - 5462: -33,6 - 5463: -32,6 - 5466: -30,6 - 5471: -41,23 - 5518: -20,7 - 5519: -19,7 - 5520: -18,7 - 5537: -20,-7 - 5538: -19,-7 - 5539: -18,-7 - 5605: 12,-8 - 5606: 5,-8 - 5607: 0,-8 - 5608: -7,-8 - 5609: -8,-8 - 5610: -9,-8 - 5611: -13,-8 - 5768: 9,-4 - 5769: 10,-4 - 5770: 11,-4 - 5775: 13,-4 - 5776: 14,-4 - 5787: 8,-4 - 5792: 10,-7 - 5793: 11,-7 - 5794: 8,-7 - 6078: -13,-18 - 6079: -12,-18 - 6080: -11,-18 - 6086: -10,-19 - 6087: -9,-19 - 6088: -7,-19 - 6089: -6,-19 - 6090: -5,-19 - 6091: -2,-19 - 6092: -1,-19 - 6093: 0,-19 - 6094: 2,-19 - 6095: 4,-19 - 6096: 5,-19 - 6097: 6,-19 - 6098: 3,-19 - 6099: 7,-19 - 6100: 9,-19 - 6101: 10,-19 - 6102: 11,-19 - 6118: 16,-7 - 6119: 17,-7 - 6120: 18,-7 - 6131: 16,7 - 6132: 17,7 - 6133: 18,7 - 6134: -14,-19 - 6135: -15,-19 - 6136: -16,-19 - 6247: -5,-14 - 6260: -4,-18 - 6328: 3,-14 - 6365: 8,-18 - 6382: 12,-18 - 6383: 13,-18 - 6384: 14,-18 + 5461: -33,6 + 5462: -32,6 + 5465: -30,6 + 5470: -41,23 + 5517: -20,7 + 5518: -19,7 + 5519: -18,7 + 5536: -20,-7 + 5537: -19,-7 + 5538: -18,-7 + 5604: 12,-8 + 5605: 5,-8 + 5606: 0,-8 + 5607: -7,-8 + 5608: -8,-8 + 5609: -9,-8 + 5610: -13,-8 + 5767: 9,-4 + 5768: 10,-4 + 5769: 11,-4 + 5774: 13,-4 + 5775: 14,-4 + 5786: 8,-4 + 5791: 10,-7 + 5792: 11,-7 + 5793: 8,-7 + 6077: -13,-18 + 6078: -12,-18 + 6079: -11,-18 + 6085: -10,-19 + 6086: -9,-19 + 6087: -7,-19 + 6088: -6,-19 + 6089: -5,-19 + 6090: -2,-19 + 6091: -1,-19 + 6092: 0,-19 + 6093: 2,-19 + 6094: 4,-19 + 6095: 5,-19 + 6096: 6,-19 + 6097: 3,-19 + 6098: 7,-19 + 6099: 9,-19 + 6100: 10,-19 + 6101: 11,-19 + 6117: 16,-7 + 6118: 17,-7 + 6119: 18,-7 + 6130: 16,7 + 6131: 17,7 + 6132: 18,7 + 6133: -14,-19 + 6134: -15,-19 + 6135: -16,-19 + 6246: -5,-14 + 6259: -4,-18 + 6327: 3,-14 + 6364: 8,-18 + 6381: 12,-18 + 6382: 13,-18 + 6383: 14,-18 + 6397: 13,-15 6398: 13,-15 - 6399: 13,-15 - 6627: -33,3 - 6628: -32,3 - 6697: -23,3 - 6801: -42,2 - 6886: -36,7 + 6626: -33,3 + 6627: -32,3 + 6696: -23,3 + 6800: -42,2 + 6885: -36,7 + 6893: -36,17 6894: -36,17 - 6895: -36,17 + 6901: -36,19 6902: -36,19 - 6903: -36,19 - 6906: -26,7 - 6907: -25,7 - 6917: -23,15 - 7023: 20,6 - 7024: 21,6 - 7030: 23,6 - 7031: 24,6 - 7032: 25,6 - 7059: 21,10 - 7060: 23,10 - 7066: 22,7 - 7078: 20,-10 - 7079: 21,-10 - 7080: 23,-10 - 7081: 24,-10 - 7082: 25,-10 - 7107: 27,-10 - 7108: 28,-10 - 7109: 29,-10 - 7110: 31,-10 - 7111: 30,-10 - 7118: 22,3 - 7136: 26,2 - 7137: 27,2 - 7138: 28,2 - 7139: 29,2 - 7143: 25,-7 - 7144: 27,-7 - 7145: 26,-7 - 7155: 30,-7 - 7156: 29,-7 - 7175: 30,3 - 7182: 27,6 - 7183: 28,6 - 7184: 30,6 - 7185: 31,6 - 7297: 29,12 - 7298: 30,12 + 6905: -26,7 + 6906: -25,7 + 6916: -23,15 + 7022: 20,6 + 7023: 21,6 + 7029: 23,6 + 7030: 24,6 + 7031: 25,6 + 7058: 21,10 + 7059: 23,10 + 7065: 22,7 + 7077: 20,-10 + 7078: 21,-10 + 7079: 23,-10 + 7080: 24,-10 + 7081: 25,-10 + 7106: 27,-10 + 7107: 28,-10 + 7108: 29,-10 + 7109: 31,-10 + 7110: 30,-10 + 7117: 22,3 + 7135: 26,2 + 7136: 27,2 + 7137: 28,2 + 7138: 29,2 + 7142: 25,-7 + 7143: 27,-7 + 7144: 26,-7 + 7154: 30,-7 + 7155: 29,-7 + 7174: 30,3 + 7181: 27,6 + 7182: 28,6 + 7183: 30,6 + 7184: 31,6 + 7296: 29,12 + 7297: 30,12 + 7298: 31,12 7299: 31,12 - 7300: 31,12 - 7301: 32,12 - 7973: 79,-19 - 7974: 81,-19 + 7300: 32,12 + 7972: 79,-19 + 7973: 81,-19 + 7974: 80,-19 7975: 80,-19 - 7976: 80,-19 + 7976: 77,-19 7977: 77,-19 - 7978: 77,-19 - 7983: 77,-22 - 8000: 65,-22 - 8002: 65,-19 - 8082: 25,-13 + 7982: 77,-22 + 7999: 65,-22 + 8001: 65,-19 + 8081: 25,-13 + 8279: 41,-8 8280: 41,-8 - 8281: 41,-8 - 8282: 40,-8 - 8283: 39,-8 - 8284: 38,-8 + 8281: 40,-8 + 8282: 39,-8 + 8283: 38,-8 + 8284: 34,-8 8285: 34,-8 - 8286: 34,-8 - 8287: 35,-8 - 8288: 37,-8 - 8289: 36,-8 - 8328: 39,-18 - 8329: 41,-18 - 8337: 40,-19 - 8371: 43,-19 - 8372: 44,-19 + 8286: 35,-8 + 8287: 37,-8 + 8288: 36,-8 + 8327: 39,-18 + 8328: 41,-18 + 8336: 40,-19 + 8370: 43,-19 + 8371: 44,-19 + 8372: 45,-19 8373: 45,-19 - 8374: 45,-19 - 8375: 48,-19 + 8374: 48,-19 + 8375: 49,-19 8376: 49,-19 - 8377: 49,-19 + 8377: 50,-19 8378: 50,-19 8379: 50,-19 8380: 50,-19 - 8381: 50,-19 + 8381: 51,-19 8382: 51,-19 - 8383: 51,-19 + 8383: 53,-19 8384: 53,-19 - 8385: 53,-19 + 8404: 44,-22 8405: 44,-22 - 8406: 44,-22 + 8406: 48,-22 8407: 48,-22 - 8408: 48,-22 - 8409: 52,-22 - 8634: 62,-10 - 8635: 57,-10 - 8638: 58,-11 - 8639: 59,-11 - 8640: 60,-11 - 8641: 56,-10 - 8772: -14,-22 - 8773: -13,-22 + 8408: 52,-22 + 8633: 62,-10 + 8634: 57,-10 + 8637: 58,-11 + 8638: 59,-11 + 8639: 60,-11 + 8640: 56,-10 + 8771: -14,-22 + 8772: -13,-22 + 8773: -7,-22 8774: -7,-22 - 8775: -7,-22 - 8776: -6,-22 + 8775: -6,-22 + 8776: -2,-22 8777: -2,-22 - 8778: -2,-22 - 8779: -1,-22 - 8780: 0,-22 - 8781: 4,-22 - 8782: 5,-22 - 8783: 11,-22 - 8784: 12,-22 - 8803: -2,-29 - 8804: -1,-29 - 8805: 0,-29 - 8850: -2,-37 - 8851: -1,-37 + 8778: -1,-22 + 8779: 0,-22 + 8780: 4,-22 + 8781: 5,-22 + 8782: 11,-22 + 8783: 12,-22 + 8802: -2,-29 + 8803: -1,-29 + 8804: 0,-29 + 8849: -2,-37 + 8850: -1,-37 + 8851: 0,-37 8852: 0,-37 - 8853: 0,-37 - 8898: -12,-24 + 8897: -12,-24 + 8898: -11,-24 8899: -11,-24 - 8900: -11,-24 + 8900: -10,-24 8901: -10,-24 - 8902: -10,-24 - 8903: -9,-24 - 8904: -8,-24 - 8906: -15,-24 - 8907: -5,-24 - 8908: -4,-24 - 8950: -4,-24 - 9149: 1,-64 - 9150: 1,-64 - 9179: -8,-64 - 9180: -8,-64 - 9181: -7,-64 - 9182: -7,-64 - 9183: -6,-64 - 9184: -6,-64 - 9185: -5,-64 - 9186: -5,-64 - 9187: -4,-64 - 9188: -4,-64 - 9189: -3,-64 - 9190: -9,-64 - 9246: -8,-75 - 9247: -7,-75 - 9248: -6,-75 - 9249: -2,-75 - 9250: -1,-75 - 9251: -3,-75 - 9252: -8,-69 - 9253: -8,-69 - 9254: -1,-69 - 9276: -2,-63 - 9277: -1,-63 - 9278: 0,-63 - 9361: -2,-57 - 9362: -1,-57 - 9363: -1,-57 - 9364: 0,-57 - 9427: -40,-14 - 9428: -41,-14 - 9429: -41,-14 - 10370: 3,-50 - 10371: 4,-50 - 10372: 4,-50 - 10373: 8,-50 - 10374: 9,-50 - 10375: 9,-50 - 10376: 10,-50 - 10377: 11,-50 - 10558: 4,-87 - 10583: 55,-43 - 10607: 44,-38 - 10608: 45,-38 - 10609: 46,-38 - 10610: 47,-38 - 10611: 48,-38 - 10636: 45,-46 - 11290: -77,-23 - 11307: -11,-79 - 11308: -6,-83 - 11309: -4,-83 - 11311: 2,-83 - 11316: -6,-87 - 11317: -4,-87 - 11318: 2,-87 - 11319: 2,-87 - 11396: -14,-30 - 11399: -15,-33 - 11400: -13,-33 - 11627: -15,-33 - 11628: -13,-33 - 11811: -39,-57 - 11812: -41,-51 - 11813: -41,-51 - 11814: -40,-51 - 11815: -40,-51 - 11816: -38,-51 - 11817: -38,-51 - 11841: -25,-50 - 12760: 5,70 - 12761: 6,70 - 12762: 7,70 - 12763: -7,66 - 12764: -6,66 - 12765: -5,66 - 12766: -4,66 - 12767: -3,66 - 12795: -7,59 - 12796: -6,59 - 12797: -4,59 - 12798: -4,59 - 12799: -3,59 - 12800: -5,59 - 12801: -20,59 - 12802: -21,59 - 12803: -19,59 - 12804: -19,59 - 12805: -17,59 - 12806: -18,59 - 12826: -13,70 - 12827: -12,70 - 12828: -11,70 - 12829: -29,70 - 12830: -30,70 - 12831: -31,70 - 12832: -21,66 - 12833: -20,66 - 12834: -19,66 - 12835: -18,66 - 12836: -18,66 - 12837: -17,66 - 12838: -17,66 - 13386: -37,-64 - 14425: -17,24 - 14426: -16,24 - 14427: -15,24 - 14428: -14,24 - 14429: -13,24 - 14430: -12,24 - 14431: -11,24 - 14432: -10,24 - 14889: -7,24 - 14890: -6,24 - 14891: -5,24 - 14892: -4,24 - 14893: -3,24 - 14894: -2,24 - 14895: -1,24 - 14896: 1,24 - 14897: 2,24 - 14898: 3,24 - 14905: 9,24 - 14906: 10,24 - 14907: 11,24 - 14908: 12,24 - 14909: 12,24 - 14910: 13,24 - 14911: 17,24 - 14912: 18,24 - 14933: -20,21 - 14934: -19,21 - 14935: -18,21 - 15002: 16,21 - 15003: 17,21 - 15004: 18,21 - 15333: -5,-75 - 15334: -4,-75 - 15382: -43,7 - 15383: -42,7 - 15384: -41,7 - 15561: 77,2 - 15759: 79,2 - 15760: 80,2 - 15761: 81,2 - 15762: 82,2 - 15763: 83,2 - 15764: 87,2 - 15765: 88,2 - 15766: 89,2 - 15768: 81,-1 - 15769: 85,-1 - 15770: 89,-1 - 15771: 84,2 - 15772: 85,2 - 15773: 86,2 - 16367: -60,-48 - 16658: -60,-12 - 16659: -59,-12 - 16660: -57,-12 - 16686: -56,-12 - 16690: -58,-11 - 16693: -56,-19 - 16696: -56,-19 - 16697: -54,-19 - 16703: -61,-17 - 16747: -58,-5 - 16780: -53,3 - 16781: -52,3 - 16782: -53,7 - 16783: -52,7 - 16794: -53,3 - 16795: -52,3 - 16798: -53,7 - 16799: -52,7 - 16811: -50,-1 - 17894: -45,23 - 18395: -60,-44 - 18404: -60,-44 - 18433: -13,-12 - 18434: -13,-12 - 18435: -15,-12 - 18436: -11,-12 - 18437: -12,-12 - 18467: -14,-11 - 18468: -10,-11 - 18501: 8,-11 - 18503: 7,-12 - 18504: 9,-12 - 18764: 4,-8 - 18765: 3,-8 - 19871: -27,9 - 19872: -26,9 - 19873: -25,9 - 19874: -25,9 - 19875: -24,9 - 19876: -24,9 - 19881: -24,15 - 19882: -28,15 - 19883: -27,15 - 19997: -16,4 - 20037: 70,26 - 20038: 69,26 - 20065: 63,26 - 20066: 68,26 - 20134: -20,-7 - 20135: -19,-7 - 20136: -18,-7 - 20137: -20,7 - 20138: -19,7 - 20139: -18,7 - 21333: 22,10 - 21876: -43,23 - 22570: 32,6 - 22593: 13,-8 - 23943: -28,-17 - 23971: -31,-2 - 23972: -30,-2 - 23973: -29,-2 - 23974: -28,-2 - 23975: -27,-2 - 23976: -26,-2 - 23977: -26,-2 - 23978: -25,-2 - 23979: -23,-2 - 23980: -22,-2 - 23986: -33,-10 - 23987: -32,-10 - 24020: -28,-17 - 24023: -31,-11 - 24024: -30,-11 - 24025: -29,-11 - 24026: -34,-16 - 24027: -33,-16 - 24028: -32,-16 - 24029: -31,-16 - 24048: -34,-11 + 8902: -9,-24 + 8903: -8,-24 + 8904: -15,-24 + 8905: -5,-24 + 8906: -4,-24 + 8948: -4,-24 + 9138: 1,-64 + 9139: 1,-64 + 9168: -8,-64 + 9169: -8,-64 + 9170: -7,-64 + 9171: -7,-64 + 9172: -6,-64 + 9173: -6,-64 + 9174: -5,-64 + 9175: -5,-64 + 9176: -4,-64 + 9177: -4,-64 + 9178: -3,-64 + 9179: -9,-64 + 9235: -8,-75 + 9236: -7,-75 + 9237: -6,-75 + 9238: -2,-75 + 9239: -1,-75 + 9240: -3,-75 + 9241: -8,-69 + 9242: -8,-69 + 9243: -1,-69 + 9265: -2,-63 + 9266: -1,-63 + 9267: 0,-63 + 9350: -2,-57 + 9351: -1,-57 + 9352: -1,-57 + 9353: 0,-57 + 9415: -40,-14 + 9416: -41,-14 + 9417: -41,-14 + 10308: 3,-50 + 10309: 4,-50 + 10310: 4,-50 + 10311: 8,-50 + 10312: 9,-50 + 10313: 9,-50 + 10314: 10,-50 + 10315: 11,-50 + 10496: 4,-87 + 10521: 55,-43 + 10545: 44,-38 + 10546: 45,-38 + 10547: 46,-38 + 10548: 47,-38 + 10549: 48,-38 + 10574: 45,-46 + 11228: -77,-23 + 11245: -11,-79 + 11246: -6,-83 + 11247: -4,-83 + 11249: 2,-83 + 11254: -6,-87 + 11255: -4,-87 + 11256: 2,-87 + 11257: 2,-87 + 11334: -14,-30 + 11337: -15,-33 + 11338: -13,-33 + 11565: -15,-33 + 11566: -13,-33 + 11749: -39,-57 + 11750: -41,-51 + 11751: -41,-51 + 11752: -40,-51 + 11753: -40,-51 + 11754: -38,-51 + 11755: -38,-51 + 11779: -25,-50 + 12697: 5,70 + 12698: 6,70 + 12699: 7,70 + 12700: -7,66 + 12701: -6,66 + 12702: -5,66 + 12703: -4,66 + 12704: -3,66 + 12732: -7,59 + 12733: -6,59 + 12734: -4,59 + 12735: -4,59 + 12736: -3,59 + 12737: -5,59 + 12738: -20,59 + 12739: -21,59 + 12740: -19,59 + 12741: -19,59 + 12742: -17,59 + 12743: -18,59 + 12763: -13,70 + 12764: -12,70 + 12765: -11,70 + 12766: -29,70 + 12767: -30,70 + 12768: -31,70 + 12769: -21,66 + 12770: -20,66 + 12771: -19,66 + 12772: -18,66 + 12773: -18,66 + 12774: -17,66 + 12775: -17,66 + 13323: -37,-64 + 14362: -17,24 + 14363: -16,24 + 14364: -15,24 + 14365: -14,24 + 14366: -13,24 + 14367: -12,24 + 14368: -11,24 + 14369: -10,24 + 14826: -7,24 + 14827: -6,24 + 14828: -5,24 + 14829: -4,24 + 14830: -3,24 + 14831: -2,24 + 14832: -1,24 + 14833: 1,24 + 14834: 2,24 + 14835: 3,24 + 14842: 9,24 + 14843: 10,24 + 14844: 11,24 + 14845: 12,24 + 14846: 12,24 + 14847: 13,24 + 14848: 17,24 + 14849: 18,24 + 14870: -20,21 + 14871: -19,21 + 14872: -18,21 + 14939: 16,21 + 14940: 17,21 + 14941: 18,21 + 15270: -5,-75 + 15271: -4,-75 + 15319: -43,7 + 15320: -42,7 + 15321: -41,7 + 15498: 77,2 + 15696: 79,2 + 15697: 80,2 + 15698: 81,2 + 15699: 82,2 + 15700: 83,2 + 15701: 87,2 + 15702: 88,2 + 15703: 89,2 + 15705: 81,-1 + 15706: 85,-1 + 15707: 89,-1 + 15708: 84,2 + 15709: 85,2 + 15710: 86,2 + 16304: -60,-48 + 16595: -60,-12 + 16596: -59,-12 + 16597: -57,-12 + 16623: -56,-12 + 16627: -58,-11 + 16630: -56,-19 + 16633: -56,-19 + 16634: -54,-19 + 16640: -61,-17 + 16684: -58,-5 + 16717: -53,3 + 16718: -52,3 + 16719: -53,7 + 16720: -52,7 + 16731: -53,3 + 16732: -52,3 + 16735: -53,7 + 16736: -52,7 + 16748: -50,-1 + 17831: -45,23 + 18332: -60,-44 + 18341: -60,-44 + 18370: -13,-12 + 18371: -13,-12 + 18372: -15,-12 + 18373: -11,-12 + 18374: -12,-12 + 18404: -14,-11 + 18405: -10,-11 + 18438: 8,-11 + 18440: 7,-12 + 18441: 9,-12 + 18701: 4,-8 + 18702: 3,-8 + 19807: -27,9 + 19808: -26,9 + 19809: -25,9 + 19810: -25,9 + 19811: -24,9 + 19812: -24,9 + 19817: -24,15 + 19818: -28,15 + 19819: -27,15 + 19933: -16,4 + 19973: 70,26 + 19974: 69,26 + 20001: 63,26 + 20002: 68,26 + 20070: -20,-7 + 20071: -19,-7 + 20072: -18,-7 + 20073: -20,7 + 20074: -19,7 + 20075: -18,7 + 21265: 22,10 + 21808: -43,23 + 22502: 32,6 + 22525: 13,-8 + 23862: -28,-17 + 23890: -31,-2 + 23891: -30,-2 + 23892: -29,-2 + 23893: -28,-2 + 23894: -27,-2 + 23895: -26,-2 + 23896: -26,-2 + 23897: -25,-2 + 23898: -23,-2 + 23899: -22,-2 + 23905: -33,-10 + 23906: -32,-10 + 23939: -28,-17 + 23942: -31,-11 + 23943: -30,-11 + 23944: -29,-11 + 23945: -34,-16 + 23946: -33,-16 + 23947: -32,-16 + 23948: -31,-16 + 23967: -34,-11 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelLineN decals: - 897: 25,-2 - 898: 26,-2 - 917: 29,1 - 926: 27,-2 - 4050: -20,25 - 4051: -19,25 - 4052: -18,25 - 4118: 4,25 - 4119: 5,25 - 4120: 7,25 - 4121: 8,25 + 896: 25,-2 + 897: 26,-2 + 916: 29,1 + 925: 27,-2 + 4049: -20,25 + 4050: -19,25 + 4051: -18,25 + 4117: 4,25 + 4118: 5,25 + 4119: 7,25 + 4120: 8,25 - node: color: '#00C9DAFF' id: BrickTileSteelLineS decals: - 8096: 21,-16 - 8097: 26,-16 - 8098: 28,-16 - 8104: 25,-13 - 8106: 30,-16 - 8111: 27,-17 - 8112: 29,-17 - 8113: 31,-17 + 8095: 21,-16 + 8096: 26,-16 + 8097: 28,-16 + 8103: 25,-13 + 8105: 30,-16 + 8110: 27,-17 + 8111: 29,-17 + 8112: 31,-17 - node: color: '#00FFFFFF' id: BrickTileSteelLineS decals: - 3734: -25,65 - 3745: -25,66 - 3765: -27,60 - 10221: 37,-25 - 10230: 36,-26 - 10652: 70,-50 - 15744: 77,4 - 15745: 77,4 + 3733: -25,65 + 3744: -25,66 + 3764: -27,60 + 10167: 37,-25 + 10176: 36,-26 + 10590: 70,-50 + 15681: 77,4 + 15682: 77,4 - node: color: '#52B4E9FF' id: BrickTileSteelLineS decals: - 23371: 21,-49 - 23372: 23,-49 + 23298: 21,-49 + 23299: 23,-49 - node: color: '#8BC9DAFF' id: BrickTileSteelLineS decals: - 3685: 6,66 - 3926: 20,61 + 3684: 6,66 + 3925: 20,61 - node: color: '#8CB7E8FF' id: BrickTileSteelLineS decals: - 10119: 21,-49 - 10120: 23,-49 - 10194: 33,-53 + 10065: 21,-49 + 10066: 23,-49 + 10140: 33,-53 - node: color: '#A9DA8BFF' id: BrickTileSteelLineS decals: - 2862: -25,47 + 2861: -25,47 - node: color: '#B18BDAFF' id: BrickTileSteelLineS decals: - 11925: -30,-32 - 11926: -28,-32 - 11927: -27,-32 - 11974: -42,-25 - 11975: -38,-25 - 11976: -34,-25 - 11995: -36,-29 - 11996: -40,-29 - 12024: -46,-24 - 12033: -48,-31 - 12034: -47,-31 - 12035: -46,-31 - 12047: -47,-23 - 12077: -28,-47 - 12078: -27,-47 - 12079: -26,-47 - 12080: -25,-47 - 12093: -29,-43 - 12094: -24,-43 - 12139: -25,-42 - 12156: -29,-37 - 12157: -24,-37 - 16126: -65,-48 - 16127: -64,-48 - 16128: -62,-48 - 19753: -9,-40 - 19754: -8,-40 - 19755: -7,-40 - 19756: -7,-40 - 19757: -6,-40 - 19778: -9,-39 - 19779: -8,-39 - 19780: -8,-39 - 19781: -7,-39 - 19782: -6,-39 - 19785: -9,-40 - 19786: -8,-40 - 19787: -7,-40 - 19788: -7,-40 - 19789: -6,-40 - 19791: -29,-25 - - node: - color: '#CEDA8BFF' - id: BrickTileSteelLineS - decals: - 10936: 27,-70 - 10937: 28,-70 - 10938: 29,-70 - 10939: 30,-70 - 10940: 31,-70 + 11912: -42,-25 + 11913: -38,-25 + 11914: -34,-25 + 11962: -46,-24 + 12015: -28,-47 + 12016: -27,-47 + 12017: -26,-47 + 12018: -25,-47 + 12031: -29,-43 + 12032: -24,-43 + 12077: -25,-42 + 12094: -29,-37 + 12095: -24,-37 + 16063: -65,-48 + 16064: -64,-48 + 16065: -62,-48 + 19689: -9,-40 + 19690: -8,-40 + 19691: -7,-40 + 19692: -7,-40 + 19693: -6,-40 + 19714: -9,-39 + 19715: -8,-39 + 19716: -8,-39 + 19717: -7,-39 + 19718: -6,-39 + 19721: -9,-40 + 19722: -8,-40 + 19723: -7,-40 + 19724: -7,-40 + 19725: -6,-40 - node: color: '#DA8B8BFF' id: BrickTileSteelLineS decals: - 7793: 68,5 - 7794: 69,5 - 7795: 70,5 - 7824: 66,6 - 7825: 69,7 - 7826: 62,6 - 7827: 58,6 - 19242: 57,4 - 19243: 59,4 - 19244: 61,4 - 19245: 63,4 - 19246: 65,4 + 7792: 68,5 + 7793: 69,5 + 7794: 70,5 + 7823: 66,6 + 7824: 69,7 + 7825: 62,6 + 7826: 58,6 + 19179: 57,4 + 19180: 59,4 + 19181: 61,4 + 19182: 63,4 + 19183: 65,4 - node: color: '#DA8BC9FF' id: BrickTileSteelLineS decals: - 3930: 21,61 + 3929: 21,61 - node: color: '#DAA58BFF' id: BrickTileSteelLineS decals: - 4517: 10,38 - 4518: 5,38 + 4516: 10,38 + 4517: 5,38 - node: color: '#DABC8BFF' id: BrickTileSteelLineS decals: - 3652: 6,86 - 3711: 10,83 - 3715: 10,89 - 3720: 10,91 - 3721: 5,93 + 3651: 6,86 + 3710: 10,83 + 3714: 10,89 + 3719: 10,91 + 3720: 5,93 - node: color: '#DE3A3AFF' id: BrickTileSteelLineS decals: - 20289: -23,3 - 20296: -23,0 - 20297: -47,8 - 20316: 5,-82 - 20321: 7,-57 - 20322: 5,-63 - 20323: 5,-73 - 20324: 5,-79 - 20333: 4,-83 - 20340: 5,-79 - 20377: 4,-62 - 20378: 6,-62 - 20379: 7,-62 - 20380: 9,-75 - 20381: 8,-75 - 20382: 9,-78 - 20436: 11,-29 - 20440: 11,-32 - 20441: 13,-32 - 20449: 11,-29 - 20451: 13,33 - 20457: 12,30 - 20478: 3,60 - 20479: 1,60 - 20494: 41,3 - 20495: 42,3 - 20496: 43,3 - 20497: 44,3 - 20498: 45,3 - 20527: 40,10 - 20534: 36,10 - 20544: 37,8 - 20545: 36,4 - 20546: 37,4 - 20547: 48,-1 - 20548: 50,-1 - 20549: 51,-1 - 20550: 53,-1 - 20551: 54,-1 - 20552: 55,-1 - 20553: 58,-1 - 20554: 59,-1 - 20555: 60,-1 - 20556: 62,-1 - 20557: 63,-1 - 20558: 64,-1 - 20559: 66,-1 - 20560: 67,-1 - 20561: 72,-1 - 20562: 73,-1 - 20585: 73,4 - 20589: 74,21 - 20590: 75,21 - 20591: 76,21 - 20636: 46,10 - 20637: 47,10 - 20638: 48,10 - 20639: 80,9 - 20640: 82,9 - 20641: 82,9 - 20642: 83,9 - 20643: 84,9 - 20644: 81,9 - 20645: 85,9 - 20646: 86,9 - 20687: 52,20 - 20688: 57,20 - 20701: 51,21 - 20702: 50,21 - 20703: 54,21 - 20704: 53,21 - 20705: 54,21 - 20706: 55,21 - 20707: 56,21 - 20708: 58,21 - 20733: 51,14 - 20736: 47,14 - 20739: 51,11 - 20740: 52,11 - 20741: 54,11 - 20742: 55,11 - 20743: 56,11 - 20744: 57,11 - 20745: 58,11 - 20746: 59,11 - 20771: 46,15 - 20809: 52,15 - 20810: 53,15 - 20814: 52,20 - 20815: 51,14 - 20828: 53,10 - 20870: 91,15 - 20871: 92,15 - 20872: 93,15 - 20877: 84,12 - 20878: 85,12 - 20879: 85,12 - 20880: 85,12 - 20881: 87,12 - 20882: 88,12 - 20883: 90,12 - 20884: 91,12 - 20885: 91,12 - 20886: 92,12 - 20887: 89,12 - 20888: 86,12 - 20891: 82,12 - 20896: 83,11 - 20907: 77,8 - 20939: 70,-1 - 20940: 69,-5 - 20941: 70,-5 - 20947: 66,2 - 20948: 62,2 - 20949: 58,2 - 20965: 73,20 - 20967: 73,20 - 20989: 75,24 - 20990: 75,26 - 21030: 69,-2 - 21039: 47,-2 - 21045: 47,-2 - 21048: 52,-2 - 21049: 52,-5 - 21050: 56,-5 - 21051: 57,-5 - 21088: 40,2 - 21089: 40,-1 - 21100: 36,7 - 21101: 34,4 - 21141: 51,3 - 21142: 52,3 - 21143: 53,3 - 21144: 54,3 - 21158: 58,2 - 21159: 62,2 - 21160: 66,2 - 21175: 76,-4 - 21197: -19,-28 - 21207: 46,-5 - 21208: 47,-5 - 21216: 51,-6 - 21221: 47,-9 - 21222: 48,-9 - 21223: 49,-9 - 21224: 50,-9 - 21233: 56,-2 - 21237: 57,-1 - 21375: 21,23 - 21384: 21,21 - 21385: 22,21 - 21386: 23,21 - 21387: 24,21 - 21388: 25,21 - 21389: 26,21 - 21390: 26,21 - 21391: 27,21 - 23141: 12,-28 - 23230: 12,-33 + 20225: -23,3 + 20232: -23,0 + 20233: -47,8 + 20252: 5,-82 + 20257: 7,-57 + 20258: 5,-63 + 20259: 5,-73 + 20260: 5,-79 + 20269: 4,-83 + 20276: 5,-79 + 20313: 4,-62 + 20314: 6,-62 + 20315: 7,-62 + 20316: 9,-75 + 20317: 8,-75 + 20318: 9,-78 + 20370: 11,-29 + 20374: 11,-32 + 20375: 13,-32 + 20382: 11,-29 + 20383: 13,33 + 20389: 12,30 + 20410: 3,60 + 20411: 1,60 + 20426: 41,3 + 20427: 42,3 + 20428: 43,3 + 20429: 44,3 + 20430: 45,3 + 20459: 40,10 + 20466: 36,10 + 20476: 37,8 + 20477: 36,4 + 20478: 37,4 + 20479: 48,-1 + 20480: 50,-1 + 20481: 51,-1 + 20482: 53,-1 + 20483: 54,-1 + 20484: 55,-1 + 20485: 58,-1 + 20486: 59,-1 + 20487: 60,-1 + 20488: 62,-1 + 20489: 63,-1 + 20490: 64,-1 + 20491: 66,-1 + 20492: 67,-1 + 20493: 72,-1 + 20494: 73,-1 + 20517: 73,4 + 20521: 74,21 + 20522: 75,21 + 20523: 76,21 + 20568: 46,10 + 20569: 47,10 + 20570: 48,10 + 20571: 80,9 + 20572: 82,9 + 20573: 82,9 + 20574: 83,9 + 20575: 84,9 + 20576: 81,9 + 20577: 85,9 + 20578: 86,9 + 20619: 52,20 + 20620: 57,20 + 20633: 51,21 + 20634: 50,21 + 20635: 54,21 + 20636: 53,21 + 20637: 54,21 + 20638: 55,21 + 20639: 56,21 + 20640: 58,21 + 20665: 51,14 + 20668: 47,14 + 20671: 51,11 + 20672: 52,11 + 20673: 54,11 + 20674: 55,11 + 20675: 56,11 + 20676: 57,11 + 20677: 58,11 + 20678: 59,11 + 20703: 46,15 + 20741: 52,15 + 20742: 53,15 + 20746: 52,20 + 20747: 51,14 + 20760: 53,10 + 20802: 91,15 + 20803: 92,15 + 20804: 93,15 + 20809: 84,12 + 20810: 85,12 + 20811: 85,12 + 20812: 85,12 + 20813: 87,12 + 20814: 88,12 + 20815: 90,12 + 20816: 91,12 + 20817: 91,12 + 20818: 92,12 + 20819: 89,12 + 20820: 86,12 + 20823: 82,12 + 20828: 83,11 + 20839: 77,8 + 20871: 70,-1 + 20872: 69,-5 + 20873: 70,-5 + 20879: 66,2 + 20880: 62,2 + 20881: 58,2 + 20897: 73,20 + 20899: 73,20 + 20921: 75,24 + 20922: 75,26 + 20962: 69,-2 + 20971: 47,-2 + 20977: 47,-2 + 20980: 52,-2 + 20981: 52,-5 + 20982: 56,-5 + 20983: 57,-5 + 21020: 40,2 + 21021: 40,-1 + 21032: 36,7 + 21033: 34,4 + 21073: 51,3 + 21074: 52,3 + 21075: 53,3 + 21076: 54,3 + 21090: 58,2 + 21091: 62,2 + 21092: 66,2 + 21107: 76,-4 + 21129: -19,-28 + 21139: 46,-5 + 21140: 47,-5 + 21148: 51,-6 + 21153: 47,-9 + 21154: 48,-9 + 21155: 49,-9 + 21156: 50,-9 + 21165: 56,-2 + 21169: 57,-1 + 21307: 21,23 + 21316: 21,21 + 21317: 22,21 + 21318: 23,21 + 21319: 24,21 + 21320: 25,21 + 21321: 26,21 + 21322: 26,21 + 21323: 27,21 + 23071: 12,-28 + 23158: 12,-33 - node: color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 2222: -20,54 + 2221: -20,54 + 2222: -19,54 2223: -19,54 2224: -19,54 - 2225: -19,54 + 2225: -18,54 2226: -18,54 - 2227: -18,54 - 2232: -21,55 + 2231: -21,55 + 2291: -22,28 2292: -22,28 - 2293: -22,28 - 2297: -21,26 - 2316: -24,30 - 2319: -26,29 - 2380: -31,38 - 2390: -32,33 - 2742: -13,48 - 2743: -12,48 - 2744: -11,48 - 2745: -10,48 - 2746: -9,48 - 2747: -8,48 - 2748: -7,48 - 2749: -6,48 - 2750: -5,48 - 2751: -3,48 - 2752: -2,48 - 2760: -12,51 - 2761: -6,51 - 2780: -3,44 - 2792: -4,47 - 2803: -6,26 - 2823: -30,44 - 2824: -29,41 - 2825: -28,41 - 2826: -27,41 - 2827: -26,41 - 2830: -31,40 - 2831: -32,40 - 2836: -30,44 - 3031: -16,56 - 3032: -15,56 - 3033: -14,56 - 3034: -13,56 - 3035: -12,56 - 3036: -11,56 - 3037: -10,56 - 3038: -9,56 - 3039: -8,56 - 3040: -7,56 - 3041: -6,56 - 3042: -5,56 - 3043: -4,56 - 3044: -3,56 - 3051: 0,56 - 3052: -2,56 - 3170: -16,67 - 3171: -15,67 - 3172: -14,67 - 3173: -13,67 - 3174: -12,67 - 3175: -11,67 - 3176: -10,67 - 3177: -9,67 - 3178: -8,67 - 3424: -31,67 - 3425: -29,67 - 3426: -28,67 - 3427: -27,67 - 3428: -26,67 - 3429: -24,67 - 3430: -23,67 - 3431: -22,67 - 3438: 2,59 - 3450: -2,67 - 3534: -1,67 - 3535: 1,67 - 3536: 0,67 - 3537: 2,67 - 3538: 3,67 - 3539: 4,67 - 3540: 5,67 - 3541: 7,67 - 3573: -15,77 - 3575: -9,77 - 3582: -15,84 - 3583: -9,84 - 3586: -12,97 - 3593: -27,84 - 3596: -33,84 - 3603: -33,77 - 3604: -27,77 - 3667: 3,84 - 3668: 3,77 - 4449: 14,25 - 4450: 15,25 - 4451: 16,25 - 5104: 31,29 - 5115: 30,30 - 5119: 32,30 - 5120: 33,30 - 5121: 34,30 - 5125: 36,30 - 5129: 35,33 - 5133: 35,29 - 5424: -24,4 - 5437: -31,4 + 2296: -21,26 + 2315: -24,30 + 2318: -26,29 + 2379: -31,38 + 2389: -32,33 + 2741: -13,48 + 2742: -12,48 + 2743: -11,48 + 2744: -10,48 + 2745: -9,48 + 2746: -8,48 + 2747: -7,48 + 2748: -6,48 + 2749: -5,48 + 2750: -3,48 + 2751: -2,48 + 2759: -12,51 + 2760: -6,51 + 2779: -3,44 + 2791: -4,47 + 2802: -6,26 + 2822: -30,44 + 2823: -29,41 + 2824: -28,41 + 2825: -27,41 + 2826: -26,41 + 2829: -31,40 + 2830: -32,40 + 2835: -30,44 + 3030: -16,56 + 3031: -15,56 + 3032: -14,56 + 3033: -13,56 + 3034: -12,56 + 3035: -11,56 + 3036: -10,56 + 3037: -9,56 + 3038: -8,56 + 3039: -7,56 + 3040: -6,56 + 3041: -5,56 + 3042: -4,56 + 3043: -3,56 + 3050: 0,56 + 3051: -2,56 + 3169: -16,67 + 3170: -15,67 + 3171: -14,67 + 3172: -13,67 + 3173: -12,67 + 3174: -11,67 + 3175: -10,67 + 3176: -9,67 + 3177: -8,67 + 3423: -31,67 + 3424: -29,67 + 3425: -28,67 + 3426: -27,67 + 3427: -26,67 + 3428: -24,67 + 3429: -23,67 + 3430: -22,67 + 3437: 2,59 + 3449: -2,67 + 3533: -1,67 + 3534: 1,67 + 3535: 0,67 + 3536: 2,67 + 3537: 3,67 + 3538: 4,67 + 3539: 5,67 + 3540: 7,67 + 3572: -15,77 + 3574: -9,77 + 3581: -15,84 + 3582: -9,84 + 3585: -12,97 + 3592: -27,84 + 3595: -33,84 + 3602: -33,77 + 3603: -27,77 + 3666: 3,84 + 3667: 3,77 + 4448: 14,25 + 4449: 15,25 + 4450: 16,25 + 5103: 31,29 + 5114: 30,30 + 5118: 32,30 + 5119: 33,30 + 5120: 34,30 + 5124: 36,30 + 5128: 35,33 + 5132: 35,29 + 5423: -24,4 + 5436: -31,4 + 5437: -30,4 5438: -30,4 - 5439: -30,4 - 5440: -29,4 - 5441: -28,4 - 5442: -26,4 - 5443: -25,4 - 5444: -27,4 - 5447: -22,4 - 5448: -35,4 - 5449: -36,4 - 5450: -38,4 - 5451: -39,4 - 5452: -37,4 - 5453: -34,4 - 5521: -20,7 - 5522: -19,7 - 5523: -18,7 - 5534: -20,-7 - 5535: -19,-7 - 5536: -18,-7 - 5634: 10,-7 - 5635: 11,-7 - 5636: 8,-7 - 5772: 12,-3 - 5781: 13,-6 - 5782: 12,-6 - 5783: 9,-6 - 5795: -1,-7 - 5801: -10,-7 - 6063: -15,-17 - 6064: -14,-17 - 6071: -10,-17 - 6081: -13,-18 - 6082: -12,-18 - 6083: -11,-18 - 6121: 16,-7 - 6122: 17,-7 - 6123: 18,-7 - 6128: 16,7 - 6129: 17,7 - 6130: 18,7 - 6143: -16,-21 - 6144: -15,-21 - 6145: -12,-21 - 6146: -11,-21 - 6147: -10,-21 + 5439: -29,4 + 5440: -28,4 + 5441: -26,4 + 5442: -25,4 + 5443: -27,4 + 5446: -22,4 + 5447: -35,4 + 5448: -36,4 + 5449: -38,4 + 5450: -39,4 + 5451: -37,4 + 5452: -34,4 + 5520: -20,7 + 5521: -19,7 + 5522: -18,7 + 5533: -20,-7 + 5534: -19,-7 + 5535: -18,-7 + 5633: 10,-7 + 5634: 11,-7 + 5635: 8,-7 + 5771: 12,-3 + 5780: 13,-6 + 5781: 12,-6 + 5782: 9,-6 + 5794: -1,-7 + 5800: -10,-7 + 6062: -15,-17 + 6063: -14,-17 + 6070: -10,-17 + 6080: -13,-18 + 6081: -12,-18 + 6082: -11,-18 + 6120: 16,-7 + 6121: 17,-7 + 6122: 18,-7 + 6127: 16,7 + 6128: 17,7 + 6129: 18,7 + 6142: -16,-21 + 6143: -15,-21 + 6144: -12,-21 + 6145: -11,-21 + 6146: -10,-21 + 6147: -9,-21 6148: -9,-21 - 6149: -9,-21 - 6150: -8,-21 - 6151: -5,-21 - 6152: -4,-21 - 6251: -5,-17 - 6252: -4,-13 - 6261: -4,-18 - 6276: 2,-21 - 6277: 3,-21 - 6278: 6,-21 - 6279: 7,-21 - 6280: 8,-21 - 6281: 9,-21 - 6282: 10,-21 - 6283: 13,-21 - 6284: 14,-21 - 6304: 16,-21 - 6305: 17,-21 - 6329: 2,-13 - 6331: 3,-17 - 6332: 2,-17 - 6361: 9,-17 - 6362: 7,-17 - 6378: 12,-18 + 6149: -8,-21 + 6150: -5,-21 + 6151: -4,-21 + 6250: -5,-17 + 6251: -4,-13 + 6260: -4,-18 + 6275: 2,-21 + 6276: 3,-21 + 6277: 6,-21 + 6278: 7,-21 + 6279: 8,-21 + 6280: 9,-21 + 6281: 10,-21 + 6282: 13,-21 + 6283: 14,-21 + 6303: 16,-21 + 6304: 17,-21 + 6328: 2,-13 + 6330: 3,-17 + 6331: 2,-17 + 6360: 9,-17 + 6361: 7,-17 + 6377: 12,-18 + 6378: 13,-18 6379: 13,-18 - 6380: 13,-18 - 6381: 14,-18 - 6400: 8,-18 - 6425: -18,-21 + 6380: 14,-18 + 6399: 8,-18 + 6424: -18,-21 + 6425: -19,-21 6426: -19,-21 - 6427: -19,-21 - 6785: -26,7 - 6786: -25,7 - 6787: -31,7 - 6788: -36,7 - 6802: -37,8 - 6893: -36,17 - 6908: -24,8 - 6909: -23,8 + 6784: -26,7 + 6785: -25,7 + 6786: -31,7 + 6787: -36,7 + 6801: -37,8 + 6892: -36,17 + 6907: -24,8 + 6908: -23,8 + 6919: -26,16 6920: -26,16 - 6921: -26,16 + 6939: -27,8 6940: -27,8 - 6941: -27,8 - 7025: 20,4 - 7026: 21,4 - 7027: 23,4 - 7028: 24,4 - 7029: 25,4 - 7051: 21,8 - 7052: 23,8 - 7065: 22,7 - 7083: 20,-12 - 7084: 21,-12 - 7085: 23,-12 - 7086: 24,-12 - 7087: 23,-12 - 7088: 24,-12 - 7089: 22,-12 - 7102: 27,-12 - 7103: 28,-12 - 7104: 29,-12 - 7105: 30,-12 - 7106: 31,-12 - 7115: 22,-9 - 7149: 26,-8 - 7150: 25,-8 - 7151: 27,-8 - 7152: 29,-8 - 7153: 30,-8 - 7160: 30,-6 - 7161: 29,-6 - 7174: 30,3 - 7178: 29,4 - 7179: 28,4 - 7180: 27,4 - 7181: 31,4 - 7199: 22,7 - 7291: 29,12 + 7024: 20,4 + 7025: 21,4 + 7026: 23,4 + 7027: 24,4 + 7028: 25,4 + 7050: 21,8 + 7051: 23,8 + 7064: 22,7 + 7082: 20,-12 + 7083: 21,-12 + 7084: 23,-12 + 7085: 24,-12 + 7086: 23,-12 + 7087: 24,-12 + 7088: 22,-12 + 7101: 27,-12 + 7102: 28,-12 + 7103: 29,-12 + 7104: 30,-12 + 7105: 31,-12 + 7114: 22,-9 + 7148: 26,-8 + 7149: 25,-8 + 7150: 27,-8 + 7151: 29,-8 + 7152: 30,-8 + 7159: 30,-6 + 7160: 29,-6 + 7173: 30,3 + 7177: 29,4 + 7178: 28,4 + 7179: 27,4 + 7180: 31,4 + 7198: 22,7 + 7290: 29,12 + 7291: 30,12 7292: 30,12 - 7293: 30,12 - 7294: 31,12 - 7295: 32,12 - 7323: 29,7 - 7969: 77,-22 - 7970: 79,-22 - 7971: 80,-22 - 7972: 81,-22 - 7984: 77,-19 - 7999: 65,-22 - 8001: 65,-19 - 8161: 33,-16 - 8162: 34,-16 - 8163: 35,-16 - 8164: 36,-16 - 8165: 37,-16 - 8204: 33,-6 - 8265: 38,-16 - 8266: 40,-16 - 8327: 39,-18 - 8330: 41,-18 - 8352: 39,-21 - 8353: 40,-21 - 8354: 41,-21 - 8360: 43,-21 - 8361: 45,-21 + 7293: 31,12 + 7294: 32,12 + 7322: 29,7 + 7968: 77,-22 + 7969: 79,-22 + 7970: 80,-22 + 7971: 81,-22 + 7983: 77,-19 + 7998: 65,-22 + 8000: 65,-19 + 8160: 33,-16 + 8161: 34,-16 + 8162: 35,-16 + 8163: 36,-16 + 8164: 37,-16 + 8203: 33,-6 + 8264: 38,-16 + 8265: 40,-16 + 8326: 39,-18 + 8329: 41,-18 + 8351: 39,-21 + 8352: 40,-21 + 8353: 41,-21 + 8359: 43,-21 + 8360: 45,-21 + 8361: 46,-21 8362: 46,-21 - 8363: 46,-21 - 8364: 47,-21 - 8365: 49,-21 + 8363: 47,-21 + 8364: 49,-21 + 8365: 50,-21 8366: 50,-21 - 8367: 50,-21 - 8368: 51,-21 + 8367: 51,-21 + 8368: 53,-21 8369: 53,-21 - 8370: 53,-21 + 8388: 46,-18 8389: 46,-18 - 8390: 46,-18 - 8391: 47,-18 + 8390: 47,-18 + 8409: 52,-18 8410: 52,-18 - 8411: 52,-18 - 8598: 56,-31 - 8599: 57,-31 + 8597: 56,-31 + 8598: 57,-31 + 8602: 58,-30 8603: 58,-30 - 8604: 58,-30 + 8604: 59,-30 8605: 59,-30 - 8606: 59,-30 + 8606: 60,-30 8607: 60,-30 - 8608: 60,-30 - 8610: 62,-31 - 8795: -2,-22 - 8796: -1,-22 - 8797: 0,-22 - 8842: -2,-29 - 8843: -1,-29 - 8844: 0,-29 + 8609: 62,-31 + 8794: -2,-22 + 8795: -1,-22 + 8796: 0,-22 + 8841: -2,-29 + 8842: -1,-29 + 8843: 0,-29 + 8844: -2,-37 8845: -2,-37 - 8846: -2,-37 - 8847: -1,-37 + 8846: -1,-37 + 8847: 0,-37 8848: 0,-37 - 8849: 0,-37 - 8880: -12,-27 - 8881: -11,-27 + 8879: -12,-27 + 8880: -11,-27 + 8881: -10,-27 8882: -10,-27 - 8883: -10,-27 - 8884: -9,-27 - 8885: -8,-27 - 8891: -16,-26 + 8883: -9,-27 + 8884: -8,-27 + 8890: -16,-26 + 8891: -4,-26 8892: -4,-26 - 8893: -4,-26 - 8957: -16,-26 - 9141: -2,-63 - 9142: -1,-63 - 9143: 0,-63 - 9158: -7,-65 - 9159: -7,-65 - 9160: -2,-65 - 9161: -6,-65 - 9162: -5,-65 - 9163: -4,-65 - 9164: -4,-65 - 9165: -3,-65 - 9166: -3,-65 - 9210: -10,-78 - 9216: -8,-82 - 9217: -7,-82 - 9218: -5,-82 - 9219: -3,-82 - 9220: -3,-82 - 9224: -2,-81 - 9225: -1,-81 - 9226: 0,-81 - 9227: 0,-81 - 9255: -8,-71 - 9256: -1,-71 - 9274: -5,-74 - 9275: -4,-74 - 9296: -2,-57 - 9297: -2,-57 - 9298: -1,-57 - 9299: -1,-57 - 9300: 0,-57 - 9301: 0,-57 - 9432: -41,-18 - 10378: 3,-52 - 10379: 4,-52 - 10380: 6,-52 - 10381: 6,-52 - 10382: 7,-52 - 10383: 7,-52 - 10384: 8,-52 - 10385: 8,-52 - 10386: 9,-52 - 10387: 9,-52 - 10388: 10,-52 - 10389: 10,-52 - 10390: 11,-52 - 10391: 11,-52 - 10392: 11,-52 - 10393: 5,-52 - 10559: 4,-83 - 10585: 55,-44 - 10617: 46,-45 - 10618: 44,-45 - 10619: 44,-45 - 10620: 48,-45 - 11235: -59,-33 - 11241: -59,-40 - 11312: -6,-83 - 11313: -4,-83 - 11314: 2,-83 - 11315: 2,-83 - 11363: -10,-63 - 11395: -14,-32 - 11397: -15,-29 - 11398: -13,-29 - 11805: -38,-56 - 11806: -38,-56 - 11826: -37,-53 - 11827: -38,-53 - 11828: -39,-53 - 11829: -40,-53 - 11830: -40,-53 - 11847: -24,-54 - 11848: -25,-54 - 12125: -24,-49 - 12522: -21,-77 - 12757: 5,70 - 12758: 6,70 - 12759: 7,70 - 12768: -7,66 - 12769: -6,66 - 12770: -5,66 - 12771: -4,66 - 12772: -3,66 - 12773: -7,59 - 12790: -7,59 - 12791: -6,59 - 12792: -5,59 - 12793: -4,59 - 12794: -3,59 - 12807: -21,59 - 12808: -20,59 - 12809: -19,59 - 12810: -18,59 - 12811: -18,59 - 12812: -17,59 - 12813: -19,59 - 12814: -21,66 - 12815: -20,66 - 12816: -19,66 - 12817: -18,66 - 12818: -18,66 - 12819: -17,66 - 12820: -31,70 - 12821: -30,70 - 12822: -29,70 - 12823: -13,70 - 12824: -12,70 - 12825: -11,70 - 13383: -37,-59 - 14415: -17,22 - 14416: -16,22 - 14417: -15,22 - 14418: -15,22 - 14419: -14,22 - 14420: -12,22 - 14421: -11,22 - 14422: -13,22 - 14423: -10,22 - 14424: -9,22 - 14866: -7,22 - 14867: -6,22 - 14868: -5,22 - 14869: -4,22 - 14870: -2,22 - 14871: -2,22 - 14872: -3,22 - 14873: -1,22 - 14874: 0,22 - 14875: 1,22 - 14876: 2,22 - 14877: 3,22 - 14878: 4,22 - 14879: 5,22 - 14880: 7,22 - 14881: 8,22 - 14882: 9,22 - 14883: 10,22 - 14884: 11,22 - 14885: 12,22 - 14886: 13,22 - 14887: 14,22 - 14888: 15,22 - 14937: -20,25 - 14938: -19,25 - 14939: -18,25 - 14940: -20,21 - 14941: -19,21 - 14942: -18,21 - 15005: 16,21 - 15006: 17,21 - 15007: 18,21 - 15358: -43,4 - 15359: -42,4 - 15360: -41,4 - 15372: -43,7 - 15373: -42,7 - 15374: -41,7 - 15564: 77,0 - 15756: 78,3 - 15776: 86,0 - 15777: 87,0 - 15778: 88,0 - 15779: 84,0 - 15780: 83,0 - 15781: 82,0 - 15782: 80,0 - 15783: 79,0 - 15784: 78,0 - 16666: -58,-11 - 16667: -60,-15 - 16669: -59,-15 - 16670: -58,-15 - 16673: -60,-15 - 16674: -59,-15 - 16675: -57,-15 - 16676: -56,-15 - 16677: -58,-15 - 16678: -58,-15 - 16679: -57,-15 - 16680: -59,-15 - 16687: -58,-11 - 16689: -58,-11 - 16704: -61,-17 - 16744: -57,-4 - 16746: -58,-5 - 16788: -60,-4 - 16789: -59,-4 - 16792: -53,3 - 16793: -52,3 - 16796: -53,7 - 16797: -52,7 - 16814: -50,-4 - 17489: 6,86 - 17893: -45,23 - 18452: -15,-10 - 18453: -16,-10 - 18454: -13,-10 - 18455: -12,-10 - 18456: -11,-10 - 18457: -9,-10 - 18458: -8,-10 - 18459: -8,-10 - 18460: -7,-10 - 18461: -6,-10 - 18462: -5,-10 - 18465: -14,-11 - 18466: -10,-11 - 18477: 15,-10 - 18478: 14,-10 - 18479: 13,-10 - 18480: 12,-10 - 18481: 11,-10 - 18482: 10,-10 - 18483: 9,-10 - 18484: 5,-10 - 18485: 6,-10 - 18486: 7,-10 - 18487: 5,-10 - 18488: 4,-10 - 18489: 3,-10 - 18490: 2,-10 - 18491: 1,-10 - 18492: 0,-10 - 18493: -1,-10 - 18494: -2,-10 - 18495: -3,-10 - 18496: -4,-10 - 18497: -4,-10 - 18508: 8,-11 - 19860: -27,14 - 19861: -26,14 - 19862: -25,14 - 19863: -25,14 - 19864: -24,14 - 19865: -24,14 - 19884: -28,8 - 20043: 62,21 - 20044: 63,21 - 20045: 64,21 - 20046: 65,21 - 20047: 66,21 - 20048: 68,21 - 20049: 69,21 - 20050: 67,21 - 20076: 62,27 - 20077: 64,27 - 20078: 65,27 - 20079: 66,27 - 20080: 67,27 - 20118: -20,7 - 20119: -19,7 - 20120: -18,7 - 20162: -20,21 - 20163: -19,21 - 20164: -18,21 - 22569: 32,4 - 23944: -34,-16 - 23945: -33,-16 - 23946: -33,-16 - 23947: -32,-16 - 23948: -31,-16 - 23949: -30,-16 - 23950: -30,-16 - 23951: -29,-16 - 23952: -34,-11 - 23953: -33,-11 - 23954: -33,-11 - 23955: -32,-11 - 23956: -31,-11 - 23957: -31,-11 - 23958: -31,-3 - 23959: -30,-3 - 23960: -28,-3 - 23961: -27,-3 - 23962: -26,-3 - 23963: -26,-3 - 23964: -26,-3 - 23965: -25,-3 - 23966: -23,-3 - 23967: -22,-3 - 23968: -22,-3 - 23981: -33,3 - 23982: -32,3 - 23983: -24,-1 - 23984: -33,-10 - 23985: -32,-10 - 24021: -33,-10 - 24022: -32,-10 + 8954: -16,-26 + 9130: -2,-63 + 9131: -1,-63 + 9132: 0,-63 + 9147: -7,-65 + 9148: -7,-65 + 9149: -2,-65 + 9150: -6,-65 + 9151: -5,-65 + 9152: -4,-65 + 9153: -4,-65 + 9154: -3,-65 + 9155: -3,-65 + 9199: -10,-78 + 9205: -8,-82 + 9206: -7,-82 + 9207: -5,-82 + 9208: -3,-82 + 9209: -3,-82 + 9213: -2,-81 + 9214: -1,-81 + 9215: 0,-81 + 9216: 0,-81 + 9244: -8,-71 + 9245: -1,-71 + 9263: -5,-74 + 9264: -4,-74 + 9285: -2,-57 + 9286: -2,-57 + 9287: -1,-57 + 9288: -1,-57 + 9289: 0,-57 + 9290: 0,-57 + 9420: -41,-18 + 10316: 3,-52 + 10317: 4,-52 + 10318: 6,-52 + 10319: 6,-52 + 10320: 7,-52 + 10321: 7,-52 + 10322: 8,-52 + 10323: 8,-52 + 10324: 9,-52 + 10325: 9,-52 + 10326: 10,-52 + 10327: 10,-52 + 10328: 11,-52 + 10329: 11,-52 + 10330: 11,-52 + 10331: 5,-52 + 10497: 4,-83 + 10523: 55,-44 + 10555: 46,-45 + 10556: 44,-45 + 10557: 44,-45 + 10558: 48,-45 + 11173: -59,-33 + 11179: -59,-40 + 11250: -6,-83 + 11251: -4,-83 + 11252: 2,-83 + 11253: 2,-83 + 11301: -10,-63 + 11333: -14,-32 + 11335: -15,-29 + 11336: -13,-29 + 11743: -38,-56 + 11744: -38,-56 + 11764: -37,-53 + 11765: -38,-53 + 11766: -39,-53 + 11767: -40,-53 + 11768: -40,-53 + 11785: -24,-54 + 11786: -25,-54 + 12063: -24,-49 + 12459: -21,-77 + 12694: 5,70 + 12695: 6,70 + 12696: 7,70 + 12705: -7,66 + 12706: -6,66 + 12707: -5,66 + 12708: -4,66 + 12709: -3,66 + 12710: -7,59 + 12727: -7,59 + 12728: -6,59 + 12729: -5,59 + 12730: -4,59 + 12731: -3,59 + 12744: -21,59 + 12745: -20,59 + 12746: -19,59 + 12747: -18,59 + 12748: -18,59 + 12749: -17,59 + 12750: -19,59 + 12751: -21,66 + 12752: -20,66 + 12753: -19,66 + 12754: -18,66 + 12755: -18,66 + 12756: -17,66 + 12757: -31,70 + 12758: -30,70 + 12759: -29,70 + 12760: -13,70 + 12761: -12,70 + 12762: -11,70 + 13320: -37,-59 + 14352: -17,22 + 14353: -16,22 + 14354: -15,22 + 14355: -15,22 + 14356: -14,22 + 14357: -12,22 + 14358: -11,22 + 14359: -13,22 + 14360: -10,22 + 14361: -9,22 + 14803: -7,22 + 14804: -6,22 + 14805: -5,22 + 14806: -4,22 + 14807: -2,22 + 14808: -2,22 + 14809: -3,22 + 14810: -1,22 + 14811: 0,22 + 14812: 1,22 + 14813: 2,22 + 14814: 3,22 + 14815: 4,22 + 14816: 5,22 + 14817: 7,22 + 14818: 8,22 + 14819: 9,22 + 14820: 10,22 + 14821: 11,22 + 14822: 12,22 + 14823: 13,22 + 14824: 14,22 + 14825: 15,22 + 14874: -20,25 + 14875: -19,25 + 14876: -18,25 + 14877: -20,21 + 14878: -19,21 + 14879: -18,21 + 14942: 16,21 + 14943: 17,21 + 14944: 18,21 + 15295: -43,4 + 15296: -42,4 + 15297: -41,4 + 15309: -43,7 + 15310: -42,7 + 15311: -41,7 + 15501: 77,0 + 15693: 78,3 + 15713: 86,0 + 15714: 87,0 + 15715: 88,0 + 15716: 84,0 + 15717: 83,0 + 15718: 82,0 + 15719: 80,0 + 15720: 79,0 + 15721: 78,0 + 16603: -58,-11 + 16604: -60,-15 + 16606: -59,-15 + 16607: -58,-15 + 16610: -60,-15 + 16611: -59,-15 + 16612: -57,-15 + 16613: -56,-15 + 16614: -58,-15 + 16615: -58,-15 + 16616: -57,-15 + 16617: -59,-15 + 16624: -58,-11 + 16626: -58,-11 + 16641: -61,-17 + 16681: -57,-4 + 16683: -58,-5 + 16725: -60,-4 + 16726: -59,-4 + 16729: -53,3 + 16730: -52,3 + 16733: -53,7 + 16734: -52,7 + 16751: -50,-4 + 17426: 6,86 + 17830: -45,23 + 18389: -15,-10 + 18390: -16,-10 + 18391: -13,-10 + 18392: -12,-10 + 18393: -11,-10 + 18394: -9,-10 + 18395: -8,-10 + 18396: -8,-10 + 18397: -7,-10 + 18398: -6,-10 + 18399: -5,-10 + 18402: -14,-11 + 18403: -10,-11 + 18414: 15,-10 + 18415: 14,-10 + 18416: 13,-10 + 18417: 12,-10 + 18418: 11,-10 + 18419: 10,-10 + 18420: 9,-10 + 18421: 5,-10 + 18422: 6,-10 + 18423: 7,-10 + 18424: 5,-10 + 18425: 4,-10 + 18426: 3,-10 + 18427: 2,-10 + 18428: 1,-10 + 18429: 0,-10 + 18430: -1,-10 + 18431: -2,-10 + 18432: -3,-10 + 18433: -4,-10 + 18434: -4,-10 + 18445: 8,-11 + 19796: -27,14 + 19797: -26,14 + 19798: -25,14 + 19799: -25,14 + 19800: -24,14 + 19801: -24,14 + 19820: -28,8 + 19979: 62,21 + 19980: 63,21 + 19981: 64,21 + 19982: 65,21 + 19983: 66,21 + 19984: 68,21 + 19985: 69,21 + 19986: 67,21 + 20012: 62,27 + 20013: 64,27 + 20014: 65,27 + 20015: 66,27 + 20016: 67,27 + 20054: -20,7 + 20055: -19,7 + 20056: -18,7 + 20098: -20,21 + 20099: -19,21 + 20100: -18,21 + 22501: 32,4 + 23863: -34,-16 + 23864: -33,-16 + 23865: -33,-16 + 23866: -32,-16 + 23867: -31,-16 + 23868: -30,-16 + 23869: -30,-16 + 23870: -29,-16 + 23871: -34,-11 + 23872: -33,-11 + 23873: -33,-11 + 23874: -32,-11 + 23875: -31,-11 + 23876: -31,-11 + 23877: -31,-3 + 23878: -30,-3 + 23879: -28,-3 + 23880: -27,-3 + 23881: -26,-3 + 23882: -26,-3 + 23883: -26,-3 + 23884: -25,-3 + 23885: -23,-3 + 23886: -22,-3 + 23887: -22,-3 + 23900: -33,3 + 23901: -32,3 + 23902: -24,-1 + 23903: -33,-10 + 23904: -32,-10 + 23940: -33,-10 + 23941: -32,-10 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelLineS decals: - 899: 25,-2 - 900: 26,-2 - 921: 29,1 - 927: 27,-2 - 4047: -20,25 - 4048: -19,25 - 4049: -18,25 - 4100: 0,25 + 898: 25,-2 + 899: 26,-2 + 920: 29,1 + 926: 27,-2 + 4046: -20,25 + 4047: -19,25 + 4048: -18,25 + 4099: 0,25 + 4101: 0,25 4102: 0,25 - 4103: 0,25 + 4103: -9,25 4104: -9,25 - 4105: -9,25 - 4114: 4,25 - 4115: 5,25 - 4116: 7,25 - 4117: 8,25 + 4113: 4,25 + 4114: 5,25 + 4115: 7,25 + 4116: 8,25 - node: color: '#00C9DAFF' id: BrickTileSteelLineW decals: - 8099: 24,-17 - 8100: 24,-16 - 8105: 32,-16 - 8125: 20,-15 - 8132: 23,-15 + 8098: 24,-17 + 8099: 24,-16 + 8104: 32,-16 + 8124: 20,-15 + 8131: 23,-15 - node: color: '#00FFFFFF' id: BrickTileSteelLineW decals: - 3735: -28,60 - 3736: -28,61 - 3737: -28,62 - 3738: -28,63 - 3739: -28,64 - 3756: -25,59 - 3757: -25,61 - 3758: -25,63 - 10228: 35,-26 - 10350: 13,-47 - 10651: 71,-50 - 15750: 77,5 + 3734: -28,60 + 3735: -28,61 + 3736: -28,62 + 3737: -28,63 + 3738: -28,64 + 3755: -25,59 + 3756: -25,61 + 3757: -25,63 + 10174: 35,-26 + 10292: 13,-47 + 10589: 71,-50 + 15687: 77,5 - node: color: '#52B4E9FF' id: BrickTileSteelLineW decals: - 23364: 20,-47 - 23365: 20,-48 - 23777: 29,-24 - 23786: 28,-23 - 23787: 28,-24 - 23792: 33,-23 + 23291: 20,-47 + 23292: 20,-48 + 23697: 29,-24 + 23706: 28,-23 + 23707: 28,-24 + 23712: 33,-23 - node: color: '#8CB7E8FF' id: BrickTileSteelLineW decals: - 10034: 29,-24 - 10044: 28,-24 - 10045: 28,-23 - 10046: 28,-23 - 10056: 33,-23 - 10057: 33,-23 - 10124: 20,-48 - 10125: 20,-47 - 10180: 32,-52 - 10181: 32,-48 - 10182: 32,-50 + 9980: 29,-24 + 9990: 28,-24 + 9991: 28,-23 + 9992: 28,-23 + 10002: 33,-23 + 10003: 33,-23 + 10070: 20,-48 + 10071: 20,-47 + 10126: 32,-52 + 10127: 32,-48 + 10128: 32,-50 - node: color: '#A9DA8BFF' id: BrickTileSteelLineW decals: - 2863: -24,47 + 2862: -24,47 + 2863: -24,48 2864: -24,48 - 2865: -24,48 - 2866: -24,47 - 2867: -24,48 - 2868: -24,47 - 2990: -39,49 + 2865: -24,47 + 2866: -24,48 + 2867: -24,47 + 2989: -39,49 - node: color: '#B18BDAFF' id: BrickTileSteelLineW decals: - 11947: -31,-31 - 11948: -31,-30 - 11949: -31,-30 - 12013: -32,-29 - 12014: -32,-28 - 12015: -32,-27 - 12017: -44,-29 - 12018: -44,-28 - 12019: -44,-27 - 12029: -48,-27 - 12030: -48,-26 - 12031: -48,-30 - 12032: -48,-29 - 12081: -29,-46 - 12082: -29,-45 - 12083: -29,-44 - 12128: -30,-41 - 12129: -30,-40 - 12130: -26,-41 - 12131: -26,-40 - 12132: -26,-39 - 12307: -21,-43 - 12308: -21,-42 - 12309: -21,-41 - 12310: -21,-40 - 12311: -21,-39 - 12322: -16,-40 - 16124: -66,-47 - 16140: -61,-48 - 19758: -5,-43 - 19759: -5,-42 - 19760: -5,-42 - 19761: -5,-41 - 19777: -5,-40 - - node: - color: '#CEDA8BFF' - id: BrickTileSteelLineW - decals: - 10941: 26,-69 - 10944: 33,-68 + 12019: -29,-46 + 12020: -29,-45 + 12021: -29,-44 + 12066: -30,-41 + 12067: -30,-40 + 12068: -26,-41 + 12069: -26,-40 + 12070: -26,-39 + 12245: -21,-43 + 12246: -21,-42 + 12247: -21,-41 + 12248: -21,-40 + 12249: -21,-39 + 12260: -16,-40 + 16061: -66,-47 + 16077: -61,-48 + 19694: -5,-43 + 19695: -5,-42 + 19696: -5,-42 + 19697: -5,-41 + 19713: -5,-40 - node: color: '#D381C9FF' id: BrickTileSteelLineW decals: - 22765: -16,-40 - 22804: -21,-43 - 22805: -21,-42 - 22806: -21,-42 - 22807: -21,-41 - 22808: -21,-41 - 22809: -21,-40 - 22810: -21,-40 - 22811: -21,-40 - 22812: -21,-39 - 22813: -21,-39 - 22814: -21,-39 - 22820: -16,-40 + 22697: -16,-40 + 22736: -21,-43 + 22737: -21,-42 + 22738: -21,-42 + 22739: -21,-41 + 22740: -21,-41 + 22741: -21,-40 + 22742: -21,-40 + 22743: -21,-40 + 22744: -21,-39 + 22745: -21,-39 + 22746: -21,-39 + 22752: -16,-40 - node: color: '#DA8B8BFF' id: BrickTileSteelLineW decals: - 7801: 64,4 - 7802: 64,5 - 7803: 60,4 - 7804: 60,5 - 7809: 60,4 - 7810: 60,5 - 7823: 71,6 - 19240: 58,3 - 19250: 62,3 - 19251: 66,3 - 19275: 69,8 - 19281: 66,8 - 19282: 66,7 - 19288: 62,7 - 19289: 62,8 - 19290: 62,9 - 19291: 58,7 - 19292: 58,8 + 7800: 64,4 + 7801: 64,5 + 7802: 60,4 + 7803: 60,5 + 7808: 60,4 + 7809: 60,5 + 7822: 71,6 + 19177: 58,3 + 19187: 62,3 + 19188: 66,3 + 19212: 69,8 + 19218: 66,8 + 19219: 66,7 + 19225: 62,7 + 19226: 62,8 + 19227: 62,9 + 19228: 58,7 + 19229: 58,8 - node: color: '#DAA58BFF' id: BrickTileSteelLineW decals: - 4515: 12,35 - 4516: 12,36 + 4514: 12,35 + 4515: 12,36 - node: color: '#DABC8BFF' id: BrickTileSteelLineW decals: - 3648: 9,75 - 3649: 9,76 - 3650: 9,80 - 3651: 9,81 - 3710: 13,78 - 3716: 12,87 - 15337: -49,9 + 3647: 9,75 + 3648: 9,76 + 3649: 9,80 + 3650: 9,81 + 3709: 13,78 + 3715: 12,87 + 15274: -49,9 - node: color: '#DE3A3AFF' id: BrickTileSteelLineW decals: - 20293: -24,1 - 20294: -24,0 - 20299: -45,9 - 20307: -48,8 - 20325: 4,-84 - 20326: 4,-85 - 20327: 4,-86 - 20334: 4,-82 - 20335: 4,-81 - 20387: 7,-77 - 20388: 7,-75 - 20390: 4,-77 - 20410: 3,-61 - 20411: 3,-59 - 20420: 4,-71 - 20421: 4,-70 - 20422: 4,-69 - 20423: 4,-68 - 20430: 15,-31 - 20446: 10,-31 - 20460: 12,31 - 20461: 4,64 - 20464: 4,60 - 20465: 0,63 - 20466: 0,62 - 20467: 0,64 - 20512: 39,12 - 20514: 39,5 - 20515: 46,7 - 20516: 46,6 - 20517: 46,9 - 20533: 38,8 - 20595: 79,9 - 20596: 75,9 - 20616: 43,12 - 20619: 45,12 - 20624: 46,11 - 20631: 49,8 - 20681: 60,25 - 20682: 48,23 - 20683: 48,22 - 20691: 49,30 - 20692: 49,29 - 20693: 49,28 - 20694: 49,27 - 20695: 49,26 - 20696: 49,24 - 20697: 49,25 - 20731: 49,16 - 20738: 49,12 - 20763: 45,23 - 20764: 45,22 - 20765: 45,21 - 20766: 45,19 - 20767: 45,18 - 20768: 45,18 - 20769: 45,17 - 20770: 45,16 - 20791: 58,19 - 20799: 56,18 - 20800: 56,16 - 20804: 50,17 - 20805: 50,18 - 20819: 61,12 - 20831: 49,8 - 20832: 49,4 - 20855: 91,16 - 20856: 91,17 - 20857: 91,18 - 20858: 91,19 - 20859: 91,20 - 20860: 91,22 - 20862: 94,21 - 20876: 94,13 - 20893: 81,13 - 20900: 79,9 - 20901: 75,9 - 20916: 72,7 - 20917: 72,8 - 20918: 72,8 - 20919: 72,9 - 20920: 72,10 - 20921: 72,11 - 20922: 72,12 - 20923: 72,14 - 20924: 72,14 - 20925: 72,15 - 20926: 72,16 - 20927: 72,16 - 20928: 72,17 - 20938: 71,-1 - 20943: 69,0 - 20944: 72,0 - 20950: 43,0 - 20951: 39,0 - 20952: 49,-1 - 20953: 49,0 - 20954: 49,1 - 20972: 72,22 - 20978: 77,22 - 21006: 68,1 - 21007: 68,-1 - 21008: 71,-1 - 21009: 71,1 - 21023: 72,-4 - 21026: 68,-4 - 21027: 72,-4 - 21055: 55,-4 - 21056: 50,-4 - 21071: 46,1 - 21072: 46,2 - 21083: 45,0 - 21096: 38,4 - 21097: 38,6 - 21104: 34,5 - 21117: 39,7 - 21128: 45,8 - 21129: 43,8 - 21148: 50,7 - 21149: 50,6 - 21150: 50,6 - 21151: 50,5 - 21173: 75,-4 - 21178: 76,-3 - 21181: 75,-4 - 21183: 72,-4 - 21184: -20,-25 - 21185: -20,-27 - 21187: -17,-24 - 21201: 4,-65 - 21211: 45,-4 - 21242: 72,2 - 21629: -44,10 - 21632: -44,8 - 21982: 11,30 - 22575: 33,4 - 22576: 33,6 - 24076: 3,-67 - 24077: 3,-66 - 24078: 3,-76 - 24079: 3,-75 - 24080: 2,-60 + 20229: -24,1 + 20230: -24,0 + 20235: -45,9 + 20243: -48,8 + 20261: 4,-84 + 20262: 4,-85 + 20263: 4,-86 + 20270: 4,-82 + 20271: 4,-81 + 20323: 7,-77 + 20324: 7,-75 + 20326: 4,-77 + 20346: 3,-61 + 20347: 3,-59 + 20356: 4,-71 + 20357: 4,-70 + 20358: 4,-69 + 20359: 4,-68 + 20365: 15,-31 + 20379: 10,-31 + 20392: 12,31 + 20393: 4,64 + 20396: 4,60 + 20397: 0,63 + 20398: 0,62 + 20399: 0,64 + 20444: 39,12 + 20446: 39,5 + 20447: 46,7 + 20448: 46,6 + 20449: 46,9 + 20465: 38,8 + 20527: 79,9 + 20528: 75,9 + 20548: 43,12 + 20551: 45,12 + 20556: 46,11 + 20563: 49,8 + 20613: 60,25 + 20614: 48,23 + 20615: 48,22 + 20623: 49,30 + 20624: 49,29 + 20625: 49,28 + 20626: 49,27 + 20627: 49,26 + 20628: 49,24 + 20629: 49,25 + 20663: 49,16 + 20670: 49,12 + 20695: 45,23 + 20696: 45,22 + 20697: 45,21 + 20698: 45,19 + 20699: 45,18 + 20700: 45,18 + 20701: 45,17 + 20702: 45,16 + 20723: 58,19 + 20731: 56,18 + 20732: 56,16 + 20736: 50,17 + 20737: 50,18 + 20751: 61,12 + 20763: 49,8 + 20764: 49,4 + 20787: 91,16 + 20788: 91,17 + 20789: 91,18 + 20790: 91,19 + 20791: 91,20 + 20792: 91,22 + 20794: 94,21 + 20808: 94,13 + 20825: 81,13 + 20832: 79,9 + 20833: 75,9 + 20848: 72,7 + 20849: 72,8 + 20850: 72,8 + 20851: 72,9 + 20852: 72,10 + 20853: 72,11 + 20854: 72,12 + 20855: 72,14 + 20856: 72,14 + 20857: 72,15 + 20858: 72,16 + 20859: 72,16 + 20860: 72,17 + 20870: 71,-1 + 20875: 69,0 + 20876: 72,0 + 20882: 43,0 + 20883: 39,0 + 20884: 49,-1 + 20885: 49,0 + 20886: 49,1 + 20904: 72,22 + 20910: 77,22 + 20938: 68,1 + 20939: 68,-1 + 20940: 71,-1 + 20941: 71,1 + 20955: 72,-4 + 20958: 68,-4 + 20959: 72,-4 + 20987: 55,-4 + 20988: 50,-4 + 21003: 46,1 + 21004: 46,2 + 21015: 45,0 + 21028: 38,4 + 21029: 38,6 + 21036: 34,5 + 21049: 39,7 + 21060: 45,8 + 21061: 43,8 + 21080: 50,7 + 21081: 50,6 + 21082: 50,6 + 21083: 50,5 + 21105: 75,-4 + 21110: 76,-3 + 21113: 75,-4 + 21115: 72,-4 + 21116: -20,-25 + 21117: -20,-27 + 21119: -17,-24 + 21133: 4,-65 + 21143: 45,-4 + 21174: 72,2 + 21561: -44,10 + 21564: -44,8 + 21914: 11,30 + 22507: 33,4 + 22508: 33,6 + 23995: 3,-67 + 23996: 3,-66 + 23997: 3,-76 + 23998: 3,-75 + 23999: 2,-60 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 2251: -14,48 - 2252: -14,50 - 2254: -23,49 - 2258: -23,46 - 2266: -24,43 - 2267: -24,44 - 2271: -24,42 - 2276: -14,46 - 2277: -14,45 - 2278: -14,43 - 2279: -14,44 - 2280: -14,42 - 2281: -14,41 - 2282: -14,40 - 2283: -14,39 - 2284: -14,38 - 2285: -14,37 - 2286: -14,36 - 2291: -23,29 + 2250: -14,48 + 2251: -14,50 + 2253: -23,49 + 2257: -23,46 + 2265: -24,43 + 2266: -24,44 + 2270: -24,42 + 2275: -14,46 + 2276: -14,45 + 2277: -14,43 + 2278: -14,44 + 2279: -14,42 + 2280: -14,41 + 2281: -14,40 + 2282: -14,39 + 2283: -14,38 + 2284: -14,37 + 2285: -14,36 + 2290: -23,29 + 2293: -21,27 2294: -21,27 - 2295: -21,27 - 2323: -27,31 - 2381: -29,36 - 2382: -29,35 - 2383: -29,34 - 2396: -34,37 - 2397: -34,36 - 2398: -34,35 - 2399: -34,34 - 2400: -34,33 - 2413: -14,46 - 2415: -14,36 - 2471: -14,46 - 2583: -14,46 - 2584: -14,36 - 2729: -13,49 - 2762: -2,51 - 2767: -1,48 - 3077: -7,59 - 3155: -7,60 - 3156: -7,61 - 3157: -7,62 - 3158: -7,63 - 3159: -7,64 - 3160: -7,65 - 3179: -7,66 - 3182: -21,59 - 3183: -21,60 + 2322: -27,31 + 2380: -29,36 + 2381: -29,35 + 2382: -29,34 + 2395: -34,37 + 2396: -34,36 + 2397: -34,35 + 2398: -34,34 + 2399: -34,33 + 2412: -14,46 + 2414: -14,36 + 2470: -14,46 + 2582: -14,46 + 2583: -14,36 + 2728: -13,49 + 2761: -2,51 + 2766: -1,48 + 3076: -7,59 + 3154: -7,60 + 3155: -7,61 + 3156: -7,62 + 3157: -7,63 + 3158: -7,64 + 3159: -7,65 + 3178: -7,66 + 3181: -21,59 + 3182: -21,60 + 3183: -21,61 3184: -21,61 - 3185: -21,61 - 3186: -21,62 - 3187: -21,63 - 3188: -21,64 + 3185: -21,62 + 3186: -21,63 + 3187: -21,64 + 3188: -21,65 3189: -21,65 - 3190: -21,65 - 3191: -21,66 - 3315: -32,68 - 3317: -31,70 - 3318: -31,71 - 3319: -31,72 - 3320: -31,73 - 3321: -31,74 - 3322: -31,75 - 3323: -31,76 - 3324: -31,78 - 3325: -31,83 - 3326: -31,85 - 3327: -31,86 - 3328: -32,90 - 3329: -32,89 - 3330: -32,91 - 3331: -31,93 - 3332: -31,94 - 3333: -31,95 - 3371: -13,70 - 3372: -13,71 - 3373: -13,72 - 3374: -13,73 - 3375: -13,74 - 3376: -13,75 - 3377: -13,76 - 3378: -13,78 - 3379: -14,80 - 3380: -14,81 - 3381: -13,83 - 3382: -13,85 - 3383: -13,86 - 3384: -13,87 - 3385: -14,89 - 3386: -14,90 - 3387: -14,91 - 3388: -13,93 - 3389: -13,94 - 3390: -13,95 - 3479: -32,81 - 3480: -32,80 - 3505: -14,90 - 3558: -21,58 - 3559: -21,57 - 3560: -21,56 - 3567: -10,77 - 3569: -8,77 - 3571: -14,77 - 3579: -8,84 - 3580: -10,84 - 3581: -14,84 - 3587: -32,84 - 3588: -28,84 - 3591: -26,84 - 3600: -32,77 - 3601: -28,77 - 3602: -26,77 - 3620: 5,70 - 3621: 5,71 - 3622: 5,72 - 3623: 5,73 - 3624: 5,74 + 3190: -21,66 + 3314: -32,68 + 3316: -31,70 + 3317: -31,71 + 3318: -31,72 + 3319: -31,73 + 3320: -31,74 + 3321: -31,75 + 3322: -31,76 + 3323: -31,78 + 3324: -31,83 + 3325: -31,85 + 3326: -31,86 + 3327: -32,90 + 3328: -32,89 + 3329: -32,91 + 3330: -31,93 + 3331: -31,94 + 3332: -31,95 + 3370: -13,70 + 3371: -13,71 + 3372: -13,72 + 3373: -13,73 + 3374: -13,74 + 3375: -13,75 + 3376: -13,76 + 3377: -13,78 + 3378: -14,80 + 3379: -14,81 + 3380: -13,83 + 3381: -13,85 + 3382: -13,86 + 3383: -13,87 + 3384: -14,89 + 3385: -14,90 + 3386: -14,91 + 3387: -13,93 + 3388: -13,94 + 3389: -13,95 + 3478: -32,81 + 3479: -32,80 + 3504: -14,90 + 3557: -21,58 + 3558: -21,57 + 3559: -21,56 + 3566: -10,77 + 3568: -8,77 + 3570: -14,77 + 3578: -8,84 + 3579: -10,84 + 3580: -14,84 + 3586: -32,84 + 3587: -28,84 + 3590: -26,84 + 3599: -32,77 + 3600: -28,77 + 3601: -26,77 + 3619: 5,70 + 3620: 5,71 + 3621: 5,72 + 3622: 5,73 + 3623: 5,74 + 3624: 5,75 3625: 5,75 - 3626: 5,75 - 3627: 5,76 - 3628: 5,78 - 3629: 4,80 - 3630: 4,81 - 3631: 5,83 - 3659: 4,77 - 3663: 4,84 - 3665: 4,84 - 3774: 4,57 - 3821: 9,68 - 4170: -17,14 - 4171: -17,15 - 4311: 16,16 - 4312: 16,17 - 4313: 16,18 - 4314: 16,19 - 4315: 16,20 - 4323: 16,13 - 4324: 16,12 - 4325: 16,11 - 4326: 16,10 - 4327: 16,8 - 4328: 16,10 - 4329: 16,9 - 4330: 16,7 - 4331: 16,6 - 4332: 16,4 - 4333: 16,5 - 4334: 16,3 - 4335: 16,2 - 4336: 16,0 - 4337: 16,-1 - 4338: 16,1 - 4339: 16,-2 - 4661: 19,24 - 5097: 32,28 - 5098: 32,27 + 3626: 5,76 + 3627: 5,78 + 3628: 4,80 + 3629: 4,81 + 3630: 5,83 + 3658: 4,77 + 3662: 4,84 + 3664: 4,84 + 3773: 4,57 + 3820: 9,68 + 4169: -17,14 + 4170: -17,15 + 4310: 16,16 + 4311: 16,17 + 4312: 16,18 + 4313: 16,19 + 4314: 16,20 + 4322: 16,13 + 4323: 16,12 + 4324: 16,11 + 4325: 16,10 + 4326: 16,8 + 4327: 16,10 + 4328: 16,9 + 4329: 16,7 + 4330: 16,6 + 4331: 16,4 + 4332: 16,5 + 4333: 16,3 + 4334: 16,2 + 4335: 16,0 + 4336: 16,-1 + 4337: 16,1 + 4338: 16,-2 + 4660: 19,24 + 5096: 32,28 + 5097: 32,27 + 5098: 32,26 5099: 32,26 - 5100: 32,26 - 5126: 37,30 - 5131: 36,28 - 5132: 36,27 - 5211: 16,-6 - 5212: 16,-5 - 5213: 16,-3 - 5261: -31,79 - 5262: -31,80 + 5125: 37,30 + 5130: 36,28 + 5131: 36,27 + 5210: 16,-6 + 5211: 16,-5 + 5212: 16,-3 + 5260: -31,79 + 5261: -31,80 + 5262: -31,81 5263: -31,81 - 5264: -31,81 + 5264: -31,82 5265: -31,82 - 5266: -31,82 - 5267: -31,88 + 5266: -31,88 + 5267: -31,89 5268: -31,89 - 5269: -31,89 - 5270: -31,90 - 5271: -31,91 + 5269: -31,90 + 5270: -31,91 + 5271: -31,92 5272: -31,92 - 5273: -31,92 - 5287: -13,79 - 5288: -13,80 + 5286: -13,79 + 5287: -13,80 + 5288: -13,81 5289: -13,81 - 5290: -13,81 + 5290: -13,82 5291: -13,82 - 5292: -13,82 + 5292: -13,88 5293: -13,88 - 5294: -13,88 - 5295: -13,89 - 5296: -13,90 + 5294: -13,89 + 5295: -13,90 + 5296: -13,91 5297: -13,91 - 5298: -13,91 + 5306: -13,92 5307: -13,92 - 5308: -13,92 - 5350: 5,79 - 5351: 5,80 + 5349: 5,79 + 5350: 5,80 + 5351: 5,81 5352: 5,81 5353: 5,81 - 5354: 5,81 - 5355: 5,82 - 5357: 16,-7 - 5526: -17,4 - 5527: -17,-1 - 5540: -20,-8 - 5541: -20,-9 + 5354: 5,82 + 5356: 16,-7 + 5525: -17,4 + 5526: -17,-1 + 5539: -20,-8 + 5540: -20,-9 + 5541: -20,-10 5542: -20,-10 - 5543: -20,-10 - 5544: -20,-11 - 5545: -20,-12 - 5546: -20,-13 - 5547: -20,-14 - 5613: -17,-8 - 5641: 15,-8 - 5777: 15,-4 - 5785: 7,-5 - 6103: 16,-18 - 6104: 16,-17 - 6105: 16,-16 - 6106: 16,-15 - 6107: 16,-14 - 6108: 16,-13 - 6109: 16,-12 - 6110: 16,-11 - 6137: -17,-19 - 6138: -17,-20 - 6139: -17,-21 - 6157: -17,-19 - 6248: -6,-15 - 6249: -6,-16 - 6264: -3,-19 - 6265: -3,-20 - 6266: -3,-21 - 6273: 1,-21 - 6274: 1,-20 - 6275: 1,-19 - 6288: 15,-21 - 6289: 15,-20 - 6290: 15,-19 - 6323: -3,-16 - 6350: 6,-12 - 6351: 6,-13 - 6352: 6,-14 + 5543: -20,-11 + 5544: -20,-12 + 5545: -20,-13 + 5546: -20,-14 + 5612: -17,-8 + 5640: 15,-8 + 5776: 15,-4 + 5784: 7,-5 + 6102: 16,-18 + 6103: 16,-17 + 6104: 16,-16 + 6105: 16,-15 + 6106: 16,-14 + 6107: 16,-13 + 6108: 16,-12 + 6109: 16,-11 + 6136: -17,-19 + 6137: -17,-20 + 6138: -17,-21 + 6156: -17,-19 + 6247: -6,-15 + 6248: -6,-16 + 6263: -3,-19 + 6264: -3,-20 + 6265: -3,-21 + 6272: 1,-21 + 6273: 1,-20 + 6274: 1,-19 + 6287: 15,-21 + 6288: 15,-20 + 6289: 15,-19 + 6322: -3,-16 + 6349: 6,-12 + 6350: 6,-13 + 6351: 6,-14 + 6352: 6,-15 6353: 6,-15 - 6354: 6,-15 - 6355: 6,-16 - 6370: 11,-16 - 6387: 12,-17 - 6393: 12,-15 + 6354: 6,-16 + 6369: 11,-16 + 6386: 12,-17 + 6392: 12,-15 + 6431: -20,-19 6432: -20,-19 6433: -20,-19 6434: -20,-19 6435: -20,-19 - 6436: -20,-19 - 6769: -17,-1 - 6791: -43,22 + 6768: -17,-1 + 6790: -43,22 + 6791: -44,20 6792: -44,20 - 6793: -44,20 + 6793: -44,19 6794: -44,19 - 6795: -44,19 - 6796: -44,17 - 6797: -44,16 - 6865: -38,14 - 6866: -38,13 + 6795: -44,17 + 6796: -44,16 + 6864: -38,14 + 6865: -38,13 + 6866: -38,12 6867: -38,12 - 6868: -38,12 - 6869: -38,11 + 6868: -38,11 + 6869: -38,10 6870: -38,10 - 6871: -38,10 - 6904: -21,11 - 6905: -21,12 + 6903: -21,11 + 6904: -21,12 + 6926: -29,14 6927: -29,14 - 6928: -29,14 - 6929: -29,13 - 6930: -29,12 + 6928: -29,13 + 6929: -29,12 + 6930: -29,11 6931: -29,11 - 6932: -29,11 - 6933: -29,10 - 6934: -29,9 - 7037: 26,6 - 7038: 26,5 - 7039: 26,4 - 7042: 19,4 - 7043: 19,5 - 7044: 19,6 - 7056: 20,9 - 7090: 19,-12 - 7091: 19,-11 - 7092: 19,-10 - 7099: 26,-12 - 7100: 26,-11 - 7101: 26,-10 - 7117: 19,-3 - 7131: 25,-1 - 7132: 25,0 - 7133: 25,1 - 7134: 25,2 - 7162: 25,-3 - 7163: 25,-4 + 6932: -29,10 + 6933: -29,9 + 7036: 26,6 + 7037: 26,5 + 7038: 26,4 + 7041: 19,4 + 7042: 19,5 + 7043: 19,6 + 7055: 20,9 + 7089: 19,-12 + 7090: 19,-11 + 7091: 19,-10 + 7098: 26,-12 + 7099: 26,-11 + 7100: 26,-10 + 7116: 19,-3 + 7130: 25,-1 + 7131: 25,0 + 7132: 25,1 + 7133: 25,2 + 7161: 25,-3 + 7162: 25,-4 + 7163: 25,-5 7164: 25,-5 - 7165: 25,-5 - 7166: 25,-6 - 7305: 28,10 - 7346: 33,4 - 7347: 33,6 - 7981: 79,-21 - 7982: 79,-20 - 7995: 78,-22 - 7996: 78,-19 - 7997: 82,-19 - 7998: 82,-22 - 8003: 66,-19 - 8006: 66,-22 - 8144: 32,-12 + 7165: 25,-6 + 7304: 28,10 + 7345: 33,4 + 7346: 33,6 + 7980: 79,-21 + 7981: 79,-20 + 7994: 78,-22 + 7995: 78,-19 + 7996: 82,-19 + 7997: 82,-22 + 8002: 66,-19 + 8005: 66,-22 + 8143: 32,-12 + 8144: 32,-10 8145: 32,-10 - 8146: 32,-10 - 8156: 33,-11 + 8155: 33,-11 + 8156: 33,-13 8157: 33,-13 - 8158: 33,-13 - 8159: 33,-15 - 8168: 33,-9 - 8169: 33,-8 - 8203: 33,-7 + 8158: 33,-15 + 8167: 33,-9 + 8168: 33,-8 + 8202: 33,-7 + 8275: 42,-8 8276: 42,-8 - 8277: 42,-8 - 8319: 41,-17 + 8318: 41,-17 + 8324: 39,-17 8325: 39,-17 - 8326: 39,-17 + 8338: 38,-20 8339: 38,-20 - 8340: 38,-20 - 8393: 42,-19 - 8394: 42,-21 + 8392: 42,-19 + 8393: 42,-21 + 8414: 54,-21 8415: 54,-21 - 8416: 54,-21 + 8416: 54,-19 8417: 54,-19 - 8418: 54,-19 - 8456: 55,-20 - 8457: 55,-22 + 8455: 55,-20 + 8456: 55,-22 + 8457: 55,-23 8458: 55,-23 - 8459: 55,-23 + 8459: 55,-24 8460: 55,-24 - 8461: 55,-24 - 8464: 57,-20 - 8465: 57,-21 - 8568: 55,-28 + 8463: 57,-20 + 8464: 57,-21 + 8567: 55,-28 + 8568: 55,-27 8569: 55,-27 - 8570: 55,-27 - 8571: 55,-26 - 8572: 55,-25 - 8573: 55,-30 - 8574: 55,-17 - 8575: 55,-18 - 8576: 55,-16 + 8570: 55,-26 + 8571: 55,-25 + 8572: 55,-30 + 8573: 55,-17 + 8574: 55,-18 + 8575: 55,-16 + 8576: 55,-15 8577: 55,-15 - 8578: 55,-15 - 8579: 55,-14 + 8578: 55,-14 + 8579: 55,-13 8580: 55,-13 - 8581: 55,-13 - 8582: 55,-12 - 8654: 64,-19 + 8581: 55,-12 + 8653: 64,-19 + 8654: 64,-22 8655: 64,-22 - 8656: 64,-22 - 8798: -2,-23 + 8797: -2,-23 + 8798: -2,-24 8799: -2,-24 - 8800: -2,-24 - 8801: -2,-27 - 8802: -2,-28 - 8814: 1,-26 - 8815: 1,-25 - 8838: -2,-30 - 8839: -2,-31 - 8840: -2,-32 - 8841: -2,-33 - 8887: -7,-28 - 8888: -15,-28 + 8800: -2,-27 + 8801: -2,-28 + 8813: 1,-26 + 8814: 1,-25 + 8837: -2,-30 + 8838: -2,-31 + 8839: -2,-32 + 8840: -2,-33 + 8886: -7,-28 + 8887: -15,-28 + 8888: -15,-27 8889: -15,-27 - 8890: -15,-27 - 8909: -14,-23 - 8910: -14,-23 - 8911: -7,-23 - 8953: -7,-28 - 9170: 0,-74 - 9171: 0,-73 - 9172: 0,-73 - 9173: 0,-72 - 9174: 0,-72 - 9175: 0,-68 - 9176: 0,-68 - 9177: 0,-67 - 9178: 0,-67 - 9193: -11,-65 - 9194: -11,-65 - 9195: -11,-68 - 9196: -11,-69 - 9197: -11,-70 - 9198: -11,-71 - 9199: -11,-72 - 9200: -11,-72 - 9201: -11,-73 - 9202: -11,-74 - 9203: -11,-75 - 9204: -11,-76 - 9205: -11,-77 - 9211: -9,-79 - 9212: -9,-80 - 9213: -9,-81 - 9214: -9,-81 - 9260: -7,-71 - 9261: -7,-70 - 9262: -7,-69 - 9263: -7,-69 - 9291: -3,-59 - 9294: -3,-61 - 9295: -3,-61 - 9321: -2,-53 - 9322: -2,-52 - 9323: -2,-52 - 9324: -2,-54 - 9325: -2,-54 - 9326: -2,-51 - 9327: -2,-50 - 9328: -2,-49 - 9329: -2,-49 - 9330: -2,-47 - 9331: -2,-47 - 9332: -2,-46 - 9333: -2,-46 - 9334: -2,-45 - 9335: -2,-45 - 9336: -2,-44 - 9337: -2,-44 - 9338: -2,-43 - 9339: -2,-42 - 9340: -2,-39 - 9341: -2,-38 - 9342: -2,-38 - 9343: 1,-45 - 9358: -2,-56 - 9359: -2,-55 - 9360: -2,-55 - 9430: -42,-15 - 9431: -42,-16 - 9549: 2,-35 - 9610: 1,-39 - 9617: -11,-65 - 10336: 1,-44 - 10367: 1,-51 - 10394: 3,-52 - 10395: 3,-52 - 10396: 3,-51 - 10397: 3,-50 - 10516: 2,-60 - 10517: 2,-60 - 10550: 3,-67 - 10551: 3,-66 - 10552: 3,-75 - 10553: 3,-76 - 10560: 4,-84 - 10561: 4,-85 - 10562: 4,-86 - 10569: 2,-60 - 10603: 43,-41 - 10604: 43,-41 - 10605: 43,-40 - 10606: 43,-39 - 10637: 50,-42 - 10638: 50,-42 - 11222: -60,-42 - 11223: -60,-37 - 11224: -60,-35 - 11225: -60,-35 - 11276: -78,-31 - 11277: -78,-20 - 11282: -78,-31 - 11320: -6,-86 - 11321: -6,-84 - 11322: -6,-85 - 11323: -4,-86 - 11324: -4,-85 - 11325: -4,-84 - 11326: 2,-86 - 11327: 2,-85 - 11328: 2,-84 - 11392: -15,-32 - 11393: -15,-31 - 11394: -15,-30 - 11808: -39,-56 - 11809: -39,-56 - 11818: -42,-53 - 11819: -42,-54 - 11820: -42,-55 - 11824: -36,-53 - 11849: -26,-51 - 12521: -18,-78 - 13340: -44,10 - 13390: -38,-62 - 13391: -38,-61 - 14372: -45,13 - 14899: 6,22 - 14900: 6,23 - 14901: 6,24 - 14926: -8,24 - 14927: -8,23 - 14928: -8,22 - 14930: -20,24 - 14931: -20,23 - 14932: -20,22 - 15200: 43,-20 - 15328: -1,-70 - 15362: -43,5 - 15363: -43,6 - 15375: -40,6 - 15376: -40,5 - 15377: -40,4 - 16366: -60,-49 - 16671: -61,-13 - 16672: -61,-14 - 16702: -60,-17 - 16785: -61,-2 - 16786: -61,-3 - 16805: -53,4 - 16806: -53,5 - 16807: -53,6 - 16820: -56,-9 - 16821: -56,-7 - 17485: 9,75 - 17486: 9,76 - 17487: 9,80 - 17488: 9,81 - 17895: -44,23 - 18449: -17,-10 - 18450: -17,-9 - 18513: 15,-10 - 18514: 15,-9 - 18515: 15,-8 - 19866: -23,13 - 19867: -23,12 - 19868: -23,12 - 19869: -23,11 - 19870: -23,10 - 19981: -15,4 - 19988: -16,0 - 19989: -16,1 - 19990: -16,2 - 19991: -16,3 - 20051: 61,22 - 20052: 61,23 - 20053: 61,24 - 20057: 71,26 - 20112: -21,4 - 20113: -21,5 - 20114: -21,6 - 20165: -20,19 - 20166: -20,18 - 20167: -20,16 - 20168: -20,15 - 20169: -20,15 - 20170: -20,14 - 20171: -20,14 - 20172: -20,13 - 20187: -20,2 - 20188: -20,2 - 20189: -20,1 - 20190: -20,0 - 20191: -20,-1 - 20193: -20,-4 - 20194: -20,-5 - 20195: -20,-6 - 20253: -20,3 - 20255: -17,-1 - 20256: -17,4 - 20257: -17,15 - 20258: -17,14 - 20259: -20,14 - 20260: -20,2 - 20261: -20,3 - 20262: -20,1 - 20263: -20,1 - 20264: -20,8 - 20265: -20,9 - 20266: -20,9 - 20267: -20,10 - 20268: -20,9 - 20269: -20,8 - 20270: -20,8 - 21329: 19,14 - 21330: 19,15 - 21332: 28,11 - 23969: -21,-3 - 23970: -21,-2 - 23988: -33,-9 - 23989: -33,-8 - 23990: -33,-8 - 23991: -33,-8 - 23992: -33,-7 - 23993: -33,-6 - 23994: -33,-6 - 23995: -33,-5 - 23996: -33,-4 - 23997: -33,-4 - 23998: -33,-3 - 23999: -33,-2 - 24000: -33,-2 - 24001: -33,-1 - 24002: -33,-1 - 24003: -33,0 - 24004: -33,1 - 24005: -33,2 - 24006: -33,2 - 24008: -31,1 - 24033: -30,-15 - 24034: -30,-14 - 24035: -30,-13 - 24036: -30,-13 - 24037: -30,-12 - 24049: -35,-15 - 24050: -35,-14 - 24051: -35,-13 - 24052: -35,-12 + 8907: -14,-23 + 8908: -14,-23 + 8909: -7,-23 + 8951: -7,-28 + 9159: 0,-74 + 9160: 0,-73 + 9161: 0,-73 + 9162: 0,-72 + 9163: 0,-72 + 9164: 0,-68 + 9165: 0,-68 + 9166: 0,-67 + 9167: 0,-67 + 9182: -11,-65 + 9183: -11,-65 + 9184: -11,-68 + 9185: -11,-69 + 9186: -11,-70 + 9187: -11,-71 + 9188: -11,-72 + 9189: -11,-72 + 9190: -11,-73 + 9191: -11,-74 + 9192: -11,-75 + 9193: -11,-76 + 9194: -11,-77 + 9200: -9,-79 + 9201: -9,-80 + 9202: -9,-81 + 9203: -9,-81 + 9249: -7,-71 + 9250: -7,-70 + 9251: -7,-69 + 9252: -7,-69 + 9280: -3,-59 + 9283: -3,-61 + 9284: -3,-61 + 9310: -2,-53 + 9311: -2,-52 + 9312: -2,-52 + 9313: -2,-54 + 9314: -2,-54 + 9315: -2,-51 + 9316: -2,-50 + 9317: -2,-49 + 9318: -2,-49 + 9319: -2,-47 + 9320: -2,-47 + 9321: -2,-46 + 9322: -2,-46 + 9323: -2,-45 + 9324: -2,-45 + 9325: -2,-44 + 9326: -2,-44 + 9327: -2,-43 + 9328: -2,-42 + 9329: -2,-39 + 9330: -2,-38 + 9331: -2,-38 + 9332: 1,-45 + 9347: -2,-56 + 9348: -2,-55 + 9349: -2,-55 + 9418: -42,-15 + 9419: -42,-16 + 9525: 2,-35 + 9586: 1,-39 + 9593: -11,-65 + 10282: 1,-44 + 10307: 1,-51 + 10332: 3,-52 + 10333: 3,-52 + 10334: 3,-51 + 10335: 3,-50 + 10454: 2,-60 + 10455: 2,-60 + 10488: 3,-67 + 10489: 3,-66 + 10490: 3,-75 + 10491: 3,-76 + 10498: 4,-84 + 10499: 4,-85 + 10500: 4,-86 + 10507: 2,-60 + 10541: 43,-41 + 10542: 43,-41 + 10543: 43,-40 + 10544: 43,-39 + 10575: 50,-42 + 10576: 50,-42 + 11160: -60,-42 + 11161: -60,-37 + 11162: -60,-35 + 11163: -60,-35 + 11214: -78,-31 + 11215: -78,-20 + 11220: -78,-31 + 11258: -6,-86 + 11259: -6,-84 + 11260: -6,-85 + 11261: -4,-86 + 11262: -4,-85 + 11263: -4,-84 + 11264: 2,-86 + 11265: 2,-85 + 11266: 2,-84 + 11330: -15,-32 + 11331: -15,-31 + 11332: -15,-30 + 11746: -39,-56 + 11747: -39,-56 + 11756: -42,-53 + 11757: -42,-54 + 11758: -42,-55 + 11762: -36,-53 + 11787: -26,-51 + 12458: -18,-78 + 13277: -44,10 + 13327: -38,-62 + 13328: -38,-61 + 14309: -45,13 + 14836: 6,22 + 14837: 6,23 + 14838: 6,24 + 14863: -8,24 + 14864: -8,23 + 14865: -8,22 + 14867: -20,24 + 14868: -20,23 + 14869: -20,22 + 15137: 43,-20 + 15265: -1,-70 + 15299: -43,5 + 15300: -43,6 + 15312: -40,6 + 15313: -40,5 + 15314: -40,4 + 16303: -60,-49 + 16608: -61,-13 + 16609: -61,-14 + 16639: -60,-17 + 16722: -61,-2 + 16723: -61,-3 + 16742: -53,4 + 16743: -53,5 + 16744: -53,6 + 16757: -56,-9 + 16758: -56,-7 + 17422: 9,75 + 17423: 9,76 + 17424: 9,80 + 17425: 9,81 + 17832: -44,23 + 18386: -17,-10 + 18387: -17,-9 + 18450: 15,-10 + 18451: 15,-9 + 18452: 15,-8 + 19802: -23,13 + 19803: -23,12 + 19804: -23,12 + 19805: -23,11 + 19806: -23,10 + 19917: -15,4 + 19924: -16,0 + 19925: -16,1 + 19926: -16,2 + 19927: -16,3 + 19987: 61,22 + 19988: 61,23 + 19989: 61,24 + 19993: 71,26 + 20048: -21,4 + 20049: -21,5 + 20050: -21,6 + 20101: -20,19 + 20102: -20,18 + 20103: -20,16 + 20104: -20,15 + 20105: -20,15 + 20106: -20,14 + 20107: -20,14 + 20108: -20,13 + 20123: -20,2 + 20124: -20,2 + 20125: -20,1 + 20126: -20,0 + 20127: -20,-1 + 20129: -20,-4 + 20130: -20,-5 + 20131: -20,-6 + 20189: -20,3 + 20191: -17,-1 + 20192: -17,4 + 20193: -17,15 + 20194: -17,14 + 20195: -20,14 + 20196: -20,2 + 20197: -20,3 + 20198: -20,1 + 20199: -20,1 + 20200: -20,8 + 20201: -20,9 + 20202: -20,9 + 20203: -20,10 + 20204: -20,9 + 20205: -20,8 + 20206: -20,8 + 21261: 19,14 + 21262: 19,15 + 21264: 28,11 + 23888: -21,-3 + 23889: -21,-2 + 23907: -33,-9 + 23908: -33,-8 + 23909: -33,-8 + 23910: -33,-8 + 23911: -33,-7 + 23912: -33,-6 + 23913: -33,-6 + 23914: -33,-5 + 23915: -33,-4 + 23916: -33,-4 + 23917: -33,-3 + 23918: -33,-2 + 23919: -33,-2 + 23920: -33,-1 + 23921: -33,-1 + 23922: -33,0 + 23923: -33,1 + 23924: -33,2 + 23925: -33,2 + 23927: -31,1 + 23952: -30,-15 + 23953: -30,-14 + 23954: -30,-13 + 23955: -30,-13 + 23956: -30,-12 + 23968: -35,-15 + 23969: -35,-14 + 23970: -35,-13 + 23971: -35,-12 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 909: 28,-7 - 910: 28,-6 - 911: 28,-5 - 912: 28,-4 - 913: 28,-3 - 914: 28,-1 - 915: 28,0 - 918: 30,2 - 4065: -20,19 - 4066: -20,18 - 4067: -20,16 - 4068: -20,15 + 908: 28,-7 + 909: 28,-6 + 910: 28,-5 + 911: 28,-4 + 912: 28,-3 + 913: 28,-1 + 914: 28,0 + 917: 30,2 + 4064: -20,19 + 4065: -20,18 + 4066: -20,16 + 4067: -20,15 + 4068: -20,14 4069: -20,14 - 4070: -20,14 - 4071: -20,13 - 4072: -20,10 - 4073: -20,9 + 4070: -20,13 + 4071: -20,10 + 4072: -20,9 + 4073: -20,8 4074: -20,8 - 4075: -20,8 - 4076: -20,7 + 4075: -20,7 - node: color: '#3EB388FF' id: BrickTileWhiteCornerNe decals: - 21645: -54,37 - 21651: -54,34 - 21663: -53,24 - 21679: -52,18 - 21716: -47,42 - 21781: -44,45 - 21857: -58,54 - 21862: -58,58 + 21577: -54,37 + 21583: -54,34 + 21595: -53,24 + 21611: -52,18 + 21648: -47,42 + 21713: -44,45 + 21789: -58,54 + 21794: -58,58 + - node: + color: '#439909FF' + id: BrickTileWhiteCornerNe + decals: + 24629: 28,-60 + 24643: 28,-55 + 24665: 36,-60 + 24666: 41,-60 + 24731: 32,-66 + 24750: 42,-70 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNe decals: - 23156: 18,-24 - 23220: 14,-34 - 23299: 38,-34 - 23460: 38,-44 - 23483: 38,-38 - 23526: 24,-43 - 23598: 10,-43 - 23606: 6,-43 - 23644: 14,-38 - 23658: 14,-43 - 23700: 24,-38 - 23799: 22,-25 - 23809: 26,-27 - 23818: 32,-29 - 23838: 31,-47 - 23864: -5,-58 - 23886: 7,65 + 23085: 18,-24 + 23148: 14,-34 + 23226: 38,-34 + 23387: 38,-44 + 23408: 38,-38 + 23451: 24,-43 + 23523: 10,-43 + 23531: 6,-43 + 23566: 14,-38 + 23579: 14,-43 + 23620: 24,-38 + 23719: 22,-25 + 23729: 26,-27 + 23738: 32,-29 + 23758: 31,-47 + 23783: -5,-58 + 23805: 7,65 - node: color: '#8BC9DAFF' id: BrickTileWhiteCornerNe decals: - 3893: 27,67 - 9423: -37,2 - 17871: -54,34 - 17873: -54,37 - 17901: -47,42 - 17965: -44,45 - 17988: -58,54 - 18000: -58,58 - 18088: -53,24 + 3892: 27,67 + 9411: -37,2 + 17808: -54,34 + 17810: -54,37 + 17838: -47,42 + 17902: -44,45 + 17925: -58,54 + 17937: -58,58 + 18025: -53,24 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerNe decals: - 9519: 38,-34 - 9527: 18,-24 - 9704: 14,-34 - 9914: 24,-38 - 9949: 38,-38 - 9950: 38,-44 - 10081: 14,-38 - 10105: 24,-46 - 10143: 24,-43 - 10167: 34,-47 - 10208: 31,-47 - 10306: 10,-43 - 10310: 6,-43 - 10352: 14,-43 - 19345: 7,65 - 19376: -5,-58 - 19726: 22,-25 - 19734: 26,-27 - 19740: 32,-29 + 9499: 38,-34 + 9507: 18,-24 + 9669: 14,-34 + 9861: 24,-38 + 9896: 38,-38 + 9897: 38,-44 + 10027: 14,-38 + 10051: 24,-46 + 10089: 24,-43 + 10113: 34,-47 + 10154: 31,-47 + 10252: 10,-43 + 10256: 6,-43 + 10294: 14,-43 + 19282: 7,65 + 19312: -5,-58 + 19662: 22,-25 + 19670: 26,-27 + 19676: 32,-29 - node: color: '#A46106FF' id: BrickTileWhiteCornerNe decals: - 21974: 10,31 - 22035: 11,37 - 22076: 11,40 - 22093: 11,46 - 22117: 21,39 - 22195: 13,54 - 22292: 22,38 - 22306: 15,35 - 22460: 17,32 - 22532: 29,38 - 22545: 29,44 + 21906: 10,31 + 21967: 11,37 + 22008: 11,40 + 22025: 11,46 + 22049: 21,39 + 22127: 13,54 + 22224: 22,38 + 22238: 15,35 + 22392: 17,32 + 22464: 29,38 + 22477: 29,44 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerNe decals: - 2908: -28,55 - 2992: -37,50 + 2907: -28,55 + 2991: -37,50 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerNe decals: - 5138: 43,30 - 11663: -4,-30 - 11877: -33,-40 - 12058: -22,-24 - 12218: -13,-56 - 12248: -4,-46 + 5137: 43,30 + 11601: -4,-30 + 11815: -33,-40 + 11996: -22,-24 + 12156: -13,-56 + 12186: -4,-46 - node: color: '#B240B4FF' id: BrickTileWhiteCornerNe decals: - 657: -21,-56 - - node: - color: '#CEDA8BFF' - id: BrickTileWhiteCornerNe - decals: - 10805: 28,-55 - 10823: 36,-60 - 10851: 41,-60 - 10900: 42,-70 - 10918: 42,-73 + 656: -21,-56 - node: color: '#D381C9FF' id: BrickTileWhiteCornerNe decals: - 22862: -22,-24 - 22968: -4,-30 - 23030: -4,-46 - 23099: -13,-56 + 22794: -22,-24 + 22900: -4,-30 + 22962: -4,-46 + 23031: -13,-56 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerNe decals: - 19210: 70,16 - 19224: 63,-3 - 19234: 66,-3 + 19147: 70,16 + 19161: 63,-3 + 19171: 66,-3 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerNe decals: - 2702: -9,54 - 2810: -5,34 - 3804: 12,70 + 2701: -9,54 + 2809: -5,34 + 3803: 12,70 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerNe decals: - 4377: 10,31 - 4400: 11,37 - 4461: 17,32 - 4549: 11,40 - 4555: 11,46 - 4570: 21,39 - 4599: 22,38 - 4624: 27,32 - 4739: 29,38 - 4758: 15,35 - 4782: 29,44 - 4906: 13,54 - 5154: 43,30 + 4376: 10,31 + 4399: 11,37 + 4460: 17,32 + 4548: 11,40 + 4554: 11,46 + 4569: 21,39 + 4598: 22,38 + 4623: 27,32 + 4738: 29,38 + 4757: 15,35 + 4781: 29,44 + 4905: 13,54 + 5153: 43,30 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNe decals: - 16887: -49,-1 - 16957: -63,2 - 16974: -57,-6 - 17010: -51,-6 - 17038: -55,-12 - 17074: -47,-13 - 17108: -47,15 - 17110: -61,15 - 17193: -68,16 - 17289: -57,19 - 17325: -45,-6 - 17346: -63,-6 - 17425: 11,88 - 17432: 7,90 - 17463: 12,82 - 17509: -62,10 - 17581: -66,2 - 17648: -70,12 - 17730: -76,1 - 17776: -67,-10 - 17811: -52,18 - 18151: -55,-1 + 16824: -49,-1 + 16894: -63,2 + 16911: -57,-6 + 16947: -51,-6 + 16975: -55,-12 + 17011: -47,-13 + 17045: -47,15 + 17047: -61,15 + 17130: -68,16 + 17226: -57,19 + 17262: -45,-6 + 17283: -63,-6 + 17362: 11,88 + 17369: 7,90 + 17400: 12,82 + 17446: -62,10 + 17518: -66,2 + 17585: -70,12 + 17667: -76,1 + 17713: -67,-10 + 17748: -52,18 + 18088: -55,-1 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe decals: - 856: 70,-41 - 971: 0,-15 - 1176: 49,-14 - 2061: -22,47 - 2142: -22,29 - 3845: 23,71 + 855: 70,-41 + 970: 0,-15 + 1175: 49,-14 + 2060: -22,47 + 2141: -22,29 + 3844: 23,71 + 4152: -23,23 4153: -23,23 - 4154: -23,23 - 5564: -33,29 - 5566: -30,28 - 6708: -28,-11 - 6727: -28,-11 - 6959: -23,-15 - 8042: 57,-29 - 8043: 57,-16 - 8677: -6,-77 - 8682: -4,-80 - 9457: 74,-49 - 10963: 42,-67 - 10964: 41,-66 - 15319: -3,-69 - 15577: 95,-2 - 15662: 97,7 - 19691: 34,-15 + 5563: -33,29 + 5565: -30,28 + 6707: -28,-11 + 6726: -28,-11 + 6958: -23,-15 + 8041: 57,-29 + 8042: 57,-16 + 8676: -6,-77 + 8681: -4,-80 + 9445: 74,-49 + 15256: -3,-69 + 15514: 95,-2 + 15599: 97,7 + 19627: 34,-15 + 24765: 41,-66 + 24766: 42,-67 - node: color: '#0A6AB6FF' id: BrickTileWhiteCornerNw decals: - 874: 72,-44 + 873: 72,-44 - node: color: '#334E6DFF' id: BrickTileWhiteCornerNw decals: - 21281: -16,16 + 21213: -16,16 - node: color: '#3EB388FF' id: BrickTileWhiteCornerNw decals: - 21634: -57,37 - 21664: -50,23 - 21682: -55,18 - 21717: -50,42 - 21718: -51,38 - 21782: -47,55 - 21854: -60,54 - 21861: -60,58 + 21566: -57,37 + 21596: -50,23 + 21614: -55,18 + 21649: -50,42 + 21650: -51,38 + 21714: -47,55 + 21786: -60,54 + 21793: -60,58 + - node: + color: '#439909FF' + id: BrickTileWhiteCornerNw + decals: + 24630: 26,-60 + 24644: 26,-55 + 24664: 34,-60 + 24705: 38,-60 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNw decals: - 23158: 16,-24 - 23459: 36,-44 - 23488: 30,-38 - 23525: 20,-43 - 23602: 8,-43 - 23603: 2,-43 - 23636: 8,-38 - 23657: 12,-43 - 23696: 20,-38 - 23800: 20,-25 - 23810: 24,-27 - 23839: 30,-47 - 23865: -8,-58 - 23885: 5,65 + 23087: 16,-24 + 23386: 36,-44 + 23413: 30,-38 + 23450: 20,-43 + 23527: 8,-43 + 23528: 2,-43 + 23560: 8,-38 + 23578: 12,-43 + 23616: 20,-38 + 23720: 20,-25 + 23730: 24,-27 + 23759: 30,-47 + 23784: -8,-58 + 23804: 5,65 - node: color: '#8BC9DAFF' id: BrickTileWhiteCornerNw decals: - 3896: 25,67 - 17851: -50,23 - 17881: -57,37 - 17900: -50,42 - 17911: -51,38 - 17912: -60,54 - 17913: -47,55 - 18001: -60,58 + 3895: 25,67 + 17788: -50,23 + 17818: -57,37 + 17837: -50,42 + 17848: -51,38 + 17849: -60,54 + 17850: -47,55 + 17938: -60,58 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerNw decals: - 9526: 16,-24 - 9915: 20,-38 - 9951: 30,-38 - 9952: 36,-44 - 10082: 8,-38 - 10106: 20,-46 - 10141: 20,-43 - 10142: 20,-43 - 10168: 32,-47 - 10209: 30,-47 - 10307: 2,-43 - 10322: 8,-43 - 10351: 12,-43 - 19344: 5,65 - 19377: -8,-58 - 19727: 20,-25 - 19733: 24,-27 + 9506: 16,-24 + 9862: 20,-38 + 9898: 30,-38 + 9899: 36,-44 + 10028: 8,-38 + 10052: 20,-46 + 10087: 20,-43 + 10088: 20,-43 + 10114: 32,-47 + 10155: 30,-47 + 10253: 2,-43 + 10268: 8,-43 + 10293: 12,-43 + 19281: 5,65 + 19313: -8,-58 + 19663: 20,-25 + 19669: 24,-27 - node: color: '#A46106FF' id: BrickTileWhiteCornerNw decals: - 21943: 2,31 - 21996: 2,37 - 22064: 4,43 - 22079: 9,40 - 22092: 9,46 - 22116: 13,39 - 22184: 9,54 - 22213: 15,54 - 22305: 19,35 - 22377: 13,46 - 22515: 24,38 - 22546: 27,44 + 21875: 2,31 + 21928: 2,37 + 21996: 4,43 + 22011: 9,40 + 22024: 9,46 + 22048: 13,39 + 22116: 9,54 + 22145: 15,54 + 22237: 19,35 + 22309: 13,46 + 22447: 24,38 + 22478: 27,44 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerNw decals: - 2897: -35,50 - 2902: -34,54 - 2907: -29,55 - 18342: -38,50 + 2896: -35,50 + 2901: -34,54 + 2906: -29,55 + 18279: -38,50 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerNw decals: - 11582: -31,-34 - 11653: -10,-30 - 11878: -34,-40 - 12057: -24,-24 - 12203: -17,-50 - 12217: -20,-56 - 12249: -11,-49 - 12250: -7,-46 + 11520: -31,-34 + 11591: -10,-30 + 11816: -34,-40 + 11995: -24,-24 + 12141: -17,-50 + 12155: -20,-56 + 12187: -11,-49 + 12188: -7,-46 - node: color: '#B240B4FF' id: BrickTileWhiteCornerNw decals: - 660: -25,-56 - - node: - color: '#CEDA8BFF' - id: BrickTileWhiteCornerNw - decals: - 10812: 26,-55 - 10822: 34,-60 - 10857: 38,-60 - 10917: 41,-73 + 659: -25,-56 - node: color: '#D381C9FF' id: BrickTileWhiteCornerNw decals: - 22738: -17,-50 - 22863: -24,-24 - 22872: -31,-34 - 22972: -10,-30 - 23031: -7,-46 - 23040: -11,-49 - 23100: -20,-56 + 22670: -17,-50 + 22795: -24,-24 + 22804: -31,-34 + 22904: -10,-30 + 22963: -7,-46 + 22972: -11,-49 + 23032: -20,-56 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerNw decals: - 19209: 68,16 - 19223: 60,-3 + 19146: 68,16 + 19160: 60,-3 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerNw decals: - 2706: -13,54 - 2809: -7,34 - 3805: 10,70 + 2705: -13,54 + 2808: -7,34 + 3804: 10,70 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerNw decals: - 4370: 2,31 - 4396: 2,37 - 4534: 4,43 - 4548: 9,40 - 4556: 9,46 - 4571: 13,39 - 4609: 13,46 - 4623: 19,32 - 4730: 24,38 - 4759: 19,35 - 4783: 27,44 - 4905: 9,54 - 4930: 15,54 - 20015: 33,39 + 4369: 2,31 + 4395: 2,37 + 4533: 4,43 + 4547: 9,40 + 4555: 9,46 + 4570: 13,39 + 4608: 13,46 + 4622: 19,32 + 4729: 24,38 + 4758: 19,35 + 4782: 27,44 + 4904: 9,54 + 4929: 15,54 + 19951: 33,39 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerNw decals: - 4006: -40,54 - 9559: 2,-30 + 4005: -40,54 + 9535: 2,-30 - node: color: '#EFB341FF' id: BrickTileWhiteCornerNw decals: - 16889: -51,-1 - 16895: -61,-1 - 16905: -61,2 - 16947: -59,15 - 16956: -64,2 - 16973: -61,-6 - 17035: -61,-12 - 17203: -78,16 - 17288: -61,19 - 17321: -49,-6 - 17389: -77,-6 - 17424: 9,88 - 17515: -65,10 - 17582: -74,2 - 17645: -74,12 - 17696: -78,7 - 17734: -79,1 - 17773: -73,-10 - 17810: -55,18 + 16826: -51,-1 + 16832: -61,-1 + 16842: -61,2 + 16884: -59,15 + 16893: -64,2 + 16910: -61,-6 + 16972: -61,-12 + 17140: -78,16 + 17225: -61,19 + 17258: -49,-6 + 17326: -77,-6 + 17361: 9,88 + 17452: -65,10 + 17519: -74,2 + 17582: -74,12 + 17633: -78,7 + 17671: -79,1 + 17710: -73,-10 + 17747: -55,18 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 972: -1,-15 - 1173: 44,-14 - 2062: -16,47 - 2375: -31,32 - 2376: -30,33 - 4156: -25,23 - 5563: -34,29 - 6339: -2,-14 - 6707: -35,-11 - 6726: -35,-11 - 6958: -26,-15 - 8044: 61,-16 - 8045: 61,-29 - 8295: 40,-15 - 8678: -3,-77 - 8681: -5,-80 - 9456: 72,-49 - 10965: 39,-66 - 10966: 38,-67 - 13457: -41,-62 - 15321: -6,-69 - 15646: 91,-3 - 15664: 95,7 + 971: -1,-15 + 1172: 44,-14 + 2061: -16,47 + 2374: -31,32 + 2375: -30,33 + 4155: -25,23 + 5562: -34,29 + 6338: -2,-14 + 6706: -35,-11 + 6725: -35,-11 + 6957: -26,-15 + 8043: 61,-16 + 8044: 61,-29 + 8294: 40,-15 + 8677: -3,-77 + 8680: -5,-80 + 9444: 72,-49 + 13394: -41,-62 + 15258: -6,-69 + 15583: 91,-3 + 15601: 95,7 + 24763: 38,-67 + 24764: 39,-66 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: BrickTileWhiteCornerNw decals: - 854: 69,-47 + 853: 69,-47 - node: color: '#3EB388FF' id: BrickTileWhiteCornerSe decals: - 21638: -54,32 - 21650: -54,36 - 21727: -47,36 - 21780: -44,44 - 21866: -58,56 + 21570: -54,32 + 21582: -54,36 + 21659: -47,36 + 21712: -44,44 + 21798: -58,56 + - node: + color: '#439909FF' + id: BrickTileWhiteCornerSe + decals: + 24623: 28,-58 + 24682: 45,-63 + 24683: 41,-63 + 24712: 36,-72 + 24732: 32,-70 + 24751: 42,-71 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerSe decals: - 23219: 14,-36 - 23300: 38,-36 - 23442: 28,-53 - 23443: 18,-47 - 23444: 14,-41 - 23445: 10,-47 - 23446: 38,-42 - 23458: 38,-45 - 23660: 14,-47 - 23694: 24,-41 - 23764: 32,-27 - 23816: 30,-32 - 23817: 32,-30 - 23867: -5,-62 - 23892: 7,62 + 23147: 14,-36 + 23227: 38,-36 + 23369: 28,-53 + 23370: 18,-47 + 23371: 14,-41 + 23372: 10,-47 + 23373: 38,-42 + 23385: 38,-45 + 23581: 14,-47 + 23614: 24,-41 + 23684: 32,-27 + 23736: 30,-32 + 23737: 32,-30 + 23786: -5,-62 + 23811: 7,62 - node: color: '#8BC9DAFF' id: BrickTileWhiteCornerSe decals: - 3894: 27,65 - 9424: -37,0 - 17867: -54,32 - 17872: -54,36 - 17903: -47,36 - 17967: -44,44 - 17999: -58,56 + 3893: 27,65 + 9412: -37,0 + 17804: -54,32 + 17809: -54,36 + 17840: -47,36 + 17904: -44,44 + 17936: -58,56 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerSe decals: - 9634: 38,-36 - 9703: 14,-36 - 9763: 28,-53 - 9883: 18,-47 - 9913: 24,-41 - 9955: 38,-45 - 9964: 38,-42 - 10065: 32,-27 - 10094: 14,-41 - 10108: 24,-49 - 10164: 34,-53 - 10318: 10,-47 - 10355: 14,-47 - 19347: 7,62 - 19379: -5,-62 - 19741: 32,-30 - 19742: 30,-32 + 9610: 38,-36 + 9668: 14,-36 + 9726: 28,-53 + 9830: 18,-47 + 9860: 24,-41 + 9902: 38,-45 + 9911: 38,-42 + 10011: 32,-27 + 10040: 14,-41 + 10054: 24,-49 + 10110: 34,-53 + 10264: 10,-47 + 10297: 14,-47 + 19284: 7,62 + 19315: -5,-62 + 19677: 32,-30 + 19678: 30,-32 - node: color: '#A46106FF' id: BrickTileWhiteCornerSe decals: - 21928: 10,26 - 21989: 11,34 - 21990: 10,33 - 21991: 22,34 - 22055: 7,39 - 22078: 11,39 - 22088: 11,42 - 22186: 13,48 - 22308: 15,37 - 22450: 17,26 - 22481: 15,28 - 22528: 29,34 - 22548: 29,40 - 22549: 29,40 + 21860: 10,26 + 21921: 11,34 + 21922: 10,33 + 21923: 22,34 + 21987: 7,39 + 22010: 11,39 + 22020: 11,42 + 22118: 13,48 + 22240: 15,37 + 22382: 17,26 + 22413: 15,28 + 22460: 29,34 + 22480: 29,40 + 22481: 29,40 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerSe decals: - 2880: -27,46 - 3000: -37,47 + 2879: -27,46 + 2999: -37,47 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerSe decals: - 5076: 27,26 - 5140: 43,28 - 11547: -12,-36 - 11548: -12,-36 - 11640: -5,-36 - 11664: -4,-32 - 11665: -4,-32 - 11875: -33,-46 - 11876: -33,-46 - 12201: -13,-54 - 12239: -13,-60 - 12252: -4,-53 + 5075: 27,26 + 5139: 43,28 + 11485: -12,-36 + 11486: -12,-36 + 11578: -5,-36 + 11602: -4,-32 + 11603: -4,-32 + 11813: -33,-46 + 11814: -33,-46 + 12139: -13,-54 + 12177: -13,-60 + 12190: -4,-53 - node: color: '#B240B4FF' id: BrickTileWhiteCornerSe decals: - 658: -21,-58 - - node: - color: '#CEDA8BFF' - id: BrickTileWhiteCornerSe - decals: - 10818: 28,-58 - 10831: 36,-72 - 10868: 41,-63 - 10869: 45,-63 - 10901: 42,-71 - 10913: 39,-74 - 10914: 39,-74 - 10915: 42,-74 - 10916: 42,-74 - 10958: 31,-69 + 657: -21,-58 - node: color: '#D381C9FF' id: BrickTileWhiteCornerSe decals: - 22714: -12,-36 - 22746: -13,-54 - 22969: -4,-32 - 22970: -5,-36 - 23039: -4,-53 - 23098: -13,-60 + 22646: -12,-36 + 22678: -13,-54 + 22901: -4,-32 + 22902: -5,-36 + 22971: -4,-53 + 23030: -13,-60 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerSe decals: - 19213: 70,12 - 19228: 63,-6 - 19236: 66,-5 + 19150: 70,12 + 19165: 63,-6 + 19173: 66,-5 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerSe decals: - 2700: -9,52 - 2812: -5,32 - 3811: 12,66 + 2699: -9,52 + 2811: -5,32 + 3810: 12,66 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerSe decals: - 4401: 11,34 - 4402: 10,33 - 4452: 10,26 - 4467: 17,26 - 4494: 15,28 - 4524: 7,39 - 4546: 11,39 - 4564: 11,42 - 4596: 22,34 - 4637: 22,26 - 4646: 27,26 - 4735: 29,34 - 4756: 15,37 - 4785: 29,40 - 4919: 13,48 - 5155: 43,28 - 5162: 36,34 + 4400: 11,34 + 4401: 10,33 + 4451: 10,26 + 4466: 17,26 + 4493: 15,28 + 4523: 7,39 + 4545: 11,39 + 4563: 11,42 + 4595: 22,34 + 4636: 22,26 + 4645: 27,26 + 4734: 29,34 + 4755: 15,37 + 4784: 29,40 + 4918: 13,48 + 5154: 43,28 + 5161: 36,34 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerSe decals: - 4013: -37,52 + 4012: -37,52 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSe decals: - 16890: -49,-4 - 16925: -51,8 - 16959: -63,0 - 16976: -57,-10 - 17011: -51,-10 - 17019: -52,-18 - 17041: -55,-15 - 17070: -47,-17 - 17159: -47,11 - 17206: -76,13 - 17213: -68,14 - 17280: -57,17 - 17329: -45,-10 - 17347: -63,-8 - 17395: -75,-10 - 17435: 7,87 - 17445: 11,84 - 17514: -62,5 - 17650: -70,10 - 17795: -67,-13 - 18160: -55,-4 - 18214: -52,17 - 18294: -66,-4 + 16827: -49,-4 + 16862: -51,8 + 16896: -63,0 + 16913: -57,-10 + 16948: -51,-10 + 16956: -52,-18 + 16978: -55,-15 + 17007: -47,-17 + 17096: -47,11 + 17143: -76,13 + 17150: -68,14 + 17217: -57,17 + 17266: -45,-10 + 17284: -63,-8 + 17332: -75,-10 + 17372: 7,87 + 17382: 11,84 + 17451: -62,5 + 17587: -70,10 + 17732: -67,-13 + 18097: -55,-4 + 18151: -52,17 + 18231: -66,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 865: 75,-47 - 974: 0,-16 - 1182: 49,-17 - 2063: -22,51 - 2141: -22,34 - 3838: 23,69 - 4159: -23,21 - 5567: -30,27 - 5568: -31,26 - 6956: -23,-18 - 8040: 57,-12 - 8041: 57,-25 - 8292: 34,-9 - 8679: -6,-79 - 8684: -4,-76 - 9460: 74,-52 - 10968: 42,-68 - 13458: -40,-63 - 15320: -3,-71 - 15332: -4,-73 - 15570: 95,-5 - 15666: 97,6 + 864: 75,-47 + 973: 0,-16 + 1181: 49,-17 + 2062: -22,51 + 2140: -22,34 + 3837: 23,69 + 4158: -23,21 + 5566: -30,27 + 5567: -31,26 + 6955: -23,-18 + 8039: 57,-12 + 8040: 57,-25 + 8291: 34,-9 + 8678: -6,-79 + 8683: -4,-76 + 9448: 74,-52 + 13395: -40,-63 + 15257: -3,-71 + 15269: -4,-73 + 15507: 95,-5 + 15603: 97,6 + 24768: 42,-68 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: BrickTileWhiteCornerSe decals: - 855: 75,-42 + 854: 75,-42 - node: color: '#0A6AB6FF' id: BrickTileWhiteCornerSw decals: - 875: 72,-46 + 874: 72,-46 - node: color: '#334E6DFF' id: BrickTileWhiteCornerSw decals: - 21284: -16,13 - 21285: -13,13 + 21216: -16,13 + 21217: -13,13 - node: color: '#3EB388FF' id: BrickTileWhiteCornerSw decals: - 21636: -57,35 - 21637: -56,32 - 21662: -49,18 - 21719: -51,36 - 21767: -60,44 - 21860: -60,56 + 21568: -57,35 + 21569: -56,32 + 21594: -49,18 + 21651: -51,36 + 21699: -60,44 + 21792: -60,56 + - node: + color: '#439909FF' + id: BrickTileWhiteCornerSw + decals: + 24624: 26,-58 + 24680: 43,-63 + 24692: 38,-63 + 24713: 34,-72 + 24739: 26,-70 + 24749: 38,-71 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerSw decals: - 23461: 36,-45 - 23536: 16,-47 - 23618: 3,-47 - 23635: 8,-41 - 23659: 12,-45 - 23695: 20,-41 - 23734: 26,-53 - 23767: 28,-27 - 23802: 20,-29 - 23812: 24,-30 - 23815: 26,-32 - 23837: 30,-53 - 23866: -8,-62 - 23889: 5,62 + 23388: 36,-45 + 23461: 16,-47 + 23542: 3,-47 + 23559: 8,-41 + 23580: 12,-45 + 23615: 20,-41 + 23654: 26,-53 + 23687: 28,-27 + 23722: 20,-29 + 23732: 24,-30 + 23735: 26,-32 + 23757: 30,-53 + 23785: -8,-62 + 23808: 5,62 - node: color: '#8BC9DAFF' id: BrickTileWhiteCornerSw decals: - 9425: -39,0 - 17858: -49,18 - 17868: -56,32 - 17879: -57,35 - 17902: -51,36 - 17998: -60,56 - 18021: -60,44 + 9413: -39,0 + 17795: -49,18 + 17805: -56,32 + 17816: -57,35 + 17839: -51,36 + 17935: -60,56 + 17958: -60,44 - node: color: '#8CB7E8FF' id: BrickTileWhiteCornerSw decals: - 9762: 26,-53 - 9884: 16,-47 - 9912: 20,-41 - 9953: 30,-42 - 9954: 36,-45 - 10066: 28,-27 - 10097: 8,-41 - 10107: 20,-49 - 10165: 32,-53 - 10166: 32,-53 - 10210: 30,-53 - 10334: 3,-47 - 10353: 12,-45 - 19346: 5,62 - 19378: -8,-62 - 19715: 20,-29 - 19716: 24,-30 - 19717: 26,-32 + 9725: 26,-53 + 9831: 16,-47 + 9859: 20,-41 + 9900: 30,-42 + 9901: 36,-45 + 10012: 28,-27 + 10043: 8,-41 + 10053: 20,-49 + 10111: 32,-53 + 10112: 32,-53 + 10156: 30,-53 + 10280: 3,-47 + 10295: 12,-45 + 19283: 5,62 + 19314: -8,-62 + 19651: 20,-29 + 19652: 24,-30 + 19653: 26,-32 - node: color: '#A46106FF' id: BrickTileWhiteCornerSw decals: - 21929: 2,26 - 21997: 2,33 - 22069: 4,39 - 22077: 9,39 - 22084: 9,42 - 22185: 9,48 - 22309: 19,37 - 22476: 12,26 - 22521: 24,34 - 22547: 27,40 + 21861: 2,26 + 21929: 2,33 + 22001: 4,39 + 22009: 9,39 + 22016: 9,42 + 22117: 9,48 + 22241: 19,37 + 22408: 12,26 + 22453: 24,34 + 22479: 27,40 - node: color: '#A9DA8BFF' id: BrickTileWhiteCornerSw decals: - 2891: -34,46 - 2893: -35,48 + 2890: -34,46 + 2892: -35,48 - node: color: '#B18BDAFF' id: BrickTileWhiteCornerSw decals: - 5139: 38,28 - 11583: -31,-36 - 11634: -10,-36 - 11635: -10,-36 - 11874: -34,-46 - 12202: -17,-54 - 12220: -20,-59 - 12226: -19,-60 - 12251: -11,-53 + 5138: 38,28 + 11521: -31,-36 + 11572: -10,-36 + 11573: -10,-36 + 11812: -34,-46 + 12140: -17,-54 + 12158: -20,-59 + 12164: -19,-60 + 12189: -11,-53 - node: color: '#B240B4FF' id: BrickTileWhiteCornerSw decals: - 659: -25,-58 - - node: - color: '#CEDA8BFF' - id: BrickTileWhiteCornerSw - decals: - 10817: 26,-58 - 10833: 34,-72 - 10866: 38,-63 - 10867: 43,-63 - 10903: 38,-71 - 10919: 41,-74 - 10920: 41,-74 - 10951: 27,-69 + 658: -25,-58 - node: color: '#D381C9FF' id: BrickTileWhiteCornerSw decals: - 22743: -17,-54 - 22874: -31,-36 - 22971: -10,-36 - 23062: -11,-53 - 23107: -20,-59 - 23108: -19,-60 + 22675: -17,-54 + 22806: -31,-36 + 22903: -10,-36 + 22994: -11,-53 + 23039: -20,-59 + 23040: -19,-60 - node: color: '#DA8B8BFF' id: BrickTileWhiteCornerSw decals: - 19212: 68,12 - 19227: 60,-6 - 19235: 65,-5 + 19149: 68,12 + 19164: 60,-6 + 19172: 65,-5 - node: color: '#DA8BC9FF' id: BrickTileWhiteCornerSw decals: - 2708: -13,52 - 2811: -7,32 - 3809: 10,66 + 2707: -13,52 + 2810: -7,32 + 3808: 10,66 - node: color: '#DAA58BFF' id: BrickTileWhiteCornerSw decals: - 4374: 2,26 - 4392: 2,33 - 4454: 12,26 - 4529: 4,39 - 4547: 9,39 - 4560: 9,42 - 4635: 19,26 - 4638: 24,26 - 4729: 24,34 - 4757: 19,37 - 4784: 27,40 - 4914: 9,48 - 14398: -59,9 + 4373: 2,26 + 4391: 2,33 + 4453: 12,26 + 4528: 4,39 + 4546: 9,39 + 4559: 9,42 + 4634: 19,26 + 4637: 24,26 + 4728: 24,34 + 4756: 19,37 + 4783: 27,40 + 4913: 9,48 + 14335: -59,9 - node: color: '#DABC8BFF' id: BrickTileWhiteCornerSw decals: - 4010: -40,52 - 9561: 2,-32 - 9562: 3,-36 + 4009: -40,52 + 9537: 2,-32 + 9538: 3,-36 - node: color: '#EFB341FF' id: BrickTileWhiteCornerSw decals: - 16898: -61,-4 - 16926: -54,8 - 16943: -59,9 - 16958: -64,0 - 16975: -61,-10 - 17024: -59,-18 - 17025: -61,-15 - 17066: -50,-18 - 17178: -66,14 - 17205: -78,13 - 17285: -61,17 - 17332: -49,-10 - 17393: -77,-10 - 17436: 5,87 - 17444: 9,84 - 17472: 10,74 - 17516: -65,5 - 17583: -74,-4 - 17649: -74,10 - 17700: -78,3 - 17738: -79,-1 - 17739: -78,-2 - 17794: -73,-13 - 18162: -51,-4 - 18213: -55,17 + 16835: -61,-4 + 16863: -54,8 + 16880: -59,9 + 16895: -64,0 + 16912: -61,-10 + 16961: -59,-18 + 16962: -61,-15 + 17003: -50,-18 + 17115: -66,14 + 17142: -78,13 + 17222: -61,17 + 17269: -49,-10 + 17330: -77,-10 + 17373: 5,87 + 17381: 9,84 + 17409: 10,74 + 17453: -65,5 + 17520: -74,-4 + 17586: -74,10 + 17637: -78,3 + 17675: -79,-1 + 17676: -78,-2 + 17731: -73,-13 + 18099: -51,-4 + 18150: -55,17 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw decals: - 973: -1,-16 - 1179: 44,-17 - 2060: -16,51 - 2356: -29,38 - 3832: 17,69 - 4158: -25,21 - 6343: -2,-17 - 6720: -35,-16 - 6957: -26,-18 - 8038: 61,-12 - 8039: 61,-25 + 972: -1,-16 + 1178: 44,-17 + 2059: -16,51 + 2355: -29,38 + 3831: 17,69 + 4157: -25,21 + 6342: -2,-17 + 6719: -35,-16 + 6956: -26,-18 + 8037: 61,-12 + 8038: 61,-25 + 8292: 40,-9 8293: 40,-9 - 8294: 40,-9 - 8680: -3,-79 - 8683: -5,-76 - 9461: 72,-52 - 10967: 38,-68 - 15330: -6,-71 - 15331: -5,-73 - 15569: 91,-5 - 15665: 95,6 + 8679: -3,-79 + 8682: -5,-76 + 9449: 72,-52 + 15267: -6,-71 + 15268: -5,-73 + 15506: 91,-5 + 15602: 95,6 + 24767: 38,-68 - node: color: '#0A6AB6FF' id: BrickTileWhiteEndE decals: - 877: 73,-44 - 878: 73,-46 + 876: 73,-44 + 877: 73,-46 - node: color: '#DA8B8BFF' id: BrickTileWhiteEndE decals: - 19197: 70,-4 + 19134: 70,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndE decals: - 8191: 41,-7 + 8190: 41,-7 - node: color: '#8BC9DAFF' id: BrickTileWhiteEndN decals: - 15675: 97,-2 + 15612: 97,-2 - node: color: '#DAA58BFF' id: BrickTileWhiteEndN decals: - 4672: 21,28 - 4673: 25,28 + 4671: 21,28 + 4672: 25,28 - node: color: '#EFB341FF' id: BrickTileWhiteEndN decals: - 17071: -50,-12 + 17008: -50,-12 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndN decals: - 8013: 60,-13 - 8014: 58,-13 - 8015: 60,-26 - 8016: 58,-26 - 8597: 60,-26 - 15645: 95,-2 + 8012: 60,-13 + 8013: 58,-13 + 8014: 60,-26 + 8015: 58,-26 + 8596: 60,-26 + 15582: 95,-2 - node: color: '#8BC9DAFF' id: BrickTileWhiteEndS decals: - 15674: 97,-4 + 15611: 97,-4 - node: color: '#A9DA8BFF' id: BrickTileWhiteEndS decals: - 2884: -31,45 + 2883: -31,45 - node: color: '#DAA58BFF' id: BrickTileWhiteEndS decals: - 4670: 21,30 - 4671: 25,30 + 4669: 21,30 + 4670: 25,30 - node: color: '#EFB341FF' id: BrickTileWhiteEndS decals: - 17067: -50,-18 + 17004: -50,-18 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndS decals: - 8033: 58,-15 - 8034: 60,-15 - 8035: 58,-28 - 8036: 60,-28 + 8032: 58,-15 + 8033: 60,-15 + 8034: 58,-28 + 8035: 60,-28 - node: - color: '#B18BDAFF' + color: '#D381C9FF' id: BrickTileWhiteEndW decals: - 11890: -29,-28 - 11891: -29,-30 + 24385: -29,-28 + 24386: -29,-30 - node: color: '#DA8B8BFF' id: BrickTileWhiteEndW decals: - 19196: 69,-4 + 19133: 69,-4 - node: color: '#FFFFFFFF' id: BrickTileWhiteEndW decals: - 2353: -31,38 - 8190: 38,-7 + 2352: -31,38 + 8189: 38,-7 - node: color: '#334E6DFF' id: BrickTileWhiteInnerNe decals: - 21899: -18,11 - 22583: 8,-8 - 22584: 11,-8 - 22595: 6,-8 - 22604: -12,-8 - 22608: -10,-8 + 21831: -18,11 + 22515: 8,-8 + 22516: 11,-8 + 22527: 6,-8 + 22536: -12,-8 + 22540: -10,-8 - node: color: '#3EB388FF' id: BrickTileWhiteInnerNe decals: - 21652: -55,34 - 21653: -55,37 - 21680: -52,17 - 21686: -53,18 - 21701: -53,21 - 21705: -46,18 - 21737: -48,42 - 21738: -47,41 - 21839: -46,51 - 21845: -58,45 - 21856: -59,54 - 21869: -59,58 - 21873: -46,45 - 21890: -44,21 + 21584: -55,34 + 21585: -55,37 + 21612: -52,17 + 21618: -53,18 + 21633: -53,21 + 21637: -46,18 + 21669: -48,42 + 21670: -47,41 + 21771: -46,51 + 21777: -58,45 + 21788: -59,54 + 21801: -59,58 + 21805: -46,45 + 21822: -44,21 + - node: + color: '#439909FF' + id: BrickTileWhiteInnerNe + decals: + 24632: 27,-60 + 24646: 28,-56 + 24647: 27,-55 + 24651: 28,-61 + 24701: 36,-62 + 24709: 41,-62 + 24710: 36,-70 + 24726: 32,-68 + 24756: 40,-70 - node: color: '#52B4E9FF' id: BrickTileWhiteInnerNe decals: - 23161: 17,-31 - 23185: 18,-27 - 23186: 18,-34 - 23245: 13,-35 - 23246: 14,-35 - 23303: 38,-35 - 23304: 36,-34 - 23329: 21,-34 - 23330: 29,-34 - 23331: 27,-35 - 23332: 36,-35 - 23464: 37,-44 - 23496: 36,-40 - 23523: 24,-44 - 23601: 9,-43 - 23608: 4,-43 - 23613: 6,-45 - 23645: 14,-39 - 23668: 14,-44 - 23675: 18,-39 - 23679: 24,-39 - 23680: 17,-40 - 23689: 18,-44 - 23706: 27,-40 - 23707: 28,-40 - 23741: 28,-50 - 23743: 28,-44 - 23755: 22,-29 - 23758: 29,-29 - 23829: 26,-29 - 23830: 27,-47 - 23844: 0,-44 - 23845: 0,-51 - 23854: 0,-46 - 23855: 0,-53 - 23869: -5,-60 - 23875: -7,-58 - 23897: 6,65 + 23090: 17,-31 + 23114: 18,-27 + 23115: 18,-34 + 23173: 13,-35 + 23174: 14,-35 + 23230: 38,-35 + 23231: 36,-34 + 23256: 21,-34 + 23257: 29,-34 + 23258: 27,-35 + 23259: 36,-35 + 23391: 37,-44 + 23421: 36,-40 + 23448: 24,-44 + 23526: 9,-43 + 23533: 4,-43 + 23537: 6,-45 + 23567: 14,-39 + 23588: 14,-44 + 23595: 18,-39 + 23599: 24,-39 + 23600: 17,-40 + 23609: 18,-44 + 23626: 27,-40 + 23627: 28,-40 + 23661: 28,-50 + 23663: 28,-44 + 23675: 22,-29 + 23678: 29,-29 + 23749: 26,-29 + 23750: 27,-47 + 23764: 0,-44 + 23765: 0,-51 + 23774: 0,-46 + 23775: 0,-53 + 23788: -5,-60 + 23794: -7,-58 + 23816: 6,65 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerNe decals: - 17862: -46,18 - 17884: -55,37 - 17890: -55,34 - 17920: -46,51 - 17959: -48,42 - 17960: -47,41 - 17969: -46,45 - 18010: -59,58 - 18011: -58,57 - 18012: -59,54 - 18037: -58,45 - 18105: -53,21 + 17799: -46,18 + 17821: -55,37 + 17827: -55,34 + 17857: -46,51 + 17896: -48,42 + 17897: -47,41 + 17906: -46,45 + 17947: -59,58 + 17948: -58,57 + 17949: -59,54 + 17974: -58,45 + 18042: -53,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerNe decals: - 9531: 18,-27 - 9547: 21,-34 - 9692: 14,-35 - 9772: 29,-34 - 9773: 36,-34 - 9904: 18,-39 - 9905: 18,-44 - 9908: 28,-44 - 9909: 28,-50 - 9925: 24,-39 - 9926: 28,-40 - 9942: 38,-35 - 9982: 37,-44 - 10002: 36,-40 - 10033: 29,-29 - 10096: 14,-39 - 10149: 24,-44 - 10343: 4,-43 - 10344: 9,-43 - 10362: 14,-44 - 10591: 49,-33 - 12349: -7,-58 - 15287: 10,-25 - 15301: 17,-40 - 15306: 27,-47 - 15307: 27,-40 - 15311: 27,-35 - 15312: 36,-35 - 15317: 13,-35 - 18420: 17,-31 - 19353: 6,65 - 19380: -5,-60 - 19731: 22,-29 - 19747: 26,-29 + 9511: 18,-27 + 9523: 21,-34 + 9662: 14,-35 + 9735: 29,-34 + 9736: 36,-34 + 9851: 18,-39 + 9852: 18,-44 + 9855: 28,-44 + 9856: 28,-50 + 9872: 24,-39 + 9873: 28,-40 + 9889: 38,-35 + 9928: 37,-44 + 9948: 36,-40 + 9979: 29,-29 + 10042: 14,-39 + 10095: 24,-44 + 10286: 4,-43 + 10287: 9,-43 + 10303: 14,-44 + 10529: 49,-33 + 12287: -7,-58 + 15224: 10,-25 + 15238: 17,-40 + 15243: 27,-47 + 15244: 27,-40 + 15248: 27,-35 + 15249: 36,-35 + 15254: 13,-35 + 18357: 17,-31 + 19290: 6,65 + 19316: -5,-60 + 19667: 22,-29 + 19683: 26,-29 - node: color: '#A46106FF' id: BrickTileWhiteInnerNe decals: - 21916: 8,24 - 21917: 12,24 - 21918: 16,24 - 21919: 5,24 - 21920: 2,24 - 21942: 4,31 - 21952: 10,28 - 21972: 8,29 - 21975: 9,31 - 22023: 9,35 - 22036: 11,36 - 22037: 10,37 - 22042: 5,37 - 22081: 10,40 - 22096: 11,45 - 22098: 11,43 - 22201: 10,54 - 22202: 10,54 - 22203: 13,53 - 22206: 13,50 - 22216: 17,54 - 22296: 22,36 - 22299: 18,37 - 22300: 19,36 - 22347: 17,45 - 22348: 22,45 - 22349: 22,47 - 22350: 22,49 - 22351: 22,51 - 22352: 22,43 - 22353: 22,41 - 22369: 17,43 - 22370: 17,41 - 22383: 25,41 - 22420: 38,49 - 22433: 32,49 - 22438: 25,52 - 22440: 21,38 - 22441: 16,31 - 22500: 15,32 - 22510: 28,38 - 22511: 27,37 + 21848: 8,24 + 21849: 12,24 + 21850: 16,24 + 21851: 5,24 + 21852: 2,24 + 21874: 4,31 + 21884: 10,28 + 21904: 8,29 + 21907: 9,31 + 21955: 9,35 + 21968: 11,36 + 21969: 10,37 + 21974: 5,37 + 22013: 10,40 + 22028: 11,45 + 22030: 11,43 + 22133: 10,54 + 22134: 10,54 + 22135: 13,53 + 22138: 13,50 + 22148: 17,54 + 22228: 22,36 + 22231: 18,37 + 22232: 19,36 + 22279: 17,45 + 22280: 22,45 + 22281: 22,47 + 22282: 22,49 + 22283: 22,51 + 22284: 22,43 + 22285: 22,41 + 22301: 17,43 + 22302: 17,41 + 22315: 25,41 + 22352: 38,49 + 22365: 32,49 + 22370: 25,52 + 22372: 21,38 + 22373: 16,31 + 22432: 15,32 + 22442: 28,38 + 22443: 27,37 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerNe decals: - 2875: -26,48 - 2911: -28,53 - 2914: -28,51 - 2970: -32,53 - 2971: -30,53 - 2972: -28,50 - 2995: -37,49 + 2874: -26,48 + 2910: -28,53 + 2913: -28,51 + 2969: -32,53 + 2970: -30,53 + 2971: -28,50 + 2994: -37,49 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerNe decals: - 5082: 21,32 - 5087: 27,31 - 5165: 36,37 - 11499: -15,-34 - 11500: -13,-34 - 11576: -22,-34 - 11577: -22,-34 - 11619: -12,-35 - 11620: -12,-35 - 11644: -5,-35 - 11645: -6,-30 - 11646: -6,-30 - 11796: -13,-41 - 11887: -29,-34 - 11918: -28,-27 - 11919: -28,-31 - 11920: -29,-29 - 12072: -23,-24 - 12073: -22,-26 - 12178: -24,-39 - 12214: -13,-50 - 12240: -16,-56 - 12243: -13,-59 - 12270: -10,-49 - 12277: -4,-48 - 12278: -6,-46 - 12304: -18,-40 - 12616: -7,-32 - 12717: -7,-32 - 12718: -7,-32 - 15235: -8,-25 - 15245: -24,-35 - 15248: -23,-26 - 15249: -14,-35 - 15254: -14,-47 - 15257: -14,-39 - 15258: -29,-39 - 20020: 34,39 - - node: - color: '#CEDA8BFF' - id: BrickTileWhiteInnerNe - decals: - 10816: 28,-56 - 10853: 41,-62 - 10880: 36,-62 - 10885: 36,-70 - 10956: 28,-69 + 5081: 21,32 + 5086: 27,31 + 5164: 36,37 + 11437: -15,-34 + 11438: -13,-34 + 11514: -22,-34 + 11515: -22,-34 + 11557: -12,-35 + 11558: -12,-35 + 11582: -5,-35 + 11583: -6,-30 + 11584: -6,-30 + 11734: -13,-41 + 11825: -29,-34 + 12010: -23,-24 + 12011: -22,-26 + 12116: -24,-39 + 12152: -13,-50 + 12178: -16,-56 + 12181: -13,-59 + 12208: -10,-49 + 12215: -4,-48 + 12216: -6,-46 + 12242: -18,-40 + 12553: -7,-32 + 12654: -7,-32 + 12655: -7,-32 + 15172: -8,-25 + 15182: -24,-35 + 15185: -23,-26 + 15186: -14,-35 + 15191: -14,-47 + 15194: -14,-39 + 15195: -29,-39 + 19956: 34,39 - node: color: '#D381C9FF' id: BrickTileWhiteInnerNe decals: - 22710: -15,-34 - 22712: -13,-34 - 22750: -13,-50 - 22761: -13,-41 - 22789: -18,-40 - 22859: -22,-31 - 22866: -23,-24 - 22867: -22,-34 - 22870: -29,-34 - 22906: -23,-26 - 22907: -22,-26 - 22949: -24,-35 - 22953: -14,-35 - 22954: -12,-35 - 22981: -6,-30 - 22993: -5,-35 - 23052: -4,-48 - 23053: -6,-46 - 23060: -10,-49 - 23085: -14,-39 - 23086: -16,-56 - 23116: -13,-59 - 23119: -14,-47 + 22642: -15,-34 + 22644: -13,-34 + 22682: -13,-50 + 22693: -13,-41 + 22721: -18,-40 + 22791: -22,-31 + 22798: -23,-24 + 22799: -22,-34 + 22802: -29,-34 + 22838: -23,-26 + 22839: -22,-26 + 22881: -24,-35 + 22885: -14,-35 + 22886: -12,-35 + 22913: -6,-30 + 22925: -5,-35 + 22984: -4,-48 + 22985: -6,-46 + 22992: -10,-49 + 23017: -14,-39 + 23018: -16,-56 + 23048: -13,-59 + 23051: -14,-47 + 24396: -29,-29 + 24397: -28,-27 + 24400: -28,-31 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerNe decals: - 7609: 61,-3 - 7610: 65,-3 - 19215: 70,13 - 19225: 63,-4 + 7608: 61,-3 + 7609: 65,-3 + 19152: 70,13 + 19162: 63,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerNe decals: - 3815: 12,67 + 3814: 12,67 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerNe decals: - 4380: 10,28 - 4384: 9,31 - 4409: 10,37 - 4410: 11,36 - 4416: 4,31 - 4438: 8,29 - 4475: 15,32 - 4499: 16,31 - 4551: 10,40 - 4566: 11,43 - 4569: 11,45 - 4600: 21,38 - 4622: 21,32 - 4651: 27,31 - 4707: 20,30 - 4708: 26,30 - 4709: 26,29 - 4714: 22,29 - 4722: 21,29 - 4755: 27,37 - 4773: 18,37 - 4774: 19,36 - 4775: 28,38 - 4813: 9,35 - 4818: 5,37 - 4853: 32,49 - 4854: 38,49 - 4891: 25,41 - 4895: 25,52 - 4904: 10,54 - 4923: 13,50 - 4926: 13,53 - 4933: 17,54 - 5052: 17,45 - 5053: 17,43 - 5054: 17,41 - 5055: 22,41 - 5056: 22,43 - 5057: 22,45 - 5058: 22,47 - 5059: 22,49 - 5060: 22,51 - 6988: 8,29 - 19886: 25,29 - 19890: 24,30 + 4379: 10,28 + 4383: 9,31 + 4408: 10,37 + 4409: 11,36 + 4415: 4,31 + 4437: 8,29 + 4474: 15,32 + 4498: 16,31 + 4550: 10,40 + 4565: 11,43 + 4568: 11,45 + 4599: 21,38 + 4621: 21,32 + 4650: 27,31 + 4706: 20,30 + 4707: 26,30 + 4708: 26,29 + 4713: 22,29 + 4721: 21,29 + 4754: 27,37 + 4772: 18,37 + 4773: 19,36 + 4774: 28,38 + 4812: 9,35 + 4817: 5,37 + 4852: 32,49 + 4853: 38,49 + 4890: 25,41 + 4894: 25,52 + 4903: 10,54 + 4922: 13,50 + 4925: 13,53 + 4932: 17,54 + 5051: 17,45 + 5052: 17,43 + 5053: 17,41 + 5054: 22,41 + 5055: 22,43 + 5056: 22,45 + 5057: 22,47 + 5058: 22,49 + 5059: 22,51 + 6987: 8,29 + 19822: 25,29 + 19826: 24,30 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerNe decals: - 4008: -39,54 - 9573: 8,-36 - 9576: 5,-30 - 9599: 6,-32 - 9608: 8,-34 + 4007: -39,54 + 9549: 8,-36 + 9552: 5,-30 + 9575: 6,-32 + 9584: 8,-34 - node: color: '#EFB341FF' id: BrickTileWhiteInnerNe decals: - 16881: -49,1 - 16882: -52,2 - 16955: -63,1 - 16982: -58,-6 - 16983: -57,-7 - 16984: -57,-9 - 16997: -58,-12 - 17050: -52,-15 - 17078: -50,-13 - 17109: -52,15 - 17155: -47,14 - 17158: -47,12 - 17162: -50,9 - 17167: -58,15 - 17189: -61,14 - 17192: -68,15 - 17302: -51,-7 - 17343: -52,-6 - 17344: -63,-7 - 17377: -71,-6 - 17378: -69,-6 - 17427: 10,88 - 17431: 5,90 - 17452: 11,87 - 17475: 10,82 - 17476: 12,78 - 17605: -73,2 - 17606: -66,1 - 17661: -72,12 - 17732: -77,1 - 17748: -76,0 - 17778: -69,-10 - 19895: -49,-3 + 16818: -49,1 + 16819: -52,2 + 16892: -63,1 + 16919: -58,-6 + 16920: -57,-7 + 16921: -57,-9 + 16934: -58,-12 + 16987: -52,-15 + 17015: -50,-13 + 17046: -52,15 + 17092: -47,14 + 17095: -47,12 + 17099: -50,9 + 17104: -58,15 + 17126: -61,14 + 17129: -68,15 + 17239: -51,-7 + 17280: -52,-6 + 17281: -63,-7 + 17314: -71,-6 + 17315: -69,-6 + 17364: 10,88 + 17368: 5,90 + 17389: 11,87 + 17412: 10,82 + 17413: 12,78 + 17542: -73,2 + 17543: -66,1 + 17598: -72,12 + 17669: -77,1 + 17685: -76,0 + 17715: -69,-10 + 19831: -49,-3 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNe decals: - 2355: -30,38 - 2367: -29,30 + 2354: -30,38 + 2366: -29,30 + 5573: -33,28 5574: -33,28 - 5575: -33,28 - 5579: -31,28 - 6683: -32,1 - 6686: -32,-2 - 6701: -24,-2 - 6731: -32,-11 - 6753: -35,-16 - 6963: -23,-16 - 8070: 60,-12 - 8071: 60,-25 - 8072: 61,-26 - 8073: 61,-13 - 8309: 39,-10 + 5578: -31,28 + 6682: -32,1 + 6685: -32,-2 + 6700: -24,-2 + 6730: -32,-11 + 6752: -35,-16 + 6962: -23,-16 + 8069: 60,-12 + 8070: 60,-25 + 8071: 61,-26 + 8072: 61,-13 + 8308: 39,-10 + 8310: 39,-13 8311: 39,-13 - 8312: 39,-13 - 8346: 46,-14 - 8700: -4,-77 - 8701: -1,-76 - 8702: -6,-76 - 8703: -6,-80 - 8704: -1,-80 - 8923: -4,-25 - 9467: 73,-49 - 9473: 73,-42 - 10666: 75,-45 - 10974: 41,-67 - 14995: -19,19 - 14996: -13,23 - 14997: -3,23 - 14998: 4,23 - 14999: 14,23 - 15000: 17,19 - 15013: -21,34 - 15014: -19,36 - 15015: -19,32 - 15016: -19,29 - 15024: -19,48 - 15025: -16,50 - 15026: -17,51 - 15027: -21,51 - 15028: -19,52 - 15031: -23,41 - 15032: -10,49 - 15033: -5,49 - 15070: -30,95 - 15071: -30,88 - 15080: -30,82 - 15081: -30,75 - 15112: -29,68 - 15113: -24,68 - 15114: -18,68 - 15115: -11,68 - 15116: -12,75 - 15117: -12,82 - 15118: -12,88 - 15119: -12,95 - 15120: -4,68 - 15121: 2,68 - 15122: -5,64 - 15123: 7,68 - 15124: 6,75 - 15125: 6,82 - 15127: -4,57 - 15128: 2,57 - 15129: -11,57 - 15130: -18,57 - 15131: -19,64 - 15141: 17,12 - 15142: 24,5 - 15143: 31,5 - 15154: 24,-11 - 15155: 30,-11 - 15158: 17,-12 - 15159: 13,-20 - 15160: 6,-20 - 15161: -5,-20 - 15162: -12,-20 - 15163: -19,-12 - 15164: -19,-2 - 15165: -19,5 - 15166: -23,5 - 15167: -19,12 - 15168: -31,5 - 15169: -36,5 - 15208: 47,-20 - 15209: 52,-20 - 15210: 17,5 - 15279: -1,-31 - 15280: -1,-24 - 15281: -1,-39 - 15282: -1,-44 - 15283: -1,-52 - 15286: -1,-59 - 15435: -42,17 - 15436: -42,22 - 15437: -42,11 - 15578: 95,-3 - 18800: 7,-9 - 18801: 13,-9 - 18807: -12,-9 - 18808: -6,-9 - 18815: 1,-9 - 19705: 40,-10 - 19710: 39,-9 - 19976: 17,-2 - 20240: -19,19 - 20241: -19,12 - 20242: -19,5 - 20243: -19,-2 + 8345: 46,-14 + 8699: -4,-77 + 8700: -1,-76 + 8701: -6,-76 + 8702: -6,-80 + 8703: -1,-80 + 8921: -4,-25 + 9455: 73,-49 + 9461: 73,-42 + 10604: 75,-45 + 14932: -19,19 + 14933: -13,23 + 14934: -3,23 + 14935: 4,23 + 14936: 14,23 + 14937: 17,19 + 14950: -21,34 + 14951: -19,36 + 14952: -19,32 + 14953: -19,29 + 14961: -19,48 + 14962: -16,50 + 14963: -17,51 + 14964: -21,51 + 14965: -19,52 + 14968: -23,41 + 14969: -10,49 + 14970: -5,49 + 15007: -30,95 + 15008: -30,88 + 15017: -30,82 + 15018: -30,75 + 15049: -29,68 + 15050: -24,68 + 15051: -18,68 + 15052: -11,68 + 15053: -12,75 + 15054: -12,82 + 15055: -12,88 + 15056: -12,95 + 15057: -4,68 + 15058: 2,68 + 15059: -5,64 + 15060: 7,68 + 15061: 6,75 + 15062: 6,82 + 15064: -4,57 + 15065: 2,57 + 15066: -11,57 + 15067: -18,57 + 15068: -19,64 + 15078: 17,12 + 15079: 24,5 + 15080: 31,5 + 15091: 24,-11 + 15092: 30,-11 + 15095: 17,-12 + 15096: 13,-20 + 15097: 6,-20 + 15098: -5,-20 + 15099: -12,-20 + 15100: -19,-12 + 15101: -19,-2 + 15102: -19,5 + 15103: -23,5 + 15104: -19,12 + 15105: -31,5 + 15106: -36,5 + 15145: 47,-20 + 15146: 52,-20 + 15147: 17,5 + 15216: -1,-31 + 15217: -1,-24 + 15218: -1,-39 + 15219: -1,-44 + 15220: -1,-52 + 15223: -1,-59 + 15372: -42,17 + 15373: -42,22 + 15374: -42,11 + 15515: 95,-3 + 18737: 7,-9 + 18738: 13,-9 + 18744: -12,-9 + 18745: -6,-9 + 18752: 1,-9 + 19641: 40,-10 + 19646: 39,-9 + 19912: 17,-2 + 20176: -19,19 + 20177: -19,12 + 20178: -19,5 + 20179: -19,-2 + 24774: 41,-67 - node: color: '#334E6DFF' id: BrickTileWhiteInnerNw decals: - 22581: 8,-8 - 22582: 10,-8 - 22585: 16,-4 - 22594: 13,-8 - 22597: 16,-6 - 22605: -8,-8 - 22607: -10,-8 + 22513: 8,-8 + 22514: 10,-8 + 22517: 16,-4 + 22526: 13,-8 + 22529: 16,-6 + 22537: -8,-8 + 22539: -10,-8 - node: color: '#3EB388FF' id: BrickTileWhiteInnerNw decals: - 21655: -55,37 - 21681: -55,17 - 21685: -54,18 - 21703: -50,21 - 21728: -50,38 - 21735: -50,41 - 21736: -48,42 - 21830: -46,55 - 21846: -60,50 - 21849: -60,48 - 21855: -59,54 - 21867: -60,57 - 21868: -59,58 - 21872: -47,45 - 21879: -43,23 - 21885: -44,18 - 21886: -44,16 - 21889: -43,21 + 21587: -55,37 + 21613: -55,17 + 21617: -54,18 + 21635: -50,21 + 21660: -50,38 + 21667: -50,41 + 21668: -48,42 + 21762: -46,55 + 21778: -60,50 + 21781: -60,48 + 21787: -59,54 + 21799: -60,57 + 21800: -59,58 + 21804: -47,45 + 21811: -43,23 + 21817: -44,18 + 21818: -44,16 + 21821: -43,21 + - node: + color: '#439909FF' + id: BrickTileWhiteInnerNw + decals: + 24631: 27,-60 + 24645: 26,-56 + 24648: 27,-55 + 24695: 34,-61 + 24704: 38,-62 + 24725: 34,-68 + 24755: 40,-70 - node: color: '#52B4E9FF' id: BrickTileWhiteInnerNw decals: - 23159: 16,-25 - 23160: 17,-31 - 23164: 16,-31 - 23194: 16,-35 - 23243: 10,-36 - 23244: 11,-35 - 23305: 36,-34 - 23327: 21,-34 - 23328: 29,-34 - 23463: 37,-44 - 23494: 30,-40 - 23495: 32,-40 - 23524: 20,-44 - 23600: 9,-43 - 23607: 4,-43 - 23614: 8,-45 - 23622: 2,-44 - 23650: 16,-44 - 23666: 14,-47 - 23676: 16,-39 - 23678: 20,-39 - 23681: 17,-40 - 23686: 26,-44 - 23687: 18,-44 - 23702: 26,-39 - 23708: 27,-40 - 23739: 30,-50 - 23744: 31,-35 - 23745: 22,-35 - 23756: 24,-29 - 23757: 29,-29 - 23806: 20,-27 - 23831: 27,-47 - 23874: -7,-58 - 23895: 5,64 - 23896: 6,65 - 24085: -3,-62 - 24086: -3,-60 + 23088: 16,-25 + 23089: 17,-31 + 23093: 16,-31 + 23123: 16,-35 + 23171: 10,-36 + 23172: 11,-35 + 23232: 36,-34 + 23254: 21,-34 + 23255: 29,-34 + 23390: 37,-44 + 23419: 30,-40 + 23420: 32,-40 + 23449: 20,-44 + 23525: 9,-43 + 23532: 4,-43 + 23538: 8,-45 + 23546: 2,-44 + 23572: 16,-44 + 23586: 14,-47 + 23596: 16,-39 + 23598: 20,-39 + 23601: 17,-40 + 23606: 26,-44 + 23607: 18,-44 + 23622: 26,-39 + 23628: 27,-40 + 23659: 30,-50 + 23664: 31,-35 + 23665: 22,-35 + 23676: 24,-29 + 23677: 29,-29 + 23726: 20,-27 + 23751: 27,-47 + 23793: -7,-58 + 23814: 5,64 + 23815: 6,65 + 24004: -3,-62 + 24005: -3,-60 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerNw decals: - 15677: 97,-3 - 17855: -50,21 - 17883: -55,37 - 17926: -46,55 - 17958: -48,42 - 17962: -50,38 - 18005: -59,54 - 18006: -60,57 - 18009: -59,58 - 18019: -60,48 - 18020: -60,50 - 18038: -47,45 + 15614: 97,-3 + 17792: -50,21 + 17820: -55,37 + 17863: -46,55 + 17895: -48,42 + 17899: -50,38 + 17942: -59,54 + 17943: -60,57 + 17946: -59,58 + 17956: -60,48 + 17957: -60,50 + 17975: -47,45 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerNw decals: - 9530: 16,-25 - 9548: 21,-34 - 9710: 10,-36 - 9771: 29,-34 - 9774: 36,-34 - 9900: 16,-44 - 9901: 16,-39 - 9906: 26,-44 - 9910: 26,-39 - 9924: 20,-39 - 9981: 37,-44 - 9983: 30,-40 - 10001: 32,-40 - 10031: 29,-29 - 10032: 29,-29 - 10148: 20,-44 - 10177: 32,-51 - 10178: 32,-49 - 10217: 30,-50 - 10341: 4,-43 - 10342: 9,-43 - 10346: 8,-45 - 10348: 2,-44 - 10365: 14,-47 - 10602: 43,-33 - 12348: -7,-58 - 15288: 6,-25 - 15300: 17,-40 - 15305: 27,-47 - 15308: 27,-40 - 15309: 22,-35 - 15310: 31,-35 - 15316: 11,-35 - 18419: 17,-31 - 19351: 5,64 - 19352: 6,65 - 19729: 20,-27 - 19730: 24,-29 + 9510: 16,-25 + 9524: 21,-34 + 9675: 10,-36 + 9734: 29,-34 + 9737: 36,-34 + 9847: 16,-44 + 9848: 16,-39 + 9853: 26,-44 + 9857: 26,-39 + 9871: 20,-39 + 9927: 37,-44 + 9929: 30,-40 + 9947: 32,-40 + 9977: 29,-29 + 9978: 29,-29 + 10094: 20,-44 + 10123: 32,-51 + 10124: 32,-49 + 10163: 30,-50 + 10284: 4,-43 + 10285: 9,-43 + 10289: 8,-45 + 10290: 2,-44 + 10305: 14,-47 + 10540: 43,-33 + 12286: -7,-58 + 15225: 6,-25 + 15237: 17,-40 + 15242: 27,-47 + 15245: 27,-40 + 15246: 22,-35 + 15247: 31,-35 + 15253: 11,-35 + 18356: 17,-31 + 19288: 5,64 + 19289: 6,65 + 19665: 20,-27 + 19666: 24,-29 - node: color: '#9FED58FF' id: BrickTileWhiteInnerNw decals: - 23907: -23,48 - 23908: -23,51 - 23918: -23,51 - 23920: -23,48 + 23826: -23,48 + 23827: -23,51 + 23837: -23,51 + 23839: -23,48 - node: color: '#A46106FF' id: BrickTileWhiteInnerNw decals: - 21904: 10,24 - 21905: 18,24 - 21913: 4,24 - 21914: 7,24 - 21915: 14,24 - 21940: 7,31 - 21941: 4,31 - 21946: 2,29 - 21971: 4,29 - 22022: 4,35 - 22038: 10,37 - 22041: 5,37 - 22063: 7,43 - 22068: 4,40 - 22080: 10,40 - 22115: 13,36 - 22200: 10,54 - 22208: 15,53 - 22215: 17,54 - 22297: 16,37 - 22298: 15,36 - 22360: 19,49 - 22361: 19,45 - 22362: 19,43 - 22363: 19,47 - 22364: 19,41 - 22365: 16,41 - 22371: 16,43 - 22372: 16,45 - 22373: 13,45 - 22376: 13,43 - 22380: 15,46 - 22434: 34,49 - 22437: 24,54 - 22442: 13,27 - 22501: 16,31 - 22502: 15,28 - 22503: 24,36 - 22509: 28,38 - 22512: 26,37 - 22565: 19,51 + 21836: 10,24 + 21837: 18,24 + 21845: 4,24 + 21846: 7,24 + 21847: 14,24 + 21872: 7,31 + 21873: 4,31 + 21878: 2,29 + 21903: 4,29 + 21954: 4,35 + 21970: 10,37 + 21973: 5,37 + 21995: 7,43 + 22000: 4,40 + 22012: 10,40 + 22047: 13,36 + 22132: 10,54 + 22140: 15,53 + 22147: 17,54 + 22229: 16,37 + 22230: 15,36 + 22292: 19,49 + 22293: 19,45 + 22294: 19,43 + 22295: 19,47 + 22296: 19,41 + 22297: 16,41 + 22303: 16,43 + 22304: 16,45 + 22305: 13,45 + 22308: 13,43 + 22312: 15,46 + 22366: 34,49 + 22369: 24,54 + 22374: 13,27 + 22433: 16,31 + 22434: 15,28 + 22435: 24,36 + 22441: 28,38 + 22444: 26,37 + 22497: 19,51 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerNw decals: - 2896: -35,49 - 2898: -34,50 - 2909: -29,54 - 2917: -26,51 - 2967: -28,50 - 2968: -30,53 - 2969: -32,53 - 3006: -38,46 + 2895: -35,49 + 2897: -34,50 + 2908: -29,54 + 2916: -26,51 + 2966: -28,50 + 2967: -30,53 + 2968: -32,53 + 3005: -38,46 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerNw decals: - 5080: 20,32 - 11497: -15,-34 - 11498: -13,-34 - 11575: -24,-34 - 11647: -6,-30 - 11648: -6,-30 - 11672: -10,-34 - 11673: -10,-35 - 11793: -15,-40 - 11886: -29,-34 - 11917: -30,-27 - 12071: -23,-24 - 12177: -25,-39 - 12212: -17,-51 - 12229: -20,-58 - 12241: -16,-56 - 12269: -10,-49 - 12273: -11,-50 - 12279: -6,-46 - 12303: -20,-40 - 12615: -8,-32 - 12716: -8,-32 - 15234: -12,-25 - 15243: -23,-26 - 15244: -29,-35 - 15250: -18,-35 - 15255: -14,-47 - 15256: -14,-39 - 15259: -29,-39 - 20019: 34,39 - - node: - color: '#CEDA8BFF' - id: BrickTileWhiteInnerNw - decals: - 10815: 26,-56 - 10855: 38,-62 - 10872: 43,-62 - 10884: 34,-61 - 10888: 34,-68 - 10961: 30,-69 + 5079: 20,32 + 11435: -15,-34 + 11436: -13,-34 + 11513: -24,-34 + 11585: -6,-30 + 11586: -6,-30 + 11610: -10,-34 + 11611: -10,-35 + 11731: -15,-40 + 11824: -29,-34 + 12009: -23,-24 + 12115: -25,-39 + 12150: -17,-51 + 12167: -20,-58 + 12179: -16,-56 + 12207: -10,-49 + 12211: -11,-50 + 12217: -6,-46 + 12241: -20,-40 + 12552: -8,-32 + 12653: -8,-32 + 15171: -12,-25 + 15180: -23,-26 + 15181: -29,-35 + 15187: -18,-35 + 15192: -14,-47 + 15193: -14,-39 + 15196: -29,-39 + 19955: 34,39 - node: color: '#D381C9FF' id: BrickTileWhiteInnerNw decals: - 22613: -2,-50 - 22618: -2,-48 - 22619: -2,-40 - 22623: -2,-40 - 22626: -2,-43 - 22631: -3,-35 - 22709: -15,-34 - 22711: -13,-34 - 22735: -15,-50 - 22736: -17,-51 - 22790: -20,-40 - 22822: -15,-40 - 22864: -23,-24 - 22868: -24,-34 - 22869: -29,-34 - 22905: -23,-26 - 22945: -18,-35 - 22946: -29,-35 - 22955: -10,-35 - 22962: -10,-34 - 22980: -6,-30 - 23041: -7,-49 - 23054: -6,-46 - 23057: -11,-50 - 23059: -10,-49 - 23084: -14,-39 - 23087: -16,-56 - 23111: -20,-58 - 23118: -14,-47 + 22545: -2,-50 + 22550: -2,-48 + 22551: -2,-40 + 22555: -2,-40 + 22558: -2,-43 + 22563: -3,-35 + 22641: -15,-34 + 22643: -13,-34 + 22667: -15,-50 + 22668: -17,-51 + 22722: -20,-40 + 22754: -15,-40 + 22796: -23,-24 + 22800: -24,-34 + 22801: -29,-34 + 22837: -23,-26 + 22877: -18,-35 + 22878: -29,-35 + 22887: -10,-35 + 22894: -10,-34 + 22912: -6,-30 + 22973: -7,-49 + 22986: -6,-46 + 22989: -11,-50 + 22991: -10,-49 + 23016: -14,-39 + 23019: -16,-56 + 23043: -20,-58 + 23050: -14,-47 + 24398: -30,-27 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerNw decals: - 7607: 61,-3 - 7608: 65,-3 - 19239: 65,-4 + 7606: 61,-3 + 7607: 65,-3 + 19176: 65,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerNw decals: - 3814: 10,68 + 3813: 10,68 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerNw decals: - 4369: 7,31 - 4379: 2,29 - 4408: 10,37 - 4415: 4,31 - 4439: 4,29 - 4459: 15,28 - 4497: 13,27 - 4498: 16,31 - 4531: 4,40 - 4542: 7,43 - 4550: 10,40 - 4585: 13,36 - 4612: 15,46 - 4613: 13,45 - 4614: 13,43 - 4621: 20,32 - 4705: 20,29 - 4706: 20,30 - 4710: 26,30 - 4715: 24,29 - 4720: 21,29 - 4721: 22,30 - 4726: 24,36 - 4754: 26,37 - 4771: 16,37 - 4772: 15,36 - 4776: 28,38 - 4812: 4,35 - 4817: 5,37 - 4858: 34,49 - 4903: 10,54 - 4932: 17,54 - 4937: 15,53 - 4945: 24,54 - 5043: 19,51 - 5044: 19,49 - 5045: 19,47 - 5046: 19,45 - 5047: 19,43 - 5048: 19,41 - 5049: 16,41 - 5050: 16,43 - 5051: 16,45 - 6987: 4,29 - 19885: 25,29 + 4368: 7,31 + 4378: 2,29 + 4407: 10,37 + 4414: 4,31 + 4438: 4,29 + 4458: 15,28 + 4496: 13,27 + 4497: 16,31 + 4530: 4,40 + 4541: 7,43 + 4549: 10,40 + 4584: 13,36 + 4611: 15,46 + 4612: 13,45 + 4613: 13,43 + 4620: 20,32 + 4704: 20,29 + 4705: 20,30 + 4709: 26,30 + 4714: 24,29 + 4719: 21,29 + 4720: 22,30 + 4725: 24,36 + 4753: 26,37 + 4770: 16,37 + 4771: 15,36 + 4775: 28,38 + 4811: 4,35 + 4816: 5,37 + 4857: 34,49 + 4902: 10,54 + 4931: 17,54 + 4936: 15,53 + 4944: 24,54 + 5042: 19,51 + 5043: 19,49 + 5044: 19,47 + 5045: 19,45 + 5046: 19,43 + 5047: 19,41 + 5048: 16,41 + 5049: 16,43 + 5050: 16,45 + 6986: 4,29 + 19821: 25,29 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerNw decals: - 4007: -39,54 - 9568: 3,-35 - 9575: 5,-30 - 9598: 5,-32 + 4006: -39,54 + 9544: 3,-35 + 9551: 5,-30 + 9574: 5,-32 - node: color: '#EFB341FF' id: BrickTileWhiteInnerNw decals: - 16883: -53,2 - 16885: -49,2 - 16906: -61,1 - 16954: -64,1 - 16985: -58,-6 - 16988: -61,-7 - 16996: -58,-12 - 17047: -54,-12 - 17055: -50,-15 - 17062: -59,-17 - 17163: -55,15 - 17166: -58,15 - 17168: -59,14 - 17171: -59,10 - 17216: -78,14 - 17303: -49,-7 - 17342: -55,-9 - 17375: -71,-6 - 17376: -69,-6 - 17417: 5,90 - 17426: 10,88 - 17459: 10,81 - 17474: 10,76 - 17604: -73,2 - 17609: -74,0 - 17660: -72,12 - 17708: -77,7 - 17731: -77,1 - 17737: -79,0 - 17777: -71,-10 - 21624: -45,14 - 21625: -45,12 + 16820: -53,2 + 16822: -49,2 + 16843: -61,1 + 16891: -64,1 + 16922: -58,-6 + 16925: -61,-7 + 16933: -58,-12 + 16984: -54,-12 + 16992: -50,-15 + 16999: -59,-17 + 17100: -55,15 + 17103: -58,15 + 17105: -59,14 + 17108: -59,10 + 17153: -78,14 + 17240: -49,-7 + 17279: -55,-9 + 17312: -71,-6 + 17313: -69,-6 + 17354: 5,90 + 17363: 10,88 + 17396: 10,81 + 17411: 10,76 + 17541: -73,2 + 17546: -74,0 + 17597: -72,12 + 17645: -77,7 + 17668: -77,1 + 17674: -79,0 + 17714: -71,-10 + 21556: -45,14 + 21557: -45,12 - node: color: '#FBB2FFFF' id: BrickTileWhiteInnerNw decals: - 22942: -18,-35 + 22874: -18,-35 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerNw decals: - 2354: -30,38 - 2808: -7,33 + 2353: -30,38 + 2807: -7,33 + 5575: -31,28 5576: -31,28 - 5577: -31,28 - 5578: -34,26 - 6340: -2,-16 + 5577: -34,26 + 6339: -2,-16 + 6698: -24,-2 6699: -24,-2 - 6700: -24,-2 - 6730: -33,-11 - 6752: -30,-16 - 8066: 58,-25 - 8067: 57,-26 - 8068: 57,-13 - 8069: 58,-12 + 6729: -33,-11 + 6751: -30,-16 + 8065: 58,-25 + 8066: 57,-26 + 8067: 57,-13 + 8068: 58,-12 + 8306: 35,-10 8307: 35,-10 - 8308: 35,-10 - 8310: 35,-13 - 8347: 46,-14 - 8695: -8,-76 - 8696: -5,-77 - 8697: -3,-76 - 8698: -8,-80 - 8699: -3,-80 - 9085: 2,-25 - 9465: 72,-50 - 9466: 73,-49 - 9472: 73,-42 - 10658: 72,-50 - 10972: 39,-67 - 10973: 39,-67 - 14990: 11,23 - 14991: 1,23 - 14992: -6,23 - 14993: -16,23 - 14994: -19,19 - 15001: 17,19 - 15009: -21,34 - 15010: -19,36 - 15011: -19,32 - 15012: -19,29 - 15017: -22,33 - 15020: -22,50 - 15021: -21,51 - 15022: -19,52 - 15023: -17,51 - 15029: -19,48 - 15030: -23,41 - 15034: -11,49 - 15035: -6,49 - 15048: -20,57 - 15049: -13,57 - 15050: -6,57 - 15051: 0,57 - 15052: -5,64 - 15053: -6,68 - 15054: 0,68 - 15055: 5,68 - 15056: 6,75 - 15057: 6,82 - 15058: -13,68 - 15059: -12,75 - 15060: -12,82 - 15061: -12,88 - 15062: -12,95 - 15063: -26,68 - 15064: -20,68 - 15065: -31,68 - 15066: -30,75 - 15067: -30,82 - 15068: -30,88 - 15069: -30,95 - 15132: -19,64 - 15138: 17,12 - 15139: 21,5 - 15140: 28,5 - 15153: 21,-11 - 15156: 28,-11 - 15157: 17,-12 - 15170: -38,5 - 15171: -38,5 - 15172: -33,5 - 15173: -27,5 - 15184: -19,-12 - 15185: -19,-2 - 15186: -19,5 - 15196: 3,-20 - 15197: -8,-20 - 15198: -15,-20 - 15206: 44,-20 - 15207: 49,-20 - 15211: 17,5 - 15212: -10,14 - 15275: -1,-39 - 15276: -1,-44 - 15277: -1,-31 - 15278: -1,-24 - 15284: -1,-52 - 15285: -1,-59 - 15438: -42,11 - 15439: -42,17 - 15440: -42,22 - 15650: 95,-3 - 18796: -9,-9 - 18797: -3,-9 - 18798: 4,-9 - 18799: 10,-9 - 18806: -15,-9 - 19509: -19,12 - 19512: 10,-20 - 19703: 35,-9 - 19704: 34,-10 - 19975: 17,-2 - 20236: -19,-2 - 20237: -19,5 - 20238: -19,12 - 20239: -19,19 + 8309: 35,-13 + 8346: 46,-14 + 8694: -8,-76 + 8695: -5,-77 + 8696: -3,-76 + 8697: -8,-80 + 8698: -3,-80 + 9075: 2,-25 + 9453: 72,-50 + 9454: 73,-49 + 9460: 73,-42 + 10596: 72,-50 + 14927: 11,23 + 14928: 1,23 + 14929: -6,23 + 14930: -16,23 + 14931: -19,19 + 14938: 17,19 + 14946: -21,34 + 14947: -19,36 + 14948: -19,32 + 14949: -19,29 + 14954: -22,33 + 14957: -22,50 + 14958: -21,51 + 14959: -19,52 + 14960: -17,51 + 14966: -19,48 + 14967: -23,41 + 14971: -11,49 + 14972: -6,49 + 14985: -20,57 + 14986: -13,57 + 14987: -6,57 + 14988: 0,57 + 14989: -5,64 + 14990: -6,68 + 14991: 0,68 + 14992: 5,68 + 14993: 6,75 + 14994: 6,82 + 14995: -13,68 + 14996: -12,75 + 14997: -12,82 + 14998: -12,88 + 14999: -12,95 + 15000: -26,68 + 15001: -20,68 + 15002: -31,68 + 15003: -30,75 + 15004: -30,82 + 15005: -30,88 + 15006: -30,95 + 15069: -19,64 + 15075: 17,12 + 15076: 21,5 + 15077: 28,5 + 15090: 21,-11 + 15093: 28,-11 + 15094: 17,-12 + 15107: -38,5 + 15108: -38,5 + 15109: -33,5 + 15110: -27,5 + 15121: -19,-12 + 15122: -19,-2 + 15123: -19,5 + 15133: 3,-20 + 15134: -8,-20 + 15135: -15,-20 + 15143: 44,-20 + 15144: 49,-20 + 15148: 17,5 + 15149: -10,14 + 15212: -1,-39 + 15213: -1,-44 + 15214: -1,-31 + 15215: -1,-24 + 15221: -1,-52 + 15222: -1,-59 + 15375: -42,11 + 15376: -42,17 + 15377: -42,22 + 15587: 95,-3 + 18733: -9,-9 + 18734: -3,-9 + 18735: 4,-9 + 18736: 10,-9 + 18743: -15,-9 + 19445: -19,12 + 19448: 10,-20 + 19639: 35,-9 + 19640: 34,-10 + 19911: 17,-2 + 20172: -19,-2 + 20173: -19,5 + 20174: -19,12 + 20175: -19,19 + 24775: 39,-67 - node: color: '#334E6DFF' id: BrickTileWhiteInnerSe decals: - 21895: -18,18 - 21896: -18,14 + 21827: -18,18 + 21828: -18,14 - node: color: '#3EB388FF' id: BrickTileWhiteInnerSe decals: - 21654: -55,36 - 21656: -55,32 - 21657: -46,23 - 21699: -53,21 - 21739: -47,41 - 21740: -48,44 - 21840: -46,51 - 21841: -54,44 - 21844: -56,44 - 21865: -59,56 + 21586: -55,36 + 21588: -55,32 + 21589: -46,23 + 21631: -53,21 + 21671: -47,41 + 21672: -48,44 + 21772: -46,51 + 21773: -54,44 + 21776: -56,44 + 21797: -59,56 + - node: + color: '#439909FF' + id: BrickTileWhiteInnerSe + decals: + 24636: 27,-58 + 24637: 28,-56 + 24691: 41,-62 + 24711: 36,-70 + 24727: 32,-68 + 24759: 41,-71 + 24760: 39,-71 - node: color: '#52B4E9FF' id: BrickTileWhiteInnerSe decals: - 23173: 18,-36 - 23184: 18,-28 - 23207: 17,-34 - 23247: 13,-35 - 23248: 14,-35 - 23302: 38,-35 - 23498: 36,-40 - 23517: 37,-42 - 23518: 28,-44 - 23519: 28,-50 - 23520: 27,-53 - 23521: 28,-40 - 23522: 24,-44 - 23531: 18,-40 - 23532: 17,-45 - 23533: 27,-44 - 23534: 17,-47 - 23617: 4,-47 - 23634: 9,-41 - 23646: 14,-40 - 23669: 14,-44 - 23683: 24,-40 - 23690: 18,-44 - 23740: 28,-50 - 23748: 27,-35 - 23749: 36,-35 - 23750: 29,-32 - 23751: 29,-27 - 23828: 30,-30 - 23833: 27,-51 - 23843: 0,-44 - 23846: 0,-51 - 23853: 0,-42 - 23856: 0,-49 - 23868: -5,-60 - 23881: 6,67 - 23882: 4,67 + 23102: 18,-36 + 23113: 18,-28 + 23136: 17,-34 + 23175: 13,-35 + 23176: 14,-35 + 23229: 38,-35 + 23423: 36,-40 + 23442: 37,-42 + 23443: 28,-44 + 23444: 28,-50 + 23445: 27,-53 + 23446: 28,-40 + 23447: 24,-44 + 23456: 18,-40 + 23457: 17,-45 + 23458: 27,-44 + 23459: 17,-47 + 23541: 4,-47 + 23558: 9,-41 + 23568: 14,-40 + 23589: 14,-44 + 23603: 24,-40 + 23610: 18,-44 + 23660: 28,-50 + 23668: 27,-35 + 23669: 36,-35 + 23670: 29,-32 + 23671: 29,-27 + 23748: 30,-30 + 23753: 27,-51 + 23763: 0,-44 + 23766: 0,-51 + 23773: 0,-42 + 23776: 0,-49 + 23787: -5,-60 + 23800: 6,67 + 23801: 4,67 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerSe decals: - 17845: -46,23 - 17889: -55,32 - 17921: -46,51 - 17956: -48,44 - 17961: -47,41 - 18004: -59,56 - 18008: -58,57 - 18031: -56,44 - 18032: -54,44 - 18103: -53,21 + 17782: -46,23 + 17826: -55,32 + 17858: -46,51 + 17893: -48,44 + 17898: -47,41 + 17941: -59,56 + 17945: -58,57 + 17968: -56,44 + 17969: -54,44 + 18040: -53,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerSe decals: - 9545: 18,-28 - 9678: 18,-36 - 9691: 14,-35 - 9765: 27,-53 - 9766: 28,-50 - 9767: 28,-44 - 9768: 28,-40 - 9769: 28,-36 - 9886: 17,-47 - 9893: 18,-40 - 9894: 18,-44 - 9923: 24,-40 - 9943: 38,-35 - 9944: 38,-35 - 9980: 37,-42 - 10004: 36,-40 - 10019: 30,-30 - 10069: 29,-27 - 10073: 29,-32 - 10095: 14,-40 - 10099: 24,-45 - 10117: 22,-49 - 10118: 25,-43 - 10147: 24,-44 - 10203: 31,-53 - 10332: 9,-41 - 10333: 4,-47 - 10363: 14,-44 - 10592: 49,-33 - 15290: 10,-26 - 15291: 13,-35 - 15292: 17,-34 - 15293: 27,-35 - 15294: 36,-35 - 15295: 27,-44 - 15296: 27,-51 - 15297: 17,-45 - 19381: -5,-60 + 9522: 18,-28 + 9652: 18,-36 + 9661: 14,-35 + 9728: 27,-53 + 9729: 28,-50 + 9730: 28,-44 + 9731: 28,-40 + 9732: 28,-36 + 9833: 17,-47 + 9840: 18,-40 + 9841: 18,-44 + 9870: 24,-40 + 9890: 38,-35 + 9891: 38,-35 + 9926: 37,-42 + 9950: 36,-40 + 9965: 30,-30 + 10015: 29,-27 + 10019: 29,-32 + 10041: 14,-40 + 10045: 24,-45 + 10063: 22,-49 + 10064: 25,-43 + 10093: 24,-44 + 10149: 31,-53 + 10278: 9,-41 + 10279: 4,-47 + 10304: 14,-44 + 10530: 49,-33 + 15227: 10,-26 + 15228: 13,-35 + 15229: 17,-34 + 15230: 27,-35 + 15231: 36,-35 + 15232: 27,-44 + 15233: 27,-51 + 15234: 17,-45 + 19317: -5,-60 - node: color: '#A46106FF' id: BrickTileWhiteInnerSe decals: - 21932: 5,26 - 21933: 8,26 - 21951: 10,28 - 21973: 8,28 - 22024: 9,35 - 22025: 10,34 - 22026: 11,35 - 22044: 4,33 - 22048: 9,33 - 22071: 5,39 - 22075: 10,39 - 22087: 10,42 - 22095: 11,45 - 22099: 11,43 - 22144: 15,34 - 22145: 21,34 - 22204: 13,52 - 22205: 13,49 - 22295: 22,36 - 22301: 19,36 - 22304: 18,35 - 22354: 22,41 - 22355: 22,43 - 22356: 22,45 - 22357: 22,47 - 22358: 22,51 - 22359: 22,49 - 22366: 17,41 - 22367: 17,43 - 22368: 17,45 - 22382: 21,40 - 22394: 25,48 - 22419: 38,51 - 22432: 32,51 - 22436: 25,54 - 22439: 25,48 - 22462: 16,27 - 22480: 16,26 - 22514: 27,35 - 22560: 28,40 + 21864: 5,26 + 21865: 8,26 + 21883: 10,28 + 21905: 8,28 + 21956: 9,35 + 21957: 10,34 + 21958: 11,35 + 21976: 4,33 + 21980: 9,33 + 22003: 5,39 + 22007: 10,39 + 22019: 10,42 + 22027: 11,45 + 22031: 11,43 + 22076: 15,34 + 22077: 21,34 + 22136: 13,52 + 22137: 13,49 + 22227: 22,36 + 22233: 19,36 + 22236: 18,35 + 22286: 22,41 + 22287: 22,43 + 22288: 22,45 + 22289: 22,47 + 22290: 22,51 + 22291: 22,49 + 22298: 17,41 + 22299: 17,43 + 22300: 17,45 + 22314: 21,40 + 22326: 25,48 + 22351: 38,51 + 22364: 32,51 + 22368: 25,54 + 22371: 25,48 + 22394: 16,27 + 22412: 16,26 + 22446: 27,35 + 22492: 28,40 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerSe decals: - 2881: -27,47 - 2882: -31,46 - 2888: -32,46 - 2912: -28,53 - 2965: -30,47 - 2966: -28,47 - 2996: -37,49 - 2999: -38,47 + 2880: -27,47 + 2881: -31,46 + 2887: -32,46 + 2911: -28,53 + 2964: -30,47 + 2965: -28,47 + 2995: -37,49 + 2998: -38,47 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerSe decals: - 5086: 27,31 - 5089: 22,27 - 5163: 35,34 - 5166: 36,37 - 11618: -12,-35 - 11643: -5,-35 - 11662: -5,-32 - 11667: -7,-36 - 11670: -12,-34 - 11771: -13,-36 - 11795: -13,-41 - 11881: -29,-36 - 11882: -24,-36 - 11912: -28,-31 - 11913: -29,-29 - 11914: -29,-29 - 11915: -28,-27 - 12074: -22,-26 - 12176: -24,-41 - 12213: -13,-50 - 12216: -16,-54 - 12244: -13,-59 - 12276: -4,-48 - 12284: -6,-53 - 12306: -19,-44 - 12613: -7,-34 - 12714: -7,-34 - 12715: -7,-34 - 15237: -8,-26 - 15238: -14,-35 - 15239: -14,-43 - 15240: -14,-53 - 15241: -24,-35 - 15242: -23,-30 - 15261: -29,-41 - 20023: 36,39 - - node: - color: '#CEDA8BFF' - id: BrickTileWhiteInnerSe - decals: - 10814: 28,-56 - 10820: 27,-58 - 10852: 41,-62 - 10881: 36,-62 - 10886: 36,-70 - 10921: 41,-71 - 10922: 39,-71 - 10923: 39,-71 - 10960: 28,-67 + 5085: 27,31 + 5088: 22,27 + 5162: 35,34 + 5165: 36,37 + 11556: -12,-35 + 11581: -5,-35 + 11600: -5,-32 + 11605: -7,-36 + 11608: -12,-34 + 11709: -13,-36 + 11733: -13,-41 + 11819: -29,-36 + 11820: -24,-36 + 12012: -22,-26 + 12114: -24,-41 + 12151: -13,-50 + 12154: -16,-54 + 12182: -13,-59 + 12214: -4,-48 + 12222: -6,-53 + 12244: -19,-44 + 12550: -7,-34 + 12651: -7,-34 + 12652: -7,-34 + 15174: -8,-26 + 15175: -14,-35 + 15176: -14,-43 + 15177: -14,-53 + 15178: -24,-35 + 15179: -23,-30 + 15198: -29,-41 + 19959: 36,39 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSe decals: - 22638: -6,-28 - 22644: -15,-28 - 22651: -13,-28 - 22749: -13,-50 - 22752: -16,-54 - 22762: -13,-41 - 22803: -19,-44 - 22858: -22,-31 - 22876: -29,-36 - 22880: -24,-36 - 22904: -23,-30 - 22908: -22,-26 - 22948: -24,-35 - 22952: -14,-35 - 22957: -12,-34 - 22959: -12,-35 - 22960: -13,-36 - 22982: -5,-32 - 22983: -7,-36 - 23051: -4,-48 - 23063: -6,-53 - 23081: -14,-53 - 23082: -14,-43 - 23117: -13,-59 + 22570: -6,-28 + 22576: -15,-28 + 22583: -13,-28 + 22681: -13,-50 + 22684: -16,-54 + 22694: -13,-41 + 22735: -19,-44 + 22790: -22,-31 + 22808: -29,-36 + 22812: -24,-36 + 22836: -23,-30 + 22840: -22,-26 + 22880: -24,-35 + 22884: -14,-35 + 22889: -12,-34 + 22891: -12,-35 + 22892: -13,-36 + 22914: -5,-32 + 22915: -7,-36 + 22983: -4,-48 + 22995: -6,-53 + 23013: -14,-53 + 23014: -14,-43 + 23049: -13,-59 + 24393: -29,-29 + 24394: -28,-31 + 24395: -28,-27 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerSe decals: - 19214: 70,13 - 19226: 63,-4 + 19151: 70,13 + 19163: 63,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerSe decals: - 3816: 12,67 + 3815: 12,67 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerSe decals: - 4381: 10,28 - 4404: 9,33 - 4411: 11,35 - 4418: 5,26 - 4419: 8,26 - 4437: 8,28 - 4469: 16,26 - 4495: 16,27 - 4523: 10,34 - 4526: 5,39 - 4545: 10,39 - 4562: 10,42 - 4565: 11,43 - 4568: 11,45 - 4579: 15,34 - 4595: 21,34 - 4641: 22,27 - 4642: 21,26 - 4652: 27,31 - 4687: 20,28 - 4688: 26,28 - 4689: 24,28 - 4711: 26,29 - 4712: 22,29 - 4718: 21,29 - 4769: 18,35 - 4770: 19,36 - 4778: 28,40 - 4810: 9,35 - 4822: 21,40 - 4855: 32,51 - 4859: 38,51 - 4882: 25,48 - 4920: 13,49 - 4925: 13,52 - 4946: 25,54 - 5023: 22,43 - 5035: 17,45 - 5036: 17,43 - 5037: 17,41 - 5038: 22,41 - 5039: 22,45 - 5040: 22,47 - 5041: 22,49 - 5042: 22,51 - 6985: 8,28 - 19889: 25,29 + 4380: 10,28 + 4403: 9,33 + 4410: 11,35 + 4417: 5,26 + 4418: 8,26 + 4436: 8,28 + 4468: 16,26 + 4494: 16,27 + 4522: 10,34 + 4525: 5,39 + 4544: 10,39 + 4561: 10,42 + 4564: 11,43 + 4567: 11,45 + 4578: 15,34 + 4594: 21,34 + 4640: 22,27 + 4641: 21,26 + 4651: 27,31 + 4686: 20,28 + 4687: 26,28 + 4688: 24,28 + 4710: 26,29 + 4711: 22,29 + 4717: 21,29 + 4768: 18,35 + 4769: 19,36 + 4777: 28,40 + 4809: 9,35 + 4821: 21,40 + 4854: 32,51 + 4858: 38,51 + 4881: 25,48 + 4919: 13,49 + 4924: 13,52 + 4945: 25,54 + 5022: 22,43 + 5034: 17,45 + 5035: 17,43 + 5036: 17,41 + 5037: 22,41 + 5038: 22,45 + 5039: 22,47 + 5040: 22,49 + 5041: 22,51 + 6984: 8,28 + 19825: 25,29 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerSe decals: - 9572: 5,-36 - 9574: 8,-34 - 9601: 6,-34 + 9548: 5,-36 + 9550: 8,-34 + 9577: 6,-34 - node: color: '#EFB341FF' id: BrickTileWhiteInnerSe decals: - 16880: -49,1 - 16903: -58,-4 - 16924: -52,8 - 16934: -51,9 - 16953: -63,1 - 16972: -63,-7 - 16980: -57,-9 - 16981: -57,-7 - 16994: -58,-10 - 17034: -52,-4 - 17048: -52,-10 - 17049: -52,-15 - 17057: -56,-18 - 17058: -54,-18 - 17079: -50,-17 - 17156: -47,14 - 17161: -50,11 - 17191: -68,15 - 17217: -76,14 - 17218: -77,13 - 17222: -72,14 - 17282: -58,17 - 17301: -51,-9 - 17371: -69,-8 - 17397: -75,-8 - 17441: 6,87 - 17442: 10,84 - 17451: 11,87 - 17477: 12,78 - 17607: -66,1 - 17612: -71,-4 - 17613: -69,-4 - 17656: -72,10 - 17702: -77,3 - 17743: -76,-2 - 17747: -76,0 - 19894: -49,-3 + 16817: -49,1 + 16840: -58,-4 + 16861: -52,8 + 16871: -51,9 + 16890: -63,1 + 16909: -63,-7 + 16917: -57,-9 + 16918: -57,-7 + 16931: -58,-10 + 16971: -52,-4 + 16985: -52,-10 + 16986: -52,-15 + 16994: -56,-18 + 16995: -54,-18 + 17016: -50,-17 + 17093: -47,14 + 17098: -50,11 + 17128: -68,15 + 17154: -76,14 + 17155: -77,13 + 17159: -72,14 + 17219: -58,17 + 17238: -51,-9 + 17308: -69,-8 + 17334: -75,-8 + 17378: 6,87 + 17379: 10,84 + 17388: 11,87 + 17414: 12,78 + 17544: -66,1 + 17549: -71,-4 + 17550: -69,-4 + 17593: -72,10 + 17639: -77,3 + 17680: -76,-2 + 17684: -76,0 + 19830: -49,-3 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe decals: + 2363: -29,32 2364: -29,32 - 2365: -29,32 - 2368: -29,30 - 2371: -31,30 - 2697: -12,52 - 3834: 19,69 - 3837: 22,69 + 2367: -29,30 + 2370: -31,30 + 2696: -12,52 + 3833: 19,69 + 3836: 22,69 + 6663: -32,-3 6664: -32,-3 - 6665: -32,-3 - 6682: -32,1 - 6687: -29,-3 + 6681: -32,1 + 6686: -29,-3 + 6690: -24,-3 6691: -24,-3 - 6692: -24,-3 - 6755: -35,-11 - 6962: -23,-17 - 6966: -24,-18 - 8062: 60,-16 - 8063: 61,-15 - 8064: 61,-28 - 8065: 60,-29 - 8316: 39,-11 + 6754: -35,-11 + 6961: -23,-17 + 6965: -24,-18 + 8061: 60,-16 + 8062: 61,-15 + 8063: 61,-28 + 8064: 60,-29 + 8315: 39,-11 + 8316: 39,-14 8317: 39,-14 - 8318: 39,-14 - 8342: 47,-17 - 8705: -4,-79 - 8706: -1,-80 - 8707: -6,-80 - 8709: -6,-76 - 8710: -1,-76 - 8963: -15,-28 - 9454: -4,-71 - 9469: 73,-47 - 10665: 75,-45 - 13459: -41,-63 - 14853: -21,47 - 14854: -17,47 - 14855: -16,48 - 14856: -19,46 - 14857: -19,50 - 14858: -23,41 - 14859: -19,34 - 14860: -19,31 - 14861: -19,27 - 14862: -19,16 - 14863: -13,23 - 14864: -3,23 - 14865: 4,23 - 14950: 17,16 - 14951: 14,23 - 15018: -21,29 - 15038: -10,49 - 15039: -5,49 - 15040: -11,57 - 15041: -4,57 - 15042: 2,57 - 15043: -18,57 - 15076: -30,85 - 15077: -30,92 - 15078: -30,79 - 15083: -30,72 - 15084: -29,68 - 15085: -24,68 - 15086: -18,68 - 15087: -11,68 - 15088: -4,68 - 15089: -12,72 - 15090: -12,79 - 15091: -12,85 - 15092: -12,92 - 15108: 6,79 - 15109: 6,72 - 15110: 7,68 - 15111: 2,68 - 15126: -5,61 - 15133: -19,61 - 15135: 17,9 - 15136: 24,5 - 15137: 31,5 - 15146: 17,2 - 15147: 17,-5 - 15148: 17,-17 - 15149: 24,-11 - 15150: 30,-11 - 15174: -31,5 - 15175: -23,5 - 15176: -36,5 - 15183: -19,-17 - 15187: -19,2 - 15188: -19,-5 - 15189: -12,-20 - 15190: -5,-20 - 15194: 6,-20 - 15195: 13,-20 - 15204: 47,-20 - 15205: 52,-20 - 15262: -1,-35 - 15263: -1,-42 - 15264: -1,-50 - 15265: -1,-55 - 15266: -1,-61 - 15273: -1,-27 - 15441: -42,20 - 15442: -42,9 - 15443: -42,14 - 15576: 95,-3 - 15667: 96,6 - 18803: -6,-9 - 18804: -12,-9 - 18813: 7,-9 - 18814: 13,-9 - 18816: 1,-9 - 19511: -19,9 - 19707: 40,-14 - 19708: 39,-15 - 20248: -19,2 - 20249: -19,9 - 20250: -19,16 - 20251: -19,-5 - 23134: 11,-28 + 8341: 47,-17 + 8704: -4,-79 + 8705: -1,-80 + 8706: -6,-80 + 8708: -6,-76 + 8709: -1,-76 + 8960: -15,-28 + 9442: -4,-71 + 9457: 73,-47 + 10603: 75,-45 + 13396: -41,-63 + 14790: -21,47 + 14791: -17,47 + 14792: -16,48 + 14793: -19,46 + 14794: -19,50 + 14795: -23,41 + 14796: -19,34 + 14797: -19,31 + 14798: -19,27 + 14799: -19,16 + 14800: -13,23 + 14801: -3,23 + 14802: 4,23 + 14887: 17,16 + 14888: 14,23 + 14955: -21,29 + 14975: -10,49 + 14976: -5,49 + 14977: -11,57 + 14978: -4,57 + 14979: 2,57 + 14980: -18,57 + 15013: -30,85 + 15014: -30,92 + 15015: -30,79 + 15020: -30,72 + 15021: -29,68 + 15022: -24,68 + 15023: -18,68 + 15024: -11,68 + 15025: -4,68 + 15026: -12,72 + 15027: -12,79 + 15028: -12,85 + 15029: -12,92 + 15045: 6,79 + 15046: 6,72 + 15047: 7,68 + 15048: 2,68 + 15063: -5,61 + 15070: -19,61 + 15072: 17,9 + 15073: 24,5 + 15074: 31,5 + 15083: 17,2 + 15084: 17,-5 + 15085: 17,-17 + 15086: 24,-11 + 15087: 30,-11 + 15111: -31,5 + 15112: -23,5 + 15113: -36,5 + 15120: -19,-17 + 15124: -19,2 + 15125: -19,-5 + 15126: -12,-20 + 15127: -5,-20 + 15131: 6,-20 + 15132: 13,-20 + 15141: 47,-20 + 15142: 52,-20 + 15199: -1,-35 + 15200: -1,-42 + 15201: -1,-50 + 15202: -1,-55 + 15203: -1,-61 + 15210: -1,-27 + 15378: -42,20 + 15379: -42,9 + 15380: -42,14 + 15513: 95,-3 + 15604: 96,6 + 18740: -6,-9 + 18741: -12,-9 + 18750: 7,-9 + 18751: 13,-9 + 18753: 1,-9 + 19447: -19,9 + 19643: 40,-14 + 19644: 39,-15 + 20184: -19,2 + 20185: -19,9 + 20186: -19,16 + 20187: -19,-5 + 23064: 11,-28 + 24770: 40,-68 - node: color: '#334E6DFF' id: BrickTileWhiteInnerSw decals: - 21282: -16,14 - 21283: -16,14 - 22586: 16,-4 - 22596: 16,-2 + 21214: -16,14 + 21215: -16,14 + 22518: 16,-4 + 22528: 16,-2 - node: color: '#3EB388FF' id: BrickTileWhiteInnerSw decals: - 21642: -56,35 - 21643: -55,32 - 21700: -54,23 - 21704: -49,21 - 21734: -50,41 - 21741: -48,44 - 21842: -54,44 - 21843: -56,44 - 21847: -60,50 - 21848: -60,48 - 21863: -60,57 - 21864: -59,56 - 21878: -43,23 - 21883: -44,20 - 21884: -44,18 + 21574: -56,35 + 21575: -55,32 + 21632: -54,23 + 21636: -49,21 + 21666: -50,41 + 21673: -48,44 + 21774: -54,44 + 21775: -56,44 + 21779: -60,50 + 21780: -60,48 + 21795: -60,57 + 21796: -59,56 + 21810: -43,23 + 21815: -44,20 + 21816: -44,18 + - node: + color: '#439909FF' + id: BrickTileWhiteInnerSw + decals: + 24635: 27,-58 + 24638: 26,-56 + 24677: 43,-62 + 24693: 38,-62 + 24696: 34,-61 + 24718: 34,-68 + 24757: 39,-71 + 24758: 41,-71 - node: color: '#52B4E9FF' id: BrickTileWhiteInnerSw decals: - 23149: 16,-26 - 23163: 16,-31 - 23193: 16,-35 - 23206: 17,-34 - 23241: 11,-35 - 23242: 10,-34 - 23376: 20,-44 - 23493: 30,-40 - 23497: 32,-40 - 23516: 37,-42 - 23535: 17,-47 - 23615: 3,-44 - 23616: 4,-47 - 23633: 9,-41 - 23647: 16,-40 - 23648: 17,-45 - 23649: 16,-44 - 23667: 14,-45 - 23682: 20,-40 - 23684: 27,-44 - 23685: 26,-44 - 23703: 26,-40 - 23735: 27,-53 - 23738: 30,-49 - 23742: 30,-50 - 23746: 22,-35 - 23747: 31,-35 - 23752: 29,-27 - 23753: 29,-32 - 23754: 24,-29 - 23805: 20,-28 - 23814: 26,-30 - 23832: 27,-51 - 23835: 31,-53 - 23880: 6,67 - 23883: 8,67 - 23894: 5,64 - 24084: -3,-58 - 24087: -3,-60 + 23078: 16,-26 + 23092: 16,-31 + 23122: 16,-35 + 23135: 17,-34 + 23169: 11,-35 + 23170: 10,-34 + 23303: 20,-44 + 23418: 30,-40 + 23422: 32,-40 + 23441: 37,-42 + 23460: 17,-47 + 23539: 3,-44 + 23540: 4,-47 + 23557: 9,-41 + 23569: 16,-40 + 23570: 17,-45 + 23571: 16,-44 + 23587: 14,-45 + 23602: 20,-40 + 23604: 27,-44 + 23605: 26,-44 + 23623: 26,-40 + 23655: 27,-53 + 23658: 30,-49 + 23662: 30,-50 + 23666: 22,-35 + 23667: 31,-35 + 23672: 29,-27 + 23673: 29,-32 + 23674: 24,-29 + 23725: 20,-28 + 23734: 26,-30 + 23752: 27,-51 + 23755: 31,-53 + 23799: 6,67 + 23802: 8,67 + 23813: 5,64 + 24003: -3,-58 + 24006: -3,-60 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerSw decals: - 15676: 97,-3 - 17866: -49,21 - 17887: -55,32 - 17888: -56,35 - 17955: -48,44 - 18003: -59,56 - 18007: -60,57 - 18015: -60,48 - 18018: -60,50 - 18030: -56,44 - 18033: -54,44 - 18104: -54,23 + 15613: 97,-3 + 17803: -49,21 + 17824: -55,32 + 17825: -56,35 + 17892: -48,44 + 17940: -59,56 + 17944: -60,57 + 17952: -60,48 + 17955: -60,50 + 17967: -56,44 + 17970: -54,44 + 18041: -54,23 - node: color: '#8CB7E8FF' id: BrickTileWhiteInnerSw decals: - 9529: 16,-26 - 9709: 10,-34 - 9764: 27,-53 - 9770: 26,-36 - 9885: 17,-47 - 9895: 16,-44 - 9896: 16,-40 - 9907: 26,-44 - 9911: 26,-40 - 9922: 20,-40 - 9978: 37,-42 - 9979: 30,-40 - 10003: 32,-40 - 10018: 26,-30 - 10068: 29,-27 - 10072: 29,-32 - 10098: 20,-45 - 10116: 22,-49 - 10146: 20,-44 - 10176: 32,-51 - 10179: 32,-49 - 10202: 31,-53 - 10216: 30,-50 - 10330: 9,-41 - 10331: 4,-47 - 10340: 3,-44 - 10601: 43,-33 - 15289: 6,-26 - 15302: 17,-45 - 15303: 27,-44 - 15304: 27,-51 - 15313: 22,-35 - 15314: 31,-35 - 15315: 11,-35 - 18421: 17,-34 - 19350: 5,64 - 19719: 20,-28 - 19720: 24,-29 + 9509: 16,-26 + 9674: 10,-34 + 9727: 27,-53 + 9733: 26,-36 + 9832: 17,-47 + 9842: 16,-44 + 9843: 16,-40 + 9854: 26,-44 + 9858: 26,-40 + 9869: 20,-40 + 9924: 37,-42 + 9925: 30,-40 + 9949: 32,-40 + 9964: 26,-30 + 10014: 29,-27 + 10018: 29,-32 + 10044: 20,-45 + 10062: 22,-49 + 10092: 20,-44 + 10122: 32,-51 + 10125: 32,-49 + 10148: 31,-53 + 10162: 30,-50 + 10276: 9,-41 + 10277: 4,-47 + 10283: 3,-44 + 10539: 43,-33 + 15226: 6,-26 + 15239: 17,-45 + 15240: 27,-44 + 15241: 27,-51 + 15250: 22,-35 + 15251: 31,-35 + 15252: 11,-35 + 18358: 17,-34 + 19287: 5,64 + 19655: 20,-28 + 19656: 24,-29 - node: color: '#9FED58FF' id: BrickTileWhiteInnerSw decals: - 23917: -23,47 - 23919: -23,50 + 23836: -23,47 + 23838: -23,50 - node: color: '#A46106FF' id: BrickTileWhiteInnerSw decals: - 21930: 4,26 - 21931: 7,26 - 21947: 2,29 - 21970: 4,28 - 22021: 4,35 - 22043: 4,33 - 22047: 9,33 - 22067: 4,40 - 22070: 5,39 - 22074: 10,39 - 22086: 10,42 - 22114: 13,35 - 22142: 15,34 - 22146: 20,34 - 22207: 15,52 - 22302: 15,36 - 22303: 16,35 - 22320: 19,45 - 22321: 19,47 - 22322: 19,49 - 22323: 19,51 - 22341: 19,41 - 22342: 19,43 - 22343: 19,45 - 22344: 16,41 - 22345: 16,43 - 22346: 16,45 - 22374: 13,45 - 22375: 13,43 - 22381: 24,40 - 22423: 34,51 - 22463: 13,27 - 22478: 12,28 - 22479: 14,26 - 22513: 26,35 - 22518: 24,36 - 22559: 28,40 + 21862: 4,26 + 21863: 7,26 + 21879: 2,29 + 21902: 4,28 + 21953: 4,35 + 21975: 4,33 + 21979: 9,33 + 21999: 4,40 + 22002: 5,39 + 22006: 10,39 + 22018: 10,42 + 22046: 13,35 + 22074: 15,34 + 22078: 20,34 + 22139: 15,52 + 22234: 15,36 + 22235: 16,35 + 22252: 19,45 + 22253: 19,47 + 22254: 19,49 + 22255: 19,51 + 22273: 19,41 + 22274: 19,43 + 22275: 19,45 + 22276: 16,41 + 22277: 16,43 + 22278: 16,45 + 22306: 13,45 + 22307: 13,43 + 22313: 24,40 + 22355: 34,51 + 22395: 13,27 + 22410: 12,28 + 22411: 14,26 + 22445: 26,35 + 22450: 24,36 + 22491: 28,40 - node: color: '#A9DA8BFF' id: BrickTileWhiteInnerSw decals: - 2883: -31,46 - 2889: -32,46 - 2894: -34,48 - 2895: -35,49 - 2962: -30,47 - 2963: -32,47 - 2964: -28,47 - 3005: -38,48 - 3007: -38,45 + 2882: -31,46 + 2888: -32,46 + 2893: -34,48 + 2894: -35,49 + 2961: -30,47 + 2962: -32,47 + 2963: -28,47 + 3004: -38,48 + 3006: -38,45 - node: color: '#B18BDAFF' id: BrickTileWhiteInnerSw decals: - 5088: 24,27 - 5149: 38,30 - 5159: 38,30 - 11666: -7,-36 - 11668: -10,-35 - 11669: -10,-35 - 11671: -10,-34 - 11770: -15,-36 - 11792: -15,-40 - 11879: -29,-36 - 11880: -24,-36 - 11916: -30,-31 - 12175: -25,-41 - 12211: -17,-51 - 12215: -16,-54 - 12227: -19,-59 - 12228: -20,-58 - 12272: -11,-50 - 12283: -6,-53 - 12305: -19,-44 - 12614: -8,-34 - 12712: -8,-34 - 12713: -8,-34 - 15236: -12,-26 - 15246: -29,-35 - 15247: -23,-30 - 15251: -18,-35 - 15252: -14,-43 - 15253: -14,-53 - 15260: -29,-41 - - node: - color: '#CEDA8BFF' - id: BrickTileWhiteInnerSw - decals: - 10813: 26,-56 - 10819: 27,-58 - 10854: 38,-62 - 10871: 43,-62 - 10883: 34,-61 - 10887: 34,-68 - 10896: 38,-70 - 10904: 39,-71 - 10924: 41,-71 - 10925: 41,-71 - 10962: 30,-67 + 5087: 24,27 + 5148: 38,30 + 5158: 38,30 + 11604: -7,-36 + 11606: -10,-35 + 11607: -10,-35 + 11609: -10,-34 + 11708: -15,-36 + 11730: -15,-40 + 11817: -29,-36 + 11818: -24,-36 + 12113: -25,-41 + 12149: -17,-51 + 12153: -16,-54 + 12165: -19,-59 + 12166: -20,-58 + 12210: -11,-50 + 12221: -6,-53 + 12243: -19,-44 + 12551: -8,-34 + 12649: -8,-34 + 12650: -8,-34 + 15173: -12,-26 + 15183: -29,-35 + 15184: -23,-30 + 15188: -18,-35 + 15189: -14,-43 + 15190: -14,-53 + 15197: -29,-41 - node: color: '#D381C9FF' id: BrickTileWhiteInnerSw decals: - 22612: -2,-46 - 22617: -2,-48 - 22622: -2,-41 - 22627: -2,-38 - 22630: -3,-35 - 22637: -6,-28 - 22643: -13,-28 - 22650: -15,-28 - 22661: -15,-36 - 22737: -17,-51 - 22751: -16,-54 - 22802: -19,-44 - 22821: -15,-40 - 22875: -29,-36 - 22879: -24,-36 - 22903: -23,-30 - 22944: -18,-35 - 22947: -29,-35 - 22956: -10,-34 - 22961: -10,-35 - 22984: -7,-36 - 23058: -11,-50 - 23064: -6,-53 - 23080: -14,-53 - 23083: -14,-43 - 23110: -20,-58 + 22544: -2,-46 + 22549: -2,-48 + 22554: -2,-41 + 22559: -2,-38 + 22562: -3,-35 + 22569: -6,-28 + 22575: -13,-28 + 22582: -15,-28 + 22593: -15,-36 + 22669: -17,-51 + 22683: -16,-54 + 22734: -19,-44 + 22753: -15,-40 + 22807: -29,-36 + 22811: -24,-36 + 22835: -23,-30 + 22876: -18,-35 + 22879: -29,-35 + 22888: -10,-34 + 22893: -10,-35 + 22916: -7,-36 + 22990: -11,-50 + 22996: -6,-53 + 23012: -14,-53 + 23015: -14,-43 + 23042: -20,-58 + 24399: -30,-31 - node: color: '#DA8B8BFF' id: BrickTileWhiteInnerSw decals: - 19238: 65,-4 + 19175: 65,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteInnerSw decals: - 3813: 10,68 + 3812: 10,68 - node: color: '#DAA58BFF' id: BrickTileWhiteInnerSw decals: - 4378: 2,29 - 4405: 9,33 - 4420: 7,26 - 4421: 4,26 - 4436: 4,28 - 4456: 12,28 - 4468: 14,26 - 4496: 13,27 - 4527: 5,39 - 4530: 4,40 - 4544: 10,39 - 4561: 10,42 - 4580: 15,34 - 4586: 13,35 - 4594: 20,34 - 4615: 13,45 - 4616: 13,43 - 4640: 24,27 - 4643: 21,26 - 4685: 20,28 - 4686: 26,28 - 4690: 22,28 - 4704: 20,29 - 4713: 24,29 - 4719: 21,29 - 4725: 24,36 - 4753: 26,35 - 4767: 16,35 - 4768: 15,36 - 4777: 28,40 - 4811: 4,35 - 4823: 24,40 - 4857: 34,51 - 4936: 15,52 - 5024: 19,43 - 5025: 19,45 - 5026: 19,47 - 5027: 19,49 - 5028: 19,51 - 5031: 19,41 - 5032: 16,41 - 5033: 16,43 - 5034: 16,45 - 5153: 38,30 - 6986: 4,28 - 19888: 25,29 + 4377: 2,29 + 4404: 9,33 + 4419: 7,26 + 4420: 4,26 + 4435: 4,28 + 4455: 12,28 + 4467: 14,26 + 4495: 13,27 + 4526: 5,39 + 4529: 4,40 + 4543: 10,39 + 4560: 10,42 + 4579: 15,34 + 4585: 13,35 + 4593: 20,34 + 4614: 13,45 + 4615: 13,43 + 4639: 24,27 + 4642: 21,26 + 4684: 20,28 + 4685: 26,28 + 4689: 22,28 + 4703: 20,29 + 4712: 24,29 + 4718: 21,29 + 4724: 24,36 + 4752: 26,35 + 4766: 16,35 + 4767: 15,36 + 4776: 28,40 + 4810: 4,35 + 4822: 24,40 + 4856: 34,51 + 4935: 15,52 + 5023: 19,43 + 5024: 19,45 + 5025: 19,47 + 5026: 19,49 + 5027: 19,51 + 5030: 19,41 + 5031: 16,41 + 5032: 16,43 + 5033: 16,45 + 5152: 38,30 + 6985: 4,28 + 19824: 25,29 - node: color: '#DABC8BFF' id: BrickTileWhiteInnerSw decals: - 9570: 3,-35 - 9571: 5,-36 - 9582: 3,-32 - 9600: 5,-34 + 9546: 3,-35 + 9547: 5,-36 + 9558: 3,-32 + 9576: 5,-34 - node: color: '#EFB341FF' id: BrickTileWhiteInnerSw decals: - 16902: -58,-4 - 16922: -59,1 - 16923: -53,8 - 16935: -54,9 - 16952: -64,1 - 16971: -61,-7 - 16993: -58,-10 - 17031: -59,-17 - 17032: -55,-7 - 17033: -54,-9 - 17054: -50,-15 - 17056: -54,-18 - 17061: -56,-18 - 17169: -59,14 - 17170: -59,10 - 17179: -66,15 - 17214: -72,14 - 17219: -77,13 - 17281: -58,17 - 17304: -49,-9 - 17370: -71,-8 - 17440: 6,87 - 17443: 10,84 - 17458: 10,80 - 17473: 10,75 - 17480: 12,74 - 17608: -74,0 - 17610: -71,-4 - 17611: -69,-4 - 17655: -72,10 - 17701: -77,3 - 17735: -79,0 - 17740: -78,-1 - 17742: -76,-2 - 18163: -54,-4 - 21621: -45,12 - 21622: -45,14 + 16839: -58,-4 + 16859: -59,1 + 16860: -53,8 + 16872: -54,9 + 16889: -64,1 + 16908: -61,-7 + 16930: -58,-10 + 16968: -59,-17 + 16969: -55,-7 + 16970: -54,-9 + 16991: -50,-15 + 16993: -54,-18 + 16998: -56,-18 + 17106: -59,14 + 17107: -59,10 + 17116: -66,15 + 17151: -72,14 + 17156: -77,13 + 17218: -58,17 + 17241: -49,-9 + 17307: -71,-8 + 17377: 6,87 + 17380: 10,84 + 17395: 10,80 + 17410: 10,75 + 17417: 12,74 + 17545: -74,0 + 17547: -71,-4 + 17548: -69,-4 + 17592: -72,10 + 17638: -77,3 + 17672: -79,0 + 17677: -78,-1 + 17679: -76,-2 + 18100: -54,-4 + 21553: -45,12 + 21554: -45,14 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSw decals: - 2357: -28,38 - 2372: -31,30 - 2709: -12,52 - 2807: -7,33 - 3831: 17,70 - 3833: 18,69 - 3836: 21,69 - 6341: -2,-16 - 6688: -29,-3 + 2356: -28,38 + 2371: -31,30 + 2708: -12,52 + 2806: -7,33 + 3830: 17,70 + 3832: 18,69 + 3835: 21,69 + 6340: -2,-16 + 6687: -29,-3 + 6688: -24,-3 6689: -24,-3 - 6690: -24,-3 - 6732: -28,-16 - 6754: -30,-11 - 6965: -24,-18 - 8058: 58,-29 - 8059: 57,-28 - 8060: 57,-15 - 8061: 58,-16 + 6731: -28,-16 + 6753: -30,-11 + 6964: -24,-18 + 8057: 58,-29 + 8058: 57,-28 + 8059: 57,-15 + 8060: 58,-16 + 8312: 35,-14 8313: 35,-14 - 8314: 35,-14 - 8315: 35,-11 - 8341: 46,-17 - 8691: -8,-80 - 8692: -3,-80 - 8693: -8,-76 - 8694: -3,-76 - 8708: -5,-79 - 8962: -13,-28 - 9077: 5,-28 - 9455: -5,-71 - 9464: 72,-50 - 9468: 73,-47 - 9470: 69,-41 - 10657: 72,-50 - 14830: 10,-20 - 14831: 17,-17 - 14832: 17,-5 - 14833: 17,2 - 14834: 17,9 - 14835: 17,16 - 14836: 11,23 - 14837: 1,23 - 14838: -6,23 - 14839: -16,23 - 14840: -19,16 - 14841: -19,27 - 14842: -21,29 - 14843: -22,30 - 14844: -19,31 - 14845: -19,34 - 14846: -23,41 - 14847: -19,46 - 14848: -21,47 - 14849: -17,47 - 14850: -19,50 - 15019: -22,48 - 15036: -11,49 - 15037: -6,49 - 15044: -20,57 - 15045: -13,57 - 15046: -6,57 - 15047: 0,57 - 15074: -30,85 - 15075: -30,92 - 15079: -30,79 - 15082: -30,72 - 15093: -12,92 - 15094: -12,85 - 15095: -12,79 - 15096: -12,72 - 15097: -13,68 - 15098: -20,68 - 15099: -26,68 - 15100: -31,68 - 15101: -19,61 - 15102: -5,61 - 15103: -6,68 - 15104: 0,68 - 15105: 5,68 - 15106: 6,72 - 15107: 6,79 - 15144: 21,5 - 15145: 28,5 - 15151: 28,-11 - 15152: 21,-11 - 15177: -38,5 - 15178: -33,5 - 15179: -27,5 - 15180: -19,2 - 15181: -19,-5 - 15182: -19,-17 - 15192: -8,-20 - 15193: 3,-20 - 15199: -15,-20 - 15202: 44,-20 - 15203: 49,-20 - 15267: -1,-61 - 15268: -1,-55 - 15269: -1,-50 - 15270: -1,-42 - 15271: -1,-35 - 15272: -1,-27 - 15432: -42,9 - 15433: -42,14 - 15434: -42,20 - 15668: 96,6 - 18805: -15,-9 - 18809: -9,-9 - 18810: -3,-9 - 18811: 4,-9 - 18812: 10,-9 - 19510: -19,9 - 19706: 34,-14 - 19709: 35,-15 - 20244: -19,-5 - 20245: -19,2 - 20246: -19,9 - 20247: -19,16 - 23135: 13,-28 + 8314: 35,-11 + 8340: 46,-17 + 8690: -8,-80 + 8691: -3,-80 + 8692: -8,-76 + 8693: -3,-76 + 8707: -5,-79 + 8959: -13,-28 + 9070: 5,-28 + 9443: -5,-71 + 9452: 72,-50 + 9456: 73,-47 + 9458: 69,-41 + 10595: 72,-50 + 14767: 10,-20 + 14768: 17,-17 + 14769: 17,-5 + 14770: 17,2 + 14771: 17,9 + 14772: 17,16 + 14773: 11,23 + 14774: 1,23 + 14775: -6,23 + 14776: -16,23 + 14777: -19,16 + 14778: -19,27 + 14779: -21,29 + 14780: -22,30 + 14781: -19,31 + 14782: -19,34 + 14783: -23,41 + 14784: -19,46 + 14785: -21,47 + 14786: -17,47 + 14787: -19,50 + 14956: -22,48 + 14973: -11,49 + 14974: -6,49 + 14981: -20,57 + 14982: -13,57 + 14983: -6,57 + 14984: 0,57 + 15011: -30,85 + 15012: -30,92 + 15016: -30,79 + 15019: -30,72 + 15030: -12,92 + 15031: -12,85 + 15032: -12,79 + 15033: -12,72 + 15034: -13,68 + 15035: -20,68 + 15036: -26,68 + 15037: -31,68 + 15038: -19,61 + 15039: -5,61 + 15040: -6,68 + 15041: 0,68 + 15042: 5,68 + 15043: 6,72 + 15044: 6,79 + 15081: 21,5 + 15082: 28,5 + 15088: 28,-11 + 15089: 21,-11 + 15114: -38,5 + 15115: -33,5 + 15116: -27,5 + 15117: -19,2 + 15118: -19,-5 + 15119: -19,-17 + 15129: -8,-20 + 15130: 3,-20 + 15136: -15,-20 + 15139: 44,-20 + 15140: 49,-20 + 15204: -1,-61 + 15205: -1,-55 + 15206: -1,-50 + 15207: -1,-42 + 15208: -1,-35 + 15209: -1,-27 + 15369: -42,9 + 15370: -42,14 + 15371: -42,20 + 15605: 96,6 + 18742: -15,-9 + 18746: -9,-9 + 18747: -3,-9 + 18748: 4,-9 + 18749: 10,-9 + 19446: -19,9 + 19642: 34,-14 + 19645: 35,-15 + 20180: -19,-5 + 20181: -19,2 + 20182: -19,9 + 20183: -19,16 + 23065: 13,-28 + 24771: 40,-68 - node: color: '#0A6AB6FF' id: BrickTileWhiteLineE decals: - 879: 72,-45 + 878: 72,-45 - node: color: '#334E6DFF' id: BrickTileWhiteLineE decals: - 21279: -18,12 - 21280: -18,13 - 21893: -18,16 - 21894: -18,17 - 21897: -18,13 - 21898: -18,12 - 22598: 15,-4 + 21211: -18,12 + 21212: -18,13 + 21825: -18,16 + 21826: -18,17 + 21829: -18,13 + 21830: -18,12 + 22530: 15,-4 - node: color: '#3EB388FF' id: BrickTileWhiteLineE decals: - 21639: -54,33 - 21646: -55,38 - 21649: -55,35 - 21665: -53,23 - 21666: -53,22 - 21693: -56,24 - 21694: -56,23 - 21698: -53,20 - 21702: -51,21 - 21706: -46,19 - 21707: -46,20 - 21708: -46,21 - 21709: -46,22 - 21723: -47,37 - 21724: -47,38 - 21725: -47,39 - 21726: -47,40 - 21733: -51,41 - 21745: -61,48 - 21746: -61,50 - 21749: -61,57 - 21750: -58,57 - 21751: -58,54 - 21752: -58,53 - 21753: -58,53 - 21754: -58,52 - 21755: -58,51 - 21756: -58,50 - 21757: -58,49 - 21758: -58,49 - 21759: -58,48 - 21760: -58,47 - 21761: -58,46 - 21783: -46,57 - 21787: -46,55 - 21788: -46,55 - 21789: -46,54 - 21790: -46,53 - 21791: -46,53 - 21792: -46,52 - 21793: -46,50 - 21794: -46,50 - 21795: -46,49 - 21796: -46,48 - 21797: -46,48 - 21798: -46,47 - 21799: -46,47 - 21800: -46,46 - 21801: -46,46 - 21838: -45,51 - 21871: -61,57 - 21887: -44,23 - 21888: -45,18 + 21571: -54,33 + 21578: -55,38 + 21581: -55,35 + 21597: -53,23 + 21598: -53,22 + 21625: -56,24 + 21626: -56,23 + 21630: -53,20 + 21634: -51,21 + 21638: -46,19 + 21639: -46,20 + 21640: -46,21 + 21641: -46,22 + 21655: -47,37 + 21656: -47,38 + 21657: -47,39 + 21658: -47,40 + 21665: -51,41 + 21677: -61,48 + 21678: -61,50 + 21681: -61,57 + 21682: -58,57 + 21683: -58,54 + 21684: -58,53 + 21685: -58,53 + 21686: -58,52 + 21687: -58,51 + 21688: -58,50 + 21689: -58,49 + 21690: -58,49 + 21691: -58,48 + 21692: -58,47 + 21693: -58,46 + 21715: -46,57 + 21719: -46,55 + 21720: -46,55 + 21721: -46,54 + 21722: -46,53 + 21723: -46,53 + 21724: -46,52 + 21725: -46,50 + 21726: -46,50 + 21727: -46,49 + 21728: -46,48 + 21729: -46,48 + 21730: -46,47 + 21731: -46,47 + 21732: -46,46 + 21733: -46,46 + 21770: -45,51 + 21803: -61,57 + 21819: -44,23 + 21820: -45,18 + - node: + color: '#439909FF' + id: BrickTileWhiteLineE + decals: + 24640: 28,-57 + 24642: 25,-56 + 24653: 29,-61 + 24654: 33,-61 + 24662: 33,-61 + 24674: 42,-62 + 24700: 36,-61 + 24703: 37,-62 + 24719: 33,-68 + 24720: 36,-69 + 24721: 36,-68 + 24722: 36,-67 + 24723: 36,-66 + 24729: 32,-67 + 24730: 32,-69 - node: color: '#52B4E9FF' id: BrickTileWhiteLineE decals: - 23152: 15,-26 - 23153: 15,-25 - 23154: 18,-25 - 23155: 18,-26 - 23176: 18,-33 - 23177: 18,-32 - 23178: 18,-31 - 23179: 18,-31 - 23180: 18,-30 - 23181: 18,-29 - 23196: 15,-35 - 23197: 16,-34 - 23198: 16,-33 - 23199: 16,-32 - 23200: 16,-31 - 23208: 19,-36 - 23209: 19,-35 - 23210: 19,-34 - 23234: 9,-36 - 23235: 9,-34 - 23236: 15,-35 - 23250: 10,-35 - 23333: 21,-35 - 23334: 30,-35 - 23335: 30,-31 - 23336: 26,-40 - 23337: 26,-41 - 23338: 26,-42 - 23339: 26,-43 - 23340: 26,-43 - 23341: 26,-43 - 23342: 26,-44 - 23343: 26,-47 - 23344: 26,-47 - 23345: 26,-48 - 23346: 26,-49 - 23347: 26,-50 - 23348: 26,-50 - 23349: 26,-50 - 23350: 26,-51 - 23351: 28,-52 - 23352: 31,-48 - 23353: 31,-52 - 23354: 24,-45 - 23366: 24,-48 - 23367: 24,-47 - 23377: 19,-44 - 23378: 25,-44 - 23385: 19,-40 - 23386: 19,-39 - 23387: 15,-40 - 23388: 15,-39 - 23389: 25,-40 - 23390: 25,-39 - 23397: 1,-44 - 23398: 16,-45 - 23399: 16,-45 - 23400: 16,-44 - 23401: 16,-43 - 23402: 16,-43 - 23403: 16,-43 - 23404: 16,-42 - 23405: 16,-42 - 23406: 16,-41 - 23407: 16,-41 - 23408: 16,-40 - 23409: 16,-40 - 23410: 18,-42 - 23411: 18,-41 - 23412: 18,-42 - 23413: 18,-42 - 23414: 18,-43 - 23415: 18,-45 - 23416: 18,-45 - 23417: 18,-46 - 23418: 18,-38 - 23419: 28,-38 - 23420: 28,-39 - 23421: 28,-41 - 23422: 28,-42 - 23423: 28,-42 - 23424: 28,-42 - 23425: 28,-43 - 23426: 28,-45 - 23427: 28,-45 - 23428: 28,-46 - 23429: 28,-47 - 23430: 28,-48 - 23431: 28,-48 - 23432: 28,-48 - 23433: 28,-48 - 23434: 28,-48 - 23435: 28,-49 - 23436: 28,-49 - 23437: 28,-51 - 23438: 28,-51 - 23439: 28,-52 - 23440: 28,-52 - 23441: 28,-53 - 23484: 38,-39 - 23485: 38,-40 - 23486: 38,-40 - 23487: 38,-41 - 23491: 29,-40 - 23508: 31,-40 - 23595: 10,-44 - 23596: 10,-45 - 23597: 10,-46 - 23609: 6,-44 - 23651: 15,-44 - 23653: 13,-47 - 23654: 14,-46 - 23661: 13,-47 - 23665: 14,-45 - 23737: 31,-50 - 23770: 32,-25 - 23771: 32,-26 - 23793: 19,-28 - 23794: 19,-27 - 23795: 22,-28 - 23796: 22,-27 - 23797: 22,-26 - 23808: 23,-29 - 23827: 26,-28 - 23834: 31,-53 - 23849: 0,-52 - 23850: 0,-50 - 23851: 0,-45 - 23852: 0,-43 - 23871: -5,-61 - 23887: 4,64 - 23890: 7,63 - 23891: 7,64 - 24088: -4,-60 + 23081: 15,-26 + 23082: 15,-25 + 23083: 18,-25 + 23084: 18,-26 + 23105: 18,-33 + 23106: 18,-32 + 23107: 18,-31 + 23108: 18,-31 + 23109: 18,-30 + 23110: 18,-29 + 23125: 15,-35 + 23126: 16,-34 + 23127: 16,-33 + 23128: 16,-32 + 23129: 16,-31 + 23137: 19,-36 + 23138: 19,-35 + 23139: 19,-34 + 23162: 9,-36 + 23163: 9,-34 + 23164: 15,-35 + 23178: 10,-35 + 23260: 21,-35 + 23261: 30,-35 + 23262: 30,-31 + 23263: 26,-40 + 23264: 26,-41 + 23265: 26,-42 + 23266: 26,-43 + 23267: 26,-43 + 23268: 26,-43 + 23269: 26,-44 + 23270: 26,-47 + 23271: 26,-47 + 23272: 26,-48 + 23273: 26,-49 + 23274: 26,-50 + 23275: 26,-50 + 23276: 26,-50 + 23277: 26,-51 + 23278: 28,-52 + 23279: 31,-48 + 23280: 31,-52 + 23281: 24,-45 + 23293: 24,-48 + 23294: 24,-47 + 23304: 19,-44 + 23305: 25,-44 + 23312: 19,-40 + 23313: 19,-39 + 23314: 15,-40 + 23315: 15,-39 + 23316: 25,-40 + 23317: 25,-39 + 23324: 1,-44 + 23325: 16,-45 + 23326: 16,-45 + 23327: 16,-44 + 23328: 16,-43 + 23329: 16,-43 + 23330: 16,-43 + 23331: 16,-42 + 23332: 16,-42 + 23333: 16,-41 + 23334: 16,-41 + 23335: 16,-40 + 23336: 16,-40 + 23337: 18,-42 + 23338: 18,-41 + 23339: 18,-42 + 23340: 18,-42 + 23341: 18,-43 + 23342: 18,-45 + 23343: 18,-45 + 23344: 18,-46 + 23345: 18,-38 + 23346: 28,-38 + 23347: 28,-39 + 23348: 28,-41 + 23349: 28,-42 + 23350: 28,-42 + 23351: 28,-42 + 23352: 28,-43 + 23353: 28,-45 + 23354: 28,-45 + 23355: 28,-46 + 23356: 28,-47 + 23357: 28,-48 + 23358: 28,-48 + 23359: 28,-48 + 23360: 28,-48 + 23361: 28,-48 + 23362: 28,-49 + 23363: 28,-49 + 23364: 28,-51 + 23365: 28,-51 + 23366: 28,-52 + 23367: 28,-52 + 23368: 28,-53 + 23409: 38,-39 + 23410: 38,-40 + 23411: 38,-40 + 23412: 38,-41 + 23416: 29,-40 + 23433: 31,-40 + 23520: 10,-44 + 23521: 10,-45 + 23522: 10,-46 + 23534: 6,-44 + 23573: 15,-44 + 23575: 13,-47 + 23576: 14,-46 + 23582: 13,-47 + 23585: 14,-45 + 23657: 31,-50 + 23690: 32,-25 + 23691: 32,-26 + 23713: 19,-28 + 23714: 19,-27 + 23715: 22,-28 + 23716: 22,-27 + 23717: 22,-26 + 23728: 23,-29 + 23747: 26,-28 + 23754: 31,-53 + 23769: 0,-52 + 23770: 0,-50 + 23771: 0,-45 + 23772: 0,-43 + 23790: -5,-61 + 23806: 4,64 + 23809: 7,63 + 23810: 7,64 + 24007: -4,-60 - node: color: '#80C71FFF' id: BrickTileWhiteLineE decals: - 647: -28,81 - 648: -28,80 + 646: -28,81 + 647: -28,80 - node: color: '#8BC9DAFF' id: BrickTileWhiteLineE decals: - 3895: 27,66 - 3897: 24,66 - 15673: 97,-3 - 15678: 96,-3 - 17844: -46,22 - 17853: -51,21 - 17863: -46,19 - 17864: -46,20 - 17865: -46,21 - 17869: -54,33 - 17870: -54,34 - 17874: -55,38 - 17876: -55,35 - 17907: -47,37 - 17908: -47,38 - 17909: -47,39 - 17910: -47,40 - 17917: -45,51 - 17922: -46,52 - 17923: -46,53 - 17924: -46,54 - 17925: -46,55 - 17930: -46,57 - 17944: -46,50 - 17945: -46,49 - 17946: -46,48 - 17947: -46,47 - 17948: -46,47 - 17949: -46,46 - 17950: -46,43 - 17953: -51,41 - 17981: -58,46 - 17982: -58,47 - 17983: -58,48 - 17984: -58,49 - 17985: -58,50 - 17986: -58,51 - 17987: -58,52 - 17989: -58,53 - 18002: -61,57 - 18016: -61,48 - 18017: -61,50 - 18086: -53,22 - 18087: -53,23 - 18091: -56,24 - 18092: -56,23 - 18099: -53,20 + 3894: 27,66 + 3896: 24,66 + 15610: 97,-3 + 15615: 96,-3 + 17781: -46,22 + 17790: -51,21 + 17800: -46,19 + 17801: -46,20 + 17802: -46,21 + 17806: -54,33 + 17807: -54,34 + 17811: -55,38 + 17813: -55,35 + 17844: -47,37 + 17845: -47,38 + 17846: -47,39 + 17847: -47,40 + 17854: -45,51 + 17859: -46,52 + 17860: -46,53 + 17861: -46,54 + 17862: -46,55 + 17867: -46,57 + 17881: -46,50 + 17882: -46,49 + 17883: -46,48 + 17884: -46,47 + 17885: -46,47 + 17886: -46,46 + 17887: -46,43 + 17890: -51,41 + 17918: -58,46 + 17919: -58,47 + 17920: -58,48 + 17921: -58,49 + 17922: -58,50 + 17923: -58,51 + 17924: -58,52 + 17926: -58,53 + 17939: -61,57 + 17953: -61,48 + 17954: -61,50 + 18023: -53,22 + 18024: -53,23 + 18028: -56,24 + 18029: -56,23 + 18036: -53,20 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineE decals: - 9485: 5,-26 - 9486: 5,-26 - 9489: 5,-25 - 9490: 18,-25 - 9491: 18,-26 - 9492: 18,-29 - 9524: 15,-26 - 9525: 15,-25 - 9635: 28,-38 - 9636: 28,-39 - 9637: 28,-42 - 9638: 28,-43 - 9639: 28,-45 - 9640: 28,-46 - 9641: 28,-47 - 9642: 28,-48 - 9643: 28,-48 - 9644: 28,-49 - 9645: 28,-51 - 9646: 28,-52 - 9679: 19,-36 - 9680: 19,-35 - 9689: 15,-35 - 9694: 15,-31 - 9711: 9,-36 - 9712: 9,-34 - 9714: 15,-35 - 9752: 25,-39 - 9753: 25,-40 - 9754: 19,-39 - 9755: 19,-40 - 9761: 25,-44 - 9823: 10,-35 - 9824: 21,-35 - 9825: 30,-35 - 9826: 26,-40 - 9827: 26,-41 - 9828: 26,-43 - 9829: 26,-44 - 9830: 26,-42 - 9831: 26,-47 - 9832: 26,-48 - 9833: 26,-49 - 9834: 26,-50 - 9835: 26,-50 - 9836: 26,-51 - 9837: 16,-40 - 9838: 16,-41 - 9839: 16,-43 - 9840: 16,-43 - 9841: 16,-45 - 9887: 18,-46 - 9888: 18,-45 - 9889: 18,-43 - 9890: 18,-42 - 9891: 18,-41 - 9892: 18,-38 - 9897: 16,-44 - 9899: 15,-44 - 9902: 15,-39 - 9903: 15,-40 - 9946: 38,-41 - 9947: 38,-40 - 9948: 38,-39 - 9975: 29,-40 - 9995: 31,-40 - 10021: 23,-29 - 10023: 19,-28 - 10024: 19,-27 - 10063: 32,-26 - 10064: 32,-25 - 10078: 28,-41 - 10109: 24,-48 - 10110: 24,-47 - 10145: 19,-44 - 10150: 24,-45 - 10155: 34,-51 - 10156: 34,-51 - 10157: 34,-50 - 10158: 34,-48 - 10159: 34,-48 - 10160: 34,-48 - 10161: 34,-49 - 10162: 34,-49 - 10163: 34,-52 - 10172: 31,-51 - 10173: 31,-49 - 10174: 31,-49 - 10204: 31,-53 - 10205: 31,-52 - 10206: 31,-50 - 10207: 31,-48 - 10215: 29,-50 - 10311: 6,-44 - 10319: 10,-46 - 10320: 10,-45 - 10321: 10,-44 - 10335: 1,-44 - 10354: 13,-47 - 10356: 14,-46 - 10595: 49,-34 - 10596: 49,-35 - 10598: 42,-33 - 10599: 42,-33 - 15298: 16,-42 - 19349: 4,64 - 19356: 7,63 - 19357: 7,64 - 19723: 22,-28 - 19724: 22,-27 - 19725: 22,-26 - 19735: 26,-28 - 19745: 30,-31 + 9473: 5,-26 + 9474: 5,-26 + 9477: 5,-25 + 9478: 18,-25 + 9479: 18,-26 + 9480: 18,-29 + 9504: 15,-26 + 9505: 15,-25 + 9611: 28,-38 + 9612: 28,-39 + 9613: 28,-42 + 9614: 28,-43 + 9615: 28,-45 + 9616: 28,-46 + 9617: 28,-47 + 9618: 28,-48 + 9619: 28,-48 + 9620: 28,-49 + 9621: 28,-51 + 9622: 28,-52 + 9653: 19,-36 + 9654: 19,-35 + 9659: 15,-35 + 9663: 15,-31 + 9676: 9,-36 + 9677: 9,-34 + 9679: 15,-35 + 9715: 25,-39 + 9716: 25,-40 + 9717: 19,-39 + 9718: 19,-40 + 9724: 25,-44 + 9782: 10,-35 + 9783: 21,-35 + 9784: 30,-35 + 9785: 26,-40 + 9786: 26,-41 + 9787: 26,-43 + 9788: 26,-44 + 9789: 26,-42 + 9790: 26,-47 + 9791: 26,-48 + 9792: 26,-49 + 9793: 26,-50 + 9794: 26,-50 + 9795: 26,-51 + 9796: 16,-40 + 9797: 16,-41 + 9798: 16,-43 + 9799: 16,-43 + 9800: 16,-45 + 9834: 18,-46 + 9835: 18,-45 + 9836: 18,-43 + 9837: 18,-42 + 9838: 18,-41 + 9839: 18,-38 + 9844: 16,-44 + 9846: 15,-44 + 9849: 15,-39 + 9850: 15,-40 + 9893: 38,-41 + 9894: 38,-40 + 9895: 38,-39 + 9921: 29,-40 + 9941: 31,-40 + 9967: 23,-29 + 9969: 19,-28 + 9970: 19,-27 + 10009: 32,-26 + 10010: 32,-25 + 10024: 28,-41 + 10055: 24,-48 + 10056: 24,-47 + 10091: 19,-44 + 10096: 24,-45 + 10101: 34,-51 + 10102: 34,-51 + 10103: 34,-50 + 10104: 34,-48 + 10105: 34,-48 + 10106: 34,-48 + 10107: 34,-49 + 10108: 34,-49 + 10109: 34,-52 + 10118: 31,-51 + 10119: 31,-49 + 10120: 31,-49 + 10150: 31,-53 + 10151: 31,-52 + 10152: 31,-50 + 10153: 31,-48 + 10161: 29,-50 + 10257: 6,-44 + 10265: 10,-46 + 10266: 10,-45 + 10267: 10,-44 + 10281: 1,-44 + 10296: 13,-47 + 10298: 14,-46 + 10533: 49,-34 + 10534: 49,-35 + 10536: 42,-33 + 10537: 42,-33 + 15235: 16,-42 + 19286: 4,64 + 19293: 7,63 + 19294: 7,64 + 19659: 22,-28 + 19660: 22,-27 + 19661: 22,-26 + 19671: 26,-28 + 19681: 30,-31 - node: color: '#9FED58FF' id: BrickTileWhiteLineE decals: - 23909: -24,48 - 23910: -24,47 - 23911: -24,50 - 23912: -24,51 - 23921: -24,47 - 23922: -24,48 - 23923: -24,50 - 23924: -24,51 + 23828: -24,48 + 23829: -24,47 + 23830: -24,50 + 23831: -24,51 + 23840: -24,47 + 23841: -24,48 + 23842: -24,50 + 23843: -24,51 - node: color: '#A46106FF' id: BrickTileWhiteLineE decals: - 21950: 1,29 - 21953: 10,27 - 21961: 3,29 - 21962: 3,28 - 21963: 3,28 - 21980: 10,29 - 22020: 3,35 - 22053: 3,40 - 22056: 7,40 - 22057: 7,41 - 22058: 7,42 - 22059: 7,42 - 22060: 7,43 - 22097: 11,44 - 22102: 12,45 - 22112: 12,36 - 22113: 12,35 - 22173: 32,50 - 22174: 18,51 - 22175: 13,51 - 22209: 14,52 - 22210: 14,53 - 22293: 22,37 - 22294: 22,35 - 22307: 14,36 - 22333: 15,41 - 22334: 15,43 - 22335: 15,45 - 22336: 18,47 - 22337: 18,45 - 22338: 18,49 - 22339: 18,43 - 22340: 18,41 - 22384: 25,42 - 22385: 25,43 - 22386: 25,43 - 22387: 25,44 - 22388: 25,45 - 22389: 25,45 - 22390: 25,45 - 22391: 25,46 - 22392: 25,46 - 22393: 25,47 - 22421: 38,50 - 22424: 33,51 - 22425: 33,52 - 22430: 33,48 - 22431: 33,49 - 22435: 25,53 - 22451: 17,27 - 22452: 17,28 - 22453: 17,29 - 22454: 17,29 - 22455: 17,30 - 22456: 17,30 - 22457: 17,31 - 22458: 17,31 - 22459: 17,32 - 22464: 12,27 - 22468: 11,28 - 22482: 15,29 - 22483: 15,30 - 22484: 15,31 - 22504: 23,36 - 22519: 23,36 - 22529: 29,35 - 22530: 29,36 - 22531: 29,37 - 22539: 25,35 - 22540: 25,36 - 22541: 25,36 - 22542: 25,37 - 22554: 29,42 - 22555: 29,43 - 22556: 29,43 - 22557: 29,41 - 22563: 23,36 + 21882: 1,29 + 21885: 10,27 + 21893: 3,29 + 21894: 3,28 + 21895: 3,28 + 21912: 10,29 + 21952: 3,35 + 21985: 3,40 + 21988: 7,40 + 21989: 7,41 + 21990: 7,42 + 21991: 7,42 + 21992: 7,43 + 22029: 11,44 + 22034: 12,45 + 22044: 12,36 + 22045: 12,35 + 22105: 32,50 + 22106: 18,51 + 22107: 13,51 + 22141: 14,52 + 22142: 14,53 + 22225: 22,37 + 22226: 22,35 + 22239: 14,36 + 22265: 15,41 + 22266: 15,43 + 22267: 15,45 + 22268: 18,47 + 22269: 18,45 + 22270: 18,49 + 22271: 18,43 + 22272: 18,41 + 22316: 25,42 + 22317: 25,43 + 22318: 25,43 + 22319: 25,44 + 22320: 25,45 + 22321: 25,45 + 22322: 25,45 + 22323: 25,46 + 22324: 25,46 + 22325: 25,47 + 22353: 38,50 + 22356: 33,51 + 22357: 33,52 + 22362: 33,48 + 22363: 33,49 + 22367: 25,53 + 22383: 17,27 + 22384: 17,28 + 22385: 17,29 + 22386: 17,29 + 22387: 17,30 + 22388: 17,30 + 22389: 17,31 + 22390: 17,31 + 22391: 17,32 + 22396: 12,27 + 22400: 11,28 + 22414: 15,29 + 22415: 15,30 + 22416: 15,31 + 22436: 23,36 + 22451: 23,36 + 22461: 29,35 + 22462: 29,36 + 22463: 29,37 + 22471: 25,35 + 22472: 25,36 + 22473: 25,36 + 22474: 25,37 + 22486: 29,42 + 22487: 29,43 + 22488: 29,43 + 22489: 29,41 + 22495: 23,36 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineE decals: - 2873: -26,49 - 2874: -26,50 - 2887: -32,45 - 2910: -28,54 - 2913: -28,52 - 2916: -26,51 - 2923: -31,53 - 2924: -31,52 - 2925: -31,51 - 2926: -31,50 - 2927: -31,49 - 2928: -31,47 - 2929: -31,48 - 2930: -33,53 - 2931: -33,52 - 2932: -33,51 - 2933: -33,50 - 2934: -33,49 - 2935: -33,47 - 2936: -33,48 - 2955: -29,50 - 2956: -29,49 - 2957: -29,48 - 2958: -29,47 - 2993: -36,49 - 2997: -37,48 - 2998: -37,47 - 3001: -38,46 - 3002: -38,45 + 2872: -26,49 + 2873: -26,50 + 2886: -32,45 + 2909: -28,54 + 2912: -28,52 + 2915: -26,51 + 2922: -31,53 + 2923: -31,52 + 2924: -31,51 + 2925: -31,50 + 2926: -31,49 + 2927: -31,47 + 2928: -31,48 + 2929: -33,53 + 2930: -33,52 + 2931: -33,51 + 2932: -33,50 + 2933: -33,49 + 2934: -33,47 + 2935: -33,48 + 2954: -29,50 + 2955: -29,49 + 2956: -29,48 + 2957: -29,47 + 2992: -36,49 + 2996: -37,48 + 2997: -37,47 + 3000: -38,46 + 3001: -38,45 - node: color: '#B18BDAFF' id: BrickTileWhiteLineE decals: - 5077: 27,28 - 5078: 27,30 - 5141: 43,29 - 5147: 37,30 - 5167: 36,35 - 11405: -24,-30 - 11406: -24,-30 - 11407: -24,-29 - 11408: -24,-29 - 11409: -24,-28 - 11410: -24,-27 - 11411: -24,-27 - 11412: -24,-26 - 11446: -30,-35 - 11447: -30,-35 - 11448: -19,-35 - 11451: -15,-53 - 11452: -15,-53 - 11453: -15,-52 - 11454: -15,-52 - 11455: -15,-51 - 11456: -15,-51 - 11457: -15,-50 - 11458: -15,-50 - 11459: -15,-49 - 11460: -15,-49 - 11461: -15,-48 - 11462: -15,-48 - 11463: -15,-47 - 11464: -15,-47 - 11465: -15,-43 - 11466: -15,-42 - 11467: -15,-41 - 11468: -15,-41 - 11469: -15,-40 - 11470: -15,-39 - 11471: -15,-39 - 11534: -21,-34 - 11535: -21,-35 - 11536: -21,-36 - 11615: -13,-26 - 11616: -13,-25 - 11617: -13,-25 - 11631: -11,-35 - 11632: -11,-35 - 11633: -11,-34 - 11659: -4,-31 - 11660: -5,-33 - 11661: -5,-34 - 11776: -13,-38 - 11777: -13,-38 - 11778: -13,-39 - 11779: -13,-40 - 11780: -13,-42 - 11781: -13,-43 - 11782: -13,-44 - 11794: -16,-40 - 11860: -33,-45 - 11861: -33,-44 - 11862: -33,-44 - 11863: -33,-43 - 11864: -33,-42 - 11865: -33,-41 - 11892: -31,-31 - 11893: -31,-30 - 11894: -31,-29 - 11895: -31,-29 - 11896: -31,-28 - 11897: -31,-28 - 11898: -31,-27 - 11899: -31,-27 - 12059: -22,-25 - 12060: -22,-27 - 12061: -22,-28 - 12062: -22,-29 - 12063: -22,-30 - 12064: -22,-32 - 12164: -26,-41 - 12165: -26,-40 - 12166: -26,-39 - 12179: -30,-41 - 12180: -30,-40 - 12181: -30,-39 - 12192: -13,-46 - 12193: -13,-47 - 12194: -13,-48 - 12195: -13,-49 - 12196: -13,-51 - 12197: -13,-52 - 12198: -13,-53 - 12210: -18,-51 - 12230: -21,-58 - 12237: -13,-57 - 12238: -13,-58 - 12258: -4,-52 - 12259: -4,-51 - 12260: -4,-50 - 12261: -4,-49 - 12262: -4,-47 - 12271: -12,-50 - 12295: -21,-44 - 12296: -21,-43 - 12297: -21,-42 - 12298: -21,-41 - 12299: -21,-40 - 12603: -9,-34 - 12604: -9,-33 - 12605: -9,-32 - 20017: 36,37 + 5076: 27,28 + 5077: 27,30 + 5140: 43,29 + 5146: 37,30 + 5166: 36,35 + 11343: -24,-30 + 11344: -24,-30 + 11345: -24,-29 + 11346: -24,-29 + 11347: -24,-28 + 11348: -24,-27 + 11349: -24,-27 + 11350: -24,-26 + 11384: -30,-35 + 11385: -30,-35 + 11386: -19,-35 + 11389: -15,-53 + 11390: -15,-53 + 11391: -15,-52 + 11392: -15,-52 + 11393: -15,-51 + 11394: -15,-51 + 11395: -15,-50 + 11396: -15,-50 + 11397: -15,-49 + 11398: -15,-49 + 11399: -15,-48 + 11400: -15,-48 + 11401: -15,-47 + 11402: -15,-47 + 11403: -15,-43 + 11404: -15,-42 + 11405: -15,-41 + 11406: -15,-41 + 11407: -15,-40 + 11408: -15,-39 + 11409: -15,-39 + 11472: -21,-34 + 11473: -21,-35 + 11474: -21,-36 + 11553: -13,-26 + 11554: -13,-25 + 11555: -13,-25 + 11569: -11,-35 + 11570: -11,-35 + 11571: -11,-34 + 11597: -4,-31 + 11598: -5,-33 + 11599: -5,-34 + 11714: -13,-38 + 11715: -13,-38 + 11716: -13,-39 + 11717: -13,-40 + 11718: -13,-42 + 11719: -13,-43 + 11720: -13,-44 + 11732: -16,-40 + 11798: -33,-45 + 11799: -33,-44 + 11800: -33,-44 + 11801: -33,-43 + 11802: -33,-42 + 11803: -33,-41 + 11997: -22,-25 + 11998: -22,-27 + 11999: -22,-28 + 12000: -22,-29 + 12001: -22,-30 + 12002: -22,-32 + 12102: -26,-41 + 12103: -26,-40 + 12104: -26,-39 + 12117: -30,-41 + 12118: -30,-40 + 12119: -30,-39 + 12130: -13,-46 + 12131: -13,-47 + 12132: -13,-48 + 12133: -13,-49 + 12134: -13,-51 + 12135: -13,-52 + 12136: -13,-53 + 12148: -18,-51 + 12168: -21,-58 + 12175: -13,-57 + 12176: -13,-58 + 12196: -4,-52 + 12197: -4,-51 + 12198: -4,-50 + 12199: -4,-49 + 12200: -4,-47 + 12209: -12,-50 + 12233: -21,-44 + 12234: -21,-43 + 12235: -21,-42 + 12236: -21,-41 + 12237: -21,-40 + 12540: -9,-34 + 12541: -9,-33 + 12542: -9,-32 + 19953: 36,37 - node: color: '#B240B4FF' id: BrickTileWhiteLineE decals: - 664: -21,-57 + 663: -21,-57 - node: color: '#CEDA8BFF' id: BrickTileWhiteLineE decals: - 10807: 25,-56 - 10811: 28,-57 - 10825: 36,-61 - 10826: 36,-64 - 10827: 36,-66 - 10828: 36,-67 - 10829: 36,-68 - 10830: 36,-69 - 10865: 41,-63 - 10876: 42,-62 - 10878: 37,-62 - 10882: 33,-61 - 10895: 37,-70 - 10907: 39,-73 - 10908: 39,-74 - 10926: 33,-68 - 10952: 31,-68 - 10953: 28,-68 + 10745: 25,-56 - node: color: '#D381C9FF' id: BrickTileWhiteLineE decals: - 22616: -3,-48 - 22632: -4,-35 - 22662: -21,-36 - 22663: -21,-35 - 22664: -21,-34 - 22674: -13,-38 - 22675: -13,-39 - 22676: -13,-39 - 22677: -13,-39 - 22678: -13,-40 - 22679: -13,-42 - 22680: -13,-42 - 22681: -13,-43 - 22682: -13,-43 - 22683: -13,-44 - 22684: -13,-46 - 22685: -13,-46 - 22686: -13,-47 - 22687: -13,-48 - 22688: -13,-49 - 22689: -13,-51 - 22690: -13,-52 - 22691: -13,-52 - 22692: -13,-53 - 22693: -13,-53 - 22739: -18,-51 - 22791: -21,-40 - 22792: -21,-41 - 22793: -21,-42 - 22794: -21,-42 - 22795: -21,-43 - 22796: -21,-43 - 22797: -21,-44 - 22799: -21,-44 - 22823: -16,-40 - 22844: -22,-30 - 22845: -22,-29 - 22846: -22,-29 - 22847: -22,-28 - 22848: -22,-27 - 22849: -22,-27 - 22850: -22,-25 - 22851: -22,-32 - 22888: -24,-26 - 22889: -24,-27 - 22890: -24,-28 - 22891: -24,-28 - 22892: -24,-29 - 22893: -24,-29 - 22894: -24,-30 - 22895: -24,-30 - 22924: -30,-35 - 22925: -19,-35 - 22963: -11,-34 - 22964: -11,-35 - 22965: -5,-34 - 22966: -5,-33 - 22967: -4,-31 - 23014: -15,-39 - 23015: -15,-40 - 23016: -15,-40 - 23017: -15,-41 - 23018: -15,-41 - 23019: -15,-42 - 23020: -15,-43 - 23021: -15,-43 - 23022: -15,-43 - 23045: -4,-52 - 23046: -4,-51 - 23047: -4,-50 - 23048: -4,-50 - 23049: -4,-49 - 23050: -4,-47 - 23056: -12,-50 - 23066: -15,-53 - 23067: -15,-53 - 23068: -15,-51 - 23069: -15,-51 - 23070: -15,-52 - 23071: -15,-52 - 23072: -15,-51 - 23073: -15,-50 - 23074: -15,-49 - 23075: -15,-49 - 23076: -15,-48 - 23077: -15,-47 - 23078: -15,-47 - 23079: -15,-48 - 23109: -21,-58 - 23113: -13,-57 - 23114: -13,-58 + 22548: -3,-48 + 22564: -4,-35 + 22594: -21,-36 + 22595: -21,-35 + 22596: -21,-34 + 22606: -13,-38 + 22607: -13,-39 + 22608: -13,-39 + 22609: -13,-39 + 22610: -13,-40 + 22611: -13,-42 + 22612: -13,-42 + 22613: -13,-43 + 22614: -13,-43 + 22615: -13,-44 + 22616: -13,-46 + 22617: -13,-46 + 22618: -13,-47 + 22619: -13,-48 + 22620: -13,-49 + 22621: -13,-51 + 22622: -13,-52 + 22623: -13,-52 + 22624: -13,-53 + 22625: -13,-53 + 22671: -18,-51 + 22723: -21,-40 + 22724: -21,-41 + 22725: -21,-42 + 22726: -21,-42 + 22727: -21,-43 + 22728: -21,-43 + 22729: -21,-44 + 22731: -21,-44 + 22755: -16,-40 + 22776: -22,-30 + 22777: -22,-29 + 22778: -22,-29 + 22779: -22,-28 + 22780: -22,-27 + 22781: -22,-27 + 22782: -22,-25 + 22783: -22,-32 + 22820: -24,-26 + 22821: -24,-27 + 22822: -24,-28 + 22823: -24,-28 + 22824: -24,-29 + 22825: -24,-29 + 22826: -24,-30 + 22827: -24,-30 + 22856: -30,-35 + 22857: -19,-35 + 22895: -11,-34 + 22896: -11,-35 + 22897: -5,-34 + 22898: -5,-33 + 22899: -4,-31 + 22946: -15,-39 + 22947: -15,-40 + 22948: -15,-40 + 22949: -15,-41 + 22950: -15,-41 + 22951: -15,-42 + 22952: -15,-43 + 22953: -15,-43 + 22954: -15,-43 + 22977: -4,-52 + 22978: -4,-51 + 22979: -4,-50 + 22980: -4,-50 + 22981: -4,-49 + 22982: -4,-47 + 22988: -12,-50 + 22998: -15,-53 + 22999: -15,-53 + 23000: -15,-51 + 23001: -15,-51 + 23002: -15,-52 + 23003: -15,-52 + 23004: -15,-51 + 23005: -15,-50 + 23006: -15,-49 + 23007: -15,-49 + 23008: -15,-48 + 23009: -15,-47 + 23010: -15,-47 + 23011: -15,-48 + 23041: -21,-58 + 23045: -13,-57 + 23046: -13,-58 + 24374: -31,-27 + 24375: -31,-28 + 24376: -31,-29 + 24377: -31,-30 + 24378: -31,-31 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineE decals: - 7605: 64,-4 - 19216: 70,14 - 19217: 70,15 - 19231: 63,-5 - 19237: 66,-4 + 7604: 64,-4 + 19153: 70,14 + 19154: 70,15 + 19168: 63,-5 + 19174: 66,-4 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineE decals: - 3817: 12,68 - 3818: 12,69 - 3823: 9,68 + 3816: 12,68 + 3817: 12,69 + 3822: 9,68 - node: color: '#DAA58BFF' id: BrickTileWhiteLineE decals: - 4383: 1,29 - 4429: 3,29 - 4430: 3,28 - 4440: 11,28 - 4453: 10,27 - 4462: 17,31 - 4463: 17,30 - 4464: 17,29 - 4465: 17,28 - 4466: 17,27 - 4479: 12,27 - 4489: 15,31 - 4490: 15,30 - 4491: 15,29 - 4537: 7,43 + 4382: 1,29 + 4428: 3,29 + 4429: 3,28 + 4439: 11,28 + 4452: 10,27 + 4461: 17,31 + 4462: 17,30 + 4463: 17,29 + 4464: 17,28 + 4465: 17,27 + 4478: 12,27 + 4488: 15,31 + 4489: 15,30 + 4490: 15,29 + 4536: 7,43 + 4537: 7,42 4538: 7,42 - 4539: 7,42 - 4540: 7,41 - 4541: 7,40 - 4567: 11,44 - 4583: 12,36 - 4584: 12,35 - 4597: 22,35 - 4598: 22,37 - 4617: 12,43 - 4618: 12,45 - 4647: 27,27 - 4648: 27,28 - 4649: 27,29 - 4650: 27,30 - 4674: 19,28 - 4675: 19,29 - 4676: 19,30 - 4693: 20,29 - 4699: 24,29 - 4724: 23,36 - 4736: 29,35 - 4737: 29,36 - 4738: 29,37 - 4743: 25,36 - 4744: 25,37 - 4745: 25,35 - 4762: 14,36 - 4779: 29,41 - 4780: 29,42 - 4781: 29,43 - 4804: 3,35 - 4851: 32,50 - 4852: 38,50 - 4863: 33,49 - 4866: 33,51 - 4883: 25,47 - 4884: 25,46 + 4539: 7,41 + 4540: 7,40 + 4566: 11,44 + 4582: 12,36 + 4583: 12,35 + 4596: 22,35 + 4597: 22,37 + 4616: 12,43 + 4617: 12,45 + 4646: 27,27 + 4647: 27,28 + 4648: 27,29 + 4649: 27,30 + 4673: 19,28 + 4674: 19,29 + 4675: 19,30 + 4692: 20,29 + 4698: 24,29 + 4723: 23,36 + 4735: 29,35 + 4736: 29,36 + 4737: 29,37 + 4742: 25,36 + 4743: 25,37 + 4744: 25,35 + 4761: 14,36 + 4778: 29,41 + 4779: 29,42 + 4780: 29,43 + 4803: 3,35 + 4850: 32,50 + 4851: 38,50 + 4862: 33,49 + 4865: 33,51 + 4882: 25,47 + 4883: 25,46 + 4884: 25,45 4885: 25,45 - 4886: 25,45 + 4886: 25,44 4887: 25,44 - 4888: 25,44 - 4889: 25,43 - 4890: 25,42 - 4894: 25,53 - 4924: 13,51 - 4934: 14,53 - 4935: 14,52 - 4981: 18,51 - 4982: 18,49 - 4983: 18,47 - 4984: 18,45 - 4985: 15,45 - 4986: 15,43 - 4987: 15,41 - 4988: 18,41 - 4989: 18,43 - 5152: 37,30 - 5161: 36,36 - 11341: -11,-82 - 11342: -11,-81 - 11343: -11,-80 - 20014: 36,38 + 4888: 25,43 + 4889: 25,42 + 4893: 25,53 + 4923: 13,51 + 4933: 14,53 + 4934: 14,52 + 4980: 18,51 + 4981: 18,49 + 4982: 18,47 + 4983: 18,45 + 4984: 15,45 + 4985: 15,43 + 4986: 15,41 + 4987: 18,41 + 4988: 18,43 + 5151: 37,30 + 5160: 36,36 + 11279: -11,-82 + 11280: -11,-81 + 11281: -11,-80 + 19950: 36,38 - node: color: '#DABC8BFF' id: BrickTileWhiteLineE decals: - 4014: -37,53 - 9552: 8,-33 - 9553: 8,-32 - 9554: 8,-31 - 9567: 8,-35 - 9569: 2,-35 - 9583: 4,-32 - 9584: 4,-33 - 9585: 4,-34 + 4013: -37,53 + 9528: 8,-33 + 9529: 8,-32 + 9530: 8,-31 + 9543: 8,-35 + 9545: 2,-35 + 9559: 4,-32 + 9560: 4,-33 + 9561: 4,-34 - node: color: '#EFB341FF' id: BrickTileWhiteLineE decals: - 16862: -52,4 - 16863: -52,5 - 16864: -52,6 - 16884: -49,2 - 16886: -49,0 - 16909: -62,1 - 16951: -52,16 - 16961: -65,1 - 16962: -62,1 - 16964: -56,-7 - 16965: -56,-9 - 16969: -62,-7 - 16977: -56,-9 - 16979: -57,-8 - 17009: -52,-5 - 17012: -52,-11 - 17013: -52,-13 - 17014: -52,-13 - 17015: -52,-12 - 17016: -52,-14 - 17017: -52,-16 - 17018: -52,-17 - 17028: -62,-17 - 17029: -60,-17 - 17039: -55,-13 - 17040: -55,-14 - 17053: -51,-15 - 17075: -47,-14 - 17076: -47,-15 - 17077: -47,-16 - 17107: -51,-15 - 17157: -47,13 - 17160: -50,10 - 17172: -60,10 - 17180: -67,15 - 17215: -79,14 - 17290: -57,18 - 17326: -45,-7 - 17327: -45,-8 - 17328: -45,-9 - 17333: -50,-9 - 17334: -50,-8 - 17335: -50,-7 - 17340: -56,-7 - 17341: -56,-9 - 17381: -74,-8 - 17382: -74,-7 - 17383: -74,-6 - 17396: -75,-9 - 17401: -11,-80 - 17402: -11,-81 - 17403: -11,-82 - 17418: 5,92 - 17421: 10,90 - 17433: 7,89 - 17434: 7,88 - 17446: 11,85 - 17447: 11,86 - 17460: 9,80 - 17461: 9,81 - 17464: 12,81 - 17465: 12,80 - 17466: 12,79 - 17467: 12,77 - 17468: 12,76 - 17469: 12,75 - 17470: 12,74 - 17481: 9,75 - 17482: 9,76 - 17483: 9,80 - 17484: 9,81 - 17510: -62,9 - 17511: -62,8 - 17512: -62,7 - 17513: -62,6 - 17578: -60,10 - 17584: -66,-3 - 17585: -66,-2 - 17586: -66,-1 - 17587: -66,0 - 17618: -65,1 - 17619: -65,1 - 17621: -75,0 - 17623: -75,0 - 17653: -70,11 - 17654: -74,11 - 17662: -79,14 - 17666: -83,14 - 17703: -77,3 - 17704: -77,4 - 17705: -77,5 - 17706: -77,6 - 17707: -77,7 - 17720: -77,9 - 17721: -77,10 - 17722: -77,11 - 17736: -80,0 - 17745: -76,-2 - 17746: -76,-1 - 17750: -75,0 - 17790: -67,-11 - 17791: -67,-12 - 17808: -52,17 - 18152: -55,-2 - 18153: -55,-3 - 19896: -49,-2 + 16799: -52,4 + 16800: -52,5 + 16801: -52,6 + 16821: -49,2 + 16823: -49,0 + 16846: -62,1 + 16888: -52,16 + 16898: -65,1 + 16899: -62,1 + 16901: -56,-7 + 16902: -56,-9 + 16906: -62,-7 + 16914: -56,-9 + 16916: -57,-8 + 16946: -52,-5 + 16949: -52,-11 + 16950: -52,-13 + 16951: -52,-13 + 16952: -52,-12 + 16953: -52,-14 + 16954: -52,-16 + 16955: -52,-17 + 16965: -62,-17 + 16966: -60,-17 + 16976: -55,-13 + 16977: -55,-14 + 16990: -51,-15 + 17012: -47,-14 + 17013: -47,-15 + 17014: -47,-16 + 17044: -51,-15 + 17094: -47,13 + 17097: -50,10 + 17109: -60,10 + 17117: -67,15 + 17152: -79,14 + 17227: -57,18 + 17263: -45,-7 + 17264: -45,-8 + 17265: -45,-9 + 17270: -50,-9 + 17271: -50,-8 + 17272: -50,-7 + 17277: -56,-7 + 17278: -56,-9 + 17318: -74,-8 + 17319: -74,-7 + 17320: -74,-6 + 17333: -75,-9 + 17338: -11,-80 + 17339: -11,-81 + 17340: -11,-82 + 17355: 5,92 + 17358: 10,90 + 17370: 7,89 + 17371: 7,88 + 17383: 11,85 + 17384: 11,86 + 17397: 9,80 + 17398: 9,81 + 17401: 12,81 + 17402: 12,80 + 17403: 12,79 + 17404: 12,77 + 17405: 12,76 + 17406: 12,75 + 17407: 12,74 + 17418: 9,75 + 17419: 9,76 + 17420: 9,80 + 17421: 9,81 + 17447: -62,9 + 17448: -62,8 + 17449: -62,7 + 17450: -62,6 + 17515: -60,10 + 17521: -66,-3 + 17522: -66,-2 + 17523: -66,-1 + 17524: -66,0 + 17555: -65,1 + 17556: -65,1 + 17558: -75,0 + 17560: -75,0 + 17590: -70,11 + 17591: -74,11 + 17599: -79,14 + 17603: -83,14 + 17640: -77,3 + 17641: -77,4 + 17642: -77,5 + 17643: -77,6 + 17644: -77,7 + 17657: -77,9 + 17658: -77,10 + 17659: -77,11 + 17673: -80,0 + 17682: -76,-2 + 17683: -76,-1 + 17687: -75,0 + 17727: -67,-11 + 17728: -67,-12 + 17745: -52,17 + 18089: -55,-2 + 18090: -55,-3 + 19832: -49,-2 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 866: 75,-46 - 867: 75,-43 - 1183: 49,-16 - 1184: 49,-15 - 2049: -20,48 - 2050: -20,47 - 2051: -20,46 - 2052: -20,51 - 2053: -20,52 - 2054: -23,50 - 2055: -23,49 - 2056: -23,48 - 2082: -18,47 - 2083: -18,48 - 2084: -18,49 - 2085: -18,50 - 2086: -18,51 - 2109: -20,27 - 2110: -20,28 - 2111: -20,29 - 2112: -20,31 - 2113: -20,32 - 2114: -23,31 - 2115: -23,33 - 2116: -23,32 - 2117: -23,30 - 2118: -20,34 - 2119: -20,35 - 2120: -20,36 - 2263: -24,41 - 2366: -29,31 - 2701: -9,53 - 2772: -7,49 - 2773: -12,49 - 2806: -8,33 - 2815: -5,33 - 3017: -14,57 - 3022: -20,61 - 3023: -20,62 - 3024: -20,63 - 3087: -14,68 - 3088: -21,68 - 3089: -21,57 - 3090: -7,57 - 3091: -6,61 - 3092: -6,62 - 3093: -6,63 - 3094: -6,64 - 3110: -7,68 - 3230: -13,75 - 3231: -13,74 - 3232: -13,73 - 3233: -13,72 - 3245: -13,79 - 3246: -13,80 - 3247: -13,81 - 3248: -13,82 - 3249: -13,92 - 3250: -13,93 - 3251: -13,94 - 3252: -13,95 - 3256: -13,88 - 3257: -13,87 + 865: 75,-46 + 866: 75,-43 + 1182: 49,-16 + 1183: 49,-15 + 2048: -20,48 + 2049: -20,47 + 2050: -20,46 + 2051: -20,51 + 2052: -20,52 + 2053: -23,50 + 2054: -23,49 + 2055: -23,48 + 2081: -18,47 + 2082: -18,48 + 2083: -18,49 + 2084: -18,50 + 2085: -18,51 + 2108: -20,27 + 2109: -20,28 + 2110: -20,29 + 2111: -20,31 + 2112: -20,32 + 2113: -23,31 + 2114: -23,33 + 2115: -23,32 + 2116: -23,30 + 2117: -20,34 + 2118: -20,35 + 2119: -20,36 + 2262: -24,41 + 2365: -29,31 + 2700: -9,53 + 2771: -7,49 + 2772: -12,49 + 2805: -8,33 + 2814: -5,33 + 3016: -14,57 + 3021: -20,61 + 3022: -20,62 + 3023: -20,63 + 3086: -14,68 + 3087: -21,68 + 3088: -21,57 + 3089: -7,57 + 3090: -6,61 + 3091: -6,62 + 3092: -6,63 + 3093: -6,64 + 3109: -7,68 + 3229: -13,75 + 3230: -13,74 + 3231: -13,73 + 3232: -13,72 + 3244: -13,79 + 3245: -13,80 + 3246: -13,81 + 3247: -13,82 + 3248: -13,92 + 3249: -13,93 + 3250: -13,94 + 3251: -13,95 + 3255: -13,88 + 3256: -13,87 + 3257: -13,86 3258: -13,86 - 3259: -13,86 - 3260: -13,85 - 3266: -31,79 - 3267: -31,80 - 3268: -31,81 - 3269: -31,82 - 3270: -31,85 - 3271: -31,86 - 3272: -31,88 - 3273: -31,92 - 3274: -31,93 - 3275: -31,94 - 3276: -31,95 - 3277: -31,75 - 3278: -31,74 - 3279: -31,73 - 3280: -31,72 - 3311: -32,68 - 3524: -1,68 - 3525: 4,68 - 3613: 5,72 - 3614: 5,73 - 3615: 5,74 - 3616: 5,75 - 3675: 5,82 - 3676: 5,81 - 3677: 5,80 - 3678: 5,79 - 3782: -1,57 - 3829: 16,70 - 3830: 16,71 - 3839: 23,70 + 3259: -13,85 + 3265: -31,79 + 3266: -31,80 + 3267: -31,81 + 3268: -31,82 + 3269: -31,85 + 3270: -31,86 + 3271: -31,88 + 3272: -31,92 + 3273: -31,93 + 3274: -31,94 + 3275: -31,95 + 3276: -31,75 + 3277: -31,74 + 3278: -31,73 + 3279: -31,72 + 3310: -32,68 + 3523: -1,68 + 3524: 4,68 + 3612: 5,72 + 3613: 5,73 + 3614: 5,74 + 3615: 5,75 + 3674: 5,82 + 3675: 5,81 + 3676: 5,80 + 3677: 5,79 + 3781: -1,57 + 3828: 16,70 + 3829: 16,71 + 3838: 23,70 + 4150: -23,22 4151: -23,22 - 4152: -23,22 - 5169: 16,16 - 5170: 16,17 - 5171: 16,18 - 5172: 16,19 - 5182: 16,9 - 5183: 16,10 - 5184: 16,11 - 5185: 16,12 - 5190: 16,2 - 5191: 16,3 - 5192: 16,5 - 5193: 16,4 - 5194: 16,-2 - 5195: 16,-3 - 5196: 16,-4 - 5197: 16,-5 - 5221: -27,68 - 5503: -39,5 - 5504: -34,5 - 5505: -28,5 - 5582: -35,26 - 6217: -20,-17 - 6218: -20,-16 - 6219: -20,-15 - 6220: -20,-14 - 6221: -20,-13 - 6222: -20,-12 - 6317: 16,-17 - 6318: 16,-15 - 6319: 16,-14 - 6320: 16,-12 - 6321: 16,-13 - 6322: 16,-16 - 6342: -3,-16 - 6658: -32,-9 - 6659: -32,-8 - 6660: -32,-7 - 6661: -32,-6 - 6662: -32,-5 - 6663: -32,-4 - 6677: -32,-1 + 5168: 16,16 + 5169: 16,17 + 5170: 16,18 + 5171: 16,19 + 5181: 16,9 + 5182: 16,10 + 5183: 16,11 + 5184: 16,12 + 5189: 16,2 + 5190: 16,3 + 5191: 16,5 + 5192: 16,4 + 5193: 16,-2 + 5194: 16,-3 + 5195: 16,-4 + 5196: 16,-5 + 5220: -27,68 + 5502: -39,5 + 5503: -34,5 + 5504: -28,5 + 5581: -35,26 + 6216: -20,-17 + 6217: -20,-16 + 6218: -20,-15 + 6219: -20,-14 + 6220: -20,-13 + 6221: -20,-12 + 6316: 16,-17 + 6317: 16,-15 + 6318: 16,-14 + 6319: 16,-12 + 6320: 16,-13 + 6321: 16,-16 + 6341: -3,-16 + 6657: -32,-9 + 6658: -32,-8 + 6659: -32,-7 + 6660: -32,-6 + 6661: -32,-5 + 6662: -32,-4 + 6676: -32,-1 + 6677: -32,0 6678: -32,0 - 6679: -32,0 - 6680: -32,2 - 6709: -28,-12 - 6710: -28,-13 - 6711: -28,-14 - 6712: -28,-15 - 6713: -28,-16 - 6739: -35,-15 - 6740: -35,-14 - 6741: -35,-13 - 6742: -35,-12 - 7009: -16,-20 - 7010: -9,-20 - 7011: 2,-20 - 7012: 9,-20 - 7126: 20,5 - 7191: 27,5 - 8010: 56,-15 - 8011: 56,-14 - 8012: 56,-13 - 8017: 56,-28 - 8018: 56,-27 - 8019: 56,-26 - 8029: 58,-27 - 8030: 60,-27 - 8031: 60,-14 - 8032: 58,-14 - 8238: 27,-11 - 8244: 20,-11 - 8245: 33,-13 + 6679: -32,2 + 6708: -28,-12 + 6709: -28,-13 + 6710: -28,-14 + 6711: -28,-15 + 6712: -28,-16 + 6738: -35,-15 + 6739: -35,-14 + 6740: -35,-13 + 6741: -35,-12 + 7008: -16,-20 + 7009: -9,-20 + 7010: 2,-20 + 7011: 9,-20 + 7125: 20,5 + 7190: 27,5 + 8009: 56,-15 + 8010: 56,-14 + 8011: 56,-13 + 8016: 56,-28 + 8017: 56,-27 + 8018: 56,-26 + 8028: 58,-27 + 8029: 60,-27 + 8030: 60,-14 + 8031: 58,-14 + 8237: 27,-11 + 8243: 20,-11 + 8244: 33,-13 + 8245: 33,-12 8246: 33,-12 - 8247: 33,-12 - 8248: 33,-11 - 8249: 33,-10 + 8247: 33,-11 + 8248: 33,-10 + 8435: 48,-20 8436: 48,-20 - 8437: 48,-20 - 8687: -9,-76 - 8688: -9,-80 - 8689: -6,-78 - 8744: 5,-25 - 8745: 5,-26 + 8686: -9,-76 + 8687: -9,-80 + 8688: -6,-78 + 8743: 5,-25 + 8744: 5,-26 + 8767: -13,-25 8768: -13,-25 - 8769: -13,-25 + 8769: -13,-26 8770: -13,-26 - 8771: -13,-26 - 8822: -2,-27 + 8821: -2,-27 + 8822: -2,-26 8823: -2,-26 - 8824: -2,-26 - 8825: -2,-24 - 8826: -2,-25 - 8865: -2,-31 - 8866: -2,-32 - 8867: -2,-33 - 8868: -2,-34 - 8869: -2,-35 - 8949: -4,-24 - 9067: 1,-26 - 9068: 1,-25 - 9080: 14,-24 - 9365: -2,-42 - 9366: -2,-41 - 9367: -2,-41 - 9368: -2,-40 - 9369: -2,-40 - 9370: -2,-39 - 9371: -2,-45 - 9372: -2,-45 - 9373: -2,-46 - 9374: -2,-47 - 9375: -2,-49 - 9376: -2,-50 - 9377: -2,-44 - 9378: -2,-44 - 9379: -2,-52 - 9380: -2,-53 - 9381: -2,-54 - 9382: -2,-54 - 9383: -2,-54 - 9384: -2,-55 - 9410: -2,-61 - 9411: -2,-60 - 9412: -2,-59 - 9446: -7,-71 - 9447: -7,-70 - 9448: -7,-69 - 9449: -4,-73 - 9450: -4,-72 - 9458: 74,-50 - 9459: 74,-51 - 10655: 71,-50 - 10656: 71,-50 - 10663: 75,-44 - 10685: 68,-41 - 12719: -43,22 - 14851: -20,50 - 14946: -17,23 - 14947: -7,23 - 14948: 0,23 - 14949: 10,23 - 15073: -31,87 - 15134: -20,64 - 15201: 43,-20 - 15318: -3,-71 - 15322: -3,-70 - 15407: -43,9 - 15408: -43,10 - 15409: -43,11 - 15410: -43,14 - 15411: -43,15 - 15412: -43,15 - 15413: -43,16 - 15414: -43,17 - 15415: -43,20 - 15416: -43,21 - 15445: -9,-79 - 15446: -9,-78 - 15447: -9,-77 - 15575: 95,-4 - 18766: 3,-9 - 18767: 9,-9 - 18768: -4,-9 - 18769: -10,-9 - 18770: -16,-9 - 19687: 34,-11 - 19688: 34,-10 - 19689: 34,-13 - 19690: 34,-14 - 19692: 33,-14 - 20200: -20,9 - 20201: -20,10 - 20202: -20,11 - 20203: -20,12 - 20204: -20,16 - 20205: -20,17 - 20206: -20,18 - 20207: -20,19 - 20208: -20,5 - 20209: -20,4 - 20210: -20,4 - 20211: -20,2 - 20212: -20,-2 - 20213: -20,-3 - 20214: -20,-4 - 20215: -20,-5 - 20252: -20,3 - 22614: -2,-48 + 8824: -2,-24 + 8825: -2,-25 + 8864: -2,-31 + 8865: -2,-32 + 8866: -2,-33 + 8867: -2,-34 + 8868: -2,-35 + 8947: -4,-24 + 9060: 1,-26 + 9061: 1,-25 + 9071: 14,-24 + 9354: -2,-42 + 9355: -2,-41 + 9356: -2,-41 + 9357: -2,-40 + 9358: -2,-40 + 9359: -2,-39 + 9360: -2,-45 + 9361: -2,-45 + 9362: -2,-46 + 9363: -2,-47 + 9364: -2,-49 + 9365: -2,-50 + 9366: -2,-44 + 9367: -2,-44 + 9368: -2,-52 + 9369: -2,-53 + 9370: -2,-54 + 9371: -2,-54 + 9372: -2,-54 + 9373: -2,-55 + 9398: -2,-61 + 9399: -2,-60 + 9400: -2,-59 + 9434: -7,-71 + 9435: -7,-70 + 9436: -7,-69 + 9437: -4,-73 + 9438: -4,-72 + 9446: 74,-50 + 9447: 74,-51 + 10593: 71,-50 + 10594: 71,-50 + 10601: 75,-44 + 10623: 68,-41 + 12656: -43,22 + 14788: -20,50 + 14883: -17,23 + 14884: -7,23 + 14885: 0,23 + 14886: 10,23 + 15010: -31,87 + 15071: -20,64 + 15138: 43,-20 + 15255: -3,-71 + 15259: -3,-70 + 15344: -43,9 + 15345: -43,10 + 15346: -43,11 + 15347: -43,14 + 15348: -43,15 + 15349: -43,15 + 15350: -43,16 + 15351: -43,17 + 15352: -43,20 + 15353: -43,21 + 15382: -9,-79 + 15383: -9,-78 + 15384: -9,-77 + 15512: 95,-4 + 18703: 3,-9 + 18704: 9,-9 + 18705: -4,-9 + 18706: -10,-9 + 18707: -16,-9 + 19623: 34,-11 + 19624: 34,-10 + 19625: 34,-13 + 19626: 34,-14 + 19628: 33,-14 + 20136: -20,9 + 20137: -20,10 + 20138: -20,11 + 20139: -20,12 + 20140: -20,16 + 20141: -20,17 + 20142: -20,18 + 20143: -20,19 + 20144: -20,5 + 20145: -20,4 + 20146: -20,4 + 20147: -20,2 + 20148: -20,-2 + 20149: -20,-3 + 20150: -20,-4 + 20151: -20,-5 + 20188: -20,3 + 22546: -2,-48 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineE decals: - 4081: -20,16 - 4082: -20,17 - 4083: -20,18 - 4084: -20,19 - 4085: -20,12 - 4086: -20,11 - 4087: -20,10 - 4088: -20,9 + 4080: -20,16 + 4081: -20,17 + 4082: -20,18 + 4083: -20,19 + 4084: -20,12 + 4085: -20,11 + 4086: -20,10 + 4087: -20,9 - node: color: '#334E6DFF' id: BrickTileWhiteLineN decals: - 22589: 9,-8 - 22590: 7,-8 - 22591: 13,-8 - 22592: 12,-8 - 22602: -11,-8 - 22603: -9,-8 + 22521: 9,-8 + 22522: 7,-8 + 22523: 13,-8 + 22524: 12,-8 + 22534: -11,-8 + 22535: -9,-8 - node: color: '#3EB388FF' id: BrickTileWhiteLineN decals: - 21633: -56,37 - 21644: -55,31 - 21667: -49,23 - 21668: -48,23 - 21669: -47,23 - 21670: -47,23 - 21671: -46,23 - 21677: -54,19 - 21678: -53,19 - 21689: -54,19 - 21690: -53,19 - 21691: -55,24 - 21692: -54,24 - 21697: -52,21 - 21729: -49,42 - 21730: -48,43 - 21742: -48,43 - 21743: -54,43 - 21744: -56,43 - 21748: -59,55 - 21786: -46,56 - 21802: -45,45 - 21803: -57,45 - 21804: -56,45 - 21805: -55,45 - 21806: -54,45 - 21807: -54,45 - 21808: -52,45 - 21809: -52,45 - 21810: -51,45 - 21811: -50,45 - 21812: -49,45 - 21813: -48,45 - 21814: -53,45 - 21833: -46,56 - 21834: -44,51 - 21859: -59,55 + 21565: -56,37 + 21576: -55,31 + 21599: -49,23 + 21600: -48,23 + 21601: -47,23 + 21602: -47,23 + 21603: -46,23 + 21609: -54,19 + 21610: -53,19 + 21621: -54,19 + 21622: -53,19 + 21623: -55,24 + 21624: -54,24 + 21629: -52,21 + 21661: -49,42 + 21662: -48,43 + 21674: -48,43 + 21675: -54,43 + 21676: -56,43 + 21680: -59,55 + 21718: -46,56 + 21734: -45,45 + 21735: -57,45 + 21736: -56,45 + 21737: -55,45 + 21738: -54,45 + 21739: -54,45 + 21740: -52,45 + 21741: -52,45 + 21742: -51,45 + 21743: -50,45 + 21744: -49,45 + 21745: -48,45 + 21746: -53,45 + 21765: -46,56 + 21766: -44,51 + 21791: -59,55 + - node: + color: '#439909FF' + id: BrickTileWhiteLineN + decals: + 24634: 27,-59 + 24656: 30,-61 + 24657: 31,-61 + 24658: 32,-61 + 24678: 43,-62 + 24679: 44,-62 + 24694: 35,-60 + 24706: 39,-60 + 24707: 40,-60 + 24740: 31,-66 + 24741: 30,-66 + 24742: 29,-66 + 24743: 28,-66 + 24744: 27,-66 + 24745: 27,-66 + 24746: 26,-66 + 24752: 38,-70 + 24753: 39,-70 + 24754: 41,-70 + 24761: 39,-72 + 24762: 41,-72 - node: color: '#52B4E9FF' id: BrickTileWhiteLineN decals: - 23157: 17,-24 - 23190: 16,-37 - 23191: 17,-37 - 23192: 18,-37 - 23205: 17,-35 - 23221: 10,-34 - 23222: 11,-34 - 23223: 13,-34 - 23238: 11,-36 - 23239: 12,-36 - 23240: 13,-36 - 23271: 20,-34 - 23272: 22,-34 - 23273: 22,-34 - 23274: 23,-34 - 23275: 24,-34 - 23276: 25,-34 - 23277: 26,-34 - 23278: 26,-34 - 23279: 26,-34 - 23280: 27,-34 - 23281: 27,-34 - 23282: 28,-34 - 23283: 30,-34 - 23284: 30,-34 - 23285: 31,-34 - 23286: 33,-34 - 23287: 33,-34 - 23288: 34,-34 - 23289: 34,-34 - 23290: 34,-34 - 23292: 32,-34 - 23293: 34,-34 - 23294: 34,-34 - 23295: 35,-34 - 23296: 35,-34 - 23297: 37,-34 - 23298: 38,-34 - 23393: 9,-42 - 23396: 4,-48 - 23465: 37,-43 - 23466: 31,-38 - 23467: 31,-38 - 23468: 32,-38 - 23469: 33,-38 - 23470: 33,-38 - 23471: 34,-37 - 23473: 36,-38 - 23474: 36,-38 - 23476: 35,-38 - 23477: 36,-38 - 23478: 36,-38 - 23479: 37,-38 - 23480: 37,-38 - 23481: 37,-38 - 23482: 37,-38 - 23509: 32,-41 - 23510: 32,-41 - 23511: 34,-41 - 23512: 35,-41 - 23513: 35,-41 - 23514: 33,-41 - 23515: 36,-41 - 23527: 21,-43 - 23528: 22,-43 - 23529: 22,-43 - 23530: 23,-43 - 23604: 3,-43 - 23605: 5,-43 - 23610: 7,-45 - 23637: 9,-38 - 23638: 10,-38 - 23639: 11,-38 - 23642: 12,-38 - 23643: 13,-38 - 23656: 13,-43 - 23670: 17,-46 - 23697: 21,-38 - 23698: 22,-38 - 23699: 23,-38 - 23704: 27,-45 - 23712: 22,-36 - 23713: 23,-36 - 23714: 23,-36 - 23715: 24,-36 - 23716: 25,-36 - 23717: 26,-36 - 23718: 26,-36 - 23719: 27,-36 - 23720: 27,-36 - 23721: 31,-36 - 23722: 31,-36 - 23723: 32,-36 - 23724: 33,-36 - 23725: 34,-36 - 23726: 34,-36 - 23727: 35,-36 - 23728: 35,-36 - 23729: 36,-36 - 23730: 36,-36 - 23731: 34,-38 - 23732: 27,-52 - 23736: 27,-54 - 23759: 29,-28 - 23798: 21,-25 - 23819: 27,-29 - 23820: 28,-29 - 23821: 30,-29 - 23822: 31,-29 - 23836: 31,-54 - 23872: -6,-58 - 23884: 6,66 + 23086: 17,-24 + 23119: 16,-37 + 23120: 17,-37 + 23121: 18,-37 + 23134: 17,-35 + 23149: 10,-34 + 23150: 11,-34 + 23151: 13,-34 + 23166: 11,-36 + 23167: 12,-36 + 23168: 13,-36 + 23199: 20,-34 + 23200: 22,-34 + 23201: 22,-34 + 23202: 23,-34 + 23203: 24,-34 + 23204: 25,-34 + 23205: 26,-34 + 23206: 26,-34 + 23207: 26,-34 + 23208: 27,-34 + 23209: 27,-34 + 23210: 28,-34 + 23211: 30,-34 + 23212: 30,-34 + 23213: 31,-34 + 23214: 33,-34 + 23215: 33,-34 + 23216: 34,-34 + 23217: 34,-34 + 23218: 34,-34 + 23219: 32,-34 + 23220: 34,-34 + 23221: 34,-34 + 23222: 35,-34 + 23223: 35,-34 + 23224: 37,-34 + 23225: 38,-34 + 23320: 9,-42 + 23323: 4,-48 + 23392: 37,-43 + 23393: 31,-38 + 23394: 31,-38 + 23395: 32,-38 + 23396: 33,-38 + 23397: 33,-38 + 23398: 34,-37 + 23399: 36,-38 + 23400: 36,-38 + 23401: 35,-38 + 23402: 36,-38 + 23403: 36,-38 + 23404: 37,-38 + 23405: 37,-38 + 23406: 37,-38 + 23407: 37,-38 + 23434: 32,-41 + 23435: 32,-41 + 23436: 34,-41 + 23437: 35,-41 + 23438: 35,-41 + 23439: 33,-41 + 23440: 36,-41 + 23452: 21,-43 + 23453: 22,-43 + 23454: 22,-43 + 23455: 23,-43 + 23529: 3,-43 + 23530: 5,-43 + 23535: 7,-45 + 23561: 9,-38 + 23562: 10,-38 + 23563: 11,-38 + 23564: 12,-38 + 23565: 13,-38 + 23577: 13,-43 + 23590: 17,-46 + 23617: 21,-38 + 23618: 22,-38 + 23619: 23,-38 + 23624: 27,-45 + 23632: 22,-36 + 23633: 23,-36 + 23634: 23,-36 + 23635: 24,-36 + 23636: 25,-36 + 23637: 26,-36 + 23638: 26,-36 + 23639: 27,-36 + 23640: 27,-36 + 23641: 31,-36 + 23642: 31,-36 + 23643: 32,-36 + 23644: 33,-36 + 23645: 34,-36 + 23646: 34,-36 + 23647: 35,-36 + 23648: 35,-36 + 23649: 36,-36 + 23650: 36,-36 + 23651: 34,-38 + 23652: 27,-52 + 23656: 27,-54 + 23679: 29,-28 + 23718: 21,-25 + 23739: 27,-29 + 23740: 28,-29 + 23741: 30,-29 + 23742: 31,-29 + 23756: 31,-54 + 23791: -6,-58 + 23803: 6,66 - node: color: '#52E5FFFF' id: BrickTileWhiteLineN decals: - 546: -10,70 + 545: -10,70 - node: color: '#8BC9DAFF' id: BrickTileWhiteLineN decals: - 17846: -46,23 - 17847: -47,23 - 17848: -47,23 - 17849: -48,23 - 17850: -49,23 - 17882: -56,37 - 17886: -55,31 - 17916: -44,51 - 17927: -46,56 - 17954: -48,43 - 17957: -49,42 - 17966: -45,45 - 17970: -48,45 - 17971: -49,45 - 17972: -49,45 - 17973: -50,45 - 17974: -51,45 - 17975: -52,45 - 17976: -53,45 - 17977: -54,45 - 17978: -55,45 - 17979: -57,45 - 17980: -56,45 - 18014: -59,55 - 18035: -56,43 - 18036: -54,43 - 18089: -55,24 - 18090: -54,24 - 18097: -54,19 - 18098: -53,19 - 18101: -52,21 + 17783: -46,23 + 17784: -47,23 + 17785: -47,23 + 17786: -48,23 + 17787: -49,23 + 17819: -56,37 + 17823: -55,31 + 17853: -44,51 + 17864: -46,56 + 17891: -48,43 + 17894: -49,42 + 17903: -45,45 + 17907: -48,45 + 17908: -49,45 + 17909: -49,45 + 17910: -50,45 + 17911: -51,45 + 17912: -52,45 + 17913: -53,45 + 17914: -54,45 + 17915: -55,45 + 17916: -57,45 + 17917: -56,45 + 17951: -59,55 + 17972: -56,43 + 17973: -54,43 + 18026: -55,24 + 18027: -54,24 + 18034: -54,19 + 18035: -53,19 + 18038: -52,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineN decals: - 9474: 6,-27 - 9475: 7,-27 - 9476: 8,-27 - 9477: 9,-27 - 9478: 10,-27 - 9504: 20,-34 - 9505: 22,-34 - 9506: 23,-34 - 9507: 24,-34 - 9508: 25,-34 - 9509: 26,-34 - 9510: 27,-34 - 9511: 28,-34 - 9512: 30,-34 - 9513: 31,-34 - 9515: 33,-34 - 9516: 34,-34 - 9517: 35,-34 - 9518: 37,-34 - 9528: 17,-24 - 9682: 16,-37 - 9683: 17,-37 - 9684: 18,-37 - 9705: 13,-34 - 9706: 11,-34 - 9707: 10,-34 - 9744: 26,-37 - 9745: 27,-37 - 9746: 28,-37 - 9747: 17,-48 - 9748: 27,-54 - 9783: 22,-36 - 9784: 23,-36 - 9785: 24,-36 - 9786: 25,-36 - 9787: 26,-36 - 9788: 27,-36 - 9789: 31,-36 - 9790: 32,-36 - 9791: 33,-36 - 9792: 34,-36 - 9793: 34,-36 - 9794: 35,-36 - 9795: 36,-36 - 9796: 27,-45 - 9797: 27,-52 - 9798: 17,-46 - 9800: 11,-36 - 9801: 12,-36 - 9802: 13,-36 - 9916: 21,-38 - 9917: 22,-38 - 9918: 23,-38 - 9967: 31,-38 - 9968: 32,-38 - 9969: 33,-38 - 9970: 33,-38 - 9971: 34,-38 - 9973: 36,-38 - 9974: 37,-38 - 9976: 37,-43 - 9990: 32,-41 - 9991: 33,-41 - 9992: 34,-41 - 9993: 35,-41 - 9994: 36,-41 - 10067: 29,-28 - 10083: 9,-38 - 10084: 10,-38 - 10085: 11,-38 - 10086: 12,-38 - 10087: 13,-38 - 10100: 20,-46 - 10101: 21,-46 - 10102: 22,-46 - 10103: 23,-46 - 10104: 24,-46 - 10115: 22,-50 - 10138: 21,-43 - 10139: 22,-43 - 10140: 23,-43 - 10201: 31,-47 - 10218: 31,-54 - 10308: 3,-43 - 10309: 5,-43 - 10312: 7,-45 - 10329: 9,-42 - 10345: 4,-48 - 10361: 13,-43 - 10586: 44,-31 - 10587: 47,-31 - 10588: 46,-31 - 10589: 48,-31 - 10590: 48,-31 - 19386: -6,-58 - 19736: 27,-29 - 19737: 28,-29 - 19738: 30,-29 - 19739: 31,-29 + 9462: 6,-27 + 9463: 7,-27 + 9464: 8,-27 + 9465: 9,-27 + 9466: 10,-27 + 9485: 20,-34 + 9486: 22,-34 + 9487: 23,-34 + 9488: 24,-34 + 9489: 25,-34 + 9490: 26,-34 + 9491: 27,-34 + 9492: 28,-34 + 9493: 30,-34 + 9494: 31,-34 + 9495: 33,-34 + 9496: 34,-34 + 9497: 35,-34 + 9498: 37,-34 + 9508: 17,-24 + 9655: 16,-37 + 9656: 17,-37 + 9657: 18,-37 + 9670: 13,-34 + 9671: 11,-34 + 9672: 10,-34 + 9707: 26,-37 + 9708: 27,-37 + 9709: 28,-37 + 9710: 17,-48 + 9711: 27,-54 + 9746: 22,-36 + 9747: 23,-36 + 9748: 24,-36 + 9749: 25,-36 + 9750: 26,-36 + 9751: 27,-36 + 9752: 31,-36 + 9753: 32,-36 + 9754: 33,-36 + 9755: 34,-36 + 9756: 34,-36 + 9757: 35,-36 + 9758: 36,-36 + 9759: 27,-45 + 9760: 27,-52 + 9761: 17,-46 + 9762: 11,-36 + 9763: 12,-36 + 9764: 13,-36 + 9863: 21,-38 + 9864: 22,-38 + 9865: 23,-38 + 9914: 31,-38 + 9915: 32,-38 + 9916: 33,-38 + 9917: 33,-38 + 9918: 34,-38 + 9919: 36,-38 + 9920: 37,-38 + 9922: 37,-43 + 9936: 32,-41 + 9937: 33,-41 + 9938: 34,-41 + 9939: 35,-41 + 9940: 36,-41 + 10013: 29,-28 + 10029: 9,-38 + 10030: 10,-38 + 10031: 11,-38 + 10032: 12,-38 + 10033: 13,-38 + 10046: 20,-46 + 10047: 21,-46 + 10048: 22,-46 + 10049: 23,-46 + 10050: 24,-46 + 10061: 22,-50 + 10084: 21,-43 + 10085: 22,-43 + 10086: 23,-43 + 10147: 31,-47 + 10164: 31,-54 + 10254: 3,-43 + 10255: 5,-43 + 10258: 7,-45 + 10275: 9,-42 + 10288: 4,-48 + 10302: 13,-43 + 10524: 44,-31 + 10525: 47,-31 + 10526: 46,-31 + 10527: 48,-31 + 10528: 48,-31 + 19322: -6,-58 + 19672: 27,-29 + 19673: 28,-29 + 19674: 30,-29 + 19675: 31,-29 - node: color: '#A46106FF' id: BrickTileWhiteLineN decals: - 21900: 3,24 - 21901: 9,24 - 21902: 13,24 - 21903: 17,24 - 21934: 4,25 - 21935: 5,25 - 21936: 7,25 - 21937: 8,25 - 21938: 5,31 - 21939: 6,31 - 21944: 3,31 - 21964: 4,27 - 21965: 5,27 - 21966: 6,27 - 21967: 6,27 - 21968: 7,27 - 21969: 8,27 - 22003: 5,34 - 22004: 4,34 - 22005: 5,34 - 22006: 6,34 - 22007: 7,34 - 22008: 8,34 - 22009: 9,34 - 22029: 3,37 - 22030: 4,37 - 22031: 6,37 - 22032: 7,37 - 22033: 9,37 - 22034: 8,37 - 22045: 4,32 - 22046: 9,32 - 22051: 10,38 - 22052: 5,38 - 22061: 5,43 - 22062: 6,43 - 22072: 5,38 - 22073: 10,38 - 22085: 10,41 - 22094: 10,46 - 22118: 14,39 - 22119: 15,39 - 22120: 16,39 - 22121: 17,39 - 22122: 18,39 - 22123: 19,39 - 22124: 20,39 - 22125: 20,39 - 22126: 16,34 - 22127: 17,34 - 22128: 18,34 - 22143: 15,33 - 22147: 20,33 - 22148: 21,33 - 22149: 18,54 - 22150: 19,54 - 22151: 20,54 - 22152: 20,54 - 22153: 21,54 - 22154: 22,54 - 22155: 23,54 - 22156: 23,54 - 22157: 26,52 - 22158: 27,52 - 22159: 28,52 - 22160: 29,52 - 22161: 30,52 - 22162: 30,52 - 22163: 31,52 - 22164: 32,52 - 22165: 32,52 - 22166: 33,52 - 22167: 34,52 - 22168: 35,52 - 22169: 36,52 - 22170: 37,52 - 22171: 38,52 - 22172: 38,52 - 22196: 11,54 - 22197: 12,54 - 22214: 16,54 - 22226: 20,50 - 22227: 19,50 - 22228: 20,50 - 22229: 21,50 - 22230: 22,50 - 22231: 22,50 - 22232: 19,46 - 22233: 20,46 - 22234: 21,46 - 22235: 21,46 - 22236: 21,46 - 22237: 22,46 - 22238: 22,46 - 22239: 19,44 - 22240: 20,44 - 22241: 21,44 - 22242: 22,44 - 22243: 22,44 - 22244: 19,42 - 22245: 20,42 - 22246: 21,42 - 22247: 22,42 - 22248: 22,42 - 22249: 22,42 - 22250: 16,42 - 22251: 16,42 - 22252: 17,42 - 22253: 16,44 - 22254: 17,44 - 22255: 16,40 - 22256: 17,40 - 22257: 19,40 - 22258: 20,40 - 22259: 21,40 - 22260: 21,40 - 22261: 22,40 - 22262: 22,40 - 22263: 19,48 - 22264: 20,48 - 22265: 21,48 - 22266: 22,48 - 22267: 22,48 - 22378: 14,46 - 22445: 13,26 - 22446: 14,26 - 22447: 15,26 - 22448: 15,26 - 22449: 16,26 - 22461: 16,32 - 22465: 12,28 - 22466: 13,28 - 22467: 14,28 - 22469: 14,25 - 22470: 15,25 - 22471: 16,25 - 22506: 25,38 - 22507: 26,38 - 22508: 27,38 - 22537: 26,34 - 22538: 27,34 - 22558: 28,44 - 22561: 28,39 + 21832: 3,24 + 21833: 9,24 + 21834: 13,24 + 21835: 17,24 + 21866: 4,25 + 21867: 5,25 + 21868: 7,25 + 21869: 8,25 + 21870: 5,31 + 21871: 6,31 + 21876: 3,31 + 21896: 4,27 + 21897: 5,27 + 21898: 6,27 + 21899: 6,27 + 21900: 7,27 + 21901: 8,27 + 21935: 5,34 + 21936: 4,34 + 21937: 5,34 + 21938: 6,34 + 21939: 7,34 + 21940: 8,34 + 21941: 9,34 + 21961: 3,37 + 21962: 4,37 + 21963: 6,37 + 21964: 7,37 + 21965: 9,37 + 21966: 8,37 + 21977: 4,32 + 21978: 9,32 + 21983: 10,38 + 21984: 5,38 + 21993: 5,43 + 21994: 6,43 + 22004: 5,38 + 22005: 10,38 + 22017: 10,41 + 22026: 10,46 + 22050: 14,39 + 22051: 15,39 + 22052: 16,39 + 22053: 17,39 + 22054: 18,39 + 22055: 19,39 + 22056: 20,39 + 22057: 20,39 + 22058: 16,34 + 22059: 17,34 + 22060: 18,34 + 22075: 15,33 + 22079: 20,33 + 22080: 21,33 + 22081: 18,54 + 22082: 19,54 + 22083: 20,54 + 22084: 20,54 + 22085: 21,54 + 22086: 22,54 + 22087: 23,54 + 22088: 23,54 + 22089: 26,52 + 22090: 27,52 + 22091: 28,52 + 22092: 29,52 + 22093: 30,52 + 22094: 30,52 + 22095: 31,52 + 22096: 32,52 + 22097: 32,52 + 22098: 33,52 + 22099: 34,52 + 22100: 35,52 + 22101: 36,52 + 22102: 37,52 + 22103: 38,52 + 22104: 38,52 + 22128: 11,54 + 22129: 12,54 + 22146: 16,54 + 22158: 20,50 + 22159: 19,50 + 22160: 20,50 + 22161: 21,50 + 22162: 22,50 + 22163: 22,50 + 22164: 19,46 + 22165: 20,46 + 22166: 21,46 + 22167: 21,46 + 22168: 21,46 + 22169: 22,46 + 22170: 22,46 + 22171: 19,44 + 22172: 20,44 + 22173: 21,44 + 22174: 22,44 + 22175: 22,44 + 22176: 19,42 + 22177: 20,42 + 22178: 21,42 + 22179: 22,42 + 22180: 22,42 + 22181: 22,42 + 22182: 16,42 + 22183: 16,42 + 22184: 17,42 + 22185: 16,44 + 22186: 17,44 + 22187: 16,40 + 22188: 17,40 + 22189: 19,40 + 22190: 20,40 + 22191: 21,40 + 22192: 21,40 + 22193: 22,40 + 22194: 22,40 + 22195: 19,48 + 22196: 20,48 + 22197: 21,48 + 22198: 22,48 + 22199: 22,48 + 22310: 14,46 + 22377: 13,26 + 22378: 14,26 + 22379: 15,26 + 22380: 15,26 + 22381: 16,26 + 22393: 16,32 + 22397: 12,28 + 22398: 13,28 + 22399: 14,28 + 22401: 14,25 + 22402: 15,25 + 22403: 16,25 + 22438: 25,38 + 22439: 26,38 + 22440: 27,38 + 22469: 26,34 + 22470: 27,34 + 22490: 28,44 + 22493: 28,39 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineN decals: - 2872: -25,48 - 2885: -32,44 - 2903: -33,54 - 2904: -32,54 - 2905: -31,54 - 2906: -30,54 - 2915: -27,51 - 2959: -32,46 - 2960: -30,46 - 2961: -28,46 - 2991: -38,50 - 3009: -38,44 - 3010: -30,44 + 2871: -25,48 + 2884: -32,44 + 2902: -33,54 + 2903: -32,54 + 2904: -31,54 + 2905: -30,54 + 2914: -27,51 + 2958: -32,46 + 2959: -30,46 + 2960: -28,46 + 2990: -38,50 + 3008: -38,44 + 3009: -30,44 - node: color: '#B18BDAFF' id: BrickTileWhiteLineN decals: - 5081: 22,32 - 5083: 24,32 - 5084: 26,32 - 5134: 39,30 - 5135: 40,30 - 5136: 41,30 - 5137: 42,30 - 5146: 38,30 - 5164: 35,33 - 11420: -18,-36 - 11421: -17,-36 - 11422: -17,-36 - 11423: -16,-36 - 11424: -15,-36 - 11425: -14,-36 - 11426: -29,-36 - 11427: -27,-36 - 11428: -28,-36 - 11429: -26,-36 - 11430: -26,-36 - 11431: -24,-36 - 11432: -25,-36 - 11492: -14,-54 - 11493: -14,-44 - 11501: -14,-34 - 11502: -16,-34 - 11503: -17,-34 - 11504: -17,-34 - 11505: -18,-34 - 11506: -19,-34 - 11507: -20,-34 - 11549: -12,-34 - 11550: -31,-34 - 11551: -30,-34 - 11552: -27,-34 - 11553: -27,-34 - 11554: -28,-34 - 11555: -26,-34 - 11556: -25,-34 - 11557: -25,-34 - 11599: -12,-27 - 11600: -11,-27 - 11601: -10,-27 - 11602: -9,-27 - 11603: -9,-27 - 11604: -8,-27 - 11649: -7,-30 - 11650: -8,-30 - 11651: -9,-30 - 11652: -5,-30 - 11763: -7,-37 - 11766: -15,-37 - 11767: -14,-37 - 11768: -13,-37 - 11769: -13,-37 - 11789: -15,-45 - 11790: -14,-45 - 11791: -13,-45 - 11883: -29,-37 - 11884: -24,-37 - 11885: -24,-37 - 11889: -28,-28 - 11908: -30,-32 - 11909: -29,-32 - 11910: -29,-32 - 11911: -28,-32 - 12065: -24,-33 - 12066: -23,-33 - 12067: -22,-33 - 12172: -25,-42 - 12173: -24,-42 - 12174: -29,-42 - 12208: -16,-55 - 12209: -16,-50 - 12232: -19,-56 - 12233: -18,-56 - 12234: -17,-56 - 12235: -15,-56 - 12236: -14,-56 - 12263: -9,-49 - 12264: -8,-49 - 12265: -5,-46 - 12282: -6,-54 - 12292: -19,-45 - 12611: -8,-35 - 12612: -7,-35 - 20024: 36,39 + 5080: 22,32 + 5082: 24,32 + 5083: 26,32 + 5133: 39,30 + 5134: 40,30 + 5135: 41,30 + 5136: 42,30 + 5145: 38,30 + 5163: 35,33 + 11358: -18,-36 + 11359: -17,-36 + 11360: -17,-36 + 11361: -16,-36 + 11362: -15,-36 + 11363: -14,-36 + 11364: -29,-36 + 11365: -27,-36 + 11366: -28,-36 + 11367: -26,-36 + 11368: -26,-36 + 11369: -24,-36 + 11370: -25,-36 + 11430: -14,-54 + 11431: -14,-44 + 11439: -14,-34 + 11440: -16,-34 + 11441: -17,-34 + 11442: -17,-34 + 11443: -18,-34 + 11444: -19,-34 + 11445: -20,-34 + 11487: -12,-34 + 11488: -31,-34 + 11489: -30,-34 + 11490: -27,-34 + 11491: -27,-34 + 11492: -28,-34 + 11493: -26,-34 + 11494: -25,-34 + 11495: -25,-34 + 11537: -12,-27 + 11538: -11,-27 + 11539: -10,-27 + 11540: -9,-27 + 11541: -9,-27 + 11542: -8,-27 + 11587: -7,-30 + 11588: -8,-30 + 11589: -9,-30 + 11590: -5,-30 + 11701: -7,-37 + 11704: -15,-37 + 11705: -14,-37 + 11706: -13,-37 + 11707: -13,-37 + 11727: -15,-45 + 11728: -14,-45 + 11729: -13,-45 + 11821: -29,-37 + 11822: -24,-37 + 11823: -24,-37 + 12003: -24,-33 + 12004: -23,-33 + 12005: -22,-33 + 12110: -25,-42 + 12111: -24,-42 + 12112: -29,-42 + 12146: -16,-55 + 12147: -16,-50 + 12170: -19,-56 + 12171: -18,-56 + 12172: -17,-56 + 12173: -15,-56 + 12174: -14,-56 + 12201: -9,-49 + 12202: -8,-49 + 12203: -5,-46 + 12220: -6,-54 + 12230: -19,-45 + 12548: -8,-35 + 12549: -7,-35 + 19960: 36,39 - node: color: '#B240B4FF' id: BrickTileWhiteLineN decals: - 665: -22,-56 - 666: -23,-56 - 667: -24,-56 + 664: -22,-56 + 665: -23,-56 + 666: -24,-56 - node: color: '#CEDA8BFF' id: BrickTileWhiteLineN decals: - 10809: 27,-59 - 10824: 35,-60 - 10841: 39,-60 - 10842: 40,-60 - 10897: 38,-70 - 10898: 39,-70 - 10899: 41,-70 - 10905: 39,-72 - 10947: 28,-67 - 10948: 28,-67 - 10949: 29,-67 - 10950: 30,-67 + 10843: 39,-72 - node: color: '#D381C9FF' id: BrickTileWhiteLineN decals: - 22645: -15,-29 - 22646: -13,-29 - 22700: -12,-34 - 22701: -14,-34 - 22702: -16,-34 - 22703: -16,-34 - 22704: -18,-34 - 22705: -18,-34 - 22706: -19,-34 - 22707: -19,-34 - 22708: -20,-34 - 22713: -17,-34 - 22715: -15,-37 - 22716: -14,-37 - 22717: -13,-37 - 22718: -13,-37 - 22740: -16,-50 - 22747: -16,-55 - 22753: -15,-45 - 22754: -14,-45 - 22755: -13,-45 - 22824: -28,-34 - 22825: -27,-34 - 22826: -26,-34 - 22827: -26,-34 - 22828: -25,-34 - 22829: -30,-34 - 22852: -23,-33 - 22853: -23,-33 - 22854: -22,-33 - 22855: -23,-33 - 22856: -23,-33 - 22857: -24,-33 - 22877: -29,-37 - 22878: -24,-37 - 22896: -23,-31 - 22926: -29,-36 - 22927: -28,-36 - 22928: -27,-36 - 22929: -27,-36 - 22930: -26,-36 - 22931: -25,-36 - 22932: -25,-36 - 22933: -24,-36 - 22934: -24,-36 - 22935: -18,-36 - 22936: -18,-36 - 22937: -16,-36 - 22938: -16,-36 - 22939: -15,-36 - 22940: -14,-36 - 22941: -17,-36 - 22973: -9,-30 - 22974: -8,-30 - 22975: -7,-30 - 22976: -7,-30 - 22977: -6,-29 - 22979: -5,-30 - 22985: -7,-37 - 23023: -14,-44 - 23026: -14,-54 - 23027: -8,-49 - 23028: -9,-49 - 23029: -5,-46 - 23065: -6,-54 - 23088: -16,-55 - 23101: -19,-56 - 23102: -18,-56 - 23103: -17,-56 - 23104: -17,-56 - 23105: -15,-56 - 23106: -14,-56 + 22577: -15,-29 + 22578: -13,-29 + 22632: -12,-34 + 22633: -14,-34 + 22634: -16,-34 + 22635: -16,-34 + 22636: -18,-34 + 22637: -18,-34 + 22638: -19,-34 + 22639: -19,-34 + 22640: -20,-34 + 22645: -17,-34 + 22647: -15,-37 + 22648: -14,-37 + 22649: -13,-37 + 22650: -13,-37 + 22672: -16,-50 + 22679: -16,-55 + 22685: -15,-45 + 22686: -14,-45 + 22687: -13,-45 + 22756: -28,-34 + 22757: -27,-34 + 22758: -26,-34 + 22759: -26,-34 + 22760: -25,-34 + 22761: -30,-34 + 22784: -23,-33 + 22785: -23,-33 + 22786: -22,-33 + 22787: -23,-33 + 22788: -23,-33 + 22789: -24,-33 + 22809: -29,-37 + 22810: -24,-37 + 22828: -23,-31 + 22858: -29,-36 + 22859: -28,-36 + 22860: -27,-36 + 22861: -27,-36 + 22862: -26,-36 + 22863: -25,-36 + 22864: -25,-36 + 22865: -24,-36 + 22866: -24,-36 + 22867: -18,-36 + 22868: -18,-36 + 22869: -16,-36 + 22870: -16,-36 + 22871: -15,-36 + 22872: -14,-36 + 22873: -17,-36 + 22905: -9,-30 + 22906: -8,-30 + 22907: -7,-30 + 22908: -7,-30 + 22909: -6,-29 + 22911: -5,-30 + 22917: -7,-37 + 22955: -14,-44 + 22958: -14,-54 + 22959: -8,-49 + 22960: -9,-49 + 22961: -5,-46 + 22997: -6,-54 + 23020: -16,-55 + 23033: -19,-56 + 23034: -18,-56 + 23035: -17,-56 + 23036: -17,-56 + 23037: -15,-56 + 23038: -14,-56 + 24379: -30,-32 + 24380: -29,-32 + 24381: -28,-32 + 24387: -28,-28 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineN decals: - 19218: 69,16 - 19222: 62,-3 + 19155: 69,16 + 19159: 62,-3 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineN decals: - 2704: -11,54 - 2710: -12,51 - 3803: 11,70 - 9422: -38,2 + 2703: -11,54 + 2709: -12,51 + 3802: 11,70 + 9410: -38,2 - node: color: '#DAA58BFF' id: BrickTileWhiteLineN decals: - 4363: 4,25 - 4364: 5,25 - 4365: 7,25 - 4366: 8,25 - 4367: 6,31 - 4391: 4,32 - 4397: 3,37 - 4398: 4,37 - 4399: 9,37 - 4407: 9,32 - 4414: 5,31 - 4431: 4,27 - 4432: 5,27 - 4433: 6,27 - 4434: 7,27 - 4435: 8,27 - 4441: 14,28 - 4457: 12,28 - 4458: 13,28 - 4470: 14,25 - 4471: 15,25 - 4472: 16,25 - 4474: 16,32 - 4480: 13,26 - 4481: 14,26 - 4482: 15,26 - 4483: 16,26 - 4500: 13,39 - 4501: 14,39 + 4362: 4,25 + 4363: 5,25 + 4364: 7,25 + 4365: 8,25 + 4366: 6,31 + 4390: 4,32 + 4396: 3,37 + 4397: 4,37 + 4398: 9,37 + 4406: 9,32 + 4413: 5,31 + 4430: 4,27 + 4431: 5,27 + 4432: 6,27 + 4433: 7,27 + 4434: 8,27 + 4440: 14,28 + 4456: 12,28 + 4457: 13,28 + 4469: 14,25 + 4470: 15,25 + 4471: 16,25 + 4473: 16,32 + 4479: 13,26 + 4480: 14,26 + 4481: 15,26 + 4482: 16,26 + 4499: 13,39 + 4500: 14,39 + 4501: 15,39 4502: 15,39 - 4503: 15,39 - 4504: 16,39 + 4503: 16,39 + 4504: 17,39 4505: 17,39 - 4506: 17,39 - 4507: 20,39 - 4508: 17,39 - 4509: 18,39 - 4528: 5,38 - 4535: 5,43 - 4536: 6,43 - 4543: 10,38 - 4553: 13,33 - 4563: 10,41 - 4581: 15,33 - 4601: 20,33 - 4602: 21,33 - 4610: 14,46 - 4625: 22,32 - 4626: 23,32 - 4627: 24,32 - 4628: 25,32 - 4629: 26,32 - 4662: 21,25 - 4666: 22,27 + 4506: 20,39 + 4507: 17,39 + 4508: 18,39 + 4527: 5,38 + 4534: 5,43 + 4535: 6,43 + 4542: 10,38 + 4552: 13,33 + 4562: 10,41 + 4580: 15,33 + 4600: 20,33 + 4601: 21,33 + 4609: 14,46 + 4624: 22,32 + 4625: 23,32 + 4626: 24,32 + 4627: 25,32 + 4628: 26,32 + 4661: 21,25 + 4665: 22,27 + 4666: 23,27 4667: 23,27 - 4668: 23,27 - 4669: 24,27 - 4683: 26,27 - 4684: 20,27 - 4695: 22,28 - 4696: 24,28 - 4702: 26,28 - 4703: 20,28 - 4717: 23,29 - 4740: 25,38 - 4741: 26,38 - 4742: 27,38 - 4746: 26,34 - 4747: 27,34 - 4764: 16,34 - 4765: 17,34 - 4766: 18,34 - 4789: 28,44 - 4791: 28,39 - 4805: 5,34 - 4806: 6,34 - 4807: 7,34 - 4808: 8,34 - 4809: 9,34 - 4814: 6,37 - 4815: 7,37 - 4816: 8,37 - 4824: 27,52 - 4825: 28,52 - 4826: 29,52 - 4827: 30,52 - 4828: 31,52 - 4829: 32,52 - 4830: 33,52 - 4831: 34,52 - 4832: 36,52 + 4668: 24,27 + 4682: 26,27 + 4683: 20,27 + 4694: 22,28 + 4695: 24,28 + 4701: 26,28 + 4702: 20,28 + 4716: 23,29 + 4739: 25,38 + 4740: 26,38 + 4741: 27,38 + 4745: 26,34 + 4746: 27,34 + 4763: 16,34 + 4764: 17,34 + 4765: 18,34 + 4788: 28,44 + 4790: 28,39 + 4804: 5,34 + 4805: 6,34 + 4806: 7,34 + 4807: 8,34 + 4808: 9,34 + 4813: 6,37 + 4814: 7,37 + 4815: 8,37 + 4823: 27,52 + 4824: 28,52 + 4825: 29,52 + 4826: 30,52 + 4827: 31,52 + 4828: 32,52 + 4829: 33,52 + 4830: 34,52 + 4831: 36,52 + 4832: 37,52 4833: 37,52 - 4834: 37,52 - 4835: 38,52 - 4892: 35,52 - 4893: 26,52 - 4907: 11,54 - 4908: 12,54 - 4931: 16,54 - 4938: 18,54 - 4939: 19,54 + 4834: 38,52 + 4891: 35,52 + 4892: 26,52 + 4906: 11,54 + 4907: 12,54 + 4930: 16,54 + 4937: 18,54 + 4938: 19,54 + 4939: 20,54 4940: 20,54 - 4941: 20,54 - 4942: 22,54 - 4943: 23,54 - 4944: 21,54 - 4993: 16,40 - 4994: 17,40 - 4995: 19,40 - 4996: 20,40 - 4997: 21,40 - 4998: 22,40 - 4999: 22,42 - 5000: 21,42 - 5001: 19,42 - 5002: 20,42 - 5003: 17,42 - 5004: 16,42 - 5005: 16,44 - 5006: 17,44 - 5007: 19,44 - 5008: 20,44 - 5009: 21,44 - 5010: 22,44 - 5011: 22,46 - 5012: 21,46 - 5013: 20,46 - 5014: 19,46 - 5015: 19,48 - 5016: 20,48 - 5017: 21,48 - 5018: 22,48 - 5019: 22,50 - 5020: 21,50 - 5021: 20,50 - 5030: 19,50 - 5150: 39,30 - 5151: 41,30 - 11345: -11,-83 - 20016: 35,39 + 4941: 22,54 + 4942: 23,54 + 4943: 21,54 + 4992: 16,40 + 4993: 17,40 + 4994: 19,40 + 4995: 20,40 + 4996: 21,40 + 4997: 22,40 + 4998: 22,42 + 4999: 21,42 + 5000: 19,42 + 5001: 20,42 + 5002: 17,42 + 5003: 16,42 + 5004: 16,44 + 5005: 17,44 + 5006: 19,44 + 5007: 20,44 + 5008: 21,44 + 5009: 22,44 + 5010: 22,46 + 5011: 21,46 + 5012: 20,46 + 5013: 19,46 + 5014: 19,48 + 5015: 20,48 + 5016: 21,48 + 5017: 22,48 + 5018: 22,50 + 5019: 21,50 + 5020: 20,50 + 5029: 19,50 + 5149: 39,30 + 5150: 41,30 + 11283: -11,-83 + 19952: 35,39 - node: color: '#DABC8BFF' id: BrickTileWhiteLineN decals: - 4005: -38,54 - 9555: 7,-30 - 9556: 6,-30 - 9557: 4,-30 - 9558: 3,-30 - 9586: 5,-35 - 9587: 6,-35 - 9605: 5,-37 + 4004: -38,54 + 9531: 7,-30 + 9532: 6,-30 + 9533: 4,-30 + 9534: 3,-30 + 9562: 5,-35 + 9563: 6,-35 + 9581: 5,-37 - node: color: '#EFB341FF' id: BrickTileWhiteLineN decals: - 16854: -55,2 - 16855: -54,2 - 16856: -53,3 - 16857: -52,3 - 16858: -53,7 - 16859: -52,7 - 16870: -53,7 - 16871: -52,7 - 16872: -53,3 - 16873: -52,3 - 16876: -51,2 - 16877: -50,2 - 16888: -50,-1 - 16904: -58,-5 - 16910: -60,2 - 16911: -59,2 - 16912: -58,2 - 16913: -57,2 - 16914: -56,2 - 16930: -48,15 - 16931: -49,15 - 16932: -50,15 - 16933: -51,15 - 16948: -57,15 - 16949: -56,15 - 16967: -58,-11 - 16986: -60,-6 - 16987: -59,-6 - 16998: -60,-12 - 16999: -59,-12 - 17000: -57,-12 - 17001: -56,-12 - 17002: -55,-7 - 17026: -61,-17 - 17059: -56,-19 - 17060: -54,-19 - 17072: -49,-13 - 17073: -48,-13 - 17164: -58,16 - 17173: -62,15 - 17174: -63,15 - 17175: -64,15 - 17176: -65,15 - 17177: -66,15 - 17194: -77,16 - 17195: -76,16 - 17196: -75,16 - 17197: -74,16 - 17198: -73,16 - 17199: -71,16 - 17200: -70,16 - 17201: -69,16 - 17202: -72,16 - 17220: -77,12 - 17221: -72,13 - 17223: -77,12 - 17291: -60,19 - 17292: -59,19 - 17293: -58,19 - 17322: -48,-6 - 17323: -47,-6 - 17324: -46,-6 - 17355: -66,-6 - 17356: -65,-6 - 17357: -64,-6 - 17358: -72,-6 - 17359: -70,-6 - 17360: -68,-6 - 17361: -73,-6 - 17372: -71,-9 - 17373: -70,-9 - 17374: -69,-9 - 17387: -75,-6 - 17388: -76,-6 - 17398: -71,-9 - 17399: -70,-9 - 17400: -69,-9 - 17408: -11,-83 - 17413: 10,89 - 17414: 5,91 - 17416: 6,86 - 17429: 10,89 - 17430: 6,90 - 17462: 11,82 - 17479: 12,73 - 17521: -63,10 - 17522: -64,10 - 17588: -72,2 - 17589: -71,2 - 17590: -70,2 - 17591: -69,2 - 17592: -68,2 - 17593: -67,2 - 17594: -67,2 - 17614: -71,-5 - 17615: -69,-5 - 17646: -73,12 - 17647: -71,12 - 17657: -72,9 - 17659: -72,13 - 17663: -82,14 - 17664: -81,14 - 17665: -80,14 - 17679: -77,12 - 17710: -77,2 - 17727: -77,8 - 17728: -77,12 - 17729: -78,1 - 17744: -76,-3 - 17774: -72,-10 - 17775: -68,-10 - 17779: -71,-9 - 17780: -70,-9 - 17781: -69,-9 - 18146: -60,-1 - 18147: -59,-1 - 18148: -58,-1 - 18149: -57,-1 - 18150: -56,-1 - 18204: -55,15 - 18205: -54,15 - 18206: -53,15 - 18207: -52,15 + 16791: -55,2 + 16792: -54,2 + 16793: -53,3 + 16794: -52,3 + 16795: -53,7 + 16796: -52,7 + 16807: -53,7 + 16808: -52,7 + 16809: -53,3 + 16810: -52,3 + 16813: -51,2 + 16814: -50,2 + 16825: -50,-1 + 16841: -58,-5 + 16847: -60,2 + 16848: -59,2 + 16849: -58,2 + 16850: -57,2 + 16851: -56,2 + 16867: -48,15 + 16868: -49,15 + 16869: -50,15 + 16870: -51,15 + 16885: -57,15 + 16886: -56,15 + 16904: -58,-11 + 16923: -60,-6 + 16924: -59,-6 + 16935: -60,-12 + 16936: -59,-12 + 16937: -57,-12 + 16938: -56,-12 + 16939: -55,-7 + 16963: -61,-17 + 16996: -56,-19 + 16997: -54,-19 + 17009: -49,-13 + 17010: -48,-13 + 17101: -58,16 + 17110: -62,15 + 17111: -63,15 + 17112: -64,15 + 17113: -65,15 + 17114: -66,15 + 17131: -77,16 + 17132: -76,16 + 17133: -75,16 + 17134: -74,16 + 17135: -73,16 + 17136: -71,16 + 17137: -70,16 + 17138: -69,16 + 17139: -72,16 + 17157: -77,12 + 17158: -72,13 + 17160: -77,12 + 17228: -60,19 + 17229: -59,19 + 17230: -58,19 + 17259: -48,-6 + 17260: -47,-6 + 17261: -46,-6 + 17292: -66,-6 + 17293: -65,-6 + 17294: -64,-6 + 17295: -72,-6 + 17296: -70,-6 + 17297: -68,-6 + 17298: -73,-6 + 17309: -71,-9 + 17310: -70,-9 + 17311: -69,-9 + 17324: -75,-6 + 17325: -76,-6 + 17335: -71,-9 + 17336: -70,-9 + 17337: -69,-9 + 17345: -11,-83 + 17350: 10,89 + 17351: 5,91 + 17353: 6,86 + 17366: 10,89 + 17367: 6,90 + 17399: 11,82 + 17416: 12,73 + 17458: -63,10 + 17459: -64,10 + 17525: -72,2 + 17526: -71,2 + 17527: -70,2 + 17528: -69,2 + 17529: -68,2 + 17530: -67,2 + 17531: -67,2 + 17551: -71,-5 + 17552: -69,-5 + 17583: -73,12 + 17584: -71,12 + 17594: -72,9 + 17596: -72,13 + 17600: -82,14 + 17601: -81,14 + 17602: -80,14 + 17616: -77,12 + 17647: -77,2 + 17664: -77,8 + 17665: -77,12 + 17666: -78,1 + 17681: -76,-3 + 17711: -72,-10 + 17712: -68,-10 + 17716: -71,-9 + 17717: -70,-9 + 17718: -69,-9 + 18083: -60,-1 + 18084: -59,-1 + 18085: -58,-1 + 18086: -57,-1 + 18087: -56,-1 + 18141: -55,15 + 18142: -54,15 + 18143: -53,15 + 18144: -52,15 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 868: 74,-42 - 869: 72,-42 - 870: 71,-42 - 1174: 45,-14 - 1175: 48,-14 - 2070: -19,49 - 2071: -19,45 - 2080: -21,46 - 2081: -17,46 - 2138: -19,33 - 2139: -19,26 - 2143: -19,30 - 2211: -21,28 - 2264: -23,40 - 2389: -31,29 - 2696: -12,51 - 2703: -10,54 - 2705: -12,54 - 2768: -11,48 - 2769: -10,48 - 2770: -6,48 - 2771: -5,48 - 2814: -6,34 - 3014: -13,56 - 3015: -12,56 - 3016: -11,56 - 3030: -19,60 - 3063: -16,58 - 3064: -15,58 - 3065: -14,58 - 3066: -13,58 - 3078: -20,67 - 3079: -19,67 - 3080: -18,67 - 3081: -12,67 - 3082: -13,67 - 3083: -11,67 - 3096: -5,60 - 3102: -6,67 - 3103: -5,67 - 3104: -4,67 - 3115: -6,56 - 3116: -5,56 - 3117: -4,56 - 3118: -20,56 - 3119: -19,56 - 3120: -18,56 - 3228: -12,71 - 3234: -12,78 - 3253: -12,91 - 3254: -12,84 - 3301: -30,71 - 3302: -30,78 - 3303: -30,84 - 3304: -30,91 - 3308: -31,67 - 3309: -30,67 - 3310: -29,67 - 3517: 0,67 + 867: 74,-42 + 868: 72,-42 + 869: 71,-42 + 1173: 45,-14 + 1174: 48,-14 + 2069: -19,49 + 2070: -19,45 + 2079: -21,46 + 2080: -17,46 + 2137: -19,33 + 2138: -19,26 + 2142: -19,30 + 2210: -21,28 + 2263: -23,40 + 2388: -31,29 + 2695: -12,51 + 2702: -10,54 + 2704: -12,54 + 2767: -11,48 + 2768: -10,48 + 2769: -6,48 + 2770: -5,48 + 2813: -6,34 + 3013: -13,56 + 3014: -12,56 + 3015: -11,56 + 3029: -19,60 + 3062: -16,58 + 3063: -15,58 + 3064: -14,58 + 3065: -13,58 + 3077: -20,67 + 3078: -19,67 + 3079: -18,67 + 3080: -12,67 + 3081: -13,67 + 3082: -11,67 + 3095: -5,60 + 3101: -6,67 + 3102: -5,67 + 3103: -4,67 + 3114: -6,56 + 3115: -5,56 + 3116: -4,56 + 3117: -20,56 + 3118: -19,56 + 3119: -18,56 + 3227: -12,71 + 3233: -12,78 + 3252: -12,91 + 3253: -12,84 + 3300: -30,71 + 3301: -30,78 + 3302: -30,84 + 3303: -30,91 + 3307: -31,67 + 3308: -30,67 + 3309: -29,67 + 3516: 0,67 + 3517: 1,67 3518: 1,67 - 3519: 1,67 - 3520: 2,67 - 3521: 5,67 - 3522: 6,67 - 3523: 7,67 - 3612: 6,71 - 3680: 6,78 - 3778: 0,56 - 3779: 1,56 - 3780: 2,56 - 3840: 17,71 - 3841: 18,71 - 3842: 19,71 - 3843: 20,71 - 3844: 21,71 - 3846: 22,71 - 3863: 18,68 - 3864: 19,68 - 3865: 21,68 - 3866: 22,68 - 4155: -24,23 - 5186: 17,15 - 5187: 17,8 - 5207: -19,1 - 5208: 17,-6 - 5209: 17,1 - 5218: -26,67 - 5219: -25,67 - 5220: -24,67 + 3519: 2,67 + 3520: 5,67 + 3521: 6,67 + 3522: 7,67 + 3611: 6,71 + 3679: 6,78 + 3777: 0,56 + 3778: 1,56 + 3779: 2,56 + 3839: 17,71 + 3840: 18,71 + 3841: 19,71 + 3842: 20,71 + 3843: 21,71 + 3845: 22,71 + 3862: 18,68 + 3863: 19,68 + 3864: 21,68 + 3865: 22,68 + 4154: -24,23 + 5185: 17,15 + 5186: 17,8 + 5206: -19,1 + 5207: 17,-6 + 5208: 17,1 + 5217: -26,67 + 5218: -25,67 + 5219: -24,67 + 5473: -38,4 5474: -38,4 - 5475: -38,4 - 5476: -37,4 - 5477: -36,4 - 5478: -33,4 - 5479: -32,4 - 5480: -31,4 - 5481: -27,4 - 5482: -26,4 - 5483: -25,4 - 5484: -23,4 + 5475: -37,4 + 5476: -36,4 + 5477: -33,4 + 5478: -32,4 + 5479: -31,4 + 5480: -27,4 + 5481: -26,4 + 5482: -25,4 + 5483: -23,4 + 5484: -24,4 5485: -24,4 - 5486: -24,4 - 5565: -32,28 - 6230: -19,-18 - 6310: 17,-18 - 6333: -2,-14 - 6334: -1,-14 - 6335: 0,-14 - 6336: 1,-14 - 6403: 3,-21 - 6404: 4,-21 - 6405: 5,-21 - 6406: 6,-21 - 6407: 10,-21 - 6408: 12,-21 - 6409: 11,-21 - 6410: 13,-21 - 6411: -5,-21 + 5564: -32,28 + 6229: -19,-18 + 6309: 17,-18 + 6332: -2,-14 + 6333: -1,-14 + 6334: 0,-14 + 6335: 1,-14 + 6402: 3,-21 + 6403: 4,-21 + 6404: 5,-21 + 6405: 6,-21 + 6406: 10,-21 + 6407: 12,-21 + 6408: 11,-21 + 6409: 13,-21 + 6410: -5,-21 + 6411: -6,-21 6412: -6,-21 - 6413: -6,-21 + 6413: -7,-21 6414: -7,-21 - 6415: -7,-21 + 6415: -8,-21 6416: -8,-21 - 6417: -8,-21 + 6417: -12,-21 6418: -12,-21 - 6419: -12,-21 - 6420: -13,-21 + 6419: -13,-21 + 6420: -14,-21 6421: -14,-21 - 6422: -14,-21 + 6422: -15,-21 6423: -15,-21 - 6424: -15,-21 - 6656: -33,-10 - 6657: -32,-10 - 6666: -31,-2 - 6667: -30,-2 - 6668: -29,-2 - 6669: -28,-2 - 6670: -27,-2 + 6655: -33,-10 + 6656: -32,-10 + 6665: -31,-2 + 6666: -30,-2 + 6667: -29,-2 + 6668: -28,-2 + 6669: -27,-2 + 6670: -26,-2 6671: -26,-2 - 6672: -26,-2 - 6673: -23,-2 + 6672: -23,-2 + 6673: -22,-2 6674: -22,-2 - 6675: -22,-2 - 6676: -25,-2 - 6703: -31,-11 - 6704: -30,-11 - 6705: -29,-11 - 6706: -34,-11 - 6734: -28,-17 - 6735: -34,-16 - 6736: -33,-16 - 6737: -32,-16 - 6738: -31,-16 - 6954: -25,-15 - 6955: -24,-15 - 6960: -25,-15 - 6961: -24,-15 - 6967: -24,-19 - 7121: 21,4 - 7122: 22,4 - 7123: 23,4 - 7124: 24,4 - 7186: 28,4 - 7187: 29,4 - 7188: 30,4 - 7189: 31,4 - 8052: 58,-17 - 8053: 59,-17 - 8054: 60,-17 - 8055: 58,-30 - 8056: 59,-30 - 8057: 60,-30 - 8195: 39,-7 - 8196: 40,-7 - 8226: 22,-12 + 6675: -25,-2 + 6702: -31,-11 + 6703: -30,-11 + 6704: -29,-11 + 6705: -34,-11 + 6733: -28,-17 + 6734: -34,-16 + 6735: -33,-16 + 6736: -32,-16 + 6737: -31,-16 + 6953: -25,-15 + 6954: -24,-15 + 6959: -25,-15 + 6960: -24,-15 + 6966: -24,-19 + 7120: 21,4 + 7121: 22,4 + 7122: 23,4 + 7123: 24,4 + 7185: 28,4 + 7186: 29,4 + 7187: 30,4 + 7188: 31,4 + 8051: 58,-17 + 8052: 59,-17 + 8053: 60,-17 + 8054: 58,-30 + 8055: 59,-30 + 8056: 60,-30 + 8194: 39,-7 + 8195: 40,-7 + 8225: 22,-12 + 8226: 23,-12 8227: 23,-12 - 8228: 23,-12 + 8228: 24,-12 8229: 24,-12 - 8230: 24,-12 - 8231: 21,-12 + 8230: 21,-12 + 8231: 28,-12 8232: 28,-12 - 8233: 28,-12 + 8233: 29,-12 8234: 29,-12 - 8235: 29,-12 + 8235: 30,-12 8236: 30,-12 - 8237: 30,-12 - 8256: 35,-16 + 8255: 35,-16 + 8256: 36,-16 8257: 36,-16 - 8258: 36,-16 + 8258: 37,-16 8259: 37,-16 - 8260: 37,-16 + 8260: 39,-16 8261: 39,-16 - 8262: 39,-16 + 8262: 38,-16 8263: 38,-16 - 8264: 38,-16 - 8343: 46,-18 - 8344: 47,-18 + 8342: 46,-18 + 8343: 47,-18 + 8347: 48,-14 8348: 48,-14 - 8349: 48,-14 - 8350: 47,-14 + 8349: 47,-14 + 8421: 44,-21 8422: 44,-21 8423: 44,-21 - 8424: 44,-21 - 8425: 45,-21 + 8424: 45,-21 + 8425: 46,-21 8426: 46,-21 - 8427: 46,-21 - 8428: 47,-21 - 8429: 49,-21 - 8430: 50,-21 + 8427: 47,-21 + 8428: 49,-21 + 8429: 50,-21 + 8430: 51,-21 8431: 51,-21 8432: 51,-21 - 8433: 51,-21 + 8433: 52,-21 8434: 52,-21 - 8435: 52,-21 - 8657: -2,-77 - 8658: -1,-77 - 8659: -7,-77 - 8660: -8,-77 - 8661: -8,-81 - 8662: -7,-81 - 8663: -6,-81 - 8664: -3,-81 - 8665: -2,-81 - 8666: -1,-81 + 8656: -2,-77 + 8657: -1,-77 + 8658: -7,-77 + 8659: -8,-77 + 8660: -8,-81 + 8661: -7,-81 + 8662: -6,-81 + 8663: -3,-81 + 8664: -2,-81 + 8665: -1,-81 + 8747: 6,-27 8748: 6,-27 - 8749: 6,-27 - 8750: 7,-27 + 8749: 7,-27 + 8750: 9,-27 8751: 9,-27 - 8752: 9,-27 + 8752: 10,-27 8753: 10,-27 - 8754: 10,-27 - 8755: 8,-27 - 8756: -12,-27 - 8757: -11,-27 - 8758: -10,-27 - 8759: -9,-27 - 8760: -8,-27 - 8831: -1,-28 - 8871: -1,-36 - 9406: -1,-43 - 9407: -1,-51 - 9408: -1,-56 - 9409: -1,-62 - 9437: -5,-69 - 9438: -4,-69 - 9444: -5,-74 - 9445: -4,-74 - 9452: -6,-69 - 9453: -3,-69 - 9471: 69,-41 - 9538: 5,-29 - 9539: 11,-29 - 10659: 73,-48 - 10660: 73,-48 - 10971: 40,-66 - 11382: -6,-29 - 11383: -13,-29 - 11384: -15,-29 - 11387: -15,-29 - 11388: -13,-29 - 13455: -41,-64 - 14956: 11,22 - 14957: 12,22 - 14958: 13,22 - 14959: 14,22 - 14960: 4,22 - 14961: 3,22 - 14962: 2,22 - 14963: 1,22 - 14964: -3,22 - 14965: -4,22 - 14966: -5,22 - 14967: -6,22 - 14968: -13,22 - 14969: -14,22 - 14970: -15,22 - 14971: -15,22 - 14972: -16,22 - 15417: -42,19 - 15418: -42,13 - 15419: -42,8 - 15565: 95,-2 - 15647: 92,-3 - 15648: 93,-3 - 15649: 94,-3 - 15663: 96,7 - 15669: 96,5 - 18719: -3,-10 - 18720: -2,-10 - 18721: -2,-10 - 18722: 0,-10 - 18723: 0,-10 - 18724: -1,-10 - 18725: 1,-10 - 18726: 4,-10 - 18727: 5,-10 - 18728: 6,-10 - 18729: 7,-10 - 18730: 10,-10 - 18731: 11,-10 - 18732: 12,-10 - 18733: 13,-10 - 18734: -9,-10 - 18735: -8,-10 - 18736: -7,-10 - 18737: -7,-10 - 18738: -6,-10 - 18739: -12,-10 - 18740: -13,-10 - 18741: -14,-10 - 18742: -15,-10 - 19677: 35,-15 - 19678: 36,-15 - 19679: 37,-15 - 19680: 38,-15 - 19681: 39,-15 - 19682: 35,-12 - 19683: 36,-12 - 19684: 37,-12 - 19685: 38,-12 - 19686: 39,-12 - 20196: -19,-6 - 20197: -19,1 - 20198: -19,8 - 20199: -19,15 + 8754: 8,-27 + 8755: -12,-27 + 8756: -11,-27 + 8757: -10,-27 + 8758: -9,-27 + 8759: -8,-27 + 8830: -1,-28 + 8870: -1,-36 + 9394: -1,-43 + 9395: -1,-51 + 9396: -1,-56 + 9397: -1,-62 + 9425: -5,-69 + 9426: -4,-69 + 9432: -5,-74 + 9433: -4,-74 + 9440: -6,-69 + 9441: -3,-69 + 9459: 69,-41 + 9516: 5,-29 + 9517: 11,-29 + 10597: 73,-48 + 10598: 73,-48 + 11320: -6,-29 + 11321: -13,-29 + 11322: -15,-29 + 11325: -15,-29 + 11326: -13,-29 + 13392: -41,-64 + 14893: 11,22 + 14894: 12,22 + 14895: 13,22 + 14896: 14,22 + 14897: 4,22 + 14898: 3,22 + 14899: 2,22 + 14900: 1,22 + 14901: -3,22 + 14902: -4,22 + 14903: -5,22 + 14904: -6,22 + 14905: -13,22 + 14906: -14,22 + 14907: -15,22 + 14908: -15,22 + 14909: -16,22 + 15354: -42,19 + 15355: -42,13 + 15356: -42,8 + 15502: 95,-2 + 15584: 92,-3 + 15585: 93,-3 + 15586: 94,-3 + 15600: 96,7 + 15606: 96,5 + 18656: -3,-10 + 18657: -2,-10 + 18658: -2,-10 + 18659: 0,-10 + 18660: 0,-10 + 18661: -1,-10 + 18662: 1,-10 + 18663: 4,-10 + 18664: 5,-10 + 18665: 6,-10 + 18666: 7,-10 + 18667: 10,-10 + 18668: 11,-10 + 18669: 12,-10 + 18670: 13,-10 + 18671: -9,-10 + 18672: -8,-10 + 18673: -7,-10 + 18674: -7,-10 + 18675: -6,-10 + 18676: -12,-10 + 18677: -13,-10 + 18678: -14,-10 + 18679: -15,-10 + 19613: 35,-15 + 19614: 36,-15 + 19615: 37,-15 + 19616: 38,-15 + 19617: 39,-15 + 19618: 35,-12 + 19619: 36,-12 + 19620: 37,-12 + 19621: 38,-12 + 19622: 39,-12 + 20132: -19,-6 + 20133: -19,1 + 20134: -19,8 + 20135: -19,15 + 24772: 40,-69 + 24773: 40,-66 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineN decals: - 4080: -19,15 - 4089: -19,8 + 4079: -19,15 + 4088: -19,8 - node: color: '#334E6DFF' id: BrickTileWhiteLineS decals: - 21286: -12,13 - 21287: -11,13 - 22599: 8,-7 - 22600: 10,-7 - 22601: 11,-7 - 22609: -10,-7 + 21218: -12,13 + 21219: -11,13 + 22531: 8,-7 + 22532: 10,-7 + 22533: 11,-7 + 22541: -10,-7 - node: color: '#3EB388FF' id: BrickTileWhiteLineS decals: - 21648: -55,39 - 21658: -46,18 - 21659: -47,18 - 21660: -48,18 - 21661: -49,18 - 21687: -54,19 - 21688: -53,19 - 21695: -55,23 - 21696: -52,21 - 21712: -50,21 - 21713: -50,36 - 21714: -49,36 - 21715: -48,36 - 21731: -48,43 - 21747: -59,55 - 21768: -59,44 - 21769: -58,44 - 21770: -57,44 - 21771: -55,44 - 21772: -53,44 - 21773: -52,44 - 21774: -51,44 - 21775: -50,44 - 21776: -49,44 - 21777: -47,44 - 21778: -46,44 - 21779: -45,44 - 21784: -46,58 - 21785: -46,56 - 21831: -46,56 - 21832: -46,58 - 21835: -44,51 - 21858: -59,55 - 21870: -59,59 + 21580: -55,39 + 21590: -46,18 + 21591: -47,18 + 21592: -48,18 + 21593: -49,18 + 21619: -54,19 + 21620: -53,19 + 21627: -55,23 + 21628: -52,21 + 21644: -50,21 + 21645: -50,36 + 21646: -49,36 + 21647: -48,36 + 21663: -48,43 + 21679: -59,55 + 21700: -59,44 + 21701: -58,44 + 21702: -57,44 + 21703: -55,44 + 21704: -53,44 + 21705: -52,44 + 21706: -51,44 + 21707: -50,44 + 21708: -49,44 + 21709: -47,44 + 21710: -46,44 + 21711: -45,44 + 21716: -46,58 + 21717: -46,56 + 21763: -46,56 + 21764: -46,58 + 21767: -44,51 + 21790: -59,55 + 21802: -59,59 + - node: + color: '#439909FF' + id: BrickTileWhiteLineS + decals: + 24633: 27,-59 + 24649: 27,-54 + 24659: 30,-61 + 24660: 31,-61 + 24661: 32,-61 + 24681: 44,-63 + 24690: 40,-63 + 24714: 35,-72 + 24733: 31,-70 + 24734: 30,-70 + 24735: 29,-70 + 24736: 28,-70 + 24737: 26,-70 + 24738: 27,-70 - node: color: '#52B4E9FF' id: BrickTileWhiteLineS decals: - 23162: 17,-30 - 23211: 11,-34 - 23213: 13,-34 - 23214: 10,-36 - 23215: 11,-36 - 23216: 12,-36 - 23217: 13,-36 - 23218: 14,-36 - 23224: 12,-33 - 23225: 12,-34 - 23251: 20,-36 - 23252: 21,-36 - 23253: 21,-36 - 23254: 22,-36 - 23255: 23,-36 - 23256: 23,-36 - 23257: 24,-36 - 23258: 25,-36 - 23259: 29,-36 - 23260: 30,-36 - 23261: 30,-36 - 23262: 31,-36 - 23263: 32,-36 - 23264: 32,-36 - 23265: 33,-36 - 23266: 34,-36 - 23267: 36,-36 - 23268: 36,-36 - 23269: 37,-36 - 23270: 35,-36 - 23306: 36,-33 - 23307: 31,-34 - 23308: 32,-34 - 23309: 33,-34 - 23310: 34,-34 - 23311: 34,-34 - 23312: 35,-34 - 23313: 36,-34 - 23314: 36,-34 - 23315: 26,-34 - 23316: 27,-34 - 23317: 27,-34 - 23318: 25,-34 - 23319: 25,-34 - 23320: 24,-34 - 23321: 24,-34 - 23322: 23,-34 - 23323: 22,-34 - 23324: 25,-34 - 23325: 24,-34 - 23326: 21,-33 - 23394: 9,-42 - 23395: 4,-42 - 23447: 31,-42 - 23448: 32,-42 - 23449: 33,-42 - 23450: 33,-42 - 23451: 34,-42 - 23452: 34,-42 - 23453: 35,-42 - 23454: 35,-42 - 23455: 36,-42 - 23456: 36,-42 - 23457: 37,-45 - 23462: 37,-43 - 23499: 32,-39 - 23500: 33,-39 - 23501: 34,-39 - 23502: 34,-39 - 23503: 35,-39 - 23504: 35,-39 - 23505: 36,-39 - 23506: 36,-39 - 23599: 9,-42 - 23621: 2,-44 - 23623: 5,-47 - 23624: 6,-47 - 23625: 7,-47 - 23626: 8,-47 - 23627: 9,-47 - 23628: 10,-41 - 23629: 11,-41 - 23630: 12,-41 - 23631: 13,-41 - 23632: 13,-41 - 23664: 13,-45 - 23671: 16,-37 - 23672: 17,-37 - 23673: 18,-37 - 23674: 17,-39 - 23691: 21,-41 - 23692: 22,-41 - 23693: 23,-41 - 23705: 27,-39 - 23709: 26,-37 - 23710: 27,-37 - 23711: 28,-37 - 23733: 27,-46 - 23760: 29,-28 - 23761: 28,-27 - 23762: 30,-27 - 23763: 31,-27 - 23803: 21,-29 - 23804: 22,-29 - 23813: 25,-30 - 23823: 31,-30 - 23824: 27,-32 - 23825: 28,-32 - 23863: -6,-62 - 23873: -7,-57 - 23876: -7,-62 - 23877: 5,67 - 23878: 7,67 - 23888: 6,62 + 23091: 17,-30 + 23140: 11,-34 + 23141: 13,-34 + 23142: 10,-36 + 23143: 11,-36 + 23144: 12,-36 + 23145: 13,-36 + 23146: 14,-36 + 23152: 12,-33 + 23153: 12,-34 + 23179: 20,-36 + 23180: 21,-36 + 23181: 21,-36 + 23182: 22,-36 + 23183: 23,-36 + 23184: 23,-36 + 23185: 24,-36 + 23186: 25,-36 + 23187: 29,-36 + 23188: 30,-36 + 23189: 30,-36 + 23190: 31,-36 + 23191: 32,-36 + 23192: 32,-36 + 23193: 33,-36 + 23194: 34,-36 + 23195: 36,-36 + 23196: 36,-36 + 23197: 37,-36 + 23198: 35,-36 + 23233: 36,-33 + 23234: 31,-34 + 23235: 32,-34 + 23236: 33,-34 + 23237: 34,-34 + 23238: 34,-34 + 23239: 35,-34 + 23240: 36,-34 + 23241: 36,-34 + 23242: 26,-34 + 23243: 27,-34 + 23244: 27,-34 + 23245: 25,-34 + 23246: 25,-34 + 23247: 24,-34 + 23248: 24,-34 + 23249: 23,-34 + 23250: 22,-34 + 23251: 25,-34 + 23252: 24,-34 + 23253: 21,-33 + 23321: 9,-42 + 23322: 4,-42 + 23374: 31,-42 + 23375: 32,-42 + 23376: 33,-42 + 23377: 33,-42 + 23378: 34,-42 + 23379: 34,-42 + 23380: 35,-42 + 23381: 35,-42 + 23382: 36,-42 + 23383: 36,-42 + 23384: 37,-45 + 23389: 37,-43 + 23424: 32,-39 + 23425: 33,-39 + 23426: 34,-39 + 23427: 34,-39 + 23428: 35,-39 + 23429: 35,-39 + 23430: 36,-39 + 23431: 36,-39 + 23524: 9,-42 + 23545: 2,-44 + 23547: 5,-47 + 23548: 6,-47 + 23549: 7,-47 + 23550: 8,-47 + 23551: 9,-47 + 23552: 10,-41 + 23553: 11,-41 + 23554: 12,-41 + 23555: 13,-41 + 23556: 13,-41 + 23584: 13,-45 + 23591: 16,-37 + 23592: 17,-37 + 23593: 18,-37 + 23594: 17,-39 + 23611: 21,-41 + 23612: 22,-41 + 23613: 23,-41 + 23625: 27,-39 + 23629: 26,-37 + 23630: 27,-37 + 23631: 28,-37 + 23653: 27,-46 + 23680: 29,-28 + 23681: 28,-27 + 23682: 30,-27 + 23683: 31,-27 + 23723: 21,-29 + 23724: 22,-29 + 23733: 25,-30 + 23743: 31,-30 + 23744: 27,-32 + 23745: 28,-32 + 23782: -6,-62 + 23792: -7,-57 + 23795: -7,-62 + 23796: 5,67 + 23797: 7,67 + 23807: 6,62 - node: color: '#8BC9DAFF' id: BrickTileWhiteLineS decals: - 17852: -50,21 - 17859: -48,18 - 17860: -47,18 - 17861: -46,18 - 17885: -55,39 - 17904: -50,36 - 17905: -49,36 - 17906: -48,36 - 17914: -44,51 - 17915: -44,51 - 17928: -46,56 - 17929: -46,58 - 17952: -48,43 - 17963: -47,44 - 17964: -46,44 - 17968: -45,44 - 18013: -59,55 - 18022: -59,44 - 18023: -58,44 - 18024: -57,44 - 18025: -55,44 - 18026: -52,44 - 18027: -51,44 - 18028: -50,44 - 18029: -49,44 - 18034: -53,44 - 18093: -55,23 - 18100: -52,21 + 17789: -50,21 + 17796: -48,18 + 17797: -47,18 + 17798: -46,18 + 17822: -55,39 + 17841: -50,36 + 17842: -49,36 + 17843: -48,36 + 17851: -44,51 + 17852: -44,51 + 17865: -46,56 + 17866: -46,58 + 17889: -48,43 + 17900: -47,44 + 17901: -46,44 + 17905: -45,44 + 17950: -59,55 + 17959: -59,44 + 17960: -58,44 + 17961: -57,44 + 17962: -55,44 + 17963: -52,44 + 17964: -51,44 + 17965: -50,44 + 17966: -49,44 + 17971: -53,44 + 18030: -55,23 + 18037: -52,21 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineS decals: - 9479: 6,-24 - 9480: 7,-24 - 9481: 8,-24 - 9482: 9,-24 - 9483: 9,-24 - 9484: 10,-24 - 9619: 20,-36 - 9620: 21,-36 - 9621: 22,-36 - 9622: 23,-36 - 9623: 24,-36 - 9624: 25,-36 - 9625: 29,-36 - 9626: 30,-36 - 9627: 31,-36 - 9628: 33,-36 - 9629: 32,-36 - 9630: 34,-36 - 9631: 35,-36 - 9632: 36,-36 - 9633: 37,-36 - 9699: 10,-36 - 9700: 11,-36 - 9701: 12,-36 - 9702: 13,-36 - 9735: 29,-33 - 9736: 36,-33 - 9737: 21,-33 - 9738: 16,-37 - 9739: 17,-37 - 9740: 18,-37 - 9741: 26,-37 - 9742: 27,-37 - 9743: 28,-37 - 9803: 22,-34 - 9804: 23,-34 - 9805: 24,-34 - 9806: 26,-34 - 9807: 27,-34 - 9808: 25,-34 - 9809: 31,-34 - 9810: 33,-34 - 9811: 34,-34 - 9812: 36,-34 - 9813: 34,-34 - 9814: 35,-34 - 9816: 27,-39 - 9817: 17,-39 - 9818: 17,-30 - 9819: 11,-34 - 9822: 13,-34 - 9869: 27,-46 - 9919: 21,-41 - 9920: 22,-41 - 9921: 23,-41 - 9956: 37,-45 - 9957: 31,-42 - 9958: 32,-42 - 9959: 33,-42 - 9960: 33,-42 - 9961: 34,-42 - 9962: 35,-42 - 9963: 36,-42 - 9977: 37,-43 - 9984: 32,-39 - 9985: 33,-39 - 9986: 34,-39 - 9987: 35,-39 - 9988: 36,-39 - 10017: 25,-30 - 10020: 31,-30 - 10030: 29,-28 - 10060: 30,-27 - 10061: 30,-27 - 10062: 31,-27 - 10090: 10,-41 - 10091: 11,-41 - 10092: 12,-41 - 10093: 13,-41 - 10113: 21,-49 - 10114: 23,-49 - 10313: 5,-47 - 10314: 6,-47 - 10315: 7,-47 - 10316: 8,-47 - 10317: 9,-47 - 10324: 2,-44 - 10327: 4,-42 - 10328: 9,-42 - 10359: 13,-45 - 19348: 6,66 - 19354: 6,62 - 19382: -6,-62 - 19721: 22,-29 - 19722: 21,-29 - 19743: 27,-32 - 19744: 28,-32 - 19746: 29,-28 + 9467: 6,-24 + 9468: 7,-24 + 9469: 8,-24 + 9470: 9,-24 + 9471: 9,-24 + 9472: 10,-24 + 9595: 20,-36 + 9596: 21,-36 + 9597: 22,-36 + 9598: 23,-36 + 9599: 24,-36 + 9600: 25,-36 + 9601: 29,-36 + 9602: 30,-36 + 9603: 31,-36 + 9604: 33,-36 + 9605: 32,-36 + 9606: 34,-36 + 9607: 35,-36 + 9608: 36,-36 + 9609: 37,-36 + 9664: 10,-36 + 9665: 11,-36 + 9666: 12,-36 + 9667: 13,-36 + 9698: 29,-33 + 9699: 36,-33 + 9700: 21,-33 + 9701: 16,-37 + 9702: 17,-37 + 9703: 18,-37 + 9704: 26,-37 + 9705: 27,-37 + 9706: 28,-37 + 9765: 22,-34 + 9766: 23,-34 + 9767: 24,-34 + 9768: 26,-34 + 9769: 27,-34 + 9770: 25,-34 + 9771: 31,-34 + 9772: 33,-34 + 9773: 34,-34 + 9774: 36,-34 + 9775: 34,-34 + 9776: 35,-34 + 9777: 27,-39 + 9778: 17,-39 + 9779: 17,-30 + 9780: 11,-34 + 9781: 13,-34 + 9816: 27,-46 + 9866: 21,-41 + 9867: 22,-41 + 9868: 23,-41 + 9903: 37,-45 + 9904: 31,-42 + 9905: 32,-42 + 9906: 33,-42 + 9907: 33,-42 + 9908: 34,-42 + 9909: 35,-42 + 9910: 36,-42 + 9923: 37,-43 + 9930: 32,-39 + 9931: 33,-39 + 9932: 34,-39 + 9933: 35,-39 + 9934: 36,-39 + 9963: 25,-30 + 9966: 31,-30 + 9976: 29,-28 + 10006: 30,-27 + 10007: 30,-27 + 10008: 31,-27 + 10036: 10,-41 + 10037: 11,-41 + 10038: 12,-41 + 10039: 13,-41 + 10059: 21,-49 + 10060: 23,-49 + 10259: 5,-47 + 10260: 6,-47 + 10261: 7,-47 + 10262: 8,-47 + 10263: 9,-47 + 10270: 2,-44 + 10273: 4,-42 + 10274: 9,-42 + 10300: 13,-45 + 19285: 6,66 + 19291: 6,62 + 19318: -6,-62 + 19657: 22,-29 + 19658: 21,-29 + 19679: 27,-32 + 19680: 28,-32 + 19682: 29,-28 - node: color: '#A46106FF' id: BrickTileWhiteLineS decals: - 21921: 4,25 - 21922: 5,25 - 21923: 7,25 - 21924: 8,25 - 21925: 3,26 - 21926: 6,26 - 21927: 9,26 - 21956: 4,30 - 21957: 5,30 - 21958: 6,30 - 21959: 7,30 - 21960: 8,30 - 21998: 3,33 - 21999: 5,33 - 22000: 6,33 - 22001: 7,33 - 22002: 8,33 - 22011: 4,36 - 22012: 5,36 - 22013: 6,36 - 22014: 7,36 - 22015: 7,36 - 22016: 8,36 - 22017: 8,36 - 22018: 9,36 - 22019: 9,36 - 22039: 5,38 - 22040: 10,38 - 22054: 6,39 - 22082: 10,41 - 22083: 9,42 - 22129: 16,38 - 22130: 17,38 - 22131: 17,38 - 22132: 18,38 - 22133: 18,38 - 22134: 16,34 - 22135: 17,34 - 22136: 18,34 - 22137: 18,34 - 22138: 19,34 - 22139: 19,34 - 22140: 14,34 - 22187: 10,48 - 22188: 11,48 - 22189: 11,48 - 22190: 12,48 - 22198: 10,55 - 22199: 17,55 - 22217: 17,55 - 22218: 19,52 - 22219: 20,52 - 22220: 20,52 - 22221: 21,52 - 22222: 21,52 - 22223: 21,52 - 22224: 21,52 - 22225: 22,52 - 22268: 16,46 - 22269: 17,46 - 22270: 19,46 - 22271: 20,46 - 22272: 21,46 - 22273: 21,46 - 22274: 22,46 - 22275: 22,46 - 22276: 16,44 - 22277: 17,44 - 22278: 19,44 - 22279: 20,44 - 22280: 21,44 - 22281: 22,44 - 22282: 22,44 - 22283: 16,42 - 22284: 17,42 - 22285: 19,42 - 22286: 20,42 - 22287: 21,42 - 22288: 22,42 - 22289: 22,42 - 22290: 22,40 - 22291: 23,40 - 22324: 19,48 - 22325: 20,48 - 22326: 21,48 - 22327: 22,48 - 22328: 19,50 - 22329: 21,50 - 22330: 21,50 - 22331: 22,50 - 22332: 20,50 - 22395: 26,48 - 22396: 26,48 - 22397: 27,48 - 22398: 29,48 - 22399: 29,48 - 22400: 30,48 - 22401: 31,48 - 22402: 32,48 - 22403: 32,48 - 22404: 34,48 - 22405: 34,48 - 22406: 35,48 - 22407: 36,48 - 22408: 37,48 - 22409: 37,48 - 22410: 37,48 - 22411: 37,48 - 22412: 37,48 - 22413: 38,48 - 22414: 38,48 - 22443: 13,28 - 22444: 14,28 - 22472: 14,25 - 22473: 15,25 - 22474: 16,25 - 22475: 13,26 - 22492: 16,32 - 22499: 15,33 - 22522: 25,34 - 22523: 25,34 - 22524: 26,34 - 22525: 27,34 - 22526: 28,34 - 22527: 28,34 - 22543: 26,38 - 22544: 27,38 - 22562: 28,39 + 21853: 4,25 + 21854: 5,25 + 21855: 7,25 + 21856: 8,25 + 21857: 3,26 + 21858: 6,26 + 21859: 9,26 + 21888: 4,30 + 21889: 5,30 + 21890: 6,30 + 21891: 7,30 + 21892: 8,30 + 21930: 3,33 + 21931: 5,33 + 21932: 6,33 + 21933: 7,33 + 21934: 8,33 + 21943: 4,36 + 21944: 5,36 + 21945: 6,36 + 21946: 7,36 + 21947: 7,36 + 21948: 8,36 + 21949: 8,36 + 21950: 9,36 + 21951: 9,36 + 21971: 5,38 + 21972: 10,38 + 21986: 6,39 + 22014: 10,41 + 22015: 9,42 + 22061: 16,38 + 22062: 17,38 + 22063: 17,38 + 22064: 18,38 + 22065: 18,38 + 22066: 16,34 + 22067: 17,34 + 22068: 18,34 + 22069: 18,34 + 22070: 19,34 + 22071: 19,34 + 22072: 14,34 + 22119: 10,48 + 22120: 11,48 + 22121: 11,48 + 22122: 12,48 + 22130: 10,55 + 22131: 17,55 + 22149: 17,55 + 22150: 19,52 + 22151: 20,52 + 22152: 20,52 + 22153: 21,52 + 22154: 21,52 + 22155: 21,52 + 22156: 21,52 + 22157: 22,52 + 22200: 16,46 + 22201: 17,46 + 22202: 19,46 + 22203: 20,46 + 22204: 21,46 + 22205: 21,46 + 22206: 22,46 + 22207: 22,46 + 22208: 16,44 + 22209: 17,44 + 22210: 19,44 + 22211: 20,44 + 22212: 21,44 + 22213: 22,44 + 22214: 22,44 + 22215: 16,42 + 22216: 17,42 + 22217: 19,42 + 22218: 20,42 + 22219: 21,42 + 22220: 22,42 + 22221: 22,42 + 22222: 22,40 + 22223: 23,40 + 22256: 19,48 + 22257: 20,48 + 22258: 21,48 + 22259: 22,48 + 22260: 19,50 + 22261: 21,50 + 22262: 21,50 + 22263: 22,50 + 22264: 20,50 + 22327: 26,48 + 22328: 26,48 + 22329: 27,48 + 22330: 29,48 + 22331: 29,48 + 22332: 30,48 + 22333: 31,48 + 22334: 32,48 + 22335: 32,48 + 22336: 34,48 + 22337: 34,48 + 22338: 35,48 + 22339: 36,48 + 22340: 37,48 + 22341: 37,48 + 22342: 37,48 + 22343: 37,48 + 22344: 37,48 + 22345: 38,48 + 22346: 38,48 + 22375: 13,28 + 22376: 14,28 + 22404: 14,25 + 22405: 15,25 + 22406: 16,25 + 22407: 13,26 + 22424: 16,32 + 22431: 15,33 + 22454: 25,34 + 22455: 25,34 + 22456: 26,34 + 22457: 27,34 + 22458: 28,34 + 22459: 28,34 + 22475: 26,38 + 22476: 27,38 + 22494: 28,39 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineS decals: - 2871: -25,47 - 2876: -26,47 - 2877: -30,46 - 2878: -29,46 - 2879: -28,46 - 2890: -33,46 - 2920: -32,54 - 2921: -30,54 - 2922: -28,51 - 18345: -26,52 + 2870: -25,47 + 2875: -26,47 + 2876: -30,46 + 2877: -29,46 + 2878: -28,46 + 2889: -33,46 + 2919: -32,54 + 2920: -30,54 + 2921: -28,51 + 18282: -26,52 - node: color: '#B18BDAFF' id: BrickTileWhiteLineS decals: - 5073: 20,26 - 5074: 23,27 - 5075: 25,26 - 5079: 20,33 - 5142: 39,28 - 5143: 40,28 - 5144: 41,28 - 5145: 42,28 - 11433: -23,-25 - 11434: -29,-34 - 11435: -28,-34 - 11436: -27,-34 - 11437: -26,-34 - 11438: -25,-34 - 11439: -24,-34 - 11440: -18,-34 - 11441: -17,-34 - 11442: -16,-34 - 11443: -15,-34 - 11444: -14,-34 - 11472: -14,-38 - 11473: -14,-38 - 11490: -14,-46 - 11491: -14,-46 - 11494: -15,-33 - 11495: -13,-33 - 11496: -13,-33 - 11537: -20,-36 - 11538: -20,-36 - 11539: -19,-36 - 11540: -19,-36 - 11541: -18,-36 - 11542: -18,-36 - 11543: -17,-36 - 11544: -17,-36 - 11545: -16,-36 - 11546: -16,-36 - 11558: -31,-36 - 11559: -30,-36 - 11560: -28,-36 - 11561: -28,-36 - 11562: -27,-36 - 11563: -26,-36 - 11564: -26,-36 - 11565: -25,-36 - 11566: -25,-36 - 11567: -23,-36 - 11568: -22,-36 - 11569: -22,-36 - 11578: -24,-33 - 11579: -23,-33 - 11580: -22,-33 - 11581: -22,-33 - 11605: -12,-24 - 11606: -11,-24 - 11607: -11,-24 - 11608: -9,-24 - 11609: -9,-24 - 11610: -8,-24 - 11611: -10,-24 - 11625: -15,-33 - 11626: -13,-33 - 11636: -9,-36 - 11637: -9,-36 - 11638: -8,-36 - 11639: -6,-36 - 11642: -6,-29 - 11772: -15,-37 - 11773: -14,-37 - 11774: -14,-37 - 11775: -13,-37 - 11888: -29,-33 - 11900: -30,-26 - 11901: -29,-26 - 11902: -28,-26 - 11903: -28,-30 - 11904: -28,-30 - 12070: -23,-23 - 12167: -25,-38 - 12168: -24,-38 - 12182: -29,-38 - 12199: -15,-54 - 12200: -14,-54 - 12204: -15,-45 - 12205: -14,-45 - 12206: -13,-45 - 12221: -18,-60 - 12222: -17,-60 - 12223: -16,-60 - 12224: -15,-60 - 12225: -14,-60 - 12242: -16,-55 - 12253: -10,-53 - 12254: -9,-53 - 12255: -8,-53 - 12256: -7,-53 - 12257: -5,-53 - 12268: -10,-48 - 12280: -6,-45 - 12293: -20,-44 - 12294: -18,-44 - 12300: -20,-39 - 12301: -19,-39 - 12302: -18,-39 - 12606: -8,-31 - 12607: -7,-31 - 20021: 34,40 + 5072: 20,26 + 5073: 23,27 + 5074: 25,26 + 5078: 20,33 + 5141: 39,28 + 5142: 40,28 + 5143: 41,28 + 5144: 42,28 + 11371: -23,-25 + 11372: -29,-34 + 11373: -28,-34 + 11374: -27,-34 + 11375: -26,-34 + 11376: -25,-34 + 11377: -24,-34 + 11378: -18,-34 + 11379: -17,-34 + 11380: -16,-34 + 11381: -15,-34 + 11382: -14,-34 + 11410: -14,-38 + 11411: -14,-38 + 11428: -14,-46 + 11429: -14,-46 + 11432: -15,-33 + 11433: -13,-33 + 11434: -13,-33 + 11475: -20,-36 + 11476: -20,-36 + 11477: -19,-36 + 11478: -19,-36 + 11479: -18,-36 + 11480: -18,-36 + 11481: -17,-36 + 11482: -17,-36 + 11483: -16,-36 + 11484: -16,-36 + 11496: -31,-36 + 11497: -30,-36 + 11498: -28,-36 + 11499: -28,-36 + 11500: -27,-36 + 11501: -26,-36 + 11502: -26,-36 + 11503: -25,-36 + 11504: -25,-36 + 11505: -23,-36 + 11506: -22,-36 + 11507: -22,-36 + 11516: -24,-33 + 11517: -23,-33 + 11518: -22,-33 + 11519: -22,-33 + 11543: -12,-24 + 11544: -11,-24 + 11545: -11,-24 + 11546: -9,-24 + 11547: -9,-24 + 11548: -8,-24 + 11549: -10,-24 + 11563: -15,-33 + 11564: -13,-33 + 11574: -9,-36 + 11575: -9,-36 + 11576: -8,-36 + 11577: -6,-36 + 11580: -6,-29 + 11710: -15,-37 + 11711: -14,-37 + 11712: -14,-37 + 11713: -13,-37 + 11826: -29,-33 + 12008: -23,-23 + 12105: -25,-38 + 12106: -24,-38 + 12120: -29,-38 + 12137: -15,-54 + 12138: -14,-54 + 12142: -15,-45 + 12143: -14,-45 + 12144: -13,-45 + 12159: -18,-60 + 12160: -17,-60 + 12161: -16,-60 + 12162: -15,-60 + 12163: -14,-60 + 12180: -16,-55 + 12191: -10,-53 + 12192: -9,-53 + 12193: -8,-53 + 12194: -7,-53 + 12195: -5,-53 + 12206: -10,-48 + 12218: -6,-45 + 12231: -20,-44 + 12232: -18,-44 + 12238: -20,-39 + 12239: -19,-39 + 12240: -18,-39 + 12543: -8,-31 + 12544: -7,-31 + 19957: 34,40 - node: color: '#B240B4FF' id: BrickTileWhiteLineS decals: - 661: -24,-58 - 662: -23,-58 - 663: -22,-58 + 660: -24,-58 + 661: -23,-58 + 662: -22,-58 - node: color: '#CEDA8BFF' id: BrickTileWhiteLineS decals: - 10806: 27,-54 - 10832: 35,-72 - 10870: 44,-63 - 10875: 40,-63 - 10902: 38,-71 - 10906: 39,-72 - 10954: 28,-69 - 10955: 30,-69 - 10957: 29,-67 + 10744: 27,-54 + 10844: 39,-72 - node: color: '#D381C9FF' id: BrickTileWhiteLineS decals: - 22635: -7,-28 - 22636: -5,-28 - 22647: -14,-28 - 22652: -20,-36 - 22653: -19,-36 - 22654: -18,-36 - 22655: -18,-36 - 22656: -17,-36 - 22657: -17,-36 - 22658: -17,-36 - 22659: -16,-36 - 22660: -16,-36 - 22665: -30,-36 - 22666: -28,-36 - 22667: -28,-36 - 22668: -27,-36 - 22669: -26,-36 - 22670: -25,-36 - 22671: -25,-36 - 22672: -23,-36 - 22673: -22,-36 - 22698: -15,-33 - 22699: -13,-33 - 22719: -15,-37 - 22720: -14,-37 - 22721: -13,-37 - 22722: -13,-37 - 22744: -15,-54 - 22745: -14,-54 - 22756: -15,-45 - 22757: -14,-45 - 22758: -14,-45 - 22759: -13,-45 - 22760: -13,-45 - 22785: -20,-39 - 22786: -19,-39 - 22787: -18,-39 - 22788: -18,-39 - 22800: -20,-44 - 22801: -18,-44 - 22865: -23,-23 - 22871: -29,-33 - 22884: -24,-33 - 22885: -23,-33 - 22886: -22,-33 - 22887: -23,-25 - 22909: -29,-34 - 22910: -29,-34 - 22911: -28,-34 - 22912: -27,-34 - 22913: -27,-34 - 22914: -26,-34 - 22915: -25,-34 - 22916: -24,-34 - 22917: -24,-34 - 22918: -18,-34 - 22919: -17,-34 - 22920: -16,-34 - 22921: -15,-34 - 22922: -14,-34 - 22923: -14,-34 - 22978: -6,-29 - 22986: -9,-36 - 22987: -8,-36 - 22988: -6,-36 - 23024: -14,-38 - 23025: -14,-46 - 23032: -6,-45 - 23033: -10,-53 - 23034: -9,-53 - 23035: -8,-53 - 23036: -8,-53 - 23037: -7,-53 - 23038: -5,-53 - 23055: -6,-45 - 23061: -10,-48 - 23089: -16,-55 - 23090: -18,-60 - 23091: -17,-60 - 23092: -16,-60 - 23093: -16,-60 - 23094: -15,-60 - 23095: -15,-60 - 23096: -14,-60 - 23097: -14,-60 + 22567: -7,-28 + 22568: -5,-28 + 22579: -14,-28 + 22584: -20,-36 + 22585: -19,-36 + 22586: -18,-36 + 22587: -18,-36 + 22588: -17,-36 + 22589: -17,-36 + 22590: -17,-36 + 22591: -16,-36 + 22592: -16,-36 + 22597: -30,-36 + 22598: -28,-36 + 22599: -28,-36 + 22600: -27,-36 + 22601: -26,-36 + 22602: -25,-36 + 22603: -25,-36 + 22604: -23,-36 + 22605: -22,-36 + 22630: -15,-33 + 22631: -13,-33 + 22651: -15,-37 + 22652: -14,-37 + 22653: -13,-37 + 22654: -13,-37 + 22676: -15,-54 + 22677: -14,-54 + 22688: -15,-45 + 22689: -14,-45 + 22690: -14,-45 + 22691: -13,-45 + 22692: -13,-45 + 22717: -20,-39 + 22718: -19,-39 + 22719: -18,-39 + 22720: -18,-39 + 22732: -20,-44 + 22733: -18,-44 + 22797: -23,-23 + 22803: -29,-33 + 22816: -24,-33 + 22817: -23,-33 + 22818: -22,-33 + 22819: -23,-25 + 22841: -29,-34 + 22842: -29,-34 + 22843: -28,-34 + 22844: -27,-34 + 22845: -27,-34 + 22846: -26,-34 + 22847: -25,-34 + 22848: -24,-34 + 22849: -24,-34 + 22850: -18,-34 + 22851: -17,-34 + 22852: -16,-34 + 22853: -15,-34 + 22854: -14,-34 + 22855: -14,-34 + 22910: -6,-29 + 22918: -9,-36 + 22919: -8,-36 + 22920: -6,-36 + 22956: -14,-38 + 22957: -14,-46 + 22964: -6,-45 + 22965: -10,-53 + 22966: -9,-53 + 22967: -8,-53 + 22968: -8,-53 + 22969: -7,-53 + 22970: -5,-53 + 22987: -6,-45 + 22993: -10,-48 + 23021: -16,-55 + 23022: -18,-60 + 23023: -17,-60 + 23024: -16,-60 + 23025: -16,-60 + 23026: -15,-60 + 23027: -15,-60 + 23028: -14,-60 + 23029: -14,-60 + 24383: -28,-30 + 24384: -29,-28 + 24388: -30,-26 + 24389: -29,-26 + 24390: -28,-26 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineS decals: - 7612: 61,-2 - 7613: 65,-2 - 19211: 69,12 - 19229: 61,-6 - 19230: 62,-6 + 7611: 61,-2 + 7612: 65,-2 + 19148: 69,12 + 19166: 61,-6 + 19167: 62,-6 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineS decals: - 2698: -11,52 - 3810: 11,66 + 2697: -11,52 + 3809: 11,66 - node: color: '#DAA58BFF' id: BrickTileWhiteLineS decals: - 4375: 3,26 - 4376: 9,26 - 4390: 4,32 - 4403: 3,33 - 4406: 9,32 - 4417: 6,26 - 4424: 4,30 - 4425: 6,30 - 4426: 5,30 - 4427: 7,30 - 4428: 8,30 - 4473: 13,26 - 4477: 15,33 - 4478: 16,32 - 4492: 13,28 - 4493: 14,28 - 4519: 5,38 - 4520: 10,38 - 4525: 6,39 - 4552: 10,41 - 4574: 16,34 - 4575: 17,34 - 4576: 18,34 - 4577: 19,34 - 4578: 14,34 - 4619: 20,33 - 4620: 21,33 - 4636: 20,26 - 4639: 23,27 - 4644: 25,26 - 4645: 26,26 - 4681: 20,31 - 4682: 26,31 - 4691: 22,31 - 4692: 23,31 - 4697: 22,30 - 4700: 20,30 - 4701: 26,30 - 4716: 23,29 - 4731: 25,34 - 4732: 26,34 - 4733: 27,34 - 4734: 28,34 - 4751: 26,38 - 4752: 27,38 - 4760: 16,38 - 4761: 17,38 - 4792: 28,39 - 4793: 5,33 - 4794: 6,33 - 4795: 7,33 - 4796: 8,33 - 4797: 5,36 - 4798: 6,36 - 4799: 7,36 - 4800: 8,36 - 4801: 4,36 - 4802: 9,36 - 4819: 5,38 - 4820: 22,40 - 4821: 23,40 - 4836: 26,48 - 4837: 28,48 - 4838: 27,48 - 4839: 28,48 - 4840: 29,48 - 4841: 30,48 - 4842: 31,48 - 4843: 32,48 - 4844: 33,48 - 4845: 34,48 - 4846: 35,48 - 4847: 36,48 - 4848: 37,48 - 4849: 39,48 - 4850: 38,48 - 4868: 34,48 - 4869: 35,48 - 4870: 36,48 - 4871: 37,48 - 4872: 38,48 - 4873: 33,48 - 4874: 32,48 - 4875: 31,48 - 4876: 30,48 - 4877: 29,48 - 4878: 28,48 + 4374: 3,26 + 4375: 9,26 + 4389: 4,32 + 4402: 3,33 + 4405: 9,32 + 4416: 6,26 + 4423: 4,30 + 4424: 6,30 + 4425: 5,30 + 4426: 7,30 + 4427: 8,30 + 4472: 13,26 + 4476: 15,33 + 4477: 16,32 + 4491: 13,28 + 4492: 14,28 + 4518: 5,38 + 4519: 10,38 + 4524: 6,39 + 4551: 10,41 + 4573: 16,34 + 4574: 17,34 + 4575: 18,34 + 4576: 19,34 + 4577: 14,34 + 4618: 20,33 + 4619: 21,33 + 4635: 20,26 + 4638: 23,27 + 4643: 25,26 + 4644: 26,26 + 4680: 20,31 + 4681: 26,31 + 4690: 22,31 + 4691: 23,31 + 4696: 22,30 + 4699: 20,30 + 4700: 26,30 + 4715: 23,29 + 4730: 25,34 + 4731: 26,34 + 4732: 27,34 + 4733: 28,34 + 4750: 26,38 + 4751: 27,38 + 4759: 16,38 + 4760: 17,38 + 4791: 28,39 + 4792: 5,33 + 4793: 6,33 + 4794: 7,33 + 4795: 8,33 + 4796: 5,36 + 4797: 6,36 + 4798: 7,36 + 4799: 8,36 + 4800: 4,36 + 4801: 9,36 + 4818: 5,38 + 4819: 22,40 + 4820: 23,40 + 4835: 26,48 + 4836: 28,48 + 4837: 27,48 + 4838: 28,48 + 4839: 29,48 + 4840: 30,48 + 4841: 31,48 + 4842: 32,48 + 4843: 33,48 + 4844: 34,48 + 4845: 35,48 + 4846: 36,48 + 4847: 37,48 + 4848: 39,48 + 4849: 38,48 + 4867: 34,48 + 4868: 35,48 + 4869: 36,48 + 4870: 37,48 + 4871: 38,48 + 4872: 33,48 + 4873: 32,48 + 4874: 31,48 + 4875: 30,48 + 4876: 29,48 + 4877: 28,48 + 4878: 27,48 4879: 27,48 - 4880: 27,48 - 4881: 26,48 - 4902: 10,55 - 4915: 10,48 + 4880: 26,48 + 4901: 10,55 + 4914: 10,48 + 4915: 11,48 4916: 11,48 - 4917: 11,48 - 4918: 12,48 - 4929: 17,55 - 4947: 19,52 - 4948: 20,52 - 4949: 21,52 - 4950: 22,52 - 4951: 20,50 - 4952: 21,50 - 4953: 22,50 - 4954: 19,48 - 4955: 20,48 - 4956: 21,48 - 4957: 22,48 - 4958: 19,46 - 4959: 20,46 - 4960: 21,46 - 4961: 22,46 - 4962: 16,46 - 4963: 17,46 - 4964: 16,44 - 4965: 17,44 - 4966: 16,42 - 4967: 17,42 - 4968: 19,42 - 4969: 20,42 - 4970: 21,42 - 4971: 22,42 - 4972: 22,44 - 4973: 21,44 - 4974: 19,44 - 4975: 20,44 - 5029: 19,50 - 5156: 41,28 - 5157: 39,28 - 11344: -11,-79 - 14399: -58,9 - 14400: -57,9 - 14401: -56,9 - 14402: -55,9 - 19887: 24,30 - 19891: 24,31 + 4917: 12,48 + 4928: 17,55 + 4946: 19,52 + 4947: 20,52 + 4948: 21,52 + 4949: 22,52 + 4950: 20,50 + 4951: 21,50 + 4952: 22,50 + 4953: 19,48 + 4954: 20,48 + 4955: 21,48 + 4956: 22,48 + 4957: 19,46 + 4958: 20,46 + 4959: 21,46 + 4960: 22,46 + 4961: 16,46 + 4962: 17,46 + 4963: 16,44 + 4964: 17,44 + 4965: 16,42 + 4966: 17,42 + 4967: 19,42 + 4968: 20,42 + 4969: 21,42 + 4970: 22,42 + 4971: 22,44 + 4972: 21,44 + 4973: 19,44 + 4974: 20,44 + 5028: 19,50 + 5155: 41,28 + 5156: 39,28 + 11282: -11,-79 + 14336: -58,9 + 14337: -57,9 + 14338: -56,9 + 14339: -55,9 + 19823: 24,30 + 19827: 24,31 - node: color: '#DABC8BFF' id: BrickTileWhiteLineS decals: - 4011: -39,52 - 4012: -38,52 - 4015: -39,55 - 9563: 4,-36 - 9564: 6,-36 - 9565: 7,-36 - 9566: 8,-36 - 9577: 5,-29 - 9578: 5,-31 - 9579: 6,-31 + 4010: -39,52 + 4011: -38,52 + 4014: -39,55 + 9539: 4,-36 + 9540: 6,-36 + 9541: 7,-36 + 9542: 8,-36 + 9553: 5,-29 + 9554: 5,-31 + 9555: 6,-31 - node: color: '#EFB341FF' id: BrickTileWhiteLineS decals: - 16860: -53,3 - 16861: -52,3 - 16868: -53,7 - 16869: -52,7 - 16874: -53,3 - 16875: -52,3 - 16878: -49,3 - 16891: -50,-4 - 16892: -61,1 - 16893: -60,1 - 16899: -60,-4 - 16900: -59,-4 - 16901: -57,-4 - 16927: -50,9 - 16928: -49,11 - 16929: -48,11 - 16936: -56,9 - 16937: -56,9 - 16938: -56,9 - 16939: -57,9 - 16940: -58,9 - 16941: -58,9 - 16942: -59,9 - 16963: -58,-5 - 16966: -58,-11 - 16991: -60,-10 - 16992: -59,-10 - 16995: -58,-11 - 17004: -55,-9 - 17020: -53,-18 - 17021: -55,-18 - 17022: -57,-18 - 17023: -58,-18 - 17027: -61,-17 - 17042: -60,-15 - 17043: -59,-15 - 17044: -58,-15 - 17045: -57,-15 - 17046: -56,-15 - 17068: -49,-17 - 17069: -48,-17 - 17165: -58,16 - 17181: -65,14 - 17182: -64,14 - 17183: -63,14 - 17184: -62,14 - 17185: -62,14 - 17186: -62,14 - 17187: -61,14 - 17207: -75,14 - 17208: -74,14 - 17209: -73,14 - 17210: -71,14 - 17211: -70,14 - 17212: -69,14 - 17283: -59,17 - 17284: -60,17 - 17330: -48,-10 - 17331: -47,-10 - 17348: -64,-8 - 17349: -66,-8 - 17350: -67,-8 - 17351: -65,-8 - 17352: -68,-8 - 17353: -73,-8 - 17354: -72,-8 - 17379: -71,-5 - 17380: -69,-5 - 17394: -76,-10 - 17407: -11,-79 - 17411: 10,89 - 17412: 10,91 - 17415: 5,91 - 17428: 10,89 - 17471: 11,74 - 17523: -64,5 - 17524: -63,5 - 17595: -67,-4 - 17596: -68,-4 - 17597: -70,-4 - 17598: -72,-4 - 17599: -73,-4 - 17616: -71,-5 - 17617: -69,-5 - 17622: -73,3 - 17651: -73,10 - 17652: -71,10 - 17658: -72,13 - 17667: -82,14 - 17668: -81,14 - 17669: -80,14 - 17709: -77,8 - 17726: -77,12 - 17733: -77,2 - 17741: -77,-2 - 17782: -71,-9 - 17783: -70,-9 - 17784: -69,-9 - 17785: -72,-13 - 17786: -71,-13 - 17787: -70,-13 - 17788: -69,-13 - 17789: -68,-13 - 18161: -56,-4 - 18208: -55,17 - 18209: -54,17 - 18210: -54,17 - 18211: -52,17 - 18212: -53,17 + 16797: -53,3 + 16798: -52,3 + 16805: -53,7 + 16806: -52,7 + 16811: -53,3 + 16812: -52,3 + 16815: -49,3 + 16828: -50,-4 + 16829: -61,1 + 16830: -60,1 + 16836: -60,-4 + 16837: -59,-4 + 16838: -57,-4 + 16864: -50,9 + 16865: -49,11 + 16866: -48,11 + 16873: -56,9 + 16874: -56,9 + 16875: -56,9 + 16876: -57,9 + 16877: -58,9 + 16878: -58,9 + 16879: -59,9 + 16900: -58,-5 + 16903: -58,-11 + 16928: -60,-10 + 16929: -59,-10 + 16932: -58,-11 + 16941: -55,-9 + 16957: -53,-18 + 16958: -55,-18 + 16959: -57,-18 + 16960: -58,-18 + 16964: -61,-17 + 16979: -60,-15 + 16980: -59,-15 + 16981: -58,-15 + 16982: -57,-15 + 16983: -56,-15 + 17005: -49,-17 + 17006: -48,-17 + 17102: -58,16 + 17118: -65,14 + 17119: -64,14 + 17120: -63,14 + 17121: -62,14 + 17122: -62,14 + 17123: -62,14 + 17124: -61,14 + 17144: -75,14 + 17145: -74,14 + 17146: -73,14 + 17147: -71,14 + 17148: -70,14 + 17149: -69,14 + 17220: -59,17 + 17221: -60,17 + 17267: -48,-10 + 17268: -47,-10 + 17285: -64,-8 + 17286: -66,-8 + 17287: -67,-8 + 17288: -65,-8 + 17289: -68,-8 + 17290: -73,-8 + 17291: -72,-8 + 17316: -71,-5 + 17317: -69,-5 + 17331: -76,-10 + 17344: -11,-79 + 17348: 10,89 + 17349: 10,91 + 17352: 5,91 + 17365: 10,89 + 17408: 11,74 + 17460: -64,5 + 17461: -63,5 + 17532: -67,-4 + 17533: -68,-4 + 17534: -70,-4 + 17535: -72,-4 + 17536: -73,-4 + 17553: -71,-5 + 17554: -69,-5 + 17559: -73,3 + 17588: -73,10 + 17589: -71,10 + 17595: -72,13 + 17604: -82,14 + 17605: -81,14 + 17606: -80,14 + 17646: -77,8 + 17663: -77,12 + 17670: -77,2 + 17678: -77,-2 + 17719: -71,-9 + 17720: -70,-9 + 17721: -69,-9 + 17722: -72,-13 + 17723: -71,-13 + 17724: -70,-13 + 17725: -69,-13 + 17726: -68,-13 + 18098: -56,-4 + 18145: -55,17 + 18146: -54,17 + 18147: -54,17 + 18148: -52,17 + 18149: -53,17 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 861: 70,-47 - 862: 71,-47 - 863: 72,-47 - 864: 74,-47 - 1180: 45,-17 - 1181: 48,-17 - 2064: -21,52 - 2065: -17,52 - 2066: -19,53 - 2072: -19,49 - 2135: -19,33 - 2136: -19,30 - 2137: -19,37 - 2140: -21,35 - 2270: -23,42 - 2369: -29,30 - 2370: -30,30 - 2410: -30,39 - 2699: -10,52 - 2774: -11,50 - 2775: -10,50 - 2776: -6,50 - 2777: -5,50 - 2813: -6,32 - 3019: -13,58 - 3020: -12,58 - 3021: -11,58 - 3029: -19,65 - 3084: -13,69 - 3085: -12,69 - 3086: -11,69 - 3095: -5,65 + 860: 70,-47 + 861: 71,-47 + 862: 72,-47 + 863: 74,-47 + 1179: 45,-17 + 1180: 48,-17 + 2063: -21,52 + 2064: -17,52 + 2065: -19,53 + 2071: -19,49 + 2134: -19,33 + 2135: -19,30 + 2136: -19,37 + 2139: -21,35 + 2269: -23,42 + 2368: -29,30 + 2369: -30,30 + 2409: -30,39 + 2698: -10,52 + 2773: -11,50 + 2774: -10,50 + 2775: -6,50 + 2776: -5,50 + 2812: -6,32 + 3018: -13,58 + 3019: -12,58 + 3020: -11,58 + 3028: -19,65 + 3083: -13,69 + 3084: -12,69 + 3085: -11,69 + 3094: -5,65 + 3104: -6,69 3105: -6,69 - 3106: -6,69 - 3107: -4,69 - 3108: -5,69 - 3112: -6,58 - 3113: -5,58 - 3114: -4,58 - 3121: -20,58 - 3122: -19,58 - 3123: -18,58 - 3130: -20,69 - 3131: -19,69 - 3132: -18,69 - 3229: -12,76 - 3243: -12,96 - 3244: -12,83 - 3255: -12,89 - 3281: -30,76 - 3282: -30,83 - 3283: -30,89 - 3284: -30,96 - 3305: -31,69 - 3306: -30,69 - 3307: -29,69 - 3527: 0,69 - 3528: 1,69 - 3529: 2,69 - 3530: 5,69 - 3531: 6,69 - 3532: 7,69 + 3106: -4,69 + 3107: -5,69 + 3111: -6,58 + 3112: -5,58 + 3113: -4,58 + 3120: -20,58 + 3121: -19,58 + 3122: -18,58 + 3129: -20,69 + 3130: -19,69 + 3131: -18,69 + 3228: -12,76 + 3242: -12,96 + 3243: -12,83 + 3254: -12,89 + 3280: -30,76 + 3281: -30,83 + 3282: -30,89 + 3283: -30,96 + 3304: -31,69 + 3305: -30,69 + 3306: -29,69 + 3526: 0,69 + 3527: 1,69 + 3528: 2,69 + 3529: 5,69 + 3530: 6,69 + 3531: 7,69 + 3616: 6,76 3617: 6,76 - 3618: 6,76 - 3679: 6,83 - 3783: 0,58 - 3784: 1,58 - 3785: 2,58 - 3835: 20,69 - 5188: 17,13 - 5189: 17,20 - 5198: 17,-1 - 5199: 17,6 - 5214: -26,69 - 5215: -25,69 - 5216: -24,69 - 5487: -27,6 - 5488: -25,6 - 5489: -24,6 - 5490: -23,6 - 5491: -33,6 + 3678: 6,83 + 3782: 0,58 + 3783: 1,58 + 3784: 2,58 + 3834: 20,69 + 5187: 17,13 + 5188: 17,20 + 5197: 17,-1 + 5198: 17,6 + 5213: -26,69 + 5214: -25,69 + 5215: -24,69 + 5486: -27,6 + 5487: -25,6 + 5488: -24,6 + 5489: -23,6 + 5490: -33,6 + 5491: -32,6 5492: -32,6 - 5493: -32,6 - 5494: -33,6 - 5495: -31,6 - 5496: -38,6 + 5493: -33,6 + 5494: -31,6 + 5495: -38,6 + 5496: -37,6 5497: -37,6 - 5498: -37,6 - 5499: -27,6 - 5500: -26,6 + 5498: -27,6 + 5499: -26,6 + 5500: -36,6 5501: -36,6 - 5502: -36,6 - 5569: -33,26 - 5570: -32,26 - 5571: -34,26 - 5580: -31,29 - 6223: -19,-11 - 6309: 17,-11 - 6344: -1,-17 - 6345: 0,-17 - 6346: 1,-17 - 6631: -31,-3 - 6632: -30,-3 - 6633: -28,-3 - 6634: -27,-3 - 6635: -26,-3 - 6636: -25,-3 - 6637: -23,-3 - 6638: -22,-3 - 6642: -33,3 - 6643: -32,3 - 6698: -24,-1 - 6714: -34,-16 - 6715: -33,-16 - 6716: -32,-16 + 5568: -33,26 + 5569: -32,26 + 5570: -34,26 + 5579: -31,29 + 6222: -19,-11 + 6308: 17,-11 + 6343: -1,-17 + 6344: 0,-17 + 6345: 1,-17 + 6630: -31,-3 + 6631: -30,-3 + 6632: -28,-3 + 6633: -27,-3 + 6634: -26,-3 + 6635: -25,-3 + 6636: -23,-3 + 6637: -22,-3 + 6641: -33,3 + 6642: -32,3 + 6697: -24,-1 + 6713: -34,-16 + 6714: -33,-16 + 6715: -32,-16 + 6716: -31,-16 6717: -31,-16 - 6718: -31,-16 - 6719: -30,-16 - 6728: -33,-10 - 6729: -32,-10 - 6733: -29,-16 - 6743: -34,-11 - 6744: -33,-11 - 6745: -32,-11 - 6746: -31,-11 - 6964: -25,-18 - 6989: -7,-19 - 6990: -6,-19 - 6991: -5,-19 - 6992: -12,-19 + 6718: -30,-16 + 6727: -33,-10 + 6728: -32,-10 + 6732: -29,-16 + 6742: -34,-11 + 6743: -33,-11 + 6744: -32,-11 + 6745: -31,-11 + 6963: -25,-18 + 6988: -7,-19 + 6989: -6,-19 + 6990: -5,-19 + 6991: -12,-19 + 6992: -13,-19 6993: -13,-19 - 6994: -13,-19 - 6995: -15,-19 - 6996: -14,-19 - 6997: 3,-19 - 6998: 4,-19 + 6994: -15,-19 + 6995: -14,-19 + 6996: 3,-19 + 6997: 4,-19 + 6998: 5,-19 6999: 5,-19 - 7000: 5,-19 - 7001: 6,-19 - 7002: 10,-19 - 7003: 11,-19 - 7004: 12,-19 - 7005: 13,-19 - 7127: 21,6 - 7128: 23,6 - 7129: 24,6 - 7130: 22,6 - 7192: 28,6 - 7193: 29,6 - 7194: 30,6 - 7195: 31,6 - 8046: 58,-24 - 8047: 59,-24 - 8048: 60,-24 - 8049: 58,-11 - 8050: 59,-11 - 8051: 60,-11 - 8192: 39,-7 + 7000: 6,-19 + 7001: 10,-19 + 7002: 11,-19 + 7003: 12,-19 + 7004: 13,-19 + 7126: 21,6 + 7127: 23,6 + 7128: 24,6 + 7129: 22,6 + 7191: 28,6 + 7192: 29,6 + 7193: 30,6 + 7194: 31,6 + 8045: 58,-24 + 8046: 59,-24 + 8047: 60,-24 + 8048: 58,-11 + 8049: 59,-11 + 8050: 60,-11 + 8191: 39,-7 + 8192: 40,-7 8193: 40,-7 - 8194: 40,-7 - 8217: 21,-10 - 8218: 22,-10 - 8219: 23,-10 - 8220: 24,-10 - 8221: 28,-10 + 8216: 21,-10 + 8217: 22,-10 + 8218: 23,-10 + 8219: 24,-10 + 8220: 28,-10 + 8221: 29,-10 8222: 29,-10 - 8223: 29,-10 + 8223: 30,-10 8224: 30,-10 - 8225: 30,-10 + 8295: 36,-8 8296: 36,-8 - 8297: 36,-8 + 8297: 37,-8 8298: 37,-8 - 8299: 37,-8 - 8300: 38,-8 + 8299: 38,-8 + 8300: 39,-8 8301: 39,-8 - 8302: 39,-8 + 8302: 35,-8 8303: 35,-8 - 8304: 35,-8 + 8386: 46,-13 8387: 46,-13 - 8388: 46,-13 - 8438: 44,-19 - 8439: 45,-19 - 8440: 46,-19 - 8441: 47,-19 - 8442: 49,-19 - 8443: 50,-19 - 8444: 52,-19 - 8445: 51,-19 - 8667: -8,-75 - 8668: -7,-75 - 8669: -6,-75 - 8670: -3,-75 - 8671: -2,-75 - 8672: -1,-75 - 8673: -2,-79 - 8674: -1,-79 - 8675: -7,-79 - 8676: -8,-79 - 8739: 6,-24 - 8740: 7,-24 - 8741: 8,-24 - 8742: 9,-24 - 8743: 10,-24 - 8764: -11,-24 - 8765: -10,-24 - 8766: -9,-24 - 8767: -8,-24 - 8832: -1,-23 - 8870: -1,-30 - 8879: -12,-24 - 8915: -14,-28 - 8916: -14,-22 - 8917: -13,-22 - 8918: -7,-22 - 8919: -6,-22 - 8951: -7,-28 - 8952: -5,-28 - 9069: 4,-22 - 9070: 5,-22 - 9071: 11,-22 - 9072: 12,-22 - 9073: 12,-28 - 9074: 4,-28 - 9075: 3,-28 - 9402: -1,-51 - 9403: -1,-43 - 9404: -1,-38 - 9416: -1,-58 - 9417: -1,-58 - 9451: -3,-71 - 9462: 73,-52 - 10661: 73,-48 - 10662: 73,-41 - 10969: 41,-68 - 10970: 40,-68 - 12720: -42,23 - 14973: -16,24 - 14974: -15,24 - 14975: -14,24 - 14976: -14,24 - 14977: -13,24 - 14978: -6,24 - 14979: -5,24 - 14980: -4,24 - 14981: -3,24 - 14982: 1,24 - 14983: 2,24 - 14984: 3,24 - 14985: 4,24 - 14986: 11,24 - 14987: 12,24 - 14988: 13,24 - 14989: 14,24 - 15191: -8,-19 - 15420: -42,12 - 15421: -42,18 - 15422: -42,23 - 15571: 92,-5 - 15572: 93,-5 - 15573: 93,-5 - 15574: 94,-5 - 18743: -15,-8 - 18744: -14,-8 - 18745: -13,-8 - 18746: -12,-8 - 18747: -9,-8 - 18748: -8,-8 - 18749: -7,-8 - 18750: -6,-8 - 18751: -3,-8 - 18752: -2,-8 - 18753: -1,-8 - 18754: 1,-8 - 18755: 0,-8 - 18756: 4,-8 - 18757: 5,-8 - 18758: 6,-8 - 18759: 7,-8 - 18760: 10,-8 - 18761: 11,-8 - 18762: 12,-8 - 18763: 13,-8 - 19693: 35,-12 - 19694: 36,-12 - 19695: 37,-12 - 19696: 38,-12 - 19697: 39,-12 - 19698: 35,-9 - 19699: 36,-9 - 19700: 37,-9 - 19701: 38,-9 - 19702: 39,-9 - 20232: -19,20 - 20233: -19,13 - 20234: -19,6 - 20235: -19,-1 + 8437: 44,-19 + 8438: 45,-19 + 8439: 46,-19 + 8440: 47,-19 + 8441: 49,-19 + 8442: 50,-19 + 8443: 52,-19 + 8444: 51,-19 + 8666: -8,-75 + 8667: -7,-75 + 8668: -6,-75 + 8669: -3,-75 + 8670: -2,-75 + 8671: -1,-75 + 8672: -2,-79 + 8673: -1,-79 + 8674: -7,-79 + 8675: -8,-79 + 8738: 6,-24 + 8739: 7,-24 + 8740: 8,-24 + 8741: 9,-24 + 8742: 10,-24 + 8763: -11,-24 + 8764: -10,-24 + 8765: -9,-24 + 8766: -8,-24 + 8831: -1,-23 + 8869: -1,-30 + 8878: -12,-24 + 8913: -14,-28 + 8914: -14,-22 + 8915: -13,-22 + 8916: -7,-22 + 8917: -6,-22 + 8949: -7,-28 + 8950: -5,-28 + 9062: 4,-22 + 9063: 5,-22 + 9064: 11,-22 + 9065: 12,-22 + 9066: 12,-28 + 9067: 4,-28 + 9068: 3,-28 + 9391: -1,-51 + 9392: -1,-43 + 9393: -1,-38 + 9404: -1,-58 + 9405: -1,-58 + 9439: -3,-71 + 9450: 73,-52 + 10599: 73,-48 + 10600: 73,-41 + 12657: -42,23 + 14910: -16,24 + 14911: -15,24 + 14912: -14,24 + 14913: -14,24 + 14914: -13,24 + 14915: -6,24 + 14916: -5,24 + 14917: -4,24 + 14918: -3,24 + 14919: 1,24 + 14920: 2,24 + 14921: 3,24 + 14922: 4,24 + 14923: 11,24 + 14924: 12,24 + 14925: 13,24 + 14926: 14,24 + 15128: -8,-19 + 15357: -42,12 + 15358: -42,18 + 15359: -42,23 + 15508: 92,-5 + 15509: 93,-5 + 15510: 93,-5 + 15511: 94,-5 + 18680: -15,-8 + 18681: -14,-8 + 18682: -13,-8 + 18683: -12,-8 + 18684: -9,-8 + 18685: -8,-8 + 18686: -7,-8 + 18687: -6,-8 + 18688: -3,-8 + 18689: -2,-8 + 18690: -1,-8 + 18691: 1,-8 + 18692: 0,-8 + 18693: 4,-8 + 18694: 5,-8 + 18695: 6,-8 + 18696: 7,-8 + 18697: 10,-8 + 18698: 11,-8 + 18699: 12,-8 + 18700: 13,-8 + 19629: 35,-12 + 19630: 36,-12 + 19631: 37,-12 + 19632: 38,-12 + 19633: 39,-12 + 19634: 35,-9 + 19635: 36,-9 + 19636: 37,-9 + 19637: 38,-9 + 19638: 39,-9 + 20168: -19,20 + 20169: -19,13 + 20170: -19,6 + 20171: -19,-1 + 24769: 41,-68 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineS decals: - 4098: -19,13 - 4099: -19,20 + 4097: -19,13 + 4098: -19,20 - node: color: '#0A6AB6FF' id: BrickTileWhiteLineW decals: - 876: 72,-45 + 875: 72,-45 - node: color: '#334E6DFF' id: BrickTileWhiteLineW decals: - 21891: -17,14 - 21892: -17,15 - 22587: 16,-5 - 22588: 16,-3 + 21823: -17,14 + 21824: -17,15 + 22519: 16,-5 + 22520: 16,-3 - node: color: '#3EB388FF' id: BrickTileWhiteLineW decals: - 21635: -57,36 - 21640: -56,33 - 21641: -56,34 - 21647: -55,38 - 21672: -45,23 - 21673: -50,22 - 21674: -54,22 - 21675: -54,21 - 21676: -54,20 - 21710: -49,20 - 21711: -49,19 - 21720: -51,37 - 21721: -50,39 - 21722: -50,40 - 21732: -46,41 - 21762: -60,49 - 21763: -60,47 - 21764: -60,46 - 21765: -60,45 - 21766: -60,45 - 21815: -47,46 - 21816: -47,47 - 21817: -47,48 - 21818: -47,49 - 21819: -47,50 - 21820: -47,51 - 21821: -47,52 - 21822: -47,53 - 21823: -47,53 - 21824: -47,54 - 21825: -47,54 - 21826: -47,54 - 21827: -47,54 - 21828: -47,54 - 21829: -46,57 - 21836: -43,51 - 21837: -45,51 - 21850: -60,51 - 21851: -60,52 - 21852: -60,53 - 21853: -60,53 - 21880: -43,22 - 21881: -44,19 - 21882: -44,17 + 21567: -57,36 + 21572: -56,33 + 21573: -56,34 + 21579: -55,38 + 21604: -45,23 + 21605: -50,22 + 21606: -54,22 + 21607: -54,21 + 21608: -54,20 + 21642: -49,20 + 21643: -49,19 + 21652: -51,37 + 21653: -50,39 + 21654: -50,40 + 21664: -46,41 + 21694: -60,49 + 21695: -60,47 + 21696: -60,46 + 21697: -60,45 + 21698: -60,45 + 21747: -47,46 + 21748: -47,47 + 21749: -47,48 + 21750: -47,49 + 21751: -47,50 + 21752: -47,51 + 21753: -47,52 + 21754: -47,53 + 21755: -47,53 + 21756: -47,54 + 21757: -47,54 + 21758: -47,54 + 21759: -47,54 + 21760: -47,54 + 21761: -46,57 + 21768: -43,51 + 21769: -45,51 + 21782: -60,51 + 21783: -60,52 + 21784: -60,53 + 21785: -60,53 + 21812: -43,22 + 21813: -44,19 + 21814: -44,17 + - node: + color: '#439909FF' + id: BrickTileWhiteLineW + decals: + 24639: 26,-57 + 24641: 29,-56 + 24650: 26,-61 + 24652: 29,-61 + 24655: 33,-61 + 24663: 33,-61 + 24675: 42,-62 + 24676: 43,-63 + 24697: 34,-62 + 24698: 34,-63 + 24699: 34,-64 + 24702: 37,-62 + 24708: 38,-61 + 24715: 34,-71 + 24716: 34,-70 + 24717: 34,-69 + 24724: 34,-67 + 24728: 33,-68 + 24747: 26,-69 + 24748: 37,-70 - node: color: '#52B4E9FF' id: BrickTileWhiteLineW decals: - 23145: 16,-30 - 23146: 16,-29 - 23147: 16,-28 - 23148: 16,-27 - 23169: 16,-32 - 23170: 16,-33 - 23171: 16,-34 - 23172: 16,-36 - 23175: 19,-34 - 23182: 19,-28 - 23183: 19,-27 - 23187: 19,-36 - 23188: 19,-35 - 23189: 19,-34 - 23195: 15,-35 - 23201: 18,-31 - 23202: 18,-32 - 23203: 18,-33 - 23204: 18,-34 - 23233: 10,-35 - 23237: 15,-35 - 23249: 14,-35 - 23301: 39,-35 - 23355: 20,-45 - 23379: 19,-44 - 23380: 25,-44 - 23381: 25,-40 - 23382: 25,-39 - 23383: 19,-40 - 23384: 19,-39 - 23391: 15,-40 - 23392: 15,-39 - 23489: 30,-39 - 23490: 29,-40 - 23492: 30,-41 - 23507: 37,-40 - 23537: 16,-46 - 23538: 16,-45 - 23539: 16,-43 - 23540: 16,-42 - 23541: 16,-41 - 23542: 18,-40 - 23543: 18,-41 - 23544: 18,-42 - 23545: 18,-42 - 23546: 18,-43 - 23547: 18,-43 - 23548: 18,-44 - 23549: 18,-45 - 23550: 18,-45 - 23551: 28,-44 - 23552: 28,-44 - 23553: 28,-43 - 23554: 28,-43 - 23555: 28,-43 - 23556: 28,-42 - 23557: 28,-41 - 23558: 28,-40 - 23559: 28,-40 - 23560: 26,-41 - 23561: 26,-42 - 23562: 26,-42 - 23563: 26,-43 - 23564: 26,-43 - 23565: 26,-45 - 23566: 26,-45 - 23567: 26,-46 - 23568: 26,-46 - 23569: 26,-48 - 23570: 26,-49 - 23571: 26,-49 - 23572: 26,-50 - 23573: 26,-51 - 23574: 26,-52 - 23575: 26,-52 - 23576: 26,-50 - 23577: 26,-47 - 23578: 28,-47 - 23579: 28,-47 - 23580: 28,-48 - 23581: 28,-49 - 23582: 28,-49 - 23583: 28,-50 - 23584: 28,-50 - 23585: 28,-51 - 23586: 30,-52 - 23587: 30,-51 - 23588: 30,-49 - 23589: 30,-48 - 23590: 28,-35 - 23591: 37,-35 - 23592: 12,-44 - 23593: 8,-40 - 23594: 8,-39 - 23611: 8,-44 - 23619: 3,-46 - 23620: 3,-45 - 23652: 15,-44 - 23662: 14,-46 - 23677: 16,-38 - 23688: 18,-44 - 23701: 26,-38 - 23765: 28,-26 - 23766: 28,-27 - 23768: 28,-26 - 23769: 28,-25 - 23801: 20,-26 - 23807: 23,-29 - 23811: 24,-28 - 23826: 26,-31 - 23847: 1,-51 - 23848: 1,-44 - 23857: 1,-51 - 23858: 1,-44 - 23859: -8,-59 - 23860: -8,-60 - 23861: -8,-61 - 23870: -4,-60 - 23893: 5,63 - 24081: -3,-61 - 24082: -3,-59 + 23074: 16,-30 + 23075: 16,-29 + 23076: 16,-28 + 23077: 16,-27 + 23098: 16,-32 + 23099: 16,-33 + 23100: 16,-34 + 23101: 16,-36 + 23104: 19,-34 + 23111: 19,-28 + 23112: 19,-27 + 23116: 19,-36 + 23117: 19,-35 + 23118: 19,-34 + 23124: 15,-35 + 23130: 18,-31 + 23131: 18,-32 + 23132: 18,-33 + 23133: 18,-34 + 23161: 10,-35 + 23165: 15,-35 + 23177: 14,-35 + 23228: 39,-35 + 23282: 20,-45 + 23306: 19,-44 + 23307: 25,-44 + 23308: 25,-40 + 23309: 25,-39 + 23310: 19,-40 + 23311: 19,-39 + 23318: 15,-40 + 23319: 15,-39 + 23414: 30,-39 + 23415: 29,-40 + 23417: 30,-41 + 23432: 37,-40 + 23462: 16,-46 + 23463: 16,-45 + 23464: 16,-43 + 23465: 16,-42 + 23466: 16,-41 + 23467: 18,-40 + 23468: 18,-41 + 23469: 18,-42 + 23470: 18,-42 + 23471: 18,-43 + 23472: 18,-43 + 23473: 18,-44 + 23474: 18,-45 + 23475: 18,-45 + 23476: 28,-44 + 23477: 28,-44 + 23478: 28,-43 + 23479: 28,-43 + 23480: 28,-43 + 23481: 28,-42 + 23482: 28,-41 + 23483: 28,-40 + 23484: 28,-40 + 23485: 26,-41 + 23486: 26,-42 + 23487: 26,-42 + 23488: 26,-43 + 23489: 26,-43 + 23490: 26,-45 + 23491: 26,-45 + 23492: 26,-46 + 23493: 26,-46 + 23494: 26,-48 + 23495: 26,-49 + 23496: 26,-49 + 23497: 26,-50 + 23498: 26,-51 + 23499: 26,-52 + 23500: 26,-52 + 23501: 26,-50 + 23502: 26,-47 + 23503: 28,-47 + 23504: 28,-47 + 23505: 28,-48 + 23506: 28,-49 + 23507: 28,-49 + 23508: 28,-50 + 23509: 28,-50 + 23510: 28,-51 + 23511: 30,-52 + 23512: 30,-51 + 23513: 30,-49 + 23514: 30,-48 + 23515: 28,-35 + 23516: 37,-35 + 23517: 12,-44 + 23518: 8,-40 + 23519: 8,-39 + 23536: 8,-44 + 23543: 3,-46 + 23544: 3,-45 + 23574: 15,-44 + 23583: 14,-46 + 23597: 16,-38 + 23608: 18,-44 + 23621: 26,-38 + 23685: 28,-26 + 23686: 28,-27 + 23688: 28,-26 + 23689: 28,-25 + 23721: 20,-26 + 23727: 23,-29 + 23731: 24,-28 + 23746: 26,-31 + 23767: 1,-51 + 23768: 1,-44 + 23777: 1,-51 + 23778: 1,-44 + 23779: -8,-59 + 23780: -8,-60 + 23781: -8,-61 + 23789: -4,-60 + 23812: 5,63 + 24000: -3,-61 + 24001: -3,-59 - node: color: '#8BC9DAFF' id: BrickTileWhiteLineW decals: - 17854: -50,22 - 17856: -49,20 - 17857: -49,19 - 17875: -55,38 - 17877: -56,33 - 17878: -56,34 - 17880: -57,36 - 17891: -45,23 - 17896: -45,23 - 17897: -51,37 - 17898: -50,39 - 17899: -50,40 - 17918: -43,51 - 17919: -45,51 - 17931: -46,57 - 17932: -47,54 - 17933: -47,53 - 17934: -47,52 - 17935: -47,51 - 17936: -47,51 - 17937: -47,50 - 17938: -47,49 - 17939: -47,49 - 17940: -47,47 - 17941: -47,47 - 17942: -47,48 - 17943: -47,46 - 17951: -46,41 - 17990: -60,47 - 17991: -60,46 - 17992: -60,46 - 17993: -60,45 - 17994: -60,49 - 17995: -60,51 - 17996: -60,52 - 17997: -60,53 - 18094: -54,22 - 18095: -54,21 - 18096: -54,20 - 18102: -51,21 + 17791: -50,22 + 17793: -49,20 + 17794: -49,19 + 17812: -55,38 + 17814: -56,33 + 17815: -56,34 + 17817: -57,36 + 17828: -45,23 + 17833: -45,23 + 17834: -51,37 + 17835: -50,39 + 17836: -50,40 + 17855: -43,51 + 17856: -45,51 + 17868: -46,57 + 17869: -47,54 + 17870: -47,53 + 17871: -47,52 + 17872: -47,51 + 17873: -47,51 + 17874: -47,50 + 17875: -47,49 + 17876: -47,49 + 17877: -47,47 + 17878: -47,47 + 17879: -47,48 + 17880: -47,46 + 17888: -46,41 + 17927: -60,47 + 17928: -60,46 + 17929: -60,46 + 17930: -60,45 + 17931: -60,49 + 17932: -60,51 + 17933: -60,52 + 17934: -60,53 + 18031: -54,22 + 18032: -54,21 + 18033: -54,20 + 18039: -51,21 - node: color: '#8BDA8EFF' id: BrickTileWhiteLineW decals: - 18337: -38,48 - 18338: -38,48 + 18274: -38,48 + 18275: -38,48 - node: color: '#8CB7E8FF' id: BrickTileWhiteLineW decals: - 9487: 11,-26 - 9488: 11,-25 - 9500: 16,-30 - 9501: 16,-29 - 9502: 16,-28 - 9503: 16,-27 - 9543: 19,-27 - 9544: 19,-28 - 9647: 26,-52 - 9648: 26,-51 - 9649: 26,-50 - 9650: 26,-49 - 9651: 26,-48 - 9652: 26,-47 - 9653: 26,-46 - 9654: 26,-45 - 9655: 26,-43 - 9656: 26,-42 - 9657: 26,-41 - 9658: 26,-38 - 9675: 19,-36 - 9676: 19,-35 - 9690: 15,-35 - 9708: 10,-35 - 9713: 15,-35 - 9749: 29,-50 - 9750: 29,-44 - 9751: 29,-40 - 9756: 19,-40 - 9757: 19,-39 - 9758: 25,-39 - 9759: 25,-40 - 9760: 19,-44 - 9854: 14,-35 - 9855: 28,-35 - 9856: 37,-35 - 9857: 28,-40 - 9858: 28,-42 - 9859: 28,-43 - 9860: 28,-43 - 9861: 28,-44 - 9862: 28,-47 - 9863: 28,-48 - 9864: 28,-49 - 9865: 28,-50 - 9866: 28,-50 - 9867: 28,-51 - 9868: 28,-51 - 9870: 18,-40 - 9871: 18,-41 - 9872: 18,-42 - 9873: 18,-43 - 9874: 18,-43 - 9875: 18,-44 - 9876: 18,-45 - 9877: 18,-45 - 9878: 16,-38 - 9879: 16,-41 - 9880: 16,-43 - 9881: 16,-45 - 9882: 16,-46 - 9941: 39,-35 - 9965: 30,-41 - 9966: 30,-39 - 9989: 37,-40 - 10022: 23,-29 - 10058: 28,-25 - 10059: 28,-26 - 10077: 28,-41 - 10079: 15,-39 - 10080: 15,-40 - 10088: 8,-39 - 10089: 8,-40 - 10111: 20,-48 - 10112: 20,-47 - 10144: 25,-44 - 10151: 20,-45 - 10169: 32,-48 - 10170: 32,-48 - 10171: 32,-50 - 10175: 32,-52 - 10211: 30,-52 - 10212: 30,-51 - 10213: 30,-49 - 10214: 30,-48 - 10323: 8,-44 - 10325: 3,-45 - 10326: 3,-46 - 10358: 14,-46 - 10360: 12,-44 - 10366: 15,-44 - 10593: 50,-33 - 10594: 50,-33 - 10597: 43,-34 - 10600: 43,-32 - 12351: -4,-60 - 15299: 16,-42 - 19355: 5,63 - 19383: -8,-61 - 19384: -8,-60 - 19385: -8,-59 - 19387: -4,-60 - 19718: 26,-31 - 19728: 20,-26 - 19732: 24,-28 + 9475: 11,-26 + 9476: 11,-25 + 9481: 16,-30 + 9482: 16,-29 + 9483: 16,-28 + 9484: 16,-27 + 9520: 19,-27 + 9521: 19,-28 + 9623: 26,-52 + 9624: 26,-51 + 9625: 26,-50 + 9626: 26,-49 + 9627: 26,-48 + 9628: 26,-47 + 9629: 26,-46 + 9630: 26,-45 + 9631: 26,-43 + 9632: 26,-42 + 9633: 26,-41 + 9634: 26,-38 + 9650: 19,-36 + 9651: 19,-35 + 9660: 15,-35 + 9673: 10,-35 + 9678: 15,-35 + 9712: 29,-50 + 9713: 29,-44 + 9714: 29,-40 + 9719: 19,-40 + 9720: 19,-39 + 9721: 25,-39 + 9722: 25,-40 + 9723: 19,-44 + 9801: 14,-35 + 9802: 28,-35 + 9803: 37,-35 + 9804: 28,-40 + 9805: 28,-42 + 9806: 28,-43 + 9807: 28,-43 + 9808: 28,-44 + 9809: 28,-47 + 9810: 28,-48 + 9811: 28,-49 + 9812: 28,-50 + 9813: 28,-50 + 9814: 28,-51 + 9815: 28,-51 + 9817: 18,-40 + 9818: 18,-41 + 9819: 18,-42 + 9820: 18,-43 + 9821: 18,-43 + 9822: 18,-44 + 9823: 18,-45 + 9824: 18,-45 + 9825: 16,-38 + 9826: 16,-41 + 9827: 16,-43 + 9828: 16,-45 + 9829: 16,-46 + 9888: 39,-35 + 9912: 30,-41 + 9913: 30,-39 + 9935: 37,-40 + 9968: 23,-29 + 10004: 28,-25 + 10005: 28,-26 + 10023: 28,-41 + 10025: 15,-39 + 10026: 15,-40 + 10034: 8,-39 + 10035: 8,-40 + 10057: 20,-48 + 10058: 20,-47 + 10090: 25,-44 + 10097: 20,-45 + 10115: 32,-48 + 10116: 32,-48 + 10117: 32,-50 + 10121: 32,-52 + 10157: 30,-52 + 10158: 30,-51 + 10159: 30,-49 + 10160: 30,-48 + 10269: 8,-44 + 10271: 3,-45 + 10272: 3,-46 + 10299: 14,-46 + 10301: 12,-44 + 10306: 15,-44 + 10531: 50,-33 + 10532: 50,-33 + 10535: 43,-34 + 10538: 43,-32 + 12288: -4,-60 + 15236: 16,-42 + 19292: 5,63 + 19319: -8,-61 + 19320: -8,-60 + 19321: -8,-59 + 19323: -4,-60 + 19654: 26,-31 + 19664: 20,-26 + 19668: 24,-28 - node: color: '#9FED58FF' id: BrickTileWhiteLineW decals: - 23904: -23,46 - 23905: -23,49 - 23906: -23,52 + 23823: -23,46 + 23824: -23,49 + 23825: -23,52 - node: color: '#A46106FF' id: BrickTileWhiteLineW decals: - 21945: 2,30 - 21948: 2,28 - 21949: 2,27 - 21954: 9,28 - 21955: 9,29 - 21986: 13,34 - 21992: 2,34 - 21993: 2,35 - 21994: 2,36 - 21995: 2,36 - 22010: 10,35 - 22027: 12,35 - 22028: 12,36 - 22049: 12,35 - 22050: 12,36 - 22065: 4,42 - 22066: 4,41 - 22089: 9,43 - 22090: 9,44 - 22091: 9,45 - 22100: 12,43 - 22101: 12,45 - 22103: 13,44 - 22104: 13,42 - 22105: 13,41 - 22106: 13,41 - 22107: 13,41 - 22108: 13,40 - 22109: 13,40 - 22110: 13,38 - 22111: 13,37 - 22176: 9,49 - 22177: 9,50 - 22178: 9,50 - 22179: 9,51 - 22180: 9,52 - 22181: 9,53 - 22182: 9,53 - 22183: 9,53 - 22191: 14,49 - 22192: 14,50 - 22193: 14,52 - 22194: 14,53 - 22211: 14,52 - 22212: 14,53 - 22310: 20,36 - 22311: 18,41 - 22312: 18,43 - 22313: 18,45 - 22314: 23,47 - 22315: 23,49 - 22316: 23,51 - 22317: 23,45 - 22318: 23,43 - 22319: 23,41 - 22379: 15,47 - 22415: 39,48 - 22416: 39,51 - 22417: 39,49 - 22418: 39,52 - 22422: 34,50 - 22426: 33,51 - 22427: 33,52 - 22428: 33,49 - 22429: 33,48 - 22477: 12,27 - 22485: 17,27 - 22486: 17,28 - 22487: 17,29 - 22488: 17,29 - 22489: 17,30 - 22490: 17,31 - 22491: 17,31 - 22493: 15,29 - 22494: 15,30 - 22495: 15,30 - 22496: 15,31 - 22497: 15,32 - 22498: 15,32 - 22505: 23,36 - 22516: 24,37 - 22517: 24,35 - 22520: 23,36 - 22533: 28,37 - 22534: 28,35 - 22535: 28,35 - 22536: 28,36 - 22550: 27,41 - 22551: 27,42 - 22552: 27,43 - 22553: 27,42 - 22564: 23,36 + 21877: 2,30 + 21880: 2,28 + 21881: 2,27 + 21886: 9,28 + 21887: 9,29 + 21918: 13,34 + 21924: 2,34 + 21925: 2,35 + 21926: 2,36 + 21927: 2,36 + 21942: 10,35 + 21959: 12,35 + 21960: 12,36 + 21981: 12,35 + 21982: 12,36 + 21997: 4,42 + 21998: 4,41 + 22021: 9,43 + 22022: 9,44 + 22023: 9,45 + 22032: 12,43 + 22033: 12,45 + 22035: 13,44 + 22036: 13,42 + 22037: 13,41 + 22038: 13,41 + 22039: 13,41 + 22040: 13,40 + 22041: 13,40 + 22042: 13,38 + 22043: 13,37 + 22108: 9,49 + 22109: 9,50 + 22110: 9,50 + 22111: 9,51 + 22112: 9,52 + 22113: 9,53 + 22114: 9,53 + 22115: 9,53 + 22123: 14,49 + 22124: 14,50 + 22125: 14,52 + 22126: 14,53 + 22143: 14,52 + 22144: 14,53 + 22242: 20,36 + 22243: 18,41 + 22244: 18,43 + 22245: 18,45 + 22246: 23,47 + 22247: 23,49 + 22248: 23,51 + 22249: 23,45 + 22250: 23,43 + 22251: 23,41 + 22311: 15,47 + 22347: 39,48 + 22348: 39,51 + 22349: 39,49 + 22350: 39,52 + 22354: 34,50 + 22358: 33,51 + 22359: 33,52 + 22360: 33,49 + 22361: 33,48 + 22409: 12,27 + 22417: 17,27 + 22418: 17,28 + 22419: 17,29 + 22420: 17,29 + 22421: 17,30 + 22422: 17,31 + 22423: 17,31 + 22425: 15,29 + 22426: 15,30 + 22427: 15,30 + 22428: 15,31 + 22429: 15,32 + 22430: 15,32 + 22437: 23,36 + 22448: 24,37 + 22449: 24,35 + 22452: 23,36 + 22465: 28,37 + 22466: 28,35 + 22467: 28,35 + 22468: 28,36 + 22482: 27,41 + 22483: 27,42 + 22484: 27,43 + 22485: 27,42 + 22496: 23,36 - node: color: '#A9DA8BFF' id: BrickTileWhiteLineW decals: - 2869: -24,48 - 2870: -24,47 - 2886: -32,45 - 2892: -34,47 - 2899: -34,51 - 2900: -34,52 - 2901: -34,53 - 2918: -24,50 - 2919: -24,51 - 2937: -31,47 - 2938: -31,48 - 2939: -31,49 - 2940: -31,50 - 2941: -31,51 - 2942: -31,52 - 2943: -31,53 - 2944: -29,53 - 2945: -29,52 - 2946: -29,51 - 2947: -29,50 - 2948: -29,49 - 2949: -29,47 - 2950: -29,48 - 2951: -27,47 - 2952: -27,48 - 2953: -27,49 - 2954: -27,50 - 2994: -36,49 - 3004: -38,47 - 18339: -38,48 - 18340: -38,49 - 18341: -38,50 - 18343: -38,45 - 18344: -38,46 - 18346: -27,53 + 2868: -24,48 + 2869: -24,47 + 2885: -32,45 + 2891: -34,47 + 2898: -34,51 + 2899: -34,52 + 2900: -34,53 + 2917: -24,50 + 2918: -24,51 + 2936: -31,47 + 2937: -31,48 + 2938: -31,49 + 2939: -31,50 + 2940: -31,51 + 2941: -31,52 + 2942: -31,53 + 2943: -29,53 + 2944: -29,52 + 2945: -29,51 + 2946: -29,50 + 2947: -29,49 + 2948: -29,47 + 2949: -29,48 + 2950: -27,47 + 2951: -27,48 + 2952: -27,49 + 2953: -27,50 + 2993: -36,49 + 3003: -38,47 + 18276: -38,48 + 18277: -38,49 + 18278: -38,50 + 18280: -38,45 + 18281: -38,46 + 18283: -27,53 - node: color: '#B18BDAFF' id: BrickTileWhiteLineW decals: - 5070: 19,31 - 5071: 19,29 - 5072: 19,27 - 5085: 28,31 - 5148: 38,29 - 11413: -22,-30 - 11414: -22,-29 - 11415: -22,-29 - 11416: -22,-28 - 11417: -22,-27 - 11418: -22,-27 - 11419: -22,-26 - 11445: -23,-35 - 11449: -13,-35 - 11450: -13,-35 - 11474: -13,-39 - 11475: -13,-40 - 11476: -13,-41 - 11477: -13,-42 - 11478: -13,-43 - 11479: -13,-47 - 11480: -13,-49 - 11481: -13,-49 - 11482: -13,-51 - 11483: -13,-52 - 11484: -13,-52 - 11485: -13,-53 - 11486: -13,-50 - 11487: -13,-50 - 11488: -13,-48 - 11489: -13,-48 - 11570: -21,-36 - 11571: -21,-35 - 11572: -21,-35 - 11573: -21,-34 - 11574: -21,-34 - 11584: -31,-35 - 11585: -24,-32 - 11586: -24,-31 - 11587: -24,-30 - 11588: -24,-30 - 11589: -24,-29 - 11590: -24,-28 - 11591: -24,-28 - 11592: -24,-27 - 11593: -24,-27 - 11594: -24,-27 - 11595: -24,-27 - 11596: -24,-26 - 11597: -24,-25 - 11598: -24,-25 - 11612: -7,-26 - 11613: -7,-25 - 11614: -7,-25 - 11629: -11,-34 - 11630: -11,-35 - 11641: -4,-35 - 11654: -10,-31 - 11655: -10,-32 - 11656: -10,-32 - 11657: -10,-33 - 11658: -10,-33 - 11764: -12,-41 - 11765: -12,-41 - 11783: -15,-38 - 11784: -15,-39 - 11785: -15,-41 - 11786: -15,-42 - 11787: -15,-43 - 11788: -15,-44 - 11866: -34,-45 - 11867: -34,-44 - 11868: -34,-44 - 11869: -34,-43 - 11870: -34,-43 - 11871: -34,-42 - 11872: -34,-42 - 11873: -34,-41 - 11905: -27,-27 - 11906: -28,-29 - 11907: -27,-31 - 12051: -24,-24 - 12068: -21,-31 - 12069: -21,-26 - 12169: -23,-39 - 12170: -23,-40 - 12171: -23,-41 - 12183: -28,-39 - 12184: -28,-40 - 12185: -28,-41 - 12186: -15,-46 - 12187: -15,-47 - 12188: -15,-48 - 12189: -15,-49 - 12190: -17,-52 - 12191: -17,-53 - 12207: -12,-50 - 12219: -12,-59 - 12231: -20,-57 - 12266: -7,-48 - 12267: -7,-47 - 12274: -11,-51 - 12275: -11,-52 - 12281: -3,-48 - 12287: -17,-44 - 12288: -17,-43 - 12289: -17,-42 - 12290: -17,-41 - 12291: -17,-40 - 12608: -6,-32 - 12609: -6,-33 - 12610: -6,-34 - 20018: 33,38 - 20022: 37,39 + 5069: 19,31 + 5070: 19,29 + 5071: 19,27 + 5084: 28,31 + 5147: 38,29 + 11351: -22,-30 + 11352: -22,-29 + 11353: -22,-29 + 11354: -22,-28 + 11355: -22,-27 + 11356: -22,-27 + 11357: -22,-26 + 11383: -23,-35 + 11387: -13,-35 + 11388: -13,-35 + 11412: -13,-39 + 11413: -13,-40 + 11414: -13,-41 + 11415: -13,-42 + 11416: -13,-43 + 11417: -13,-47 + 11418: -13,-49 + 11419: -13,-49 + 11420: -13,-51 + 11421: -13,-52 + 11422: -13,-52 + 11423: -13,-53 + 11424: -13,-50 + 11425: -13,-50 + 11426: -13,-48 + 11427: -13,-48 + 11508: -21,-36 + 11509: -21,-35 + 11510: -21,-35 + 11511: -21,-34 + 11512: -21,-34 + 11522: -31,-35 + 11523: -24,-32 + 11524: -24,-31 + 11525: -24,-30 + 11526: -24,-30 + 11527: -24,-29 + 11528: -24,-28 + 11529: -24,-28 + 11530: -24,-27 + 11531: -24,-27 + 11532: -24,-27 + 11533: -24,-27 + 11534: -24,-26 + 11535: -24,-25 + 11536: -24,-25 + 11550: -7,-26 + 11551: -7,-25 + 11552: -7,-25 + 11567: -11,-34 + 11568: -11,-35 + 11579: -4,-35 + 11592: -10,-31 + 11593: -10,-32 + 11594: -10,-32 + 11595: -10,-33 + 11596: -10,-33 + 11702: -12,-41 + 11703: -12,-41 + 11721: -15,-38 + 11722: -15,-39 + 11723: -15,-41 + 11724: -15,-42 + 11725: -15,-43 + 11726: -15,-44 + 11804: -34,-45 + 11805: -34,-44 + 11806: -34,-44 + 11807: -34,-43 + 11808: -34,-43 + 11809: -34,-42 + 11810: -34,-42 + 11811: -34,-41 + 11989: -24,-24 + 12006: -21,-31 + 12007: -21,-26 + 12107: -23,-39 + 12108: -23,-40 + 12109: -23,-41 + 12121: -28,-39 + 12122: -28,-40 + 12123: -28,-41 + 12124: -15,-46 + 12125: -15,-47 + 12126: -15,-48 + 12127: -15,-49 + 12128: -17,-52 + 12129: -17,-53 + 12145: -12,-50 + 12157: -12,-59 + 12169: -20,-57 + 12204: -7,-48 + 12205: -7,-47 + 12212: -11,-51 + 12213: -11,-52 + 12219: -3,-48 + 12225: -17,-44 + 12226: -17,-43 + 12227: -17,-42 + 12228: -17,-41 + 12229: -17,-40 + 12545: -6,-32 + 12546: -6,-33 + 12547: -6,-34 + 19954: 33,38 + 19958: 37,39 - node: color: '#B240B4FF' id: BrickTileWhiteLineW decals: - 668: -25,-57 + 667: -25,-57 - node: color: '#CEDA8BFF' id: BrickTileWhiteLineW decals: - 10808: 29,-56 - 10810: 26,-57 - 10834: 34,-71 - 10835: 34,-70 - 10836: 34,-69 - 10837: 34,-67 - 10838: 34,-64 - 10839: 34,-63 - 10840: 34,-62 - 10856: 38,-61 - 10858: 38,-63 - 10877: 42,-62 - 10879: 37,-62 - 10894: 37,-70 - 10959: 30,-68 + 10746: 29,-56 - node: color: '#D381C9FF' id: BrickTileWhiteLineW decals: - 22610: -2,-49 - 22611: -2,-47 - 22624: -2,-39 - 22625: -2,-42 - 22633: -3,-36 - 22634: -3,-34 - 22694: -12,-50 + 22542: -2,-49 + 22543: -2,-47 + 22556: -2,-39 + 22557: -2,-42 + 22565: -3,-36 + 22566: -3,-34 + 22626: -12,-50 + 22627: -12,-41 + 22628: -11,-35 + 22629: -11,-34 + 22655: -15,-38 + 22656: -15,-39 + 22657: -15,-41 + 22658: -15,-41 + 22659: -15,-42 + 22660: -15,-43 + 22661: -15,-44 + 22662: -15,-46 + 22663: -15,-47 + 22664: -15,-47 + 22665: -15,-48 + 22666: -15,-49 + 22673: -17,-52 + 22674: -17,-53 + 22680: -12,-50 22695: -12,-41 - 22696: -11,-35 - 22697: -11,-34 - 22723: -15,-38 - 22724: -15,-39 - 22725: -15,-41 - 22726: -15,-41 - 22727: -15,-42 - 22728: -15,-43 - 22729: -15,-44 - 22730: -15,-46 - 22731: -15,-47 - 22732: -15,-47 - 22733: -15,-48 - 22734: -15,-49 - 22741: -17,-52 - 22742: -17,-53 - 22748: -12,-50 - 22763: -12,-41 - 22764: -16,-40 - 22777: -17,-44 - 22778: -17,-43 - 22779: -17,-43 - 22780: -17,-42 - 22781: -17,-42 - 22782: -17,-41 - 22783: -17,-40 - 22784: -17,-40 - 22830: -24,-32 - 22831: -24,-32 - 22832: -24,-30 - 22833: -24,-29 - 22834: -24,-28 - 22835: -24,-27 - 22836: -24,-26 - 22837: -24,-26 - 22838: -24,-27 - 22839: -24,-29 - 22840: -24,-31 - 22841: -24,-27 - 22842: -24,-26 - 22843: -24,-25 - 22860: -21,-31 - 22861: -21,-26 - 22873: -31,-35 - 22881: -21,-36 - 22882: -21,-35 - 22883: -21,-34 - 22897: -22,-30 - 22898: -22,-29 - 22899: -22,-28 - 22900: -22,-28 - 22901: -22,-27 - 22902: -22,-26 - 22950: -23,-35 - 22951: -13,-35 - 22958: -11,-35 - 22989: -10,-33 - 22990: -10,-32 - 22991: -10,-31 - 22992: -4,-35 - 22994: -3,-48 - 22995: -11,-51 - 22996: -13,-53 - 22997: -13,-52 - 22998: -13,-52 - 22999: -13,-51 - 23000: -13,-50 - 23001: -13,-50 - 23002: -13,-49 - 23003: -13,-48 - 23004: -13,-48 - 23005: -13,-47 - 23006: -13,-43 - 23007: -13,-43 - 23008: -13,-42 - 23009: -13,-41 - 23010: -13,-41 - 23011: -13,-40 - 23012: -13,-40 - 23013: -13,-39 - 23042: -7,-48 - 23043: -7,-47 - 23044: -11,-52 - 23112: -20,-57 - 23115: -12,-59 + 22696: -16,-40 + 22709: -17,-44 + 22710: -17,-43 + 22711: -17,-43 + 22712: -17,-42 + 22713: -17,-42 + 22714: -17,-41 + 22715: -17,-40 + 22716: -17,-40 + 22762: -24,-32 + 22763: -24,-32 + 22764: -24,-30 + 22765: -24,-29 + 22766: -24,-28 + 22767: -24,-27 + 22768: -24,-26 + 22769: -24,-26 + 22770: -24,-27 + 22771: -24,-29 + 22772: -24,-31 + 22773: -24,-27 + 22774: -24,-26 + 22775: -24,-25 + 22792: -21,-31 + 22793: -21,-26 + 22805: -31,-35 + 22813: -21,-36 + 22814: -21,-35 + 22815: -21,-34 + 22829: -22,-30 + 22830: -22,-29 + 22831: -22,-28 + 22832: -22,-28 + 22833: -22,-27 + 22834: -22,-26 + 22882: -23,-35 + 22883: -13,-35 + 22890: -11,-35 + 22921: -10,-33 + 22922: -10,-32 + 22923: -10,-31 + 22924: -4,-35 + 22926: -3,-48 + 22927: -11,-51 + 22928: -13,-53 + 22929: -13,-52 + 22930: -13,-52 + 22931: -13,-51 + 22932: -13,-50 + 22933: -13,-50 + 22934: -13,-49 + 22935: -13,-48 + 22936: -13,-48 + 22937: -13,-47 + 22938: -13,-43 + 22939: -13,-43 + 22940: -13,-42 + 22941: -13,-41 + 22942: -13,-41 + 22943: -13,-40 + 22944: -13,-40 + 22945: -13,-39 + 22974: -7,-48 + 22975: -7,-47 + 22976: -11,-52 + 23044: -20,-57 + 23047: -12,-59 + 24382: -27,-31 + 24391: -27,-27 + 24392: -28,-29 - node: color: '#DA8B8BFF' id: BrickTileWhiteLineW decals: - 7606: 64,-4 - 7611: 65,-3 - 7642: 71,13 - 19219: 68,15 - 19220: 68,14 - 19221: 68,13 - 19232: 60,-5 - 19233: 60,-4 - 20962: 71,13 + 7605: 64,-4 + 7610: 65,-3 + 7641: 71,13 + 19156: 68,15 + 19157: 68,14 + 19158: 68,13 + 19169: 60,-5 + 19170: 60,-4 + 20894: 71,13 - node: color: '#DA8BC9FF' id: BrickTileWhiteLineW decals: - 3806: 10,69 - 3807: 10,67 - 3808: 10,66 - 3812: 13,67 - 3819: 13,67 - 3825: 13,67 + 3805: 10,69 + 3806: 10,67 + 3807: 10,66 + 3811: 13,67 + 3818: 13,67 + 3824: 13,67 - node: color: '#DAA58BFF' id: BrickTileWhiteLineW decals: - 4371: 2,30 - 4372: 2,28 - 4373: 2,27 - 4393: 2,34 - 4394: 2,35 - 4395: 2,36 - 4412: 11,30 - 4413: 11,28 - 4422: 9,28 - 4423: 9,29 - 4442: 15,29 - 4443: 15,30 - 4444: 15,31 - 4455: 12,27 - 4460: 15,32 - 4484: 17,27 - 4485: 17,28 - 4486: 17,29 - 4487: 17,30 - 4488: 17,31 - 4521: 12,36 - 4522: 12,35 - 4532: 4,41 - 4533: 4,42 - 4557: 9,45 - 4558: 9,44 - 4559: 9,43 - 4572: 13,38 - 4573: 13,37 - 4603: 12,43 - 4604: 12,45 - 4605: 13,40 - 4606: 13,41 - 4607: 13,42 - 4608: 13,44 - 4611: 15,47 - 4630: 19,31 - 4631: 19,30 - 4632: 19,29 - 4633: 19,28 - 4634: 19,27 - 4665: 28,31 + 4370: 2,30 + 4371: 2,28 + 4372: 2,27 + 4392: 2,34 + 4393: 2,35 + 4394: 2,36 + 4411: 11,30 + 4412: 11,28 + 4421: 9,28 + 4422: 9,29 + 4441: 15,29 + 4442: 15,30 + 4443: 15,31 + 4454: 12,27 + 4459: 15,32 + 4483: 17,27 + 4484: 17,28 + 4485: 17,29 + 4486: 17,30 + 4487: 17,31 + 4520: 12,36 + 4521: 12,35 + 4531: 4,41 + 4532: 4,42 + 4556: 9,45 + 4557: 9,44 + 4558: 9,43 + 4571: 13,38 + 4572: 13,37 + 4602: 12,43 + 4603: 12,45 + 4604: 13,40 + 4605: 13,41 + 4606: 13,42 + 4607: 13,44 + 4610: 15,47 + 4629: 19,31 + 4630: 19,30 + 4631: 19,29 + 4632: 19,28 + 4633: 19,27 + 4664: 28,31 + 4676: 27,29 4677: 27,29 - 4678: 27,29 - 4679: 27,30 - 4680: 27,28 - 4694: 26,29 - 4698: 22,29 - 4723: 23,36 - 4727: 24,37 - 4728: 24,35 - 4748: 28,35 - 4749: 28,36 - 4750: 28,37 - 4763: 20,36 - 4786: 27,41 - 4787: 27,42 - 4788: 27,43 - 4803: 10,35 - 4856: 34,50 - 4864: 33,49 - 4865: 33,51 - 4867: 39,51 - 4909: 9,53 - 4910: 9,52 - 4911: 9,51 - 4912: 9,50 - 4913: 9,49 - 4921: 14,49 - 4922: 14,50 - 4927: 14,53 - 4928: 14,52 - 4976: 23,43 - 4977: 23,45 - 4978: 23,47 - 4979: 23,49 - 4980: 23,51 - 4990: 18,41 - 4991: 18,43 - 4992: 18,45 - 5022: 23,41 - 5066: 39,49 - 5067: 39,51 - 5068: 39,48 - 5069: 39,52 - 5158: 38,29 - 5160: 33,37 - 11346: -11,-82 - 11347: -11,-81 - 11348: -11,-80 - 14387: -46,14 - 14388: -46,12 - 15338: -49,9 + 4678: 27,30 + 4679: 27,28 + 4693: 26,29 + 4697: 22,29 + 4722: 23,36 + 4726: 24,37 + 4727: 24,35 + 4747: 28,35 + 4748: 28,36 + 4749: 28,37 + 4762: 20,36 + 4785: 27,41 + 4786: 27,42 + 4787: 27,43 + 4802: 10,35 + 4855: 34,50 + 4863: 33,49 + 4864: 33,51 + 4866: 39,51 + 4908: 9,53 + 4909: 9,52 + 4910: 9,51 + 4911: 9,50 + 4912: 9,49 + 4920: 14,49 + 4921: 14,50 + 4926: 14,53 + 4927: 14,52 + 4975: 23,43 + 4976: 23,45 + 4977: 23,47 + 4978: 23,49 + 4979: 23,51 + 4989: 18,41 + 4990: 18,43 + 4991: 18,45 + 5021: 23,41 + 5065: 39,49 + 5066: 39,51 + 5067: 39,48 + 5068: 39,52 + 5157: 38,29 + 5159: 33,37 + 11284: -11,-82 + 11285: -11,-81 + 11286: -11,-80 + 14324: -46,14 + 14325: -46,12 + 15275: -49,9 - node: color: '#DABC8BFF' id: BrickTileWhiteLineW decals: - 4009: -40,53 - 9560: 2,-31 - 9580: 3,-34 - 9581: 3,-33 - 9588: 7,-34 - 9589: 7,-33 - 9590: 7,-32 - 9606: 9,-36 - 9607: 9,-34 + 4008: -40,53 + 9536: 2,-31 + 9556: 3,-34 + 9557: 3,-33 + 9564: 7,-34 + 9565: 7,-33 + 9566: 7,-32 + 9582: 9,-36 + 9583: 9,-34 - node: color: '#EFB341FF' id: BrickTileWhiteLineW decals: - 16865: -53,4 - 16866: -53,5 - 16867: -53,6 - 16879: -48,1 - 16894: -59,0 - 16896: -61,-2 - 16897: -61,-3 - 16944: -59,11 - 16945: -59,12 - 16946: -59,13 - 16950: -55,16 - 16960: -62,1 - 16970: -62,-7 - 16978: -56,-9 - 16989: -61,-8 - 16990: -61,-9 - 17003: -55,-8 - 17005: -54,-10 - 17006: -54,-11 - 17007: -54,-6 - 17008: -54,-5 - 17030: -60,-17 - 17036: -61,-13 - 17037: -61,-14 - 17052: -51,-15 - 17063: -59,-16 - 17064: -50,-16 - 17065: -50,-17 - 17080: -50,-14 - 17081: -50,-13 - 17152: -46,12 - 17153: -46,14 - 17188: -60,14 - 17190: -67,15 - 17204: -78,15 - 17286: -61,18 - 17287: -61,19 - 17298: -50,-9 - 17299: -50,-8 - 17300: -50,-7 - 17336: -50,-9 - 17337: -50,-8 - 17338: -50,-7 - 17339: -56,-7 - 17345: -62,-7 - 17384: -74,-6 - 17385: -74,-7 - 17386: -74,-8 - 17390: -77,-7 - 17391: -77,-8 - 17392: -77,-9 - 17404: -11,-82 - 17405: -11,-81 - 17406: -11,-80 - 17409: 13,78 - 17410: 12,87 - 17419: 5,92 - 17420: 10,90 - 17437: 5,88 - 17438: 5,89 - 17439: 5,90 - 17448: 9,85 - 17449: 9,86 - 17450: 9,87 - 17453: 12,87 - 17454: 10,82 - 17455: 10,79 - 17456: 10,78 - 17457: 10,77 - 17478: 13,78 - 17517: -65,6 - 17518: -65,7 - 17519: -65,8 - 17520: -65,9 - 17580: -65,1 - 17600: -74,-3 - 17601: -74,-2 - 17602: -74,-1 - 17603: -74,1 - 17620: -65,1 - 17697: -78,6 - 17698: -78,5 - 17699: -78,4 - 17723: -77,9 - 17724: -77,10 - 17725: -77,11 - 17749: -75,0 - 17792: -73,-11 - 17793: -73,-12 - 17809: -55,17 - 18164: -51,-3 - 18165: -51,-2 - 19893: -48,-3 - 21619: -45,11 - 21620: -45,13 - 21623: -45,15 + 16802: -53,4 + 16803: -53,5 + 16804: -53,6 + 16816: -48,1 + 16831: -59,0 + 16833: -61,-2 + 16834: -61,-3 + 16881: -59,11 + 16882: -59,12 + 16883: -59,13 + 16887: -55,16 + 16897: -62,1 + 16907: -62,-7 + 16915: -56,-9 + 16926: -61,-8 + 16927: -61,-9 + 16940: -55,-8 + 16942: -54,-10 + 16943: -54,-11 + 16944: -54,-6 + 16945: -54,-5 + 16967: -60,-17 + 16973: -61,-13 + 16974: -61,-14 + 16989: -51,-15 + 17000: -59,-16 + 17001: -50,-16 + 17002: -50,-17 + 17017: -50,-14 + 17018: -50,-13 + 17089: -46,12 + 17090: -46,14 + 17125: -60,14 + 17127: -67,15 + 17141: -78,15 + 17223: -61,18 + 17224: -61,19 + 17235: -50,-9 + 17236: -50,-8 + 17237: -50,-7 + 17273: -50,-9 + 17274: -50,-8 + 17275: -50,-7 + 17276: -56,-7 + 17282: -62,-7 + 17321: -74,-6 + 17322: -74,-7 + 17323: -74,-8 + 17327: -77,-7 + 17328: -77,-8 + 17329: -77,-9 + 17341: -11,-82 + 17342: -11,-81 + 17343: -11,-80 + 17346: 13,78 + 17347: 12,87 + 17356: 5,92 + 17357: 10,90 + 17374: 5,88 + 17375: 5,89 + 17376: 5,90 + 17385: 9,85 + 17386: 9,86 + 17387: 9,87 + 17390: 12,87 + 17391: 10,82 + 17392: 10,79 + 17393: 10,78 + 17394: 10,77 + 17415: 13,78 + 17454: -65,6 + 17455: -65,7 + 17456: -65,8 + 17457: -65,9 + 17517: -65,1 + 17537: -74,-3 + 17538: -74,-2 + 17539: -74,-1 + 17540: -74,1 + 17557: -65,1 + 17634: -78,6 + 17635: -78,5 + 17636: -78,4 + 17660: -77,9 + 17661: -77,10 + 17662: -77,11 + 17686: -75,0 + 17729: -73,-11 + 17730: -73,-12 + 17746: -55,17 + 18101: -51,-3 + 18102: -51,-2 + 19829: -48,-3 + 21551: -45,11 + 21552: -45,13 + 21555: -45,15 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 857: 69,-42 - 858: 69,-43 - 859: 69,-44 - 860: 69,-46 - 873: 69,-45 - 975: 2,-17 - 976: 2,-16 - 977: 2,-15 - 978: 2,-14 - 1177: 44,-15 - 1178: 44,-16 - 2057: -15,50 - 2058: -15,49 - 2059: -15,48 - 2067: -18,52 - 2068: -18,51 - 2069: -18,50 - 2073: -18,48 - 2074: -18,47 - 2075: -18,46 - 2076: -20,47 - 2077: -20,48 - 2078: -20,49 - 2079: -20,51 - 2121: -18,36 - 2122: -18,35 - 2123: -18,34 - 2124: -18,32 - 2125: -18,31 - 2126: -18,29 - 2127: -18,28 - 2128: -18,27 - 2129: -20,29 - 2130: -20,30 - 2131: -20,31 - 2132: -20,32 - 2133: -20,33 - 2134: -20,34 - 2265: -22,41 - 2358: -28,37 - 2359: -28,36 - 2360: -28,34 - 2361: -28,35 - 2362: -28,33 - 2363: -28,32 - 2373: -31,30 - 2374: -31,31 - 2707: -13,53 - 2778: -9,49 - 2779: -4,49 - 3018: -10,57 - 3025: -18,61 - 3026: -18,62 - 3027: -18,63 - 3028: -18,64 - 3097: -4,61 - 3098: -4,62 - 3099: -4,63 - 3100: -4,64 - 3101: -3,57 - 3109: -3,68 - 3111: -10,68 - 3124: -17,57 - 3133: -17,68 - 3224: -11,72 - 3225: -11,73 - 3226: -11,74 - 3227: -11,75 - 3235: -11,79 - 3236: -11,80 - 3237: -11,81 - 3238: -11,82 - 3239: -11,92 - 3240: -11,93 - 3241: -11,94 - 3242: -11,95 + 856: 69,-42 + 857: 69,-43 + 858: 69,-44 + 859: 69,-46 + 872: 69,-45 + 974: 2,-17 + 975: 2,-16 + 976: 2,-15 + 977: 2,-14 + 1176: 44,-15 + 1177: 44,-16 + 2056: -15,50 + 2057: -15,49 + 2058: -15,48 + 2066: -18,52 + 2067: -18,51 + 2068: -18,50 + 2072: -18,48 + 2073: -18,47 + 2074: -18,46 + 2075: -20,47 + 2076: -20,48 + 2077: -20,49 + 2078: -20,51 + 2120: -18,36 + 2121: -18,35 + 2122: -18,34 + 2123: -18,32 + 2124: -18,31 + 2125: -18,29 + 2126: -18,28 + 2127: -18,27 + 2128: -20,29 + 2129: -20,30 + 2130: -20,31 + 2131: -20,32 + 2132: -20,33 + 2133: -20,34 + 2264: -22,41 + 2357: -28,37 + 2358: -28,36 + 2359: -28,34 + 2360: -28,35 + 2361: -28,33 + 2362: -28,32 + 2372: -31,30 + 2373: -31,31 + 2706: -13,53 + 2777: -9,49 + 2778: -4,49 + 3017: -10,57 + 3024: -18,61 + 3025: -18,62 + 3026: -18,63 + 3027: -18,64 + 3096: -4,61 + 3097: -4,62 + 3098: -4,63 + 3099: -4,64 + 3100: -3,57 + 3108: -3,68 + 3110: -10,68 + 3123: -17,57 + 3132: -17,68 + 3223: -11,72 + 3224: -11,73 + 3225: -11,74 + 3226: -11,75 + 3234: -11,79 + 3235: -11,80 + 3236: -11,81 + 3237: -11,82 + 3238: -11,92 + 3239: -11,93 + 3240: -11,94 + 3241: -11,95 + 3260: -11,88 3261: -11,88 - 3262: -11,88 - 3263: -11,87 - 3264: -11,86 - 3265: -11,85 - 3285: -29,95 - 3286: -29,94 - 3287: -29,93 - 3288: -29,92 - 3289: -29,88 - 3290: -29,87 - 3291: -29,86 - 3292: -29,85 - 3293: -29,82 - 3294: -29,81 - 3295: -29,80 - 3296: -29,79 - 3297: -29,75 - 3298: -29,74 - 3299: -29,73 - 3300: -29,72 - 3312: -28,68 - 3526: 3,68 - 3533: 8,68 - 3619: 7,75 - 3670: 7,72 - 3671: 7,73 - 3672: 7,79 - 3673: 7,80 - 3674: 7,81 - 3781: 3,57 - 3828: 17,69 - 4157: -25,22 - 5173: 18,16 - 5174: 18,17 - 5175: 18,18 - 5176: 18,19 + 3262: -11,87 + 3263: -11,86 + 3264: -11,85 + 3284: -29,95 + 3285: -29,94 + 3286: -29,93 + 3287: -29,92 + 3288: -29,88 + 3289: -29,87 + 3290: -29,86 + 3291: -29,85 + 3292: -29,82 + 3293: -29,81 + 3294: -29,80 + 3295: -29,79 + 3296: -29,75 + 3297: -29,74 + 3298: -29,73 + 3299: -29,72 + 3311: -28,68 + 3525: 3,68 + 3532: 8,68 + 3618: 7,75 + 3669: 7,72 + 3670: 7,73 + 3671: 7,79 + 3672: 7,80 + 3673: 7,81 + 3780: 3,57 + 3827: 17,69 + 4156: -25,22 + 5172: 18,16 + 5173: 18,17 + 5174: 18,18 + 5175: 18,19 + 5176: 18,12 5177: 18,12 - 5178: 18,12 - 5179: 18,11 - 5180: 18,10 - 5181: 18,9 - 5200: 18,3 - 5201: 18,4 - 5202: 18,2 - 5203: 18,-2 - 5204: 18,-3 - 5205: 18,-4 - 5206: 18,-5 - 5217: -23,68 - 5506: -35,5 - 5507: -30,5 - 5508: -22,5 - 5572: -34,27 - 5573: -34,28 - 6224: -18,-12 - 6225: -18,-13 - 6226: -18,-14 - 6227: -18,-15 - 6228: -18,-16 - 6229: -18,-17 - 6311: 18,-17 - 6312: 18,-16 - 6313: 18,-15 - 6314: 18,-14 - 6315: 18,-13 - 6316: 18,-12 - 6337: -2,-14 - 6338: -2,-15 - 6347: 2,-17 - 6639: -21,-3 + 5178: 18,11 + 5179: 18,10 + 5180: 18,9 + 5199: 18,3 + 5200: 18,4 + 5201: 18,2 + 5202: 18,-2 + 5203: 18,-3 + 5204: 18,-4 + 5205: 18,-5 + 5216: -23,68 + 5505: -35,5 + 5506: -30,5 + 5507: -22,5 + 5571: -34,27 + 5572: -34,28 + 6223: -18,-12 + 6224: -18,-13 + 6225: -18,-14 + 6226: -18,-15 + 6227: -18,-16 + 6228: -18,-17 + 6310: 18,-17 + 6311: 18,-16 + 6312: 18,-15 + 6313: 18,-14 + 6314: 18,-13 + 6315: 18,-12 + 6336: -2,-14 + 6337: -2,-15 + 6346: 2,-17 + 6638: -21,-3 + 6639: -21,-2 6640: -21,-2 - 6641: -21,-2 - 6644: -33,2 - 6645: -33,1 - 6646: -33,0 - 6647: -33,-1 - 6648: -33,-2 - 6649: -33,-3 - 6650: -33,-4 - 6651: -33,-5 - 6652: -33,-6 - 6653: -33,-7 - 6654: -33,-8 - 6655: -33,-9 - 6684: -31,1 - 6721: -35,-15 + 6643: -33,2 + 6644: -33,1 + 6645: -33,0 + 6646: -33,-1 + 6647: -33,-2 + 6648: -33,-3 + 6649: -33,-4 + 6650: -33,-5 + 6651: -33,-6 + 6652: -33,-7 + 6653: -33,-8 + 6654: -33,-9 + 6683: -31,1 + 6720: -35,-15 + 6721: -35,-14 6722: -35,-14 - 6723: -35,-14 - 6724: -35,-13 - 6725: -35,-12 - 6747: -30,-12 - 6748: -30,-13 + 6723: -35,-13 + 6724: -35,-12 + 6746: -30,-12 + 6747: -30,-13 + 6748: -30,-14 6749: -30,-14 - 6750: -30,-14 - 6751: -30,-15 - 6968: -26,-17 + 6750: -30,-15 + 6967: -26,-17 + 6968: -26,-16 6969: -26,-16 - 6970: -26,-16 + 6970: -22,-17 6971: -22,-17 - 6972: -22,-17 - 6973: -22,-16 - 7006: 7,-20 - 7007: -4,-20 - 7008: -11,-20 - 7013: 14,-20 - 7014: 18,5 - 7125: 25,5 - 7190: 32,5 - 8020: 62,-15 - 8021: 62,-14 - 8022: 62,-13 - 8023: 58,-14 - 8024: 58,-27 - 8025: 60,-27 - 8026: 62,-28 - 8027: 62,-27 - 8028: 62,-26 - 8037: 60,-14 - 8239: 31,-11 + 6972: -22,-16 + 7005: 7,-20 + 7006: -4,-20 + 7007: -11,-20 + 7012: 14,-20 + 7013: 18,5 + 7124: 25,5 + 7189: 32,5 + 8019: 62,-15 + 8020: 62,-14 + 8021: 62,-13 + 8022: 58,-14 + 8023: 58,-27 + 8024: 60,-27 + 8025: 62,-28 + 8026: 62,-27 + 8027: 62,-26 + 8036: 60,-14 + 8238: 31,-11 + 8239: 25,-11 8240: 25,-11 - 8241: 25,-11 - 8250: 41,-14 + 8249: 41,-14 + 8250: 41,-12 8251: 41,-12 8252: 41,-12 - 8253: 41,-12 - 8254: 41,-10 - 8255: 41,-11 + 8253: 41,-10 + 8254: 41,-11 + 8304: 41,-13 8305: 41,-13 - 8306: 41,-13 - 8446: 48,-20 + 8445: 48,-20 + 8446: 53,-20 8447: 53,-20 - 8448: 53,-20 - 8685: 0,-76 - 8686: 0,-80 - 8690: -3,-78 - 8746: 11,-25 - 8747: 11,-26 - 8761: -7,-26 + 8684: 0,-76 + 8685: 0,-80 + 8689: -3,-78 + 8745: 11,-25 + 8746: 11,-26 + 8760: -7,-26 + 8761: -7,-25 8762: -7,-25 - 8763: -7,-25 - 8827: 0,-27 - 8828: 0,-26 - 8829: 0,-25 - 8830: 0,-24 - 8872: 0,-35 + 8826: 0,-27 + 8827: 0,-26 + 8828: 0,-25 + 8829: 0,-24 + 8871: 0,-35 + 8872: 0,-34 8873: 0,-34 - 8874: 0,-34 - 8875: 0,-33 - 8876: 0,-32 + 8874: 0,-33 + 8875: 0,-32 + 8876: 0,-31 8877: 0,-31 - 8878: 0,-31 - 8920: -3,-25 - 8921: -3,-25 - 8922: -3,-26 - 8955: -16,-26 - 9083: 2,-24 - 9385: 0,-50 - 9386: 0,-49 - 9387: 0,-49 - 9388: 0,-45 - 9389: 0,-46 - 9390: 0,-48 - 9391: 0,-48 - 9392: 0,-47 - 9393: 0,-42 - 9394: 0,-41 - 9395: 0,-40 - 9396: 0,-40 - 9397: 0,-39 - 9398: 0,-52 - 9399: 0,-53 - 9400: 0,-54 - 9401: 0,-55 - 9413: 0,-61 - 9414: 0,-60 - 9415: 0,-59 - 9439: -5,-73 - 9440: -5,-72 - 9441: -2,-69 - 9442: -2,-70 - 9443: -2,-71 - 9463: 72,-51 - 9522: 15,-26 - 9523: 15,-25 - 10664: 76,-45 - 12721: -41,22 - 13456: -41,-63 - 14852: -20,50 - 14952: -12,23 - 14953: -2,23 - 14954: 5,23 - 14955: 15,23 - 15323: -6,-70 - 15398: -41,21 - 15399: -41,20 - 15400: -41,17 - 15401: -41,16 - 15402: -41,15 - 15403: -41,14 - 15404: -41,11 - 15405: -41,10 - 15406: -41,9 - 15448: 0,-79 - 15449: 0,-78 - 15450: 0,-77 - 15567: 91,-4 - 15568: 91,-3 - 15579: 96,-3 - 17498: 7,82 - 17506: 7,74 - 18771: -11,-9 - 18772: -5,-9 - 18773: 2,-9 - 18774: 8,-9 - 18802: 14,-9 - 19711: 40,-10 - 19712: 40,-11 - 19713: 40,-13 - 19714: 40,-14 - 20216: -18,-5 - 20217: -18,-4 - 20218: -18,-3 - 20219: -18,-2 - 20220: -18,2 - 20221: -18,3 - 20222: -18,4 - 20223: -18,5 - 20224: -18,9 - 20225: -18,10 - 20226: -18,11 - 20227: -18,12 - 20228: -18,16 - 20229: -18,17 - 20230: -18,18 - 20231: -18,19 - 23123: -16,-25 - 23842: 0,-44 + 8918: -3,-25 + 8919: -3,-25 + 8920: -3,-26 + 8953: -16,-26 + 9073: 2,-24 + 9374: 0,-50 + 9375: 0,-49 + 9376: 0,-49 + 9377: 0,-45 + 9378: 0,-46 + 9379: 0,-48 + 9380: 0,-48 + 9381: 0,-47 + 9382: 0,-42 + 9383: 0,-41 + 9384: 0,-40 + 9385: 0,-40 + 9386: 0,-39 + 9387: 0,-52 + 9388: 0,-53 + 9389: 0,-54 + 9390: 0,-55 + 9401: 0,-61 + 9402: 0,-60 + 9403: 0,-59 + 9427: -5,-73 + 9428: -5,-72 + 9429: -2,-69 + 9430: -2,-70 + 9431: -2,-71 + 9451: 72,-51 + 9502: 15,-26 + 9503: 15,-25 + 10602: 76,-45 + 12658: -41,22 + 13393: -41,-63 + 14789: -20,50 + 14889: -12,23 + 14890: -2,23 + 14891: 5,23 + 14892: 15,23 + 15260: -6,-70 + 15335: -41,21 + 15336: -41,20 + 15337: -41,17 + 15338: -41,16 + 15339: -41,15 + 15340: -41,14 + 15341: -41,11 + 15342: -41,10 + 15343: -41,9 + 15385: 0,-79 + 15386: 0,-78 + 15387: 0,-77 + 15504: 91,-4 + 15505: 91,-3 + 15516: 96,-3 + 17435: 7,82 + 17443: 7,74 + 18708: -11,-9 + 18709: -5,-9 + 18710: 2,-9 + 18711: 8,-9 + 18739: 14,-9 + 19647: 40,-10 + 19648: 40,-11 + 19649: 40,-13 + 19650: 40,-14 + 20152: -18,-5 + 20153: -18,-4 + 20154: -18,-3 + 20155: -18,-2 + 20156: -18,2 + 20157: -18,3 + 20158: -18,4 + 20159: -18,5 + 20160: -18,9 + 20161: -18,10 + 20162: -18,11 + 20163: -18,12 + 20164: -18,16 + 20165: -18,17 + 20166: -18,18 + 20167: -18,19 + 23055: -16,-25 + 23762: 0,-44 - node: cleanable: True color: '#FFFFFFFF' id: BrickTileWhiteLineW decals: - 4090: -18,19 - 4091: -18,18 - 4092: -18,17 - 4093: -18,16 - 4094: -18,11 - 4095: -18,10 - 4096: -18,9 - 4097: -18,12 + 4089: -18,19 + 4090: -18,18 + 4091: -18,17 + 4092: -18,16 + 4093: -18,11 + 4094: -18,10 + 4095: -18,9 + 4096: -18,12 - node: color: '#FFFFFFFF' id: BushAThree decals: - 883: -36,48 - 884: -36,50 + 882: -36,48 + 883: -36,50 - node: color: '#FFFFFFFF' id: BushCThree decals: - 2846: -33,41 + 2845: -33,41 - node: color: '#FFFFFFFF' id: Busha1 decals: - 980: -43.133636,-38.091503 - 1565: -38,35 + 979: -43.133636,-38.091503 + 1564: -38,35 - node: color: '#FFFFFFFF' id: Busha2 decals: - 1566: -38,31 + 1565: -38,31 - node: color: '#FFFFFFFF' id: Busha3 decals: - 1567: -41,31 + 1566: -41,31 - node: color: '#FFFFFFFF' id: Bushb1 decals: - 882: -36,50 + 881: -36,50 - node: color: '#FFFFFFFF' id: Bushb2 decals: - 15497: 73,-20 + 15434: 73,-20 - node: color: '#FFFFFFFF' id: Bushb3 decals: - 881: -36,48 - 979: -44.91489,-39.19307 + 880: -36,48 + 978: -44.91489,-39.19307 - node: color: '#FFFFFFFF' id: Bushf1 decals: - 536: -2,-84 - 537: -1,-84 - 538: 0,-84 + 535: -2,-84 + 536: -1,-84 + 537: 0,-84 - node: color: '#FFFFFFFF' id: Bushf2 decals: - 530: -2,-84 - 531: -1,-84 - 532: 0,-84 + 529: -2,-84 + 530: -1,-84 + 531: 0,-84 - node: color: '#FFFFFFFF' id: Bushf3 decals: - 533: -2,-84 - 534: -1,-84 - 535: 0,-84 + 532: -2,-84 + 533: -1,-84 + 534: 0,-84 - node: color: '#FFFFFFFF' id: Bushg1 decals: - 519: -5.662094,-66.98197 + 518: -5.662094,-66.98197 - node: color: '#FFFFFFFF' id: Bushg2 decals: - 520: -3.6811028,-66.96635 - 523: -6.9387937,-72.70105 - 525: -6.0637937,-73.82605 + 519: -3.6811028,-66.96635 + 522: -6.9387937,-72.70105 + 524: -6.0637937,-73.82605 - node: color: '#FFFFFFFF' id: Bushg4 decals: - 522: -1.9936025,-67.85697 - 524: -3.0169184,-73.9823 + 521: -1.9936025,-67.85697 + 523: -3.0169184,-73.9823 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 521: -6.9623528,-67.85697 + 520: -6.9623528,-67.85697 - node: color: '#FFFFFFFF' id: Caution decals: - 846: 92,26 - 13265: -58,22 + 845: 92,26 + 13202: -58,22 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: - 852: -53,54 - 871: 69,-47 - 872: 69,-44 + 851: -53,54 + 870: 69,-47 + 871: 69,-44 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Caution decals: - 13262: -58,25 - 13263: -58,25 - 13264: -58,25 + 13199: -58,25 + 13200: -58,25 + 13201: -58,25 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Caution decals: - 19318: 54.897575,4.5646844 + 19255: 54.897575,4.5646844 - node: color: '#3EB38896' id: CheckerNESW decals: - 13973: -68,56 - 13974: -67,56 - 13975: -68,55 - 13976: -68,54 - 13977: -67,54 - 13978: -67,55 - 13979: -66,56 - 13980: -66,55 - 13981: -66,54 - 13982: -65,54 - 13983: -65,55 - 13984: -65,56 - 13985: -64,54 - 13986: -64,55 - 13987: -64,56 - 13988: -63,56 - 13989: -63,55 - 13990: -63,54 - 13991: -62,54 - 13992: -62,55 - 13993: -62,56 - 13994: -62,57 - 13995: -63,57 - 13996: -63,58 - 13997: -62,58 - 13998: -62,59 - 13999: -63,59 - 14000: -63,60 - 14001: -62,60 - 14002: -62,61 - 14003: -63,61 - 14004: -70,55 + 13910: -68,56 + 13911: -67,56 + 13912: -68,55 + 13913: -68,54 + 13914: -67,54 + 13915: -67,55 + 13916: -66,56 + 13917: -66,55 + 13918: -66,54 + 13919: -65,54 + 13920: -65,55 + 13921: -65,56 + 13922: -64,54 + 13923: -64,55 + 13924: -64,56 + 13925: -63,56 + 13926: -63,55 + 13927: -63,54 + 13928: -62,54 + 13929: -62,55 + 13930: -62,56 + 13931: -62,57 + 13932: -63,57 + 13933: -63,58 + 13934: -62,58 + 13935: -62,59 + 13936: -63,59 + 13937: -63,60 + 13938: -62,60 + 13939: -62,61 + 13940: -63,61 + 13941: -70,55 - node: color: '#808080FF' id: CheckerNESW decals: - 205: -14,54 - 206: -14,53 - 207: -14,52 + 204: -14,54 + 205: -14,53 + 206: -14,52 - node: color: '#52B4E996' id: CheckerNWSE decals: - 650: 1,-38 + 649: 1,-38 - node: color: '#9D9D97FF' id: CheckerNWSE decals: - 2638: 2,52 - 2639: 2,50 + 2637: 2,52 + 2638: 2,50 + 2639: 2,51 2640: 2,51 - 2641: 2,51 - 2642: 1,51 - 2643: 1,50 - 2644: 0,50 - 2645: -1,50 - 2646: -1,51 - 2647: 0,51 - 2648: 0,52 - 2649: -1,54 - 2650: 0,53 - 2651: -1,53 - 2652: 0,54 - 2653: 1,53 - 2654: 2,53 - 2655: 3,54 - 2656: 3,50 - 2657: 3,51 - 2658: 3,52 - 2659: 3,53 - 2660: 1,52 - 2661: -1,52 + 2641: 1,51 + 2642: 1,50 + 2643: 0,50 + 2644: -1,50 + 2645: -1,51 + 2646: 0,51 + 2647: 0,52 + 2648: -1,54 + 2649: 0,53 + 2650: -1,53 + 2651: 0,54 + 2652: 1,53 + 2653: 2,53 + 2654: 3,54 + 2655: 3,50 + 2656: 3,51 + 2657: 3,52 + 2658: 3,53 + 2659: 1,52 + 2660: -1,52 - node: color: '#DA8BC9FF' id: CheckerNWSE decals: - 16106: -67,-46 - 16107: -66,-46 - 16108: -66,-47 - 16109: -66,-48 - 16110: -65,-47 - 16111: -65,-48 - 16112: -64,-48 - 16113: -64,-47 - 16114: -64,-46 - 16115: -65,-46 - 16116: -63,-46 - 16117: -62,-46 - 16118: -62,-47 - 16119: -62,-48 - 16120: -63,-45 - 16121: -64,-45 - 16122: -65,-45 + 16043: -67,-46 + 16044: -66,-46 + 16045: -66,-47 + 16046: -66,-48 + 16047: -65,-47 + 16048: -65,-48 + 16049: -64,-48 + 16050: -64,-47 + 16051: -64,-46 + 16052: -65,-46 + 16053: -63,-46 + 16054: -62,-46 + 16055: -62,-47 + 16056: -62,-48 + 16057: -63,-45 + 16058: -64,-45 + 16059: -65,-45 - node: color: '#FFFF00D8' id: ConcreteTrimCornerNe decals: - 14005: -62,61 + 13942: -62,61 - node: color: '#FFFF00FF' id: ConcreteTrimCornerNe decals: - 14018: -62,61 + 13955: -62,61 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNe decals: - 2091: -21,39 - 2187: -20,40 - 7841: 75,-16 - 7887: 68,-24 - 12657: -40,34 - 12670: -38,33 - 15661: 97,7 + 2090: -21,39 + 2186: -20,40 + 7840: 75,-16 + 7886: 68,-24 + 12594: -40,34 + 12607: -38,33 + 15598: 97,7 - node: color: '#FFFF00D9' id: ConcreteTrimCornerNw decals: - 14006: -63,61 + 13943: -63,61 - node: color: '#FFFF00FF' id: ConcreteTrimCornerNw decals: - 14019: -63,61 - 14032: -68,56 + 13956: -63,61 + 13969: -68,56 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNw decals: - 2090: -17,39 - 2186: -18,40 - 7886: 74,-24 - 7893: 67,-16 + 2089: -17,39 + 2185: -18,40 + 7885: 74,-24 + 7892: 67,-16 - node: color: '#FFFF00FF' id: ConcreteTrimCornerSe decals: - 14021: -62,54 + 13958: -62,54 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSe decals: - 2092: -21,43 - 2185: -20,42 - 7922: 68,-17 - 7947: 75,-25 + 2091: -21,43 + 2184: -20,42 + 7921: 68,-17 + 7946: 75,-25 - node: color: '#FFFF00FF' id: ConcreteTrimCornerSw decals: - 14028: -68,54 + 13965: -68,54 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSw decals: - 2093: -17,43 - 2189: -18,42 - 7921: 74,-17 - 7948: 67,-25 - 12661: -38,32 + 2092: -17,43 + 2188: -18,42 + 7920: 74,-17 + 7947: 67,-25 + 12598: -38,32 - node: color: '#FFFFFFFF' id: ConcreteTrimEndE decals: - 2174: -18,41 + 2173: -18,41 - node: color: '#FFFFFFFF' id: ConcreteTrimEndN decals: - 2172: -19,42 + 2171: -19,42 - node: color: '#FFFFFFFF' id: ConcreteTrimEndS decals: - 2173: -19,40 - 12658: -40,32 + 2172: -19,40 + 12595: -40,32 - node: color: '#FFFF00FF' id: ConcreteTrimEndW decals: - 14030: -70,55 + 13967: -70,55 - node: color: '#FFFFFFFF' id: ConcreteTrimEndW decals: - 2171: -20,41 + 2170: -20,41 - node: color: '#FFFF00FF' id: ConcreteTrimInnerNe decals: - 14034: -67,56 + 13971: -67,56 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNe decals: - 2098: -21,38 - 2100: -22,39 - 2175: -19,41 - 2193: -21,40 - 2194: -20,39 - 2207: -18,43 - 2208: -17,42 - 2853: -33,43 - 5948: -3,9 - 5993: -1,-5 - 6006: -1,7 - 6007: -1,3 - 6008: -1,-1 - 7903: 67,-24 - 7904: 68,-25 - 7905: 67,-22 - 7906: 67,-19 - 7967: 75,-22 - 7968: 75,-19 - 12668: -40,33 - 12669: -38,32 + 2097: -21,38 + 2099: -22,39 + 2174: -19,41 + 2192: -21,40 + 2193: -20,39 + 2206: -18,43 + 2207: -17,42 + 2852: -33,43 + 5947: -3,9 + 5992: -1,-5 + 6005: -1,7 + 6006: -1,3 + 6007: -1,-1 + 7902: 67,-24 + 7903: 68,-25 + 7904: 67,-22 + 7905: 67,-19 + 7966: 75,-22 + 7967: 75,-19 + 12605: -40,33 + 12606: -38,32 - node: color: '#FFFF00FF' id: ConcreteTrimInnerNw decals: - 14031: -68,55 - 14033: -67,56 - 14039: -63,56 + 13968: -68,55 + 13970: -67,56 + 13976: -63,56 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNw decals: - 2097: -16,39 - 2099: -17,38 - 2176: -19,41 + 2096: -16,39 + 2098: -17,38 + 2175: -19,41 + 2203: -21,42 2204: -21,42 - 2205: -21,42 - 2206: -20,43 - 2209: -17,40 - 2210: -18,39 - 5949: 1,9 - 5994: -1,-5 - 6003: -1,-1 - 6004: -1,3 - 6005: -1,7 - 7924: 74,-25 - 7925: 75,-24 - 7926: 75,-22 - 7927: 75,-19 - 7928: 67,-22 - 7929: 67,-19 + 2205: -20,43 + 2208: -17,40 + 2209: -18,39 + 5948: 1,9 + 5993: -1,-5 + 6002: -1,-1 + 6003: -1,3 + 6004: -1,7 + 7923: 74,-25 + 7924: 75,-24 + 7925: 75,-22 + 7926: 75,-19 + 7927: 67,-22 + 7928: 67,-19 - node: color: '#FFFF00FF' id: ConcreteTrimInnerSe decals: - 14022: -63,54 + 13959: -63,54 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSe decals: - 2101: -21,44 - 2177: -19,41 - 2195: -21,42 - 2196: -20,43 + 2100: -21,44 + 2176: -19,41 + 2194: -21,42 + 2195: -20,43 + 2196: -17,40 2197: -17,40 - 2198: -17,40 - 2199: -18,39 - 2268: -22,43 - 2852: -33,40 - 5946: -3,-6 - 5996: -1,-5 - 5997: -1,-1 - 5998: -1,3 - 5999: -1,7 - 7908: 67,-22 - 7909: 67,-19 - 7910: 67,-17 - 7911: 68,-16 - 7965: 75,-19 - 7966: 75,-22 - 12667: -40,33 + 2198: -18,39 + 2267: -22,43 + 2851: -33,40 + 5945: -3,-6 + 5995: -1,-5 + 5996: -1,-1 + 5997: -1,3 + 5998: -1,7 + 7907: 67,-22 + 7908: 67,-19 + 7909: 67,-17 + 7910: 68,-16 + 7964: 75,-19 + 7965: 75,-22 + 12604: -40,33 - node: color: '#FFFF00FF' id: ConcreteTrimInnerSw decals: - 14023: -63,54 - 14029: -68,55 + 13960: -63,54 + 13966: -68,55 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSw decals: - 2102: -17,44 - 2103: -16,43 - 2178: -19,41 - 2200: -17,42 - 2201: -18,43 - 2202: -20,39 - 2203: -21,40 - 2844: -32,44 - 5947: 1,-6 - 5995: -1,-5 - 6000: -1,7 - 6001: -1,3 - 6002: -1,-1 - 7900: 75,-22 - 7901: 75,-19 - 7902: 75,-17 - 7963: 67,-22 - 7964: 67,-19 - 12665: -40,34 - 12666: -38,33 + 2101: -17,44 + 2102: -16,43 + 2177: -19,41 + 2199: -17,42 + 2200: -18,43 + 2201: -20,39 + 2202: -21,40 + 2843: -32,44 + 5946: 1,-6 + 5994: -1,-5 + 5999: -1,7 + 6000: -1,3 + 6001: -1,-1 + 7899: 75,-22 + 7900: 75,-19 + 7901: 75,-17 + 7962: 67,-22 + 7963: 67,-19 + 12602: -40,34 + 12603: -38,33 - node: color: '#FFFF00D9' id: ConcreteTrimLineE decals: - 14007: -62,60 - 14008: -62,59 - 14009: -62,59 - 14010: -62,58 - 14011: -62,57 - 14012: -62,56 + 13944: -62,60 + 13945: -62,59 + 13946: -62,59 + 13947: -62,58 + 13948: -62,57 + 13949: -62,56 - node: color: '#FFFF00FF' id: ConcreteTrimLineE decals: - 14013: -62,56 - 14014: -62,57 - 14015: -62,58 - 14016: -62,59 - 14017: -62,60 - 14020: -62,55 + 13950: -62,56 + 13951: -62,57 + 13952: -62,58 + 13953: -62,59 + 13954: -62,60 + 13957: -62,55 - node: color: '#FFFFFFFF' id: ConcreteTrimLineE decals: - 2104: -22,40 - 2105: -22,41 - 2190: -21,41 - 2269: -22,42 + 2103: -22,40 + 2104: -22,41 + 2189: -21,41 + 2268: -22,42 + 5377: 0,-6 5378: 0,-6 - 5379: 0,-6 - 5380: 0,-5 - 5381: 0,-4 - 5382: 0,-3 - 5383: 0,-2 - 5384: 0,-1 - 5385: 0,0 + 5379: 0,-5 + 5380: 0,-4 + 5381: 0,-3 + 5382: 0,-2 + 5383: 0,-1 + 5384: 0,0 + 5385: 0,1 5386: 0,1 - 5387: 0,1 + 5387: 0,2 5388: 0,2 - 5389: 0,2 + 5389: 0,3 5390: 0,3 - 5391: 0,3 - 5392: 0,4 + 5391: 0,4 + 5392: 0,5 5393: 0,5 - 5394: 0,5 - 5395: 0,6 - 5396: 0,7 + 5394: 0,6 + 5395: 0,7 + 5396: 0,8 5397: 0,8 - 5398: 0,8 - 5399: 0,9 - 5989: 0,7 - 5990: 0,3 - 5991: 0,-1 - 5992: 0,-5 - 7873: 67,-21 - 7874: 67,-20 - 7875: 67,-23 - 7923: 67,-18 - 7930: 75,-17 - 7931: 75,-18 - 7932: 75,-20 - 7933: 75,-21 - 7934: 75,-23 - 7935: 75,-24 - 7959: 66,-22 - 7960: 66,-19 + 5398: 0,9 + 5988: 0,7 + 5989: 0,3 + 5990: 0,-1 + 5991: 0,-5 + 7872: 67,-21 + 7873: 67,-20 + 7874: 67,-23 + 7922: 67,-18 + 7929: 75,-17 + 7930: 75,-18 + 7931: 75,-20 + 7932: 75,-21 + 7933: 75,-23 + 7934: 75,-24 + 7958: 66,-22 + 7959: 66,-19 - node: color: '#FFFF00FF' id: ConcreteTrimLineN decals: - 14035: -66,56 - 14036: -65,56 - 14037: -65,56 - 14038: -64,56 + 13972: -66,56 + 13973: -65,56 + 13974: -65,56 + 13975: -64,56 - node: color: '#FFFFFFFF' id: ConcreteTrimLineN decals: - 2087: -20,38 - 2088: -19,38 - 2089: -18,38 - 2192: -19,39 - 7842: 74,-16 - 7843: 73,-16 - 7844: 72,-16 - 7845: 71,-16 - 7846: 70,-16 - 7847: 69,-16 - 7848: 68,-16 - 7849: 68,-19 - 7850: 69,-19 - 7851: 70,-19 - 7852: 71,-19 - 7853: 72,-19 - 7854: 73,-19 - 7855: 74,-19 - 7856: 68,-22 - 7857: 70,-22 - 7858: 71,-22 - 7859: 72,-22 - 7860: 73,-22 - 7861: 69,-22 - 7862: 73,-22 - 7863: 74,-22 - 7888: 69,-25 - 7889: 70,-25 - 7890: 71,-25 - 7891: 72,-25 - 7892: 73,-25 - 12656: -41,34 - 12662: -39,33 - 12663: -38,33 + 2086: -20,38 + 2087: -19,38 + 2088: -18,38 + 2191: -19,39 + 7841: 74,-16 + 7842: 73,-16 + 7843: 72,-16 + 7844: 71,-16 + 7845: 70,-16 + 7846: 69,-16 + 7847: 68,-16 + 7848: 68,-19 + 7849: 69,-19 + 7850: 70,-19 + 7851: 71,-19 + 7852: 72,-19 + 7853: 73,-19 + 7854: 74,-19 + 7855: 68,-22 + 7856: 70,-22 + 7857: 71,-22 + 7858: 72,-22 + 7859: 73,-22 + 7860: 69,-22 + 7861: 73,-22 + 7862: 74,-22 + 7887: 69,-25 + 7888: 70,-25 + 7889: 71,-25 + 7890: 72,-25 + 7891: 73,-25 + 12593: -41,34 + 12599: -39,33 + 12600: -38,33 - node: color: '#FFFF00FF' id: ConcreteTrimLineS decals: - 14024: -64,54 - 14025: -65,54 - 14026: -66,54 - 14027: -67,54 + 13961: -64,54 + 13962: -65,54 + 13963: -66,54 + 13964: -67,54 - node: color: '#FFFFFFFF' id: ConcreteTrimLineS decals: - 2106: -20,44 - 2107: -19,44 - 2108: -18,44 - 2188: -19,43 - 7866: 68,-19 - 7867: 69,-19 - 7868: 70,-19 - 7869: 71,-19 - 7870: 72,-19 - 7871: 73,-19 - 7872: 74,-19 - 7876: 68,-22 - 7877: 69,-22 - 7878: 70,-22 - 7879: 71,-22 + 2105: -20,44 + 2106: -19,44 + 2107: -18,44 + 2187: -19,43 + 7865: 68,-19 + 7866: 69,-19 + 7867: 70,-19 + 7868: 71,-19 + 7869: 72,-19 + 7870: 73,-19 + 7871: 74,-19 + 7875: 68,-22 + 7876: 69,-22 + 7877: 70,-22 + 7878: 71,-22 + 7879: 73,-22 7880: 73,-22 - 7881: 73,-22 - 7882: 72,-22 - 7883: 74,-22 - 7884: 73,-22 - 7912: 69,-16 - 7913: 70,-16 + 7881: 72,-22 + 7882: 74,-22 + 7883: 73,-22 + 7911: 69,-16 + 7912: 70,-16 + 7913: 71,-16 7914: 71,-16 - 7915: 71,-16 + 7915: 72,-16 7916: 72,-16 7917: 72,-16 7918: 72,-16 - 7919: 72,-16 - 7920: 73,-16 + 7919: 73,-16 + 7935: 68,-25 7936: 68,-25 7937: 68,-25 - 7938: 68,-25 - 7939: 69,-25 - 7940: 70,-25 + 7938: 69,-25 + 7939: 70,-25 + 7940: 71,-25 7941: 71,-25 - 7942: 71,-25 + 7942: 72,-25 7943: 72,-25 - 7944: 72,-25 + 7944: 74,-25 7945: 74,-25 - 7946: 74,-25 - 12655: -41,34 - 12659: -39,33 - 12660: -38,32 + 12592: -41,34 + 12596: -39,33 + 12597: -38,32 - node: color: '#FFFF00FF' id: ConcreteTrimLineW decals: - 14040: -63,57 - 14041: -63,58 - 14042: -63,59 - 14043: -63,59 - 14044: -63,60 + 13977: -63,57 + 13978: -63,58 + 13979: -63,59 + 13980: -63,59 + 13981: -63,60 - node: color: '#FFFFFFFF' id: ConcreteTrimLineW decals: - 2094: -16,42 - 2095: -16,41 - 2096: -16,40 - 2191: -17,41 - 2840: -32,40 - 2841: -32,41 - 2842: -32,42 - 2843: -32,43 - 5400: -2,8 - 5401: -2,7 - 5402: -2,6 + 2093: -16,42 + 2094: -16,41 + 2095: -16,40 + 2190: -17,41 + 2839: -32,40 + 2840: -32,41 + 2841: -32,42 + 2842: -32,43 + 5399: -2,8 + 5400: -2,7 + 5401: -2,6 + 5402: -2,5 5403: -2,5 - 5404: -2,5 - 5405: -2,4 - 5406: -2,3 - 5407: -2,2 + 5404: -2,4 + 5405: -2,3 + 5406: -2,2 + 5407: -2,1 5408: -2,1 - 5409: -2,1 - 5410: -2,0 - 5411: -2,-1 + 5409: -2,0 + 5410: -2,-1 + 5411: -2,-2 5412: -2,-2 - 5413: -2,-2 - 5414: -2,-3 + 5413: -2,-3 + 5414: -2,-4 5415: -2,-4 - 5416: -2,-4 + 5416: -2,-5 5417: -2,-5 - 5418: -2,-5 - 5419: -2,-6 - 5985: -2,-5 - 5986: -2,-1 - 5987: -2,3 - 5988: -2,7 - 7864: 75,-21 - 7865: 75,-20 - 7885: 75,-23 - 7894: 67,-17 - 7895: 67,-18 - 7896: 67,-20 - 7897: 67,-21 - 7898: 67,-23 - 7899: 67,-24 - 7907: 75,-18 - 7961: 76,-19 - 7962: 76,-22 - 12664: -40,33 - 18668: -2,9 + 5418: -2,-6 + 5984: -2,-5 + 5985: -2,-1 + 5986: -2,3 + 5987: -2,7 + 7863: 75,-21 + 7864: 75,-20 + 7884: 75,-23 + 7893: 67,-17 + 7894: 67,-18 + 7895: 67,-20 + 7896: 67,-21 + 7897: 67,-23 + 7898: 67,-24 + 7906: 75,-18 + 7960: 76,-19 + 7961: 76,-22 + 12601: -40,33 + 18605: -2,9 - node: color: '#FFFFFF25' id: Damaged decals: - 18669: 63,-40 - 18670: 64,-40 - 18671: 59,-42 - 18672: 60,-42 - 18673: 58,-42 + 18606: 63,-40 + 18607: 64,-40 + 18608: 59,-42 + 18609: 60,-42 + 18610: 58,-42 - node: color: '#FFFFFFFF' id: Delivery @@ -20171,127 +20145,126 @@ entities: 30: 17,45 31: 16,43 32: 17,41 - 110: 28,-60 136: -28,8 139: -25,15 140: -28,15 149: -39,23 - 161: 15,71 - 162: 15,70 - 163: 14,67 - 164: 15,66 - 165: 12,72 - 167: 30,60 - 168: 29,60 - 169: 28,60 - 699: -41,-37 - 726: 13,13 - 727: 13,14 - 728: 13,15 - 729: 13,16 - 730: -15,13 - 731: -15,14 - 732: -15,15 - 733: -15,16 - 734: 58,2 - 735: 62,2 - 736: 66,2 - 748: 61,12 - 959: 30,32 - 1056: -32,-46 - 1057: -32,-39 - 1060: -32,-44 - 1061: -32,-45 - 1066: -34,-36 - 1067: -33,-36 - 1216: 61,6 - 1217: 63,6 - 1244: 63,3 - 3125: -2,64 - 3126: -2,63 - 3127: -2,62 - 3128: -2,61 - 3219: -2,64 - 3220: -2,63 - 3221: -2,62 - 3222: -2,61 - 6009: -8,-16 - 6010: -8,-17 - 6011: -8,-13 - 6012: -8,-12 - 6019: -16,-16 - 6020: -16,-15 - 6021: -16,-14 - 6022: -16,-13 - 6023: -14,-16 - 6024: -14,-15 - 6025: -14,-14 - 6026: -14,-13 - 6027: -12,-13 - 6028: -12,-14 - 6029: -12,-15 - 6030: -12,-16 - 6031: -10,-16 - 6032: -10,-15 - 6033: -10,-14 + 160: 15,71 + 161: 15,70 + 162: 14,67 + 163: 15,66 + 164: 12,72 + 166: 30,60 + 167: 29,60 + 168: 28,60 + 698: -41,-37 + 725: 13,13 + 726: 13,14 + 727: 13,15 + 728: 13,16 + 729: -15,13 + 730: -15,14 + 731: -15,15 + 732: -15,16 + 733: 58,2 + 734: 62,2 + 735: 66,2 + 747: 61,12 + 958: 30,32 + 1055: -32,-46 + 1056: -32,-39 + 1059: -32,-44 + 1060: -32,-45 + 1065: -34,-36 + 1066: -33,-36 + 1215: 61,6 + 1216: 63,6 + 1243: 63,3 + 3124: -2,64 + 3125: -2,63 + 3126: -2,62 + 3127: -2,61 + 3218: -2,64 + 3219: -2,63 + 3220: -2,62 + 3221: -2,61 + 6008: -8,-16 + 6009: -8,-17 + 6010: -8,-13 + 6011: -8,-12 + 6018: -16,-16 + 6019: -16,-15 + 6020: -16,-14 + 6021: -16,-13 + 6022: -14,-16 + 6023: -14,-15 + 6024: -14,-14 + 6025: -14,-13 + 6026: -12,-13 + 6027: -12,-14 + 6028: -12,-15 + 6029: -12,-16 + 6030: -10,-16 + 6031: -10,-15 + 6032: -10,-14 + 6033: -10,-13 6034: -10,-13 - 6035: -10,-13 - 6210: -13,-18 - 6211: -12,-18 - 6212: -11,-18 - 17305: -46,-9 - 17306: -46,-10 - 17307: -45,-10 - 17308: -45,-9 - 17309: -45,-6 - 17310: -47,-6 - 17311: -46,-6 - 17312: -45,-7 - 17313: -46,-7 - 17314: -48,-6 - 17315: -49,-6 - 17316: -49,-10 - 17317: -48,-10 - 17318: -47,-10 - 17319: -47,-9 - 17320: -47,-7 - 17751: -67,-13 - 17752: -68,-13 - 17753: -68,-12 - 17754: -67,-12 - 17755: -67,-11 - 17756: -68,-11 - 17757: -68,-10 - 17758: -67,-10 - 17759: -69,-13 - 17760: -69,-12 - 17761: -70,-12 - 17762: -70,-13 - 17763: -71,-13 - 17764: -71,-12 - 17765: -72,-12 - 17766: -72,-13 - 17767: -73,-13 - 17768: -73,-11 - 17769: -72,-11 - 17770: -72,-10 - 17771: -73,-10 - 17772: -73,-12 - 19323: 70,1 - 19324: 70,0 - 19325: 70,-1 + 6209: -13,-18 + 6210: -12,-18 + 6211: -11,-18 + 17242: -46,-9 + 17243: -46,-10 + 17244: -45,-10 + 17245: -45,-9 + 17246: -45,-6 + 17247: -47,-6 + 17248: -46,-6 + 17249: -45,-7 + 17250: -46,-7 + 17251: -48,-6 + 17252: -49,-6 + 17253: -49,-10 + 17254: -48,-10 + 17255: -47,-10 + 17256: -47,-9 + 17257: -47,-7 + 17688: -67,-13 + 17689: -68,-13 + 17690: -68,-12 + 17691: -67,-12 + 17692: -67,-11 + 17693: -68,-11 + 17694: -68,-10 + 17695: -67,-10 + 17696: -69,-13 + 17697: -69,-12 + 17698: -70,-12 + 17699: -70,-13 + 17700: -71,-13 + 17701: -71,-12 + 17702: -72,-12 + 17703: -72,-13 + 17704: -73,-13 + 17705: -73,-11 + 17706: -72,-11 + 17707: -72,-10 + 17708: -73,-10 + 17709: -73,-12 + 19260: 70,1 + 19261: 70,0 + 19262: 70,-1 - node: cleanable: True color: '#FFFFFFFF' id: Delivery decals: - 622: -115,19 - 623: -115,18 - 624: -115,17 - 946: 25,49 - 947: 25,50 - 948: 25,51 - 952: 33,28 + 621: -115,19 + 622: -115,18 + 623: -115,17 + 945: 25,49 + 946: 25,50 + 947: 25,51 + 951: 33,28 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -20328,4100 +20301,4025 @@ entities: color: '#0096FFFF' id: DeliveryGreyscale decals: - 1214: 57,6 - 1215: 59,6 - 1224: 59,3 + 1213: 57,6 + 1214: 59,6 + 1223: 59,3 - node: color: '#DE3A3A96' id: DeliveryGreyscale decals: - 747: 45,-1 + 746: 45,-1 - node: color: '#FF0000FF' id: DeliveryGreyscale decals: - 1225: 65,6 - 1226: 67,6 - 1227: 68,7 - 1228: 70,7 - 1229: 67,3 + 1224: 65,6 + 1225: 67,6 + 1226: 68,7 + 1227: 70,7 + 1228: 67,3 - node: color: '#DA8B8BFF' id: DiagonalCheckerAOverlay decals: - 15605: 78,1 - 15606: 82,1 - 15607: 83,1 - 15608: 81,1 - 15609: 84,1 - 15610: 86,1 - 15611: 88,1 - 15612: 87,1 - 15613: 77,1 - 15614: 79,1 + 15542: 78,1 + 15543: 82,1 + 15544: 83,1 + 15545: 81,1 + 15546: 84,1 + 15547: 86,1 + 15548: 88,1 + 15549: 87,1 + 15550: 77,1 + 15551: 79,1 - node: color: '#9FED5896' id: DiagonalCheckerBOverlay decals: - 967: 0,-15 - 968: 0,-16 - 969: -1,-15 - 970: -1,-16 + 966: 0,-15 + 967: 0,-16 + 968: -1,-15 + 969: -1,-16 - node: color: '#B18BDAFF' id: DiagonalCheckerBOverlay decals: - 12705: -8,-34 - 12706: -7,-34 - 12707: -7,-33 - 12708: -8,-33 - 12709: -8,-32 - 12710: -7,-32 - 12711: -7,-32 + 12642: -8,-34 + 12643: -7,-34 + 12644: -7,-33 + 12645: -8,-33 + 12646: -8,-32 + 12647: -7,-32 + 12648: -7,-32 - node: color: '#DABC8BFF' id: DiagonalCheckerBOverlay decals: - 9591: 5,-32 - 9592: 5,-33 - 9593: 5,-34 - 9594: 6,-34 - 9595: 6,-33 - 9596: 6,-32 + 9567: 5,-32 + 9568: 5,-33 + 9569: 5,-34 + 9570: 6,-34 + 9571: 6,-33 + 9572: 6,-32 - node: color: '#FFFFFF02' id: DiagonalOverlay decals: - 14454: -16,23 - 14455: -15,23 - 14456: -14,23 - 14457: -13,23 - 14458: -6,23 - 14459: -5,23 - 14460: -4,23 - 14461: -3,23 - 14462: -19,16 - 14463: -19,17 - 14464: -19,18 - 14465: -19,19 - 14466: -19,9 - 14467: -19,10 - 14468: -19,11 - 14469: -19,12 - 14470: -22,30 - 14471: -22,31 - 14472: -22,32 - 14473: -22,33 - 14474: -21,34 - 14475: -21,33 - 14476: -21,32 - 14477: -21,30 - 14478: -21,29 - 14479: -21,31 - 14480: -19,27 - 14481: -19,28 - 14482: -19,29 - 14483: -19,32 - 14484: -19,31 - 14485: -19,36 - 14486: -19,35 - 14487: -19,34 - 14488: -23,41 - 14489: -19,48 - 14490: -19,47 - 14491: -19,46 - 14492: -17,47 - 14493: -17,48 - 14494: -16,48 - 14495: -16,49 - 14496: -17,49 - 14497: -17,50 - 14498: -16,50 - 14499: -17,51 - 14500: -19,52 - 14501: -19,51 - 14502: -19,50 - 14503: -22,49 - 14504: -22,50 - 14505: -21,50 - 14506: -21,51 - 14507: -21,49 - 14508: -22,48 - 14509: -21,47 - 14510: -21,48 - 14511: -18,57 - 14512: -19,57 - 14513: -20,57 - 14514: -11,57 - 14515: -12,57 - 14516: -13,57 - 14517: -4,57 - 14518: -5,57 - 14519: -6,57 - 14520: 2,57 - 14521: 1,57 - 14522: 0,57 - 14523: -5,64 - 14524: -5,63 - 14525: -5,62 - 14526: -5,61 - 14527: -6,68 - 14528: -5,68 - 14529: -4,68 - 14530: -13,68 - 14531: -11,68 - 14532: -12,68 - 14533: -20,68 - 14534: -19,68 - 14535: -18,68 - 14536: -25,68 - 14537: -26,68 - 14538: -24,68 - 14539: -29,68 - 14540: -30,68 - 14541: -31,68 - 14542: -30,75 - 14543: -30,74 - 14544: -30,73 - 14545: -30,72 - 14546: -30,82 - 14547: -30,81 - 14548: -30,80 - 14549: -30,79 - 14550: -30,86 - 14551: -30,85 - 14552: -30,88 - 14553: -30,95 - 14554: -30,94 - 14555: -30,92 - 14556: -30,93 - 14557: -12,94 - 14558: -12,93 - 14559: -12,92 - 14560: -12,95 - 14561: -12,85 - 14562: -12,86 - 14563: -12,87 - 14564: -12,88 - 14565: -12,79 - 14566: -12,80 - 14567: -12,81 - 14568: -12,82 - 14569: -12,72 - 14570: -12,73 - 14571: -12,74 - 14572: -12,75 - 14573: 2,68 - 14574: 1,68 - 14575: 0,68 - 14576: 7,68 - 14577: 6,68 - 14578: 5,68 - 14579: 6,74 - 14580: 6,72 - 14581: 6,73 - 14582: 6,75 - 14583: 6,81 - 14584: 6,82 - 14585: 6,80 - 14586: 6,79 - 14587: -11,49 - 14588: -10,49 - 14589: -6,49 - 14590: -5,49 - 14591: -19,2 - 14592: -19,4 - 14593: -19,5 - 14594: -12,14 - 14595: -12,15 - 14596: -6,14 - 14597: -7,14 - 14598: -8,14 - 14599: -9,14 - 14600: -10,14 - 14601: 1,16 - 14602: 0,16 - 14603: -2,16 - 14604: -3,16 - 14605: -1,16 - 14606: 8,14 - 14607: 7,14 - 14608: 6,14 - 14609: 4,14 - 14610: 5,14 - 14611: 10,15 - 14612: 10,14 - 14613: 17,18 - 14614: 17,19 - 14615: 17,17 - 14616: 17,16 - 14617: 14,23 - 14618: 13,23 - 14619: 12,23 - 14620: 11,23 - 14621: 1,23 - 14622: 2,23 - 14623: 3,23 - 14624: 4,23 - 14625: 17,9 - 14626: 17,10 - 14627: 17,11 - 14628: 17,12 - 14629: 17,3 - 14630: 17,2 - 14631: 17,4 - 14632: 17,5 - 14633: 24,5 - 14634: 23,5 - 14635: 22,5 - 14636: 21,5 - 14637: 31,5 - 14638: 30,5 - 14639: 29,5 - 14640: 28,5 - 14641: 17,-5 - 14642: 17,-4 - 14643: 17,-3 - 14644: 17,-2 - 14645: 17,-17 - 14646: 17,-16 - 14647: 17,-15 - 14648: 17,-14 - 14649: 17,-13 - 14650: 17,-12 - 14651: 21,-11 - 14652: 22,-11 - 14653: 23,-11 - 14654: 24,-11 - 14655: 28,-11 - 14656: 29,-11 - 14657: 30,-11 - 14658: 47,-20 - 14659: 46,-20 - 14660: 45,-20 - 14661: 44,-20 - 14662: 49,-20 - 14663: 50,-20 - 14664: 51,-20 - 14665: 52,-20 - 14666: 10,-20 - 14667: 11,-20 - 14668: 12,-20 - 14669: 13,-20 - 14670: 3,-20 - 14671: 4,-20 - 14672: 5,-20 - 14673: 6,-20 - 14674: -8,-20 - 14675: -7,-20 - 14676: -6,-20 - 14677: -5,-20 - 14678: -14,-20 - 14679: -13,-20 - 14680: -12,-20 - 14681: -15,-20 - 14682: -12,-26 - 14683: -12,-25 - 14684: -11,-25 - 14685: -11,-26 - 14686: -10,-26 - 14687: -10,-25 - 14688: -9,-25 - 14689: -9,-26 - 14690: -8,-26 - 14691: -8,-25 - 14692: 6,-25 - 14693: 7,-25 - 14694: 8,-25 - 14695: 9,-25 - 14696: 10,-25 - 14697: 10,-26 - 14698: 9,-26 - 14699: 8,-26 - 14700: 7,-26 - 14701: 6,-26 - 14702: -1,-27 - 14703: -1,-24 - 14704: -1,-25 - 14705: -1,-26 - 14706: -1,-34 - 14707: -1,-33 - 14708: -1,-32 - 14709: -1,-31 - 14710: -1,-35 - 14711: -1,-42 - 14712: -1,-40 - 14713: -1,-39 - 14714: -1,-50 - 14715: -1,-49 - 14716: -1,-48 - 14717: -1,-47 - 14718: -1,-46 - 14719: -1,-45 - 14720: -1,-44 - 14721: -1,-55 - 14722: -1,-54 - 14723: -1,-53 - 14724: -1,-52 - 14725: -1,-59 - 14726: -1,-60 - 14727: -1,-61 - 14728: -19,-12 - 14729: -19,-13 - 14730: -19,-14 - 14731: -19,-15 - 14732: -19,-16 - 14733: -19,-17 - 14734: -19,-2 - 14735: -19,-3 - 14736: -19,-4 - 14737: -19,-5 - 14738: -27,5 - 14739: -26,5 - 14740: -25,5 - 14741: -24,5 - 14742: -23,5 - 14743: -31,5 - 14744: -32,5 - 14745: -33,5 - 14746: -38,5 - 14747: -37,5 - 14748: -36,5 - 14749: -19,61 - 14750: -19,62 - 14751: -19,63 - 14752: -19,64 - 14753: 17,-40 - 14754: 17,-41 - 14755: 17,-42 - 14756: 17,-43 - 14757: 17,-45 - 14758: 17,-44 - 14759: 11,-35 - 14760: 12,-35 - 14761: 13,-35 - 14762: 17,-31 - 14763: 17,-32 - 14764: 17,-34 - 14765: 17,-33 - 14766: 27,-35 - 14767: 26,-35 - 14768: 25,-35 - 14769: 23,-35 - 14770: 22,-35 - 14771: 24,-35 - 14772: 32,-35 - 14773: 36,-35 - 14774: 35,-35 - 14775: 34,-35 - 14776: 33,-35 - 14777: 31,-35 - 14778: 27,-43 - 14779: 27,-44 - 14780: 27,-42 - 14781: 27,-41 - 14782: 27,-40 - 14783: 27,-51 - 14784: 27,-50 - 14785: 27,-49 - 14786: 27,-48 - 14787: 27,-47 - 14788: -18,-35 - 14789: -14,-35 - 14790: -15,-35 - 14791: -16,-35 - 14792: -17,-35 - 14793: -29,-35 - 14794: -28,-35 - 14795: -27,-35 - 14796: -26,-35 - 14797: -25,-35 - 14798: -24,-35 - 14799: -23,-26 - 14800: -23,-27 - 14801: -23,-28 - 14802: -23,-29 - 14803: -23,-30 - 14804: -29,-41 - 14805: -29,-40 - 14806: -29,-39 - 14807: -14,-43 - 14808: -14,-42 - 14809: -14,-41 - 14810: -14,-40 - 14811: -14,-39 - 14812: -14,-53 - 14813: -14,-52 - 14814: -14,-51 - 14815: -14,-50 - 14816: -14,-49 - 14817: -14,-48 - 14818: -14,-47 - 14819: 29,-49 - 14820: 29,-48 - 14821: 29,-47 - 14822: 29,-51 - 14823: 29,-52 - 14824: 29,-53 - 14825: 30,-46 - 14826: 31,-46 - 14827: 32,-46 - 14828: 33,-46 - 14829: 34,-46 - 15072: -30,87 - 15274: -1,-41 - 15423: -42,14 - 15424: -42,16 - 15425: -42,17 - 15426: -42,20 - 15427: -42,21 - 15428: -42,22 - 15429: -42,11 - 15430: -42,10 - 15431: -42,9 - 15444: -42,15 - 18775: -15,-9 - 18776: -14,-9 - 18777: -13,-9 - 18778: -12,-9 - 18779: -9,-9 - 18780: -8,-9 - 18781: -7,-9 - 18782: -6,-9 - 18783: -3,-9 - 18784: -2,-9 - 18785: -1,-9 - 18786: 0,-9 - 18787: 1,-9 - 18788: 4,-9 - 18789: 5,-9 - 18790: 6,-9 - 18791: 7,-9 - 18792: 10,-9 - 18793: 11,-9 - 18794: 12,-9 - 18795: 13,-9 - 19388: -14,28 - 19389: -14,27 - 19390: -14,26 - 19391: -13,26 - 19392: -12,26 - 19393: -11,27 - 19394: -11,28 - 19395: -11,29 - 19396: -11,30 - 19397: -12,30 - 19398: -11,31 - 19399: -11,32 - 19400: -11,33 - 19401: -12,34 - 19402: -13,34 - 19403: -14,34 - 19404: -14,33 - 19405: -14,32 - 19406: -14,31 - 19407: -15,31 - 19408: -15,30 - 19409: -15,29 - 19410: -10,30 - 19411: -9,30 - 19412: -9,34 - 19413: -10,34 - 19414: -9,26 - 19415: -10,26 - 19478: -14,29 - 19652: 34,-14 - 19653: 34,-13 - 19654: 34,-12 - 19655: 34,-11 - 19656: 34,-10 - 19657: 35,-9 - 19658: 36,-9 - 19659: 37,-9 - 19660: 39,-9 - 19661: 38,-9 - 19662: 40,-10 - 19663: 40,-11 - 19664: 40,-12 - 19665: 39,-12 - 19666: 38,-12 - 19667: 36,-12 - 19668: 35,-12 - 19669: 37,-12 - 19670: 35,-15 - 19671: 36,-15 - 19672: 37,-15 - 19673: 38,-15 - 19674: 39,-15 - 19675: 40,-14 - 19676: 40,-13 - 20254: -19,3 + 14391: -16,23 + 14392: -15,23 + 14393: -14,23 + 14394: -13,23 + 14395: -6,23 + 14396: -5,23 + 14397: -4,23 + 14398: -3,23 + 14399: -19,16 + 14400: -19,17 + 14401: -19,18 + 14402: -19,19 + 14403: -19,9 + 14404: -19,10 + 14405: -19,11 + 14406: -19,12 + 14407: -22,30 + 14408: -22,31 + 14409: -22,32 + 14410: -22,33 + 14411: -21,34 + 14412: -21,33 + 14413: -21,32 + 14414: -21,30 + 14415: -21,29 + 14416: -21,31 + 14417: -19,27 + 14418: -19,28 + 14419: -19,29 + 14420: -19,32 + 14421: -19,31 + 14422: -19,36 + 14423: -19,35 + 14424: -19,34 + 14425: -23,41 + 14426: -19,48 + 14427: -19,47 + 14428: -19,46 + 14429: -17,47 + 14430: -17,48 + 14431: -16,48 + 14432: -16,49 + 14433: -17,49 + 14434: -17,50 + 14435: -16,50 + 14436: -17,51 + 14437: -19,52 + 14438: -19,51 + 14439: -19,50 + 14440: -22,49 + 14441: -22,50 + 14442: -21,50 + 14443: -21,51 + 14444: -21,49 + 14445: -22,48 + 14446: -21,47 + 14447: -21,48 + 14448: -18,57 + 14449: -19,57 + 14450: -20,57 + 14451: -11,57 + 14452: -12,57 + 14453: -13,57 + 14454: -4,57 + 14455: -5,57 + 14456: -6,57 + 14457: 2,57 + 14458: 1,57 + 14459: 0,57 + 14460: -5,64 + 14461: -5,63 + 14462: -5,62 + 14463: -5,61 + 14464: -6,68 + 14465: -5,68 + 14466: -4,68 + 14467: -13,68 + 14468: -11,68 + 14469: -12,68 + 14470: -20,68 + 14471: -19,68 + 14472: -18,68 + 14473: -25,68 + 14474: -26,68 + 14475: -24,68 + 14476: -29,68 + 14477: -30,68 + 14478: -31,68 + 14479: -30,75 + 14480: -30,74 + 14481: -30,73 + 14482: -30,72 + 14483: -30,82 + 14484: -30,81 + 14485: -30,80 + 14486: -30,79 + 14487: -30,86 + 14488: -30,85 + 14489: -30,88 + 14490: -30,95 + 14491: -30,94 + 14492: -30,92 + 14493: -30,93 + 14494: -12,94 + 14495: -12,93 + 14496: -12,92 + 14497: -12,95 + 14498: -12,85 + 14499: -12,86 + 14500: -12,87 + 14501: -12,88 + 14502: -12,79 + 14503: -12,80 + 14504: -12,81 + 14505: -12,82 + 14506: -12,72 + 14507: -12,73 + 14508: -12,74 + 14509: -12,75 + 14510: 2,68 + 14511: 1,68 + 14512: 0,68 + 14513: 7,68 + 14514: 6,68 + 14515: 5,68 + 14516: 6,74 + 14517: 6,72 + 14518: 6,73 + 14519: 6,75 + 14520: 6,81 + 14521: 6,82 + 14522: 6,80 + 14523: 6,79 + 14524: -11,49 + 14525: -10,49 + 14526: -6,49 + 14527: -5,49 + 14528: -19,2 + 14529: -19,4 + 14530: -19,5 + 14531: -12,14 + 14532: -12,15 + 14533: -6,14 + 14534: -7,14 + 14535: -8,14 + 14536: -9,14 + 14537: -10,14 + 14538: 1,16 + 14539: 0,16 + 14540: -2,16 + 14541: -3,16 + 14542: -1,16 + 14543: 8,14 + 14544: 7,14 + 14545: 6,14 + 14546: 4,14 + 14547: 5,14 + 14548: 10,15 + 14549: 10,14 + 14550: 17,18 + 14551: 17,19 + 14552: 17,17 + 14553: 17,16 + 14554: 14,23 + 14555: 13,23 + 14556: 12,23 + 14557: 11,23 + 14558: 1,23 + 14559: 2,23 + 14560: 3,23 + 14561: 4,23 + 14562: 17,9 + 14563: 17,10 + 14564: 17,11 + 14565: 17,12 + 14566: 17,3 + 14567: 17,2 + 14568: 17,4 + 14569: 17,5 + 14570: 24,5 + 14571: 23,5 + 14572: 22,5 + 14573: 21,5 + 14574: 31,5 + 14575: 30,5 + 14576: 29,5 + 14577: 28,5 + 14578: 17,-5 + 14579: 17,-4 + 14580: 17,-3 + 14581: 17,-2 + 14582: 17,-17 + 14583: 17,-16 + 14584: 17,-15 + 14585: 17,-14 + 14586: 17,-13 + 14587: 17,-12 + 14588: 21,-11 + 14589: 22,-11 + 14590: 23,-11 + 14591: 24,-11 + 14592: 28,-11 + 14593: 29,-11 + 14594: 30,-11 + 14595: 47,-20 + 14596: 46,-20 + 14597: 45,-20 + 14598: 44,-20 + 14599: 49,-20 + 14600: 50,-20 + 14601: 51,-20 + 14602: 52,-20 + 14603: 10,-20 + 14604: 11,-20 + 14605: 12,-20 + 14606: 13,-20 + 14607: 3,-20 + 14608: 4,-20 + 14609: 5,-20 + 14610: 6,-20 + 14611: -8,-20 + 14612: -7,-20 + 14613: -6,-20 + 14614: -5,-20 + 14615: -14,-20 + 14616: -13,-20 + 14617: -12,-20 + 14618: -15,-20 + 14619: -12,-26 + 14620: -12,-25 + 14621: -11,-25 + 14622: -11,-26 + 14623: -10,-26 + 14624: -10,-25 + 14625: -9,-25 + 14626: -9,-26 + 14627: -8,-26 + 14628: -8,-25 + 14629: 6,-25 + 14630: 7,-25 + 14631: 8,-25 + 14632: 9,-25 + 14633: 10,-25 + 14634: 10,-26 + 14635: 9,-26 + 14636: 8,-26 + 14637: 7,-26 + 14638: 6,-26 + 14639: -1,-27 + 14640: -1,-24 + 14641: -1,-25 + 14642: -1,-26 + 14643: -1,-34 + 14644: -1,-33 + 14645: -1,-32 + 14646: -1,-31 + 14647: -1,-35 + 14648: -1,-42 + 14649: -1,-40 + 14650: -1,-39 + 14651: -1,-50 + 14652: -1,-49 + 14653: -1,-48 + 14654: -1,-47 + 14655: -1,-46 + 14656: -1,-45 + 14657: -1,-44 + 14658: -1,-55 + 14659: -1,-54 + 14660: -1,-53 + 14661: -1,-52 + 14662: -1,-59 + 14663: -1,-60 + 14664: -1,-61 + 14665: -19,-12 + 14666: -19,-13 + 14667: -19,-14 + 14668: -19,-15 + 14669: -19,-16 + 14670: -19,-17 + 14671: -19,-2 + 14672: -19,-3 + 14673: -19,-4 + 14674: -19,-5 + 14675: -27,5 + 14676: -26,5 + 14677: -25,5 + 14678: -24,5 + 14679: -23,5 + 14680: -31,5 + 14681: -32,5 + 14682: -33,5 + 14683: -38,5 + 14684: -37,5 + 14685: -36,5 + 14686: -19,61 + 14687: -19,62 + 14688: -19,63 + 14689: -19,64 + 14690: 17,-40 + 14691: 17,-41 + 14692: 17,-42 + 14693: 17,-43 + 14694: 17,-45 + 14695: 17,-44 + 14696: 11,-35 + 14697: 12,-35 + 14698: 13,-35 + 14699: 17,-31 + 14700: 17,-32 + 14701: 17,-34 + 14702: 17,-33 + 14703: 27,-35 + 14704: 26,-35 + 14705: 25,-35 + 14706: 23,-35 + 14707: 22,-35 + 14708: 24,-35 + 14709: 32,-35 + 14710: 36,-35 + 14711: 35,-35 + 14712: 34,-35 + 14713: 33,-35 + 14714: 31,-35 + 14715: 27,-43 + 14716: 27,-44 + 14717: 27,-42 + 14718: 27,-41 + 14719: 27,-40 + 14720: 27,-51 + 14721: 27,-50 + 14722: 27,-49 + 14723: 27,-48 + 14724: 27,-47 + 14725: -18,-35 + 14726: -14,-35 + 14727: -15,-35 + 14728: -16,-35 + 14729: -17,-35 + 14730: -29,-35 + 14731: -28,-35 + 14732: -27,-35 + 14733: -26,-35 + 14734: -25,-35 + 14735: -24,-35 + 14736: -23,-26 + 14737: -23,-27 + 14738: -23,-28 + 14739: -23,-29 + 14740: -23,-30 + 14741: -29,-41 + 14742: -29,-40 + 14743: -29,-39 + 14744: -14,-43 + 14745: -14,-42 + 14746: -14,-41 + 14747: -14,-40 + 14748: -14,-39 + 14749: -14,-53 + 14750: -14,-52 + 14751: -14,-51 + 14752: -14,-50 + 14753: -14,-49 + 14754: -14,-48 + 14755: -14,-47 + 14756: 29,-49 + 14757: 29,-48 + 14758: 29,-47 + 14759: 29,-51 + 14760: 29,-52 + 14761: 29,-53 + 14762: 30,-46 + 14763: 31,-46 + 14764: 32,-46 + 14765: 33,-46 + 14766: 34,-46 + 15009: -30,87 + 15211: -1,-41 + 15360: -42,14 + 15361: -42,16 + 15362: -42,17 + 15363: -42,20 + 15364: -42,21 + 15365: -42,22 + 15366: -42,11 + 15367: -42,10 + 15368: -42,9 + 15381: -42,15 + 18712: -15,-9 + 18713: -14,-9 + 18714: -13,-9 + 18715: -12,-9 + 18716: -9,-9 + 18717: -8,-9 + 18718: -7,-9 + 18719: -6,-9 + 18720: -3,-9 + 18721: -2,-9 + 18722: -1,-9 + 18723: 0,-9 + 18724: 1,-9 + 18725: 4,-9 + 18726: 5,-9 + 18727: 6,-9 + 18728: 7,-9 + 18729: 10,-9 + 18730: 11,-9 + 18731: 12,-9 + 18732: 13,-9 + 19324: -14,28 + 19325: -14,27 + 19326: -14,26 + 19327: -13,26 + 19328: -12,26 + 19329: -11,27 + 19330: -11,28 + 19331: -11,29 + 19332: -11,30 + 19333: -12,30 + 19334: -11,31 + 19335: -11,32 + 19336: -11,33 + 19337: -12,34 + 19338: -13,34 + 19339: -14,34 + 19340: -14,33 + 19341: -14,32 + 19342: -14,31 + 19343: -15,31 + 19344: -15,30 + 19345: -15,29 + 19346: -10,30 + 19347: -9,30 + 19348: -9,34 + 19349: -10,34 + 19350: -9,26 + 19351: -10,26 + 19414: -14,29 + 19588: 34,-14 + 19589: 34,-13 + 19590: 34,-12 + 19591: 34,-11 + 19592: 34,-10 + 19593: 35,-9 + 19594: 36,-9 + 19595: 37,-9 + 19596: 39,-9 + 19597: 38,-9 + 19598: 40,-10 + 19599: 40,-11 + 19600: 40,-12 + 19601: 39,-12 + 19602: 38,-12 + 19603: 36,-12 + 19604: 35,-12 + 19605: 37,-12 + 19606: 35,-15 + 19607: 36,-15 + 19608: 37,-15 + 19609: 38,-15 + 19610: 39,-15 + 19611: 40,-14 + 19612: 40,-13 + 20190: -19,3 - node: angle: 3.141592653589793 rad color: '#4A0000C0' id: Dirt decals: - 13708: -34,-79 - 13709: -35,-79 - 13710: -35,-78 - 13711: -35,-77 - 13712: -34,-77 - 13713: -33,-77 - 13714: -32,-77 - 13715: -31,-77 - 13716: -31,-78 - 13717: -31,-79 - 13718: -32,-80 - 13719: -30,-79 - 13720: -36,-79 - 13721: -36,-78 - 13722: -33,-76 - 13723: -34,-76 - 13724: -35,-76 - 13725: -32,-76 - 13726: -33,-79 - 13727: -34,-80 - 13728: -35,-80 - 13729: -37,-80 - 13730: -37,-77 - 13731: -37,-76 - 13732: -37,-73 - 13733: -29,-73 - 13734: -29,-74 - 13735: -29,-75 - 13736: -33,-73 - 13737: -32,-73 - 13738: -30,-75 + 13645: -34,-79 + 13646: -35,-79 + 13647: -35,-78 + 13648: -35,-77 + 13649: -34,-77 + 13650: -33,-77 + 13651: -32,-77 + 13652: -31,-77 + 13653: -31,-78 + 13654: -31,-79 + 13655: -32,-80 + 13656: -30,-79 + 13657: -36,-79 + 13658: -36,-78 + 13659: -33,-76 + 13660: -34,-76 + 13661: -35,-76 + 13662: -32,-76 + 13663: -33,-79 + 13664: -34,-80 + 13665: -35,-80 + 13666: -37,-80 + 13667: -37,-77 + 13668: -37,-76 + 13669: -37,-73 + 13670: -29,-73 + 13671: -29,-74 + 13672: -29,-75 + 13673: -33,-73 + 13674: -32,-73 + 13675: -30,-75 - node: angle: 3.141592653589793 rad color: '#4A0000FF' id: Dirt decals: - 13705: -34,-78 - 13706: -32,-78 - 13707: -32,-79 + 13642: -34,-78 + 13643: -32,-78 + 13644: -32,-79 - node: color: '#DABC8B7F' id: Dirt decals: - 13476: -40,-68 - 13477: -38,-66 - 13478: -39,-66 - 13479: -41,-66 - 13480: -41,-67 - 13481: -40,-66 - 13482: -41,-65 - 13483: -41,-63 + 13413: -40,-68 + 13414: -38,-66 + 13415: -39,-66 + 13416: -41,-66 + 13417: -41,-67 + 13418: -40,-66 + 13419: -41,-65 + 13420: -41,-63 - node: color: '#DABC8B95' id: Dirt decals: - 13474: -37,-66 - 13475: -37,-67 + 13411: -37,-66 + 13412: -37,-67 - node: color: '#DABC8BA7' id: Dirt decals: - 13484: -39,-65 - 13485: -40,-65 - 13486: -37,-65 - 13487: -38,-65 - 13488: -38,-67 - 13489: -34,-66 - 13490: -34,-65 - 13491: -33,-66 - 13492: -34,-67 - 13493: -34,-68 - 13494: -30,-66 - 13495: -31,-66 - 13496: -30,-65 - 13497: -31,-65 - 13498: -32,-66 - 13499: -32,-66 - 13500: -32,-65 - 13501: -33,-68 - 13502: -33,-67 - 13503: -32,-67 - 13504: -32,-68 - 13505: -31,-68 - 13506: -31,-67 + 13421: -39,-65 + 13422: -40,-65 + 13423: -37,-65 + 13424: -38,-65 + 13425: -38,-67 + 13426: -34,-66 + 13427: -34,-65 + 13428: -33,-66 + 13429: -34,-67 + 13430: -34,-68 + 13431: -30,-66 + 13432: -31,-66 + 13433: -30,-65 + 13434: -31,-65 + 13435: -32,-66 + 13436: -32,-66 + 13437: -32,-65 + 13438: -33,-68 + 13439: -33,-67 + 13440: -32,-67 + 13441: -32,-68 + 13442: -31,-68 + 13443: -31,-67 - node: color: '#DABC8BAE' id: Dirt decals: - 13473: -37,-65 + 13410: -37,-65 - node: color: '#DABC8BD0' id: Dirt decals: - 13469: -37,-68 - 13470: -36,-67 - 13471: -36,-68 - 13472: -36,-66 + 13406: -37,-68 + 13407: -36,-67 + 13408: -36,-68 + 13409: -36,-66 - node: color: '#DC5F31FF' id: Dirt decals: - 18689: 60,-40 - 18690: 59,-40 - 18691: 59,-41 - 18692: 58,-41 - 18693: 60,-41 - 18694: 61,-41 - 18695: 62,-40 - 18696: 62,-41 - 18697: 58,-42 - 18698: 59,-42 - 18699: 60,-42 - 18700: 63,-40 - 18701: 25,-66 - 18702: 26,-67 - 18703: 25,-69 - 18704: 27,-68 - 18705: 27,-67 - 18706: -44,-66 - 18707: -43,-65 - 18708: -44,-64 - 18709: -45,-64 - 18710: -45,-63 - 18711: -46,-63 - 18712: -44,-66 - 18713: -46,-68 - 18714: -46,-69 - 18715: -45,-68 - 18716: -46,-67 - 18717: -44,-65 + 18626: 60,-40 + 18627: 59,-40 + 18628: 59,-41 + 18629: 58,-41 + 18630: 60,-41 + 18631: 61,-41 + 18632: 62,-40 + 18633: 62,-41 + 18634: 58,-42 + 18635: 59,-42 + 18636: 60,-42 + 18637: 63,-40 + 18643: -44,-66 + 18644: -43,-65 + 18645: -44,-64 + 18646: -45,-64 + 18647: -45,-63 + 18648: -46,-63 + 18649: -44,-66 + 18650: -46,-68 + 18651: -46,-69 + 18652: -45,-68 + 18653: -46,-67 + 18654: -44,-65 - node: color: '#FFFFFF2B' id: Dirt decals: - 16300: -67,-40 - 16301: -68,-40 - 16302: -68,-41 - 16303: -69,-40 - 16304: -66,-40 - 16305: -65,-40 - 16306: -65,-41 - 16307: -64,-41 - 16308: -63,-41 - 16309: -63,-41 - 16310: -63,-42 - 16311: -63,-44 - 16312: -64,-44 - 16313: -65,-44 - 16314: -66,-44 - 16315: -67,-44 - 16316: -68,-46 - 16317: -69,-44 + 16237: -67,-40 + 16238: -68,-40 + 16239: -68,-41 + 16240: -69,-40 + 16241: -66,-40 + 16242: -65,-40 + 16243: -65,-41 + 16244: -64,-41 + 16245: -63,-41 + 16246: -63,-41 + 16247: -63,-42 + 16248: -63,-44 + 16249: -64,-44 + 16250: -65,-44 + 16251: -66,-44 + 16252: -67,-44 + 16253: -68,-46 + 16254: -69,-44 - node: color: '#FFFFFF4D' id: Dirt decals: - 18408: -59,-46 - 18409: -60,-46 - 18410: -60,-45 - 18411: -60,-44 - 18412: -59,-44 - 18413: -59,-45 - 18414: -58,-45 - 18415: -58,-44 - 18416: -60,-43 - 18417: -60,-43 + 18345: -59,-46 + 18346: -60,-46 + 18347: -60,-45 + 18348: -60,-44 + 18349: -59,-44 + 18350: -59,-45 + 18351: -58,-45 + 18352: -58,-44 + 18353: -60,-43 + 18354: -60,-43 - node: color: '#FFFFFF50' id: Dirt decals: - 16015: 91,-1 - 16016: 92,-1 - 16017: 93,-1 - 16018: 92,0 - 16019: 91,7 - 16020: 91,6 - 16021: 92,7 - 16022: 96,5 - 16023: 97,5 - 16024: 97,4 - 16025: 97,3 - 16026: 96,4 - 16073: 83,4 - 16074: 84,4 - 16075: 85,5 - 16076: 85,4 - 16077: 86,4 - 16078: 86,5 - 16079: 87,6 - 16080: 87,5 - 16081: 89,9 - 16082: 90,9 - 16083: 91,9 - 16084: 92,10 - 16085: 91,9 + 15952: 91,-1 + 15953: 92,-1 + 15954: 93,-1 + 15955: 92,0 + 15956: 91,7 + 15957: 91,6 + 15958: 92,7 + 15959: 96,5 + 15960: 97,5 + 15961: 97,4 + 15962: 97,3 + 15963: 96,4 + 16010: 83,4 + 16011: 84,4 + 16012: 85,5 + 16013: 85,4 + 16014: 86,4 + 16015: 86,5 + 16016: 87,6 + 16017: 87,5 + 16018: 89,9 + 16019: 90,9 + 16020: 91,9 + 16021: 92,10 + 16022: 91,9 - node: color: '#FFFFFF60' id: Dirt decals: - 16646: -41,-11 - 16647: -40,-11 - 16648: -39,-10 - 16649: -39,-10 - 16650: -40,-10 - 16651: -40,-9 - 16652: -41,-9 - 16653: -41,-10 - 16654: -39,-9 - 16655: -39,-11 - 16656: -38,-11 + 16583: -41,-11 + 16584: -40,-11 + 16585: -39,-10 + 16586: -39,-10 + 16587: -40,-10 + 16588: -40,-9 + 16589: -41,-9 + 16590: -41,-10 + 16591: -39,-9 + 16592: -39,-11 + 16593: -38,-11 - node: color: '#FFFFFF66' id: Dirt decals: - 16165: -62,-43 - 16166: -62,-42 - 16167: -62,-44 - 16168: -63,-43 - 16169: -72,-42 - 16170: -71,-42 - 16171: -70,-42 - 16172: -71,-41 - 16173: -72,-41 - 16174: -72,-40 - 16175: -71,-40 - 16176: -70,-40 - 16177: -70,-43 - 16178: -70,-44 - 16179: -70,-45 - 16180: -69,-45 - 16181: -68,-45 - 16182: -68,-46 - 16183: -69,-46 - 16184: -66,-42 - 16185: -66,-43 - 16186: -65,-43 - 16187: -66,-41 - 16188: -65,-42 - 16189: -68,-43 - 16190: -67,-43 - 16191: -68,-42 - 16192: -67,-41 - 16193: -68,-44 - 16194: -64,-42 - 16195: -64,-43 - 16196: -63,-43 + 16102: -62,-43 + 16103: -62,-42 + 16104: -62,-44 + 16105: -63,-43 + 16106: -72,-42 + 16107: -71,-42 + 16108: -70,-42 + 16109: -71,-41 + 16110: -72,-41 + 16111: -72,-40 + 16112: -71,-40 + 16113: -70,-40 + 16114: -70,-43 + 16115: -70,-44 + 16116: -70,-45 + 16117: -69,-45 + 16118: -68,-45 + 16119: -68,-46 + 16120: -69,-46 + 16121: -66,-42 + 16122: -66,-43 + 16123: -65,-43 + 16124: -66,-41 + 16125: -65,-42 + 16126: -68,-43 + 16127: -67,-43 + 16128: -68,-42 + 16129: -67,-41 + 16130: -68,-44 + 16131: -64,-42 + 16132: -64,-43 + 16133: -63,-43 - node: color: '#FFFFFF6C' id: Dirt decals: - 18827: 39,-53 - 18828: 40,-53 - 18829: 39,-52 - 18830: 40,-52 - 18831: 40,-52 - 18832: 40,-51 - 18833: 39,-51 - 18834: 39,-50 - 18835: 41,-50 - 18836: 42,-50 - 18837: 42,-51 - 18838: 41,-51 - 18839: 41,-52 - 18840: 41,-53 - 18841: 42,-53 - 18842: 42,-54 - 18843: 42,-54 - 18844: 41,-55 - 18845: 41,-56 - 18846: 42,-56 - 18847: 39,-55 - 18848: 39,-54 - 18849: 41,-54 - 18850: 41,-54 - 18851: 44,-50 - 18852: 45,-50 - 18853: 45,-51 - 18854: 44,-51 - 18855: 44,-53 - 18856: 45,-54 - 18857: 45,-55 - 18858: 45,-55 - 18859: 44,-54 - 18860: 44,-53 - 18861: 45,-53 - 18862: 43,-50 - 18863: 43,-51 - 18864: 43,-52 - 18865: 43,-54 - 18866: 43,-54 - 18867: 43,-56 - 18868: 46,-55 - 18869: 46,-56 - 18870: 46,-52 - 18871: 50,-50 - 18872: 50,-51 - 18873: 50,-52 - 18874: 49,-53 - 18875: 49,-53 - 18876: 51,-53 - 18877: 51,-52 - 18878: 50,-53 - 18879: 50,-55 - 18880: 49,-55 - 18881: 49,-56 - 18882: 50,-56 - 18883: 51,-56 - 18884: 51,-54 - 18885: 49,-54 - 18886: 52,-56 - 18887: 52,-55 - 18888: 52,-54 - 18889: 52,-53 - 18890: 52,-52 - 18891: 52,-51 - 18892: 52,-51 - 18893: 52,-50 - 18894: 53,-51 - 18895: 53,-53 - 18896: 53,-54 - 18897: 53,-55 - 18898: 53,-56 + 18764: 39,-53 + 18765: 40,-53 + 18766: 39,-52 + 18767: 40,-52 + 18768: 40,-52 + 18769: 40,-51 + 18770: 39,-51 + 18771: 39,-50 + 18772: 41,-50 + 18773: 42,-50 + 18774: 42,-51 + 18775: 41,-51 + 18776: 41,-52 + 18777: 41,-53 + 18778: 42,-53 + 18779: 42,-54 + 18780: 42,-54 + 18781: 41,-55 + 18782: 41,-56 + 18783: 42,-56 + 18784: 39,-55 + 18785: 39,-54 + 18786: 41,-54 + 18787: 41,-54 + 18788: 44,-50 + 18789: 45,-50 + 18790: 45,-51 + 18791: 44,-51 + 18792: 44,-53 + 18793: 45,-54 + 18794: 45,-55 + 18795: 45,-55 + 18796: 44,-54 + 18797: 44,-53 + 18798: 45,-53 + 18799: 43,-50 + 18800: 43,-51 + 18801: 43,-52 + 18802: 43,-54 + 18803: 43,-54 + 18804: 43,-56 + 18805: 46,-55 + 18806: 46,-56 + 18807: 46,-52 + 18808: 50,-50 + 18809: 50,-51 + 18810: 50,-52 + 18811: 49,-53 + 18812: 49,-53 + 18813: 51,-53 + 18814: 51,-52 + 18815: 50,-53 + 18816: 50,-55 + 18817: 49,-55 + 18818: 49,-56 + 18819: 50,-56 + 18820: 51,-56 + 18821: 51,-54 + 18822: 49,-54 + 18823: 52,-56 + 18824: 52,-55 + 18825: 52,-54 + 18826: 52,-53 + 18827: 52,-52 + 18828: 52,-51 + 18829: 52,-51 + 18830: 52,-50 + 18831: 53,-51 + 18832: 53,-53 + 18833: 53,-54 + 18834: 53,-55 + 18835: 53,-56 - node: angle: 3.141592653589793 rad color: '#FFFFFFAA' id: Dirt decals: - 13801: -34,-63 - 13802: -32,-63 - 13803: -33,-62 - 13804: -33,-61 - 13805: -33,-60 - 13806: -34,-61 - 13807: -31,-61 - 13808: -31,-60 + 13738: -34,-63 + 13739: -32,-63 + 13740: -33,-62 + 13741: -33,-61 + 13742: -33,-60 + 13743: -34,-61 + 13744: -31,-61 + 13745: -31,-60 - node: color: '#FFFFFFFF' id: Dirt decals: - 649: 38,-21 - 880: -32,49 - 3918: 18,70 - 3919: 23,66 - 3959: 15,60 - 3962: 20,61 - 3989: -34,59 - 3990: -35,59 - 3991: -34,60 - 3992: -38,60 - 3993: -38,59 - 4018: -32,62 - 4021: -24,65 - 11109: 32,-68 - 11110: 41,-67 - 11111: 40,-67 - 11112: 43,-64 - 11113: 45,-62 - 11114: 41,-60 - 11115: 41,-61 - 11116: 42,-75 - 11117: 35,-71 - 11118: 36,-71 - 11119: 35,-70 - 11120: 34,-65 - 11121: 31,-61 - 11122: 32,-61 - 11123: 32,-61 - 11145: 27,-55 - 13111: 43,-33 - 13169: 39,-53 - 13278: 52,-37 - 13287: 52,-37 - 13322: 56,-36 - 13410: -33,-65 - 13507: -37,-64 - 13510: -41,-64 - 19825: -30,-23 - 19826: -29,-23 - 19827: -28,-23 - 19828: -29,-24 - 19829: -30,-24 - 19963: -71,-38 - 19964: -72,-37 - 19965: -72,-35 - 19966: -72,-34 - 19967: -71,-34 - 19968: -67,-34 - 19969: -65,-34 - 19970: -68,-34 - 19971: -62,-37 - 19972: -68,-38 - 19973: -69,-38 - 20031: 33,39 - 20032: 34,39 - 20033: 34,38 - 20034: 36,39 - 21466: -60,-25 - 21467: -60,-25 - 21468: -63,-23 - 21469: -64,-23 - 21470: -64,-23 - 21471: -63,-23 - 21472: -62,-27 - 21473: -62,-27 - 21474: -62,-27 - 21475: -62,-30 + 648: 38,-21 + 879: -32,49 + 3917: 18,70 + 3918: 23,66 + 3958: 15,60 + 3961: 20,61 + 3988: -34,59 + 3989: -35,59 + 3990: -34,60 + 3991: -38,60 + 3992: -38,59 + 4017: -32,62 + 4020: -24,65 + 13048: 43,-33 + 13106: 39,-53 + 13215: 52,-37 + 13224: 52,-37 + 13259: 56,-36 + 13347: -33,-65 + 13444: -37,-64 + 13447: -41,-64 + 19761: -30,-23 + 19762: -29,-23 + 19763: -28,-23 + 19899: -71,-38 + 19900: -72,-37 + 19901: -72,-35 + 19902: -72,-34 + 19903: -71,-34 + 19904: -67,-34 + 19905: -65,-34 + 19906: -68,-34 + 19907: -62,-37 + 19908: -68,-38 + 19909: -69,-38 + 19967: 33,39 + 19968: 34,39 + 19969: 34,38 + 19970: 36,39 + 21398: -60,-25 + 21399: -60,-25 + 21400: -63,-23 + 21401: -64,-23 + 21402: -64,-23 + 21403: -63,-23 + 21404: -62,-27 + 21405: -62,-27 + 21406: -62,-27 + 21407: -62,-30 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 245: 52,-43 - 321: 65,-10 - 329: -39,-78 - 330: -27,-77 - 337: 24,-55 - 350: -77,-32 - 351: -77,-26 - 953: 35,34 - 954: 36,37 - 955: 40,29 - 956: 42,30 - 962: 28,-61 - 963: 34,-66 - 964: 33,-70 - 965: 35,-69 - 966: 31,-61 - 1063: -33,-47 - 1396: -42,63 - 1397: -41,63 - 1398: -42,60 - 1582: -38,29 - 1583: -39,26 - 1584: -38,25 - 1611: -60,-34 - 1612: -59,-36 - 1613: -58,-35 - 1614: -59,-34 - 1615: -60,-39 - 1616: -58,-39 - 1617: -58,-37 - 1618: -60,-36 - 1657: -59,-43 - 1658: -58,-42 - 1659: -58,-41 - 1660: -60,-42 - 1839: -72,-28 - 1840: -69,-25 - 1841: -70,-28 - 1842: -70,-29 - 1843: -70,-25 - 1844: -69,-23 - 1845: -69,-24 - 1931: 34,-20 - 1932: 33,-20 - 1933: 33,-19 - 1934: 36,-21 - 1935: 35,-23 - 1936: 37,-23 - 1937: 37,-24 - 1938: 41,-24 - 1939: 40,-24 - 1940: 40,-27 - 1941: 41,-28 - 1942: 43,-29 - 1943: 26,-20 - 1944: 24,-21 - 1945: 23,-23 - 1946: 24,-23 - 1947: 23,-23 - 1948: 22,-21 - 1949: 21,-22 - 1950: 20,-21 - 1951: 21,-21 - 1952: 22,-18 + 244: 52,-43 + 320: 65,-10 + 328: -39,-78 + 329: -27,-77 + 336: 24,-55 + 349: -77,-32 + 350: -77,-26 + 952: 35,34 + 953: 36,37 + 954: 40,29 + 955: 42,30 + 963: 33,-70 + 1062: -33,-47 + 1395: -42,63 + 1396: -41,63 + 1397: -42,60 + 1581: -38,29 + 1582: -39,26 + 1583: -38,25 + 1610: -60,-34 + 1611: -59,-36 + 1612: -58,-35 + 1613: -59,-34 + 1614: -60,-39 + 1615: -58,-39 + 1616: -58,-37 + 1617: -60,-36 + 1656: -59,-43 + 1657: -58,-42 + 1658: -58,-41 + 1659: -60,-42 + 1838: -72,-28 + 1839: -69,-25 + 1840: -70,-28 + 1841: -70,-29 + 1842: -70,-25 + 1843: -69,-23 + 1844: -69,-24 + 1930: 34,-20 + 1931: 33,-20 + 1932: 33,-19 + 1933: 36,-21 + 1934: 35,-23 + 1935: 37,-23 + 1936: 37,-24 + 1937: 41,-24 + 1938: 40,-24 + 1939: 40,-27 + 1940: 41,-28 + 1941: 43,-29 + 1942: 26,-20 + 1943: 24,-21 + 1944: 23,-23 + 1945: 24,-23 + 1946: 23,-23 + 1947: 22,-21 + 1948: 21,-22 + 1949: 20,-21 + 1950: 21,-21 + 1951: 22,-18 + 1952: 52,-29 1953: 52,-29 - 1954: 52,-29 - 1955: 52,-31 - 1956: 52,-34 - 1957: 51,-39 - 1958: 52,-42 - 1959: 52,-45 + 1954: 52,-31 + 1955: 52,-34 + 1956: 51,-39 + 1957: 52,-42 + 1958: 52,-45 + 1959: 51,-48 1960: 51,-48 - 1961: 51,-48 - 1962: 47,-48 - 1963: 44,-48 - 1964: 41,-48 - 1965: 37,-47 - 1966: 36,-49 - 1967: 37,-56 - 1968: 34,-56 - 1969: 32,-55 - 1970: 30,-55 - 4038: 11,79 - 16340: -71,-35 - 16341: -67,-36 - 16342: -71,-37 - 16343: -66,-35 - 16344: -63,-37 - 16345: -63,-34 - 16346: -63,-34 - 16347: -69,-37 - 16348: -69,-35 - 16349: -70,-36 - 16350: -66,-37 - 16351: -65,-37 - 16352: -65,-36 - 16353: -65,-35 - 16354: -69,-36 - 16355: -69,-36 - 16357: -63,-36 - 16363: -68,-35 - 16364: -65,-37 - 16365: -63,-36 + 1961: 47,-48 + 1962: 44,-48 + 1963: 41,-48 + 1964: 37,-47 + 1965: 36,-49 + 1966: 37,-56 + 1967: 34,-56 + 1968: 32,-55 + 1969: 30,-55 + 4037: 11,79 + 16277: -71,-35 + 16278: -67,-36 + 16279: -71,-37 + 16280: -66,-35 + 16281: -63,-37 + 16282: -63,-34 + 16283: -63,-34 + 16284: -69,-37 + 16285: -69,-35 + 16286: -70,-36 + 16287: -66,-37 + 16288: -65,-37 + 16289: -65,-36 + 16290: -65,-35 + 16291: -69,-36 + 16292: -69,-36 + 16294: -63,-36 + 16300: -68,-35 + 16301: -65,-37 + 16302: -63,-36 + 24581: 25,-66 + 24582: 26,-67 + 24583: 27,-67 + 24584: 27,-68 + 24585: 25,-69 + 24586: 35,-66 + 24587: 34,-66 + 24588: 35,-65 + 24589: 36,-61 + 24590: 35,-60 + 24591: 26,-60 + 24592: 26,-61 + 24593: 28,-61 + 24594: 27,-61 + 24595: 28,-57 + 24596: 27,-55 + 24597: 39,-67 + 24598: 40,-66 + 24599: 41,-66 + 24600: 36,-70 + 24601: 36,-71 + 24602: 35,-71 + 24603: 39,-74 + 24604: 39,-71 + 24605: 41,-71 + 24606: 44,-62 + 24607: 44,-63 + 24608: 40,-61 + 24609: 39,-62 + 24610: 37,-62 + 24611: 35,-63 + 24612: 42,-62 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Dirt decals: - 13660: -33,-72 - 13798: -30,-61 + 13597: -33,-72 + 13735: -30,-61 - node: angle: 3.141592653589793 rad color: '#FFFFFFAA' id: DirtHeavy decals: - 13809: -32,-60 - 13810: -32,-61 - 13811: -34,-60 - 13812: -32,-62 - 13813: -31,-62 - 13839: -39,-56 - 13840: -39,-55 - 13842: -38,-56 - 13843: -38,-55 - 13844: -38,-55 - 13846: -37,-55 - 13847: -37,-56 + 13746: -32,-60 + 13747: -32,-61 + 13748: -34,-60 + 13749: -32,-62 + 13750: -31,-62 + 13776: -39,-56 + 13777: -39,-55 + 13779: -38,-56 + 13780: -38,-55 + 13781: -38,-55 + 13783: -37,-55 + 13784: -37,-56 - node: color: '#FFFFFFFF' id: DirtHeavy decals: - 3867: 23,71 - 3869: 17,69 - 3899: 18,67 - 3900: 20,66 - 3901: 19,66 - 3902: 23,67 - 3913: 23,67 - 3914: 22,67 - 3954: 21,61 - 3955: 19,63 - 3960: 12,59 - 3961: 18,62 - 3994: -38,62 - 3995: -39,62 - 3996: -42,61 - 4000: -37,60 - 4001: -36,59 - 4002: -36,60 - 4019: -30,62 - 4020: -28,60 - 4022: -24,63 - 10975: 35,-61 - 10976: 34,-60 - 10977: 31,-68 - 10978: 30,-70 - 10979: 29,-70 - 10980: 27,-67 - 10981: 27,-66 - 10982: 29,-66 - 10983: 33,-66 - 10984: 33,-66 - 10985: 40,-71 - 10986: 40,-71 - 10987: 38,-72 - 10988: 38,-71 - 10989: 39,-70 - 10990: 40,-70 - 10991: 41,-73 - 10992: 41,-68 - 10993: 41,-68 - 10994: 41,-66 - 10995: 39,-66 - 10996: 38,-67 - 10997: 35,-72 - 10998: 34,-71 - 10999: 35,-67 - 11000: 37,-66 - 11001: 35,-65 - 11002: 34,-63 - 11003: 35,-61 - 11004: 38,-62 - 11005: 40,-63 - 11006: 40,-61 - 11007: 40,-60 - 11008: 42,-62 - 11009: 43,-63 - 11143: 27,-56 - 11144: 27,-56 - 11149: 26,-55 - 11150: 26,-55 - 11151: 28,-55 - 11152: 28,-58 - 11153: 40,-68 - 11154: 38,-68 - 11250: -60,-39 - 11251: -60,-42 - 11252: -60,-41 - 11253: -60,-41 - 12847: -46,-23 - 12848: -47,-23 - 12849: -47,-22 - 12850: -46,-22 - 12851: -45,-22 - 12852: -45,-23 - 12929: -47,-25 - 12930: -46,-25 - 12931: -45,-26 - 12932: -45,-27 - 12933: -46,-29 - 12934: -45,-29 - 12935: -46,-30 - 12936: -46,-30 - 12937: -45,-31 - 12938: -46,-31 - 12939: -46,-28 - 12940: -46,-28 - 12941: -42,-29 - 12942: -42,-29 - 12943: -41,-27 - 12944: -41,-27 - 12945: -40,-28 - 12946: -41,-29 - 12947: -42,-27 - 12948: -42,-26 - 12949: -41,-28 - 12950: -41,-29 - 12951: -40,-27 - 12952: -39,-27 - 12953: -38,-26 - 12954: -37,-27 - 12955: -37,-28 - 12956: -39,-29 - 12957: -39,-29 - 12958: -36,-29 - 12959: -36,-28 - 12960: -37,-27 - 12961: -38,-27 - 12962: -35,-29 - 12963: -34,-29 - 12964: -35,-27 - 12965: -35,-27 - 12993: -40,-24 - 12994: -39,-23 - 12995: -39,-22 - 12996: -38,-23 - 12997: -38,-24 - 12998: -37,-23 - 12999: -37,-22 - 13000: -34,-22 - 13001: -34,-24 - 13002: -33,-24 - 13003: -33,-23 - 13004: -43,-23 - 13005: -43,-22 - 13006: -42,-22 - 13007: -41,-23 - 13008: -43,-27 - 13009: -42,-28 - 13010: -42,-29 - 13011: -43,-28 - 13012: -40,-27 - 13013: -39,-29 - 13014: -37,-29 - 13015: -36,-27 - 13016: -35,-28 - 13017: -38,-30 - 13018: -38,-30 - 13019: -34,-28 - 13020: -34,-28 - 13021: -34,-30 - 13022: -35,-29 - 13023: -37,-27 - 13024: -38,-26 - 13025: -40,-29 - 13026: -42,-30 - 13027: -42,-31 - 13028: -42,-32 - 13029: -43,-33 - 13030: -40,-33 - 13031: -42,-34 - 13032: -37,-32 - 13033: -37,-32 - 13034: -39,-34 - 13035: -39,-32 - 13036: -38,-34 - 13037: -37,-34 - 13038: -34,-33 - 13039: -34,-32 - 13040: -33,-33 - 13041: -35,-34 - 13042: -33,-34 - 13043: -35,-32 - 13044: -34,-33 - 13068: -29,-27 - 13069: -30,-27 - 13070: -30,-26 - 13071: -27,-26 - 13072: -27,-27 - 13073: -27,-30 - 13074: -26,-31 - 13075: -28,-31 - 13076: -30,-31 - 13077: -30,-29 - 13078: -31,-28 - 13079: -31,-29 - 13080: -31,-31 - 13081: -28,-31 - 13082: -27,-31 - 13083: -27,-32 - 13084: -30,-32 - 13085: -30,-32 - 13086: -30,-31 - 13087: -29,-31 - 13088: -29,-31 - 13089: -30,-30 - 13090: -30,-29 - 13091: -30,-27 - 13112: 43,-34 - 13113: 44,-33 - 13114: 42,-31 - 13115: 44,-32 - 13116: 44,-31 - 13117: 45,-32 - 13118: 45,-33 - 13119: 46,-32 - 13120: 47,-31 - 13121: 48,-32 - 13122: 48,-33 - 13123: 48,-32 - 13124: 47,-34 - 13125: 46,-35 - 13126: 46,-35 - 13127: 48,-35 - 13128: 48,-36 - 13129: 48,-36 - 13130: 47,-36 - 13131: 47,-36 - 13132: 44,-35 - 13133: 45,-33 - 13134: 46,-33 - 13135: 48,-33 - 13136: 48,-34 - 13137: 49,-34 - 13138: 49,-33 - 13139: 49,-34 - 13140: 49,-35 - 13141: 47,-33 - 13142: 47,-32 - 13168: 48,-31 - 13242: 39,-51 - 13243: 41,-52 - 13244: 41,-53 - 13245: 46,-53 - 13246: 47,-53 - 13247: 46,-54 - 13248: 46,-51 - 13249: 46,-52 - 13277: 52,-37 - 13288: 52,-37 - 13289: 53,-36 - 13291: 55,-39 - 13292: 56,-39 - 13293: 55,-38 - 13294: 56,-36 - 13295: 53,-35 - 13310: 55,-36 - 13311: 54,-36 - 13312: 53,-37 - 13313: 53,-38 - 13314: 54,-38 - 13315: 54,-37 - 13316: 54,-35 - 13411: -37,-63 - 13412: -36,-62 - 13429: -38,-63 - 13430: -38,-63 - 13431: -37,-63 - 13432: -38,-62 - 13433: -38,-62 - 13434: -38,-61 - 13435: -37,-60 - 13436: -36,-60 - 13437: -38,-60 - 13438: -38,-61 - 13439: -37,-62 - 13440: -37,-62 - 13441: -36,-61 - 13442: -36,-63 - 13443: -36,-63 - 13444: -37,-61 - 13460: -41,-62 - 13461: -40,-63 - 13508: -37,-64 - 13509: -41,-64 - 13514: -37,-59 - 16027: 76,0 - 16028: 77,0 - 16029: 78,0 - 16042: 99,-2 - 16043: 99,-3 - 16044: 99,-4 - 16045: 100,-4 - 16046: 100,-4 - 16047: 100,-2 - 16060: 91,-3 - 16061: 84,2 - 16066: 83,-3 - 16067: 83,-4 - 16068: 84,-4 - 16069: 88,-3 - 16070: 87,-4 - 16086: 89,9 - 16087: 89,10 - 16088: 91,10 - 16089: 93,10 - 16090: 93,9 - 16091: 92,9 - 16095: 76,4 - 16096: 76,6 - 16097: 93,6 - 16103: 95,7 - 16104: 97,7 - 16105: 97,6 - 16208: -71,-40 - 16209: -70,-40 - 16210: -70,-41 - 16211: -69,-41 - 16212: -69,-42 - 16213: -70,-43 - 16214: -70,-43 - 16215: -70,-43 - 16216: -66,-41 - 16217: -64,-40 - 16218: -62,-40 - 16219: -62,-41 - 16220: -63,-43 - 16221: -65,-43 - 16222: -66,-43 - 16223: -68,-45 - 16224: -69,-46 - 16225: -70,-46 - 16240: -67,-46 - 16241: -66,-46 - 16242: -66,-47 - 16243: -65,-48 - 16244: -65,-47 - 16245: -64,-46 - 16246: -63,-47 - 16247: -62,-47 - 16248: -62,-48 - 16369: -60,-49 - 16370: -60,-48 - 16371: -59,-50 - 16381: 10,69 - 16382: 10,70 - 16383: 11,70 - 16384: 11,69 - 16385: 10,67 - 16386: 11,66 - 16387: 12,66 - 16388: 12,68 - 16425: -39,-7 - 16426: -39,-6 - 16427: -40,-6 - 16428: -40,-7 - 16439: -39,1 - 16440: -39,1 - 16441: -38,0 - 16442: -38,0 - 16443: -37,2 - 16444: -37,2 - 16445: -39,0 - 16446: -37,1 - 16447: -37,2 - 16454: -43,-12 - 16455: -43,-11 - 16456: -43,-10 - 16457: -43,-10 - 16458: -44,-12 - 16459: -44,-12 - 16460: -43,-10 - 16461: -42,-9 - 16462: -42,-10 - 16463: -43,-12 - 16464: -44,-13 - 16465: -44,-13 - 16466: -44,-14 - 16467: -44,-16 - 16468: -44,-17 - 16469: -44,-18 - 16470: -44,-20 - 16471: -42,-20 - 16472: -42,-20 - 16473: -39,-20 - 16474: -37,-20 - 16475: -36,-20 - 16476: -36,-20 - 16477: -38,-20 - 16478: -38,-20 - 16479: -41,-20 - 16480: -42,-20 - 16481: -43,-20 - 16482: -44,-20 - 16483: -36,-20 - 16484: -31,-20 - 16485: -30,-20 - 16486: -30,-20 - 16487: -32,-20 - 16488: -32,-20 - 16489: -32,-18 - 16490: -31,-18 - 16491: -30,-18 - 16492: -29,-18 - 16493: -28,-18 - 16494: -28,-19 - 16495: -28,-20 - 16496: -29,-20 - 16497: -24,-22 - 16498: -24,-22 - 16499: -25,-22 - 16500: -25,-22 - 16501: -24,-21 - 16502: -23,-21 - 16503: -23,-22 - 16504: -22,-22 - 16505: -22,-21 - 16506: -23,-21 - 16507: -25,-21 - 16508: -25,-20 - 16509: -22,-20 - 16510: -22,-20 - 16511: -29,-18 - 17234: -2,32 - 17235: -1,32 - 17236: -1,32 - 17237: -2,27 - 17238: -2,27 - 17239: -1,27 - 17240: 0,27 - 17241: -1,27 - 17242: -2,27 - 17252: 0,39 - 17253: 0,40 - 17254: 0,40 - 17255: 2,40 - 17256: 2,40 - 17257: 0,38 - 17258: -1,36 - 17259: -1,35 - 17260: 0,34 - 17261: 0,34 - 17262: 0,42 - 17263: 1,42 - 17264: 1,42 - 17265: 0,42 - 17266: 0,48 - 17267: 0,48 - 17268: 0,48 - 17269: 0,47 - 17277: 6,52 - 17278: 7,52 - 17279: 6,50 - 18364: -53,-38 - 18365: -53,-37 - 18366: -52,-36 - 18367: -51,-36 - 18368: -52,-38 - 18369: -51,-38 - 18370: -51,-37 - 18371: -50,-37 - 18372: -50,-38 - 18373: -52,-37 - 18374: -52,-37 - 18375: -51,-37 - 18376: -50,-38 - 18377: -49,-38 - 18378: -48,-38 - 18379: -50,-37 - 18388: -52,-40 - 18389: -50,-40 - 18390: -51,-41 - 18406: -58,-46 - 18674: 61,-41 - 18675: 60,-41 - 18676: 59,-41 - 18677: 60,-40 - 18678: 59,-40 - 18679: 59,-40 - 18680: 59,-40 - 18681: 59,-40 - 18682: 60,-40 - 18683: 62,-40 - 18684: 61,-41 - 18685: 61,-41 - 18899: 43,-42 - 18900: 43,-41 - 18901: 43,-39 - 18902: 43,-38 - 18903: 45,-38 - 18904: 47,-38 - 18905: 49,-38 - 18906: 49,-39 - 18907: 48,-41 - 18908: 48,-43 - 18909: 46,-43 - 18910: 45,-43 - 18911: 44,-41 - 18912: 46,-40 - 18913: 47,-40 - 18939: 44,-48 - 18940: 45,-48 - 18941: 46,-48 - 18942: 43,-52 - 18943: 43,-53 - 18944: 43,-53 - 18945: 56,-41 - 19807: -31,-22 - 19808: -27,-23 - 19899: -72,-34 - 19900: -71,-34 - 19901: -72,-34 - 19902: -72,-36 - 19903: -72,-36 - 19904: -72,-37 - 19905: -72,-38 - 19906: -66,-38 - 19907: -66,-38 - 19908: -64,-38 - 19909: -64,-38 - 19910: -66,-38 - 19911: -67,-38 - 19912: -69,-38 - 19913: -71,-38 - 19914: -70,-38 - 19915: -68,-38 - 19916: -68,-38 - 19917: -65,-38 - 19918: -65,-38 - 19919: -64,-38 - 19920: -63,-38 - 19921: -62,-38 - 19922: -62,-36 - 19923: -62,-36 - 19924: -62,-38 - 19925: -62,-37 - 19926: -65,-34 - 19927: -66,-34 - 19928: -67,-34 - 19929: -69,-34 - 19930: -69,-34 - 19931: -67,-34 - 19932: -69,-34 - 19933: -69,-34 - 19934: -67,-34 - 19935: -67,-34 - 19936: -66,-34 - 19937: -65,-34 - 19938: -69,-34 - 19939: -66,-34 - 19940: -65,-34 - 19941: -63,-37 - 19942: -65,-38 - 19943: -67,-38 - 19944: -69,-38 - 19945: -70,-38 - 19946: -72,-38 - 19947: -72,-37 - 19948: -72,-36 - 19949: -72,-35 - 19950: -72,-35 - 19951: -70,-35 - 19952: -70,-35 - 19953: -70,-35 - 19954: -68,-35 - 19955: -67,-35 - 19956: -67,-36 - 19957: -64,-37 - 19958: -63,-37 - 19959: -62,-37 - 19960: -62,-37 - 19961: -62,-38 - 19962: -62,-36 - 20025: 35,39 - 20026: 34,39 - 20027: 34,38 - 20028: 33,39 - 20029: 36,39 - 20030: 35,37 - 21403: -71,-29 - 21404: -72,-26 - 21405: -70,-27 - 21406: -70,-26 - 21407: -69,-26 - 21408: -69,-27 - 21409: -68,-26 - 21410: -68,-26 - 21411: -67,-25 - 21412: -67,-26 - 21413: -68,-27 - 21414: -68,-27 - 21415: -67,-27 - 21416: -68,-25 - 21417: -67,-24 - 21440: -62,-29 - 21441: -63,-29 - 21442: -63,-30 - 21443: -62,-29 - 21463: -60,-29 - 21464: -60,-29 - 21465: -59,-30 - 21476: -63,-27 - 21477: -64,-27 - 21478: -64,-26 - 21479: -65,-25 - 21480: -66,-24 - 21481: -65,-23 - 21482: -63,-23 - 21483: -62,-23 - 21484: -60,-23 - 21485: -59,-23 - 21486: -61,-25 - 21487: -59,-24 - 21488: -59,-25 - 21489: -59,-26 - 21518: -64,-26 - 21519: -64,-25 - 21520: -63,-24 - 21521: -62,-24 - 21522: -62,-25 - 21523: -60,-26 - 21524: -60,-24 + 3866: 23,71 + 3868: 17,69 + 3898: 18,67 + 3899: 20,66 + 3900: 19,66 + 3901: 23,67 + 3912: 23,67 + 3913: 22,67 + 3953: 21,61 + 3954: 19,63 + 3959: 12,59 + 3960: 18,62 + 3993: -38,62 + 3994: -39,62 + 3995: -42,61 + 3999: -37,60 + 4000: -36,59 + 4001: -36,60 + 4018: -30,62 + 4019: -28,60 + 4021: -24,63 + 10921: 33,-66 + 10922: 33,-66 + 10925: 38,-72 + 11188: -60,-39 + 11189: -60,-42 + 11190: -60,-41 + 11191: -60,-41 + 12933: -38,-23 + 12964: -42,-31 + 12967: -40,-33 + 13049: 43,-34 + 13050: 44,-33 + 13051: 42,-31 + 13052: 44,-32 + 13053: 44,-31 + 13054: 45,-32 + 13055: 45,-33 + 13056: 46,-32 + 13057: 47,-31 + 13058: 48,-32 + 13059: 48,-33 + 13060: 48,-32 + 13061: 47,-34 + 13062: 46,-35 + 13063: 46,-35 + 13064: 48,-35 + 13065: 48,-36 + 13066: 48,-36 + 13067: 47,-36 + 13068: 47,-36 + 13069: 44,-35 + 13070: 45,-33 + 13071: 46,-33 + 13072: 48,-33 + 13073: 48,-34 + 13074: 49,-34 + 13075: 49,-33 + 13076: 49,-34 + 13077: 49,-35 + 13078: 47,-33 + 13079: 47,-32 + 13105: 48,-31 + 13179: 39,-51 + 13180: 41,-52 + 13181: 41,-53 + 13182: 46,-53 + 13183: 47,-53 + 13184: 46,-54 + 13185: 46,-51 + 13186: 46,-52 + 13214: 52,-37 + 13225: 52,-37 + 13226: 53,-36 + 13228: 55,-39 + 13229: 56,-39 + 13230: 55,-38 + 13231: 56,-36 + 13232: 53,-35 + 13247: 55,-36 + 13248: 54,-36 + 13249: 53,-37 + 13250: 53,-38 + 13251: 54,-38 + 13252: 54,-37 + 13253: 54,-35 + 13348: -37,-63 + 13349: -36,-62 + 13366: -38,-63 + 13367: -38,-63 + 13368: -37,-63 + 13369: -38,-62 + 13370: -38,-62 + 13371: -38,-61 + 13372: -37,-60 + 13373: -36,-60 + 13374: -38,-60 + 13375: -38,-61 + 13376: -37,-62 + 13377: -37,-62 + 13378: -36,-61 + 13379: -36,-63 + 13380: -36,-63 + 13381: -37,-61 + 13397: -41,-62 + 13398: -40,-63 + 13445: -37,-64 + 13446: -41,-64 + 13451: -37,-59 + 15964: 76,0 + 15965: 77,0 + 15966: 78,0 + 15979: 99,-2 + 15980: 99,-3 + 15981: 99,-4 + 15982: 100,-4 + 15983: 100,-4 + 15984: 100,-2 + 15997: 91,-3 + 15998: 84,2 + 16003: 83,-3 + 16004: 83,-4 + 16005: 84,-4 + 16006: 88,-3 + 16007: 87,-4 + 16023: 89,9 + 16024: 89,10 + 16025: 91,10 + 16026: 93,10 + 16027: 93,9 + 16028: 92,9 + 16032: 76,4 + 16033: 76,6 + 16034: 93,6 + 16040: 95,7 + 16041: 97,7 + 16042: 97,6 + 16145: -71,-40 + 16146: -70,-40 + 16147: -70,-41 + 16148: -69,-41 + 16149: -69,-42 + 16150: -70,-43 + 16151: -70,-43 + 16152: -70,-43 + 16153: -66,-41 + 16154: -64,-40 + 16155: -62,-40 + 16156: -62,-41 + 16157: -63,-43 + 16158: -65,-43 + 16159: -66,-43 + 16160: -68,-45 + 16161: -69,-46 + 16162: -70,-46 + 16177: -67,-46 + 16178: -66,-46 + 16179: -66,-47 + 16180: -65,-48 + 16181: -65,-47 + 16182: -64,-46 + 16183: -63,-47 + 16184: -62,-47 + 16185: -62,-48 + 16306: -60,-49 + 16307: -60,-48 + 16308: -59,-50 + 16318: 10,69 + 16319: 10,70 + 16320: 11,70 + 16321: 11,69 + 16322: 10,67 + 16323: 11,66 + 16324: 12,66 + 16325: 12,68 + 16362: -39,-7 + 16363: -39,-6 + 16364: -40,-6 + 16365: -40,-7 + 16376: -39,1 + 16377: -39,1 + 16378: -38,0 + 16379: -38,0 + 16380: -37,2 + 16381: -37,2 + 16382: -39,0 + 16383: -37,1 + 16384: -37,2 + 16391: -43,-12 + 16392: -43,-11 + 16393: -43,-10 + 16394: -43,-10 + 16395: -44,-12 + 16396: -44,-12 + 16397: -43,-10 + 16398: -42,-9 + 16399: -42,-10 + 16400: -43,-12 + 16401: -44,-13 + 16402: -44,-13 + 16403: -44,-14 + 16404: -44,-16 + 16405: -44,-17 + 16406: -44,-18 + 16407: -44,-20 + 16408: -42,-20 + 16409: -42,-20 + 16410: -39,-20 + 16411: -37,-20 + 16412: -36,-20 + 16413: -36,-20 + 16414: -38,-20 + 16415: -38,-20 + 16416: -41,-20 + 16417: -42,-20 + 16418: -43,-20 + 16419: -44,-20 + 16420: -36,-20 + 16421: -31,-20 + 16422: -30,-20 + 16423: -30,-20 + 16424: -32,-20 + 16425: -32,-20 + 16426: -32,-18 + 16427: -31,-18 + 16428: -30,-18 + 16429: -29,-18 + 16430: -28,-18 + 16431: -28,-19 + 16432: -28,-20 + 16433: -29,-20 + 16434: -24,-22 + 16435: -24,-22 + 16436: -25,-22 + 16437: -25,-22 + 16438: -24,-21 + 16439: -23,-21 + 16440: -23,-22 + 16441: -22,-22 + 16442: -22,-21 + 16443: -23,-21 + 16444: -25,-21 + 16445: -25,-20 + 16446: -22,-20 + 16447: -22,-20 + 16448: -29,-18 + 17171: -2,32 + 17172: -1,32 + 17173: -1,32 + 17174: -2,27 + 17175: -2,27 + 17176: -1,27 + 17177: 0,27 + 17178: -1,27 + 17179: -2,27 + 17189: 0,39 + 17190: 0,40 + 17191: 0,40 + 17192: 2,40 + 17193: 2,40 + 17194: 0,38 + 17195: -1,36 + 17196: -1,35 + 17197: 0,34 + 17198: 0,34 + 17199: 0,42 + 17200: 1,42 + 17201: 1,42 + 17202: 0,42 + 17203: 0,48 + 17204: 0,48 + 17205: 0,48 + 17206: 0,47 + 17214: 6,52 + 17215: 7,52 + 17216: 6,50 + 18301: -53,-38 + 18302: -53,-37 + 18303: -52,-36 + 18304: -51,-36 + 18305: -52,-38 + 18306: -51,-38 + 18307: -51,-37 + 18308: -50,-37 + 18309: -50,-38 + 18310: -52,-37 + 18311: -52,-37 + 18312: -51,-37 + 18313: -50,-38 + 18314: -49,-38 + 18315: -48,-38 + 18316: -50,-37 + 18325: -52,-40 + 18326: -50,-40 + 18327: -51,-41 + 18343: -58,-46 + 18611: 61,-41 + 18612: 60,-41 + 18613: 59,-41 + 18614: 60,-40 + 18615: 59,-40 + 18616: 59,-40 + 18617: 59,-40 + 18618: 59,-40 + 18619: 60,-40 + 18620: 62,-40 + 18621: 61,-41 + 18622: 61,-41 + 18836: 43,-42 + 18837: 43,-41 + 18838: 43,-39 + 18839: 43,-38 + 18840: 45,-38 + 18841: 47,-38 + 18842: 49,-38 + 18843: 49,-39 + 18844: 48,-41 + 18845: 48,-43 + 18846: 46,-43 + 18847: 45,-43 + 18848: 44,-41 + 18849: 46,-40 + 18850: 47,-40 + 18876: 44,-48 + 18877: 45,-48 + 18878: 46,-48 + 18879: 43,-52 + 18880: 43,-53 + 18881: 43,-53 + 18882: 56,-41 + 19835: -72,-34 + 19836: -71,-34 + 19837: -72,-34 + 19838: -72,-36 + 19839: -72,-36 + 19840: -72,-37 + 19841: -72,-38 + 19842: -66,-38 + 19843: -66,-38 + 19844: -64,-38 + 19845: -64,-38 + 19846: -66,-38 + 19847: -67,-38 + 19848: -69,-38 + 19849: -71,-38 + 19850: -70,-38 + 19851: -68,-38 + 19852: -68,-38 + 19853: -65,-38 + 19854: -65,-38 + 19855: -64,-38 + 19856: -63,-38 + 19857: -62,-38 + 19858: -62,-36 + 19859: -62,-36 + 19860: -62,-38 + 19861: -62,-37 + 19862: -65,-34 + 19863: -66,-34 + 19864: -67,-34 + 19865: -69,-34 + 19866: -69,-34 + 19867: -67,-34 + 19868: -69,-34 + 19869: -69,-34 + 19870: -67,-34 + 19871: -67,-34 + 19872: -66,-34 + 19873: -65,-34 + 19874: -69,-34 + 19875: -66,-34 + 19876: -65,-34 + 19877: -63,-37 + 19878: -65,-38 + 19879: -67,-38 + 19880: -69,-38 + 19881: -70,-38 + 19882: -72,-38 + 19883: -72,-37 + 19884: -72,-36 + 19885: -72,-35 + 19886: -72,-35 + 19887: -70,-35 + 19888: -70,-35 + 19889: -70,-35 + 19890: -68,-35 + 19891: -67,-35 + 19892: -67,-36 + 19893: -64,-37 + 19894: -63,-37 + 19895: -62,-37 + 19896: -62,-37 + 19897: -62,-38 + 19898: -62,-36 + 19961: 35,39 + 19962: 34,39 + 19963: 34,38 + 19964: 33,39 + 19965: 36,39 + 19966: 35,37 + 21335: -71,-29 + 21336: -72,-26 + 21337: -70,-27 + 21338: -70,-26 + 21339: -69,-26 + 21340: -69,-27 + 21341: -68,-26 + 21342: -68,-26 + 21343: -67,-25 + 21344: -67,-26 + 21345: -68,-27 + 21346: -68,-27 + 21347: -67,-27 + 21348: -68,-25 + 21349: -67,-24 + 21372: -62,-29 + 21373: -63,-29 + 21374: -63,-30 + 21375: -62,-29 + 21395: -60,-29 + 21396: -60,-29 + 21397: -59,-30 + 21408: -63,-27 + 21409: -64,-27 + 21410: -64,-26 + 21411: -65,-25 + 21412: -66,-24 + 21413: -65,-23 + 21414: -63,-23 + 21415: -62,-23 + 21416: -60,-23 + 21417: -59,-23 + 21418: -61,-25 + 21419: -59,-24 + 21420: -59,-25 + 21421: -59,-26 + 21450: -64,-26 + 21451: -64,-25 + 21452: -63,-24 + 21453: -62,-24 + 21454: -62,-25 + 21455: -60,-26 + 21456: -60,-24 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 238: 42,-29 - 239: 44,-28 - 240: 46,-29 - 259: 46,-48 - 261: 40,-39 - 262: 41,-37 - 263: 41,-44 - 277: 51,-36 - 278: 52,-40 - 287: 56,-11 - 296: -24,59 - 301: -31,18 - 302: -36,33 - 312: -29,24 - 314: -26,-18 - 316: -37,-18 - 317: -29,-20 - 333: 7,-56 - 339: -46,-20 - 344: -38,-5 - 346: -42,-6 - 348: -53,-34 - 354: -47,-27 - 359: -40,-17 - 384: -39,-46 - 385: -42,-47 - 388: -43,-44 - 391: -38,-28 - 716: -15,-32 - 992: -36,-37 - 993: -37,-37 - 994: -39,-37 - 995: -38,-36 - 996: -39,-36 - 997: -38,-37 - 998: -40,-36 - 999: -41,-37 - 1000: -41,-36 - 1001: -36,-37 - 1002: -37,-37 - 1003: -38,-37 - 1004: -38,-36 - 1005: -35,-37 - 1006: -39,-37 - 1007: -39,-36 - 1008: -40,-36 - 1009: -40,-37 - 1010: -41,-37 - 1262: 25,59 - 1263: 25,60 - 1264: 27,56 - 1265: 26,56 - 1266: 30,56 - 1267: 31,56 - 1268: 31,58 + 237: 42,-29 + 238: 44,-28 + 239: 46,-29 + 258: 46,-48 + 260: 40,-39 + 261: 41,-37 + 262: 41,-44 + 276: 51,-36 + 277: 52,-40 + 286: 56,-11 + 295: -24,59 + 300: -31,18 + 301: -36,33 + 311: -29,24 + 313: -26,-18 + 315: -37,-18 + 316: -29,-20 + 332: 7,-56 + 338: -46,-20 + 343: -38,-5 + 345: -42,-6 + 347: -53,-34 + 358: -40,-17 + 383: -39,-46 + 384: -42,-47 + 387: -43,-44 + 715: -15,-32 + 991: -36,-37 + 992: -37,-37 + 993: -39,-37 + 994: -38,-36 + 995: -39,-36 + 996: -38,-37 + 997: -40,-36 + 998: -41,-37 + 999: -41,-36 + 1000: -36,-37 + 1001: -37,-37 + 1002: -38,-37 + 1003: -38,-36 + 1004: -35,-37 + 1005: -39,-37 + 1006: -39,-36 + 1007: -40,-36 + 1008: -40,-37 + 1009: -41,-37 + 1261: 25,59 + 1262: 25,60 + 1263: 27,56 + 1264: 26,56 + 1265: 30,56 + 1266: 31,56 + 1267: 31,58 + 1292: 18,56 1293: 18,56 - 1294: 18,56 - 1295: 20,56 - 1296: 11,56 - 1297: 10,56 - 1308: 15,65 + 1294: 20,56 + 1295: 11,56 + 1296: 10,56 + 1307: 15,65 + 1308: 14,68 1309: 14,68 - 1310: 14,68 - 1311: 14,67 - 1312: 15,66 - 1316: 12,72 - 1317: 13,72 - 1318: 14,60 - 1319: 14,59 - 1320: 16,59 + 1310: 14,67 + 1311: 15,66 + 1315: 12,72 + 1316: 13,72 + 1317: 14,60 + 1318: 14,59 + 1319: 16,59 + 1320: 16,58 1321: 16,58 - 1322: 16,58 - 1323: 18,59 - 1324: 17,61 - 1325: 17,62 - 1326: 12,62 - 1327: 19,61 - 1328: 21,63 - 1364: 15,62 - 1365: 16,62 - 1366: 18,61 - 1367: 22,69 - 1368: 23,70 - 1369: 19,70 - 1370: 18,69 - 1371: 17,69 - 1372: 17,71 - 1373: 20,71 - 1374: 20,72 - 1375: 18,72 - 1376: 14,68 - 1377: 15,68 - 1378: 15,69 - 1379: 22,72 - 1393: 24,66 - 1394: 9,66 - 1399: -40,60 - 1400: -41,59 - 1401: -40,62 - 1402: -42,62 - 1412: -28,58 + 1322: 18,59 + 1323: 17,61 + 1324: 17,62 + 1325: 12,62 + 1326: 19,61 + 1327: 21,63 + 1363: 15,62 + 1364: 16,62 + 1365: 18,61 + 1366: 22,69 + 1367: 23,70 + 1368: 19,70 + 1369: 18,69 + 1370: 17,69 + 1371: 17,71 + 1372: 20,71 + 1373: 20,72 + 1374: 18,72 + 1375: 14,68 + 1376: 15,68 + 1377: 15,69 + 1378: 22,72 + 1392: 24,66 + 1393: 9,66 + 1398: -40,60 + 1399: -41,59 + 1400: -40,62 + 1401: -42,62 + 1411: -28,58 + 1412: -30,57 1413: -30,57 - 1414: -30,57 - 1415: -30,58 - 1416: -31,57 - 1417: -24,57 - 1418: -25,57 - 1419: -24,55 - 1420: -24,56 - 1421: -25,57 - 1422: -31,58 - 1423: -36,57 - 1424: -37,57 - 1425: -40,57 - 1426: -42,57 - 1427: -42,56 - 1428: -42,53 - 1429: -42,51 + 1414: -30,58 + 1415: -31,57 + 1416: -24,57 + 1417: -25,57 + 1418: -24,55 + 1419: -24,56 + 1420: -25,57 + 1421: -31,58 + 1422: -36,57 + 1423: -37,57 + 1424: -40,57 + 1425: -42,57 + 1426: -42,56 + 1427: -42,53 + 1428: -42,51 + 1429: -42,48 1430: -42,48 - 1431: -42,48 - 1432: -41,49 - 1433: -42,49 - 1434: -41,50 - 1435: -42,47 - 1436: -42,45 - 1437: -42,44 - 1438: -42,43 - 1439: -42,42 + 1431: -41,49 + 1432: -42,49 + 1433: -41,50 + 1434: -42,47 + 1435: -42,45 + 1436: -42,44 + 1437: -42,43 + 1438: -42,42 + 1439: -40,42 1440: -40,42 - 1441: -40,42 - 1442: -38,42 - 1443: -37,42 - 1444: -36,42 - 1445: -36,39 - 1446: -36,37 - 1447: -37,37 - 1448: -38,37 - 1449: -39,37 - 1450: -41,37 - 1451: -45,37 - 1452: -45,38 - 1453: -45,40 - 1454: -44,40 - 1455: -44,41 - 1456: -45,41 - 1457: -43,36 - 1458: -43,34 - 1459: -43,32 - 1460: -43,30 - 1461: -43,28 - 1462: -43,30 - 1463: -43,26 - 1464: -43,25 + 1441: -38,42 + 1442: -37,42 + 1443: -36,42 + 1444: -36,39 + 1445: -36,37 + 1446: -37,37 + 1447: -38,37 + 1448: -39,37 + 1449: -41,37 + 1450: -45,37 + 1451: -45,38 + 1452: -45,40 + 1453: -44,40 + 1454: -44,41 + 1455: -45,41 + 1456: -43,36 + 1457: -43,34 + 1458: -43,32 + 1459: -43,30 + 1460: -43,28 + 1461: -43,30 + 1462: -43,26 + 1463: -43,25 + 1464: -41,25 1465: -41,25 - 1466: -41,25 - 1467: -36,25 - 1468: -36,24 - 1469: -36,23 - 1470: -37,23 - 1471: -39,23 - 1472: -38,23 - 1473: -33,23 - 1474: -32,23 + 1466: -36,25 + 1467: -36,24 + 1468: -36,23 + 1469: -37,23 + 1470: -39,23 + 1471: -38,23 + 1472: -33,23 + 1473: -32,23 + 1474: -31,22 1475: -31,22 - 1476: -31,22 - 1477: -31,21 - 1478: -31,23 - 1479: -30,23 - 1480: -29,25 - 1481: -28,25 - 1482: -24,26 - 1483: -23,26 - 1484: -26,17 + 1476: -31,21 + 1477: -31,23 + 1478: -30,23 + 1479: -29,25 + 1480: -28,25 + 1481: -24,26 + 1482: -23,26 + 1483: -26,17 + 1484: -25,17 1485: -25,17 - 1486: -25,17 - 1487: -31,13 - 1488: -31,12 - 1489: -31,10 - 1490: -31,8 - 1541: -39,54 - 1542: -40,54 - 1543: -40,53 - 1544: -39,52 - 1545: -38,53 + 1486: -31,13 + 1487: -31,12 + 1488: -31,10 + 1489: -31,8 + 1540: -39,54 + 1541: -40,54 + 1542: -40,53 + 1543: -39,52 + 1544: -38,53 + 1545: -38,54 1546: -38,54 - 1547: -38,54 - 1548: -37,53 - 1549: -37,55 - 1559: -39,44 - 1560: -37,44 - 1561: -36,44 - 1562: -36,45 - 1563: -38,46 - 1564: -40,44 + 1547: -37,53 + 1548: -37,55 + 1558: -39,44 + 1559: -37,44 + 1560: -36,44 + 1561: -36,45 + 1562: -38,46 + 1563: -40,44 + 1592: -39,29 1593: -39,29 - 1594: -39,29 - 1595: -41,27 - 1596: -66,-45 - 1597: -65,-41 + 1594: -41,27 + 1595: -66,-45 + 1596: -65,-41 + 1597: -68,-43 1598: -68,-43 - 1599: -68,-43 - 1600: -60,-36 - 1601: -60,-35 - 1602: -60,-37 - 1603: -59,-37 - 1604: -59,-38 - 1605: -60,-39 - 1606: -58,-38 - 1607: -58,-39 - 1608: -58,-36 - 1609: -59,-35 - 1610: -58,-34 - 1619: -59,-42 - 1620: -60,-42 - 1621: -60,-43 - 1622: -60,-41 - 1623: -59,-41 - 1624: -59,-40 - 1625: -58,-43 - 1649: -58,-50 - 1650: -59,-51 - 1651: -60,-50 - 1652: -60,-49 + 1599: -60,-36 + 1600: -60,-35 + 1601: -60,-37 + 1602: -59,-37 + 1603: -59,-38 + 1604: -60,-39 + 1605: -58,-38 + 1606: -58,-39 + 1607: -58,-36 + 1608: -59,-35 + 1609: -58,-34 + 1618: -59,-42 + 1619: -60,-42 + 1620: -60,-43 + 1621: -60,-41 + 1622: -59,-41 + 1623: -59,-40 + 1624: -58,-43 + 1648: -58,-50 + 1649: -59,-51 + 1650: -60,-50 + 1651: -60,-49 + 1652: -58,-48 1653: -58,-48 - 1654: -58,-48 - 1655: -59,-48 - 1656: -59,-49 - 1661: -38,-1 - 1662: -39,0 - 1663: -37,1 - 1664: -38,1 - 1665: -37,0 + 1654: -59,-48 + 1655: -59,-49 + 1660: -38,-1 + 1661: -39,0 + 1662: -37,1 + 1663: -38,1 + 1664: -37,0 + 1665: -39,2 1666: -39,2 - 1667: -39,2 - 1698: -54,-47 + 1697: -54,-47 + 1698: -52,-48 1699: -52,-48 - 1700: -52,-48 - 1701: -51,-49 - 1702: -49,-48 - 1703: -48,-48 - 1704: -49,-47 - 1705: -50,-47 - 1706: -52,-47 - 1707: -49,-47 - 1708: -50,-46 - 1709: -49,-45 + 1700: -51,-49 + 1701: -49,-48 + 1702: -48,-48 + 1703: -49,-47 + 1704: -50,-47 + 1705: -52,-47 + 1706: -49,-47 + 1707: -50,-46 + 1708: -49,-45 + 1709: -50,-44 1710: -50,-44 - 1711: -50,-44 - 1712: -54,-45 - 1713: -55,-47 - 1714: -56,-46 - 1715: -55,-45 - 1716: -54,-44 - 1717: -55,-43 - 1718: -56,-44 - 1719: -54,-46 - 1720: -53,-47 - 1721: -50,-48 - 1722: -49,-48 - 1723: -48,-47 - 1724: -47,-48 - 1725: -50,-48 - 1726: -51,-48 - 1727: -48,-49 - 1728: -48,-47 - 1729: -47,-47 - 1730: -46,-48 - 1731: -47,-46 - 1732: -47,-45 - 1733: -46,-45 - 1734: -47,-45 - 1735: -47,-44 - 1736: -46,-44 - 1737: -46,-43 - 1738: -47,-44 - 1739: -47,-48 - 1740: -49,-48 - 1741: -49,-46 - 1742: -50,-46 - 1743: -49,-45 - 1744: -50,-44 - 1745: -51,-44 - 1746: -50,-43 - 1747: -53,-44 - 1748: -54,-44 - 1749: -54,-43 + 1711: -54,-45 + 1712: -55,-47 + 1713: -56,-46 + 1714: -55,-45 + 1715: -54,-44 + 1716: -55,-43 + 1717: -56,-44 + 1718: -54,-46 + 1719: -53,-47 + 1720: -50,-48 + 1721: -49,-48 + 1722: -48,-47 + 1723: -47,-48 + 1724: -50,-48 + 1725: -51,-48 + 1726: -48,-49 + 1727: -48,-47 + 1728: -47,-47 + 1729: -46,-48 + 1730: -47,-46 + 1731: -47,-45 + 1732: -46,-45 + 1733: -47,-45 + 1734: -47,-44 + 1735: -46,-44 + 1736: -46,-43 + 1737: -47,-44 + 1738: -47,-48 + 1739: -49,-48 + 1740: -49,-46 + 1741: -50,-46 + 1742: -49,-45 + 1743: -50,-44 + 1744: -51,-44 + 1745: -50,-43 + 1746: -53,-44 + 1747: -54,-44 + 1748: -54,-43 + 1749: -53,-44 1750: -53,-44 - 1751: -53,-44 - 1752: -54,-44 - 1753: -52,-44 - 1754: -51,-44 - 1755: -50,-43 - 1756: -54,-44 + 1751: -54,-44 + 1752: -52,-44 + 1753: -51,-44 + 1754: -50,-43 + 1755: -54,-44 + 1756: -55,-44 1757: -55,-44 - 1758: -55,-44 - 1759: -55,-45 - 1760: -55,-46 - 1761: -56,-46 - 1762: -55,-47 - 1763: -52,-48 - 1764: -50,-49 - 1765: -49,-49 - 1766: -52,-48 + 1758: -55,-45 + 1759: -55,-46 + 1760: -56,-46 + 1761: -55,-47 + 1762: -52,-48 + 1763: -50,-49 + 1764: -49,-49 + 1765: -52,-48 + 1766: -53,-49 1767: -53,-49 - 1768: -53,-49 - 1769: -54,-48 - 1770: -52,-49 - 1771: -47,-47 - 1772: -46,-47 + 1768: -54,-48 + 1769: -52,-49 + 1770: -47,-47 + 1771: -46,-47 + 1772: -56,-49 1773: -56,-49 - 1774: -56,-49 - 1775: -56,-48 - 1776: -50,-48 - 1777: -47,-48 - 1778: -46,-47 - 1779: -58,-23 - 1780: -66,-23 - 1805: -70,-29 - 1806: -70,-28 - 1807: -71,-28 - 1808: -72,-29 - 1809: -72,-28 - 1810: -71,-27 - 1811: -70,-27 - 1812: -70,-24 - 1813: -71,-25 - 1814: -72,-23 - 1815: -70,-23 - 1816: -68,-23 - 1817: -70,-26 - 1818: -69,-27 - 1819: -69,-29 - 1820: -68,-23 - 1821: -69,-23 - 1846: -55,-31 - 1847: -55,-23 - 1848: -52,-21 - 1849: -51,-21 - 1850: -64,-21 - 1851: -69,-20 - 1852: -75,-22 - 1853: -77,-20 - 1854: -77,-19 - 1855: -78,-20 - 1856: -78,-21 - 1857: -78,-24 - 1858: -78,-27 + 1774: -56,-48 + 1775: -50,-48 + 1776: -47,-48 + 1777: -46,-47 + 1778: -58,-23 + 1779: -66,-23 + 1804: -70,-29 + 1805: -70,-28 + 1806: -71,-28 + 1807: -72,-29 + 1808: -72,-28 + 1809: -71,-27 + 1810: -70,-27 + 1811: -70,-24 + 1812: -71,-25 + 1813: -72,-23 + 1814: -70,-23 + 1815: -68,-23 + 1816: -70,-26 + 1817: -69,-27 + 1818: -69,-29 + 1819: -68,-23 + 1820: -69,-23 + 1845: -55,-31 + 1846: -55,-23 + 1847: -52,-21 + 1848: -51,-21 + 1849: -64,-21 + 1850: -69,-20 + 1851: -75,-22 + 1852: -77,-20 + 1853: -77,-19 + 1854: -78,-20 + 1855: -78,-21 + 1856: -78,-24 + 1857: -78,-27 + 1858: -78,-28 1859: -78,-28 - 1860: -78,-28 - 1861: -78,-26 - 1862: -77,-31 - 1863: -77,-32 - 1864: -78,-32 - 1865: -59,-32 + 1860: -78,-26 + 1861: -77,-31 + 1862: -77,-32 + 1863: -78,-32 + 1864: -59,-32 + 1865: 41,-48 1866: 41,-48 - 1867: 41,-48 - 1868: 37,-48 - 1869: 36,-47 - 1870: 36,-48 - 1871: 47,-48 - 1872: 45,-48 + 1867: 37,-48 + 1868: 36,-47 + 1869: 36,-48 + 1870: 47,-48 + 1871: 45,-48 + 1872: 41,-45 1873: 41,-45 - 1874: 41,-45 - 1875: 41,-39 - 1876: 41,-38 - 1877: 40,-37 - 1878: 40,-36 - 1879: 41,-33 - 1880: 42,-28 - 1881: 43,-28 - 1882: 51,-28 - 1883: 52,-28 - 1884: 52,-29 - 1885: 51,-30 - 1886: 52,-31 - 1887: 52,-32 - 1888: 51,-34 - 1889: 51,-35 - 1890: 51,-37 - 1891: 51,-39 - 1892: 52,-38 - 1893: 52,-43 - 1894: 52,-45 - 1895: 49,-42 - 1896: 49,-44 - 1897: 47,-45 - 1898: 45,-45 - 1899: 43,-41 - 1900: 46,-45 - 1901: 45,-44 - 1902: 45,-41 - 1903: 48,-42 - 1904: 49,-40 - 1905: 47,-40 - 1906: 45,-39 - 1907: 48,-38 - 1908: 47,-38 - 1909: 45,-38 - 1910: 44,-38 - 1911: 52,-47 - 1912: 55,-43 + 1874: 41,-39 + 1875: 41,-38 + 1876: 40,-37 + 1877: 40,-36 + 1878: 41,-33 + 1879: 42,-28 + 1880: 43,-28 + 1881: 51,-28 + 1882: 52,-28 + 1883: 52,-29 + 1884: 51,-30 + 1885: 52,-31 + 1886: 52,-32 + 1887: 51,-34 + 1888: 51,-35 + 1889: 51,-37 + 1890: 51,-39 + 1891: 52,-38 + 1892: 52,-43 + 1893: 52,-45 + 1894: 49,-42 + 1895: 49,-44 + 1896: 47,-45 + 1897: 45,-45 + 1898: 43,-41 + 1899: 46,-45 + 1900: 45,-44 + 1901: 45,-41 + 1902: 48,-42 + 1903: 49,-40 + 1904: 47,-40 + 1905: 45,-39 + 1906: 48,-38 + 1907: 47,-38 + 1908: 45,-38 + 1909: 44,-38 + 1910: 52,-47 + 1911: 55,-43 + 1912: 55,-44 1913: 55,-44 - 1914: 55,-44 - 1915: 35,-55 - 1916: 34,-56 - 1917: 32,-55 - 1918: 30,-55 - 1919: 41,-42 - 1920: 43,-28 - 1921: 39,-23 - 1922: 38,-23 - 1923: 36,-23 - 1924: 36,-22 - 1925: 35,-21 - 1926: 36,-20 - 1927: 34,-21 - 1928: 35,-22 - 1929: 35,-23 - 1930: 34,-20 - 4024: -22,45 - 4031: -21,64 - 4039: 11,81 - 16318: -70,-36 - 16319: -67,-37 - 16320: -64,-36 - 16321: -63,-35 - 16322: -63,-35 - 16330: -69,-37 - 16331: -63,-34 - 16332: -63,-37 + 1914: 35,-55 + 1915: 34,-56 + 1916: 32,-55 + 1917: 30,-55 + 1918: 41,-42 + 1919: 43,-28 + 1920: 39,-23 + 1921: 38,-23 + 1922: 36,-23 + 1923: 36,-22 + 1924: 35,-21 + 1925: 36,-20 + 1926: 34,-21 + 1927: 35,-22 + 1928: 35,-23 + 1929: 34,-20 + 4023: -22,45 + 4030: -21,64 + 4038: 11,81 + 16255: -70,-36 + 16256: -67,-37 + 16257: -64,-36 + 16258: -63,-35 + 16259: -63,-35 + 16267: -69,-37 + 16268: -63,-34 + 16269: -63,-37 + 24008: -51,-31 + 24009: -52,-31 + 24010: -52,-30 + 24011: -51,-30 + 24012: -52,-30 + 24013: -52,-28 + 24014: -52,-27 + 24015: -53,-27 + 24017: -52,-25 + 24018: -51,-28 + 24019: -50,-29 + 24040: -47,-28 + 24041: -47,-29 + 24042: -46,-30 + 24043: -45,-29 + 24044: -46,-28 + 24045: -47,-27 + 24046: -46,-26 + 24047: -45,-26 + 24048: -45,-29 + 24049: -46,-30 + 24050: -45,-31 + 24051: -45,-31 + 24070: -32,-27 + 24071: -32,-29 + 24072: -33,-29 + 24073: -34,-29 + 24074: -35,-29 + 24075: -34,-27 + 24076: -36,-28 + 24077: -36,-29 + 24078: -38,-29 + 24079: -40,-29 + 24080: -41,-28 + 24081: -39,-27 + 24082: -41,-27 + 24083: -43,-24 + 24084: -43,-23 + 24085: -41,-22 + 24086: -42,-23 + 24087: -41,-23 + 24088: -38,-22 + 24089: -38,-23 + 24090: -38,-24 + 24091: -38,-24 + 24092: -37,-24 + 24093: -34,-22 + 24094: -34,-23 + 24095: -34,-24 + 24136: -27,-31 + 24137: -27,-31 + 24138: -30,-32 + 24139: -30,-32 + 24140: -28,-32 + 24141: -27,-31 + 24142: -26,-30 + 24143: -27,-30 + 24144: -30,-30 + 24145: -31,-28 + 24146: -30,-28 + 24147: -28,-28 + 24148: -27,-28 + 24149: -26,-26 + 24150: -28,-26 + 24151: -30,-26 + 24152: -30,-29 + 24402: 26,-60 + 24403: 26,-60 + 24404: 26,-61 + 24405: 28,-61 + 24406: 27,-60 + 24407: 27,-62 + 24408: 28,-62 + 24409: 27,-58 + 24410: 27,-58 + 24411: 26,-57 + 24414: 28,-57 + 24415: 28,-58 + 24416: 27,-58 + 24417: 26,-58 + 24418: 30,-61 + 24419: 32,-61 + 24420: 33,-61 + 24421: 34,-60 + 24422: 36,-61 + 24423: 35,-61 + 24424: 34,-62 + 24425: 35,-63 + 24426: 35,-61 + 24427: 35,-60 + 24428: 36,-61 + 24429: 36,-63 + 24430: 36,-64 + 24431: 35,-64 + 24432: 35,-65 + 24433: 34,-68 + 24434: 36,-70 + 24435: 35,-71 + 24436: 35,-70 + 24437: 34,-68 + 24438: 36,-69 + 24439: 35,-72 + 24440: 35,-72 + 24441: 36,-71 + 24442: 34,-71 + 24443: 34,-68 + 24444: 33,-68 + 24445: 33,-68 + 24446: 33,-69 + 24447: 30,-68 + 24448: 31,-67 + 24449: 27,-69 + 24450: 31,-70 + 24578: 27,-68 + 24579: 25,-69 + 24580: 27,-67 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavy decals: - 13595: -36,-75 - 13596: -37,-73 - 13597: -36,-73 - 13598: -35,-73 - 13599: -34,-73 - 13600: -33,-73 - 13601: -33,-73 - 13602: -33,-73 - 13603: -32,-73 - 13604: -33,-72 - 13605: -33,-72 - 13606: -31,-74 - 13607: -30,-73 - 13608: -30,-74 - 13609: -30,-75 - 13610: -31,-74 - 13611: -29,-75 - 13612: -29,-75 - 13613: -29,-76 - 13614: -29,-77 - 13615: -29,-78 - 13616: -29,-79 - 13617: -29,-80 - 13618: -30,-80 - 13619: -30,-79 - 13620: -30,-78 - 13621: -30,-77 - 13622: -30,-76 - 13623: -30,-75 - 13624: -32,-78 - 13625: -32,-79 - 13626: -33,-78 - 13627: -34,-78 - 13628: -34,-79 - 13629: -33,-80 - 13630: -35,-80 - 13631: -35,-79 - 13632: -35,-78 - 13633: -34,-77 - 13634: -33,-77 - 13635: -32,-78 - 13636: -31,-79 - 13637: -32,-80 - 13638: -37,-80 - 13639: -37,-79 - 13640: -37,-79 - 13641: -36,-78 - 13642: -37,-78 - 13643: -37,-77 - 13644: -36,-77 - 13645: -37,-76 - 13646: -37,-76 - 13647: -36,-76 - 13648: -36,-75 - 13649: -37,-74 - 13650: -36,-73 - 13651: -36,-74 - 13652: -36,-75 - 13653: -35,-74 - 13654: -35,-74 - 13655: -35,-75 - 13656: -35,-76 - 13657: -33,-76 - 13658: -33,-76 - 13659: -33,-75 - 13661: -37,-73 - 13662: -37,-74 - 13663: -36,-75 - 13664: -37,-76 - 13665: -37,-77 - 13666: -36,-78 - 13667: -37,-79 - 13668: -37,-79 - 13669: -37,-79 - 13670: -36,-77 - 13671: -35,-76 - 13672: -32,-76 - 13673: -31,-76 - 13674: -30,-76 - 13675: -30,-77 - 13676: -30,-78 - 13677: -29,-78 - 13678: -29,-77 - 13679: -33,-75 - 13680: -33,-75 - 13681: -32,-75 - 13682: -29,-74 - 13683: -29,-73 - 13684: -29,-73 - 13685: -32,-74 - 13686: -33,-74 - 13687: -31,-73 - 13688: -33,-74 - 13689: -34,-75 - 13690: -34,-74 - 13703: -31,-75 - 13704: -36,-74 - 13739: -39,-74 - 13740: -39,-71 - 13741: -36,-71 - 13742: -35,-71 - 13743: -34,-71 - 13744: -33,-71 - 13745: -32,-71 - 13746: -31,-71 - 13763: -27,-75 - 13764: -27,-74 - 13765: -27,-73 - 13766: -27,-73 - 13767: -27,-68 - 13768: -27,-67 - 13769: -27,-67 - 13770: -27,-69 - 13771: -28,-66 - 13772: -28,-65 - 13773: -28,-62 - 13774: -28,-63 - 13775: -28,-65 - 13788: -34,-60 - 13789: -34,-62 - 13790: -32,-60 - 13791: -32,-61 - 13792: -32,-62 - 13793: -31,-62 - 13794: -31,-63 - 13795: -33,-63 - 13796: -30,-61 - 13799: -34,-63 - 13800: -31,-60 - 13895: -15,-62 - 13896: -10,-62 - 13897: -9,-57 - 13898: -10,-57 - 13899: -7,-56 - 13900: -7,-56 - 13901: -6,-55 - 13902: -5,-55 - 13903: -5,-56 - 13904: -6,-55 - 13905: -6,-56 - 14210: -69,-21 - 14211: -70,-21 - 14212: -69,-21 - 14213: -68,-21 - 14214: -67,-21 - 14215: -63,-21 - 14216: -63,-21 - 14217: -61,-21 - 14218: -60,-21 - 14219: -59,-21 - 14220: -58,-21 - 14221: -58,-21 - 14222: -75,-21 - 14223: -75,-23 - 14224: -75,-24 - 14225: -75,-25 - 14226: -75,-26 - 14227: -75,-27 - 14228: -75,-28 - 14229: -75,-26 - 14230: -75,-25 - 14231: -75,-22 - 14232: -75,-21 - 14233: -75,-21 - 14234: -74,-32 - 14235: -75,-31 - 14236: -73,-32 - 14237: -77,-26 - 14238: -78,-26 - 14239: -78,-27 - 14240: -78,-28 - 14241: -78,-23 - 14242: -77,-23 - 14243: -77,-24 - 14244: -78,-24 - 14245: -77,-19 - 14246: -78,-19 - 14247: -78,-19 - 14248: -78,-21 + 13532: -36,-75 + 13533: -37,-73 + 13534: -36,-73 + 13535: -35,-73 + 13536: -34,-73 + 13537: -33,-73 + 13538: -33,-73 + 13539: -33,-73 + 13540: -32,-73 + 13541: -33,-72 + 13542: -33,-72 + 13543: -31,-74 + 13544: -30,-73 + 13545: -30,-74 + 13546: -30,-75 + 13547: -31,-74 + 13548: -29,-75 + 13549: -29,-75 + 13550: -29,-76 + 13551: -29,-77 + 13552: -29,-78 + 13553: -29,-79 + 13554: -29,-80 + 13555: -30,-80 + 13556: -30,-79 + 13557: -30,-78 + 13558: -30,-77 + 13559: -30,-76 + 13560: -30,-75 + 13561: -32,-78 + 13562: -32,-79 + 13563: -33,-78 + 13564: -34,-78 + 13565: -34,-79 + 13566: -33,-80 + 13567: -35,-80 + 13568: -35,-79 + 13569: -35,-78 + 13570: -34,-77 + 13571: -33,-77 + 13572: -32,-78 + 13573: -31,-79 + 13574: -32,-80 + 13575: -37,-80 + 13576: -37,-79 + 13577: -37,-79 + 13578: -36,-78 + 13579: -37,-78 + 13580: -37,-77 + 13581: -36,-77 + 13582: -37,-76 + 13583: -37,-76 + 13584: -36,-76 + 13585: -36,-75 + 13586: -37,-74 + 13587: -36,-73 + 13588: -36,-74 + 13589: -36,-75 + 13590: -35,-74 + 13591: -35,-74 + 13592: -35,-75 + 13593: -35,-76 + 13594: -33,-76 + 13595: -33,-76 + 13596: -33,-75 + 13598: -37,-73 + 13599: -37,-74 + 13600: -36,-75 + 13601: -37,-76 + 13602: -37,-77 + 13603: -36,-78 + 13604: -37,-79 + 13605: -37,-79 + 13606: -37,-79 + 13607: -36,-77 + 13608: -35,-76 + 13609: -32,-76 + 13610: -31,-76 + 13611: -30,-76 + 13612: -30,-77 + 13613: -30,-78 + 13614: -29,-78 + 13615: -29,-77 + 13616: -33,-75 + 13617: -33,-75 + 13618: -32,-75 + 13619: -29,-74 + 13620: -29,-73 + 13621: -29,-73 + 13622: -32,-74 + 13623: -33,-74 + 13624: -31,-73 + 13625: -33,-74 + 13626: -34,-75 + 13627: -34,-74 + 13640: -31,-75 + 13641: -36,-74 + 13676: -39,-74 + 13677: -39,-71 + 13678: -36,-71 + 13679: -35,-71 + 13680: -34,-71 + 13681: -33,-71 + 13682: -32,-71 + 13683: -31,-71 + 13700: -27,-75 + 13701: -27,-74 + 13702: -27,-73 + 13703: -27,-73 + 13704: -27,-68 + 13705: -27,-67 + 13706: -27,-67 + 13707: -27,-69 + 13708: -28,-66 + 13709: -28,-65 + 13710: -28,-62 + 13711: -28,-63 + 13712: -28,-65 + 13725: -34,-60 + 13726: -34,-62 + 13727: -32,-60 + 13728: -32,-61 + 13729: -32,-62 + 13730: -31,-62 + 13731: -31,-63 + 13732: -33,-63 + 13733: -30,-61 + 13736: -34,-63 + 13737: -31,-60 + 13832: -15,-62 + 13833: -10,-62 + 13834: -9,-57 + 13835: -10,-57 + 13836: -7,-56 + 13837: -7,-56 + 13838: -6,-55 + 13839: -5,-55 + 13840: -5,-56 + 13841: -6,-55 + 13842: -6,-56 + 14147: -69,-21 + 14148: -70,-21 + 14149: -69,-21 + 14150: -68,-21 + 14151: -67,-21 + 14152: -63,-21 + 14153: -63,-21 + 14154: -61,-21 + 14155: -60,-21 + 14156: -59,-21 + 14157: -58,-21 + 14158: -58,-21 + 14159: -75,-21 + 14160: -75,-23 + 14161: -75,-24 + 14162: -75,-25 + 14163: -75,-26 + 14164: -75,-27 + 14165: -75,-28 + 14166: -75,-26 + 14167: -75,-25 + 14168: -75,-22 + 14169: -75,-21 + 14170: -75,-21 + 14171: -74,-32 + 14172: -75,-31 + 14173: -73,-32 + 14174: -77,-26 + 14175: -78,-26 + 14176: -78,-27 + 14177: -78,-28 + 14178: -78,-23 + 14179: -77,-23 + 14180: -77,-24 + 14181: -78,-24 + 14182: -77,-19 + 14183: -78,-19 + 14184: -78,-19 + 14185: -78,-21 - node: angle: 3.141592653589793 rad color: '#FFFFFFAA' id: DirtHeavyMonotile decals: - 13814: -32,-60 - 13815: -32,-61 - 13816: -31,-62 - 13817: -31,-62 - 13818: -32,-62 - 13819: -33,-63 - 13820: -34,-62 - 13821: -31,-63 - 13822: -30,-61 + 13751: -32,-60 + 13752: -32,-61 + 13753: -31,-62 + 13754: -31,-62 + 13755: -32,-62 + 13756: -33,-63 + 13757: -34,-62 + 13758: -31,-63 + 13759: -30,-61 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 1042: -12,-50 - 3868: 23,72 - 3876: 18,69 - 3903: 20,67 - 3904: 26,66 - 3905: 27,67 - 3915: 21,68 - 3916: 18,66 - 3917: 17,65 - 3920: 22,66 - 3956: 18,63 - 3957: 21,60 - 3958: 21,58 - 3963: 20,60 - 3964: 18,60 - 3988: -35,61 - 3997: -42,59 - 4003: -36,62 - 4016: -36,55 - 4017: -32,60 - 11010: 34,-64 - 11011: 34,-64 - 11012: 35,-64 - 11013: 35,-62 - 11014: 35,-62 - 11015: 36,-61 - 11016: 36,-60 - 11017: 35,-60 - 11018: 34,-62 - 11019: 29,-69 - 11020: 31,-68 - 11021: 31,-67 - 11022: 27,-69 - 11023: 27,-70 - 11024: 29,-70 - 11025: 31,-70 - 11026: 32,-69 - 11027: 32,-68 - 11028: 31,-67 - 11029: 30,-66 - 11030: 29,-67 - 11031: 28,-68 - 11032: 26,-69 - 11033: 34,-60 - 11034: 41,-70 - 11035: 41,-71 - 11036: 39,-71 - 11037: 39,-71 - 11038: 42,-73 - 11039: 41,-75 - 11040: 38,-74 - 11041: 42,-74 - 11042: 42,-74 - 11043: 36,-68 - 11044: 35,-68 - 11045: 34,-68 - 11046: 39,-67 - 11047: 39,-67 - 11048: 40,-66 - 11049: 40,-66 - 11050: 41,-66 - 11051: 41,-68 - 11052: 45,-63 - 11053: 44,-63 - 11054: 43,-63 - 11055: 44,-62 - 11056: 45,-61 - 11057: 45,-61 - 11058: 39,-62 - 11059: 40,-62 - 11060: 40,-62 - 11061: 41,-62 - 11062: 41,-62 - 11146: 26,-57 - 11147: 26,-57 - 11148: 26,-58 - 11155: 38,-68 - 11156: 41,-68 - 11157: 40,-68 - 11254: -65,-37 - 11255: -59,-37 - 11256: -59,-37 - 11257: -59,-38 - 11258: -58,-38 - 11259: -58,-38 - 11260: -59,-42 - 11261: -60,-41 - 11262: -60,-41 - 11263: -59,-41 - 11264: -59,-40 - 11265: -59,-41 - 11266: -58,-41 - 11267: -58,-41 - 11268: -65,-41 - 11269: -65,-41 - 11270: -65,-41 - 12853: -45,-23 - 12854: -47,-22 - 12855: -46,-23 - 12859: -53,-28 - 12860: -53,-26 - 12861: -52,-25 - 12862: -51,-25 - 12863: -51,-26 - 12864: -51,-27 - 12865: -51,-27 - 12866: -51,-28 - 12867: -50,-28 - 12868: -50,-29 - 12869: -51,-29 - 12870: -51,-31 - 12871: -53,-31 - 12872: -53,-30 - 12873: -52,-28 - 12874: -52,-30 - 12875: -52,-27 - 12967: -53,-28 - 12968: -52,-29 - 12969: -43,-29 - 12970: -42,-30 - 12971: -42,-33 - 12972: -43,-32 - 12973: -43,-34 - 12974: -42,-34 - 12975: -41,-33 - 12976: -42,-32 - 12977: -43,-23 - 12978: -43,-24 - 12979: -43,-22 - 12980: -41,-23 - 12981: -42,-24 - 12982: -39,-24 - 12983: -39,-23 - 12984: -37,-22 - 12985: -37,-23 - 12986: -38,-24 - 12987: -35,-23 - 12988: -35,-22 - 12989: -34,-23 - 12990: -34,-24 - 12991: -34,-24 - 12992: -33,-24 - 13045: -35,-33 - 13046: -34,-33 - 13047: -34,-34 - 13048: -33,-32 - 13049: -34,-29 - 13050: -31,-27 - 13051: -31,-29 - 13052: -30,-28 - 13053: -30,-27 - 13054: -28,-27 - 13055: -28,-26 - 13056: -26,-27 - 13057: -29,-28 - 13058: -29,-29 - 13059: -28,-31 - 13060: -27,-31 - 13061: -30,-31 - 13062: -30,-30 - 13063: -28,-29 - 13064: -26,-31 - 13065: -26,-32 - 13066: -26,-30 - 13067: -29,-22 - 13109: 28,-57 - 13110: 48,-31 - 13143: 46,-32 - 13144: 47,-33 - 13145: 47,-32 - 13146: 48,-31 - 13147: 48,-32 - 13148: 47,-34 - 13149: 49,-34 - 13150: 49,-34 - 13151: 49,-35 - 13152: 47,-35 - 13153: 47,-35 - 13154: 46,-34 - 13155: 44,-34 - 13156: 44,-34 - 13157: 43,-33 - 13158: 45,-33 - 13159: 45,-32 - 13160: 47,-32 - 13161: 46,-34 - 13162: 46,-35 - 13163: 47,-33 - 13164: 48,-33 - 13165: 49,-33 - 13166: 49,-33 - 13167: 48,-32 - 13170: 39,-52 - 13171: 40,-51 - 13172: 40,-52 - 13173: 40,-53 - 13174: 40,-53 - 13175: 39,-54 - 13176: 39,-55 - 13177: 40,-55 - 13178: 41,-52 - 13179: 41,-54 - 13180: 41,-55 - 13181: 42,-53 - 13182: 42,-53 - 13183: 41,-56 - 13184: 42,-56 - 13185: 42,-50 - 13186: 44,-50 - 13187: 44,-50 - 13188: 45,-50 - 13189: 45,-52 - 13190: 44,-52 - 13191: 44,-51 - 13192: 45,-52 - 13193: 44,-54 - 13194: 44,-55 - 13195: 46,-55 - 13196: 45,-54 - 13197: 45,-55 - 13198: 46,-55 - 13199: 46,-52 - 13200: 47,-52 - 13276: 52,-37 - 13290: 54,-35 - 13296: 54,-39 - 13317: 54,-36 - 13318: 55,-35 - 13319: 53,-36 - 13320: 53,-38 - 13321: 54,-37 - 13413: -37,-63 - 13414: -37,-62 - 13415: -38,-62 - 13416: -38,-61 - 13417: -38,-60 - 13418: -36,-60 - 13419: -38,-60 - 13420: -37,-59 - 13421: -37,-61 - 13422: -36,-62 - 13423: -36,-61 - 13424: -37,-61 - 13425: -38,-63 - 13426: -36,-63 - 13427: -36,-63 - 13428: -36,-62 - 13462: -41,-63 - 13463: -41,-62 - 13464: -40,-63 - 13511: -41,-64 - 13512: -37,-64 - 13513: -37,-59 - 16030: 76,1 - 16031: 76,0 - 16032: 77,0 - 16033: 78,0 - 16034: 79,4 - 16035: 79,5 - 16036: 78,4 - 16048: 99,-2 - 16049: 99,-3 - 16050: 99,-4 - 16051: 100,-4 - 16052: 100,-2 - 16062: 85,2 - 16063: 86,2 - 16064: 79,-3 - 16065: 79,-4 - 16092: 92,9 - 16093: 76,6 - 16094: 76,4 - 16098: 93,6 - 16099: 96,6 - 16100: 95,6 - 16101: 96,7 - 16102: 97,7 - 16197: -72,-40 - 16198: -72,-41 - 16199: -71,-41 - 16200: -71,-42 - 16201: -72,-42 - 16202: -71,-40 - 16203: -70,-40 - 16204: -70,-41 - 16205: -69,-41 - 16206: -69,-41 - 16207: -69,-43 - 16249: -65,-47 - 16250: -65,-47 - 16251: -64,-47 - 16252: -64,-47 - 16253: -63,-46 - 16254: -62,-47 - 16255: -62,-48 - 16256: -63,-48 - 16257: -66,-48 - 16272: -65,-46 - 16273: -64,-46 - 16274: -64,-45 - 16275: -63,-45 - 16276: -63,-46 - 16277: -63,-47 - 16278: -65,-47 - 16279: -66,-48 - 16280: -66,-48 - 16281: -63,-48 - 16282: -63,-47 - 16283: -62,-47 - 16284: -62,-41 - 16285: -62,-40 - 16286: -64,-40 - 16287: -70,-43 - 16288: -69,-43 - 16289: -68,-45 - 16290: -69,-46 - 16291: -70,-46 - 16292: -72,-42 - 16372: -59,-50 - 16373: -60,-49 - 16374: -60,-48 - 16389: 10,68 - 16390: 10,68 - 16391: 11,69 - 16392: 11,69 - 16393: 12,69 - 16394: 12,68 - 16395: 12,67 - 16396: 12,66 - 16397: 10,66 - 16398: 11,66 - 16399: 11,67 - 16400: 11,67 - 16401: 12,67 - 16402: 11,69 - 16403: 12,70 - 16404: 13,67 - 16405: 13,67 - 16406: 11,68 - 16407: 12,69 - 16408: 11,70 - 16429: -40,-6 - 16430: -40,-7 - 16431: -39,-7 - 16432: -39,-6 - 16433: -38,2 - 16434: -37,2 - 16435: -37,1 - 16436: -37,0 - 16437: -39,0 - 16438: -38,2 - 16512: -32,-20 - 16513: -30,-20 - 16514: -30,-20 - 16515: -30,-19 - 16516: -32,-18 - 16517: -34,-18 - 16518: -35,-18 - 16519: -31,-18 - 16520: -29,-18 - 16521: -29,-18 - 16522: -28,-20 - 16523: -28,-19 - 16524: -29,-20 - 16525: -24,-21 - 16526: -24,-22 - 16527: -22,-22 - 16528: -22,-21 - 16529: -35,-20 - 16530: -36,-20 - 16531: -39,-20 - 16532: -41,-20 - 16533: -43,-20 - 16534: -44,-20 - 16535: -48,-20 - 16536: -49,-22 - 16537: -49,-23 - 16538: -49,-23 - 16539: -50,-22 - 16540: -49,-22 - 16541: -49,-22 - 16542: -50,-23 - 16543: -53,-23 - 16544: -54,-23 - 16545: -53,-21 - 16546: -53,-20 - 16547: -53,-20 - 16548: -52,-20 - 16549: -53,-20 - 16550: -55,-20 - 16551: -56,-20 - 16552: -56,-21 - 16553: -55,-22 - 16554: -56,-23 - 16555: -56,-26 - 16556: -56,-25 - 16557: -56,-27 - 16558: -55,-29 - 16559: -55,-30 - 16560: -60,-32 - 17230: -2,32 - 17231: -1,32 - 17232: -1,32 - 17233: -2,32 - 17243: -2,27 - 17244: 0,27 - 17245: 0,40 - 17246: 1,40 - 17247: 1,40 - 17248: 2,40 - 17249: 0,36 - 17250: 0,35 - 17251: 0,34 - 17270: 0,48 - 17271: 0,47 - 17272: 0,41 - 17273: 1,42 - 17274: 6,50 - 17275: 6,52 - 17276: 7,52 - 18380: -50,-36 - 18381: -50,-37 - 18382: -51,-38 - 18383: -53,-37 - 18384: -53,-36 - 18385: -48,-38 - 18386: -52,-40 - 18387: -51,-41 - 18405: -58,-46 - 18686: 59,-40 - 18687: 60,-40 - 18688: 60,-41 - 18914: 44,-42 - 18915: 44,-44 - 18916: 46,-44 - 18917: 44,-42 - 18918: 46,-40 - 18919: 47,-39 - 18920: 48,-39 - 18921: 48,-38 - 18922: 49,-38 - 18923: 49,-41 - 18924: 49,-42 - 18925: 49,-42 - 18926: 49,-41 - 18927: 49,-44 - 18928: 49,-45 - 18929: 48,-45 - 18930: 46,-45 - 18931: 44,-45 - 18932: 43,-45 - 18933: 43,-44 - 18934: 43,-42 - 18935: 52,-47 - 18936: 46,-48 - 18937: 45,-48 - 18938: 44,-48 - 18946: 56,-43 - 18947: 56,-43 - 18948: 55,-44 - 18949: 55,-43 - 18950: 56,-41 - 19809: -31,-23 - 19810: -31,-24 - 19811: -30,-22 - 19812: -27,-23 - 19823: -28,-24 - 19824: -27,-24 - 19830: -29,-24 - 19831: -29,-24 - 19832: -30,-23 - 19833: -29,-23 - 19834: -28,-23 - 19835: -29,-23 - 21418: -67,-29 - 21419: -67,-29 - 21420: -67,-28 - 21421: -67,-28 - 21422: -68,-26 - 21423: -67,-26 - 21424: -68,-25 - 21425: -67,-24 - 21426: -69,-23 - 21427: -69,-23 - 21428: -70,-24 - 21429: -72,-24 - 21430: -72,-25 - 21431: -70,-23 - 21432: -71,-23 - 21433: -72,-25 - 21434: -72,-27 - 21435: -72,-26 - 21444: -61,-29 - 21445: -63,-29 - 21446: -63,-30 - 21447: -61,-29 - 21490: -60,-27 - 21491: -61,-27 - 21492: -60,-27 - 21493: -59,-26 - 21494: -59,-25 - 21495: -60,-25 - 21496: -61,-25 - 21497: -60,-23 - 21498: -60,-23 - 21499: -63,-23 - 21500: -64,-23 - 21501: -60,-23 - 21502: -62,-23 - 21503: -61,-23 - 21504: -65,-24 - 21505: -65,-25 - 21506: -65,-25 - 21507: -60,-25 - 21508: -60,-25 - 21509: -61,-27 - 21510: -62,-27 - 21511: -64,-27 - 21512: -62,-26 - 21513: -63,-26 - 21514: -63,-24 - 21515: -62,-24 - 21516: -61,-24 - 21517: -62,-25 + 1041: -12,-50 + 3867: 23,72 + 3875: 18,69 + 3902: 20,67 + 3903: 26,66 + 3904: 27,67 + 3914: 21,68 + 3915: 18,66 + 3916: 17,65 + 3919: 22,66 + 3955: 18,63 + 3956: 21,60 + 3957: 21,58 + 3962: 20,60 + 3963: 18,60 + 3987: -35,61 + 3996: -42,59 + 4002: -36,62 + 4015: -36,55 + 4016: -32,60 + 11192: -65,-37 + 11193: -59,-37 + 11194: -59,-37 + 11195: -59,-38 + 11196: -58,-38 + 11197: -58,-38 + 11198: -59,-42 + 11199: -60,-41 + 11200: -60,-41 + 11201: -59,-41 + 11202: -59,-40 + 11203: -59,-41 + 11204: -58,-41 + 11205: -58,-41 + 11206: -65,-41 + 11207: -65,-41 + 11208: -65,-41 + 12924: -35,-23 + 12925: -35,-22 + 13047: 48,-31 + 13080: 46,-32 + 13081: 47,-33 + 13082: 47,-32 + 13083: 48,-31 + 13084: 48,-32 + 13085: 47,-34 + 13086: 49,-34 + 13087: 49,-34 + 13088: 49,-35 + 13089: 47,-35 + 13090: 47,-35 + 13091: 46,-34 + 13092: 44,-34 + 13093: 44,-34 + 13094: 43,-33 + 13095: 45,-33 + 13096: 45,-32 + 13097: 47,-32 + 13098: 46,-34 + 13099: 46,-35 + 13100: 47,-33 + 13101: 48,-33 + 13102: 49,-33 + 13103: 49,-33 + 13104: 48,-32 + 13107: 39,-52 + 13108: 40,-51 + 13109: 40,-52 + 13110: 40,-53 + 13111: 40,-53 + 13112: 39,-54 + 13113: 39,-55 + 13114: 40,-55 + 13115: 41,-52 + 13116: 41,-54 + 13117: 41,-55 + 13118: 42,-53 + 13119: 42,-53 + 13120: 41,-56 + 13121: 42,-56 + 13122: 42,-50 + 13123: 44,-50 + 13124: 44,-50 + 13125: 45,-50 + 13126: 45,-52 + 13127: 44,-52 + 13128: 44,-51 + 13129: 45,-52 + 13130: 44,-54 + 13131: 44,-55 + 13132: 46,-55 + 13133: 45,-54 + 13134: 45,-55 + 13135: 46,-55 + 13136: 46,-52 + 13137: 47,-52 + 13213: 52,-37 + 13227: 54,-35 + 13233: 54,-39 + 13254: 54,-36 + 13255: 55,-35 + 13256: 53,-36 + 13257: 53,-38 + 13258: 54,-37 + 13350: -37,-63 + 13351: -37,-62 + 13352: -38,-62 + 13353: -38,-61 + 13354: -38,-60 + 13355: -36,-60 + 13356: -38,-60 + 13357: -37,-59 + 13358: -37,-61 + 13359: -36,-62 + 13360: -36,-61 + 13361: -37,-61 + 13362: -38,-63 + 13363: -36,-63 + 13364: -36,-63 + 13365: -36,-62 + 13399: -41,-63 + 13400: -41,-62 + 13401: -40,-63 + 13448: -41,-64 + 13449: -37,-64 + 13450: -37,-59 + 15967: 76,1 + 15968: 76,0 + 15969: 77,0 + 15970: 78,0 + 15971: 79,4 + 15972: 79,5 + 15973: 78,4 + 15985: 99,-2 + 15986: 99,-3 + 15987: 99,-4 + 15988: 100,-4 + 15989: 100,-2 + 15999: 85,2 + 16000: 86,2 + 16001: 79,-3 + 16002: 79,-4 + 16029: 92,9 + 16030: 76,6 + 16031: 76,4 + 16035: 93,6 + 16036: 96,6 + 16037: 95,6 + 16038: 96,7 + 16039: 97,7 + 16134: -72,-40 + 16135: -72,-41 + 16136: -71,-41 + 16137: -71,-42 + 16138: -72,-42 + 16139: -71,-40 + 16140: -70,-40 + 16141: -70,-41 + 16142: -69,-41 + 16143: -69,-41 + 16144: -69,-43 + 16186: -65,-47 + 16187: -65,-47 + 16188: -64,-47 + 16189: -64,-47 + 16190: -63,-46 + 16191: -62,-47 + 16192: -62,-48 + 16193: -63,-48 + 16194: -66,-48 + 16209: -65,-46 + 16210: -64,-46 + 16211: -64,-45 + 16212: -63,-45 + 16213: -63,-46 + 16214: -63,-47 + 16215: -65,-47 + 16216: -66,-48 + 16217: -66,-48 + 16218: -63,-48 + 16219: -63,-47 + 16220: -62,-47 + 16221: -62,-41 + 16222: -62,-40 + 16223: -64,-40 + 16224: -70,-43 + 16225: -69,-43 + 16226: -68,-45 + 16227: -69,-46 + 16228: -70,-46 + 16229: -72,-42 + 16309: -59,-50 + 16310: -60,-49 + 16311: -60,-48 + 16326: 10,68 + 16327: 10,68 + 16328: 11,69 + 16329: 11,69 + 16330: 12,69 + 16331: 12,68 + 16332: 12,67 + 16333: 12,66 + 16334: 10,66 + 16335: 11,66 + 16336: 11,67 + 16337: 11,67 + 16338: 12,67 + 16339: 11,69 + 16340: 12,70 + 16341: 13,67 + 16342: 13,67 + 16343: 11,68 + 16344: 12,69 + 16345: 11,70 + 16366: -40,-6 + 16367: -40,-7 + 16368: -39,-7 + 16369: -39,-6 + 16370: -38,2 + 16371: -37,2 + 16372: -37,1 + 16373: -37,0 + 16374: -39,0 + 16375: -38,2 + 16449: -32,-20 + 16450: -30,-20 + 16451: -30,-20 + 16452: -30,-19 + 16453: -32,-18 + 16454: -34,-18 + 16455: -35,-18 + 16456: -31,-18 + 16457: -29,-18 + 16458: -29,-18 + 16459: -28,-20 + 16460: -28,-19 + 16461: -29,-20 + 16462: -24,-21 + 16463: -24,-22 + 16464: -22,-22 + 16465: -22,-21 + 16466: -35,-20 + 16467: -36,-20 + 16468: -39,-20 + 16469: -41,-20 + 16470: -43,-20 + 16471: -44,-20 + 16472: -48,-20 + 16473: -49,-22 + 16474: -49,-23 + 16475: -49,-23 + 16476: -50,-22 + 16477: -49,-22 + 16478: -49,-22 + 16479: -50,-23 + 16480: -53,-23 + 16481: -54,-23 + 16482: -53,-21 + 16483: -53,-20 + 16484: -53,-20 + 16485: -52,-20 + 16486: -53,-20 + 16487: -55,-20 + 16488: -56,-20 + 16489: -56,-21 + 16490: -55,-22 + 16491: -56,-23 + 16492: -56,-26 + 16493: -56,-25 + 16494: -56,-27 + 16495: -55,-29 + 16496: -55,-30 + 16497: -60,-32 + 17167: -2,32 + 17168: -1,32 + 17169: -1,32 + 17170: -2,32 + 17180: -2,27 + 17181: 0,27 + 17182: 0,40 + 17183: 1,40 + 17184: 1,40 + 17185: 2,40 + 17186: 0,36 + 17187: 0,35 + 17188: 0,34 + 17207: 0,48 + 17208: 0,47 + 17209: 0,41 + 17210: 1,42 + 17211: 6,50 + 17212: 6,52 + 17213: 7,52 + 18317: -50,-36 + 18318: -50,-37 + 18319: -51,-38 + 18320: -53,-37 + 18321: -53,-36 + 18322: -48,-38 + 18323: -52,-40 + 18324: -51,-41 + 18342: -58,-46 + 18623: 59,-40 + 18624: 60,-40 + 18625: 60,-41 + 18851: 44,-42 + 18852: 44,-44 + 18853: 46,-44 + 18854: 44,-42 + 18855: 46,-40 + 18856: 47,-39 + 18857: 48,-39 + 18858: 48,-38 + 18859: 49,-38 + 18860: 49,-41 + 18861: 49,-42 + 18862: 49,-42 + 18863: 49,-41 + 18864: 49,-44 + 18865: 49,-45 + 18866: 48,-45 + 18867: 46,-45 + 18868: 44,-45 + 18869: 43,-45 + 18870: 43,-44 + 18871: 43,-42 + 18872: 52,-47 + 18873: 46,-48 + 18874: 45,-48 + 18875: 44,-48 + 18883: 56,-43 + 18884: 56,-43 + 18885: 55,-44 + 18886: 55,-43 + 18887: 56,-41 + 19768: -30,-23 + 19769: -29,-23 + 19770: -28,-23 + 19771: -29,-23 + 21350: -67,-29 + 21351: -67,-29 + 21352: -67,-28 + 21353: -67,-28 + 21354: -68,-26 + 21355: -67,-26 + 21356: -68,-25 + 21357: -67,-24 + 21358: -69,-23 + 21359: -69,-23 + 21360: -70,-24 + 21361: -72,-24 + 21362: -72,-25 + 21363: -70,-23 + 21364: -71,-23 + 21365: -72,-25 + 21366: -72,-27 + 21367: -72,-26 + 21376: -61,-29 + 21377: -63,-29 + 21378: -63,-30 + 21379: -61,-29 + 21422: -60,-27 + 21423: -61,-27 + 21424: -60,-27 + 21425: -59,-26 + 21426: -59,-25 + 21427: -60,-25 + 21428: -61,-25 + 21429: -60,-23 + 21430: -60,-23 + 21431: -63,-23 + 21432: -64,-23 + 21433: -60,-23 + 21434: -62,-23 + 21435: -61,-23 + 21436: -65,-24 + 21437: -65,-25 + 21438: -65,-25 + 21439: -60,-25 + 21440: -60,-25 + 21441: -61,-27 + 21442: -62,-27 + 21443: -64,-27 + 21444: -62,-26 + 21445: -63,-26 + 21446: -63,-24 + 21447: -62,-24 + 21448: -61,-24 + 21449: -62,-25 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 847: 73,14 - 849: 38,21 - 850: 14,29 - 958: 33,36 - 1253: 57,5 - 1254: 62,6 - 1255: 70,6 - 1269: 31,58 + 846: 73,14 + 848: 38,21 + 849: 14,29 + 957: 33,36 + 1252: 57,5 + 1253: 62,6 + 1254: 70,6 + 1268: 31,58 + 1269: 31,59 1270: 31,59 - 1271: 31,59 - 1272: 31,60 - 1273: 29,60 - 1274: 28,60 - 1275: 29,60 - 1276: 27,56 - 1277: 26,56 - 1278: 25,59 - 1279: 25,60 - 1280: 25,61 - 1281: 26,61 - 1282: 28,59 - 1283: 27,59 - 1284: 30,59 - 1285: 30,56 - 1286: 31,56 - 1287: 31,58 - 1288: 31,59 + 1271: 31,60 + 1272: 29,60 + 1273: 28,60 + 1274: 29,60 + 1275: 27,56 + 1276: 26,56 + 1277: 25,59 + 1278: 25,60 + 1279: 25,61 + 1280: 26,61 + 1281: 28,59 + 1282: 27,59 + 1283: 30,59 + 1284: 30,56 + 1285: 31,56 + 1286: 31,58 + 1287: 31,59 + 1288: 31,60 1289: 31,60 - 1290: 31,60 - 1291: 20,56 - 1292: 21,56 - 1298: 9,59 - 1299: 9,60 - 1300: 9,59 - 1301: 7,57 - 1302: 6,56 + 1290: 20,56 + 1291: 21,56 + 1297: 9,59 + 1298: 9,60 + 1299: 9,59 + 1300: 7,57 + 1301: 6,56 + 1304: 6,56 1305: 6,56 - 1306: 6,56 - 1307: 15,65 + 1306: 15,65 + 1312: 13,72 1313: 13,72 - 1314: 13,72 - 1315: 12,72 - 1329: 19,63 - 1330: 20,62 - 1331: 20,61 - 1332: 21,61 - 1333: 20,60 - 1334: 20,59 - 1335: 20,58 - 1336: 19,59 - 1337: 19,58 - 1338: 18,58 - 1339: 20,58 - 1340: 21,60 - 1341: 13,58 - 1342: 12,59 - 1343: 12,58 - 1344: 18,59 - 1345: 17,60 + 1314: 12,72 + 1328: 19,63 + 1329: 20,62 + 1330: 20,61 + 1331: 21,61 + 1332: 20,60 + 1333: 20,59 + 1334: 20,58 + 1335: 19,59 + 1336: 19,58 + 1337: 18,58 + 1338: 20,58 + 1339: 21,60 + 1340: 13,58 + 1341: 12,59 + 1342: 12,58 + 1343: 18,59 + 1344: 17,60 + 1345: 17,58 1346: 17,58 - 1347: 17,58 - 1348: 19,58 - 1349: 21,59 - 1350: 18,63 - 1351: 17,63 - 1352: 16,63 - 1353: 14,61 - 1354: 13,61 - 1355: 12,61 - 1356: 17,60 - 1357: 17,61 - 1358: 24,57 - 1359: 23,57 - 1360: 23,56 - 1361: 25,56 - 1362: 25,57 - 1363: 25,58 - 1380: 20,70 - 1381: 19,69 - 1382: 18,70 - 1383: 20,71 - 1384: 18,72 - 1385: 21,69 - 1386: 20,70 - 1387: 15,62 - 1388: 14,62 - 1389: 13,61 - 1390: 13,62 - 1391: 15,59 - 1392: 15,60 - 1403: -41,60 - 1404: -40,61 - 1405: -41,59 - 1406: -40,62 - 1407: -42,63 - 1408: -38,60 - 1409: -38,62 + 1347: 19,58 + 1348: 21,59 + 1349: 18,63 + 1350: 17,63 + 1351: 16,63 + 1352: 14,61 + 1353: 13,61 + 1354: 12,61 + 1355: 17,60 + 1356: 17,61 + 1357: 24,57 + 1358: 23,57 + 1359: 23,56 + 1360: 25,56 + 1361: 25,57 + 1362: 25,58 + 1379: 20,70 + 1380: 19,69 + 1381: 18,70 + 1382: 20,71 + 1383: 18,72 + 1384: 21,69 + 1385: 20,70 + 1386: 15,62 + 1387: 14,62 + 1388: 13,61 + 1389: 13,62 + 1390: 15,59 + 1391: 15,60 + 1402: -41,60 + 1403: -40,61 + 1404: -41,59 + 1405: -40,62 + 1406: -42,63 + 1407: -38,60 + 1408: -38,62 + 1490: -31,9 1491: -31,9 - 1492: -31,9 - 1493: -31,11 - 1494: -31,16 - 1495: -28,17 - 1496: -31,18 - 1497: -31,22 - 1498: -31,23 - 1499: -32,23 - 1500: -31,23 + 1492: -31,11 + 1493: -31,16 + 1494: -28,17 + 1495: -31,18 + 1496: -31,22 + 1497: -31,23 + 1498: -32,23 + 1499: -31,23 + 1500: -27,25 1501: -27,25 - 1502: -27,25 - 1503: -23,26 - 1504: -31,21 - 1505: -31,20 + 1502: -23,26 + 1503: -31,21 + 1504: -31,20 + 1505: -31,19 1506: -31,19 - 1507: -31,19 + 1507: -25,27 1508: -25,27 - 1509: -25,27 - 1510: -24,25 - 1511: -36,24 - 1512: -36,27 - 1513: -36,29 - 1514: -36,31 - 1515: -36,32 - 1516: -36,33 + 1509: -24,25 + 1510: -36,24 + 1511: -36,27 + 1512: -36,29 + 1513: -36,31 + 1514: -36,32 + 1515: -36,33 + 1516: -39,37 1517: -39,37 - 1518: -39,37 - 1519: -45,37 + 1518: -45,37 + 1519: -39,42 1520: -39,42 - 1521: -39,42 - 1522: -37,42 - 1523: -36,41 - 1524: -42,45 + 1521: -37,42 + 1522: -36,41 + 1523: -42,45 + 1524: -41,50 1525: -41,50 - 1526: -41,50 - 1527: -41,49 - 1528: -41,48 - 1529: -42,49 - 1530: -39,57 - 1531: -36,57 + 1526: -41,49 + 1527: -41,48 + 1528: -42,49 + 1529: -39,57 + 1530: -36,57 + 1549: -39,54 1550: -39,54 - 1551: -39,54 - 1552: -40,54 - 1553: -40,53 - 1554: -38,54 - 1555: -37,55 - 1556: -37,53 - 1557: -38,52 - 1585: -41,29 + 1551: -40,54 + 1552: -40,53 + 1553: -38,54 + 1554: -37,55 + 1555: -37,53 + 1556: -38,52 + 1584: -41,29 + 1585: -40,29 1586: -40,29 - 1587: -40,29 - 1588: -40,27 + 1587: -40,27 + 1588: -39,29 1589: -39,29 1590: -39,29 - 1591: -39,29 - 1592: -41,27 - 1626: -60,-43 - 1627: -60,-42 - 1628: -59,-42 - 1629: -59,-41 + 1591: -41,27 + 1625: -60,-43 + 1626: -60,-42 + 1627: -59,-42 + 1628: -59,-41 + 1629: -60,-41 1630: -60,-41 - 1631: -60,-41 - 1632: -59,-40 - 1668: -36,1 + 1631: -59,-40 + 1667: -36,1 + 1668: -38,1 1669: -38,1 - 1670: -38,1 - 1671: -37,1 + 1670: -37,1 + 1671: -39,1 1672: -39,1 - 1673: -39,1 - 1674: -39,0 - 1675: -39,-1 + 1673: -39,0 + 1674: -39,-1 + 1675: -37,0 1676: -37,0 - 1677: -37,0 + 1780: -57,-26 1781: -57,-26 - 1782: -57,-26 + 1821: -70,-24 1822: -70,-24 - 1823: -70,-24 - 1824: -71,-25 - 1825: -70,-25 - 1826: -70,-26 - 1827: -71,-25 - 1828: -72,-24 - 1829: -72,-23 - 1830: -70,-27 - 1831: -71,-26 - 1832: -71,-27 - 1833: -72,-28 - 1834: -70,-29 - 1835: -69,-29 - 1836: -69,-28 - 1837: -69,-26 - 1838: -69,-24 - 4025: -22,37 - 4028: -17,45 - 4032: -14,68 - 4040: -27,69 - 4041: -2,26 - 16323: -71,-35 - 16324: -70,-36 - 16325: -67,-35 - 16326: -66,-36 - 16336: -71,-36 - 16337: -68,-37 + 1823: -71,-25 + 1824: -70,-25 + 1825: -70,-26 + 1826: -71,-25 + 1827: -72,-24 + 1828: -72,-23 + 1829: -70,-27 + 1830: -71,-26 + 1831: -71,-27 + 1832: -72,-28 + 1833: -70,-29 + 1834: -69,-29 + 1835: -69,-28 + 1836: -69,-26 + 1837: -69,-24 + 4024: -22,37 + 4027: -17,45 + 4031: -14,68 + 4039: -27,69 + 4040: -2,26 + 16260: -71,-35 + 16261: -70,-36 + 16262: -67,-35 + 16263: -66,-36 + 16273: -71,-36 + 16274: -68,-37 + 24020: -51,-29 + 24021: -52,-29 + 24022: -53,-28 + 24023: -53,-28 + 24024: -51,-28 + 24025: -53,-27 + 24026: -52,-25 + 24027: -51,-25 + 24028: -51,-27 + 24029: -50,-27 + 24030: -53,-30 + 24031: -48,-31 + 24032: -47,-30 + 24033: -47,-29 + 24034: -46,-29 + 24035: -45,-28 + 24036: -45,-27 + 24037: -46,-26 + 24038: -47,-25 + 24039: -46,-26 + 24052: -41,-29 + 24053: -42,-29 + 24054: -42,-27 + 24055: -41,-27 + 24056: -40,-28 + 24057: -39,-29 + 24058: -38,-29 + 24059: -38,-28 + 24060: -37,-27 + 24061: -34,-28 + 24062: -34,-29 + 24063: -32,-29 + 24064: -32,-28 + 24065: -32,-27 + 24066: -36,-28 + 24067: -34,-28 + 24068: -34,-27 + 24069: -34,-28 + 24096: -37,-24 + 24097: -39,-23 + 24098: -39,-23 + 24099: -38,-22 + 24100: -37,-23 + 24101: -34,-22 + 24102: -33,-22 + 24103: -35,-24 + 24104: -30,-23 + 24105: -30,-23 + 24106: -28,-23 + 24107: -29,-24 + 24108: -30,-24 + 24109: -31,-23 + 24110: -30,-22 + 24111: -28,-23 + 24112: -28,-24 + 24113: -27,-24 + 24186: -42,-34 + 24187: -42,-32 + 24188: -41,-32 + 24189: -41,-33 + 24190: -43,-34 + 24191: -43,-34 + 24192: -38,-32 + 24193: -39,-32 + 24194: -37,-32 + 24195: -37,-34 + 24196: -38,-34 + 24197: -39,-34 + 24198: -37,-33 + 24199: -35,-33 + 24200: -34,-33 + 24201: -33,-34 + 24202: -33,-33 + 24203: -33,-32 + 24204: -34,-34 + 24205: -35,-34 + 24206: -34,-30 + 24451: 30,-69 + 24452: 28,-70 + 24453: 27,-69 + 24454: 27,-67 + 24455: 28,-66 + 24456: 33,-67 + 24457: 32,-68 + 24458: 31,-70 + 24459: 28,-69 + 24460: 28,-69 + 24461: 32,-68 + 24462: 32,-66 + 24463: 30,-67 + 24464: 36,-67 + 24465: 36,-68 + 24466: 35,-65 + 24467: 36,-64 + 24468: 34,-62 + 24469: 36,-61 + 24470: 35,-60 + 24471: 35,-60 + 24472: 36,-60 + 24473: 36,-63 + 24474: 40,-63 + 24475: 39,-62 + 24476: 40,-63 + 24477: 39,-61 + 24478: 40,-60 + 24479: 41,-61 + 24480: 41,-63 + 24481: 42,-62 + 24482: 44,-62 + 24483: 44,-63 + 24484: 45,-63 + 24485: 41,-62 + 24486: 42,-62 + 24487: 44,-61 + 24488: 44,-61 + 24489: 32,-61 + 24554: 27,-66 + 24555: 28,-66 + 24556: 30,-66 + 24557: 30,-68 + 24558: 29,-66 + 24559: 30,-66 + 24560: 31,-66 + 24561: 31,-67 + 24562: 29,-69 + 24563: 30,-69 + 24564: 29,-70 + 24565: 27,-70 + 24566: 30,-69 + 24567: 31,-68 + 24568: 28,-67 + 24569: 28,-67 + 24570: 26,-67 + 24571: 26,-66 + 24572: 25,-66 + 24573: 26,-66 + 24574: 27,-67 + 24575: 27,-68 + 24576: 27,-69 + 24577: 25,-69 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 13691: -34,-75 - 13692: -34,-74 - 13693: -36,-73 - 13694: -37,-76 - 13695: -37,-78 - 13696: -37,-78 - 13697: -37,-79 - 13698: -29,-78 - 13699: -30,-76 - 13700: -30,-75 - 13701: -31,-75 - 13702: -31,-75 - 13747: -36,-71 - 13748: -36,-71 - 13749: -34,-71 - 13750: -33,-71 - 13751: -31,-71 - 13752: -30,-71 - 13753: -39,-71 - 13754: -39,-74 - 13755: -28,-70 - 13756: -27,-73 - 13757: -27,-73 - 13758: -26,-74 - 13759: -27,-74 - 13760: -26,-75 - 13761: -27,-73 - 13762: -27,-75 - 13776: -27,-65 - 13777: -28,-66 - 13778: -28,-63 - 13779: -27,-62 - 13780: -27,-62 - 13781: -27,-65 - 13782: -27,-67 - 13783: -27,-68 - 13784: -27,-69 - 13797: -30,-61 - 13848: -38,-56 - 13849: -39,-56 - 13850: -38,-55 - 13851: -37,-55 - 13852: -37,-56 - 13853: -40,-58 - 13854: -39,-58 - 13855: -38,-58 - 13856: -36,-58 - 13857: -34,-58 - 13858: -35,-57 - 13859: -34,-56 - 13860: -34,-57 - 13861: -34,-58 - 13862: -32,-58 - 13863: -31,-58 - 13864: -29,-58 - 13865: -28,-59 - 13866: -28,-59 - 13867: -28,-60 - 13868: -29,-61 - 13869: -29,-61 - 13870: -27,-62 - 13871: -27,-62 - 13872: -27,-61 - 13873: -25,-62 - 13874: -24,-62 - 13875: -23,-62 - 13876: -26,-62 - 13877: -26,-62 - 13878: -23,-62 - 13879: -21,-62 - 13880: -20,-62 - 13881: -18,-62 - 13882: -16,-62 - 13883: -16,-62 - 13884: -20,-62 - 13885: -17,-63 - 13886: -16,-63 - 13887: -16,-62 - 13888: -15,-62 - 13889: -19,-62 - 13890: -17,-63 - 13891: -14,-62 - 13892: -12,-62 - 13893: -11,-62 - 13894: -10,-62 - 13906: -27,-61 - 13907: -28,-58 - 13927: -58,-34 - 13928: -58,-36 - 13929: -58,-37 - 13930: -59,-39 - 13931: -58,-39 - 13932: -60,-39 - 13933: -60,-37 - 13934: -60,-36 - 13935: -60,-35 - 13936: -59,-34 - 13937: -60,-42 - 14057: -35,-49 - 14058: -35,-50 - 14059: -33,-50 - 14060: -33,-49 - 14061: -40,-49 - 14062: -43,-47 - 14063: -44,-47 - 14064: -44,-44 - 14065: -44,-45 - 14066: -44,-47 - 14067: -44,-49 - 14068: -44,-49 - 14069: -43,-41 - 14070: -44,-41 - 14071: -46,-41 - 14072: -47,-41 - 14073: -49,-41 - 14074: -50,-40 - 14075: -51,-41 - 14076: -51,-41 - 14077: -51,-40 - 14078: -50,-40 - 14079: -50,-40 - 14080: -51,-40 - 14081: -53,-40 - 14082: -53,-40 - 14083: -55,-40 - 14084: -55,-40 - 14085: -56,-39 - 14086: -56,-39 - 14087: -55,-38 - 14088: -55,-39 - 14089: -56,-37 - 14090: -55,-34 - 14091: -55,-35 - 14092: -56,-34 - 14093: -56,-33 - 14094: -55,-35 - 14095: -55,-35 - 14096: -61,-32 - 14097: -61,-32 - 14098: -62,-31 - 14099: -61,-31 - 14100: -60,-32 - 14194: -70,-21 - 14195: -69,-21 - 14196: -69,-21 - 14197: -68,-21 - 14198: -62,-21 - 14199: -63,-21 - 14200: -59,-21 - 14201: -62,-21 - 14202: -62,-21 - 14203: -59,-21 - 14204: -58,-20 - 14205: -57,-20 - 14206: -58,-21 - 14207: -59,-21 - 14208: -59,-21 - 14209: -61,-21 - 14249: -78,-20 - 14250: -78,-20 - 14251: -78,-19 - 14252: -77,-20 - 14253: -77,-23 - 14254: -78,-23 - 14255: -77,-24 - 14256: -78,-27 - 14257: -77,-27 - 14258: -77,-28 - 14259: -78,-31 - 14260: -77,-30 - 14261: -77,-31 - 14262: -77,-32 - 14263: -78,-30 - 14264: -77,-30 - 14265: -71,-32 - 14266: -71,-32 - 14267: -70,-31 - 14268: -68,-31 - 14269: -69,-32 - 14270: -72,-32 - 14271: -74,-32 - 14272: -72,-32 - 14273: -69,-31 - 14274: -74,-32 - 14275: -62,-31 - 14276: -62,-32 - 14277: -61,-32 - 14278: -59,-31 - 14279: -58,-32 - 14280: -59,-32 - 14281: -61,-32 - 14282: -58,-32 - 14283: -58,-32 - 14284: -62,-31 - 14285: -63,-31 - 14286: -64,-31 - 14287: -61,-31 - 14288: -65,-31 - 14289: -68,-31 - 14290: -69,-32 - 14291: -71,-32 - 14292: -58,-31 - 14293: -60,-31 - 14294: -56,-31 - 14295: -55,-29 - 14296: -56,-29 - 14297: -55,-31 - 14298: -56,-32 - 14299: -55,-32 - 14300: -56,-31 - 14301: -55,-30 - 14302: -55,-30 - 14303: -55,-29 - 14304: -56,-26 - 14305: -56,-25 - 14306: -55,-26 - 14307: -55,-27 - 14308: -56,-26 - 14309: -56,-24 - 14310: -55,-24 - 14311: -56,-23 - 14312: -55,-22 - 14313: -56,-21 - 14314: -56,-20 - 14315: -55,-20 - 14316: -55,-21 - 14317: -55,-21 - 14318: -52,-20 - 14319: -52,-21 - 14320: -55,-20 - 14321: -54,-20 - 14322: -52,-21 - 14323: -51,-22 - 14324: -52,-23 - 14325: -54,-23 - 14326: -36,-19 - 14327: -36,-18 - 14328: -36,-19 - 14329: -37,-16 - 14330: -37,-15 - 14331: -37,-14 - 14332: -37,-13 - 14333: -37,-11 - 14334: -39,-14 - 14335: -40,-14 - 14336: -39,-15 - 14337: -39,-16 - 14338: -40,-17 - 14339: -42,-16 - 14340: -41,-14 - 14341: -40,-16 - 14342: -41,-16 - 14343: -41,-16 - 14344: -41,-13 - 14345: -44,-11 - 14346: -39,-9 - 14347: -43,-8 - 14348: -40,-1 - 14349: -38,-1 - 14350: -38,-2 - 14351: -38,-3 - 14352: -38,1 - 14353: -38,-3 - 14354: -37,-5 - 14355: -37,-7 - 14356: -37,-9 - 14357: -37,-12 - 14358: -37,-15 - 14359: -37,-15 - 14360: -37,-17 - 14361: -35,-19 - 14362: -32,-19 - 14363: -32,-19 - 14364: -29,-20 - 14365: -32,-19 - 14366: -27,-19 - 14367: -23,-21 - 14368: -24,-22 - 14369: -25,-21 + 13628: -34,-75 + 13629: -34,-74 + 13630: -36,-73 + 13631: -37,-76 + 13632: -37,-78 + 13633: -37,-78 + 13634: -37,-79 + 13635: -29,-78 + 13636: -30,-76 + 13637: -30,-75 + 13638: -31,-75 + 13639: -31,-75 + 13684: -36,-71 + 13685: -36,-71 + 13686: -34,-71 + 13687: -33,-71 + 13688: -31,-71 + 13689: -30,-71 + 13690: -39,-71 + 13691: -39,-74 + 13692: -28,-70 + 13693: -27,-73 + 13694: -27,-73 + 13695: -26,-74 + 13696: -27,-74 + 13697: -26,-75 + 13698: -27,-73 + 13699: -27,-75 + 13713: -27,-65 + 13714: -28,-66 + 13715: -28,-63 + 13716: -27,-62 + 13717: -27,-62 + 13718: -27,-65 + 13719: -27,-67 + 13720: -27,-68 + 13721: -27,-69 + 13734: -30,-61 + 13785: -38,-56 + 13786: -39,-56 + 13787: -38,-55 + 13788: -37,-55 + 13789: -37,-56 + 13790: -40,-58 + 13791: -39,-58 + 13792: -38,-58 + 13793: -36,-58 + 13794: -34,-58 + 13795: -35,-57 + 13796: -34,-56 + 13797: -34,-57 + 13798: -34,-58 + 13799: -32,-58 + 13800: -31,-58 + 13801: -29,-58 + 13802: -28,-59 + 13803: -28,-59 + 13804: -28,-60 + 13805: -29,-61 + 13806: -29,-61 + 13807: -27,-62 + 13808: -27,-62 + 13809: -27,-61 + 13810: -25,-62 + 13811: -24,-62 + 13812: -23,-62 + 13813: -26,-62 + 13814: -26,-62 + 13815: -23,-62 + 13816: -21,-62 + 13817: -20,-62 + 13818: -18,-62 + 13819: -16,-62 + 13820: -16,-62 + 13821: -20,-62 + 13822: -17,-63 + 13823: -16,-63 + 13824: -16,-62 + 13825: -15,-62 + 13826: -19,-62 + 13827: -17,-63 + 13828: -14,-62 + 13829: -12,-62 + 13830: -11,-62 + 13831: -10,-62 + 13843: -27,-61 + 13844: -28,-58 + 13864: -58,-34 + 13865: -58,-36 + 13866: -58,-37 + 13867: -59,-39 + 13868: -58,-39 + 13869: -60,-39 + 13870: -60,-37 + 13871: -60,-36 + 13872: -60,-35 + 13873: -59,-34 + 13874: -60,-42 + 13994: -35,-49 + 13995: -35,-50 + 13996: -33,-50 + 13997: -33,-49 + 13998: -40,-49 + 13999: -43,-47 + 14000: -44,-47 + 14001: -44,-44 + 14002: -44,-45 + 14003: -44,-47 + 14004: -44,-49 + 14005: -44,-49 + 14006: -43,-41 + 14007: -44,-41 + 14008: -46,-41 + 14009: -47,-41 + 14010: -49,-41 + 14011: -50,-40 + 14012: -51,-41 + 14013: -51,-41 + 14014: -51,-40 + 14015: -50,-40 + 14016: -50,-40 + 14017: -51,-40 + 14018: -53,-40 + 14019: -53,-40 + 14020: -55,-40 + 14021: -55,-40 + 14022: -56,-39 + 14023: -56,-39 + 14024: -55,-38 + 14025: -55,-39 + 14026: -56,-37 + 14027: -55,-34 + 14028: -55,-35 + 14029: -56,-34 + 14030: -56,-33 + 14031: -55,-35 + 14032: -55,-35 + 14033: -61,-32 + 14034: -61,-32 + 14035: -62,-31 + 14036: -61,-31 + 14037: -60,-32 + 14131: -70,-21 + 14132: -69,-21 + 14133: -69,-21 + 14134: -68,-21 + 14135: -62,-21 + 14136: -63,-21 + 14137: -59,-21 + 14138: -62,-21 + 14139: -62,-21 + 14140: -59,-21 + 14141: -58,-20 + 14142: -57,-20 + 14143: -58,-21 + 14144: -59,-21 + 14145: -59,-21 + 14146: -61,-21 + 14186: -78,-20 + 14187: -78,-20 + 14188: -78,-19 + 14189: -77,-20 + 14190: -77,-23 + 14191: -78,-23 + 14192: -77,-24 + 14193: -78,-27 + 14194: -77,-27 + 14195: -77,-28 + 14196: -78,-31 + 14197: -77,-30 + 14198: -77,-31 + 14199: -77,-32 + 14200: -78,-30 + 14201: -77,-30 + 14202: -71,-32 + 14203: -71,-32 + 14204: -70,-31 + 14205: -68,-31 + 14206: -69,-32 + 14207: -72,-32 + 14208: -74,-32 + 14209: -72,-32 + 14210: -69,-31 + 14211: -74,-32 + 14212: -62,-31 + 14213: -62,-32 + 14214: -61,-32 + 14215: -59,-31 + 14216: -58,-32 + 14217: -59,-32 + 14218: -61,-32 + 14219: -58,-32 + 14220: -58,-32 + 14221: -62,-31 + 14222: -63,-31 + 14223: -64,-31 + 14224: -61,-31 + 14225: -65,-31 + 14226: -68,-31 + 14227: -69,-32 + 14228: -71,-32 + 14229: -58,-31 + 14230: -60,-31 + 14231: -56,-31 + 14232: -55,-29 + 14233: -56,-29 + 14234: -55,-31 + 14235: -56,-32 + 14236: -55,-32 + 14237: -56,-31 + 14238: -55,-30 + 14239: -55,-30 + 14240: -55,-29 + 14241: -56,-26 + 14242: -56,-25 + 14243: -55,-26 + 14244: -55,-27 + 14245: -56,-26 + 14246: -56,-24 + 14247: -55,-24 + 14248: -56,-23 + 14249: -55,-22 + 14250: -56,-21 + 14251: -56,-20 + 14252: -55,-20 + 14253: -55,-21 + 14254: -55,-21 + 14255: -52,-20 + 14256: -52,-21 + 14257: -55,-20 + 14258: -54,-20 + 14259: -52,-21 + 14260: -51,-22 + 14261: -52,-23 + 14262: -54,-23 + 14263: -36,-19 + 14264: -36,-18 + 14265: -36,-19 + 14266: -37,-16 + 14267: -37,-15 + 14268: -37,-14 + 14269: -37,-13 + 14270: -37,-11 + 14271: -39,-14 + 14272: -40,-14 + 14273: -39,-15 + 14274: -39,-16 + 14275: -40,-17 + 14276: -42,-16 + 14277: -41,-14 + 14278: -40,-16 + 14279: -41,-16 + 14280: -41,-16 + 14281: -41,-13 + 14282: -44,-11 + 14283: -39,-9 + 14284: -43,-8 + 14285: -40,-1 + 14286: -38,-1 + 14287: -38,-2 + 14288: -38,-3 + 14289: -38,1 + 14290: -38,-3 + 14291: -37,-5 + 14292: -37,-7 + 14293: -37,-9 + 14294: -37,-12 + 14295: -37,-15 + 14296: -37,-15 + 14297: -37,-17 + 14298: -35,-19 + 14299: -32,-19 + 14300: -32,-19 + 14301: -29,-20 + 14302: -32,-19 + 14303: -27,-19 + 14304: -23,-21 + 14305: -24,-22 + 14306: -25,-21 - node: color: '#FFFFFFFF' id: DirtLight decals: - 1031: -33,-52 - 1032: -34,-52 - 1033: -34,-54 - 1034: -35,-54 - 1035: -35,-53 - 1036: -33,-53 - 1037: -33,-54 - 1038: -28,-52 - 1039: -29,-53 - 1040: -24,-49 - 1046: -12,-46 - 3872: 22,70 - 3906: 25,67 - 3907: 27,66 - 3908: 20,66 - 3909: 21,67 - 3998: -36,59 - 3999: -36,60 - 4023: -27,65 - 11063: 44,-63 - 11064: 44,-63 - 11065: 43,-62 - 11066: 45,-61 - 11067: 45,-61 - 11068: 45,-62 - 11069: 45,-62 - 11070: 36,-62 - 11071: 36,-62 - 11072: 34,-61 - 11073: 32,-61 - 11074: 32,-61 - 11075: 34,-66 - 11076: 34,-66 - 11077: 34,-67 - 11078: 34,-69 - 11079: 30,-68 - 11080: 30,-68 - 11081: 32,-67 - 11082: 30,-69 - 11083: 29,-70 - 11084: 28,-70 - 11085: 26,-69 - 11086: 28,-68 - 11087: 28,-68 - 11088: 27,-66 - 11089: 39,-71 - 11090: 41,-71 - 11091: 41,-71 - 11092: 41,-73 - 11093: 41,-73 - 11094: 42,-73 - 11095: 42,-75 - 11096: 39,-74 - 11097: 39,-74 - 11098: 37,-73 - 11099: 39,-73 - 11100: 35,-71 - 11101: 36,-70 - 11102: 36,-70 - 11103: 35,-68 - 11104: 36,-67 - 11105: 36,-66 - 11106: 35,-64 - 11107: 36,-64 - 11108: 35,-60 - 12856: -47,-23 - 12857: -47,-25 - 12858: -46,-26 - 12908: -46,-31 - 12909: -48,-30 - 12910: -48,-31 - 12911: -49,-31 - 12912: -47,-30 - 12913: -47,-29 - 12914: -48,-26 - 12915: -48,-25 - 12916: -47,-26 - 12917: -47,-27 - 12918: -46,-27 - 12919: -45,-26 - 12920: -45,-26 - 12921: -45,-27 - 12922: -46,-26 - 12923: -45,-25 - 12924: -45,-25 - 12925: -45,-27 - 12926: -44,-28 - 12927: -43,-28 - 12928: -42,-27 - 13305: 54,-37 - 13306: 53,-38 - 13307: 54,-38 - 13308: 55,-36 - 13309: 55,-35 - 16226: -66,-47 - 16227: -66,-48 - 16228: -66,-46 - 16229: -67,-46 - 16230: -64,-46 - 16231: -63,-46 - 16232: -63,-46 - 16233: -65,-47 - 16234: -63,-47 - 16235: -62,-46 - 16236: -62,-48 - 16237: -62,-48 - 16238: -63,-47 - 16239: -63,-48 - 16258: -64,-47 - 16259: -63,-47 - 16260: -63,-46 - 16261: -62,-46 - 16262: -62,-48 - 16263: -62,-48 - 16264: -63,-48 - 16265: -64,-48 - 16266: -63,-47 - 16267: -65,-46 - 16268: -65,-45 - 16269: -64,-45 - 16270: -63,-45 - 16271: -63,-46 - 16409: 10,70 - 16410: 10,69 - 16411: 11,70 - 16412: 12,70 - 16413: 12,68 - 16414: 11,67 - 16415: 10,67 - 16416: 12,69 - 16417: 12,67 - 16418: 10,68 - 16419: 9,68 - 16597: -43,0 - 16598: -43,-1 - 16599: -43,-3 - 16600: -43,-4 - 16601: -42,1 - 16602: -41,1 - 16603: -41,0 - 16604: -41,-2 - 16605: -42,-5 - 16606: -43,-8 - 16607: -40,-10 - 16608: -38,-10 - 16609: -38,-11 - 16610: -37,-20 - 16611: -34,-18 - 16612: -33,-18 - 16613: -33,-18 - 16614: -33,-20 - 16615: -34,-20 - 16616: -34,-20 - 16617: -34,-19 - 16618: -36,-19 - 16619: -40,-14 - 16620: -40,-15 - 16621: -40,-15 - 16622: -39,-15 - 16623: -39,-16 - 16624: -42,-16 - 16625: -42,-15 - 16626: -41,-15 - 16627: -41,-16 - 16628: -42,-17 - 16629: -40,-18 - 16630: -39,-18 - 16631: -39,-17 - 18391: -52,-40 - 18392: -55,-34 - 18393: -56,-34 - 18394: -52,-34 - 18407: -58,-46 - 21448: -63,-30 - 21449: -63,-29 - 21450: -62,-29 + 1030: -33,-52 + 1031: -34,-52 + 1032: -34,-54 + 1033: -35,-54 + 1034: -35,-53 + 1035: -33,-53 + 1036: -33,-54 + 1037: -28,-52 + 1038: -29,-53 + 1039: -24,-49 + 1045: -12,-46 + 3871: 22,70 + 3905: 25,67 + 3906: 27,66 + 3907: 20,66 + 3908: 21,67 + 3997: -36,59 + 3998: -36,60 + 4022: -27,65 + 11036: 37,-73 + 13242: 54,-37 + 13243: 53,-38 + 13244: 54,-38 + 13245: 55,-36 + 13246: 55,-35 + 16163: -66,-47 + 16164: -66,-48 + 16165: -66,-46 + 16166: -67,-46 + 16167: -64,-46 + 16168: -63,-46 + 16169: -63,-46 + 16170: -65,-47 + 16171: -63,-47 + 16172: -62,-46 + 16173: -62,-48 + 16174: -62,-48 + 16175: -63,-47 + 16176: -63,-48 + 16195: -64,-47 + 16196: -63,-47 + 16197: -63,-46 + 16198: -62,-46 + 16199: -62,-48 + 16200: -62,-48 + 16201: -63,-48 + 16202: -64,-48 + 16203: -63,-47 + 16204: -65,-46 + 16205: -65,-45 + 16206: -64,-45 + 16207: -63,-45 + 16208: -63,-46 + 16346: 10,70 + 16347: 10,69 + 16348: 11,70 + 16349: 12,70 + 16350: 12,68 + 16351: 11,67 + 16352: 10,67 + 16353: 12,69 + 16354: 12,67 + 16355: 10,68 + 16356: 9,68 + 16534: -43,0 + 16535: -43,-1 + 16536: -43,-3 + 16537: -43,-4 + 16538: -42,1 + 16539: -41,1 + 16540: -41,0 + 16541: -41,-2 + 16542: -42,-5 + 16543: -43,-8 + 16544: -40,-10 + 16545: -38,-10 + 16546: -38,-11 + 16547: -37,-20 + 16548: -34,-18 + 16549: -33,-18 + 16550: -33,-18 + 16551: -33,-20 + 16552: -34,-20 + 16553: -34,-20 + 16554: -34,-19 + 16555: -36,-19 + 16556: -40,-14 + 16557: -40,-15 + 16558: -40,-15 + 16559: -39,-15 + 16560: -39,-16 + 16561: -42,-16 + 16562: -42,-15 + 16563: -41,-15 + 16564: -41,-16 + 16565: -42,-17 + 16566: -40,-18 + 16567: -39,-18 + 16568: -39,-17 + 18328: -52,-40 + 18329: -55,-34 + 18330: -56,-34 + 18331: -52,-34 + 18344: -58,-46 + 21380: -63,-30 + 21381: -63,-29 + 21382: -62,-29 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 241: 43,-29 - 242: 50,-28 - 243: 53,-29 - 244: 51,-33 - 255: 35,-55 - 256: 30,-55 - 257: 44,-47 - 258: 45,-47 - 265: 41,-33 - 266: 40,-35 - 267: 34,-55 - 268: 49,-47 - 273: 50,-48 - 274: 51,-47 - 275: 52,-42 - 276: 52,-44 - 288: 63,-10 - 294: -28,64 - 295: -26,60 - 297: -31,37 - 298: -16,36 - 299: -15,26 - 300: -17,29 + 240: 43,-29 + 241: 50,-28 + 242: 53,-29 + 243: 51,-33 + 254: 35,-55 + 255: 30,-55 + 256: 44,-47 + 257: 45,-47 + 264: 41,-33 + 265: 40,-35 + 266: 34,-55 + 267: 49,-47 + 272: 50,-48 + 273: 51,-47 + 274: 52,-42 + 275: 52,-44 + 287: 63,-10 + 293: -28,64 + 294: -26,60 + 296: -31,37 + 297: -16,36 + 298: -15,26 + 299: -17,29 + 302: -36,28 303: -36,28 304: -36,28 - 305: -36,28 + 305: -37,23 306: -37,23 307: -37,23 308: -37,23 - 309: -37,23 - 310: -34,23 - 313: -31,8 - 315: -25,-18 - 318: -25,-21 - 320: -5,59 - 322: -10,-62 - 324: -23,-61 - 325: -27,-56 - 326: -28,-67 - 331: -6,-67 - 332: 3,-55 - 334: 8,-56 - 335: 7,-55 - 336: 12,-56 - 338: 21,-55 - 340: -47,-20 - 341: -44,-17 + 309: -34,23 + 312: -31,8 + 314: -25,-18 + 317: -25,-21 + 319: -5,59 + 321: -10,-62 + 323: -23,-61 + 324: -27,-56 + 325: -28,-67 + 330: -6,-67 + 331: 3,-55 + 333: 8,-56 + 334: 7,-55 + 335: 12,-56 + 337: 21,-55 + 339: -47,-20 + 340: -44,-17 + 341: -37,-9 342: -37,-9 - 343: -37,-9 - 345: -43,-3 - 347: -43,-8 - 349: -73,-31 - 352: -75,-26 - 353: -64,-20 - 355: -47,-28 - 356: -46,-27 - 357: -46,-26 - 358: -48,-25 - 360: -41,-17 - 361: -40,-16 - 362: -39,-14 - 363: -16,42 - 364: 62,-13 - 366: 46,-12 - 367: 44,-10 - 368: 53,-11 - 369: 23,-23 - 370: 35,-20 - 371: 38,-24 - 374: -33,-58 - 375: -39,-58 - 377: -35,-54 - 378: -33,-52 - 379: -34,-54 - 380: -34,-49 - 381: -34,-50 + 344: -43,-3 + 346: -43,-8 + 348: -73,-31 + 351: -75,-26 + 352: -64,-20 + 359: -41,-17 + 360: -40,-16 + 361: -39,-14 + 362: -16,42 + 363: 62,-13 + 365: 46,-12 + 366: 44,-10 + 367: 53,-11 + 368: 23,-23 + 369: 35,-20 + 370: 38,-24 + 373: -33,-58 + 374: -39,-58 + 376: -35,-54 + 377: -33,-52 + 378: -34,-54 + 379: -34,-49 + 380: -34,-50 + 381: -33,-50 382: -33,-50 - 383: -33,-50 - 386: -41,-47 - 387: -43,-47 - 389: -44,-45 - 390: -51,-49 - 392: -38,-29 - 393: -39,-28 - 394: -41,-27 - 395: -36,-27 - 396: -33,-29 + 385: -41,-47 + 386: -43,-47 + 388: -44,-45 + 389: -51,-49 + 395: -33,-29 + 711: -9,-48 712: -9,-48 - 713: -9,-48 - 717: -37,-38 - 848: 53,22 - 851: 19,47 - 991: -37,-37 - 1047: -7,-43 - 1048: -6,-41 - 1256: 66,8 - 1257: 62,9 - 1258: 67,4 - 1259: 52,5 - 1260: 47,0 - 1261: 56,26 - 1303: 6,56 - 1304: 7,57 - 1395: 10,67 - 1410: -35,62 - 1411: -36,61 + 716: -37,-38 + 847: 53,22 + 850: 19,47 + 990: -37,-37 + 1046: -7,-43 + 1047: -6,-41 + 1255: 66,8 + 1256: 62,9 + 1257: 67,4 + 1258: 52,5 + 1259: 47,0 + 1260: 56,26 + 1302: 6,56 + 1303: 7,57 + 1394: 10,67 + 1409: -35,62 + 1410: -36,61 + 1632: -59,-43 1633: -59,-43 - 1634: -59,-43 - 1635: -58,-42 + 1634: -58,-42 + 1635: -58,-41 1636: -58,-41 - 1637: -58,-41 - 1638: -58,-43 - 1783: -57,-26 - 4027: -23,35 - 4029: -20,52 - 4030: -16,57 - 4034: -11,84 - 4035: -13,91 - 4036: -9,68 - 4037: 4,68 - 16327: -66,-35 - 16328: -66,-35 - 16329: -66,-35 + 1637: -58,-43 + 1782: -57,-26 + 4026: -23,35 + 4028: -20,52 + 4029: -16,57 + 4033: -11,84 + 4034: -13,91 + 4035: -9,68 + 4036: 4,68 + 16264: -66,-35 + 16265: -66,-35 + 16266: -66,-35 + 24126: -29,-23 + 24127: -29,-23 + 24128: -28,-23 + 24129: -29,-27 + 24130: -30,-27 + 24131: -30,-29 + 24132: -30,-30 + 24133: -30,-31 + 24134: -28,-31 + 24135: -27,-31 + 24167: -39,-33 + 24168: -41,-33 + 24169: -42,-32 + 24170: -43,-33 + 24171: -42,-34 + 24172: -42,-32 + 24173: -40,-32 + 24174: -39,-34 + 24175: -38,-33 + 24176: -38,-32 + 24177: -37,-32 + 24178: -37,-34 + 24179: -35,-33 + 24180: -34,-32 + 24181: -33,-33 + 24182: -42,-31 + 24183: -40,-33 + 24184: -41,-34 + 24185: -43,-33 + 24212: -46,-22 + 24213: -47,-22 + 24214: -45,-23 + 24215: -45,-23 + 24533: 40,-67 + 24534: 40,-67 + 24535: 37,-68 + 24536: 39,-66 + 24537: 40,-66 + 24538: 38,-68 + 24539: 39,-67 + 24540: 40,-66 + 24541: 42,-67 + 24542: 41,-68 + 24543: 38,-68 + 24544: 41,-69 + 24545: 41,-71 + 24546: 38,-70 + 24547: 39,-71 + 24548: 37,-71 + 24549: 32,-69 + 24550: 29,-67 + 24551: 31,-66 + 24552: 31,-66 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: DirtLight decals: - 526: -3,-65 + 525: -3,-65 - node: color: '#FFFFFFFF' id: DirtMedium decals: - 476: -1,-2 - 1011: -30,-52 - 1012: -26,-53 - 1013: -27,-52 - 1014: -30,-53 - 1015: -24,-54 - 1016: -23,-53 - 1017: -28,-50 - 1018: -30,-51 - 1019: -27,-52 - 1020: -27,-50 - 1021: -30,-53 - 1022: -30,-55 - 1023: -27,-55 - 1024: -34,-53 - 1025: -34,-52 - 1026: -34,-54 - 1027: -33,-53 + 475: -1,-2 + 1010: -30,-52 + 1011: -26,-53 + 1012: -27,-52 + 1013: -30,-53 + 1014: -24,-54 + 1015: -23,-53 + 1016: -28,-50 + 1017: -30,-51 + 1018: -27,-52 + 1019: -27,-50 + 1020: -30,-53 + 1021: -30,-55 + 1022: -27,-55 + 1023: -34,-53 + 1024: -34,-52 + 1025: -34,-54 + 1026: -33,-53 + 1027: -34,-52 1028: -34,-52 - 1029: -34,-52 - 1030: -34,-54 - 1043: -21,-29 - 1044: -12,-51 - 1045: -12,-49 - 3870: 18,71 - 3871: 17,71 - 3873: 19,71 - 3874: 20,71 - 3875: 21,69 - 3910: 21,65 - 3911: 22,65 - 3912: 23,65 - 4004: -38,63 - 11124: 35,-61 - 11125: 41,-62 - 11126: 39,-62 - 11127: 39,-62 - 11128: 36,-68 - 11129: 35,-67 - 11130: 35,-67 - 11131: 29,-68 - 11132: 29,-68 - 11133: 28,-66 - 11134: 26,-69 - 11135: 26,-70 - 11136: 27,-69 - 11137: 41,-67 - 11138: 28,-69 - 11139: 27,-60 - 11140: 27,-58 - 11141: 28,-56 - 11142: 28,-56 - 12876: -53,-27 - 12877: -53,-26 - 12878: -52,-25 - 12879: -51,-26 - 12880: -52,-28 - 12881: -52,-28 - 12882: -50,-28 - 12883: -51,-29 - 12884: -50,-28 - 12885: -50,-27 - 12886: -51,-29 - 12887: -52,-30 - 12888: -52,-31 - 12889: -52,-31 - 12890: -52,-29 - 12891: -51,-30 - 12892: -51,-30 - 12893: -51,-31 - 12894: -53,-27 - 12895: -52,-26 - 12896: -52,-27 - 12897: -53,-25 - 12898: -51,-25 - 12899: -45,-27 - 12900: -45,-28 - 12901: -46,-29 - 12902: -47,-29 - 12903: -48,-31 - 12904: -46,-31 - 12905: -45,-31 - 12906: -46,-29 - 12907: -45,-28 - 13092: -30,-30 - 13093: -30,-29 - 13094: -30,-28 - 13095: -29,-28 - 13096: -28,-27 - 13097: -26,-27 - 13098: -26,-29 - 13099: -27,-30 - 13100: -29,-30 - 13101: -27,-29 - 13102: -27,-28 - 13103: -28,-28 - 13104: -28,-29 - 13105: -27,-28 - 13106: -29,-28 - 13107: 27,-57 - 13108: 28,-57 - 13201: 45,-52 - 13202: 44,-51 - 13203: 45,-50 - 13204: 45,-52 - 13205: 45,-53 - 13206: 46,-52 - 13207: 45,-55 - 13208: 46,-55 - 13209: 45,-55 - 13210: 45,-54 - 13211: 45,-52 - 13212: 45,-51 - 13213: 41,-54 - 13214: 41,-55 - 13215: 41,-55 - 13216: 40,-54 - 13217: 40,-53 - 13218: 40,-52 - 13219: 40,-51 - 13220: 40,-51 - 13221: 40,-53 - 13222: 41,-53 - 13223: 40,-54 - 13224: 39,-55 - 13225: 39,-55 - 13226: 40,-53 - 13227: 41,-52 - 13228: 41,-51 - 13229: 41,-50 - 13230: 41,-51 - 13231: 42,-52 - 13232: 40,-55 - 13233: 40,-56 - 13234: 39,-56 - 13235: 39,-56 - 13236: 42,-55 - 13237: 39,-51 - 13238: 46,-50 - 13239: 46,-51 - 13240: 47,-52 - 13241: 46,-54 - 13279: 52,-37 - 13297: 54,-39 - 13298: 55,-39 - 13299: 56,-39 - 13300: 55,-38 - 13301: 56,-36 - 13302: 53,-35 - 13303: 55,-37 - 13304: 55,-35 - 13445: -37,-63 - 13446: -37,-62 - 13447: -36,-62 - 13448: -37,-61 - 13449: -38,-60 - 13465: -41,-62 - 13466: -41,-63 - 13467: -40,-63 - 13468: -41,-63 - 16037: 78,4 - 16038: 79,4 - 16039: 79,5 - 16040: 78,5 - 16041: 92,6 - 16053: 99,-4 - 16054: 100,-4 - 16055: 100,-3 - 16056: 99,-3 - 16057: 99,-2 - 16058: 100,-2 - 16059: 93,-4 - 16293: -69,-43 - 16294: -69,-42 - 16295: -69,-41 - 16296: -66,-41 - 16297: -66,-43 - 16298: -65,-43 - 16299: -64,-40 - 16561: -43,-11 - 16562: -43,-12 - 16563: -43,-11 - 16564: -38,-10 - 16565: -37,-9 - 16566: -38,-9 - 16567: -38,-10 - 16568: -38,-10 - 16569: -38,-9 - 16570: -38,-11 - 16571: -43,-4 - 16572: -43,-3 - 16573: -43,-2 - 16574: -43,-1 - 16575: -43,-2 - 16576: -43,-5 - 16577: -43,-6 - 16578: -43,-7 - 16579: -43,-7 - 16580: -43,-4 - 16581: -43,-2 - 16582: -43,0 - 16583: -43,1 - 16584: -42,1 - 16585: -42,0 - 16586: -43,0 - 16587: -42,1 - 16588: -41,1 - 16589: -42,-1 - 16590: -41,-2 - 16591: -41,-1 - 16592: -41,0 - 16593: -41,-2 - 16594: -41,-2 - 16595: -41,-1 - 16596: -41,0 - 16632: -41,-15 - 16633: -42,-16 - 16634: -42,-17 - 16635: -40,-18 - 16636: -39,-18 - 16637: -39,-17 - 16638: -40,-17 - 16639: -41,-17 - 16640: -40,-16 - 16641: -43,-15 - 16642: -42,-15 - 16643: -42,-14 - 16644: -41,-14 - 16645: -40,-14 - 19813: -28,-24 - 19814: -27,-23 - 19815: -27,-22 - 19816: -30,-24 - 19817: -30,-25 - 19818: -28,-25 - 19819: -29,-25 - 19820: -28,-22 - 19821: -27,-22 - 19822: -29,-22 - 19836: -30,-23 - 19837: -29,-23 - 19838: -28,-23 - 21451: -63,-29 - 21452: -63,-30 - 21453: -61,-29 - 21454: -62,-30 - 21455: -64,-30 - 21456: -65,-30 - 21457: -65,-30 - 21458: -60,-29 - 21459: -59,-29 - 21460: -59,-30 - 21461: -59,-30 - 21462: -59,-29 + 1029: -34,-54 + 1042: -21,-29 + 1043: -12,-51 + 1044: -12,-49 + 3869: 18,71 + 3870: 17,71 + 3872: 19,71 + 3873: 20,71 + 3874: 21,69 + 3909: 21,65 + 3910: 22,65 + 3911: 23,65 + 4003: -38,63 + 13138: 45,-52 + 13139: 44,-51 + 13140: 45,-50 + 13141: 45,-52 + 13142: 45,-53 + 13143: 46,-52 + 13144: 45,-55 + 13145: 46,-55 + 13146: 45,-55 + 13147: 45,-54 + 13148: 45,-52 + 13149: 45,-51 + 13150: 41,-54 + 13151: 41,-55 + 13152: 41,-55 + 13153: 40,-54 + 13154: 40,-53 + 13155: 40,-52 + 13156: 40,-51 + 13157: 40,-51 + 13158: 40,-53 + 13159: 41,-53 + 13160: 40,-54 + 13161: 39,-55 + 13162: 39,-55 + 13163: 40,-53 + 13164: 41,-52 + 13165: 41,-51 + 13166: 41,-50 + 13167: 41,-51 + 13168: 42,-52 + 13169: 40,-55 + 13170: 40,-56 + 13171: 39,-56 + 13172: 39,-56 + 13173: 42,-55 + 13174: 39,-51 + 13175: 46,-50 + 13176: 46,-51 + 13177: 47,-52 + 13178: 46,-54 + 13216: 52,-37 + 13234: 54,-39 + 13235: 55,-39 + 13236: 56,-39 + 13237: 55,-38 + 13238: 56,-36 + 13239: 53,-35 + 13240: 55,-37 + 13241: 55,-35 + 13382: -37,-63 + 13383: -37,-62 + 13384: -36,-62 + 13385: -37,-61 + 13386: -38,-60 + 13402: -41,-62 + 13403: -41,-63 + 13404: -40,-63 + 13405: -41,-63 + 15974: 78,4 + 15975: 79,4 + 15976: 79,5 + 15977: 78,5 + 15978: 92,6 + 15990: 99,-4 + 15991: 100,-4 + 15992: 100,-3 + 15993: 99,-3 + 15994: 99,-2 + 15995: 100,-2 + 15996: 93,-4 + 16230: -69,-43 + 16231: -69,-42 + 16232: -69,-41 + 16233: -66,-41 + 16234: -66,-43 + 16235: -65,-43 + 16236: -64,-40 + 16498: -43,-11 + 16499: -43,-12 + 16500: -43,-11 + 16501: -38,-10 + 16502: -37,-9 + 16503: -38,-9 + 16504: -38,-10 + 16505: -38,-10 + 16506: -38,-9 + 16507: -38,-11 + 16508: -43,-4 + 16509: -43,-3 + 16510: -43,-2 + 16511: -43,-1 + 16512: -43,-2 + 16513: -43,-5 + 16514: -43,-6 + 16515: -43,-7 + 16516: -43,-7 + 16517: -43,-4 + 16518: -43,-2 + 16519: -43,0 + 16520: -43,1 + 16521: -42,1 + 16522: -42,0 + 16523: -43,0 + 16524: -42,1 + 16525: -41,1 + 16526: -42,-1 + 16527: -41,-2 + 16528: -41,-1 + 16529: -41,0 + 16530: -41,-2 + 16531: -41,-2 + 16532: -41,-1 + 16533: -41,0 + 16569: -41,-15 + 16570: -42,-16 + 16571: -42,-17 + 16572: -40,-18 + 16573: -39,-18 + 16574: -39,-17 + 16575: -40,-17 + 16576: -41,-17 + 16577: -40,-16 + 16578: -43,-15 + 16579: -42,-15 + 16580: -42,-14 + 16581: -41,-14 + 16582: -40,-14 + 19753: -30,-25 + 19772: -30,-23 + 19773: -29,-23 + 19774: -28,-23 + 21383: -63,-29 + 21384: -63,-30 + 21385: -61,-29 + 21386: -62,-30 + 21387: -64,-30 + 21388: -65,-30 + 21389: -65,-30 + 21390: -60,-29 + 21391: -59,-29 + 21392: -59,-30 + 21393: -59,-30 + 21394: -59,-29 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 251: 35,-56 - 252: 37,-54 - 264: 40,-42 - 272: 50,-47 - 284: 55,-21 - 285: 63,-29 - 286: 56,-28 - 311: -26,25 - 319: -7,63 - 323: -22,-61 + 250: 35,-56 + 251: 37,-54 + 263: 40,-42 + 271: 50,-47 + 283: 55,-21 + 284: 63,-29 + 285: 56,-28 + 310: -26,25 + 318: -7,63 + 322: -22,-61 + 326: -28,-68 327: -28,-68 - 328: -28,-68 - 365: 45,-12 - 376: -34,-53 - 527: -4,-65 + 364: 45,-12 + 375: -34,-53 + 526: -4,-65 + 713: -11,-48 714: -11,-48 - 715: -11,-48 - 957: 33,37 - 961: -1,-14 - 1050: -7,-51 - 1064: -35,-45 - 1065: -33,-37 - 1639: -60,-43 - 1640: -60,-41 - 1641: -59,-40 - 1642: -58,-49 - 1643: -59,-48 - 1644: -59,-49 - 1645: -60,-51 - 1646: -60,-50 - 1647: -60,-48 - 1648: -58,-49 - 4026: -16,38 - 4033: -13,74 - 16333: -69,-35 - 16334: -69,-35 - 16335: -66,-36 - 16338: -69,-36 - 16339: -63,-33 - 16356: -70,-37 - - node: - cleanable: True - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: DirtMedium - decals: - 801: -43,-24 - 802: -40,-29 - 803: -41,-27 - 804: -46,-29 - 805: -47,-29 - 806: -36,-28 - 807: -34,-28 - 808: -29,-30 + 956: 33,37 + 960: -1,-14 + 1049: -7,-51 + 1063: -35,-45 + 1064: -33,-37 + 1638: -60,-43 + 1639: -60,-41 + 1640: -59,-40 + 1641: -58,-49 + 1642: -59,-48 + 1643: -59,-49 + 1644: -60,-51 + 1645: -60,-50 + 1646: -60,-48 + 1647: -58,-49 + 4025: -16,38 + 4032: -13,74 + 16270: -69,-35 + 16271: -69,-35 + 16272: -66,-36 + 16275: -69,-36 + 16276: -63,-33 + 16293: -70,-37 + 24114: -29,-22 + 24115: -29,-23 + 24116: -31,-24 + 24117: -31,-23 + 24118: -28,-24 + 24119: -27,-23 + 24120: -27,-22 + 24121: -30,-22 + 24122: -31,-22 + 24123: -28,-22 + 24124: -28,-23 + 24125: -29,-24 + 24153: -29,-28 + 24154: -30,-28 + 24155: -31,-27 + 24156: -31,-27 + 24157: -27,-26 + 24158: -27,-26 + 24159: -26,-27 + 24160: -28,-29 + 24161: -37,-26 + 24162: -35,-26 + 24163: -34,-26 + 24164: -40,-32 + 24165: -38,-33 + 24166: -39,-34 + 24207: -46,-23 + 24208: -47,-23 + 24209: -47,-22 + 24210: -45,-22 + 24211: -45,-22 + 24490: 41,-62 + 24491: 39,-62 + 24492: 38,-61 + 24493: 39,-60 + 24494: 41,-62 + 24495: 39,-63 + 24496: 35,-62 + 24497: 34,-61 + 24498: 34,-61 + 24499: 32,-61 + 24500: 30,-61 + 24501: 30,-62 + 24502: 35,-64 + 24503: 35,-65 + 24504: 35,-68 + 24505: 36,-66 + 24506: 36,-66 + 24507: 34,-65 + 24508: 35,-64 + 24509: 33,-64 + 24510: 36,-68 + 24511: 35,-70 + 24512: 35,-72 + 24513: 34,-72 + 24514: 38,-72 + 24515: 39,-70 + 24516: 39,-73 + 24517: 39,-74 + 24518: 38,-74 + 24519: 38,-73 + 24520: 40,-74 + 24521: 42,-74 + 24522: 41,-73 + 24523: 41,-72 + 24524: 41,-71 + 24525: 42,-70 + 24526: 42,-70 + 24527: 41,-69 + 24528: 41,-68 + 24529: 41,-68 + 24530: 41,-67 + 24531: 41,-66 + 24532: 38,-66 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: DirtMedium decals: - 13785: -28,-65 - 13786: -28,-64 - 13787: -28,-63 - 13938: -59,-35 - 13939: -59,-34 - 14045: -46,-41 - 14046: -47,-41 - 14047: -48,-41 - 14048: -47,-41 - 14049: -43,-41 - 14050: -40,-49 - 14051: -43,-47 - 14052: -35,-49 - 14053: -35,-50 - 14054: -33,-49 - 14055: -33,-49 - 14056: -33,-50 + 13722: -28,-65 + 13723: -28,-64 + 13724: -28,-63 + 13875: -59,-35 + 13876: -59,-34 + 13982: -46,-41 + 13983: -47,-41 + 13984: -48,-41 + 13985: -47,-41 + 13986: -43,-41 + 13987: -40,-49 + 13988: -43,-47 + 13989: -35,-49 + 13990: -35,-50 + 13991: -33,-49 + 13992: -33,-49 + 13993: -33,-50 - node: color: '#FFFFFFFF' id: FlowersBROne decals: - 1129: 1,9 + 1128: 1,9 - node: color: '#FFFFFFFF' id: FlowersBRThree decals: - 1130: -3,1 + 1129: -3,1 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 1131: 1,-6 - 1171: 70,-18 - 15800: 81,3 - 21321: -16.774988,18.928102 + 1130: 1,-6 + 1170: 70,-18 + 15737: 81,3 + 21253: -16.774988,18.928102 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 539: -2,-84 - 540: -1,-84 - 541: 0,-84 - 1126: -6,-4 - 21320: -16.884361,19.974977 + 538: -2,-84 + 539: -1,-84 + 540: 0,-84 + 1125: -6,-4 + 21252: -16.884361,19.974977 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 511: -6.021795,-67.068596 - 512: -5.396795,-67.037346 - 517: -2.928045,-67.08422 - 1127: 2,0 + 510: -6.021795,-67.068596 + 511: -5.396795,-67.037346 + 516: -2.928045,-67.08422 + 1126: 2,0 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 513: -4.63117,-67.068596 - 518: -1.9944773,-68.006096 - 1128: -6,5 + 512: -4.63117,-67.068596 + 517: -1.9944773,-68.006096 + 1127: -6,5 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 514: -3.7717953,-67.05297 - 515: -3.09992,-66.99047 - 516: -5.31867,-67.068596 - 542: -2,-84 - 543: -1,-84 - 544: 0,-84 - 1132: -5,-5 - 21614: 14.879294,19.98756 + 513: -3.7717953,-67.05297 + 514: -3.09992,-66.99047 + 515: -5.31867,-67.068596 + 541: -2,-84 + 542: -1,-84 + 543: 0,-84 + 1131: -5,-5 + 21546: 14.879294,19.98756 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 504: -6.064717,-73.98025 - 1134: -4,4 - 21616: 14.941794,19.05006 + 503: -6.064717,-73.98025 + 1133: -4,4 + 21548: 14.941794,19.05006 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 1133: 3,1 - 1172: 72,-18 - 15522: 68,-21 - 21615: 15.051168,17.92506 + 1132: 3,1 + 1171: 72,-18 + 15459: 68,-21 + 21547: 15.051168,17.92506 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 505: -7.008356,-73.15212 - 506: -6.961481,-72.62087 - 1122: -5,3 + 504: -7.008356,-73.15212 + 505: -6.961481,-72.62087 + 1121: -5,3 - node: color: '#FFFFFFFF' id: Flowersy2 decals: - 510: -1.9973309,-73.04275 - 1123: 2,6 + 509: -1.9973309,-73.04275 + 1122: 2,6 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 509: -1.9927311,-72.5115 - 1124: -5,-2 + 508: -1.9927311,-72.5115 + 1123: -5,-2 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 507: -7.0083566,-72.05837 - 508: -1.9771061,-72.02712 - 1125: 3,-4 + 506: -7.0083566,-72.05837 + 507: -1.9771061,-72.02712 + 1124: 3,-4 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 706: 24,-26 - 707: 24,-25 - 708: 25,-25 - 709: 26,-25 - 710: 26,-26 - 711: 25,-26 - 718: 24,-31 - 719: 25,-31 - 720: 25,-32 - 721: 24,-32 - 722: 31,-32 - 723: 32,-32 - 724: 32,-31 - 725: 31,-31 + 705: 24,-26 + 706: 24,-25 + 707: 25,-25 + 708: 26,-25 + 709: 26,-26 + 710: 25,-26 + 717: 24,-31 + 718: 25,-31 + 719: 25,-32 + 720: 24,-32 + 721: 31,-32 + 722: 32,-32 + 723: 32,-31 + 724: 31,-31 - node: color: '#55555596' id: FullTileOverlayGreyscale @@ -24445,412 +24343,411 @@ entities: id: FullTileOverlayGreyscale decals: 96: 35,-43 - 97: 35,-69 - node: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 1245: 58,6 - 1246: 62,6 - 1247: 66,6 - 1248: 69,7 + 1244: 58,6 + 1245: 62,6 + 1246: 66,6 + 1247: 69,7 - node: color: '#FFFFFFFF' id: Grassa3 decals: - 2166: -18,43 + 2165: -18,43 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 15523: 69,-21 - 18655: 3,-3 + 15460: 69,-21 + 18592: 3,-3 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 15799: 89,3 + 15736: 89,3 - node: color: '#FFFFFFFF' id: Grassb1 decals: - 1137: 4,4 - 1252: -34,40 - 2182: -20,42 - 2851: -34,41 + 1136: 4,4 + 1251: -34,40 + 2181: -20,42 + 2850: -34,41 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 1138: -3,9 - 1168: 70,-17 + 1137: -3,9 + 1167: 70,-17 - node: color: '#FFFFFFFF' id: Grassb3 decals: - 1139: -6,-5 + 1138: -6,-5 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 1135: -3,4 - 1169: 70,-24 - 1573: -39,32 - 2169: -18,39 + 1134: -3,4 + 1168: 70,-24 + 1572: -39,32 + 2168: -18,39 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 1136: 1,-4 - 1170: 68,-20 - 1574: -40,35 - 2170: -21,41 - 2850: -33,42 - 18656: 2,2 + 1135: 1,-4 + 1169: 68,-20 + 1573: -40,35 + 2169: -21,41 + 2849: -33,42 + 18593: 2,2 - node: color: '#FFFFFFFF' id: Grassc1 decals: - 1099: -5,5 - 1100: 2,4 - 1101: 4,1 - 1102: 1,-1 - 1103: -3,-2 - 1104: -5,0 - 1105: -6,-4 - 1106: 3,-6 - 1107: 2,8 - 1163: 69,-18 - 1250: -34,42 - 2165: -20,39 - 21319: -16.861458,19.162476 + 1098: -5,5 + 1099: 2,4 + 1100: 4,1 + 1101: 1,-1 + 1102: -3,-2 + 1103: -5,0 + 1104: -6,-4 + 1105: 3,-6 + 1106: 2,8 + 1162: 69,-18 + 1249: -34,42 + 2164: -20,39 + 21251: -16.861458,19.162476 - node: cleanable: True color: '#FFFFFFFF' id: Grassc1 decals: - 246: 36.591118,-46.696697 - 247: 35.8887,-47.060184 - 248: 35.840252,-47.630493 - 249: 37.362995,-46.68542 - 250: 37.400673,-55.197823 - 253: 37,-56 - 254: 36.075,-56.228687 - 269: 52.41801,-47.978123 - 270: 51.473373,-48.293144 - 271: 52.41801,-47.420773 - 279: 52.705982,-27.63774 - 280: 53.384186,-27.880066 + 245: 36.591118,-46.696697 + 246: 35.8887,-47.060184 + 247: 35.840252,-47.630493 + 248: 37.362995,-46.68542 + 249: 37.400673,-55.197823 + 252: 37,-56 + 253: 36.075,-56.228687 + 268: 52.41801,-47.978123 + 269: 51.473373,-48.293144 + 270: 52.41801,-47.420773 + 278: 52.705982,-27.63774 + 279: 53.384186,-27.880066 - node: color: '#FFFFFFFF' id: Grassc2 decals: - 1108: -4,9 - 1109: 1,5 - 1110: 2,1 - 1111: 4,-1 - 1112: -5,-4 - 1113: 2,-5 - 1164: 73,-20 + 1107: -4,9 + 1108: 1,5 + 1109: 2,1 + 1110: 4,-1 + 1111: -5,-4 + 1112: 2,-5 + 1163: 73,-20 - node: color: '#FFFFFFFF' id: Grassc3 decals: - 1114: -6,-2 - 1115: 2,-3 - 1116: -4,2 - 1165: 70,-23 - 1167: 71,-21 - 1575: -39,31 - 2181: -20,40 - 2849: -33,40 - 18657: 4,-4 + 1113: -6,-2 + 1114: 2,-3 + 1115: -4,2 + 1164: 70,-23 + 1166: 71,-21 + 1574: -39,31 + 2180: -20,40 + 2848: -33,40 + 18594: 4,-4 - node: color: '#FFFFFFFF' id: Grassc4 decals: - 1117: -6,2 - 1118: 3,-2 - 1119: -4,-5 - 1120: 4,5 - 1121: -3,7 - 1166: 72,-24 - 1568: -41,33 - 2164: -21,42 - 2168: -17,42 - 15520: 68,-23 - 15521: 69,-23 + 1116: -6,2 + 1117: 3,-2 + 1118: -4,-5 + 1119: 4,5 + 1120: -3,7 + 1165: 72,-24 + 1567: -41,33 + 2163: -21,42 + 2167: -17,42 + 15457: 68,-23 + 15458: 69,-23 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 1068: -5,-3 - 1069: 4,-5 - 1070: 3,0 - 1071: -5,4 - 1072: 2,9 - 1073: -4,8 - 1148: 68,-18 - 1149: 72,-21 - 1150: 73,-24 - 1569: -40,31 - 1576: -41,32 - 2148: -19,43 + 1067: -5,-3 + 1068: 4,-5 + 1069: 3,0 + 1070: -5,4 + 1071: 2,9 + 1072: -4,8 + 1147: 68,-18 + 1148: 72,-21 + 1149: 73,-24 + 1568: -40,31 + 1575: -41,32 + 2147: -19,43 + 2155: -18,42 2156: -18,42 - 2157: -18,42 - 2158: -18,43 - 15498: 71,-24 - 15499: 72,-23 - 15500: 69,-23 - 15501: 70,-23 - 15502: 73,-23 - 15506: 72,-20 - 15507: 71,-20 - 15508: 69,-21 - 15509: 70,-17 - 15510: 71,-17 - 15511: 68,-18 - 15512: 72,-18 - 15513: 74,-18 - 15514: 72,-17 - 21608: 14.848043,17.971935 - 21609: 14.910544,18.565685 - 21610: 14.879294,19.440685 - 21611: 14.457419,19.596935 - 21612: 14.785545,20.45631 + 2157: -18,43 + 15435: 71,-24 + 15436: 72,-23 + 15437: 69,-23 + 15438: 70,-23 + 15439: 73,-23 + 15443: 72,-20 + 15444: 71,-20 + 15445: 69,-21 + 15446: 70,-17 + 15447: 71,-17 + 15448: 68,-18 + 15449: 72,-18 + 15450: 74,-18 + 15451: 72,-17 + 21540: 14.848043,17.971935 + 21541: 14.910544,18.565685 + 21542: 14.879294,19.440685 + 21543: 14.457419,19.596935 + 21544: 14.785545,20.45631 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 1074: -5,1 - 1075: 3,4 - 1076: 1,1 - 1077: 1,-2 - 1078: 2,-6 - 1079: -3,-6 - 1080: -6,-1 - 1151: 68,-21 - 1152: 72,-17 - 1153: 69,-23 - 1578: -39,35 - 2147: -17,41 - 2159: -18,39 - 2179: -20,40 + 1073: -5,1 + 1074: 3,4 + 1075: 1,1 + 1076: 1,-2 + 1077: 2,-6 + 1078: -3,-6 + 1079: -6,-1 + 1150: 68,-21 + 1151: 72,-17 + 1152: 69,-23 + 1577: -39,35 + 2146: -17,41 + 2158: -18,39 + 2178: -20,40 + 2182: -20,42 2183: -20,42 - 2184: -20,42 - 15515: 73,-17 - 15516: 71,-18 - 15517: 71,-18 - 15518: 69,-17 - 15519: 71,-17 - 15795: 82,3 - 18552: -6,0 - 18553: -6,1 - 18554: -6,-1 - 18555: -3,-1 - 18556: -3,0 - 18557: -5,-1 - 18558: -3,-3 - 18559: -4,-2 - 18560: -3,4 - 18561: -3,4 - 18562: -3,3 - 18563: -3,5 - 18564: -3,6 - 18565: -3,7 - 18566: -4,7 - 18567: -4,8 - 18568: -3,9 - 18569: -3,8 - 18570: -4,8 - 18571: -4,9 - 18572: -4,8 - 18573: -4,7 - 18574: -4,8 - 18575: -3,9 - 18576: -3,8 - 18577: -4,5 - 18578: -4,6 - 18579: -3,5 - 18580: -4,4 - 18581: -5,4 - 18582: -4,3 - 18583: -3,2 - 18612: 2,-2 - 18613: 3,-1 - 18614: 2,-4 - 18615: 1,-5 - 18616: 3,-6 - 18617: 4,-6 - 18618: 4,-6 + 15452: 73,-17 + 15453: 71,-18 + 15454: 71,-18 + 15455: 69,-17 + 15456: 71,-17 + 15732: 82,3 + 18489: -6,0 + 18490: -6,1 + 18491: -6,-1 + 18492: -3,-1 + 18493: -3,0 + 18494: -5,-1 + 18495: -3,-3 + 18496: -4,-2 + 18497: -3,4 + 18498: -3,4 + 18499: -3,3 + 18500: -3,5 + 18501: -3,6 + 18502: -3,7 + 18503: -4,7 + 18504: -4,8 + 18505: -3,9 + 18506: -3,8 + 18507: -4,8 + 18508: -4,9 + 18509: -4,8 + 18510: -4,7 + 18511: -4,8 + 18512: -3,9 + 18513: -3,8 + 18514: -4,5 + 18515: -4,6 + 18516: -3,5 + 18517: -4,4 + 18518: -5,4 + 18519: -4,3 + 18520: -3,2 + 18549: 2,-2 + 18550: 3,-1 + 18551: 2,-4 + 18552: 1,-5 + 18553: 3,-6 + 18554: 4,-6 + 18555: 4,-6 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 1081: -3,2 - 1082: 1,6 - 1083: 4,2 - 1084: 3,-3 - 1085: -5,-5 - 1154: 69,-24 - 1155: 74,-20 - 1156: 69,-17 - 1570: -39,32 - 2146: -17,42 - 2160: -19,39 - 2161: -20,43 - 2180: -20,42 - 2847: -33,42 - 2848: -34,41 - 15798: 89,3 - 21316: -16.892008,19.490566 - 21322: -16.71812,17.842958 - 21613: 15.035544,19.95631 + 1080: -3,2 + 1081: 1,6 + 1082: 4,2 + 1083: 3,-3 + 1084: -5,-5 + 1153: 69,-24 + 1154: 74,-20 + 1155: 69,-17 + 1569: -39,32 + 2145: -17,42 + 2159: -19,39 + 2160: -20,43 + 2179: -20,42 + 2846: -33,42 + 2847: -34,41 + 15735: 89,3 + 21248: -16.892008,19.490566 + 21254: -16.71812,17.842958 + 21545: 15.035544,19.95631 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 1086: -4,-1 - 1087: 2,-4 - 1088: 4,-2 - 1089: -6,3 - 1090: 2,7 - 1157: 71,-23 - 1158: 69,-20 - 1572: -38,34 - 1577: -39,34 + 1085: -4,-1 + 1086: 2,-4 + 1087: 4,-2 + 1088: -6,3 + 1089: 2,7 + 1156: 71,-23 + 1157: 69,-20 + 1571: -38,34 + 1576: -39,34 + 2151: -21,41 2152: -21,41 - 2153: -21,41 - 15797: 88,3 - 18584: -4,-2 - 18585: -3,-2 - 18586: -3,-4 - 18587: -3,-4 - 18588: -3,-6 - 18589: -4,-6 - 18590: -5,-6 - 18591: -4,-6 - 18592: -4,-5 - 18593: -5,-5 - 18594: -3,-5 - 18595: -3,-4 - 18596: -5,-3 - 18597: -6,-2 - 18598: -5,-1 - 18599: -6,0 - 18600: 3,1 - 18601: 2,1 - 18602: 2,3 - 18603: 1,2 - 18604: 2,3 + 15734: 88,3 + 18521: -4,-2 + 18522: -3,-2 + 18523: -3,-4 + 18524: -3,-4 + 18525: -3,-6 + 18526: -4,-6 + 18527: -5,-6 + 18528: -4,-6 + 18529: -4,-5 + 18530: -5,-5 + 18531: -3,-5 + 18532: -3,-4 + 18533: -5,-3 + 18534: -6,-2 + 18535: -5,-1 + 18536: -6,0 + 18537: 3,1 + 18538: 2,1 + 18539: 2,3 + 18540: 1,2 + 18541: 2,3 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 1091: -4,6 - 1092: -4,3 - 1093: 2,-1 - 1094: 3,-4 - 1095: -6,-6 - 1159: 68,-23 - 1160: 70,-21 - 1251: -33,43 - 1571: -41,35 - 2145: -17,40 - 2149: -20,43 - 2150: -20,39 - 2167: -19,43 - 15796: 81,3 - 18650: 4,-4 - 18651: 4,-3 - 18652: 4,-3 - 18653: 3,-5 - 18654: 3,-1 - 21318: -17.048258,19.490566 - 21324: -16.921246,18.874208 + 1090: -4,6 + 1091: -4,3 + 1092: 2,-1 + 1093: 3,-4 + 1094: -6,-6 + 1158: 68,-23 + 1159: 70,-21 + 1250: -33,43 + 1570: -41,35 + 2144: -17,40 + 2148: -20,43 + 2149: -20,39 + 2166: -19,43 + 15733: 81,3 + 18587: 4,-4 + 18588: 4,-3 + 18589: 4,-3 + 18590: 3,-5 + 18591: 3,-1 + 21250: -17.048258,19.490566 + 21256: -16.921246,18.874208 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 1096: -4,-4 - 1097: 2,2 - 1098: -4,5 - 1161: 73,-18 - 1162: 74,-23 - 1249: -33,40 - 2144: -21,42 - 2151: -21,40 + 1095: -4,-4 + 1096: 2,2 + 1097: -4,5 + 1160: 73,-18 + 1161: 74,-23 + 1248: -33,40 + 2143: -21,42 + 2150: -21,40 + 2153: -18,40 2154: -18,40 - 2155: -18,40 - 2162: -21,40 - 2163: -17,42 - 15503: 73,-21 - 15504: 74,-21 - 15505: 72,-20 - 18605: 1,3 - 18606: 1,4 - 18607: 1,5 - 18608: 1,6 - 18609: 1,7 - 18610: 1,8 - 18611: 1,8 - 18619: 1,-6 - 18620: 1,-3 - 18621: 4,-2 - 18622: 4,-2 - 18623: 3,-2 - 18624: 3,2 - 18625: 3,2 - 18626: 3,3 - 18627: 3,3 - 18628: 3,4 - 18629: 4,4 - 18630: 4,2 - 18631: 3,0 - 18632: 3,-1 - 18633: 3,-1 - 18634: 3,-1 - 18635: 3,0 - 18636: 4,0 - 18637: 4,0 - 18638: 4,0 - 18639: 1,0 - 18640: 2,-2 - 18641: 3,-2 - 18642: 3,-3 - 18643: 2,-3 - 18644: 3,-3 - 18645: 3,-3 - 18646: 4,-4 - 18647: 2,-5 - 18648: 2,-5 - 18649: 3,-4 - 21317: -16.985758,20.224941 - 21323: -16.952496,18.202333 + 2161: -21,40 + 2162: -17,42 + 15440: 73,-21 + 15441: 74,-21 + 15442: 72,-20 + 18542: 1,3 + 18543: 1,4 + 18544: 1,5 + 18545: 1,6 + 18546: 1,7 + 18547: 1,8 + 18548: 1,8 + 18556: 1,-6 + 18557: 1,-3 + 18558: 4,-2 + 18559: 4,-2 + 18560: 3,-2 + 18561: 3,2 + 18562: 3,2 + 18563: 3,3 + 18564: 3,3 + 18565: 3,4 + 18566: 4,4 + 18567: 4,2 + 18568: 3,0 + 18569: 3,-1 + 18570: 3,-1 + 18571: 3,-1 + 18572: 3,0 + 18573: 4,0 + 18574: 4,0 + 18575: 4,0 + 18576: 1,0 + 18577: 2,-2 + 18578: 3,-2 + 18579: 3,-3 + 18580: 2,-3 + 18581: 3,-3 + 18582: 3,-3 + 18583: 4,-4 + 18584: 2,-5 + 18585: 2,-5 + 18586: 3,-4 + 21249: -16.985758,20.224941 + 21255: -16.952496,18.202333 - node: color: '#169C9C93' id: HalfTileOverlayGreyscale decals: - 1785: -71,-23 - 1786: -70,-23 - 1787: -69,-23 + 1784: -71,-23 + 1785: -70,-23 + 1786: -69,-23 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: - 629: -125,35 - 630: -124,35 - 631: -123,35 - 632: -115,35 - 633: -114,35 - 634: -113,35 - 640: -122,50 - 641: -121,50 - 642: -120,50 - 643: -119,50 - 644: -118,50 - 645: -117,50 - 646: -116,50 + 628: -125,35 + 629: -124,35 + 630: -123,35 + 631: -115,35 + 632: -114,35 + 633: -113,35 + 639: -122,50 + 640: -121,50 + 641: -120,50 + 642: -119,50 + 643: -118,50 + 644: -117,50 + 645: -116,50 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -24862,9 +24759,9 @@ entities: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale decals: - 15653: 96,7 - 15654: 97,7 - 15660: 95,7 + 15590: 96,7 + 15591: 97,7 + 15597: 95,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -24876,9 +24773,9 @@ entities: color: '#B240B4FF' id: HalfTileOverlayGreyscale decals: - 670: -24,-59 - 671: -23,-59 - 672: -22,-59 + 669: -24,-59 + 670: -23,-59 + 671: -22,-59 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -24889,9 +24786,9 @@ entities: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale decals: - 3791: 10,70 - 3792: 11,70 - 3793: 12,70 + 3790: 10,70 + 3791: 11,70 + 3792: 12,70 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -24910,120 +24807,120 @@ entities: color: '#FA750096' id: HalfTileOverlayGreyscale decals: - 1532: -38,54 - 1533: -39,54 + 1531: -38,54 + 1532: -39,54 - node: color: '#169C9C93' id: HalfTileOverlayGreyscale180 decals: - 1793: -70,-29 - 1794: -69,-29 + 1792: -70,-29 + 1793: -69,-29 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 635: -115,43 - 636: -114,43 - 637: -113,43 + 634: -115,43 + 635: -114,43 + 636: -113,43 - node: cleanable: True color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 558: -125,43 - 559: -124,43 - 560: -123,43 - 611: -122,45 - 612: -121,45 - 613: -120,45 - 614: -119,45 - 615: -118,45 - 616: -117,45 - 617: -116,45 + 557: -125,43 + 558: -124,43 + 559: -123,43 + 610: -122,45 + 611: -121,45 + 612: -120,45 + 613: -119,45 + 614: -118,45 + 615: -117,45 + 616: -116,45 - node: color: '#639137BF' id: HalfTileOverlayGreyscale180 decals: - 1558: -39,44 + 1557: -39,44 - node: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale180 decals: - 15651: 95,6 - 15652: 97,6 + 15588: 95,6 + 15589: 97,6 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 175: 30,56 - 176: 27,56 - 177: 26,56 + 174: 30,56 + 175: 27,56 + 176: 26,56 - node: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale180 decals: - 3800: 10,66 - 3801: 11,66 - 3802: 12,66 + 3799: 10,66 + 3800: 11,66 + 3801: 12,66 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 decals: - 1537: -39,52 - 1538: -38,52 + 1536: -39,52 + 1537: -38,52 - node: color: '#169C9C93' id: HalfTileOverlayGreyscale270 decals: - 1788: -72,-24 - 1789: -72,-25 - 1790: -72,-27 - 1791: -72,-28 + 1787: -72,-24 + 1788: -72,-25 + 1789: -72,-27 + 1790: -72,-28 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 638: -123,48 + 637: -123,48 - node: cleanable: True color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: - 561: -120,28 - 562: -120,29 - 563: -120,30 - 564: -120,31 - 565: -120,32 - 566: -120,33 - 567: -120,34 - 568: -120,35 - 569: -120,36 - 570: -120,43 - 571: -120,42 - 572: -120,41 - 573: -120,40 - 574: -120,39 - 575: -120,38 - 576: -120,37 - 599: -120,26 - 600: -120,25 - 601: -120,24 - 602: -120,23 - 603: -120,22 - 604: -120,21 - 618: -123,47 + 560: -120,28 + 561: -120,29 + 562: -120,30 + 563: -120,31 + 564: -120,32 + 565: -120,33 + 566: -120,34 + 567: -120,35 + 568: -120,36 + 569: -120,43 + 570: -120,42 + 571: -120,41 + 572: -120,40 + 573: -120,39 + 574: -120,38 + 575: -120,37 + 598: -120,26 + 599: -120,25 + 600: -120,24 + 601: -120,23 + 602: -120,22 + 603: -120,21 + 617: -123,47 - node: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale270 decals: - 15655: 95,6 - 15659: 95,7 + 15592: 95,6 + 15596: 95,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 170: 25,60 - 171: 25,59 + 169: 25,60 + 170: 25,59 - node: color: '#A5CDE6FF' id: HalfTileOverlayGreyscale270 @@ -25033,70 +24930,70 @@ entities: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale270 decals: - 3786: 10,67 - 3787: 10,66 - 3788: 10,68 - 3789: 10,69 - 3790: 10,70 + 3785: 10,67 + 3786: 10,66 + 3787: 10,68 + 3788: 10,69 + 3789: 10,70 - node: cleanable: True color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 605: -124,23 - 606: -124,22 - 607: -124,21 + 604: -124,23 + 605: -124,22 + 606: -124,21 - node: color: '#FA750096' id: HalfTileOverlayGreyscale270 decals: - 1535: -40,53 + 1534: -40,53 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 639: -115,48 + 638: -115,48 - node: cleanable: True color: '#334E6DC8' id: HalfTileOverlayGreyscale90 decals: - 577: -118,43 - 578: -118,42 - 579: -118,41 - 580: -118,40 - 581: -118,38 - 582: -118,39 - 583: -118,37 - 584: -118,36 - 585: -118,35 - 586: -118,34 - 587: -118,33 - 588: -118,32 - 589: -118,31 - 590: -118,30 - 591: -118,29 - 592: -118,28 - 593: -118,26 - 594: -118,25 - 595: -118,24 - 596: -118,23 - 597: -118,22 - 598: -118,21 - 619: -115,47 - 933: 31,-2 + 576: -118,43 + 577: -118,42 + 578: -118,41 + 579: -118,40 + 580: -118,38 + 581: -118,39 + 582: -118,37 + 583: -118,36 + 584: -118,35 + 585: -118,34 + 586: -118,33 + 587: -118,32 + 588: -118,31 + 589: -118,30 + 590: -118,29 + 591: -118,28 + 592: -118,26 + 593: -118,25 + 594: -118,24 + 595: -118,23 + 596: -118,22 + 597: -118,21 + 618: -115,47 + 932: 31,-2 - node: color: '#8BDA8EFF' id: HalfTileOverlayGreyscale90 decals: - 15656: 97,6 - 15657: 97,7 + 15593: 97,6 + 15594: 97,7 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 172: 31,59 - 173: 31,58 + 171: 31,59 + 172: 31,58 - node: color: '#A5CDE6FF' id: HalfTileOverlayGreyscale90 @@ -25106,32 +25003,32 @@ entities: color: '#DA8BC9FF' id: HalfTileOverlayGreyscale90 decals: - 3794: 12,70 - 3795: 12,69 + 3793: 12,70 + 3794: 12,69 + 3795: 12,68 3796: 12,68 - 3797: 12,68 - 3798: 12,67 - 3799: 12,66 + 3797: 12,67 + 3798: 12,66 - node: cleanable: True color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 608: -122,23 - 609: -122,22 - 610: -122,21 + 607: -122,23 + 608: -122,22 + 609: -122,21 - node: color: '#FA750096' id: HalfTileOverlayGreyscale90 decals: - 1540: -37,53 + 1539: -37,53 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: LoadingArea decals: - 528: -16,77 - 529: -16,84 + 527: -16,77 + 528: -16,84 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -25156,415 +25053,415 @@ entities: decals: 24: 24,53 25: 24,52 - 985: -35,-40 - 1055: -35,-45 - 3129: -2,60 + 984: -35,-40 + 1054: -35,-45 + 3128: -2,60 - node: angle: 3.141592653589793 rad color: '#8BDA8EFF' id: LoadingAreaGreyscale decals: - 15658: 96,6 + 15595: 96,6 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerNe decals: - 15913: 78,10 - 15933: 86,10 - 15961: 93,23 + 15850: 78,10 + 15870: 86,10 + 15898: 93,23 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerNw decals: - 15911: 76,10 - 15914: 80,10 - 15962: 91,23 - 15971: 81,14 + 15848: 76,10 + 15851: 80,10 + 15899: 91,23 + 15908: 81,14 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerSe decals: - 15916: 78,8 - 15932: 86,9 - 15954: 93,12 + 15853: 78,8 + 15869: 86,9 + 15891: 93,12 - node: color: '#DA8B8BFF' id: MiniTileDarkCornerSw decals: - 15915: 76,8 - 15969: 81,12 + 15852: 76,8 + 15906: 81,12 - node: color: '#DA8B8BFF' id: MiniTileDarkEndW decals: - 16004: 91,15 + 15941: 91,15 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerNe decals: - 15924: 78,9 - 15941: 83,10 - 15982: 93,13 - 15986: 93,17 - 15990: 93,21 - 15995: 92,23 + 15861: 78,9 + 15878: 83,10 + 15919: 93,13 + 15923: 93,17 + 15927: 93,21 + 15932: 92,23 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerNw decals: - 15918: 76,9 - 15925: 80,9 - 15940: 83,10 - 15981: 91,14 - 15992: 91,21 - 15996: 92,23 + 15855: 76,9 + 15862: 80,9 + 15877: 83,10 + 15918: 91,14 + 15929: 91,21 + 15933: 92,23 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerSe decals: - 15922: 78,9 - 15983: 93,13 - 15987: 93,17 - 15988: 93,20 - 15989: 93,21 + 15859: 78,9 + 15920: 93,13 + 15924: 93,17 + 15925: 93,20 + 15926: 93,21 - node: color: '#DA8B8BFF' id: MiniTileDarkInnerSw decals: - 15923: 76,9 - 15993: 91,21 + 15860: 76,9 + 15930: 91,21 - node: color: '#DA8B8BFF' id: MiniTileDarkLineE decals: - 15919: 75,9 - 15920: 79,9 - 15955: 93,14 - 15956: 93,16 - 15957: 93,18 - 15958: 93,19 - 15959: 93,20 - 15960: 93,22 - 15994: 90,21 + 15856: 75,9 + 15857: 79,9 + 15892: 93,14 + 15893: 93,16 + 15894: 93,18 + 15895: 93,19 + 15896: 93,20 + 15897: 93,22 + 15931: 90,21 - node: color: '#DA8B8BFF' id: MiniTileDarkLineN decals: - 15908: 83,11 - 15912: 77,10 - 15934: 85,10 - 15935: 84,10 - 15936: 81,10 - 15937: 82,10 - 15938: 83,11 - 15972: 82,14 - 15973: 84,14 - 15974: 83,14 - 15975: 85,14 - 15976: 86,14 - 15977: 87,14 - 15978: 89,14 - 15979: 88,14 - 15980: 90,14 - 16003: 92,15 - 16008: 91,15 - 16009: 93,15 + 15845: 83,11 + 15849: 77,10 + 15871: 85,10 + 15872: 84,10 + 15873: 81,10 + 15874: 82,10 + 15875: 83,11 + 15909: 82,14 + 15910: 84,14 + 15911: 83,14 + 15912: 85,14 + 15913: 86,14 + 15914: 87,14 + 15915: 89,14 + 15916: 88,14 + 15917: 90,14 + 15940: 92,15 + 15945: 91,15 + 15946: 93,15 - node: color: '#DA8B8BFF' id: MiniTileDarkLineS decals: - 15909: 83,11 - 15917: 77,8 - 15926: 80,9 - 15927: 81,9 - 15928: 82,9 - 15929: 83,9 - 15930: 84,9 - 15931: 85,9 - 15939: 83,11 - 15942: 82,12 - 15943: 84,12 - 15944: 85,12 - 15945: 86,12 - 15946: 87,12 - 15947: 89,12 - 15948: 88,12 - 15949: 90,12 - 15950: 91,12 - 15951: 92,12 - 15952: 93,12 - 15997: 92,24 - 16002: 92,15 - 16006: 91,15 - 16007: 93,15 + 15846: 83,11 + 15854: 77,8 + 15863: 80,9 + 15864: 81,9 + 15865: 82,9 + 15866: 83,9 + 15867: 84,9 + 15868: 85,9 + 15876: 83,11 + 15879: 82,12 + 15880: 84,12 + 15881: 85,12 + 15882: 86,12 + 15883: 87,12 + 15884: 89,12 + 15885: 88,12 + 15886: 90,12 + 15887: 91,12 + 15888: 92,12 + 15889: 93,12 + 15934: 92,24 + 15939: 92,15 + 15943: 91,15 + 15944: 93,15 - node: color: '#DA8B8BFF' id: MiniTileDarkLineW decals: - 15921: 79,9 - 15953: 94,13 - 15963: 91,22 - 15964: 91,20 - 15965: 91,19 - 15966: 91,18 - 15967: 91,17 - 15968: 91,16 - 15970: 81,13 - 15984: 94,13 - 15985: 94,17 - 15991: 94,21 + 15858: 79,9 + 15890: 94,13 + 15900: 91,22 + 15901: 91,20 + 15902: 91,19 + 15903: 91,18 + 15904: 91,17 + 15905: 91,16 + 15907: 81,13 + 15921: 94,13 + 15922: 94,17 + 15928: 94,21 - node: color: '#8CB7E8FF' id: MiniTileDiagonalCheckerBOverlay decals: - 9996: 32,-40 - 9997: 33,-40 - 9998: 34,-40 - 9999: 35,-40 - 10000: 36,-40 + 9942: 32,-40 + 9943: 33,-40 + 9944: 34,-40 + 9945: 35,-40 + 9946: 36,-40 - node: color: '#1D1D214C' id: MiniTileDiagonalOverlay decals: - 1185: 4,-51 - 1186: 5,-51 - 1187: 6,-51 - 1188: 7,-51 - 1189: 8,-51 - 1190: 9,-51 - 1191: 10,-51 + 1184: 4,-51 + 1185: 5,-51 + 1186: 6,-51 + 1187: 7,-51 + 1188: 8,-51 + 1189: 9,-51 + 1190: 10,-51 - node: color: '#9D9D975A' id: MiniTileDiagonalOverlay decals: - 1192: 12,-59 - 1193: 12,-60 - 1194: 12,-61 + 1191: 12,-59 + 1192: 12,-60 + 1193: 12,-61 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNe decals: - 15526: 7,-15 + 15463: 7,-15 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerNw decals: - 15527: 9,-15 + 15464: 9,-15 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSe decals: - 15525: 7,-13 + 15462: 7,-13 - node: color: '#FFFFFFFF' id: MiniTileSteelCornerSw decals: - 15524: 9,-13 + 15461: 9,-13 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNe decals: - 15538: 9,-14 - 18511: 8,-13 + 15475: 9,-14 + 18448: 8,-13 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerNw decals: - 15537: 7,-14 - 18510: 8,-13 + 15474: 7,-14 + 18447: 8,-13 - node: cleanable: True color: '#FFFFFFFF' id: MiniTileSteelInnerNw decals: - 923: 30,1 - 924: 28,-2 + 922: 30,1 + 923: 28,-2 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerSe decals: - 15533: 8,-16 - 15534: 9,-14 + 15470: 8,-16 + 15471: 9,-14 - node: cleanable: True color: '#FFFFFFFF' id: MiniTileSteelInnerSe decals: - 922: 28,1 + 921: 28,1 - node: color: '#FFFFFFFF' id: MiniTileSteelInnerSw decals: - 15535: 8,-16 - 15536: 7,-14 + 15472: 8,-16 + 15473: 7,-14 - node: cleanable: True color: '#FFFFFFFF' id: MiniTileSteelInnerSw decals: - 925: 28,-2 + 924: 28,-2 - node: color: '#FFFFFFFF' id: MiniTileSteelLineE decals: - 15530: 7,-16 - 15531: 6,-14 + 15467: 7,-16 + 15468: 6,-14 - node: color: '#DA8B8BFF' id: MiniTileSteelLineN decals: - 15910: 83,11 + 15847: 83,11 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN decals: - 15528: 8,-17 + 15465: 8,-17 - node: color: '#FFFFFFFF' id: MiniTileSteelLineS decals: - 18509: 8,-12 + 18446: 8,-12 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW decals: - 15529: 9,-16 - 15532: 10,-14 + 15466: 9,-16 + 15469: 10,-14 - node: color: '#FFFFFFFF' id: MiniTileWhiteCornerSw decals: - 702: 13,4 + 701: 13,4 - node: color: '#FFFFFFFF' id: MiniTileWhiteEndE decals: - 703: 14,4 + 702: 14,4 - node: color: '#FFFFFFFF' id: MiniTileWhiteEndN decals: - 704: 13,5 + 703: 13,5 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNe decals: - 705: 13,4 + 704: 13,4 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerNw decals: - 13282: 53,-37 + 13219: 53,-37 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSw decals: - 13281: 53,-37 + 13218: 53,-37 - node: color: '#DE3A3A96' id: MiniTileWhiteLineE decals: - 844: 83,11 + 843: 83,11 - node: color: '#EFB341FF' id: MiniTileWhiteLineE decals: - 548: 6,86 + 547: 6,86 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 13280: 52,-37 + 13217: 52,-37 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineN decals: - 5685: 13,3 - 13285: 54,-35 - 13286: 55,-35 + 5684: 13,3 + 13222: 54,-35 + 13223: 55,-35 - node: color: '#DE3A3A96' id: MiniTileWhiteLineW decals: - 845: 83,11 + 844: 83,11 - node: color: '#EFB341FF' id: MiniTileWhiteLineW decals: - 547: 6,86 + 546: 6,86 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineW decals: - 13283: 53,-36 - 13284: 53,-38 + 13220: 53,-36 + 13221: 53,-38 - node: color: '#630000FF' id: Omni decals: - 13594: -32.978848,-78.98036 + 13531: -32.978848,-78.98036 - node: color: '#00000019' id: OriginStationSign4 decals: - 13823: -68,61 - 13824: -68,60 - 13825: -68,59 - 13826: -68,58 - 13827: -67,58 - 13828: -67,57 - 13829: -66,58 - 13830: -66,59 - 13831: -67,59 - 13832: -67,60 - 13833: -66,60 - 13834: -66,61 - 13835: -67,61 - 13836: -65,62 - 13837: -65,61 - 13838: -65,60 - 13841: -65,59 - 13845: -65,58 - 13908: -68,62 - 13909: -67,62 - 13910: -66,62 + 13760: -68,61 + 13761: -68,60 + 13762: -68,59 + 13763: -68,58 + 13764: -67,58 + 13765: -67,57 + 13766: -66,58 + 13767: -66,59 + 13768: -67,59 + 13769: -67,60 + 13770: -66,60 + 13771: -66,61 + 13772: -67,61 + 13773: -65,62 + 13774: -65,61 + 13775: -65,60 + 13778: -65,59 + 13782: -65,58 + 13845: -68,62 + 13846: -67,62 + 13847: -66,62 - node: color: '#00000028' id: OriginStationSign4 decals: - 13940: -72,57 - 13941: -72,58 - 13942: -71,58 - 13943: -71,57 - 13944: -70,57 - 13945: -70,58 - 13946: -72,58 - 13947: -72,57 - 13948: -71,57 - 13949: -71,58 - 13950: -70,58 - 13951: -70,57 - 13952: -72,56 - 13953: -71,56 - 13954: -70,56 - 13955: -72,57 - 13956: -72,58 - 13957: -71,58 - 13958: -71,57 - 13959: -70,57 - 13960: -70,58 - 13961: -72,58 - 13962: -71,58 - 13963: -70,58 - 13964: -71,57 - 13965: -71,58 - 13966: -70,58 - 13967: -72,58 - 13968: -71,56 - 13969: -72,56 - 13970: -71,58 - 13971: -70,58 - 13972: -70,57 + 13877: -72,57 + 13878: -72,58 + 13879: -71,58 + 13880: -71,57 + 13881: -70,57 + 13882: -70,58 + 13883: -72,58 + 13884: -72,57 + 13885: -71,57 + 13886: -71,58 + 13887: -70,58 + 13888: -70,57 + 13889: -72,56 + 13890: -71,56 + 13891: -70,56 + 13892: -72,57 + 13893: -72,58 + 13894: -71,58 + 13895: -71,57 + 13896: -70,57 + 13897: -70,58 + 13898: -72,58 + 13899: -71,58 + 13900: -70,58 + 13901: -71,57 + 13902: -71,58 + 13903: -70,58 + 13904: -72,58 + 13905: -71,56 + 13906: -72,56 + 13907: -71,58 + 13908: -70,58 + 13909: -70,57 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale @@ -25579,7 +25476,7 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 628: 31,-39 + 627: 31,-39 - node: color: '#A5CDE6FF' id: QuarterTileOverlayGreyscale180 @@ -25590,7 +25487,7 @@ entities: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 160: -2,52 + 159: -2,52 - node: color: '#A5CDE6FF' id: QuarterTileOverlayGreyscale270 @@ -25610,154 +25507,143 @@ entities: color: '#FFFFFFFF' id: Remains decals: - 260: 37,-56 - 13593: -33.82276,-75.75149 - 16014: 99.21471,-3.5288568 - 18718: -42.945545,-64.87067 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Remains - decals: - 460: -34.03625,-32.96285 + 259: 37,-56 + 13530: -33.82276,-75.75149 + 15951: 99.21471,-3.5288568 + 18655: -42.945545,-64.87067 - node: color: '#FFFFFFFF' id: Rock01 decals: - 18658: -4,-5 - 18664: 1,4 + 18595: -4,-5 + 18601: 1,4 - node: color: '#FFFFFFFF' id: Rock02 decals: - 885: -36,48 - 18659: 3,-1 + 884: -36,48 + 18596: 3,-1 - node: color: '#FFFFFFFF' id: Rock03 decals: - 18661: -6,0 - 18665: -4,8 + 18598: -6,0 + 18602: -4,8 - node: color: '#FFFFFFFF' id: Rock04 decals: - 886: -36,50 - 18660: 3,4 - 18666: 2,2 + 885: -36,50 + 18597: 3,4 + 18603: 2,2 - node: color: '#FFFFFFFF' id: Rock05 decals: - 18662: -6,-6 - 18667: -3,-2 + 18599: -6,-6 + 18604: -3,-2 - node: color: '#FFFFFFFF' id: Rock06 decals: - 477: 0,0 - 15801: 82,3 - 18663: 3,-3 + 476: 0,0 + 15738: 82,3 + 18600: 3,-3 - node: color: '#000000FF' id: Rust decals: + 2584: -19,41 2585: -19,41 2586: -19,41 2587: -19,41 - 2588: -19,41 + 2588: -19,40 2589: -19,40 2590: -19,40 - 2591: -19,40 + 2591: -18,41 2592: -18,41 - 2593: -18,41 + 2593: -19,42 2594: -19,42 - 2595: -19,42 + 2595: -20,41 2596: -20,41 2597: -20,41 2598: -20,41 - 2599: -20,41 - 2600: -19,42 - 2601: -18,41 - 2602: -19,40 + 2599: -19,42 + 2600: -18,41 + 2601: -19,40 - node: cleanable: True color: '#FFFFFF5D' id: Rust decals: - 16358: -71,-36 - 16359: -67,-35 - 16360: -63,-35 - 16361: -65,-37 - 16362: -65,-37 + 16295: -71,-36 + 16296: -67,-35 + 16297: -63,-35 + 16298: -65,-37 + 16299: -65,-37 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 552: -94,-8 + 551: -94,-8 - node: color: '#FFFFFFFF' id: StandClear decals: - 550: -93,-9 + 549: -93,-9 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 551: -92,-8 - 986: -38,-40 - 1062: -38,-45 + 550: -92,-8 + 985: -38,-40 + 1061: -38,-45 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: StandClear decals: - 553: -93,-7 + 552: -93,-7 - node: color: '#169C9C93' id: ThreeQuarterTileOverlayGreyscale decals: - 1784: -72,-23 + 1783: -72,-23 - node: color: '#B240B4FF' id: ThreeQuarterTileOverlayGreyscale decals: - 669: -25,-59 - - node: - color: '#C3E6A5FF' - id: ThreeQuarterTileOverlayGreyscale - decals: - 111: 38,-73 + 668: -25,-59 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale decals: - 1534: -40,54 + 1533: -40,54 - node: cleanable: True color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale180 decals: - 930: 30,0 - 931: 31,-3 + 929: 30,0 + 930: 31,-3 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: 62: 11,33 - 174: 31,56 + 173: 31,56 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1539: -37,52 + 1538: -37,52 - node: color: '#169C9C93' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1792: -72,-29 + 1791: -72,-29 - node: color: '#C3E6A5FF' id: ThreeQuarterTileOverlayGreyscale270 @@ -25767,689 +25653,670 @@ entities: color: '#D5188D99' id: ThreeQuarterTileOverlayGreyscale270 decals: - 503: 9,66 + 502: 9,66 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1536: -40,52 + 1535: -40,52 - node: cleanable: True color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 decals: - 929: 30,-4 - 932: 31,-1 + 928: 30,-4 + 931: 31,-1 - node: color: '#B240B4FF' id: ThreeQuarterTileOverlayGreyscale90 decals: - 673: -21,-59 + 672: -21,-59 - node: cleanable: True color: '#C27D3BFF' id: Tunnel decals: - 987: -38.002388,-36.958828 + 986: -38.002388,-36.958828 - node: color: '#FFFFFFFF' id: WarnBox decals: - 13260: -58,23 - 13261: -58,24 + 13197: -58,23 + 13198: -58,24 - node: color: '#FFFFFFFF' id: WarnCorner decals: - 180: 26,57 - - node: - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 121: 28,-61 - 178: 25,56 + 179: 26,57 - node: - angle: 3.141592653589793 rad color: '#FFFFFFFF' id: WarnCornerFlipped decals: - 120: 27,-60 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 122: 27,-61 + 177: 25,56 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE decals: - 1195: 7,-49 + 1194: 7,-49 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNW decals: - 1196: 5,-49 + 1195: 5,-49 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSE decals: - 1199: 7,-50 + 1198: 7,-50 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSW decals: - 1198: 5,-50 + 1197: 5,-50 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 680: -27,-50 - 687: -9,-46 - 692: -27,-54 - 1797: -71,-27 - 1802: -71,-23 - 13269: -52,29 + 679: -27,-50 + 686: -9,-46 + 691: -27,-54 + 1796: -71,-27 + 1801: -71,-23 + 13206: -52,29 - node: cleanable: True color: '#FFFFFFFF' id: WarnCornerNE decals: - 831: -48,55 + 830: -48,55 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 681: -31,-50 - 688: -11,-46 - 691: -30,-54 - 1796: -72,-27 - 1801: -72,-23 - 13270: -54,29 + 680: -31,-50 + 687: -11,-46 + 690: -30,-54 + 1795: -72,-27 + 1800: -72,-23 + 13207: -54,29 - node: cleanable: True color: '#FFFFFFFF' id: WarnCornerNW decals: - 832: -53,55 - 843: -57,51 + 831: -53,55 + 842: -57,51 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 689: -9,-48 - 694: -27,-55 - 1800: -71,-25 - 13268: -52,27 + 688: -9,-48 + 693: -27,-55 + 1799: -71,-25 + 13205: -52,27 - node: cleanable: True color: '#FFFFFFFF' id: WarnCornerSE decals: - 810: -48,46 + 809: -48,46 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 686: -11,-48 - 693: -30,-55 - 1795: -72,-29 - 1803: -72,-25 - 13267: -54,27 + 685: -11,-48 + 692: -30,-55 + 1794: -72,-29 + 1802: -72,-25 + 13204: -54,27 - node: cleanable: True color: '#FFFFFFFF' id: WarnCornerSW decals: - 809: -57,46 + 808: -57,46 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE decals: - 6203: -14,-19 - 13256: -63,21 - 18167: -52,-5 - 18182: -56,-12 - 18192: -51,-10 - 18280: -74,-4 - 18286: -73,-3 - 18287: -71,-3 - 18288: -69,-3 + 6202: -14,-19 + 13193: -63,21 + 18104: -52,-5 + 18119: -56,-12 + 18129: -51,-10 + 18217: -74,-4 + 18223: -73,-3 + 18224: -71,-3 + 18225: -69,-3 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 6204: -10,-19 - 18183: -54,-16 - 18193: -49,-10 - 18281: -66,-4 - 18284: -67,-3 - 18285: -71,-3 + 6203: -10,-19 + 18120: -54,-16 + 18130: -49,-10 + 18218: -66,-4 + 18221: -67,-3 + 18222: -71,-3 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE decals: - 6208: -14,-17 - 13255: -63,27 - 18168: -52,0 - 18170: -56,-4 - 18191: -51,-6 - 18202: -55,9 - 18279: -74,2 - 18289: -73,1 - 18290: -71,1 - 18291: -69,1 + 6207: -14,-17 + 13192: -63,27 + 18105: -52,0 + 18107: -56,-4 + 18128: -51,-6 + 18139: -55,9 + 18216: -74,2 + 18226: -73,1 + 18227: -71,1 + 18228: -69,1 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 6209: -10,-17 - 18169: -54,0 - 18190: -49,-6 - 18203: -50,9 - 18282: -66,2 - 18283: -67,1 - 18292: -71,1 - 18293: -69,1 + 6208: -10,-17 + 18106: -54,0 + 18127: -49,-6 + 18140: -50,9 + 18219: -66,2 + 18220: -67,1 + 18229: -71,1 + 18230: -69,1 - node: cleanable: True color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 945: 35,37 + 944: 35,37 - node: color: '#DE3A3A96' id: WarnLineE decals: - 753: 59,19 - 754: 59,18 - 755: 59,17 - 756: 59,16 - 757: 59,15 - 758: 60,15 - 759: 60,16 - 760: 60,17 - 761: 60,18 - 762: 60,19 - 763: 61,19 - 764: 61,18 - 765: 61,17 - 766: 61,16 - 767: 61,15 - 768: 62,15 - 769: 62,16 - 770: 62,17 - 771: 62,18 - 772: 62,19 - 773: 63,19 - 774: 63,18 - 775: 63,17 - 776: 63,16 - 777: 63,15 - 778: 64,15 - 779: 64,16 - 780: 64,17 - 781: 64,18 - 782: 64,19 - 783: 65,19 - 784: 65,18 - 785: 65,17 - 786: 65,16 - 787: 65,15 - 788: 66,15 - 789: 66,16 - 790: 66,17 - 791: 66,18 - 792: 66,19 + 752: 59,19 + 753: 59,18 + 754: 59,17 + 755: 59,16 + 756: 59,15 + 757: 60,15 + 758: 60,16 + 759: 60,17 + 760: 60,18 + 761: 60,19 + 762: 61,19 + 763: 61,18 + 764: 61,17 + 765: 61,16 + 766: 61,15 + 767: 62,15 + 768: 62,16 + 769: 62,17 + 770: 62,18 + 771: 62,19 + 772: 63,19 + 773: 63,18 + 774: 63,17 + 775: 63,16 + 776: 63,15 + 777: 64,15 + 778: 64,16 + 779: 64,17 + 780: 64,18 + 781: 64,19 + 782: 65,19 + 783: 65,18 + 784: 65,17 + 785: 65,16 + 786: 65,15 + 787: 66,15 + 788: 66,16 + 789: 66,17 + 790: 66,18 + 791: 66,19 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 685: -27,-51 - 1798: -71,-28 - 6173: -13,-16 - 6174: -13,-15 - 6175: -13,-14 - 6176: -13,-13 - 6186: -15,-16 - 6187: -15,-15 - 6188: -15,-14 + 684: -27,-51 + 1797: -71,-28 + 6172: -13,-16 + 6173: -13,-15 + 6174: -13,-14 + 6175: -13,-13 + 6185: -15,-16 + 6186: -15,-15 + 6187: -15,-14 + 6188: -15,-13 6189: -15,-13 - 6190: -15,-13 - 6191: -11,-16 - 6192: -11,-15 - 6193: -11,-14 - 6194: -11,-13 - 13250: -63,22 - 13251: -63,23 - 13252: -63,24 - 13253: -63,25 - 13254: -63,26 - 13271: -52,28 - 18141: -52,-1 - 18142: -52,-2 - 18143: -52,-2 - 18144: -52,-4 - 18145: -52,-3 - 18184: -51,-9 - 18185: -51,-8 - 18186: -51,-7 - 18253: -74,-3 - 18254: -74,-2 - 18255: -74,-1 - 18256: -74,0 - 18257: -74,1 - 18270: -73,0 - 18271: -73,-1 - 18272: -73,-2 - 19316: 55,4 - 19317: 55,5 - 19322: 69,0 - 19326: 69,-1 - 19327: 69,1 + 6190: -11,-16 + 6191: -11,-15 + 6192: -11,-14 + 6193: -11,-13 + 13187: -63,22 + 13188: -63,23 + 13189: -63,24 + 13190: -63,25 + 13191: -63,26 + 13208: -52,28 + 18078: -52,-1 + 18079: -52,-2 + 18080: -52,-2 + 18081: -52,-4 + 18082: -52,-3 + 18121: -51,-9 + 18122: -51,-8 + 18123: -51,-7 + 18190: -74,-3 + 18191: -74,-2 + 18192: -74,-1 + 18193: -74,0 + 18194: -74,1 + 18207: -73,0 + 18208: -73,-1 + 18209: -73,-2 + 19253: 55,4 + 19254: 55,5 + 19259: 69,0 + 19263: 69,-1 + 19264: 69,1 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineE decals: - 620: -116,19 - 621: -116,18 - 625: -116,17 - 823: -48,47 - 824: -48,48 - 825: -48,49 - 826: -48,50 - 827: -48,51 - 828: -48,52 - 829: -48,53 - 830: -48,54 + 619: -116,19 + 620: -116,18 + 624: -116,17 + 822: -48,47 + 823: -48,48 + 824: -48,49 + 825: -48,50 + 826: -48,51 + 827: -48,52 + 828: -48,53 + 829: -48,54 - node: color: '#52B4E9FF' id: WarnLineGreyscaleE decals: - 23150: 14,-26 - 23151: 14,-25 - 23840: 0,-44 - 23841: 0,-51 + 23079: 14,-26 + 23080: 14,-25 + 23760: 0,-44 + 23761: 0,-51 - node: color: '#8CB7E8FF' id: WarnLineGreyscaleE decals: - 21307: -18,14 - 21308: -18,15 + 21239: -18,14 + 21240: -18,15 - node: color: '#DE3A3AFF' id: WarnLineGreyscaleE decals: - 21976: 10,30 - 22567: 32,6 - 22568: 32,4 - 24057: 2,-76 - 24058: 2,-75 - 24059: 2,-67 - 24060: 2,-66 - 24061: 1,-60 + 21908: 10,30 + 22499: 32,6 + 22500: 32,4 + 23976: 2,-76 + 23977: 2,-75 + 23978: 2,-67 + 23979: 2,-66 + 23980: 1,-60 - node: color: '#334E6DFF' id: WarnLineGreyscaleN decals: - 22577: 8,-8 - 22578: 10,-8 - 22579: 11,-8 - 22606: -10,-8 + 22509: 8,-8 + 22510: 10,-8 + 22511: 11,-8 + 22538: -10,-8 - node: color: '#3EB388FF' id: WarnLineGreyscaleN decals: - 21683: -54,18 - 21684: -53,18 + 21615: -54,18 + 21616: -53,18 - node: color: '#A46106FF' id: WarnLineGreyscaleN decals: - 21906: 14,24 - 21907: 15,24 - 21908: 16,24 - 21909: 4,24 - 21910: 5,24 - 21911: 7,24 - 21912: 8,24 + 21838: 14,24 + 21839: 15,24 + 21840: 16,24 + 21841: 4,24 + 21842: 5,24 + 21843: 7,24 + 21844: 8,24 - node: color: '#DE3A3AFF' id: WarnLineGreyscaleN decals: - 23227: 12,-34 - 23898: 2,58 + 23155: 12,-34 + 23817: 2,58 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 1197: 6,-49 + 1196: 6,-49 + - node: + color: '#439909FF' + id: WarnLineGreyscaleS + decals: + 24625: 27,-58 - node: color: '#52B4E9FF' id: WarnLineGreyscaleS decals: - 23879: 6,67 + 23798: 6,67 - node: color: '#D381C9FF' id: WarnLineGreyscaleS decals: - 22629: -6,-28 - 22641: -15,-28 - 22642: -13,-28 + 22561: -6,-28 + 22573: -15,-28 + 22574: -13,-28 - node: color: '#DE3A3AFF' id: WarnLineGreyscaleS decals: - 21984: 13,34 - 23128: 13,-28 - 23129: 11,-28 + 21916: 13,34 + 23060: 13,-28 + 23061: 11,-28 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 1200: 6,-50 + 1199: 6,-50 - node: color: '#334E6DFF' id: WarnLineGreyscaleW decals: - 22580: 16,-4 + 22512: 16,-4 - node: color: '#3EB388FF' id: WarnLineGreyscaleW decals: - 21874: -43,23 - 21875: -44,18 + 21806: -43,23 + 21807: -44,18 - node: color: '#52B4E9FF' id: WarnLineGreyscaleW decals: - 24083: -3,-60 + 24002: -3,-60 - node: color: '#8CB7E8FF' id: WarnLineGreyscaleW decals: - 21309: 16,14 - 21310: 16,15 + 21241: 16,14 + 21242: 16,15 - node: color: '#9FED58FF' id: WarnLineGreyscaleW decals: - 23913: -23,50 - 23914: -23,51 - 23915: -23,47 - 23916: -23,48 + 23832: -23,50 + 23833: -23,51 + 23834: -23,47 + 23835: -23,48 - node: color: '#D381C9FF' id: WarnLineGreyscaleW decals: - 22615: -2,-48 - 22620: -2,-41 - 22621: -2,-40 - 22628: -3,-35 + 22547: -2,-48 + 22552: -2,-41 + 22553: -2,-40 + 22560: -3,-35 - node: color: '#DE3A3AFF' id: WarnLineGreyscaleW decals: - 21626: -44,9 - 23120: -16,-24 - 23130: 16,-31 + 21558: -44,9 + 23052: -16,-24 + 23062: 16,-31 - node: color: '#EFB341FF' id: WarnLineGreyscaleW decals: - 21617: -45,12 - 21618: -45,14 + 21549: -45,12 + 21550: -45,14 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 653: 65,12 - 654: 64,12 - 695: -29,-55 - 696: -28,-55 - 744: 66,12 - 5168: 33,37 - 6205: -13,-17 - 6206: -12,-17 - 6207: -11,-17 - 13257: -62,27 - 13258: -61,27 - 13259: -60,27 - 13266: -59,27 - 13272: -53,27 - 18132: -59,0 - 18133: -58,0 - 18134: -57,0 - 18135: -57,0 - 18136: -55,0 - 18137: -56,0 - 18138: -51,0 - 18139: -50,0 - 18140: -49,0 - 18171: -55,-4 - 18194: -54,9 - 18195: -53,9 - 18196: -52,9 - 18197: -51,9 - 18246: -73,2 - 18247: -72,2 - 18248: -71,2 - 18249: -70,2 - 18250: -69,2 - 18251: -68,2 - 18252: -67,2 - 18276: -72,1 - 18277: -70,1 - 18278: -68,1 - 21438: -71,1 - 21439: -69,1 + 652: 65,12 + 653: 64,12 + 694: -29,-55 + 695: -28,-55 + 743: 66,12 + 5167: 33,37 + 6204: -13,-17 + 6205: -12,-17 + 6206: -11,-17 + 13194: -62,27 + 13195: -61,27 + 13196: -60,27 + 13203: -59,27 + 13209: -53,27 + 18069: -59,0 + 18070: -58,0 + 18071: -57,0 + 18072: -57,0 + 18073: -55,0 + 18074: -56,0 + 18075: -51,0 + 18076: -50,0 + 18077: -49,0 + 18108: -55,-4 + 18131: -54,9 + 18132: -53,9 + 18133: -52,9 + 18134: -51,9 + 18183: -73,2 + 18184: -72,2 + 18185: -71,2 + 18186: -70,2 + 18187: -69,2 + 18188: -68,2 + 18189: -67,2 + 18213: -72,1 + 18214: -70,1 + 18215: -68,1 + 21370: -71,1 + 21371: -69,1 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineN decals: - 815: -56,46 - 816: -55,46 - 817: -54,46 - 818: -53,46 - 819: -52,46 - 820: -50,46 - 821: -49,46 - 822: -51,46 - 943: 34,37 - 944: 33,37 + 814: -56,46 + 815: -55,46 + 816: -54,46 + 817: -53,46 + 818: -52,46 + 819: -50,46 + 820: -49,46 + 821: -51,46 + 942: 34,37 + 943: 33,37 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 679: -31,-51 - 1799: -72,-28 - 1804: -72,-24 - 6177: -11,-16 - 6178: -11,-15 + 678: -31,-51 + 1798: -72,-28 + 1803: -72,-24 + 6176: -11,-16 + 6177: -11,-15 + 6178: -11,-14 6179: -11,-14 - 6180: -11,-14 - 6181: -11,-13 - 6182: -13,-16 - 6183: -13,-15 - 6184: -13,-14 - 6185: -13,-13 - 6195: -9,-16 - 6196: -9,-15 + 6180: -11,-13 + 6181: -13,-16 + 6182: -13,-15 + 6183: -13,-14 + 6184: -13,-13 + 6194: -9,-16 + 6195: -9,-15 + 6196: -9,-14 6197: -9,-14 - 6198: -9,-14 - 6199: -9,-13 - 6213: -15,-16 - 6214: -15,-15 - 6215: -15,-14 - 6216: -15,-13 - 13273: -54,28 - 18128: -54,-4 - 18129: -54,-3 - 18130: -54,-2 - 18131: -54,-1 - 18166: -54,-4 - 18177: -54,-15 - 18178: -54,-14 - 18179: -54,-13 - 18180: -54,-12 - 18187: -49,-9 - 18188: -49,-8 - 18189: -49,-7 - 18258: -66,1 - 18259: -66,0 - 18260: -66,-1 - 18261: -66,-2 - 18262: -66,-3 - 18263: -67,0 - 18264: -67,-1 - 18265: -67,-2 - 18266: -67,-2 - 18267: -67,-1 - 18268: -67,0 - 18269: -67,-1 + 6198: -9,-13 + 6212: -15,-16 + 6213: -15,-15 + 6214: -15,-14 + 6215: -15,-13 + 13210: -54,28 + 18065: -54,-4 + 18066: -54,-3 + 18067: -54,-2 + 18068: -54,-1 + 18103: -54,-4 + 18114: -54,-15 + 18115: -54,-14 + 18116: -54,-13 + 18117: -54,-12 + 18124: -49,-9 + 18125: -49,-8 + 18126: -49,-7 + 18195: -66,1 + 18196: -66,0 + 18197: -66,-1 + 18198: -66,-2 + 18199: -66,-3 + 18200: -67,0 + 18201: -67,-1 + 18202: -67,-2 + 18203: -67,-2 + 18204: -67,-1 + 18205: -67,0 + 18206: -67,-1 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineS decals: - 811: -57,47 - 812: -57,48 - 813: -57,49 - 814: -57,50 - 837: -53,54 - 838: -53,53 - 839: -53,52 - 940: 35,34 - 941: 35,35 - 942: 35,36 + 810: -57,47 + 811: -57,48 + 812: -57,49 + 813: -57,50 + 836: -53,54 + 837: -53,53 + 838: -53,52 + 939: 35,34 + 940: 35,35 + 941: 35,36 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 651: 65,12 - 652: 64,12 - 655: 63,12 - 656: 62,12 - 674: -27,-52 - 675: -28,-52 - 676: -29,-52 - 677: -30,-52 - 678: -31,-52 - 682: -28,-50 - 683: -29,-50 - 684: -30,-50 - 690: -10,-49 - 697: -28,-54 - 698: -29,-54 - 743: 66,12 - 751: 78,22 - 752: 77,22 - 6200: -13,-19 - 6201: -12,-19 - 6202: -11,-19 - 13274: -53,29 - 18172: -59,-16 - 18173: -58,-16 - 18174: -57,-16 - 18175: -56,-16 - 18176: -55,-16 - 18181: -55,-12 - 18198: -55,17 - 18199: -54,17 - 18200: -53,17 - 18201: -52,17 - 18215: -55,17 - 18216: -52,17 - 18239: -73,-4 - 18240: -72,-4 - 18241: -71,-4 - 18242: -70,-4 - 18243: -69,-4 - 18244: -68,-4 - 18245: -67,-4 - 18273: -72,-3 - 18274: -70,-3 - 18275: -68,-3 - 21261: 58,1 - 21262: 62,1 - 21263: 66,1 - 21436: -71,-3 - 21437: -69,-3 + 650: 65,12 + 651: 64,12 + 654: 63,12 + 655: 62,12 + 673: -27,-52 + 674: -28,-52 + 675: -29,-52 + 676: -30,-52 + 677: -31,-52 + 681: -28,-50 + 682: -29,-50 + 683: -30,-50 + 689: -10,-49 + 696: -28,-54 + 697: -29,-54 + 742: 66,12 + 750: 78,22 + 751: 77,22 + 6199: -13,-19 + 6200: -12,-19 + 6201: -11,-19 + 13211: -53,29 + 18109: -59,-16 + 18110: -58,-16 + 18111: -57,-16 + 18112: -56,-16 + 18113: -55,-16 + 18118: -55,-12 + 18135: -55,17 + 18136: -54,17 + 18137: -53,17 + 18138: -52,17 + 18152: -55,17 + 18153: -52,17 + 18176: -73,-4 + 18177: -72,-4 + 18178: -71,-4 + 18179: -70,-4 + 18180: -69,-4 + 18181: -68,-4 + 18182: -67,-4 + 18210: -72,-3 + 18211: -70,-3 + 18212: -68,-3 + 21193: 58,1 + 21194: 62,1 + 21195: 66,1 + 21368: -71,-3 + 21369: -69,-3 - node: cleanable: True color: '#FFFFFFFF' id: WarnLineW decals: - 833: -52,55 - 834: -51,55 - 835: -50,55 - 836: -49,55 - 840: -54,51 - 841: -55,51 - 842: -56,51 + 832: -52,55 + 833: -51,55 + 834: -50,55 + 835: -49,55 + 839: -54,51 + 840: -55,51 + 841: -56,51 - node: angle: -4.71238898038469 rad color: '#FFFFFFFF' id: WarningLine decals: - 196: 26,60 - 197: 26,59 - 198: 26,58 - 199: 30,57 - 200: 30,58 + 195: 26,60 + 196: 26,59 + 197: 26,58 + 198: 30,57 + 199: 30,58 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: WarningLine decals: - 185: 26,61 - 186: 27,61 - 187: 28,61 - 188: 29,61 - 189: 30,61 - 190: 31,61 - 201: 27,58 - 202: 28,58 - 203: 29,58 - 204: 30,58 + 184: 26,61 + 185: 27,61 + 186: 28,61 + 187: 29,61 + 188: 30,61 + 189: 31,61 + 200: 27,58 + 201: 28,58 + 202: 29,58 + 203: 30,58 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLine decals: - 181: 26,58 - 182: 26,59 - 183: 26,60 - 184: 26,61 + 180: 26,58 + 181: 26,59 + 182: 26,60 + 183: 26,61 - node: color: '#FFFFFFFF' id: WarningLine decals: - 114: 30,-61 - 115: 31,-61 - 116: 32,-61 - 179: 24,56 - 191: 31,61 - 192: 30,61 - 193: 29,61 - 194: 28,61 - 195: 27,61 + 178: 24,56 + 190: 31,61 + 191: 30,61 + 192: 29,61 + 193: 28,61 + 194: 27,61 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLine decals: 94: -24,-55 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 117: 30,-61 - 118: 31,-61 - 119: 32,-61 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -26461,2289 +26328,2188 @@ entities: color: '#151C2553' id: WoodTrimThinCornerNe decals: - 229: 24,2 + 228: 24,2 - node: color: '#DABC8BFF' id: WoodTrimThinCornerNe decals: - 2573: -10,46 - 2628: -2,42 - 2722: -3,54 - 3975: -34,63 - 4127: -26,23 - 5677: 14,11 - 5686: 14,2 - 5726: 11,7 - 5741: 11,3 - 5827: -15,-4 - 5841: -9,-3 - 5871: -9,5 - 5881: -9,0 - 5911: -8,11 - 5936: 1,14 - 6457: -22,-4 - 6478: -34,2 - 6513: -26,2 - 6528: -22,-11 + 2572: -10,46 + 2627: -2,42 + 2721: -3,54 + 3974: -34,63 + 4126: -26,23 + 5676: 14,11 + 5685: 14,2 + 5725: 11,7 + 5740: 11,3 + 5826: -15,-4 + 5840: -9,-3 + 5870: -9,5 + 5880: -9,0 + 5910: -8,11 + 5935: 1,14 + 6456: -22,-4 + 6477: -34,2 + 6512: -26,2 + 6527: -22,-11 + 6582: -22,-5 6583: -22,-5 - 6584: -22,-5 - 6757: -31,-12 - 7242: 37,2 - 7272: 36,1 - 7331: 33,11 - 7723: 43,22 - 7724: 43,23 - 7731: 36,22 - 7753: 36,21 - 8523: 53,-23 - 8537: 49,-23 - 8550: 45,-23 - 10246: 37,-29 - 10247: 38,-28 - 10288: 24,-51 - 10488: 18,-49 - 10698: 74,-37 - 10709: 42,-50 - 10723: 51,-54 - 10791: 45,-51 - 11159: -49,-43 - 11191: -46,-43 - 11206: -46,-47 - 12327: -17,-46 - 12464: -15,-74 - 12506: -13,-79 - 12513: -21,-80 - 13356: -38,-66 - 13370: -36,-65 - 13395: -30,-65 - 13567: -31,-77 - 13914: -65,62 - 15454: -6,-77 - 15466: -1,-77 - 15695: 97,5 - 15725: 96,3 - 15811: 89,7 - 15888: 98,13 - 15895: 98,14 - 18109: -63,18 - 18127: -57,7 - 18397: -58,-44 - 18547: 1,-11 - 18548: 2,-12 - 18818: -112,33 - 19502: -14,29 - 19514: 53,27 - 19517: 56,27 - 19635: 57,30 - 19647: 55,31 - 19839: -24,13 - 19853: -25,12 + 6756: -31,-12 + 7241: 37,2 + 7271: 36,1 + 7330: 33,11 + 7722: 43,22 + 7723: 43,23 + 7730: 36,22 + 7752: 36,21 + 8522: 53,-23 + 8536: 49,-23 + 8549: 45,-23 + 10192: 37,-29 + 10193: 38,-28 + 10234: 24,-51 + 10426: 18,-49 + 10636: 74,-37 + 10647: 42,-50 + 10661: 51,-54 + 10729: 45,-51 + 11097: -49,-43 + 11129: -46,-43 + 11144: -46,-47 + 12265: -17,-46 + 12401: -15,-74 + 12443: -13,-79 + 12450: -21,-80 + 13293: -38,-66 + 13307: -36,-65 + 13332: -30,-65 + 13504: -31,-77 + 13851: -65,62 + 15391: -6,-77 + 15403: -1,-77 + 15632: 97,5 + 15662: 96,3 + 15748: 89,7 + 15825: 98,13 + 15832: 98,14 + 18046: -63,18 + 18064: -57,7 + 18334: -58,-44 + 18484: 1,-11 + 18485: 2,-12 + 18755: -112,33 + 19438: -14,29 + 19450: 53,27 + 19453: 56,27 + 19571: 57,30 + 19583: 55,31 + 19775: -24,13 + 19789: -25,12 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 1683: -49,-43 + 1682: -49,-43 - node: color: '#DABC8BFF' id: WoodTrimThinCornerNw decals: - 2629: -4,42 - 3974: -39,63 - 4126: -27,23 - 4131: -29,21 - 5655: 6,11 - 5690: 12,2 - 5725: 7,7 - 5740: 7,3 - 5826: -16,-4 - 5844: -13,-3 - 5859: -14,5 - 5904: -16,11 - 5935: -3,14 - 6440: -30,2 - 6441: -35,2 - 6442: -31,-4 - 6495: -35,2 - 6511: -35,2 - 6512: -30,2 - 6527: -26,-11 + 2628: -4,42 + 3973: -39,63 + 4125: -27,23 + 4130: -29,21 + 5654: 6,11 + 5689: 12,2 + 5724: 7,7 + 5739: 7,3 + 5825: -16,-4 + 5843: -13,-3 + 5858: -14,5 + 5903: -16,11 + 5934: -3,14 + 6439: -30,2 + 6440: -35,2 + 6441: -31,-4 + 6494: -35,2 + 6510: -35,2 + 6511: -30,2 + 6526: -26,-11 + 6580: -26,-5 6581: -26,-5 - 6582: -26,-5 - 6597: -26,-5 - 6756: -34,-12 - 7241: 33,2 - 7271: 34,1 - 7324: 29,11 - 7725: 39,23 - 7726: 39,22 - 7727: 38,22 - 7728: 34,22 - 7754: 34,21 - 8522: 51,-23 - 8543: 47,-23 - 8549: 43,-23 - 10244: 34,-28 - 10245: 35,-29 - 10487: 14,-49 - 10697: 72,-37 - 10722: 49,-54 - 10790: 44,-51 - 11158: -56,-43 - 12462: -16,-79 - 12463: -19,-74 - 12512: -23,-80 - 12641: -4,40 - 12686: -41,29 - 12696: -39,26 - 13364: -41,-66 - 13394: -34,-65 - 13568: -35,-77 - 13911: -68,62 - 15452: -8,-77 - 15453: -3,-77 - 15685: 91,5 - 15722: 93,3 - 15803: 81,7 - 15892: 95,14 - 16147: -72,-40 - 16448: -41,-9 - 18106: -66,18 - 18126: -58,7 - 18542: -3,-11 - 18549: -4,-12 - 18817: -115,33 - 19515: 52,27 - 19516: 55,27 - 19631: 51,30 - 19646: 53,31 - 19840: -27,13 - 19852: -26,12 + 6596: -26,-5 + 6755: -34,-12 + 7240: 33,2 + 7270: 34,1 + 7323: 29,11 + 7724: 39,23 + 7725: 39,22 + 7726: 38,22 + 7727: 34,22 + 7753: 34,21 + 8521: 51,-23 + 8542: 47,-23 + 8548: 43,-23 + 10190: 34,-28 + 10191: 35,-29 + 10425: 14,-49 + 10635: 72,-37 + 10660: 49,-54 + 10728: 44,-51 + 11096: -56,-43 + 12399: -16,-79 + 12400: -19,-74 + 12449: -23,-80 + 12578: -4,40 + 12623: -41,29 + 12633: -39,26 + 13301: -41,-66 + 13331: -34,-65 + 13505: -35,-77 + 13848: -68,62 + 15389: -8,-77 + 15390: -3,-77 + 15622: 91,5 + 15659: 93,3 + 15740: 81,7 + 15829: 95,14 + 16084: -72,-40 + 16385: -41,-9 + 18043: -66,18 + 18063: -58,7 + 18479: -3,-11 + 18486: -4,-12 + 18754: -115,33 + 19451: 52,27 + 19452: 55,27 + 19567: 51,30 + 19582: 53,31 + 19776: -27,13 + 19788: -26,12 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 1580: -41,29 - 1678: -56,-43 + 1579: -41,29 + 1677: -56,-43 - node: cleanable: True color: '#5F697828' id: WoodTrimThinCornerSe decals: - 214: 12,-53 + 213: 12,-53 - node: color: '#DABC8BFF' id: WoodTrimThinCornerSe decals: - 2574: -10,36 - 2723: -3,53 - 3979: -34,59 - 4123: -22,19 - 5658: 14,7 - 5694: 14,0 - 5731: 11,5 - 5743: 11,0 - 5830: -15,-6 - 5838: -9,-6 - 5872: -9,3 - 5873: -9,-1 - 5876: -11,-2 - 5901: -9,7 - 5902: -8,8 - 5940: 1,12 - 6467: -27,-9 - 6494: -34,-9 - 6514: -26,0 - 6530: -22,-13 - 6580: -22,-9 - 6758: -31,-15 - 7243: 37,-2 - 7277: 36,-1 - 7330: 33,8 - 7733: 43,18 - 7741: 36,18 + 2573: -10,36 + 2722: -3,53 + 3978: -34,59 + 4122: -22,19 + 5657: 14,7 + 5693: 14,0 + 5730: 11,5 + 5742: 11,0 + 5829: -15,-6 + 5837: -9,-6 + 5871: -9,3 + 5872: -9,-1 + 5875: -11,-2 + 5900: -9,7 + 5901: -8,8 + 5939: 1,12 + 6466: -27,-9 + 6493: -34,-9 + 6513: -26,0 + 6529: -22,-13 + 6579: -22,-9 + 6757: -31,-15 + 7242: 37,-2 + 7276: 36,-1 + 7329: 33,8 + 7732: 43,18 + 7740: 36,18 + 7741: 36,19 7742: 36,19 - 7743: 36,19 - 7747: 43,17 - 8524: 53,-26 - 8539: 49,-26 - 8559: 45,-26 - 10248: 38,-32 - 10249: 37,-31 - 10289: 24,-53 - 10490: 18,-53 - 10700: 74,-40 - 10711: 42,-56 - 10724: 51,-56 - 10725: 51,-56 - 10733: 52,-56 - 10793: 45,-55 - 11160: -49,-47 - 11200: -46,-45 - 11207: -46,-49 - 12339: -17,-48 - 12465: -15,-76 - 12510: -13,-82 - 12511: -21,-82 - 12642: -2,36 - 12704: -38,25 - 13358: -38,-68 - 13380: -36,-68 - 13399: -30,-68 - 13577: -31,-80 - 13918: -65,58 - 15456: -6,-79 - 15462: -1,-79 - 15693: 94,-2 - 15694: 95,-1 - 15702: 97,0 - 15726: 96,1 - 15812: 89,4 - 15887: 98,12 - 15900: 96,12 - 15907: 98,12 - 18113: -63,16 - 18123: -57,5 - 18819: -112,31 - 19503: -14,31 - 19523: 53,22 - 19526: 56,22 - 19629: 52,29 - 19630: 57,29 - 19632: 57,29 - 19850: -24,10 - 19851: -25,11 + 7746: 43,17 + 8523: 53,-26 + 8538: 49,-26 + 8558: 45,-26 + 10194: 38,-32 + 10195: 37,-31 + 10235: 24,-53 + 10428: 18,-53 + 10638: 74,-40 + 10649: 42,-56 + 10662: 51,-56 + 10663: 51,-56 + 10671: 52,-56 + 10731: 45,-55 + 11098: -49,-47 + 11138: -46,-45 + 11145: -46,-49 + 12277: -17,-48 + 12402: -15,-76 + 12447: -13,-82 + 12448: -21,-82 + 12579: -2,36 + 12641: -38,25 + 13295: -38,-68 + 13317: -36,-68 + 13336: -30,-68 + 13514: -31,-80 + 13855: -65,58 + 15393: -6,-79 + 15399: -1,-79 + 15630: 94,-2 + 15631: 95,-1 + 15639: 97,0 + 15663: 96,1 + 15749: 89,4 + 15824: 98,12 + 15837: 96,12 + 15844: 98,12 + 18050: -63,16 + 18060: -57,5 + 18756: -112,31 + 19439: -14,31 + 19459: 53,22 + 19462: 56,22 + 19565: 52,29 + 19566: 57,29 + 19568: 57,29 + 19786: -24,10 + 19787: -25,11 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 1687: -49,-47 + 1686: -49,-47 - node: cleanable: True color: '#5F697828' id: WoodTrimThinCornerSw decals: - 210: 2,-53 + 209: 2,-53 - node: color: '#DABC8BFF' id: WoodTrimThinCornerSw decals: - 2724: -4,53 - 4133: -29,19 - 5657: 6,8 - 5659: 13,7 - 5692: 12,0 - 5728: 7,5 - 5736: 7,0 - 5829: -16,-6 - 5837: -13,-6 - 5860: -14,-1 - 5875: -13,-2 - 5903: -16,7 - 5939: -3,12 - 6466: -31,-9 - 6496: -35,-9 - 6515: -30,0 - 6529: -26,-13 + 2723: -4,53 + 4132: -29,19 + 5656: 6,8 + 5658: 13,7 + 5691: 12,0 + 5727: 7,5 + 5735: 7,0 + 5828: -16,-6 + 5836: -13,-6 + 5859: -14,-1 + 5874: -13,-2 + 5902: -16,7 + 5938: -3,12 + 6465: -31,-9 + 6495: -35,-9 + 6514: -30,0 + 6528: -26,-13 + 6577: -26,-9 6578: -26,-9 - 6579: -26,-9 - 6759: -34,-15 - 7244: 33,-2 - 7276: 34,-1 - 7734: 39,18 - 7739: 34,18 - 7740: 34,19 - 7748: 39,17 - 7749: 38,18 - 8525: 51,-26 - 8538: 47,-26 - 8547: 47,-26 - 8548: 43,-26 - 10250: 34,-32 - 10251: 35,-31 - 10489: 14,-53 - 10699: 72,-40 - 10726: 49,-56 - 10792: 44,-55 - 11170: -56,-47 - 11171: -56,-47 - 11208: -54,-49 - 12466: -19,-76 - 12509: -16,-82 - 12514: -23,-82 - 12643: -4,36 - 12695: -39,25 - 13361: -41,-68 - 13400: -34,-68 - 13566: -32,-80 - 13575: -35,-80 - 13919: -68,58 - 15457: -8,-79 - 15461: -3,-79 - 15692: 91,-2 - 15727: 93,1 - 15813: 81,4 - 15889: 97,12 - 15899: 95,12 - 16453: -41,-11 - 18112: -66,16 - 18124: -58,5 - 18401: -60,-46 - 18820: -115,31 - 19524: 55,22 - 19525: 52,22 - 19633: 51,29 - 19634: 56,29 - 19847: -27,10 - 19854: -26,11 + 6758: -34,-15 + 7243: 33,-2 + 7275: 34,-1 + 7733: 39,18 + 7738: 34,18 + 7739: 34,19 + 7747: 39,17 + 7748: 38,18 + 8524: 51,-26 + 8537: 47,-26 + 8546: 47,-26 + 8547: 43,-26 + 10196: 34,-32 + 10197: 35,-31 + 10427: 14,-53 + 10637: 72,-40 + 10664: 49,-56 + 10730: 44,-55 + 11108: -56,-47 + 11109: -56,-47 + 11146: -54,-49 + 12403: -19,-76 + 12446: -16,-82 + 12451: -23,-82 + 12580: -4,36 + 12632: -39,25 + 13298: -41,-68 + 13337: -34,-68 + 13503: -32,-80 + 13512: -35,-80 + 13856: -68,58 + 15394: -8,-79 + 15398: -3,-79 + 15629: 91,-2 + 15664: 93,1 + 15750: 81,4 + 15826: 97,12 + 15836: 95,12 + 16390: -41,-11 + 18049: -66,16 + 18061: -58,5 + 18338: -60,-46 + 18757: -115,31 + 19460: 55,22 + 19461: 52,22 + 19569: 51,29 + 19570: 56,29 + 19783: -27,10 + 19790: -26,11 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 1694: -56,-47 + 1693: -56,-47 - node: color: '#DABC8BFF' id: WoodTrimThinEndE decals: - 15905: 98,14 + 15842: 98,14 - node: color: '#DABC8BFF' id: WoodTrimThinEndN decals: - 10282: 20,-51 - 12329: -21,-46 - 12692: -38,29 + 10228: 20,-51 + 12267: -21,-46 + 12629: -38,29 - node: color: '#DABC8BFF' id: WoodTrimThinEndS decals: - 10283: 20,-53 - 12328: -21,-48 - 13926: -67,57 + 10229: 20,-53 + 12266: -21,-48 + 13863: -67,57 - node: color: '#DABC8BFF' id: WoodTrimThinEndW decals: - 19460: -12,30 + 19396: -12,30 - node: color: '#DABC8BFF' id: WoodTrimThinInnerNe decals: - 1987: -12,29 - 1995: -12,33 - 1997: -9,33 - 2480: -11,44 - 2481: -11,42 - 2482: -11,40 - 2483: -11,36 - 2504: -13,40 - 2507: -12,41 - 2578: -10,45 - 2579: -10,43 - 2607: -11,38 - 4146: -24,20 - 4147: -26,20 - 5671: 8,11 - 5689: 13,2 - 5753: 11,1 - 5757: 8,3 - 5832: -15,-5 - 5858: -10,-3 - 5884: -10,0 - 5888: -11,5 - 5915: -10,11 - 6472: -29,-4 - 6473: -24,-4 - 6539: -24,-11 - 6623: -24,-7 - 7251: 35,2 - 7759: 43,20 - 7763: 36,20 - 8531: 52,-23 - 8535: 48,-23 - 8536: 48,-23 - 8553: 44,-23 - 10270: 37,-28 - 10290: 22,-51 - 10291: 22,-51 - 10505: 17,-49 - 10740: 50,-50 - 11201: -47,-43 - 11204: -47,-47 - 12334: -19,-46 - 12342: -19,-46 - 12494: -17,-74 - 12648: -3,40 - 12699: -38,27 - 13372: -36,-66 - 13373: -37,-65 - 13377: -41,-65 - 13579: -31,-79 - 15732: 95,3 - 16158: -62,-43 - 16162: -68,-46 - 18551: 1,-12 - 19453: -9,27 - 19454: -9,30 - 19650: 55,30 - 19898: 96,2 - - node: - color: '#DABC8BFF' - id: WoodTrimThinInnerNw - decals: - 1986: -13,33 - 1996: -10,33 - 2008: -10,29 - 2484: -13,36 - 2485: -13,38 - 2486: -13,40 - 2487: -13,42 - 2488: -13,44 - 2489: -13,44 - 2508: -12,41 - 2509: -11,40 - 2510: -11,40 - 4129: -27,21 - 4148: -24,20 + 1986: -12,29 + 1994: -12,33 + 1996: -9,33 + 2479: -11,44 + 2480: -11,42 + 2481: -11,40 + 2482: -11,36 + 2503: -13,40 + 2506: -12,41 + 2577: -10,45 + 2578: -10,43 + 2606: -11,38 + 4145: -24,20 + 4146: -26,20 5670: 8,11 5688: 13,2 + 5752: 11,1 5756: 8,3 - 5836: -13,-5 + 5831: -15,-5 5857: -10,-3 - 5866: -14,4 + 5883: -10,0 5887: -11,5 5914: -10,11 6471: -29,-4 - 6474: -24,-4 - 6524: -30,1 + 6472: -24,-4 6538: -24,-11 - 6595: -26,-6 - 6596: -26,-6 - 6625: -24,-7 - 7252: 35,2 - 7255: 33,1 - 7757: 38,20 - 8532: 52,-23 - 8544: 48,-23 + 6622: -24,-7 + 7250: 35,2 + 7758: 43,20 + 7762: 36,20 + 8530: 52,-23 + 8534: 48,-23 + 8535: 48,-23 8552: 44,-23 - 10271: 37,-28 - 10292: 22,-51 - 10506: 17,-49 - 10720: 39,-53 - 10741: 50,-50 - 11203: -47,-47 - 12335: -19,-46 - 12341: -19,-46 - 12495: -17,-74 - 12645: -4,37 - 12647: -3,40 - 12689: -41,28 - 12690: -41,28 - 12703: -38,26 - 13374: -37,-65 - 13407: -34,-66 - 13574: -35,-79 - 15734: 94,3 - 15735: 93,2 - 15896: 95,13 - 18550: -3,-12 - 19507: -14,30 - 19649: 53,30 + 10216: 37,-28 + 10236: 22,-51 + 10237: 22,-51 + 10443: 17,-49 + 10678: 50,-50 + 11139: -47,-43 + 11142: -47,-47 + 12272: -19,-46 + 12280: -19,-46 + 12431: -17,-74 + 12585: -3,40 + 12636: -38,27 + 13309: -36,-66 + 13310: -37,-65 + 13314: -41,-65 + 13516: -31,-79 + 15669: 95,3 + 16095: -62,-43 + 16099: -68,-46 + 18488: 1,-12 + 19389: -9,27 + 19390: -9,30 + 19586: 55,30 + 19834: 96,2 - node: color: '#DABC8BFF' - id: WoodTrimThinInnerSe + id: WoodTrimThinInnerNw decals: - 1988: -12,31 - 2000: -9,33 - 2496: -11,40 - 2497: -11,42 - 2498: -11,44 - 2499: -11,46 - 2503: -12,41 - 2505: -13,42 - 2575: -10,39 - 2576: -10,39 - 2577: -10,45 - 2608: -11,38 - 4140: -25,19 - 5682: 8,8 - 5683: 10,8 - 5749: 8,5 - 5752: 11,1 - 5763: 10,0 - 5831: -15,-5 - 5850: -10,-6 - 5878: -12,-2 - 5879: -10,-1 - 5885: -10,3 - 5893: -11,-1 - 5922: -11,7 - 6238: -4,-12 - 6476: -24,-4 - 6599: -24,-9 - 6601: -27,-4 - 6602: -27,-6 - 6603: -27,-6 - 6626: -24,-7 - 7258: 36,-2 - 7338: 29,8 - 7758: 43,20 - 7762: 36,20 - 10269: 36,-32 - 10508: 17,-53 - 10509: 7,-57 - 10708: 73,-40 - 11202: -47,-45 - 12503: -17,-67 - 12654: -2,40 - 12698: -38,27 - 13371: -36,-66 - 13576: -34,-79 - 13580: -31,-79 - 13924: -67,58 - 15700: 94,-1 - 15701: 95,0 - 15733: 95,1 - 15740: 96,2 - 15902: 96,14 - 15904: 97,14 - 16159: -62,-43 - 16163: -68,-44 - 19452: -9,27 - 19455: -9,30 - 19645: 52,30 + 1985: -13,33 + 1995: -10,33 + 2007: -10,29 + 2483: -13,36 + 2484: -13,38 + 2485: -13,40 + 2486: -13,42 + 2487: -13,44 + 2488: -13,44 + 2507: -12,41 + 2508: -11,40 + 2509: -11,40 + 4128: -27,21 + 4147: -24,20 + 5669: 8,11 + 5687: 13,2 + 5755: 8,3 + 5835: -13,-5 + 5856: -10,-3 + 5865: -14,4 + 5886: -11,5 + 5913: -10,11 + 6470: -29,-4 + 6473: -24,-4 + 6523: -30,1 + 6537: -24,-11 + 6594: -26,-6 + 6595: -26,-6 + 6624: -24,-7 + 7251: 35,2 + 7254: 33,1 + 7756: 38,20 + 8531: 52,-23 + 8543: 48,-23 + 8551: 44,-23 + 10217: 37,-28 + 10238: 22,-51 + 10444: 17,-49 + 10658: 39,-53 + 10679: 50,-50 + 11141: -47,-47 + 12273: -19,-46 + 12279: -19,-46 + 12432: -17,-74 + 12582: -4,37 + 12584: -3,40 + 12626: -41,28 + 12627: -41,28 + 12640: -38,26 + 13311: -37,-65 + 13344: -34,-66 + 13511: -35,-79 + 15671: 94,3 + 15672: 93,2 + 15833: 95,13 + 18487: -3,-12 + 19443: -14,30 + 19585: 53,30 - node: color: '#DABC8BFF' - id: WoodTrimThinInnerSw + id: WoodTrimThinInnerSe decals: - 2004: -10,27 - 2009: -10,31 - 2490: -13,46 - 2491: -13,44 - 2492: -13,44 - 2493: -13,42 - 2494: -13,40 - 2495: -13,38 + 1987: -12,31 + 1999: -9,33 + 2495: -11,40 + 2496: -11,42 + 2497: -11,44 + 2498: -11,46 2502: -12,41 - 2506: -11,42 + 2504: -13,42 + 2574: -10,39 + 2575: -10,39 + 2576: -10,45 + 2607: -11,38 4139: -25,19 - 5680: 8,8 - 5681: 10,8 + 5681: 8,8 + 5682: 10,8 5748: 8,5 + 5751: 11,1 5762: 10,0 - 5835: -13,-5 + 5830: -15,-5 5849: -10,-6 - 5867: -14,4 - 5874: -13,-1 5877: -12,-2 - 5892: -10,-1 + 5878: -10,-1 + 5884: -10,3 + 5892: -11,-1 5921: -11,7 - 6239: 2,-12 + 6237: -4,-12 6475: -24,-4 - 6523: -30,1 - 6594: -26,-6 6598: -24,-9 - 6624: -24,-7 - 7256: 33,1 + 6600: -27,-4 + 6601: -27,-6 + 6602: -27,-6 + 6625: -24,-7 7257: 36,-2 - 7756: 38,20 - 10268: 36,-32 - 10507: 17,-53 - 10707: 73,-40 - 10721: 39,-53 - 10746: 44,-50 - 12502: -17,-67 - 12644: -4,37 - 12688: -41,28 - 12697: -39,27 - 13408: -34,-66 - 13573: -35,-79 - 13925: -67,58 - 15738: 93,2 - 15739: 94,1 - 15897: 95,13 - 15903: 97,14 - 16164: -70,-42 - 19505: -13,27 - 19506: -14,30 - 19644: 56,30 + 7337: 29,8 + 7757: 43,20 + 7761: 36,20 + 10215: 36,-32 + 10446: 17,-53 + 10447: 7,-57 + 10646: 73,-40 + 11140: -47,-45 + 12440: -17,-67 + 12591: -2,40 + 12635: -38,27 + 13308: -36,-66 + 13513: -34,-79 + 13517: -31,-79 + 13861: -67,58 + 15637: 94,-1 + 15638: 95,0 + 15670: 95,1 + 15677: 96,2 + 15839: 96,14 + 15841: 97,14 + 16096: -62,-43 + 16100: -68,-44 + 19388: -9,27 + 19391: -9,30 + 19581: 52,30 + - node: + color: '#DABC8BFF' + id: WoodTrimThinInnerSw + decals: + 2003: -10,27 + 2008: -10,31 + 2489: -13,46 + 2490: -13,44 + 2491: -13,44 + 2492: -13,42 + 2493: -13,40 + 2494: -13,38 + 2501: -12,41 + 2505: -11,42 + 4138: -25,19 + 5679: 8,8 + 5680: 10,8 + 5747: 8,5 + 5761: 10,0 + 5834: -13,-5 + 5848: -10,-6 + 5866: -14,4 + 5873: -13,-1 + 5876: -12,-2 + 5891: -10,-1 + 5920: -11,7 + 6238: 2,-12 + 6474: -24,-4 + 6522: -30,1 + 6593: -26,-6 + 6597: -24,-9 + 6623: -24,-7 + 7255: 33,1 + 7256: 36,-2 + 7755: 38,20 + 10214: 36,-32 + 10445: 17,-53 + 10645: 73,-40 + 10659: 39,-53 + 10684: 44,-50 + 12439: -17,-67 + 12581: -4,37 + 12625: -41,28 + 12634: -39,27 + 13345: -34,-66 + 13510: -35,-79 + 13862: -67,58 + 15675: 93,2 + 15676: 94,1 + 15834: 95,13 + 15840: 97,14 + 16101: -70,-42 + 19441: -13,27 + 19442: -14,30 + 19580: 56,30 - node: cleanable: True color: '#151C2553' id: WoodTrimThinLineE decals: - 230: 24,1 - 231: 24,0 - 232: 24,-1 - 233: 24,-3 - 234: 24,-4 - 235: 24,-6 + 229: 24,1 + 230: 24,0 + 231: 24,-1 + 232: 24,-3 + 233: 24,-4 + 234: 24,-6 - node: cleanable: True color: '#5F697828' id: WoodTrimThinLineE decals: - 213: 12,-52 + 212: 12,-52 - node: color: '#DABC8BFF' id: WoodTrimThinLineE decals: - 1998: -9,32 - 1999: -9,31 - 2001: -9,29 - 2002: -9,28 - 2454: -14,44 - 2455: -14,42 - 2456: -14,40 - 2457: -14,38 - 2458: -14,36 - 2461: -14,46 - 2500: -13,41 - 2569: -10,44 - 2570: -10,38 - 2571: -10,37 - 2631: -2,41 - 3976: -34,62 - 3977: -34,61 - 3978: -34,60 - 4141: -26,22 - 4142: -26,21 - 5660: 14,8 - 5661: 14,9 - 5662: 14,10 - 5695: 14,1 - 5730: 11,6 - 5742: 11,2 - 5834: -14,-5 - 5839: -9,-5 - 5840: -9,-4 - 5865: -15,4 - 5882: -10,1 - 5883: -10,2 - 5886: -9,4 - 5890: -10,-2 - 5912: -8,10 - 5913: -8,9 - 5944: 1,13 - 6231: 2,-12 - 6462: -27,-5 - 6463: -27,-7 - 6464: -27,-8 - 6465: -27,-9 - 6479: -34,1 - 6480: -34,0 + 1997: -9,32 + 1998: -9,31 + 2000: -9,29 + 2001: -9,28 + 2453: -14,44 + 2454: -14,42 + 2455: -14,40 + 2456: -14,38 + 2457: -14,36 + 2460: -14,46 + 2499: -13,41 + 2568: -10,44 + 2569: -10,38 + 2570: -10,37 + 2630: -2,41 + 3975: -34,62 + 3976: -34,61 + 3977: -34,60 + 4140: -26,22 + 4141: -26,21 + 5659: 14,8 + 5660: 14,9 + 5661: 14,10 + 5694: 14,1 + 5729: 11,6 + 5741: 11,2 + 5833: -14,-5 + 5838: -9,-5 + 5839: -9,-4 + 5864: -15,4 + 5881: -10,1 + 5882: -10,2 + 5885: -9,4 + 5889: -10,-2 + 5911: -8,10 + 5912: -8,9 + 5943: 1,13 + 6230: 2,-12 + 6461: -27,-5 + 6462: -27,-7 + 6463: -27,-8 + 6464: -27,-9 + 6478: -34,1 + 6479: -34,0 + 6480: -34,-1 6481: -34,-1 - 6482: -34,-1 + 6482: -34,-2 6483: -34,-2 - 6484: -34,-2 - 6485: -34,-3 + 6484: -34,-3 + 6485: -34,-4 6486: -34,-4 - 6487: -34,-4 - 6488: -34,-5 + 6487: -34,-5 + 6488: -34,-6 6489: -34,-6 - 6490: -34,-6 + 6490: -34,-7 6491: -34,-7 - 6492: -34,-7 - 6493: -34,-8 - 6519: -26,1 - 6534: -22,-12 - 6588: -22,-6 - 6589: -22,-7 - 6590: -22,-8 - 6606: -27,-6 - 6619: -25,-7 - 6685: -31,1 - 6764: -31,-14 - 6765: -31,-13 - 7254: 32,1 - 7259: 37,-1 - 7260: 37,0 - 7261: 37,1 - 7273: 36,0 - 7328: 33,10 - 7329: 33,9 + 6492: -34,-8 + 6518: -26,1 + 6533: -22,-12 + 6587: -22,-6 + 6588: -22,-7 + 6589: -22,-8 + 6605: -27,-6 + 6618: -25,-7 + 6684: -31,1 + 6763: -31,-14 + 6764: -31,-13 + 7253: 32,1 + 7258: 37,-1 + 7259: 37,0 + 7260: 37,1 + 7272: 36,0 + 7327: 33,10 + 7328: 33,9 + 7549: 60,25 7550: 60,25 - 7551: 60,25 - 7721: 43,18 - 7722: 43,19 - 7732: 43,21 - 7752: 36,21 - 7755: 37,20 - 8527: 53,-25 - 8528: 53,-24 - 8542: 49,-25 - 8554: 45,-24 - 8555: 45,-25 - 10254: 38,-31 - 10255: 38,-30 - 10256: 38,-29 - 10264: 37,-30 - 10276: 20,-52 - 10277: 24,-52 - 10496: 18,-52 - 10497: 18,-51 - 10498: 18,-50 - 10701: 74,-39 - 10702: 74,-38 - 10712: 42,-54 - 10713: 42,-53 - 10729: 51,-55 - 10730: 51,-55 - 10732: 52,-56 - 10734: 52,-55 - 10735: 52,-55 - 10736: 52,-54 - 10737: 52,-53 - 10738: 52,-52 - 10745: 43,-50 - 10786: 43,-50 - 10787: 45,-52 - 10788: 45,-53 - 10789: 45,-54 - 11180: -49,-44 - 11181: -49,-46 - 11182: -49,-45 - 11198: -46,-44 - 11199: -46,-45 - 11210: -46,-48 - 12330: -21,-47 - 12340: -17,-47 - 12450: -17,-68 - 12451: -17,-69 - 12452: -17,-69 - 12453: -17,-70 - 12454: -17,-70 - 12455: -17,-71 - 12456: -17,-71 - 12457: -17,-72 - 12458: -17,-72 - 12459: -17,-73 - 12460: -13,-80 - 12461: -13,-81 - 12486: -22,-67 - 12487: -22,-66 - 12490: -15,-75 - 12517: -21,-81 - 12638: -5,37 - 12651: -2,39 - 12652: -2,38 - 12653: -2,37 - 12687: -42,28 - 12693: -38,28 - 12694: -38,26 - 13357: -38,-67 - 13379: -36,-67 - 13402: -30,-67 - 13403: -30,-66 - 13409: -35,-66 - 13578: -31,-78 - 13915: -65,61 - 13916: -65,60 - 13917: -65,59 - 15455: -6,-78 - 15465: -1,-78 - 15703: 97,1 - 15704: 97,2 - 15705: 97,3 - 15706: 97,4 - 15730: 92,2 - 15821: 89,5 - 15822: 89,6 - 15898: 94,13 - 15901: 96,13 - 16157: -62,-42 - 16450: -39,-10 - 18114: -63,17 - 18122: -57,6 - 18403: -58,-45 - 18823: -112,32 - 19461: -11,31 - 19462: -11,32 - 19463: -11,33 - 19470: -11,27 - 19471: -11,28 - 19472: -11,29 - 19473: -14,27 - 19474: -14,28 - 19475: -14,31 - 19476: -14,32 - 19477: -14,33 - 19504: -15,30 - 19518: 53,26 - 19519: 53,25 - 19520: 53,24 - 19521: 53,23 - 19522: 53,22 - 19527: 56,23 - 19528: 56,24 - 19529: 56,25 - 19530: 56,25 - 19531: 56,26 - 19841: -24,12 - 19842: -24,11 - 21402: 49,-24 + 7720: 43,18 + 7721: 43,19 + 7731: 43,21 + 7751: 36,21 + 7754: 37,20 + 8526: 53,-25 + 8527: 53,-24 + 8541: 49,-25 + 8553: 45,-24 + 8554: 45,-25 + 10200: 38,-31 + 10201: 38,-30 + 10202: 38,-29 + 10210: 37,-30 + 10222: 20,-52 + 10223: 24,-52 + 10434: 18,-52 + 10435: 18,-51 + 10436: 18,-50 + 10639: 74,-39 + 10640: 74,-38 + 10650: 42,-54 + 10651: 42,-53 + 10667: 51,-55 + 10668: 51,-55 + 10670: 52,-56 + 10672: 52,-55 + 10673: 52,-55 + 10674: 52,-54 + 10675: 52,-53 + 10676: 52,-52 + 10683: 43,-50 + 10724: 43,-50 + 10725: 45,-52 + 10726: 45,-53 + 10727: 45,-54 + 11118: -49,-44 + 11119: -49,-46 + 11120: -49,-45 + 11136: -46,-44 + 11137: -46,-45 + 11148: -46,-48 + 12268: -21,-47 + 12278: -17,-47 + 12387: -17,-68 + 12388: -17,-69 + 12389: -17,-69 + 12390: -17,-70 + 12391: -17,-70 + 12392: -17,-71 + 12393: -17,-71 + 12394: -17,-72 + 12395: -17,-72 + 12396: -17,-73 + 12397: -13,-80 + 12398: -13,-81 + 12423: -22,-67 + 12424: -22,-66 + 12427: -15,-75 + 12454: -21,-81 + 12575: -5,37 + 12588: -2,39 + 12589: -2,38 + 12590: -2,37 + 12624: -42,28 + 12630: -38,28 + 12631: -38,26 + 13294: -38,-67 + 13316: -36,-67 + 13339: -30,-67 + 13340: -30,-66 + 13346: -35,-66 + 13515: -31,-78 + 13852: -65,61 + 13853: -65,60 + 13854: -65,59 + 15392: -6,-78 + 15402: -1,-78 + 15640: 97,1 + 15641: 97,2 + 15642: 97,3 + 15643: 97,4 + 15667: 92,2 + 15758: 89,5 + 15759: 89,6 + 15835: 94,13 + 15838: 96,13 + 16094: -62,-42 + 16387: -39,-10 + 18051: -63,17 + 18059: -57,6 + 18340: -58,-45 + 18760: -112,32 + 19397: -11,31 + 19398: -11,32 + 19399: -11,33 + 19406: -11,27 + 19407: -11,28 + 19408: -11,29 + 19409: -14,27 + 19410: -14,28 + 19411: -14,31 + 19412: -14,32 + 19413: -14,33 + 19440: -15,30 + 19454: 53,26 + 19455: 53,25 + 19456: 53,24 + 19457: 53,23 + 19458: 53,22 + 19463: 56,23 + 19464: 56,24 + 19465: 56,25 + 19466: 56,25 + 19467: 56,26 + 19777: -24,12 + 19778: -24,11 + 21334: 49,-24 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 502: 0,9 - 891: 0,4 - 892: 0,-6 - 1684: -49,-44 - 1685: -49,-45 - 1686: -49,-46 + 501: 0,9 + 890: 0,4 + 891: 0,-6 + 1683: -49,-44 + 1684: -49,-45 + 1685: -49,-46 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 220: -34,-7 - 221: -34,-5 + 219: -34,-7 + 220: -34,-5 - node: cleanable: True color: '#151C2553' id: WoodTrimThinLineN decals: - 237: 58,10 + 236: 58,10 - node: color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 2003: -9,25 - 2425: -13,45 - 2426: -12,45 - 2427: -11,45 - 2428: -13,43 - 2429: -12,43 - 2430: -11,43 - 2431: -13,41 - 2432: -11,41 - 2433: -13,39 - 2434: -12,39 - 2435: -11,39 - 2436: -13,37 - 2437: -12,37 - 2438: -11,37 - 2558: -13,46 - 2559: -12,46 + 2002: -9,25 + 2424: -13,45 + 2425: -12,45 + 2426: -11,45 + 2427: -13,43 + 2428: -12,43 + 2429: -11,43 + 2430: -13,41 + 2431: -11,41 + 2432: -13,39 + 2433: -12,39 + 2434: -11,39 + 2435: -13,37 + 2436: -12,37 + 2437: -11,37 + 2557: -13,46 + 2558: -12,46 + 2559: -11,46 2560: -11,46 - 2561: -11,46 - 2582: -14,46 - 2630: -3,42 - 2725: -4,54 - 3970: -38,63 - 3971: -36,63 - 3972: -37,63 - 3973: -35,63 - 4124: -22,20 - 4130: -28,21 - 4143: -25,20 + 2581: -14,46 + 2629: -3,42 + 2724: -4,54 + 3969: -38,63 + 3970: -36,63 + 3971: -37,63 + 3972: -35,63 + 4123: -22,20 + 4129: -28,21 + 4142: -25,20 + 4143: -23,20 4144: -23,20 - 4145: -23,20 - 4166: -25,18 - 5669: 7,11 - 5672: 10,11 - 5673: 9,11 - 5674: 11,11 - 5675: 12,11 - 5676: 13,11 - 5678: 10,7 - 5679: 8,7 - 5727: 9,7 - 5750: 8,4 - 5754: 9,3 - 5755: 10,3 - 5758: 10,-1 - 5842: -13,-3 - 5843: -12,-3 - 5848: -10,-7 - 5856: -11,-3 - 5868: -13,5 - 5869: -12,5 - 5870: -10,5 - 5880: -10,-2 - 5905: -15,11 - 5906: -14,11 - 5907: -13,11 - 5908: -12,11 - 5909: -11,11 - 5910: -9,11 - 5920: -11,6 - 5937: 0,14 - 5938: -1,14 - 6244: 2,-13 - 6245: -4,-13 - 6443: -30,-4 - 6444: -28,-4 - 6445: -27,-4 + 4165: -25,18 + 5668: 7,11 + 5671: 10,11 + 5672: 9,11 + 5673: 11,11 + 5674: 12,11 + 5675: 13,11 + 5677: 10,7 + 5678: 8,7 + 5726: 9,7 + 5749: 8,4 + 5753: 9,3 + 5754: 10,3 + 5757: 10,-1 + 5841: -13,-3 + 5842: -12,-3 + 5847: -10,-7 + 5855: -11,-3 + 5867: -13,5 + 5868: -12,5 + 5869: -10,5 + 5879: -10,-2 + 5904: -15,11 + 5905: -14,11 + 5906: -13,11 + 5907: -12,11 + 5908: -11,11 + 5909: -9,11 + 5919: -11,6 + 5936: 0,14 + 5937: -1,14 + 6243: 2,-13 + 6244: -4,-13 + 6442: -30,-4 + 6443: -28,-4 + 6444: -27,-4 + 6445: -26,-4 6446: -26,-4 - 6447: -26,-4 - 6448: -25,-4 - 6449: -23,-4 - 6450: -22,-4 - 6477: -24,-5 - 6520: -29,2 - 6521: -28,2 - 6522: -27,2 - 6536: -25,-11 - 6537: -23,-11 - 6585: -23,-5 + 6447: -25,-4 + 6448: -23,-4 + 6449: -22,-4 + 6476: -24,-5 + 6519: -29,2 + 6520: -28,2 + 6521: -27,2 + 6535: -25,-11 + 6536: -23,-11 + 6584: -23,-5 + 6585: -25,-5 6586: -25,-5 - 6587: -25,-5 - 6600: -24,-10 - 6620: -24,-8 - 6762: -33,-12 - 6763: -32,-12 - 7249: 34,2 - 7250: 36,2 - 7262: 36,-3 - 7274: 35,1 - 7325: 30,11 - 7326: 32,11 - 7327: 31,11 - 7339: 29,7 + 6599: -24,-10 + 6619: -24,-8 + 6761: -33,-12 + 6762: -32,-12 + 7248: 34,2 + 7249: 36,2 + 7261: 36,-3 + 7273: 35,1 + 7324: 30,11 + 7325: 32,11 + 7326: 31,11 + 7338: 29,7 + 7705: 40,23 7706: 40,23 - 7707: 40,23 + 7707: 41,23 7708: 41,23 - 7709: 41,23 + 7709: 42,23 7710: 42,23 - 7711: 42,23 - 7712: 40,22 - 7713: 41,22 - 7714: 42,22 - 7729: 35,22 - 7730: 35,21 - 10257: 35,-28 - 10258: 36,-28 - 10265: 36,-29 - 10267: 36,-33 - 10286: 21,-51 - 10287: 23,-51 - 10502: 15,-49 - 10503: 16,-49 - 10504: 17,-54 - 10703: 73,-37 - 10706: 73,-41 - 10727: 50,-54 - 10742: 52,-50 - 10743: 44,-50 - 10744: 45,-50 - 11175: -55,-43 - 11176: -54,-43 - 11177: -54,-43 - 11178: -51,-43 - 11179: -50,-43 - 11190: -47,-46 - 11205: -48,-47 - 12332: -18,-46 - 12343: -20,-46 - 12476: -21,-66 - 12477: -20,-66 - 12478: -19,-66 - 12479: -18,-66 - 12480: -17,-66 - 12481: -16,-66 - 12482: -15,-66 - 12483: -14,-66 - 12484: -14,-66 - 12485: -13,-66 - 12492: -18,-74 - 12493: -16,-74 - 12504: -15,-79 - 12505: -14,-79 - 12516: -22,-80 - 12646: -2,40 - 12691: -40,29 - 13365: -40,-66 - 13366: -39,-66 - 13367: -40,-65 - 13368: -39,-65 - 13369: -38,-65 - 13404: -33,-65 - 13405: -32,-65 - 13406: -31,-65 - 13569: -34,-77 - 13570: -33,-77 - 13571: -32,-77 - 13912: -67,62 - 13913: -66,62 - 15451: -7,-77 - 15464: -2,-77 - 15696: 93,5 - 15697: 94,5 - 15698: 95,5 - 15728: 94,0 - 15729: 95,0 - 15804: 82,7 - 15805: 83,7 - 15806: 84,7 - 15807: 85,7 - 15808: 86,7 - 15809: 87,7 - 15810: 88,7 - 15893: 96,14 - 15894: 97,14 - 15906: 97,13 - 16141: -69,-40 - 16142: -68,-40 - 16143: -67,-40 - 16144: -66,-40 - 16145: -65,-40 - 16146: -63,-40 - 16449: -40,-9 - 18107: -65,18 - 18108: -64,18 - 18398: -59,-44 - 18543: -2,-11 - 18544: -1,-11 - 18545: 0,-11 - 18546: 1,-11 - 18824: -114,33 - 18825: -113,33 - 19443: -11,33 - 19448: -13,26 - 19449: -12,26 - 19450: -10,26 - 19451: -9,26 - 19456: -9,30 - 19457: -10,30 - 19636: 56,30 - 19637: 56,30 - 19638: 52,30 - 19639: 52,30 - 19640: 56,30 - 19648: 54,31 - 19843: -26,13 - 19844: -25,13 + 7711: 40,22 + 7712: 41,22 + 7713: 42,22 + 7728: 35,22 + 7729: 35,21 + 10203: 35,-28 + 10204: 36,-28 + 10211: 36,-29 + 10213: 36,-33 + 10232: 21,-51 + 10233: 23,-51 + 10440: 15,-49 + 10441: 16,-49 + 10442: 17,-54 + 10641: 73,-37 + 10644: 73,-41 + 10665: 50,-54 + 10680: 52,-50 + 10681: 44,-50 + 10682: 45,-50 + 11113: -55,-43 + 11114: -54,-43 + 11115: -54,-43 + 11116: -51,-43 + 11117: -50,-43 + 11128: -47,-46 + 11143: -48,-47 + 12270: -18,-46 + 12281: -20,-46 + 12413: -21,-66 + 12414: -20,-66 + 12415: -19,-66 + 12416: -18,-66 + 12417: -17,-66 + 12418: -16,-66 + 12419: -15,-66 + 12420: -14,-66 + 12421: -14,-66 + 12422: -13,-66 + 12429: -18,-74 + 12430: -16,-74 + 12441: -15,-79 + 12442: -14,-79 + 12453: -22,-80 + 12583: -2,40 + 12628: -40,29 + 13302: -40,-66 + 13303: -39,-66 + 13304: -40,-65 + 13305: -39,-65 + 13306: -38,-65 + 13341: -33,-65 + 13342: -32,-65 + 13343: -31,-65 + 13506: -34,-77 + 13507: -33,-77 + 13508: -32,-77 + 13849: -67,62 + 13850: -66,62 + 15388: -7,-77 + 15401: -2,-77 + 15633: 93,5 + 15634: 94,5 + 15635: 95,5 + 15665: 94,0 + 15666: 95,0 + 15741: 82,7 + 15742: 83,7 + 15743: 84,7 + 15744: 85,7 + 15745: 86,7 + 15746: 87,7 + 15747: 88,7 + 15830: 96,14 + 15831: 97,14 + 15843: 97,13 + 16078: -69,-40 + 16079: -68,-40 + 16080: -67,-40 + 16081: -66,-40 + 16082: -65,-40 + 16083: -63,-40 + 16386: -40,-9 + 18044: -65,18 + 18045: -64,18 + 18335: -59,-44 + 18480: -2,-11 + 18481: -1,-11 + 18482: 0,-11 + 18483: 1,-11 + 18761: -114,33 + 18762: -113,33 + 19379: -11,33 + 19384: -13,26 + 19385: -12,26 + 19386: -10,26 + 19387: -9,26 + 19392: -9,30 + 19393: -10,30 + 19572: 56,30 + 19573: 56,30 + 19574: 52,30 + 19575: 52,30 + 19576: 56,30 + 19584: 54,31 + 19779: -26,13 + 19780: -25,13 - node: angle: 1.9198621771937625 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13454: -35.813877,-65.105484 - 16375: -64.29358,-40.983166 + 13391: -35.813877,-65.105484 + 16312: -64.29358,-40.983166 - node: angle: 2.0943951023931953 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13452: -29.784193,-66.29185 + 13389: -29.784193,-66.29185 - node: angle: 2.443460952792061 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16378: -62.793587,-43.12379 + 16315: -62.793587,-43.12379 - node: angle: 2.6179938779914944 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16377: -69.402954,-44.592537 + 16314: -69.402954,-44.592537 - node: angle: 3.490658503988659 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13451: -40.693886,-64.73856 + 13388: -40.693886,-64.73856 - node: angle: 3.6651914291880923 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13453: -33.77137,-66.21846 + 13390: -33.77137,-66.21846 - node: angle: 3.839724354387525 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16376: -69.85608,-41.076912 + 16313: -69.85608,-41.076912 - node: angle: 4.363323129985824 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16379: -67.26233,-43.09254 + 16316: -67.26233,-43.09254 - node: angle: 5.235987755982989 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 13450: -37.183704,-67.03792 + 13387: -37.183704,-67.03792 - node: angle: 6.981317007977318 rad color: '#DABC8BFF' id: WoodTrimThinLineN decals: - 16380: -67.51233,-46.24879 + 16317: -67.51233,-46.24879 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 478: 0,-5 - 479: 0,-4 - 480: 0,-3 - 481: 0,-2 - 482: 0,-1 - 483: 0,0 - 484: 0,1 - 485: 0,2 - 486: 0,3 - 487: 0,5 - 488: 0,6 - 489: 0,7 - 490: 0,8 + 477: 0,-5 + 478: 0,-4 + 479: 0,-3 + 480: 0,-2 + 481: 0,-1 + 482: 0,0 + 483: 0,1 + 484: 0,2 + 485: 0,3 + 486: 0,5 + 487: 0,6 + 488: 0,7 + 489: 0,8 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 545: 35,1 - 1049: -26,-4 - 1581: -40,29 - 1679: -55,-43 - 1680: -54,-43 - 1681: -51,-43 - 1682: -50,-43 + 544: 35,1 + 1048: -26,-4 + 1580: -40,29 + 1678: -55,-43 + 1679: -54,-43 + 1680: -51,-43 + 1681: -50,-43 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 209: 17,-49 - 227: -29,2 + 208: 17,-49 + 226: -29,2 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 491: -2,8 - 492: -2,7 - 493: -2,5 - 494: -2,4 - 495: -2,3 - 496: -2,0 - 497: -2,-1 - 498: -2,-2 - 499: -2,-4 - 500: -2,-5 - 501: -2,-6 + 490: -2,8 + 491: -2,7 + 492: -2,5 + 493: -2,4 + 494: -2,3 + 495: -2,0 + 496: -2,-1 + 497: -2,-2 + 498: -2,-4 + 499: -2,-5 + 500: -2,-6 - node: cleanable: True color: '#5F697828' id: WoodTrimThinLineS decals: - 215: 11,-53 - 216: 3,-53 - 217: 4,-53 + 214: 11,-53 + 215: 3,-53 + 216: 4,-53 - node: color: '#DABC8BFF' id: WoodTrimThinLineS decals: - 2439: -13,37 + 2438: -13,37 + 2439: -12,37 2440: -12,37 - 2441: -12,37 - 2442: -11,37 - 2443: -11,39 - 2444: -12,39 - 2445: -13,39 - 2446: -13,41 - 2447: -11,41 - 2448: -11,43 - 2449: -12,43 - 2450: -13,43 - 2451: -13,45 - 2452: -12,45 - 2453: -11,45 - 2562: -13,36 - 2563: -12,36 - 2564: -11,36 - 2572: -14,36 - 2634: -4,41 - 2635: -2,41 - 3980: -35,59 - 4134: -28,19 - 4135: -27,19 - 4136: -26,19 - 4137: -24,19 - 4138: -23,19 - 4149: -24,21 - 5656: 8,12 - 5663: 12,8 - 5664: 11,8 - 5665: 9,8 - 5666: 7,8 - 5687: 13,3 - 5693: 13,0 - 5732: 10,5 - 5733: 9,5 - 5734: 8,0 - 5735: 9,0 - 5747: 8,4 - 5846: -12,-6 - 5847: -11,-6 - 5855: -10,-2 - 5889: -11,6 - 5895: -10,-2 - 5896: -12,7 - 5897: -13,7 - 5898: -14,7 - 5899: -15,7 - 5900: -10,7 - 5916: -10,12 - 5941: -2,12 - 5942: -1,12 - 5943: 0,12 - 6232: -3,-12 - 6233: -2,-12 - 6234: -1,-12 - 6235: 0,-12 - 6236: 1,-12 - 6458: -22,-4 - 6459: -23,-4 - 6460: -25,-4 - 6461: -26,-4 - 6468: -30,-9 - 6469: -29,-9 - 6470: -28,-9 - 6516: -29,0 - 6517: -28,0 - 6518: -27,0 - 6525: -29,-3 - 6526: -24,-3 - 6531: -25,-13 - 6532: -24,-13 - 6533: -23,-13 - 6575: -24,-10 - 6576: -23,-9 - 6577: -25,-9 - 6607: -24,-4 - 6622: -24,-6 - 6760: -33,-15 - 6761: -32,-15 - 7245: 34,-2 - 7246: 35,-2 - 7253: 35,3 - 7275: 35,-1 - 7335: 30,8 - 7336: 31,8 - 7337: 32,8 - 7715: 40,18 - 7716: 41,18 - 7717: 42,18 - 7718: 40,17 - 7719: 41,17 - 7720: 42,17 + 2441: -11,37 + 2442: -11,39 + 2443: -12,39 + 2444: -13,39 + 2445: -13,41 + 2446: -11,41 + 2447: -11,43 + 2448: -12,43 + 2449: -13,43 + 2450: -13,45 + 2451: -12,45 + 2452: -11,45 + 2561: -13,36 + 2562: -12,36 + 2563: -11,36 + 2571: -14,36 + 2633: -4,41 + 2634: -2,41 + 3979: -35,59 + 4133: -28,19 + 4134: -27,19 + 4135: -26,19 + 4136: -24,19 + 4137: -23,19 + 4148: -24,21 + 5655: 8,12 + 5662: 12,8 + 5663: 11,8 + 5664: 9,8 + 5665: 7,8 + 5686: 13,3 + 5692: 13,0 + 5731: 10,5 + 5732: 9,5 + 5733: 8,0 + 5734: 9,0 + 5746: 8,4 + 5845: -12,-6 + 5846: -11,-6 + 5854: -10,-2 + 5888: -11,6 + 5894: -10,-2 + 5895: -12,7 + 5896: -13,7 + 5897: -14,7 + 5898: -15,7 + 5899: -10,7 + 5915: -10,12 + 5940: -2,12 + 5941: -1,12 + 5942: 0,12 + 6231: -3,-12 + 6232: -2,-12 + 6233: -1,-12 + 6234: 0,-12 + 6235: 1,-12 + 6457: -22,-4 + 6458: -23,-4 + 6459: -25,-4 + 6460: -26,-4 + 6467: -30,-9 + 6468: -29,-9 + 6469: -28,-9 + 6515: -29,0 + 6516: -28,0 + 6517: -27,0 + 6524: -29,-3 + 6525: -24,-3 + 6530: -25,-13 + 6531: -24,-13 + 6532: -23,-13 + 6574: -24,-10 + 6575: -23,-9 + 6576: -25,-9 + 6606: -24,-4 + 6621: -24,-6 + 6759: -33,-15 + 6760: -32,-15 + 7244: 34,-2 + 7245: 35,-2 + 7252: 35,3 + 7274: 35,-1 + 7334: 30,8 + 7335: 31,8 + 7336: 32,8 + 7714: 40,18 + 7715: 41,18 + 7716: 42,18 + 7717: 40,17 + 7718: 41,17 + 7719: 42,17 + 7743: 35,18 7744: 35,18 - 7745: 35,18 - 7746: 35,19 - 8526: 52,-26 - 8533: 52,-22 - 8534: 48,-22 + 7745: 35,19 + 8525: 52,-26 + 8532: 52,-22 + 8533: 48,-22 + 8539: 48,-26 8540: 48,-26 - 8541: 48,-26 - 8551: 44,-22 - 8558: 44,-26 - 10252: 35,-32 - 10253: 37,-32 - 10263: 36,-31 - 10266: 37,-27 - 10278: 22,-50 - 10279: 22,-53 - 10280: 22,-53 - 10281: 23,-53 - 10285: 21,-53 - 10491: 15,-53 - 10492: 15,-53 - 10493: 16,-53 - 10494: 16,-53 - 10495: 17,-48 - 10710: 41,-56 - 10728: 50,-56 - 10747: 44,-50 - 10748: 44,-50 - 10749: 45,-50 - 11161: -50,-47 - 11162: -51,-47 - 11163: -52,-47 - 11164: -52,-47 - 11165: -53,-47 - 11166: -53,-47 - 11167: -54,-47 - 11168: -54,-47 - 11169: -55,-47 - 11188: -47,-42 - 11189: -47,-46 - 11211: -53,-49 - 11212: -52,-49 - 11213: -51,-49 - 11214: -51,-49 - 11215: -50,-49 - 11216: -49,-49 - 11217: -48,-49 - 11218: -47,-49 - 12333: -19,-45 - 12336: -20,-48 - 12337: -19,-48 - 12338: -18,-48 - 12446: -21,-67 - 12447: -20,-67 - 12448: -19,-67 - 12449: -18,-67 - 12467: -18,-76 - 12468: -17,-76 - 12469: -16,-76 - 12470: -15,-82 - 12471: -14,-82 - 12472: -16,-67 - 12473: -15,-67 - 12474: -14,-67 - 12475: -13,-67 - 12515: -22,-82 - 12637: -3,36 - 12640: -3,41 - 12684: -40,27 - 12685: -40,27 - 13359: -39,-68 - 13360: -40,-68 - 13375: -37,-64 - 13376: -41,-64 - 13381: -37,-68 - 13396: -33,-68 - 13397: -32,-68 - 13398: -31,-68 - 13565: -33,-79 - 13923: -66,58 - 15459: -7,-79 - 15463: -2,-79 - 15699: 96,0 - 15723: 94,4 - 15724: 95,4 - 15814: 82,4 - 15815: 84,4 - 15816: 83,4 - 15817: 85,4 - 15818: 87,4 - 15819: 86,4 - 15820: 88,4 - 16151: -71,-42 - 16152: -67,-44 - 16153: -66,-44 - 16154: -65,-44 - 16155: -64,-44 - 16156: -63,-44 - 16161: -68,-46 - 16451: -40,-11 - 18110: -65,16 - 18111: -64,16 - 18402: -59,-46 - 18821: -114,31 - 18822: -113,31 - 19444: -10,34 - 19445: -9,34 - 19446: -13,34 - 19447: -12,34 - 19458: -10,30 - 19459: -9,30 - 19641: 53,30 - 19642: 54,30 - 19643: 55,30 - 19845: -26,10 - 19846: -25,10 + 8550: 44,-22 + 8557: 44,-26 + 10198: 35,-32 + 10199: 37,-32 + 10209: 36,-31 + 10212: 37,-27 + 10224: 22,-50 + 10225: 22,-53 + 10226: 22,-53 + 10227: 23,-53 + 10231: 21,-53 + 10429: 15,-53 + 10430: 15,-53 + 10431: 16,-53 + 10432: 16,-53 + 10433: 17,-48 + 10648: 41,-56 + 10666: 50,-56 + 10685: 44,-50 + 10686: 44,-50 + 10687: 45,-50 + 11099: -50,-47 + 11100: -51,-47 + 11101: -52,-47 + 11102: -52,-47 + 11103: -53,-47 + 11104: -53,-47 + 11105: -54,-47 + 11106: -54,-47 + 11107: -55,-47 + 11126: -47,-42 + 11127: -47,-46 + 11149: -53,-49 + 11150: -52,-49 + 11151: -51,-49 + 11152: -51,-49 + 11153: -50,-49 + 11154: -49,-49 + 11155: -48,-49 + 11156: -47,-49 + 12271: -19,-45 + 12274: -20,-48 + 12275: -19,-48 + 12276: -18,-48 + 12383: -21,-67 + 12384: -20,-67 + 12385: -19,-67 + 12386: -18,-67 + 12404: -18,-76 + 12405: -17,-76 + 12406: -16,-76 + 12407: -15,-82 + 12408: -14,-82 + 12409: -16,-67 + 12410: -15,-67 + 12411: -14,-67 + 12412: -13,-67 + 12452: -22,-82 + 12574: -3,36 + 12577: -3,41 + 12621: -40,27 + 12622: -40,27 + 13296: -39,-68 + 13297: -40,-68 + 13312: -37,-64 + 13313: -41,-64 + 13318: -37,-68 + 13333: -33,-68 + 13334: -32,-68 + 13335: -31,-68 + 13502: -33,-79 + 13860: -66,58 + 15396: -7,-79 + 15400: -2,-79 + 15636: 96,0 + 15660: 94,4 + 15661: 95,4 + 15751: 82,4 + 15752: 84,4 + 15753: 83,4 + 15754: 85,4 + 15755: 87,4 + 15756: 86,4 + 15757: 88,4 + 16088: -71,-42 + 16089: -67,-44 + 16090: -66,-44 + 16091: -65,-44 + 16092: -64,-44 + 16093: -63,-44 + 16098: -68,-46 + 16388: -40,-11 + 18047: -65,16 + 18048: -64,16 + 18339: -59,-46 + 18758: -114,31 + 18759: -113,31 + 19380: -10,34 + 19381: -9,34 + 19382: -13,34 + 19383: -12,34 + 19394: -10,30 + 19395: -9,30 + 19577: 53,30 + 19578: 54,30 + 19579: 55,30 + 19781: -26,10 + 19782: -25,10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1579: -40,27 - 1688: -50,-47 - 1689: -51,-47 - 1690: -52,-47 - 1691: -53,-47 - 1692: -54,-47 - 1693: -55,-47 + 1578: -40,27 + 1687: -50,-47 + 1688: -51,-47 + 1689: -52,-47 + 1690: -53,-47 + 1691: -54,-47 + 1692: -55,-47 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 228: -29,2 + 227: -29,2 - node: cleanable: True color: '#151C2553' id: WoodTrimThinLineW decals: - 236: 20,0 + 235: 20,0 - node: cleanable: True color: '#5F697828' id: WoodTrimThinLineW decals: - 211: 2,-52 - 212: 2,-50 + 210: 2,-52 + 211: 2,-50 - node: color: '#DABC8BFF' id: WoodTrimThinLineW decals: - 1989: -8,27 - 1990: -8,33 - 2005: -8,27 - 2006: -8,30 - 2007: -8,33 - 2459: -10,36 - 2460: -10,46 - 2462: -10,42 - 2463: -10,40 - 2464: -10,38 - 2465: -10,44 - 2501: -11,41 - 2565: -9,39 - 2566: -9,41 - 2567: -9,42 - 2568: -9,43 + 1988: -8,27 + 1989: -8,33 + 2004: -8,27 + 2005: -8,30 + 2006: -8,33 + 2458: -10,36 + 2459: -10,46 + 2461: -10,42 + 2462: -10,40 + 2463: -10,38 + 2464: -10,44 + 2500: -11,41 + 2564: -9,39 + 2565: -9,41 + 2566: -9,42 + 2567: -9,43 + 2579: -9,40 2580: -9,40 - 2581: -9,40 + 2631: -4,41 2632: -4,41 - 2633: -4,41 - 3013: -9,45 - 3987: -39,60 - 4125: -21,20 - 4128: -27,22 - 4132: -29,20 - 4165: -21,20 - 5667: 6,9 - 5668: 6,10 - 5691: 12,1 - 5729: 7,6 - 5737: 7,1 - 5738: 7,2 - 5739: 7,3 - 5751: 12,1 - 5759: 12,1 - 5828: -16,-5 - 5833: -14,-5 - 5845: -13,-4 - 5861: -14,0 - 5862: -14,1 - 5863: -14,2 - 5864: -14,3 - 5891: -10,-2 - 5917: -16,8 - 5918: -16,9 - 5919: -16,10 - 5945: -3,13 - 6237: -4,-12 - 6451: -31,-5 - 6452: -31,-6 + 3012: -9,45 + 3986: -39,60 + 4124: -21,20 + 4127: -27,22 + 4131: -29,20 + 4164: -21,20 + 5666: 6,9 + 5667: 6,10 + 5690: 12,1 + 5728: 7,6 + 5736: 7,1 + 5737: 7,2 + 5738: 7,3 + 5750: 12,1 + 5758: 12,1 + 5827: -16,-5 + 5832: -14,-5 + 5844: -13,-4 + 5860: -14,0 + 5861: -14,1 + 5862: -14,2 + 5863: -14,3 + 5890: -10,-2 + 5916: -16,8 + 5917: -16,9 + 5918: -16,10 + 5944: -3,13 + 6236: -4,-12 + 6450: -31,-5 + 6451: -31,-6 + 6452: -31,-7 6453: -31,-7 - 6454: -31,-7 - 6455: -31,-8 - 6456: -31,-9 - 6497: -35,-8 - 6498: -35,-7 - 6499: -35,-6 - 6500: -35,-5 - 6501: -35,-4 + 6454: -31,-8 + 6455: -31,-9 + 6496: -35,-8 + 6497: -35,-7 + 6498: -35,-6 + 6499: -35,-5 + 6500: -35,-4 + 6501: -35,-3 6502: -35,-3 - 6503: -35,-3 - 6504: -35,-2 + 6503: -35,-2 + 6504: -35,-1 6505: -35,-1 - 6506: -35,-1 + 6506: -35,0 6507: -35,0 - 6508: -35,0 - 6509: -35,1 - 6510: -35,2 - 6535: -26,-12 - 6591: -26,-8 + 6508: -35,1 + 6509: -35,2 + 6534: -26,-12 + 6590: -26,-8 + 6591: -26,-7 6592: -26,-7 - 6593: -26,-7 - 6621: -23,-7 - 6766: -34,-14 - 6767: -34,-13 - 7247: 33,-1 - 7248: 33,0 - 7278: 34,0 - 7332: 29,8 - 7333: 29,9 - 7334: 29,10 - 7735: 39,19 - 7736: 39,20 - 7737: 39,21 - 7738: 34,20 - 7750: 38,19 - 7751: 38,21 - 7760: 44,20 - 7761: 37,20 - 8529: 51,-25 - 8530: 51,-24 - 8545: 47,-24 - 8546: 47,-25 - 8556: 43,-25 - 8557: 43,-24 - 10259: 34,-31 - 10260: 34,-30 - 10261: 34,-29 - 10262: 35,-30 - 10284: 20,-52 - 10499: 14,-52 - 10500: 14,-51 - 10501: 14,-50 - 10704: 72,-39 - 10705: 72,-38 - 10714: 39,-55 - 10715: 39,-55 - 10716: 39,-54 - 10717: 39,-54 - 10718: 39,-52 - 10719: 39,-52 - 10731: 49,-55 - 10739: 49,-53 - 10750: 46,-52 - 10751: 46,-55 - 10752: 46,-55 - 10794: 44,-54 - 10795: 44,-53 - 10796: 44,-52 - 11172: -56,-46 - 11173: -56,-45 - 11174: -56,-44 - 11192: -47,-43 - 11193: -47,-43 - 11194: -47,-44 - 11195: -47,-44 - 11196: -47,-45 - 11197: -47,-45 - 11209: -54,-48 - 11220: -61,-43 - 12331: -21,-47 - 12488: -12,-66 - 12489: -12,-67 - 12491: -19,-75 - 12496: -17,-73 - 12497: -17,-72 - 12498: -17,-71 - 12499: -17,-70 - 12500: -17,-69 - 12501: -17,-68 - 12507: -16,-80 - 12508: -16,-81 - 12518: -23,-81 - 12639: -1,40 - 12649: -4,38 - 12650: -4,39 - 12700: -37,27 - 12701: -38,27 - 12702: -38,28 - 13362: -41,-67 - 13363: -41,-66 - 13378: -41,-65 - 13382: -35,-66 - 13401: -34,-67 - 13572: -35,-78 - 13920: -68,59 - 13921: -68,60 - 13922: -68,61 - 15458: -8,-78 - 15460: -3,-78 - 15686: 91,4 - 15687: 91,3 - 15688: 91,2 - 15689: 91,1 - 15690: 91,0 - 15691: 91,-1 - 15731: 97,2 - 15823: 81,5 - 15824: 81,6 - 15890: 97,13 - 16148: -72,-41 - 16149: -70,-44 - 16150: -70,-45 - 16160: -61,-43 - 16452: -41,-10 - 18115: -66,17 - 18125: -58,6 - 18399: -60,-44 - 18400: -60,-45 - 18826: -115,32 - 19464: -11,31 - 19465: -11,32 - 19466: -11,33 - 19467: -11,29 - 19468: -11,28 - 19469: -11,27 - 19532: 55,23 - 19533: 55,24 - 19534: 55,25 - 19535: 55,26 - 19536: 52,23 - 19537: 52,24 - 19538: 52,25 - 19539: 52,26 - 19848: -27,11 - 19849: -27,12 + 6620: -23,-7 + 6765: -34,-14 + 6766: -34,-13 + 7246: 33,-1 + 7247: 33,0 + 7277: 34,0 + 7331: 29,8 + 7332: 29,9 + 7333: 29,10 + 7734: 39,19 + 7735: 39,20 + 7736: 39,21 + 7737: 34,20 + 7749: 38,19 + 7750: 38,21 + 7759: 44,20 + 7760: 37,20 + 8528: 51,-25 + 8529: 51,-24 + 8544: 47,-24 + 8545: 47,-25 + 8555: 43,-25 + 8556: 43,-24 + 10205: 34,-31 + 10206: 34,-30 + 10207: 34,-29 + 10208: 35,-30 + 10230: 20,-52 + 10437: 14,-52 + 10438: 14,-51 + 10439: 14,-50 + 10642: 72,-39 + 10643: 72,-38 + 10652: 39,-55 + 10653: 39,-55 + 10654: 39,-54 + 10655: 39,-54 + 10656: 39,-52 + 10657: 39,-52 + 10669: 49,-55 + 10677: 49,-53 + 10688: 46,-52 + 10689: 46,-55 + 10690: 46,-55 + 10732: 44,-54 + 10733: 44,-53 + 10734: 44,-52 + 11110: -56,-46 + 11111: -56,-45 + 11112: -56,-44 + 11130: -47,-43 + 11131: -47,-43 + 11132: -47,-44 + 11133: -47,-44 + 11134: -47,-45 + 11135: -47,-45 + 11147: -54,-48 + 11158: -61,-43 + 12269: -21,-47 + 12425: -12,-66 + 12426: -12,-67 + 12428: -19,-75 + 12433: -17,-73 + 12434: -17,-72 + 12435: -17,-71 + 12436: -17,-70 + 12437: -17,-69 + 12438: -17,-68 + 12444: -16,-80 + 12445: -16,-81 + 12455: -23,-81 + 12576: -1,40 + 12586: -4,38 + 12587: -4,39 + 12637: -37,27 + 12638: -38,27 + 12639: -38,28 + 13299: -41,-67 + 13300: -41,-66 + 13315: -41,-65 + 13319: -35,-66 + 13338: -34,-67 + 13509: -35,-78 + 13857: -68,59 + 13858: -68,60 + 13859: -68,61 + 15395: -8,-78 + 15397: -3,-78 + 15623: 91,4 + 15624: 91,3 + 15625: 91,2 + 15626: 91,1 + 15627: 91,0 + 15628: 91,-1 + 15668: 97,2 + 15760: 81,5 + 15761: 81,6 + 15827: 97,13 + 16085: -72,-41 + 16086: -70,-44 + 16087: -70,-45 + 16097: -61,-43 + 16389: -41,-10 + 18052: -66,17 + 18062: -58,6 + 18336: -60,-44 + 18337: -60,-45 + 18763: -115,32 + 19400: -11,31 + 19401: -11,32 + 19402: -11,33 + 19403: -11,29 + 19404: -11,28 + 19405: -11,27 + 19468: 55,23 + 19469: 55,24 + 19470: 55,25 + 19471: 55,26 + 19472: 52,23 + 19473: 52,24 + 19474: 52,25 + 19475: 52,26 + 19784: -27,11 + 19785: -27,12 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 887: -2,6 - 888: -2,2 - 889: -2,1 - 890: -2,-3 - 1695: -56,-46 - 1696: -56,-45 - 1697: -56,-44 + 886: -2,6 + 887: -2,2 + 888: -2,1 + 889: -2,-3 + 1694: -56,-46 + 1695: -56,-45 + 1696: -56,-44 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 208: 14,-52 - 218: -35,-5 - 219: -35,-7 - 222: -31,-6 - 223: -31,-5 - 224: -31,-7 - 225: -31,-8 - 226: -31,-9 + 207: 14,-52 + 217: -35,-5 + 218: -35,-7 + 221: -31,-6 + 222: -31,-5 + 223: -31,-7 + 224: -31,-8 + 225: -31,-9 - node: angle: 1.5707963267948966 rad color: '#FFFF00FF' id: arrow decals: - 853: -80,-13 + 852: -80,-13 - node: angle: -1.5707963267948966 rad color: '#FFFFFF42' id: clown decals: - 13338: 55.22766,-37.04212 + 13275: 55.22766,-37.04212 - node: angle: 1.5707963267948966 rad color: '#FFFFFF42' id: corgi decals: - 13339: 53.258907,-37.95879 + 13276: 53.258907,-37.95879 - node: color: '#FFFFFF42' id: disk decals: - 13337: 54.696407,-34.97962 + 13274: 54.696407,-34.97962 - node: color: '#FFFFFF42' id: face decals: - 13336: 54.258907,-35.719204 - - node: - cleanable: True - angle: -0.7853981633974483 rad - color: '#95171085' - id: footprint - decals: - 15347: -45.887077,-23.10373 - 15348: -45.527702,-22.869354 + 13273: 54.258907,-35.719204 - node: color: '#D381C996' id: ghost decals: - 1041: -38,-53 - - node: - cleanable: True - color: '#53960057' - id: grasssnow01 - decals: - 419: -53,-26 - 420: -53,-29 - 421: -53,-30 + 1040: -38,-53 - node: color: '#FFFFFFFF' id: grasssnow01 decals: - 14193: -71.98031,53.856472 - - node: - cleanable: True - color: '#53960057' - id: grasssnow02 - decals: - 422: -53,-31 - 425: -49,-25 - 434: -35,-34 + 14130: -71.98031,53.856472 - node: cleanable: True color: '#53960057' id: grasssnow03 decals: - 472: -44,-15 + 471: -44,-15 - node: cleanable: True color: '#5396006C' id: grasssnow03 decals: - 462: -54,-23 + 461: -54,-23 - node: cleanable: True color: '#53960057' id: grasssnow04 decals: - 429: -44,-29 - 430: -40,-29 - 431: -39,-34 - 432: -37,-34 - 433: -34,-34 - 458: -47,-31 - 466: -29,-20 - 467: -28,-20 - - node: - cleanable: True - color: '#53960076' - id: grasssnow04 - decals: - 450: -48,-31 - 451: -46,-31 + 465: -29,-20 + 466: -28,-20 - node: color: '#FFFFFFFF' id: grasssnow05 decals: - 14189: -71.26156,54.153347 - - node: - cleanable: True - color: '#53960057' - id: grasssnow06 - decals: - 411: -36,-26 - 412: -42,-22 - 413: -52,-25 - 426: -48,-25 - 427: -44,-27 - 428: -40,-27 + 14126: -71.26156,54.153347 - node: cleanable: True color: '#5396006C' id: grasssnow06 decals: - 463: -47,-20 - 464: -46,-20 - - node: - cleanable: True - color: '#53960076' - id: grasssnow06 - decals: - 446: -37,-27 - 447: -34,-30 - 452: -43,-26 - 453: -41,-26 - 454: -37,-26 + 462: -47,-20 + 463: -46,-20 - node: cleanable: True color: '#69856092' id: grasssnow06 decals: - 281: 41.151386,-22.986418 - 282: 41.320934,-23.252977 - 283: 40.54585,-22.71986 + 280: 41.151386,-22.986418 + 281: 41.320934,-23.252977 + 282: 40.54585,-22.71986 - node: cleanable: True - color: '#53960057' + color: '#007200FF' id: grasssnow07 decals: - 401: -53,-25 - 402: -43,-22 - 436: -43,-32 + 24232: -50.970387,-31.025862 + 24239: -40.149033,-29.129581 - node: cleanable: True color: '#54995A7A' id: grasssnow07 decals: - 372: -30,-56 + 371: -30,-56 - node: color: '#FFFFFFFF' id: grasssnow07 decals: - 14190: -70.73031,54.825222 + 14127: -70.73031,54.825222 - node: cleanable: True - color: '#53960057' + color: '#007200FF' id: grasssnow08 decals: - 400: -50.773136,-24.972065 - 403: -41,-22 - 404: -37,-22 - 418: -50,-27 + 24233: -52.54851,-27.166487 + 24236: -47.18966,-25.15085 + 24240: -34.586533,-27.223331 + 24241: -27.84777,-26.051447 - node: cleanable: True color: '#5396008C' id: grasssnow08 decals: - 473: -22,-20 + 472: -22,-20 - node: cleanable: True color: '#54995A7A' id: grasssnow08 decals: - 373: -27,-56 + 372: -27,-56 - node: color: '#FFFFFFFF' id: grasssnow08 decals: - 14191: -70.04281,53.918972 + 14128: -70.04281,53.918972 - node: cleanable: True - color: '#53960057' + color: '#007200FF' id: grasssnow09 decals: - 406: -37,-28 - 407: -43,-29 - 408: -43,-33 - 438: -42,-23 - 439: -41,-24 - 440: -38,-24 - 441: -33,-23 + 24238: -34.446346,-23.882437 - node: cleanable: True - color: '#5396008C' - id: grasssnow09 + color: '#007200FF' + id: grasssnow10 decals: - 474: -46,-23 + 24234: -41.12114,-26.947725 + 24237: -42.821163,-21.898071 + 24242: -27.082205,-23.899069 - node: cleanable: True color: '#53960057' id: grasssnow10 decals: - 424: -49,-31 - 442: -37,-28 - 443: -33,-29 + 442: -33,-29 - node: cleanable: True color: '#53960076' id: grasssnow10 decals: - 444: -33,-28 - 445: -40,-28 + 443: -33,-28 - node: color: '#FFFFFFFF' id: grasssnow10 decals: - 14188: -71.855316,54.965847 + 14125: -71.855316,54.965847 - node: cleanable: True color: '#53960057' id: grasssnow11 decals: - 405: -42,-28 - 409: -37,-32 - 410: -39,-33 - 414: -51,-28 - 415: -52,-30 - 437: -41,-32 - 469: -33,-19 - 470: -37,-18 - 471: -37,-13 + 468: -33,-19 + 469: -37,-18 + 470: -37,-13 - node: cleanable: True - color: '#53960076' - id: grasssnow11 - decals: - 448: -42,-27 - 449: -46,-29 - - node: - cleanable: True - color: '#539600AB' - id: grasssnow11 - decals: - 461: -45.806736,-27.276812 - - node: - cleanable: True - color: '#53960057' + color: '#007200FF' id: grasssnow12 decals: - 416: -51,-30 + 24235: -44.986534,-30.057102 - node: cleanable: True color: '#53960057' id: grasssnow13 decals: - 417: -50,-29 - 423: -51,-31 - 435: -41,-34 - 468: -27,-20 + 467: -27,-20 - node: color: '#FFFFFFFF' id: grasssnowa1 decals: - 14187: -70.57406,54.043972 + 14124: -70.57406,54.043972 - node: color: '#FFFFFFFF' id: grasssnowb1 decals: - 14186: -71.94906,54.028347 + 14123: -71.94906,54.028347 - node: color: '#FFFFFFFF' id: grasssnowc3 decals: - 14192: -72.02719,55.09085 + 14129: -72.02719,55.09085 - node: angle: 1.5707963267948966 rad color: '#640000FF' id: pawprint decals: - 13333: 52.706825,-37.17754 + 13270: 52.706825,-37.17754 - node: angle: 3.141592653589793 rad color: '#640000FF' id: pawprint decals: - 13326: 52.727657,-35.10462 - 13327: 52.988075,-35.38587 - 13328: 52.696407,-35.60462 - 13329: 52.95682,-35.91712 - 13330: 52.71724,-36.125458 - 13331: 52.96724,-36.45879 - 13332: 52.67557,-36.656708 - 13334: 52.95682,-36.92754 - 13335: 52.946407,-34.79212 + 13263: 52.727657,-35.10462 + 13264: 52.988075,-35.38587 + 13265: 52.696407,-35.60462 + 13266: 52.95682,-35.91712 + 13267: 52.71724,-36.125458 + 13268: 52.96724,-36.45879 + 13269: 52.67557,-36.656708 + 13271: 52.95682,-36.92754 + 13272: 52.946407,-34.79212 - node: color: '#630000FF' id: rune2 decals: - 13589: -29.676588,-77.64111 + 13526: -29.676588,-77.64111 - node: color: '#630000FF' id: rune4 decals: - 13587: -36.02427,-73.86186 + 13524: -36.02427,-73.86186 - node: color: '#630000FF' id: rune5 decals: - 13588: -32.153282,-75.98998 + 13525: -32.153282,-75.98998 - node: color: '#630000FF' id: rune6 decals: - 13590: -35.987576,-80.062775 - - node: - color: '#15FFFF22' - id: splatter - decals: - 21595: -62.94583,-29.13605 - 21596: -63.35208,-29.2298 - 21597: -63.38333,-29.292301 - 21598: -63.16458,-29.401674 - 21599: -62.992706,-29.44855 - 21600: -63.242702,-29.776674 - 21601: -63.055202,-29.7923 - 21602: -62.805202,-29.589174 - 21603: -62.53958,-29.38605 - 21604: -62.430206,-29.26105 - 21605: -62.492706,-29.151674 - 21606: -62.805206,-28.94855 - 21607: -62.97708,-28.901674 + 13527: -35.987576,-80.062775 - node: - color: '#15FFFF68' + cleanable: True + color: '#004200FF' id: splatter decals: - 21590: -63.180206,-29.32355 - 21591: -63.180206,-29.32355 - 21592: -62.88333,-29.214174 - 21593: -62.711456,-29.182924 - 21594: -62.648956,-29.151674 + 24216: -41.817936,-33.475822 + 24217: -41.98981,-33.288322 + 24218: -41.94294,-33.178947 + 24219: -41.614815,-33.085197 + 24220: -41.442936,-33.288322 + 24221: -41.849186,-33.257072 + 24222: -41.817936,-33.241447 - node: cleanable: True - color: '#52B4E93B' + color: '#009F00FF' id: splatter decals: - 293: -27.022144,64.910675 + 24223: -49.463943,-24.643959 + 24224: -49.41707,-24.784584 + 24225: -49.401443,-25.159584 + 24226: -49.10457,-25.331459 + 24227: -48.94832,-25.378334 + 24228: -49.370193,-25.347084 + 24229: -33.46581,-22.835894 + 24230: -32.825184,-22.539019 + 24231: -33.09081,-23.007769 - node: - cleanable: True - color: '#52B4E95A' + color: '#15FFFF22' id: splatter decals: - 289: 23.867323,-16.021215 + 21527: -62.94583,-29.13605 + 21528: -63.35208,-29.2298 + 21529: -63.38333,-29.292301 + 21530: -63.16458,-29.401674 + 21531: -62.992706,-29.44855 + 21532: -63.242702,-29.776674 + 21533: -63.055202,-29.7923 + 21534: -62.805202,-29.589174 + 21535: -62.53958,-29.38605 + 21536: -62.430206,-29.26105 + 21537: -62.492706,-29.151674 + 21538: -62.805206,-28.94855 + 21539: -62.97708,-28.901674 - node: - cleanable: True - color: '#5396009B' + color: '#15FFFF68' id: splatter decals: - 455: -47.14132,-30.814823 - 456: -46.793392,-30.864574 - 457: -40.964306,-26.53368 - 459: -32.68557,-31.67585 + 21522: -63.180206,-29.32355 + 21523: -63.180206,-29.32355 + 21524: -62.88333,-29.214174 + 21525: -62.711456,-29.182924 + 21526: -62.648956,-29.151674 - node: cleanable: True - color: '#539600E0' + color: '#52B4E93B' id: splatter decals: - 465: -36,-26 + 292: -27.022144,64.910675 - node: cleanable: True - color: '#539600FF' + color: '#52B4E95A' id: splatter decals: - 475: -45,-22 + 288: 23.867323,-16.021215 - node: color: '#630000FF' id: splatter decals: - 13582: -29.986324,-80.05321 - 13583: -29.949633,-80.47516 - 13584: -28.824398,-73.46101 - 13585: -28.98951,-73.22252 - 13586: -28.695976,-73.13079 - 13591: -33.67599,-75.01765 - 13592: -33.565918,-74.7608 + 13519: -29.986324,-80.05321 + 13520: -29.949633,-80.47516 + 13521: -28.824398,-73.46101 + 13522: -28.98951,-73.22252 + 13523: -28.695976,-73.13079 + 13528: -33.67599,-75.01765 + 13529: -33.565918,-74.7608 - node: color: '#640000FF' id: splatter decals: - 13323: 55.854828,-38.332344 - 13324: 55.42427,-38.3879 - 13325: 52.66038,-34.5129 + 13260: 55.854828,-38.332344 + 13261: 55.42427,-38.3879 + 13262: 52.66038,-34.5129 - node: cleanable: True color: '#6CDBD006' id: splatter decals: - 14389: -65.29756,58.074463 - 14390: -65.51631,62.043217 - 14391: -65.34444,61.793213 - 14392: -67.65694,58.027588 - 14393: -67.54756,58.465088 - 14394: -67.23506,61.699463 - 14395: -66.76631,61.652588 - 14396: -67.12569,61.715088 + 14326: -65.29756,58.074463 + 14327: -65.51631,62.043217 + 14328: -65.34444,61.793213 + 14329: -67.65694,58.027588 + 14330: -67.54756,58.465088 + 14331: -67.23506,61.699463 + 14332: -66.76631,61.652588 + 14333: -67.12569,61.715088 - node: cleanable: True color: '#6CDBD012' id: splatter decals: - 14397: -67.01631,61.777588 + 14334: -67.01631,61.777588 - node: cleanable: True color: '#6CDBD015' id: splatter decals: - 14132: -71.167816,57.481472 - 14133: -70.58969,57.543972 - 14134: -70.667816,58.090847 - 14135: -70.667816,57.715847 - 14136: -70.96469,57.497097 - 14137: -71.136566,57.387722 - 14138: -71.21469,57.059597 - 14139: -71.167816,56.903347 - 14140: -71.136566,57.153347 - 14141: -70.824066,57.512722 - 14142: -70.58969,57.684597 - 14143: -70.43344,57.997097 - 14144: -70.43343,58.262722 - 14145: -70.43344,58.122097 - 14146: -70.511566,57.715847 - 14147: -70.667816,57.434597 - 14148: -71.02719,57.278347 - 14149: -72.12094,57.6221 - 14150: -72.12094,57.6221 - 14151: -71.90219,57.700222 - 14152: -71.667816,57.840847 - 14153: -71.52719,58.043972 - 14154: -71.511566,58.200222 - 14155: -71.511566,58.200222 - 14156: -71.605316,57.997097 - 14157: -71.761566,57.778347 - 14158: -71.90219,57.575222 - 14159: -72.05844,57.497097 - 14160: -72.167816,57.450226 - 14161: -72.230316,57.418976 - 14162: -72.02719,57.481472 - 14163: -71.74594,57.684597 - 14164: -71.542816,57.934597 - 14165: -71.48031,58.247097 - 14166: -71.48031,58.372097 - 14167: -71.49594,58.200222 - 14168: -71.77719,57.747097 - 14169: -72.15219,57.418976 - 14170: -72.386566,57.27835 - 14171: -71.136566,56.715847 - 14172: -71.08969,56.715847 - 14173: -70.949066,56.622097 - 14174: -70.80844,56.559597 - 14175: -70.62094,56.543972 - 14176: -70.37094,56.512722 - 14177: -70.15219,56.512722 - 14178: -69.917816,56.512722 - 14179: -69.792816,56.512726 + 14069: -71.167816,57.481472 + 14070: -70.58969,57.543972 + 14071: -70.667816,58.090847 + 14072: -70.667816,57.715847 + 14073: -70.96469,57.497097 + 14074: -71.136566,57.387722 + 14075: -71.21469,57.059597 + 14076: -71.167816,56.903347 + 14077: -71.136566,57.153347 + 14078: -70.824066,57.512722 + 14079: -70.58969,57.684597 + 14080: -70.43344,57.997097 + 14081: -70.43343,58.262722 + 14082: -70.43344,58.122097 + 14083: -70.511566,57.715847 + 14084: -70.667816,57.434597 + 14085: -71.02719,57.278347 + 14086: -72.12094,57.6221 + 14087: -72.12094,57.6221 + 14088: -71.90219,57.700222 + 14089: -71.667816,57.840847 + 14090: -71.52719,58.043972 + 14091: -71.511566,58.200222 + 14092: -71.511566,58.200222 + 14093: -71.605316,57.997097 + 14094: -71.761566,57.778347 + 14095: -71.90219,57.575222 + 14096: -72.05844,57.497097 + 14097: -72.167816,57.450226 + 14098: -72.230316,57.418976 + 14099: -72.02719,57.481472 + 14100: -71.74594,57.684597 + 14101: -71.542816,57.934597 + 14102: -71.48031,58.247097 + 14103: -71.48031,58.372097 + 14104: -71.49594,58.200222 + 14105: -71.77719,57.747097 + 14106: -72.15219,57.418976 + 14107: -72.386566,57.27835 + 14108: -71.136566,56.715847 + 14109: -71.08969,56.715847 + 14110: -70.949066,56.622097 + 14111: -70.80844,56.559597 + 14112: -70.62094,56.543972 + 14113: -70.37094,56.512722 + 14114: -70.15219,56.512722 + 14115: -69.917816,56.512722 + 14116: -69.792816,56.512726 - node: cleanable: True color: '#6CDBD034' id: splatter decals: - 14180: -70.917816,56.653347 - 14181: -70.71469,56.653347 - 14182: -70.49594,56.653347 - 14183: -70.136566,56.622097 - 14184: -69.90219,56.6221 - 14185: -69.87094,56.6221 + 14117: -70.917816,56.653347 + 14118: -70.71469,56.653347 + 14119: -70.49594,56.653347 + 14120: -70.136566,56.622097 + 14121: -69.90219,56.6221 + 14122: -69.87094,56.6221 - node: cleanable: True color: '#703C065D' id: splatter decals: - 290: 26.8611,-18.022274 - 291: -24.263258,60.864494 - 292: -23.924158,60.93719 - - node: - cleanable: True - color: '#79150057' - id: splatter - decals: - 397: -51.105984,-30.675503 - 398: -51.32965,-25.277493 - 399: -39.329338,-29.459183 + 289: 26.8611,-18.022274 + 290: -24.263258,60.864494 + 291: -23.924158,60.93719 - node: cleanable: True color: '#79150072' id: splatter decals: - 1205: 4.891087,-50.39177 - 1206: 5.9236617,-50.067284 - 1207: 5.982666,-50.52451 + 1204: 4.891087,-50.39177 + 1205: 5.9236617,-50.067284 + 1206: 5.982666,-50.52451 - node: color: '#95000068' id: splatter decals: - 21531: -64.85194,-25.289093 - 21532: -65.03944,-25.289093 - 21533: -65.35194,-25.195345 - 21534: -65.11756,-24.773468 - 21535: -64.94569,-24.585968 - 21536: -64.71131,-24.695343 - 21537: -64.75819,-25.132843 - 21538: -64.82069,-25.226593 - 21539: -65.22694,-25.27347 - 21540: -65.43006,-25.164095 - 21541: -65.50819,-25.039095 - 21542: -65.25819,-25.101595 - 21543: -64.49256,-27.11722 - 21544: -64.49256,-27.257845 - 21545: -64.25819,-27.476595 - 21546: -63.99256,-27.507845 - 21547: -63.93006,-27.55472 - 21548: -64.27381,-27.61722 - 21549: -64.49256,-27.382845 - 21550: -58.945686,-27.39847 - 21551: -59.570686,-27.351593 - 21552: -59.64881,-27.351595 - 21553: -59.21131,-27.117218 - 21554: -59.476936,-27.164093 - 21555: -59.695686,-27.49222 - 21556: -59.86756,-27.601595 - 21557: -63.789436,-22.445345 - 21558: -64.18006,-22.507845 - 21559: -64.38319,-22.64847 - 21560: -64.64881,-23.007843 - 21561: -64.64881,-23.007843 - 21562: -64.36756,-22.58597 - 21563: -64.11756,-22.414095 - 21564: -59.055065,-25.320345 - 21565: -59.22694,-25.023468 - 21566: -58.867565,-24.757845 - 21567: -58.57069,-24.58597 - 21568: -58.69569,-24.507845 - 21569: -58.94569,-25.132845 - 21570: -58.773815,-25.101595 - 21571: -63.070805,-30.339186 - 21572: -63.336452,-30.19855 - 21573: -63.570827,-29.886051 - 21574: -63.38333,-29.401676 - 21575: -63.47708,-29.167301 - 21576: -63.53958,-28.917301 - 21577: -63.336456,-28.964174 - 21578: -63.539577,-29.495426 - 21579: -63.430202,-29.964176 - 21580: -63.242702,-30.07355 - 21581: -63.086452,-30.19855 - 21582: -61.617706,-29.229801 - 21583: -61.336456,-29.151674 - 21584: -61.242706,-28.9173 - 21585: -61.055206,-28.745424 - 21586: -60.836456,-28.7298 - 21587: -60.742706,-28.7298 - 21588: -60.836456,-28.870424 - 21589: -60.85208,-29.120424 - - node: - cleanable: True - color: '#95171085' - id: splatter - decals: - 15342: -45.01208,-21.634981 - 15343: -44.66833,-21.947481 - 15344: -45.13708,-21.775606 - 15345: -44.82458,-21.947481 - 15346: -45.012077,-22.541231 + 21463: -64.85194,-25.289093 + 21464: -65.03944,-25.289093 + 21465: -65.35194,-25.195345 + 21466: -65.11756,-24.773468 + 21467: -64.94569,-24.585968 + 21468: -64.71131,-24.695343 + 21469: -64.75819,-25.132843 + 21470: -64.82069,-25.226593 + 21471: -65.22694,-25.27347 + 21472: -65.43006,-25.164095 + 21473: -65.50819,-25.039095 + 21474: -65.25819,-25.101595 + 21475: -64.49256,-27.11722 + 21476: -64.49256,-27.257845 + 21477: -64.25819,-27.476595 + 21478: -63.99256,-27.507845 + 21479: -63.93006,-27.55472 + 21480: -64.27381,-27.61722 + 21481: -64.49256,-27.382845 + 21482: -58.945686,-27.39847 + 21483: -59.570686,-27.351593 + 21484: -59.64881,-27.351595 + 21485: -59.21131,-27.117218 + 21486: -59.476936,-27.164093 + 21487: -59.695686,-27.49222 + 21488: -59.86756,-27.601595 + 21489: -63.789436,-22.445345 + 21490: -64.18006,-22.507845 + 21491: -64.38319,-22.64847 + 21492: -64.64881,-23.007843 + 21493: -64.64881,-23.007843 + 21494: -64.36756,-22.58597 + 21495: -64.11756,-22.414095 + 21496: -59.055065,-25.320345 + 21497: -59.22694,-25.023468 + 21498: -58.867565,-24.757845 + 21499: -58.57069,-24.58597 + 21500: -58.69569,-24.507845 + 21501: -58.94569,-25.132845 + 21502: -58.773815,-25.101595 + 21503: -63.070805,-30.339186 + 21504: -63.336452,-30.19855 + 21505: -63.570827,-29.886051 + 21506: -63.38333,-29.401676 + 21507: -63.47708,-29.167301 + 21508: -63.53958,-28.917301 + 21509: -63.336456,-28.964174 + 21510: -63.539577,-29.495426 + 21511: -63.430202,-29.964176 + 21512: -63.242702,-30.07355 + 21513: -63.086452,-30.19855 + 21514: -61.617706,-29.229801 + 21515: -61.336456,-29.151674 + 21516: -61.242706,-28.9173 + 21517: -61.055206,-28.745424 + 21518: -60.836456,-28.7298 + 21519: -60.742706,-28.7298 + 21520: -60.836456,-28.870424 + 21521: -60.85208,-29.120424 - node: cleanable: True color: '#951710FF' id: splatter decals: - 989: -44.48576,-37.892525 - 990: -40.013565,-36.083096 + 988: -44.48576,-37.892525 + 989: -40.013565,-36.083096 - node: cleanable: True color: '#D9DBD0CC' id: splatter decals: - 14121: -70.230316,55.856472 - 14122: -69.87094,55.84085 - 14123: -70.71469,55.918972 - 14124: -70.105316,55.684597 - 14125: -69.824066,55.7471 - 14126: -70.80844,55.918972 - 14127: -71.199066,55.903347 - 14128: -71.52719,55.950222 - 14129: -72.042816,56.0596 - 14130: -72.33969,56.09085 - 14131: -71.77719,55.965847 + 14058: -70.230316,55.856472 + 14059: -69.87094,55.84085 + 14060: -70.71469,55.918972 + 14061: -70.105316,55.684597 + 14062: -69.824066,55.7471 + 14063: -70.80844,55.918972 + 14064: -71.199066,55.903347 + 14065: -71.52719,55.950222 + 14066: -72.042816,56.0596 + 14067: -72.33969,56.09085 + 14068: -71.77719,55.965847 - node: color: '#FF002268' id: splatter decals: - 21525: -64.99256,-25.179718 - 21526: -65.21131,-24.976593 - 21527: -64.78944,-24.710968 - 21528: -64.61756,-24.89847 - 21529: -64.64881,-25.351593 - 21530: -64.91444,-25.367218 + 21457: -64.99256,-25.179718 + 21458: -65.21131,-24.976593 + 21459: -64.78944,-24.710968 + 21460: -64.61756,-24.89847 + 21461: -64.64881,-25.351593 + 21462: -64.91444,-25.367218 - node: cleanable: True color: '#FFFFFFCD' id: splatter decals: - 14101: -70.58968,54.450222 - 14102: -70.30843,54.309597 - 14103: -69.88656,54.2471 - 14104: -70.43343,54.512722 - 14105: -70.730316,54.950222 - 14106: -70.58969,55.262722 - 14107: -70.62094,55.184597 - 14108: -70.74594,54.856472 - 14109: -70.62093,54.653347 - 14110: -70.54281,54.465847 - 14111: -70.58969,55.325222 - 14112: -69.74593,54.325226 - 14113: -70.52719,54.887722 - 14114: -70.18343,54.700222 - 14115: -72.199066,55.481476 - 14116: -71.761566,55.450222 - 14117: -71.355316,55.434597 - 14118: -71.08969,55.403347 - 14119: -70.58969,55.497097 - 14120: -70.65219,55.559597 + 14038: -70.58968,54.450222 + 14039: -70.30843,54.309597 + 14040: -69.88656,54.2471 + 14041: -70.43343,54.512722 + 14042: -70.730316,54.950222 + 14043: -70.58969,55.262722 + 14044: -70.62094,55.184597 + 14045: -70.74594,54.856472 + 14046: -70.62093,54.653347 + 14047: -70.54281,54.465847 + 14048: -70.58969,55.325222 + 14049: -69.74593,54.325226 + 14050: -70.52719,54.887722 + 14051: -70.18343,54.700222 + 14052: -72.199066,55.481476 + 14053: -71.761566,55.450222 + 14054: -71.355316,55.434597 + 14055: -71.08969,55.403347 + 14056: -70.58969,55.497097 + 14057: -70.65219,55.559597 - node: color: '#A40000FF' id: star decals: - 13581: -33.071037,-77.06283 + 13518: -33.071037,-77.06283 - node: cleanable: True color: '#DDC3A1FF' id: toilet decals: - 988: -45.00619,-38.08002 + 987: -45.00619,-38.08002 - type: GridAtmosphere version: 2 data: @@ -191698,10 +191464,9 @@ entities: - type: Transform pos: 33.5,-60.5 parent: 2 - - uid: 24665 + - uid: 24681 components: - type: Transform - rot: 3.141592653589793 rad pos: 35.5,-66.5 parent: 2 - uid: 39279 @@ -191711,6 +191476,11 @@ entities: parent: 38411 - proto: InflatableWall entities: + - uid: 24665 + components: + - type: Transform + pos: 34.5,-66.5 + parent: 2 - uid: 24666 components: - type: Transform @@ -191744,7 +191514,7 @@ entities: - uid: 24672 components: - type: Transform - pos: 38.5,-62.5 + pos: 36.5,-66.5 parent: 2 - uid: 24673 components: @@ -191791,18 +191561,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,-40.5 parent: 2 - - uid: 24681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-66.5 - parent: 2 - - uid: 24682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-66.5 - parent: 2 - uid: 24683 components: - type: Transform @@ -225784,7 +225542,7 @@ entities: rot: 1.5707963267948966 rad pos: 71.5,5.5 parent: 2 -- proto: SignAtmosMinsky +- proto: SignAtmos entities: - uid: 29305 components: @@ -225864,8 +225622,6 @@ entities: - type: Transform pos: -37.5,56.5 parent: 2 -- proto: SignChemistry1 - entities: - uid: 29318 components: - type: Transform @@ -226506,7 +226262,7 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-47.5 parent: 2 -- proto: SignHydro2 +- proto: SignHydro1 entities: - uid: 29426 components: @@ -226700,7 +226456,7 @@ entities: - type: Transform pos: -2.5,-49.5 parent: 2 -- proto: SignScience1 +- proto: SignScience entities: - uid: 29455 components: @@ -227263,7 +227019,7 @@ entities: rot: 3.141592653589793 rad pos: 28.5,-58.5 parent: 2 -- proto: SignXenobio2 +- proto: SignXenobio entities: - uid: 29553 components: diff --git a/Resources/Maps/corvax_frame.yml b/Resources/Maps/corvax_frame.yml index 1f133c2a77f..cff2f1ca27d 100644 --- a/Resources/Maps/corvax_frame.yml +++ b/Resources/Maps/corvax_frame.yml @@ -268,7 +268,7 @@ entities: version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABQAAAAAABQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAABQAAAAAABQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -1,0: ind: -1,0 @@ -280,7 +280,7 @@ entities: version: 6 -1,1: ind: -1,1 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA + tiles: bwAAAAAAbwAAAAAAbwAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,0: ind: -2,0 @@ -304,7 +304,7 @@ entities: version: 6 -1,2: ind: -1,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 @@ -312,7 +312,7 @@ entities: version: 6 -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -340,8 +340,9 @@ entities: decals: 89: -6,2 129: -10,18 - 130: -10,17 547: 7,20 + 662: -9,18 + 663: -11,18 - node: cleanable: True color: '#FFFFFFFF' @@ -969,7 +970,6 @@ entities: 127: -13,12 128: -12,16 131: -12,18 - 132: -10,17 172: 7,12 173: 8,11 174: -3,11 @@ -1812,7 +1812,8 @@ entities: 5,8: 0: 4371 0,9: - 0: 20479 + 2: 17 + 0: 20462 1: 32768 1,9: 1: 13105 @@ -2762,12 +2763,30 @@ entities: rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 2 + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,44.5 + parent: 183 + - uid: 397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,44.5 + parent: 183 - uid: 498 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,24.5 parent: 183 + - uid: 782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,44.5 + parent: 183 - uid: 874 components: - type: Transform @@ -2786,6 +2805,12 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-14.5 parent: 183 + - uid: 901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,44.5 + parent: 183 - uid: 2058 components: - type: Transform @@ -6328,10 +6353,10 @@ entities: parent: 183 - proto: CounterWoodFrame entities: - - uid: 791 + - uid: 861 components: - type: Transform - pos: -9.5,21.5 + pos: -8.5,21.5 parent: 183 - proto: CrateEngineeringCableBulk entities: @@ -6546,6 +6571,24 @@ entities: - type: Transform pos: 0.5,36.5 parent: 183 + - 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: CrateTrashCartFilled entities: - uid: 1031 @@ -6553,6 +6596,24 @@ entities: - type: Transform pos: 0.5,37.5 parent: 183 + - 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: CryogenicSleepUnit entities: - uid: 748 @@ -10013,24 +10074,12 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 183 - - uid: 836 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,21.5 - parent: 183 - uid: 859 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,23.5 parent: 183 - - uid: 861 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,20.5 - parent: 183 - uid: 1944 components: - type: Transform @@ -10719,15 +10768,15 @@ entities: parent: 183 - proto: MedkitOxygenFilled entities: - - uid: 774 + - uid: 396 components: - type: Transform - pos: -7.3126326,2.3465002 + pos: -8.48673,21.435091 parent: 183 - - uid: 835 + - uid: 774 components: - type: Transform - pos: -9.5,21.5 + pos: -7.3126326,2.3465002 parent: 183 - proto: MouseTimedSpawner entities: @@ -10745,11 +10794,6 @@ entities: parent: 183 - proto: NitrogenCanister entities: - - uid: 842 - components: - - type: Transform - pos: -6.5,25.5 - parent: 183 - uid: 1839 components: - type: Transform @@ -10808,11 +10852,6 @@ entities: parent: 183 - proto: OxygenCanister entities: - - uid: 902 - components: - - type: Transform - pos: -6.5,23.5 - parent: 183 - uid: 903 components: - type: Transform @@ -11630,16 +11669,6 @@ entities: - type: Transform pos: -7.5,13.5 parent: 183 - - uid: 396 - components: - - type: Transform - pos: -8.5,21.5 - parent: 183 - - uid: 397 - components: - - type: Transform - pos: -8.5,20.5 - parent: 183 - uid: 804 components: - type: Transform @@ -11783,13 +11812,12 @@ entities: - uid: 727 components: - type: Transform - pos: -9.5,20.5 + pos: -8.501515,20.51479 parent: 183 - - uid: 2053 + - uid: 835 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.517197,20.666502 + pos: -8.605682,20.624992 parent: 183 - proto: SheetSteel1 entities: @@ -12092,13 +12120,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,10.3 parent: 183 -- proto: SignDrones - entities: - - uid: 1913 - components: - - type: Transform - pos: -9.5,-3.5 - parent: 183 - proto: SignEngineering entities: - uid: 1925 @@ -12122,20 +12143,20 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,31.5 parent: 183 -- proto: SignMedical +- proto: SignMaterials entities: - - uid: 1928 + - uid: 1913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,1.5 + pos: -9.5,-3.5 parent: 183 -- proto: SignMinerDock +- proto: SignMedical entities: - - uid: 1766 + - uid: 1928 components: - type: Transform - pos: 10.5,2.5 + rot: 1.5707963267948966 rad + pos: -2.5,1.5 parent: 183 - proto: SignNTMine entities: @@ -12187,6 +12208,11 @@ entities: parent: 183 - proto: SignShipDock entities: + - uid: 1766 + components: + - type: Transform + pos: 10.5,2.5 + parent: 183 - uid: 1878 components: - type: Transform @@ -12580,10 +12606,10 @@ entities: parent: 183 - proto: SpawnPointAtmos entities: - - uid: 901 + - uid: 836 components: - type: Transform - pos: -10.5,18.5 + pos: -9.5,17.5 parent: 183 - proto: SpawnPointBorg entities: @@ -12635,6 +12661,13 @@ entities: - type: Transform pos: -1.5,-2.5 parent: 183 +- proto: SpawnPointMedicalIntern + entities: + - uid: 717 + components: + - type: Transform + pos: -6.5,3.5 + parent: 183 - proto: SpawnPointObserver entities: - uid: 1008 @@ -12719,6 +12752,18 @@ entities: - type: Transform pos: -14.5,10.5 parent: 183 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 902 + components: + - type: Transform + pos: -10.5,12.5 + parent: 183 + - uid: 2053 + components: + - type: Transform + pos: -11.5,9.5 + parent: 183 - proto: SpawnVendingMachineRestockFoodDrink entities: - uid: 860 @@ -12878,6 +12923,11 @@ entities: - type: Transform pos: -7.5,14.5 parent: 183 + - uid: 390 + components: + - type: Transform + pos: -8.5,20.5 + parent: 183 - uid: 489 components: - type: Transform @@ -12906,11 +12956,6 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,13.5 parent: 183 - - uid: 782 - components: - - type: Transform - pos: -9.5,20.5 - parent: 183 - uid: 809 components: - type: Transform @@ -13119,10 +13164,10 @@ entities: parent: 183 - proto: VendingMachineAtmosDrobe entities: - - uid: 717 + - uid: 842 components: - type: Transform - pos: -9.5,17.5 + pos: -8.5,18.5 parent: 183 - proto: VendingMachineCargoDrobe entities: @@ -14131,16 +14176,6 @@ entities: - type: Transform pos: -18.5,16.5 parent: 183 - - uid: 389 - components: - - type: Transform - pos: -8.5,17.5 - parent: 183 - - uid: 390 - components: - - type: Transform - pos: -8.5,18.5 - parent: 183 - uid: 391 components: - type: Transform @@ -14807,6 +14842,31 @@ entities: rot: 3.141592653589793 rad pos: -14.5,18.5 parent: 183 + - uid: 2108 + components: + - type: Transform + pos: -7.5,17.5 + parent: 183 + - uid: 2109 + components: + - type: Transform + pos: -7.5,18.5 + parent: 183 + - uid: 2110 + components: + - type: Transform + pos: -7.5,19.5 + parent: 183 + - uid: 2111 + components: + - type: Transform + pos: -7.5,20.5 + parent: 183 + - uid: 2112 + components: + - type: Transform + pos: -7.5,21.5 + parent: 183 - proto: WallShuttle entities: - uid: 127 @@ -15108,6 +15168,13 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,4.5 parent: 2 +- proto: WardrobeAtmosphericsFilled + entities: + - uid: 791 + components: + - type: Transform + pos: -10.5,18.5 + parent: 183 - proto: WarningO2 entities: - uid: 909 diff --git a/Resources/Prototypes/ADT/Access/juridical.yml b/Resources/Prototypes/ADT/Access/juridical.yml new file mode 100644 index 00000000000..a8e9403ede5 --- /dev/null +++ b/Resources/Prototypes/ADT/Access/juridical.yml @@ -0,0 +1,18 @@ +- type: accessLevel + id: Lawyer + name: id-card-access-level-lawyer + +- type: accessLevel + id: IAA + name: id-card-access-level-iaa + +- type: accessLevel + id: Magistrate + name: id-card-access-level-magistrate + +- type: accessGroup + id: LawyerDepartament + tags: + - Lawyer + - Magistrate + - IAA diff --git a/Resources/Prototypes/ADT/Alerts/alerts.yml b/Resources/Prototypes/ADT/Alerts/alerts.yml new file mode 100644 index 00000000000..ae722d86805 --- /dev/null +++ b/Resources/Prototypes/ADT/Alerts/alerts.yml @@ -0,0 +1,21 @@ +# Simple Station + +- type: alert + id: Charge + icons: + - sprite: /Textures/ADT/Interface/Alerts/charge.rsi + state: charge-empty + - sprite: /Textures/ADT/Interface/Alerts/charge.rsi + state: charge0 + - sprite: /Textures/ADT/Interface/Alerts/charge.rsi + state: charge1 + - sprite: /Textures/ADT/Interface/Alerts/charge.rsi + state: charge2 + - sprite: /Textures/ADT/Interface/Alerts/charge.rsi + state: charge3 + - sprite: /Textures/ADT/Interface/Alerts/charge.rsi + state: charge4 + name: alerts-charge-name + description: alerts-charge-desc + minSeverity: -1 + maxSeverity: 4 diff --git a/Resources/Prototypes/ADT/Body/Organs/Tajaran.yml b/Resources/Prototypes/ADT/Body/Organs/Tajaran.yml new file mode 100644 index 00000000000..7f3c790dc2c --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Organs/Tajaran.yml @@ -0,0 +1,21 @@ +- type: entity + id: OrganTajaranStomach + parent: OrganAnimalStomach + noSpawn: true + components: + - type: SolutionContainerManager + solutions: + stomach: + maxVol: 50 + +- type: entity + id: OrganTajaranHeart + parent: OrganAnimalHeart + components: + - type: Metabolizer + maxReagents: 2 + metabolizerTypes: [ Tajaran, Animal ] + groups: + - id: Medicine + - id: Poison + - id: Narcotic diff --git a/Resources/Prototypes/ADT/Body/Organs/ipc.yml b/Resources/Prototypes/ADT/Body/Organs/ipc.yml new file mode 100644 index 00000000000..dfb7ecacf12 --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Organs/ipc.yml @@ -0,0 +1,92 @@ +# Simple Station + +- type: entity + id: BaseIPCOrgan + parent: BaseItem + abstract: true + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/organs.rsi + - type: Organ + # - type: Food + # - type: Extractable + # grindableSolutionName: organ + - type: SolutionContainerManager + solutions: + organ: + reagents: + - ReagentId: Oil + Quantity: 10 + +- type: entity + id: OrganIPCBrain + parent: BaseIPCOrgan + name: positronic brain + description: "The source of as much controversy as the existence of the soul." + components: + - type: Sprite + state: brain + - type: Organ + - type: Input + context: "ghost" + - type: InputMover + - type: MovementSpeedModifier + baseWalkSpeed: 0 + baseSprintSpeed: 0 + - type: GhostOnMove + - type: Brain + +- type: entity + id: OrganIPCEyes + parent: BaseIPCOrgan + name: robotic eyes + description: "01001001 00100000 01110011 01100101 01100101 00100000 01111001 01101111 01110101 00100001" + components: + - type: Sprite + layers: + - state: eyeball-l + - state: eyeball-r + - type: Organ + +- type: entity + id: OrganIPCTongue + parent: BaseIPCOrgan + name: vocal modulator + description: "A vocal modulator, used to produce speech." + components: + - type: Sprite + state: tongue + - type: Organ + +- type: entity + id: OrganIPCEars + parent: BaseIPCOrgan + name: "sonic receptors" + description: + components: + - type: Sprite + state: ears + - type: Organ + +- type: entity + id: OrganIPCPump + parent: BaseIPCOrgan + name: micro pump + description: "A micro pump, used to circulate coolant." + components: + - type: Sprite + state: heart-on + - type: Organ + # The heart 'metabolizes' medicines and poisons that aren't filtered out by other organs. + # This is done because these chemicals need to have some effect even if they aren't being filtered out of your body. + # You're technically 'immune to poison' without a heart, but.. uhh, you'll have bigger problems on your hands. + + # This is fine? + # - type: Metabolizer + # maxReagents: 2 + # metabolizerTypes: [Human] + # groups: + # - id: Medicine + # - id: Poison + # - id: Narcotic diff --git a/Resources/Prototypes/ADT/Body/Organs/moth.yml b/Resources/Prototypes/ADT/Body/Organs/moth.yml new file mode 100644 index 00000000000..e2b905fdc92 --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Organs/moth.yml @@ -0,0 +1,41 @@ +- type: entity + id: OrganMothStomach + parent: [OrganAnimalStomach, OrganHumanStomach] + noSpawn: true + components: + - type: Stomach + specialDigestible: + tags: + - ClothMade + - Paper + - Fruit + - Pill + - ADTMothFriendlyFood + - type: SolutionContainerManager + solutions: + stomach: + maxVol: 50 + food: + maxVol: 5 + reagents: + - ReagentId: UncookedAnimalProteins + Quantity: 5 + - type: Metabolizer + maxReagents: 3 + metabolizerTypes: [ Moth ] + removeEmpty: true + groups: + - id: Food + - id: Drink + +- type: entity + id: OrganMothHeart + parent: OrganAnimalHeart + components: + - type: Metabolizer + maxReagents: 2 + metabolizerTypes: [ Moth ] + groups: + - id: Medicine + - id: Poison + - id: Narcotic diff --git a/Resources/Prototypes/ADT/Body/Parts/Tajaran.yml b/Resources/Prototypes/ADT/Body/Parts/Tajaran.yml new file mode 100644 index 00000000000..764550c09c4 --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Parts/Tajaran.yml @@ -0,0 +1,205 @@ +# TODO: Add descriptions (many) +# TODO BODY: Part damage +- type: entity + id: PartTajaran + parent: BaseItem + name: "Таяр части тела" + abstract: true + components: + - type: Damageable + damageContainer: Biological + - type: BodyPart + - type: ContainerContainer + containers: + bodypart: !type:Container + ents: [] + +- type: entity + id: TorsoTajaran + name: "тело таяра" + parent: PartTajaran + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "torso_m" + - type: Icon + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "torso_m" + - type: BodyPart + partType: Torso + +- type: entity + id: HeadTajaran + name: "голова таяра" + parent: PartTajaran + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "head_m" + - type: Icon + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "head_m" + - type: BodyPart + partType: Head + vital: true + - type: Input + context: "ghost" + - type: MovementSpeedModifier + baseWalkSpeed: 0 + baseSprintSpeed: 0 + - type: InputMover + - type: GhostOnMove + - type: Tag + tags: + - Head + +- type: entity + id: LeftArmTajaran + name: "левая рука таяра" + parent: PartTajaran + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "l_arm" + - type: Icon + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "l_arm" + - type: BodyPart + partType: Arm + symmetry: Left + +- type: entity + id: RightArmTajaran + name: "правая рука таяра" + parent: PartTajaran + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "r_arm" + - type: Icon + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "r_arm" + - type: BodyPart + partType: Arm + symmetry: Right + +- type: entity + id: LeftHandTajaran + name: "левая кисть таяра" + parent: PartTajaran + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "l_hand" + - type: Icon + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "l_hand" + - type: BodyPart + partType: Hand + symmetry: Left + +- type: entity + id: RightHandTajaran + name: "правая кисть таяра" + parent: PartTajaran + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "r_hand" + - type: Icon + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "r_hand" + - type: BodyPart + partType: Hand + symmetry: Right + +- type: entity + id: TailTajaran + name: "хвост таяра" + parent: PartTajaran + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "tail_m" + - type: Icon + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "tail_m" + - type: BodyPart + partType: Tail + +- type: entity + id: LeftLegTajaran + name: "левая нога таяра" + parent: PartTajaran + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "l_leg" + - type: Icon + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "l_leg" + - type: BodyPart + partType: Leg + symmetry: Left + - type: MovementBodyPart + walkSpeed: 2.7 + sprintSpeed: 4.6 + +- type: entity + id: RightLegTajaran + name: "правая нога таяра" + parent: PartTajaran + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "r_leg" + - type: Icon + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "r_leg" + - type: BodyPart + partType: Leg + symmetry: Right + - type: MovementBodyPart + walkSpeed: 2.7 + sprintSpeed: 4.6 + +- type: entity + id: LeftFootTajaran + name: "левая ступня таяра" + parent: PartTajaran + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "l_foot" + - type: Icon + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "l_foot" + - type: BodyPart + partType: Foot + symmetry: Left + +- type: entity + id: RightFootTajaran + name: "правая ступня таяра" + parent: PartTajaran + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "r_foot" + - type: Icon + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: "r_foot" + - type: BodyPart + partType: Foot + symmetry: Right diff --git a/Resources/Prototypes/ADT/Body/Parts/ipc.yml b/Resources/Prototypes/ADT/Body/Parts/ipc.yml new file mode 100644 index 00000000000..d9832ca4037 --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Parts/ipc.yml @@ -0,0 +1,186 @@ +# Simple Station + +- type: entity + id: PartIPC + parent: BaseItem + name: "ipc body part" + abstract: true + components: + - type: Damageable + damageContainer: Inorganic + - type: BodyPart + - type: ContainerContainer + containers: + bodypart: !type:Container + ents: [] + +- type: entity + id: TorsoIPC + name: "ipc torso" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "torso_m" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "torso_m" + - type: BodyPart + partType: Torso + +- type: entity + id: HeadIPC + name: "ipc head" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "head_m" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "head_m" + - type: BodyPart + partType: Head + vital: true + - type: Input + context: "ghost" + - type: MovementSpeedModifier + baseWalkSpeed: 0 + baseSprintSpeed: 0 + - type: InputMover + - type: GhostOnMove + - type: Tag + tags: + - Head + +- type: entity + id: LeftArmIPC + name: "left ipc arm" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "l_arm" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "l_arm" + - type: BodyPart + partType: Arm + symmetry: Left + +- type: entity + id: RightArmIPC + name: "right ipc arm" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "r_arm" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "r_arm" + - type: BodyPart + partType: Arm + symmetry: Right + +- type: entity + id: LeftHandIPC + name: "left ipc hand" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "l_hand" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "l_hand" + - type: BodyPart + partType: Hand + symmetry: Left + +- type: entity + id: RightHandIPC + name: "right ipc hand" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "r_hand" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "r_hand" + - type: BodyPart + partType: Hand + symmetry: Right + +- type: entity + id: LeftLegIPC + name: "left ipc leg" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "l_leg" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "l_leg" + - type: BodyPart + partType: Leg + symmetry: Left + - type: MovementBodyPart + +- type: entity + id: RightLegIPC + name: "right ipc leg" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "r_leg" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "r_leg" + - type: BodyPart + partType: Leg + symmetry: Right + - type: MovementBodyPart + +- type: entity + id: LeftFootIPC + name: "left ipc foot" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "l_foot" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "l_foot" + - type: BodyPart + partType: Foot + symmetry: Left + +- type: entity + id: RightFootIPC + name: "right ipc foot" + parent: PartIPC + components: + - type: Sprite + netsync: false + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "r_foot" + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: "r_foot" + - type: BodyPart + partType: Foot + symmetry: Right diff --git a/Resources/Prototypes/ADT/Body/Parts/moth.yml b/Resources/Prototypes/ADT/Body/Parts/moth.yml new file mode 100644 index 00000000000..bb96430383a --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Parts/moth.yml @@ -0,0 +1,120 @@ +# TODO: Add descriptions (many) +# TODO BODY: Part damage +- type: entity + id: PartMoth + parent: [BaseItem, BasePart] + name: "moth body part" + abstract: true + components: + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 3 + - ReagentId: Blood + Quantity: 10 + +- type: entity + id: TorsoMoth + name: "moth torso" + parent: [PartMoth, BaseTorso] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "torso_m" + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 10 + - ReagentId: Blood + Quantity: 20 + + +- type: entity + id: HeadMoth + name: "moth head" + parent: [PartMoth, BaseHead] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "head_m" + - type: Extractable + juiceSolution: + reagents: + - ReagentId: Fat + Quantity: 5 + - ReagentId: Blood + Quantity: 10 + +- type: entity + id: LeftArmMoth + name: "left moth arm" + parent: [PartMoth, BaseLeftArm] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "l_arm" + +- type: entity + id: RightArmMoth + name: "right moth arm" + parent: [PartMoth, BaseRightArm] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "r_arm" + +- type: entity + id: LeftHandMoth + name: "left moth hand" + parent: [PartMoth, BaseLeftHand] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "l_hand" + +- type: entity + id: RightHandMoth + name: "right moth hand" + parent: [PartMoth, BaseRightHand] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "r_hand" + +- type: entity + id: LeftLegMoth + name: "left moth leg" + parent: [PartMoth, BaseLeftLeg] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "l_leg" + +- type: entity + id: RightLegMoth + name: "right moth leg" + parent: [PartMoth, BaseRightLeg] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "r_leg" + +- type: entity + id: LeftFootMoth + name: "left moth foot" + parent: [PartMoth, BaseLeftFoot] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "l_foot" + +- type: entity + id: RightFootMoth + name: "right moth foot" + parent: [PartMoth, BaseRightFoot] + components: + - type: Sprite + sprite: Mobs/Species/Moth/parts.rsi + state: "r_foot" diff --git a/Resources/Prototypes/ADT/Body/Prototypes/Tajaran.yml b/Resources/Prototypes/ADT/Body/Prototypes/Tajaran.yml new file mode 100644 index 00000000000..39ac8388bc1 --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Prototypes/Tajaran.yml @@ -0,0 +1,53 @@ +- type: body + id: Tajaran + name: "tajaran" + root: torso + slots: + head: + part: HeadTajaran + connections: + - torso + organs: + brain: OrganHumanBrain + eyes: OrganHumanEyes + torso: + part: TorsoTajaran + organs: + heart: OrganTajaranHeart + lungs: OrganHumanLungs + stomach: OrganTajaranStomach + liver: OrganAnimalLiver + kidneys: OrganHumanKidneys + connections: + - left arm + - right arm + - left leg + - right leg + - tail + right arm: + part: RightArmTajaran + connections: + - right hand + left arm: + part: LeftArmTajaran + connections: + - left hand + right hand: + part: RightHandTajaran + left hand: + part: LeftHandTajaran + right leg: + part: RightLegTajaran + connections: + - right foot + left leg: + part: LeftLegTajaran + connections: + - left foot + right foot: + part: RightFootTajaran + left foot: + part: LeftFootTajaran + tail: + part: TailTajaran + diff --git a/Resources/Prototypes/ADT/Body/Prototypes/fill.txt b/Resources/Prototypes/ADT/Body/Prototypes/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Body/Prototypes/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Body/Prototypes/ipc.yml b/Resources/Prototypes/ADT/Body/Prototypes/ipc.yml new file mode 100644 index 00000000000..fec44f7c523 --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Prototypes/ipc.yml @@ -0,0 +1,47 @@ +# Simple Station + +- type: body + id: IPC + name: "ipc" + root: torso + slots: + head: + part: HeadIPC + connections: + - torso + organs: + eyes: OrganIPCEyes + torso: + part: TorsoIPC + connections: + - left arm + - right arm + - left leg + - right leg + organs: + brain: OrganIPCBrain + heart: OrganIPCPump + right arm: + part: RightArmIPC + connections: + - right hand + left arm: + part: LeftArmIPC + connections: + - left hand + right hand: + part: RightHandIPC + left hand: + part: LeftHandIPC + right leg: + part: RightLegIPC + connections: + - right foot + left leg: + part: LeftLegIPC + connections: + - left foot + right foot: + part: RightFootIPC + left foot: + part: LeftFootIPC diff --git a/Resources/Prototypes/ADT/Body/Prototypes/moth.yml b/Resources/Prototypes/ADT/Body/Prototypes/moth.yml new file mode 100644 index 00000000000..421432face6 --- /dev/null +++ b/Resources/Prototypes/ADT/Body/Prototypes/moth.yml @@ -0,0 +1,49 @@ +- type: body + id: Moth + name: "Moth" + root: torso + slots: + head: + part: HeadMoth + connections: + - torso + organs: + brain: OrganHumanBrain + eyes: OrganHumanEyes + torso: + part: TorsoMoth + organs: + heart: OrganMothHeart + lungs: OrganHumanLungs + stomach: OrganMothStomach + liver: OrganAnimalLiver + kidneys: OrganHumanKidneys + connections: + - right arm + - left arm + - right leg + - left leg + right arm: + part: RightArmMoth + connections: + - right hand + left arm: + part: LeftArmMoth + connections: + - left hand + right hand: + part: RightHandMoth + left hand: + part: LeftHandMoth + right leg: + part: RightLegMoth + connections: + - right foot + left leg: + part: LeftLegMoth + connections: + - left foot + right foot: + part: RightFootMoth + left foot: + part: LeftFootMoth diff --git a/Resources/Prototypes/ADT/Catalog/Cargo/cargo_engineering.yml b/Resources/Prototypes/ADT/Catalog/Cargo/cargo_engineering.yml new file mode 100644 index 00000000000..4f87a292d97 --- /dev/null +++ b/Resources/Prototypes/ADT/Catalog/Cargo/cargo_engineering.yml @@ -0,0 +1,19 @@ +- type: cargoProduct + id: EngineeringRPDAmmo + icon: + sprite: ADT/Objects/Tools/rpd.rsi + state: ammo + product: ADTCrateRPDAmmo + cost: 2500 + category: cargoproduct-category-name-engineering # Визарды, сделайте пожалуйста паренты для категорий. + group: market + +- type: cargoProduct + id: EngineeringRPD + icon: + sprite: ADT/Objects/Tools/rpd.rsi + state: icon + product: ADTCrateRPD + cost: 800 + category: cargoproduct-category-name-engineering + group: market diff --git a/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/backpack.yml b/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/backpack.yml new file mode 100644 index 00000000000..fb41923a9d9 --- /dev/null +++ b/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/backpack.yml @@ -0,0 +1,11 @@ +- type: entity + noSpawn: true + parent: ADTClothingBackpackPathologist + id: ADTClothingBackpackPathologistFilled + components: + - type: StorageFill + contents: + - id: BoxSurvivalMedical + - id: BodyBagFolded + # До добавления слота носков- id: ADTFootTag + - id: SpaceCash500 \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml b/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml new file mode 100644 index 00000000000..7d503222616 --- /dev/null +++ b/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/duffelbag.yml @@ -0,0 +1,11 @@ +- type: entity + noSpawn: true + parent: ADTClothingBackpackDuffelPathologist + id: ADTClothingBackpackDuffelPathologistFilled + components: + - type: StorageFill + contents: + - id: BoxSurvivalMedical + - id: BodyBagFolded + # До добавления слота носков- id: ADTFootTag + - id: SpaceCash500 \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/fill.txt b/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/satchel.yml b/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/satchel.yml new file mode 100644 index 00000000000..03f83e8127a --- /dev/null +++ b/Resources/Prototypes/ADT/Catalog/Fills/Backpacks/StarterGear/satchel.yml @@ -0,0 +1,11 @@ +- type: entity + noSpawn: true + parent: ADTClothingBackpackSatchelPathologist + id: ADTClothingBackpackSatchelPathologistFilled + components: + - type: StorageFill + contents: + - id: BoxSurvivalMedical + - id: BodyBagFolded + # До добавления слота носков - id: ADTFootTag + - id: SpaceCash500 \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Catalog/Fills/Crates/engineering.yml b/Resources/Prototypes/ADT/Catalog/Fills/Crates/engineering.yml new file mode 100644 index 00000000000..9d558d95108 --- /dev/null +++ b/Resources/Prototypes/ADT/Catalog/Fills/Crates/engineering.yml @@ -0,0 +1,20 @@ +- type: entity + id: ADTCrateRPDAmmo + parent: CrateEngineering + name: canned matter crate + description: Contains three canned matter cartridges. + components: + - type: StorageFill + contents: + - id: ADTRPDAmmo + amount: 3 + +- type: entity + id: ADTCrateRPD + parent: CrateEngineeringSecure + name: RPD crate + description: A crate containing a single rapid piping device. + components: + - type: StorageFill + contents: + - id: ADTRPD diff --git a/Resources/Prototypes/ADT/Catalog/VendingMachines/Advertisements/fill.txt b/Resources/Prototypes/ADT/Catalog/VendingMachines/Advertisements/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Catalog/VendingMachines/Advertisements/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Catalog/VendingMachines/Advertisements/patcholodrobe.yml b/Resources/Prototypes/ADT/Catalog/VendingMachines/Advertisements/patcholodrobe.yml new file mode 100644 index 00000000000..e91297e3c19 --- /dev/null +++ b/Resources/Prototypes/ADT/Catalog/VendingMachines/Advertisements/patcholodrobe.yml @@ -0,0 +1,5 @@ +- type: localizedDataset + id: PatholodrobeAds + values: + prefix: advertisement-patholog- + count: 2 \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/fill.txt b/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/patcholodrobe.yml b/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/patcholodrobe.yml new file mode 100644 index 00000000000..d702327837f --- /dev/null +++ b/Resources/Prototypes/ADT/Catalog/VendingMachines/Inventories/patcholodrobe.yml @@ -0,0 +1,15 @@ +- type: vendingMachineInventory + id: PatholodrobeInventory + startingInventory: + ADTClothingUniformPathologistSuit: 2 + ADTClothingUniformPathologistSkirt: 2 + ADTClothingUniformPathologistSuitAlt: 2 + ADTClothingUniformPathologistSkirtAlt: 2 + ADTClothingOuterApronPathologist: 2 + ADTClothingOuterCoatLabPathologist: 2 + ClothingShoesColorWhite: 2 + ADTClothingBackpackPathologist: 2 + ADTClothingBackpackDuffelPathologist: 2 + ADTClothingBackpackSatchelPathologist: 2 + ClothingHandsGlovesLatex: 2 + ClothingMaskSterile: 2 \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Chemistry/metabolizer_types.yml b/Resources/Prototypes/ADT/Chemistry/metabolizer_types.yml index a492dde8d02..0d44dc5b114 100644 --- a/Resources/Prototypes/ADT/Chemistry/metabolizer_types.yml +++ b/Resources/Prototypes/ADT/Chemistry/metabolizer_types.yml @@ -1,4 +1,4 @@ -# If your species wants to metabolize stuff differently, +# If your species wants to metabolize stuff differently, # you'll likely have to tag its metabolizers with something other than Human. - type: metabolizerType diff --git a/Resources/Prototypes/ADT/Clothing/Back/backpacks.yml b/Resources/Prototypes/ADT/Clothing/Back/backpacks.yml new file mode 100644 index 00000000000..dafd5b17be2 --- /dev/null +++ b/Resources/Prototypes/ADT/Clothing/Back/backpacks.yml @@ -0,0 +1,20 @@ +- type: entity + parent: ClothingBackpackDuffelMedical + id: ADTClothingBackpackDuffelPathologist + components: + - type: Sprite + sprite: ADT/Clothing/Back/pathologist_duffel.rsi + +- type: entity + parent: ClothingBackpackMedical + id: ADTClothingBackpackPathologist + components: + - type: Sprite + sprite: ADT/Clothing/Back/pathologist_backpack.rsi + +- type: entity + parent: ClothingBackpackSatchelMedical + id: ADTClothingBackpackSatchelPathologist + components: + - type: Sprite + sprite: ADT/Clothing/Back/pathologist_satchel.rsi \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/ADT/Clothing/OuterClothing/coats.yml new file mode 100644 index 00000000000..d9175df1941 --- /dev/null +++ b/Resources/Prototypes/ADT/Clothing/OuterClothing/coats.yml @@ -0,0 +1,11 @@ +- type: entity + parent: ClothingOuterCoatLab + id: ADTClothingOuterCoatLabPathologist + name: pathologist's lab coat + description: A suit that protects against minor chemical spills. But still a bit too white for blood stains. + components: + - type: Sprite + sprite: ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi + state: icon-open + - type: Clothing + sprite: ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Clothing/OuterClothing/misc.yml b/Resources/Prototypes/ADT/Clothing/OuterClothing/misc.yml new file mode 100644 index 00000000000..073f8768eda --- /dev/null +++ b/Resources/Prototypes/ADT/Clothing/OuterClothing/misc.yml @@ -0,0 +1,10 @@ +- type: entity + parent: ClothingOuterStorageBase + id: ADTClothingOuterApronPathologist + name: pathologist's apron + description: An apron used by pathologists. + components: + - type: Sprite + sprite: ADT/Clothing/OuterClothing/Misc/apron_pathologist.rsi + - type: Clothing + sprite: ADT/Clothing/OuterClothing/Misc/apron_pathologist.rsi \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Clothing/Uniforms/Jumpskirt.yml b/Resources/Prototypes/ADT/Clothing/Uniforms/Jumpskirt.yml new file mode 100644 index 00000000000..98dd024ec2d --- /dev/null +++ b/Resources/Prototypes/ADT/Clothing/Uniforms/Jumpskirt.yml @@ -0,0 +1,21 @@ +- type: entity + parent: ClothingUniformBase + id: ADTClothingUniformPathologistSkirt + name: pathologist jumpskirt + description: A lightweight jumpskirt for a morgue worker + components: + - type: Sprite + sprite: ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi + - type: Clothing + sprite: ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi + +- type: entity + parent: ClothingUniformBase + id: ADTClothingUniformPathologistSkirtAlt + name: pathologist jumpskirt + description: A lightweight jumpskirt for a morgue worker. A darker version. + components: + - type: Sprite + sprite: ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi + - type: Clothing + sprite: ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Clothing/Uniforms/Jumpsuit.yml b/Resources/Prototypes/ADT/Clothing/Uniforms/Jumpsuit.yml new file mode 100644 index 00000000000..aef17ea662c --- /dev/null +++ b/Resources/Prototypes/ADT/Clothing/Uniforms/Jumpsuit.yml @@ -0,0 +1,21 @@ +- type: entity + parent: ClothingUniformBase + id: ADTClothingUniformPathologistSuit + name: pathologist jumpsuit + description: A lightweight jumpsuit for a morgue worker + components: + - type: Sprite + sprite: ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi + - type: Clothing + sprite: ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi + +- type: entity + parent: ClothingUniformBase + id: ADTClothingUniformPathologistSuitAlt + name: pathologist jumpsuit + description: A lightweight jumpsuit for a morgue worker. A darker version. + components: + - type: Sprite + sprite: ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi + - type: Clothing + sprite: ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Damage/ADTmodifiers.yml b/Resources/Prototypes/ADT/Damage/ADTmodifiers.yml index 17be8eafaad..841fd6c945a 100644 --- a/Resources/Prototypes/ADT/Damage/ADTmodifiers.yml +++ b/Resources/Prototypes/ADT/Damage/ADTmodifiers.yml @@ -57,6 +57,35 @@ Heat: 2.0 Poison: 1.1 +- type: damageModifierSet + id: BloodlossIPC + coefficients: + Blunt: 1 + Slash: 0.6 + Piercing: 1.85 + Shock: 0.0 + Cold: 0.0 + Heat: 0 # heat damage doesn't cauterize metal! + Poison: 0.0 + Radiation: 0.0 + Asphyxiation: 0.0 + Bloodloss: 0.0 # no double dipping + Cellular: 0.0 + flatReductions: # Gotta crack a few borgs to get some coolant... + Blunt: 10 + Slash: 10 + Piercing: 10 + +- type: damageModifierSet + id: Moth # Slightly worse at everything but cold + coefficients: + Blunt: 1 + Piercing: 1.15 + Slash: 1.15 + Cold: 0.7 + Heat: 1.5 + Poison: 1.5 + - type: damageModifierSet id: CyborgMetallic coefficients: diff --git a/Resources/Prototypes/ADT/Damage/containers.yml b/Resources/Prototypes/ADT/Damage/containers.yml new file mode 100644 index 00000000000..686fa899f46 --- /dev/null +++ b/Resources/Prototypes/ADT/Damage/containers.yml @@ -0,0 +1,5 @@ +- type: damageContainer + id: ADTSiliconDamageContainer + supportedGroups: + - Brute + - Burn diff --git a/Resources/Prototypes/ADT/Damage/fill.txt b/Resources/Prototypes/ADT/Damage/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Damage/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Datasets/Names/first_female_moth.yml b/Resources/Prototypes/ADT/Datasets/Names/first_female_moth.yml new file mode 100644 index 00000000000..396897bc0cb --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/first_female_moth.yml @@ -0,0 +1,46 @@ +- type: dataset + id: first_female_moth + values: + - Защитница + - Техник + - Пилот + - Воительница + - Ткачиха + - Охотница + - Путешественница + - Исследовательница + - Смотритель + - Строительница + - Строитель + - Инженер + - Проводник + - Разведчик + - Архитектор + - Навигатор + - Целительница + - Врач + - Учёный + - Астроном + - Механик + - Помощница + - Рыцарь + - Поэт + - Психолог + - Химик + - Повар + - Музыкант + - Кардиолог + - Скульптор + - Биоинженер + - Наставник + - Космоархитектор + - Физик + - Астробиолог + - Астронавигатор + - Галактический поэт + - Нанотехнолог + - Биометрист + - Робоисследовательца + - Астропсихолог + - Галактический художник + - Космический исследовательца diff --git a/Resources/Prototypes/ADT/Datasets/Names/first_female_tajaran.yml b/Resources/Prototypes/ADT/Datasets/Names/first_female_tajaran.yml new file mode 100644 index 00000000000..8dcad0f3ca1 --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/first_female_tajaran.yml @@ -0,0 +1,570 @@ +- type: dataset + id: firstFemaleTajaran + values: + - Кси'тай + - Кси'айль + - Кси'ли + - Кси'эйя + - Кси'тайя + - Кси'тайль + - Кси'ийя + - Кси'райя + - Кси'ниль + - Кси'ния + - Кси'тиль + - Кси'нейя + - Кси'айя + - Кси'иль + - Кси'рейя + - Кси'кайя + - Кси'киль + - Кси'тийя + - Кси'рея + - Кси'рия + - Кси'тая + - Рифф'тай + - Рифф'айль + - Рифф'ли + - Рифф'эйя + - Рифф'тайя + - Рифф'тайль + - Рифф'ийя + - Рифф'райя + - Рифф'ниль + - Рифф'ния + - Рифф'тиль + - Рифф'нейя + - Рифф'айя + - Рифф'иль + - Рифф'рейя + - Рифф'кайя + - Рифф'киль + - Рифф'тийя + - Рифф'рея + - Рифф'рия + - Рифф'тая + - Тици'тай + - Тици'айль + - Тици'ли + - Тици'эйя + - Тици'тайя + - Тици'тайль + - Тици'ийя + - Тици'райя + - Тици'ниль + - Тици'ния + - Тици'тиль + - Тици'нейя + - Тици'айя + - Тици'иль + - Тици'рейя + - Тици'кайя + - Тици'киль + - Тици'тийя + - Тици'рея + - Тици'рия + - Тици'тая + - Тесс'тай + - Тесс'айль + - Тесс'ли + - Тесс'эйя + - Тесс'тайя + - Тесс'тайль + - Тесс'ийя + - Тесс'райя + - Тесс'ниль + - Тесс'ния + - Тесс'тиль + - Тесс'нейя + - Тесс'айя + - Тесс'иль + - Тесс'рейя + - Тесс'кайя + - Тесс'киль + - Тесс'тийя + - Тесс'рея + - Тесс'рия + - Тесс'тая + - Кри'тай + - Кри'айль + - Кри'ли + - Кри'эйя + - Кри'тайя + - Кри'тайль + - Кри'ийя + - Кри'райя + - Кри'ниль + - Кри'ния + - Кри'тиль + - Кри'нейя + - Кри'айя + - Кри'иль + - Кри'рейя + - Кри'кайя + - Кри'киль + - Кри'тийя + - Кри'рея + - Кри'рия + - Кри'тая + - Нии'тай + - Нии'айль + - Нии'ли + - Нии'эйя + - Нии'тайя + - Нии'тайль + - Нии'ийя + - Нии'райя + - Нии'ниль + - Нии'ния + - Нии'тиль + - Нии'нейя + - Нии'айя + - Нии'иль + - Нии'рейя + - Нии'кайя + - Нии'киль + - Нии'тийя + - Нии'рея + - Нии'рия + - Нии'тая + - Кай'тай + - Кай'айль + - Кай'ли + - Кай'эйя + - Кай'тайя + - Кай'тайль + - Кай'ийя + - Кай'райя + - Кай'ниль + - Кай'ния + - Кай'тиль + - Кай'нейя + - Кай'айя + - Кай'иль + - Кай'рейя + - Кай'кайя + - Кай'киль + - Кай'тийя + - Кай'рея + - Кай'рия + - Кай'тая + - Эра'тай + - Эра'айль + - Эра'ли + - Эра'эйя + - Эра'тайя + - Эра'тайль + - Эра'ийя + - Эра'райя + - Эра'ниль + - Эра'ния + - Эра'тиль + - Эра'нейя + - Эра'айя + - Эра'иль + - Эра'рейя + - Эра'кайя + - Эра'киль + - Эра'тийя + - Эра'рея + - Эра'рия + - Эра'тая + - Тэйр'тай + - Тэйр'айль + - Тэйр'ли + - Тэйр'эйя + - Тэйр'тайя + - Тэйр'тайль + - Тэйр'ийя + - Тэйр'райя + - Тэйр'ниль + - Тэйр'ния + - Тэйр'тиль + - Тэйр'нейя + - Тэйр'айя + - Тэйр'иль + - Тэйр'рейя + - Тэйр'кайя + - Тэйр'киль + - Тэйр'тийя + - Тэйр'рея + - Тэйр'рия + - Тэйр'тая + - Най'тай + - Най'айль + - Най'ли + - Най'эйя + - Най'тайя + - Най'тайль + - Най'ийя + - Най'райя + - Най'ниль + - Най'ния + - Най'тиль + - Най'нейя + - Най'айя + - Най'иль + - Най'рейя + - Най'кайя + - Най'киль + - Най'тийя + - Най'рея + - Най'рия + - Най'тая + - Анн'тай + - Анн'айль + - Анн'ли + - Анн'эйя + - Анн'тайя + - Анн'тайль + - Анн'ийя + - Анн'райя + - Анн'ниль + - Анн'ния + - Анн'тиль + - Анн'нейя + - Анн'айя + - Анн'иль + - Анн'рейя + - Анн'кайя + - Анн'киль + - Анн'тийя + - Анн'рея + - Анн'рия + - Анн'тая + - Баи'тай + - Баи'айль + - Баи'ли + - Баи'эйя + - Баи'тайя + - Баи'тайль + - Баи'ийя + - Баи'райя + - Баи'ниль + - Баи'ния + - Баи'тиль + - Баи'нейя + - Баи'айя + - Баи'иль + - Баи'рейя + - Баи'кайя + - Баи'киль + - Баи'тийя + - Баи'рея + - Баи'рия + - Баи'тая + - Рив'тай + - Рив'айль + - Рив'ли + - Рив'эйя + - Рив'тайя + - Рив'тайль + - Рив'ийя + - Рив'райя + - Рив'ниль + - Рив'ния + - Рив'тиль + - Рив'нейя + - Рив'айя + - Рив'иль + - Рив'рейя + - Рив'кайя + - Рив'киль + - Рив'тийя + - Рив'рея + - Рив'рия + - Рив'тая + - Айр'тай + - Айр'айль + - Айр'ли + - Айр'эйя + - Айр'тайя + - Айр'тайль + - Айр'ийя + - Айр'райя + - Айр'ниль + - Айр'ния + - Айр'тиль + - Айр'нейя + - Айр'айя + - Айр'иль + - Айр'рейя + - Айр'кайя + - Айр'киль + - Айр'тийя + - Айр'рея + - Айр'рия + - Айр'тая + - Терр'тай + - Терр'айль + - Терр'ли + - Терр'эйя + - Терр'тайя + - Терр'тайль + - Терр'ийя + - Терр'райя + - Терр'ниль + - Терр'ния + - Терр'тиль + - Терр'нейя + - Терр'айя + - Терр'иль + - Терр'рейя + - Терр'кайя + - Терр'киль + - Терр'тийя + - Терр'рея + - Терр'рия + - Терр'тая + - Маи'тай + - Маи'айль + - Маи'ли + - Маи'эйя + - Маи'тайя + - Маи'тайль + - Маи'ийя + - Маи'райя + - Маи'ниль + - Маи'ния + - Маи'тиль + - Маи'нейя + - Маи'айя + - Маи'иль + - Маи'рейя + - Маи'кайя + - Маи'киль + - Маи'тийя + - Маи'рея + - Маи'рия + - Маи'тая + - Сей'тай + - Сей'айль + - Сей'ли + - Сей'эйя + - Сей'тайя + - Сей'тайль + - Сей'ийя + - Сей'райя + - Сей'ниль + - Сей'ния + - Сей'тиль + - Сей'нейя + - Сей'айя + - Сей'иль + - Сей'рейя + - Сей'кайя + - Сей'киль + - Сей'тийя + - Сей'рея + - Сей'рия + - Сей'тая + - Кирр'тай + - Кирр'айль + - Кирр'ли + - Кирр'эйя + - Кирр'тайя + - Кирр'тайль + - Кирр'ийя + - Кирр'райя + - Кирр'ниль + - Кирр'ния + - Кирр'тиль + - Кирр'нейя + - Кирр'айя + - Кирр'иль + - Кирр'рейя + - Кирр'кайя + - Кирр'киль + - Кирр'тийя + - Кирр'рея + - Кирр'рия + - Кирр'тая + - Неи'тай + - Неи'айль + - Неи'ли + - Неи'эйя + - Неи'тайя + - Неи'тайль + - Неи'ийя + - Неи'райя + - Неи'ниль + - Неи'ния + - Неи'тиль + - Неи'нейя + - Неи'айя + - Неи'иль + - Неи'рейя + - Неи'кайя + - Неи'киль + - Неи'тийя + - Неи'рея + - Неи'рия + - Неи'тая + - Син'тай + - Син'айль + - Син'ли + - Син'эйя + - Син'тайя + - Син'тайль + - Син'ийя + - Син'райя + - Син'ниль + - Син'ния + - Син'тиль + - Син'нейя + - Син'айя + - Син'иль + - Син'рейя + - Син'кайя + - Син'киль + - Син'тийя + - Син'рея + - Син'рия + - Син'тая + - Ари'тай + - Ари'айль + - Ари'ли + - Ари'эйя + - Ари'тайя + - Ари'тайль + - Ари'ийя + - Ари'райя + - Ари'ниль + - Ари'ния + - Ари'тиль + - Ари'нейя + - Ари'айя + - Ари'иль + - Ари'рейя + - Ари'кайя + - Ари'киль + - Ари'тийя + - Ари'рея + - Ари'рия + - Ари'тая + - Инн'тай + - Инн'айль + - Инн'ли + - Инн'эйя + - Инн'тайя + - Инн'тайль + - Инн'ийя + - Инн'райя + - Инн'ниль + - Инн'ния + - Инн'тиль + - Инн'нейя + - Инн'айя + - Инн'иль + - Инн'рейя + - Инн'кайя + - Инн'киль + - Инн'тийя + - Инн'рея + - Инн'рия + - Инн'тая + - Ди'тай + - Ди'айль + - Ди'ли + - Ди'эйя + - Ди'тайя + - Ди'тайль + - Ди'ийя + - Ди'райя + - Ди'ниль + - Ди'ния + - Ди'тиль + - Ди'нейя + - Ди'айя + - Ди'иль + - Ди'рейя + - Ди'кайя + - Ди'киль + - Ди'тийя + - Ди'рея + - Ди'рия + - Ди'тая + - Ширр'тай + - Ширр'айль + - Ширр'ли + - Ширр'эйя + - Ширр'тайя + - Ширр'тайль + - Ширр'ийя + - Ширр'райя + - Ширр'ниль + - Ширр'ния + - Ширр'тиль + - Ширр'нейя + - Ширр'айя + - Ширр'иль + - Ширр'рейя + - Ширр'кайя + - Ширр'киль + - Ширр'тийя + - Ширр'рея + - Ширр'рия + - Ширр'тая + - Са'тай + - Са'айль + - Са'ли + - Са'эйя + - Са'тайя + - Са'тайль + - Са'ийя + - Са'райя + - Са'ниль + - Са'ния + - Са'тиль + - Са'нейя + - Са'айя + - Са'иль + - Са'рейя + - Са'кайя + - Са'киль + - Са'тийя + - Са'рея + - Са'рия + - Са'тая + - Лунн'тай + - Лунн'айль + - Лунн'ли + - Лунн'эйя + - Лунн'тайя + - Лунн'тайль + - Лунн'ийя + - Лунн'райя + - Лунн'ниль + - Лунн'ния + - Лунн'тиль + - Лунн'нейя + - Лунн'айя + - Лунн'иль + - Лунн'рейя + - Лунн'кайя + - Лунн'киль + - Лунн'тийя + - Лунн'рея + - Лунн'рия + - Лунн'тая + - Рей'тай + - Рей'айль + - Рей'ли + - Рей'эйя + - Рей'тайя + - Рей'тайль + - Рей'ийя + - Рей'райя + - Рей'ниль + - Рей'ния + - Рей'тиль + - Рей'нейя + - Рей'айя + - Рей'иль + - Рей'рейя + - Рей'кайя + - Рей'киль + - Рей'тийя + - Рей'рея + - Рей'рия + - Рей'тая diff --git a/Resources/Prototypes/ADT/Datasets/Names/first_male_moth.yml b/Resources/Prototypes/ADT/Datasets/Names/first_male_moth.yml new file mode 100644 index 00000000000..d105c78a5cb --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/first_male_moth.yml @@ -0,0 +1,45 @@ +- type: dataset + id: first_male_moth + values: + - Защитник + - Техник + - Пилот + - Воитель + - Ткач + - Охотник + - Путешественник + - Исследователь + - Смотритель + - Строитель + - Инженер + - Проводник + - Разведчик + - Архитектор + - Навигатор + - Целитель + - Врач + - Учёный + - Астроном + - Механик + - Помощник + - Рыцарь + - Поэт + - Психолог + - Химик + - Повар + - Музыкант + - Кардиолог + - Скульптор + - Биоинженер + - Наставник + - Космоархитектор + - Физик + - Астробиолог + - Астронавигатор + - Галактический поэт + - Нанотехнолог + - Биометрист + - Робоисследователь + - Астропсихолог + - Галактический художник + - Космический исследователь diff --git a/Resources/Prototypes/ADT/Datasets/Names/first_male_tajaran.yml b/Resources/Prototypes/ADT/Datasets/Names/first_male_tajaran.yml new file mode 100644 index 00000000000..f28fd6de120 --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/first_male_tajaran.yml @@ -0,0 +1,632 @@ +- type: dataset + id: firstMaleTajaran + values: + - Кайо'рейз + - Кайо'ринн + - Кайо'ди + - Кайо'най + - Кайо'целл + - Кайо'таи + - Кайо'лиин + - Кайо'райн + - Кайо'ирр + - Кайо'сии + - Кайо'айен + - Кайо'рийен + - Кайо'кин + - Кайо'и + - Кайо'ий + - Кайо'кол + - Кайо'илл + - Тео'рейз + - Тео'ринн + - Тео'ди + - Тео'най + - Тео'целл + - Тео'таи + - Тео'лиин + - Тео'райн + - Тео'ирр + - Тео'сии + - Тео'айен + - Тео'рийен + - Тео'кин + - Тео'и + - Тео'ий + - Тео'кол + - Тео'илл + - Рико'рейз + - Рико'ринн + - Рико'ди + - Рико'най + - Рико'целл + - Рико'таи + - Рико'лиин + - Рико'райн + - Рико'ирр + - Рико'сии + - Рико'айен + - Рико'рийен + - Рико'кин + - Рико'и + - Рико'ий + - Рико'кол + - Рико'илл + - Кей'рейз + - Кей'ринн + - Кей'ди + - Кей'най + - Кей'целл + - Кей'таи + - Кей'лиин + - Кей'райн + - Кей'ирр + - Кей'сии + - Кей'айен + - Кей'рийен + - Кей'кин + - Кей'и + - Кей'ий + - Кей'кол + - Кей'илл + - Най'рейз + - Най'ринн + - Най'ди + - Най'най + - Най'целл + - Най'таи + - Най'лиин + - Най'райн + - Най'ирр + - Най'сии + - Най'айен + - Най'рийен + - Най'кин + - Най'и + - Най'ий + - Най'кол + - Най'илл + - Рони'рейз + - Рони'ринн + - Рони'ди + - Рони'най + - Рони'целл + - Рони'таи + - Рони'лиин + - Рони'райн + - Рони'ирр + - Рони'сии + - Рони'айен + - Рони'рийен + - Рони'кин + - Рони'и + - Рони'ий + - Рони'кол + - Рони'илл + - Луу'рейз + - Луу'ринн + - Луу'ди + - Луу'най + - Луу'целл + - Луу'таи + - Луу'лиин + - Луу'райн + - Луу'ирр + - Луу'сии + - Луу'айен + - Луу'рийен + - Луу'кин + - Луу'и + - Луу'ий + - Луу'кол + - Луу'илл + - Нир'рейз + - Нир'ринн + - Нир'ди + - Нир'най + - Нир'целл + - Нир'таи + - Нир'лиин + - Нир'райн + - Нир'ирр + - Нир'сии + - Нир'айен + - Нир'рийен + - Нир'кин + - Нир'и + - Нир'ий + - Нир'кол + - Нир'илл + - Ирн'рейз + - Ирн'ринн + - Ирн'ди + - Ирн'най + - Ирн'целл + - Ирн'таи + - Ирн'лиин + - Ирн'райн + - Ирн'ирр + - Ирн'сии + - Ирн'айен + - Ирн'рийен + - Ирн'кин + - Ирн'и + - Ирн'ий + - Ирн'кол + - Ирн'илл + - Рин'рейз + - Рин'ринн + - Рин'ди + - Рин'най + - Рин'целл + - Рин'таи + - Рин'лиин + - Рин'райн + - Рин'ирр + - Рин'сии + - Рин'айен + - Рин'рийен + - Рин'кин + - Рин'и + - Рин'ий + - Рин'кол + - Рин'илл + - Шейр'рейз + - Шейр'ринн + - Шейр'ди + - Шейр'най + - Шейр'целл + - Шейр'таи + - Шейр'лиин + - Шейр'райн + - Шейр'ирр + - Шейр'сии + - Шейр'айен + - Шейр'рийен + - Шейр'кин + - Шейр'и + - Шейр'ий + - Шейр'кол + - Шейр'илл + - Фирр'рейз + - Фирр'ринн + - Фирр'ди + - Фирр'най + - Фирр'целл + - Фирр'таи + - Фирр'лиин + - Фирр'райн + - Фирр'ирр + - Фирр'сии + - Фирр'айен + - Фирр'рийен + - Фирр'кин + - Фирр'и + - Фирр'ий + - Фирр'кол + - Фирр'илл + - Лирр'рейз + - Лирр'ринн + - Лирр'ди + - Лирр'най + - Лирр'целл + - Лирр'таи + - Лирр'лиин + - Лирр'райн + - Лирр'ирр + - Лирр'сии + - Лирр'айен + - Лирр'рийен + - Лирр'кин + - Лирр'и + - Лирр'ий + - Лирр'кол + - Лирр'илл + - Арн'рейз + - Арн'ринн + - Арн'ди + - Арн'най + - Арн'целл + - Арн'таи + - Арн'лиин + - Арн'райн + - Арн'ирр + - Арн'сии + - Арн'айен + - Арн'рийен + - Арн'кин + - Арн'и + - Арн'ий + - Арн'кол + - Арн'илл + - Иер'рейз + - Иер'ринн + - Иер'ди + - Иер'най + - Иер'целл + - Иер'таи + - Иер'лиин + - Иер'райн + - Иер'ирр + - Иер'сии + - Иер'айен + - Иер'рийен + - Иер'кин + - Иер'и + - Иер'ий + - Иер'кол + - Иер'илл + - Сиир'рейз + - Сиир'ринн + - Сиир'ди + - Сиир'най + - Сиир'целл + - Сиир'таи + - Сиир'лиин + - Сиир'райн + - Сиир'ирр + - Сиир'сии + - Сиир'айен + - Сиир'рийен + - Сиир'кин + - Сиир'и + - Сиир'ий + - Сиир'кол + - Сиир'илл + - Айир'рейз + - Айир'ринн + - Айир'ди + - Айир'най + - Айир'целл + - Айир'таи + - Айир'лиин + - Айир'райн + - Айир'ирр + - Айир'сии + - Айир'айен + - Айир'рийен + - Айир'кин + - Айир'и + - Айир'ий + - Айир'кол + - Айир'илл + - Нерр'рейз + - Нерр'ринн + - Нерр'ди + - Нерр'най + - Нерр'целл + - Нерр'таи + - Нерр'лиин + - Нерр'райн + - Нерр'ирр + - Нерр'сии + - Нерр'айен + - Нерр'рийен + - Нерр'кин + - Нерр'и + - Нерр'ий + - Нерр'кол + - Нерр'илл + - Ирр'рейз + - Ирр'ринн + - Ирр'ди + - Ирр'най + - Ирр'целл + - Ирр'таи + - Ирр'лиин + - Ирр'райн + - Ирр'ирр + - Ирр'сии + - Ирр'айен + - Ирр'рийен + - Ирр'кин + - Ирр'и + - Ирр'ий + - Ирр'кол + - Ирр'илл + - Фицз'рейз + - Фицз'ринн + - Фицз'ди + - Фицз'най + - Фицз'целл + - Фицз'таи + - Фицз'лиин + - Фицз'райн + - Фицз'ирр + - Фицз'сии + - Фицз'айен + - Фицз'рийен + - Фицз'кин + - Фицз'и + - Фицз'ий + - Фицз'кол + - Фицз'илл + - Кии'рейз + - Кии'ринн + - Кии'ди + - Кии'най + - Кии'целл + - Кии'таи + - Кии'лиин + - Кии'райн + - Кии'ирр + - Кии'сии + - Кии'айен + - Кии'рийен + - Кии'кин + - Кии'и + - Кии'ий + - Кии'кол + - Кии'илл + - Ийн'рейз + - Ийн'ринн + - Ийн'ди + - Ийн'най + - Ийн'целл + - Ийн'таи + - Ийн'лиин + - Ийн'райн + - Ийн'ирр + - Ийн'сии + - Ийн'айен + - Ийн'рийен + - Ийн'кин + - Ийн'и + - Ийн'ий + - Ийн'кол + - Ийн'илл + - Лии'рейз + - Лии'ринн + - Лии'ди + - Лии'най + - Лии'целл + - Лии'таи + - Лии'лиин + - Лии'райн + - Лии'ирр + - Лии'сии + - Лии'айен + - Лии'рийен + - Лии'кин + - Лии'и + - Лии'ий + - Лии'кол + - Лии'илл + - Ниер'рейз + - Ниер'ринн + - Ниер'ди + - Ниер'най + - Ниер'целл + - Ниер'таи + - Ниер'лиин + - Ниер'райн + - Ниер'ирр + - Ниер'сии + - Ниер'айен + - Ниер'рийен + - Ниер'кин + - Ниер'и + - Ниер'ий + - Ниер'кол + - Ниер'илл + - Йен'рейз + - Йен'ринн + - Йен'ди + - Йен'най + - Йен'целл + - Йен'таи + - Йен'лиин + - Йен'райн + - Йен'ирр + - Йен'сии + - Йен'айен + - Йен'рийен + - Йен'кин + - Йен'и + - Йен'ий + - Йен'кол + - Йен'илл + - Ар'рейз + - Ар'ринн + - Ар'ди + - Ар'най + - Ар'целл + - Ар'таи + - Ар'лиин + - Ар'райн + - Ар'ирр + - Ар'сии + - Ар'айен + - Ар'рийен + - Ар'кин + - Ар'и + - Ар'ий + - Ар'кол + - Ар'илл + - Веи'рейз + - Веи'ринн + - Веи'ди + - Веи'най + - Веи'целл + - Веи'таи + - Веи'лиин + - Веи'райн + - Веи'ирр + - Веи'сии + - Веи'айен + - Веи'рийен + - Веи'кин + - Веи'и + - Веи'ий + - Веи'кол + - Веи'илл + - Цел'рейз + - Цел'ринн + - Цел'ди + - Цел'най + - Цел'целл + - Цел'таи + - Цел'лиин + - Цел'райн + - Цел'ирр + - Цел'сии + - Цел'айен + - Цел'рийен + - Цел'кин + - Цел'и + - Цел'ий + - Цел'кол + - Цел'илл + - Харр'рейз + - Харр'ринн + - Харр'ди + - Харр'най + - Харр'целл + - Харр'таи + - Харр'лиин + - Харр'райн + - Харр'ирр + - Харр'сии + - Харр'айен + - Харр'рийен + - Харр'кин + - Харр'и + - Харр'ий + - Харр'кол + - Харр'илл + - Рай'рейз + - Рай'ринн + - Рай'ди + - Рай'най + - Рай'целл + - Рай'таи + - Рай'лиин + - Рай'райн + - Рай'ирр + - Рай'сии + - Рай'айен + - Рай'рийен + - Рай'кин + - Рай'и + - Рай'ий + - Рай'кол + - Рай'илл + - Дей'рейз + - Дей'ринн + - Дей'ди + - Дей'най + - Дей'целл + - Дей'таи + - Дей'лиин + - Дей'райн + - Дей'ирр + - Дей'сии + - Дей'айен + - Дей'рийен + - Дей'кин + - Дей'и + - Дей'ий + - Дей'кол + - Дей'илл + - Эман'рейз + - Эман'ринн + - Эман'ди + - Эман'най + - Эман'целл + - Эман'таи + - Эман'лиин + - Эман'райн + - Эман'ирр + - Эман'сии + - Эман'айен + - Эман'рийен + - Эман'кин + - Эман'и + - Эман'ий + - Эман'кол + - Эман'илл + - Гер'рейз + - Гер'ринн + - Гер'ди + - Гер'най + - Гер'целл + - Гер'таи + - Гер'лиин + - Гер'райн + - Гер'ирр + - Гер'сии + - Гер'айен + - Гер'рийен + - Гер'кин + - Гер'и + - Гер'ий + - Гер'кол + - Гер'илл + - Ивай'рейз + - Ивай'ринн + - Ивай'ди + - Ивай'най + - Ивай'целл + - Ивай'таи + - Ивай'лиин + - Ивай'райн + - Ивай'ирр + - Ивай'сии + - Ивай'айен + - Ивай'рийен + - Ивай'кин + - Ивай'и + - Ивай'ий + - Ивай'кол + - Ивай'илл + - Кай'рейз + - Кай'ринн + - Кай'ди + - Кай'най + - Кай'целл + - Кай'таи + - Кай'лиин + - Кай'райн + - Кай'ирр + - Кай'сии + - Кай'айен + - Кай'рийен + - Кай'кин + - Кай'и + - Кай'ий + - Кай'кол + - Кай'илл + - Ленн'рейз + - Ленн'ринн + - Ленн'ди + - Ленн'най + - Ленн'целл + - Ленн'таи + - Ленн'лиин + - Ленн'райн + - Ленн'ирр + - Ленн'сии + - Ленн'айен + - Ленн'рийен + - Ленн'кин + - Ленн'и + - Ленн'ий + - Ленн'кол + - Ленн'илл + - Пресс'рейз + - Пресс'ринн + - Пресс'ди + - Пресс'най + - Пресс'целл + - Пресс'таи + - Пресс'лиин + - Пресс'райн + - Пресс'ирр + - Пресс'сии + - Пресс'айен + - Пресс'рийен + - Пресс'кин + - Пресс'и + - Пресс'ий + - Пресс'кол + - Пресс'илл diff --git a/Resources/Prototypes/ADT/Datasets/Names/last_moth.yml b/Resources/Prototypes/ADT/Datasets/Names/last_moth.yml new file mode 100644 index 00000000000..b87b41a36d7 --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/last_moth.yml @@ -0,0 +1,59 @@ +- type: dataset + id: last_moth + values: + - Галактики Андромеда + - Альфа Центавры + - Проксима Центавры + - Туманности Андромеда + - Солнечной Системы + - Планеты Сатурна + - Пояса Астероидов + - Созвездия Журавль + - Великой Туманности + - Галактического Кластера + - Материнской Звезды + - Планеты Марса + - Рассеянной Галактики + - Галактической Суперскопины + - Космической Станции Мир + - Планетарной Сети + - Газовых Гигантов + - Марсианской Пустыни + - Планетарной Экосистемы + - Космического Оркестра + - Планеты Нептун + - Атмосферы Сатурна + - Магелланового Облака + - Космической Станции Аура + - Галактического Затмения + - Созвездия Андромеды + - Корабля "Сиреневый Астероид" + - Небесного Вала + - Газового Гиганта + - Звездного Потока + - Галактической Астрономической Сети + - Солнечных Ветров + - Кластера Андромеды + - Созвездия Кассиопеи + - Галактического Кластера Плеяд + - Планетарной Станции Аура + - Цитадели Байцзуна + - Черной Дыры М87 + - Звездного Кластера Персея + - Созвездия Майя + - Звёздного Кластера Майя + - Созвездия Атлас + - Туманности Плейона + - Созвездия Электра + - Системы Сириус + - Системы Альдебаран + - Системы Альтаир + - Красного Гиганта Бетельгейзе + - Созвездия Сириус + - Системы Регул + - Созвездия Арктур + - Системы Астеропа + - Созвездия Капелла + - Созвездия Меропа + - Галактики Орион + - Червоточины М77 diff --git a/Resources/Prototypes/ADT/Datasets/Names/last_tajaran.yml b/Resources/Prototypes/ADT/Datasets/Names/last_tajaran.yml new file mode 100644 index 00000000000..440b58cc6e6 --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/last_tajaran.yml @@ -0,0 +1,6691 @@ +- type: dataset + id: TajaranLast + values: + - Нер'хинс Кайтам + - Нер'хинс Хадии + - Нер'хинс Сэндай + - Нер'хинс Року-Сэндай + - Нер'хинс Ниол-Сэндай + - Нер'хинс Ринуа-Сэндай + - Нер'хинс Року-Сэндай + - Нер'хинс Кайи-Сэндай + - Нер'хинс Айдам-Сэндай + - Нер'хинс Каии-Сэндай + - Нер'хинс Шенуар-Сэндай + - Нер'хинс Целлай-Сэндай + - Нер'хинс Релл-Сэндай + - Нер'хинс Файи-Сэндай + - Нер'хинс Наирр-Сэндай + - Нер'хинс Ильн-Сэндай + - Нер'хинс Лейи-Сэндай + - Нер'хинс Кайр-Сэндай + - Нер'хинс Лиий-Сэндай + - Нер'хинс Иурр-Сэндай + - Нер'хинс Рейи-Сэндай + - Нер'хинс Нирру-Сэндай + - Нер'хинс Хинн-Сэндай + - Нер'хинс Сай-Сэндай + - Нер'хинс Неос-Сэндай + - Нер'хинс Синну-Сэндай + - Нер'хинс Саир-Сэндай + - Нер'хинс Нарри-Сэндай + - Нер'хинс Гайи-Сэндай + - Нер'хинс Нарр-Сэндай + - Нер'хинс Ренн-Сэндай + - Нер'хинс Сииун-Сэндай + - Нер'ерс Кайтам + - Нер'ерс Хадии + - Нер'ерс Сэндай + - Нер'ерс Року-Сэндай + - Нер'ерс Ниол-Сэндай + - Нер'ерс Ринуа-Сэндай + - Нер'ерс Року-Сэндай + - Нер'ерс Кайи-Сэндай + - Нер'ерс Айдам-Сэндай + - Нер'ерс Каии-Сэндай + - Нер'ерс Шенуар-Сэндай + - Нер'ерс Целлай-Сэндай + - Нер'ерс Релл-Сэндай + - Нер'ерс Файи-Сэндай + - Нер'ерс Наирр-Сэндай + - Нер'ерс Ильн-Сэндай + - Нер'ерс Лейи-Сэндай + - Нер'ерс Кайр-Сэндай + - Нер'ерс Лиий-Сэндай + - Нер'ерс Иурр-Сэндай + - Нер'ерс Рейи-Сэндай + - Нер'ерс Нирру-Сэндай + - Нер'ерс Хинн-Сэндай + - Нер'ерс Сай-Сэндай + - Нер'ерс Неос-Сэндай + - Нер'ерс Синну-Сэндай + - Нер'ерс Саир-Сэндай + - Нер'ерс Нарри-Сэндай + - Нер'ерс Гайи-Сэндай + - Нер'ерс Нарр-Сэндай + - Нер'ерс Ренн-Сэндай + - Нер'ерс Сииун-Сэндай + - Нер'наи Кайтам + - Нер'наи Хадии + - Нер'наи Сэндай + - Нер'наи Року-Сэндай + - Нер'наи Ниол-Сэндай + - Нер'наи Ринуа-Сэндай + - Нер'наи Року-Сэндай + - Нер'наи Кайи-Сэндай + - Нер'наи Айдам-Сэндай + - Нер'наи Каии-Сэндай + - Нер'наи Шенуар-Сэндай + - Нер'наи Целлай-Сэндай + - Нер'наи Релл-Сэндай + - Нер'наи Файи-Сэндай + - Нер'наи Наирр-Сэндай + - Нер'наи Ильн-Сэндай + - Нер'наи Лейи-Сэндай + - Нер'наи Кайр-Сэндай + - Нер'наи Лиий-Сэндай + - Нер'наи Иурр-Сэндай + - Нер'наи Рейи-Сэндай + - Нер'наи Нирру-Сэндай + - Нер'наи Хинн-Сэндай + - Нер'наи Сай-Сэндай + - Нер'наи Неос-Сэндай + - Нер'наи Синну-Сэндай + - Нер'наи Саир-Сэндай + - Нер'наи Нарри-Сэндай + - Нер'наи Гайи-Сэндай + - Нер'наи Нарр-Сэндай + - Нер'наи Ренн-Сэндай + - Нер'наи Сииун-Сэндай + - Нер'тайль Кайтам + - Нер'тайль Хадии + - Нер'тайль Сэндай + - Нер'тайль Року-Сэндай + - Нер'тайль Ниол-Сэндай + - Нер'тайль Ринуа-Сэндай + - Нер'тайль Року-Сэндай + - Нер'тайль Кайи-Сэндай + - Нер'тайль Айдам-Сэндай + - Нер'тайль Каии-Сэндай + - Нер'тайль Шенуар-Сэндай + - Нер'тайль Целлай-Сэндай + - Нер'тайль Релл-Сэндай + - Нер'тайль Файи-Сэндай + - Нер'тайль Наирр-Сэндай + - Нер'тайль Ильн-Сэндай + - Нер'тайль Лейи-Сэндай + - Нер'тайль Кайр-Сэндай + - Нер'тайль Лиий-Сэндай + - Нер'тайль Иурр-Сэндай + - Нер'тайль Рейи-Сэндай + - Нер'тайль Нирру-Сэндай + - Нер'тайль Хинн-Сэндай + - Нер'тайль Сай-Сэндай + - Нер'тайль Неос-Сэндай + - Нер'тайль Синну-Сэндай + - Нер'тайль Саир-Сэндай + - Нер'тайль Нарри-Сэндай + - Нер'тайль Гайи-Сэндай + - Нер'тайль Нарр-Сэндай + - Нер'тайль Ренн-Сэндай + - Нер'тайль Сииун-Сэндай + - Нер'нер Кайтам + - Нер'нер Хадии + - Нер'нер Сэндай + - Нер'нер Року-Сэндай + - Нер'нер Ниол-Сэндай + - Нер'нер Ринуа-Сэндай + - Нер'нер Року-Сэндай + - Нер'нер Кайи-Сэндай + - Нер'нер Айдам-Сэндай + - Нер'нер Каии-Сэндай + - Нер'нер Шенуар-Сэндай + - Нер'нер Целлай-Сэндай + - Нер'нер Релл-Сэндай + - Нер'нер Файи-Сэндай + - Нер'нер Наирр-Сэндай + - Нер'нер Ильн-Сэндай + - Нер'нер Лейи-Сэндай + - Нер'нер Кайр-Сэндай + - Нер'нер Лиий-Сэндай + - Нер'нер Иурр-Сэндай + - Нер'нер Рейи-Сэндай + - Нер'нер Нирру-Сэндай + - Нер'нер Хинн-Сэндай + - Нер'нер Сай-Сэндай + - Нер'нер Неос-Сэндай + - Нер'нер Синну-Сэндай + - Нер'нер Саир-Сэндай + - Нер'нер Нарри-Сэндай + - Нер'нер Гайи-Сэндай + - Нер'нер Нарр-Сэндай + - Нер'нер Ренн-Сэндай + - Нер'нер Сииун-Сэндай + - Нер'н Кайтам + - Нер'н Хадии + - Нер'н Сэндай + - Нер'н Року-Сэндай + - Нер'н Ниол-Сэндай + - Нер'н Ринуа-Сэндай + - Нер'н Року-Сэндай + - Нер'н Кайи-Сэндай + - Нер'н Айдам-Сэндай + - Нер'н Каии-Сэндай + - Нер'н Шенуар-Сэндай + - Нер'н Целлай-Сэндай + - Нер'н Релл-Сэндай + - Нер'н Файи-Сэндай + - Нер'н Наирр-Сэндай + - Нер'н Ильн-Сэндай + - Нер'н Лейи-Сэндай + - Нер'н Кайр-Сэндай + - Нер'н Лиий-Сэндай + - Нер'н Иурр-Сэндай + - Нер'н Рейи-Сэндай + - Нер'н Нирру-Сэндай + - Нер'н Хинн-Сэндай + - Нер'н Сай-Сэндай + - Нер'н Неос-Сэндай + - Нер'н Синну-Сэндай + - Нер'н Саир-Сэндай + - Нер'н Нарри-Сэндай + - Нер'н Гайи-Сэндай + - Нер'н Нарр-Сэндай + - Нер'н Ренн-Сэндай + - Нер'н Сииун-Сэндай + - Нер'тай Кайтам + - Нер'тай Хадии + - Нер'тай Сэндай + - Нер'тай Року-Сэндай + - Нер'тай Ниол-Сэндай + - Нер'тай Ринуа-Сэндай + - Нер'тай Року-Сэндай + - Нер'тай Кайи-Сэндай + - Нер'тай Айдам-Сэндай + - Нер'тай Каии-Сэндай + - Нер'тай Шенуар-Сэндай + - Нер'тай Целлай-Сэндай + - Нер'тай Релл-Сэндай + - Нер'тай Файи-Сэндай + - Нер'тай Наирр-Сэндай + - Нер'тай Ильн-Сэндай + - Нер'тай Лейи-Сэндай + - Нер'тай Кайр-Сэндай + - Нер'тай Лиий-Сэндай + - Нер'тай Иурр-Сэндай + - Нер'тай Рейи-Сэндай + - Нер'тай Нирру-Сэндай + - Нер'тай Хинн-Сэндай + - Нер'тай Сай-Сэндай + - Нер'тай Неос-Сэндай + - Нер'тай Синну-Сэндай + - Нер'тай Саир-Сэндай + - Нер'тай Нарри-Сэндай + - Нер'тай Гайи-Сэндай + - Нер'тай Нарр-Сэндай + - Нер'тай Ренн-Сэндай + - Нер'тай Сииун-Сэндай + - Нер'ай Кайтам + - Нер'ай Хадии + - Нер'ай Сэндай + - Нер'ай Року-Сэндай + - Нер'ай Ниол-Сэндай + - Нер'ай Ринуа-Сэндай + - Нер'ай Року-Сэндай + - Нер'ай Кайи-Сэндай + - Нер'ай Айдам-Сэндай + - Нер'ай Каии-Сэндай + - Нер'ай Шенуар-Сэндай + - Нер'ай Целлай-Сэндай + - Нер'ай Релл-Сэндай + - Нер'ай Файи-Сэндай + - Нер'ай Наирр-Сэндай + - Нер'ай Ильн-Сэндай + - Нер'ай Лейи-Сэндай + - Нер'ай Кайр-Сэндай + - Нер'ай Лиий-Сэндай + - Нер'ай Иурр-Сэндай + - Нер'ай Рейи-Сэндай + - Нер'ай Нирру-Сэндай + - Нер'ай Хинн-Сэндай + - Нер'ай Сай-Сэндай + - Нер'ай Неос-Сэндай + - Нер'ай Синну-Сэндай + - Нер'ай Саир-Сэндай + - Нер'ай Нарри-Сэндай + - Нер'ай Гайи-Сэндай + - Нер'ай Нарр-Сэндай + - Нер'ай Ренн-Сэндай + - Нер'ай Сииун-Сэндай + - Нер'таи Кайтам + - Нер'таи Хадии + - Нер'таи Сэндай + - Нер'таи Року-Сэндай + - Нер'таи Ниол-Сэндай + - Нер'таи Ринуа-Сэндай + - Нер'таи Року-Сэндай + - Нер'таи Кайи-Сэндай + - Нер'таи Айдам-Сэндай + - Нер'таи Каии-Сэндай + - Нер'таи Шенуар-Сэндай + - Нер'таи Целлай-Сэндай + - Нер'таи Релл-Сэндай + - Нер'таи Файи-Сэндай + - Нер'таи Наирр-Сэндай + - Нер'таи Ильн-Сэндай + - Нер'таи Лейи-Сэндай + - Нер'таи Кайр-Сэндай + - Нер'таи Лиий-Сэндай + - Нер'таи Иурр-Сэндай + - Нер'таи Рейи-Сэндай + - Нер'таи Нирру-Сэндай + - Нер'таи Хинн-Сэндай + - Нер'таи Сай-Сэндай + - Нер'таи Неос-Сэндай + - Нер'таи Синну-Сэндай + - Нер'таи Саир-Сэндай + - Нер'таи Нарри-Сэндай + - Нер'таи Гайи-Сэндай + - Нер'таи Нарр-Сэндай + - Нер'таи Ренн-Сэндай + - Нер'таи Сииун-Сэндай + - Нер'нии Кайтам + - Нер'нии Хадии + - Нер'нии Сэндай + - Нер'нии Року-Сэндай + - Нер'нии Ниол-Сэндай + - Нер'нии Ринуа-Сэндай + - Нер'нии Року-Сэндай + - Нер'нии Кайи-Сэндай + - Нер'нии Айдам-Сэндай + - Нер'нии Каии-Сэндай + - Нер'нии Шенуар-Сэндай + - Нер'нии Целлай-Сэндай + - Нер'нии Релл-Сэндай + - Нер'нии Файи-Сэндай + - Нер'нии Наирр-Сэндай + - Нер'нии Ильн-Сэндай + - Нер'нии Лейи-Сэндай + - Нер'нии Кайр-Сэндай + - Нер'нии Лиий-Сэндай + - Нер'нии Иурр-Сэндай + - Нер'нии Рейи-Сэндай + - Нер'нии Нирру-Сэндай + - Нер'нии Хинн-Сэндай + - Нер'нии Сай-Сэндай + - Нер'нии Неос-Сэндай + - Нер'нии Синну-Сэндай + - Нер'нии Саир-Сэндай + - Нер'нии Нарри-Сэндай + - Нер'нии Гайи-Сэндай + - Нер'нии Нарр-Сэндай + - Нер'нии Ренн-Сэндай + - Нер'нии Сииун-Сэндай + - Нер'стай Кайтам + - Нер'стай Хадии + - Нер'стай Сэндай + - Нер'стай Року-Сэндай + - Нер'стай Ниол-Сэндай + - Нер'стай Ринуа-Сэндай + - Нер'стай Року-Сэндай + - Нер'стай Кайи-Сэндай + - Нер'стай Айдам-Сэндай + - Нер'стай Каии-Сэндай + - Нер'стай Шенуар-Сэндай + - Нер'стай Целлай-Сэндай + - Нер'стай Релл-Сэндай + - Нер'стай Файи-Сэндай + - Нер'стай Наирр-Сэндай + - Нер'стай Ильн-Сэндай + - Нер'стай Лейи-Сэндай + - Нер'стай Кайр-Сэндай + - Нер'стай Лиий-Сэндай + - Нер'стай Иурр-Сэндай + - Нер'стай Рейи-Сэндай + - Нер'стай Нирру-Сэндай + - Нер'стай Хинн-Сэндай + - Нер'стай Сай-Сэндай + - Нер'стай Неос-Сэндай + - Нер'стай Синну-Сэндай + - Нер'стай Саир-Сэндай + - Нер'стай Нарри-Сэндай + - Нер'стай Гайи-Сэндай + - Нер'стай Нарр-Сэндай + - Нер'стай Ренн-Сэндай + - Нер'стай Сииун-Сэндай + - Нер'нирр Кайтам + - Нер'нирр Хадии + - Нер'нирр Сэндай + - Нер'нирр Року-Сэндай + - Нер'нирр Ниол-Сэндай + - Нер'нирр Ринуа-Сэндай + - Нер'нирр Року-Сэндай + - Нер'нирр Кайи-Сэндай + - Нер'нирр Айдам-Сэндай + - Нер'нирр Каии-Сэндай + - Нер'нирр Шенуар-Сэндай + - Нер'нирр Целлай-Сэндай + - Нер'нирр Релл-Сэндай + - Нер'нирр Файи-Сэндай + - Нер'нирр Наирр-Сэндай + - Нер'нирр Ильн-Сэндай + - Нер'нирр Лейи-Сэндай + - Нер'нирр Кайр-Сэндай + - Нер'нирр Лиий-Сэндай + - Нер'нирр Иурр-Сэндай + - Нер'нирр Рейи-Сэндай + - Нер'нирр Нирру-Сэндай + - Нер'нирр Хинн-Сэндай + - Нер'нирр Сай-Сэндай + - Нер'нирр Неос-Сэндай + - Нер'нирр Синну-Сэндай + - Нер'нирр Саир-Сэндай + - Нер'нирр Нарри-Сэндай + - Нер'нирр Гайи-Сэндай + - Нер'нирр Нарр-Сэндай + - Нер'нирр Ренн-Сэндай + - Нер'нирр Сииун-Сэндай + - Нер'сай Кайтам + - Нер'сай Хадии + - Нер'сай Сэндай + - Нер'сай Року-Сэндай + - Нер'сай Ниол-Сэндай + - Нер'сай Ринуа-Сэндай + - Нер'сай Року-Сэндай + - Нер'сай Кайи-Сэндай + - Нер'сай Айдам-Сэндай + - Нер'сай Каии-Сэндай + - Нер'сай Шенуар-Сэндай + - Нер'сай Целлай-Сэндай + - Нер'сай Релл-Сэндай + - Нер'сай Файи-Сэндай + - Нер'сай Наирр-Сэндай + - Нер'сай Ильн-Сэндай + - Нер'сай Лейи-Сэндай + - Нер'сай Кайр-Сэндай + - Нер'сай Лиий-Сэндай + - Нер'сай Иурр-Сэндай + - Нер'сай Рейи-Сэндай + - Нер'сай Нирру-Сэндай + - Нер'сай Хинн-Сэндай + - Нер'сай Сай-Сэндай + - Нер'сай Неос-Сэндай + - Нер'сай Синну-Сэндай + - Нер'сай Саир-Сэндай + - Нер'сай Нарри-Сэндай + - Нер'сай Гайи-Сэндай + - Нер'сай Нарр-Сэндай + - Нер'сай Ренн-Сэндай + - Нер'сай Сииун-Сэндай + - Нер'раль Кайтам + - Нер'раль Хадии + - Нер'раль Сэндай + - Нер'раль Року-Сэндай + - Нер'раль Ниол-Сэндай + - Нер'раль Ринуа-Сэндай + - Нер'раль Року-Сэндай + - Нер'раль Кайи-Сэндай + - Нер'раль Айдам-Сэндай + - Нер'раль Каии-Сэндай + - Нер'раль Шенуар-Сэндай + - Нер'раль Целлай-Сэндай + - Нер'раль Релл-Сэндай + - Нер'раль Файи-Сэндай + - Нер'раль Наирр-Сэндай + - Нер'раль Ильн-Сэндай + - Нер'раль Лейи-Сэндай + - Нер'раль Кайр-Сэндай + - Нер'раль Лиий-Сэндай + - Нер'раль Иурр-Сэндай + - Нер'раль Рейи-Сэндай + - Нер'раль Нирру-Сэндай + - Нер'раль Хинн-Сэндай + - Нер'раль Сай-Сэндай + - Нер'раль Неос-Сэндай + - Нер'раль Синну-Сэндай + - Нер'раль Саир-Сэндай + - Нер'раль Нарри-Сэндай + - Нер'раль Гайи-Сэндай + - Нер'раль Нарр-Сэндай + - Нер'раль Ренн-Сэндай + - Нер'раль Сииун-Сэндай + - Нари'хинс Кайтам + - Нари'хинс Хадии + - Нари'хинс Сэндай + - Нари'хинс Року-Сэндай + - Нари'хинс Ниол-Сэндай + - Нари'хинс Ринуа-Сэндай + - Нари'хинс Року-Сэндай + - Нари'хинс Кайи-Сэндай + - Нари'хинс Айдам-Сэндай + - Нари'хинс Каии-Сэндай + - Нари'хинс Шенуар-Сэндай + - Нари'хинс Целлай-Сэндай + - Нари'хинс Релл-Сэндай + - Нари'хинс Файи-Сэндай + - Нари'хинс Наирр-Сэндай + - Нари'хинс Ильн-Сэндай + - Нари'хинс Лейи-Сэндай + - Нари'хинс Кайр-Сэндай + - Нари'хинс Лиий-Сэндай + - Нари'хинс Иурр-Сэндай + - Нари'хинс Рейи-Сэндай + - Нари'хинс Нирру-Сэндай + - Нари'хинс Хинн-Сэндай + - Нари'хинс Сай-Сэндай + - Нари'хинс Неос-Сэндай + - Нари'хинс Синну-Сэндай + - Нари'хинс Саир-Сэндай + - Нари'хинс Нарри-Сэндай + - Нари'хинс Гайи-Сэндай + - Нари'хинс Нарр-Сэндай + - Нари'хинс Ренн-Сэндай + - Нари'хинс Сииун-Сэндай + - Нари'ерс Кайтам + - Нари'ерс Хадии + - Нари'ерс Сэндай + - Нари'ерс Року-Сэндай + - Нари'ерс Ниол-Сэндай + - Нари'ерс Ринуа-Сэндай + - Нари'ерс Року-Сэндай + - Нари'ерс Кайи-Сэндай + - Нари'ерс Айдам-Сэндай + - Нари'ерс Каии-Сэндай + - Нари'ерс Шенуар-Сэндай + - Нари'ерс Целлай-Сэндай + - Нари'ерс Релл-Сэндай + - Нари'ерс Файи-Сэндай + - Нари'ерс Наирр-Сэндай + - Нари'ерс Ильн-Сэндай + - Нари'ерс Лейи-Сэндай + - Нари'ерс Кайр-Сэндай + - Нари'ерс Лиий-Сэндай + - Нари'ерс Иурр-Сэндай + - Нари'ерс Рейи-Сэндай + - Нари'ерс Нирру-Сэндай + - Нари'ерс Хинн-Сэндай + - Нари'ерс Сай-Сэндай + - Нари'ерс Неос-Сэндай + - Нари'ерс Синну-Сэндай + - Нари'ерс Саир-Сэндай + - Нари'ерс Нарри-Сэндай + - Нари'ерс Гайи-Сэндай + - Нари'ерс Нарр-Сэндай + - Нари'ерс Ренн-Сэндай + - Нари'ерс Сииун-Сэндай + - Нари'наи Кайтам + - Нари'наи Хадии + - Нари'наи Сэндай + - Нари'наи Року-Сэндай + - Нари'наи Ниол-Сэндай + - Нари'наи Ринуа-Сэндай + - Нари'наи Року-Сэндай + - Нари'наи Кайи-Сэндай + - Нари'наи Айдам-Сэндай + - Нари'наи Каии-Сэндай + - Нари'наи Шенуар-Сэндай + - Нари'наи Целлай-Сэндай + - Нари'наи Релл-Сэндай + - Нари'наи Файи-Сэндай + - Нари'наи Наирр-Сэндай + - Нари'наи Ильн-Сэндай + - Нари'наи Лейи-Сэндай + - Нари'наи Кайр-Сэндай + - Нари'наи Лиий-Сэндай + - Нари'наи Иурр-Сэндай + - Нари'наи Рейи-Сэндай + - Нари'наи Нирру-Сэндай + - Нари'наи Хинн-Сэндай + - Нари'наи Сай-Сэндай + - Нари'наи Неос-Сэндай + - Нари'наи Синну-Сэндай + - Нари'наи Саир-Сэндай + - Нари'наи Нарри-Сэндай + - Нари'наи Гайи-Сэндай + - Нари'наи Нарр-Сэндай + - Нари'наи Ренн-Сэндай + - Нари'наи Сииун-Сэндай + - Нари'тайль Кайтам + - Нари'тайль Хадии + - Нари'тайль Сэндай + - Нари'тайль Року-Сэндай + - Нари'тайль Ниол-Сэндай + - Нари'тайль Ринуа-Сэндай + - Нари'тайль Року-Сэндай + - Нари'тайль Кайи-Сэндай + - Нари'тайль Айдам-Сэндай + - Нари'тайль Каии-Сэндай + - Нари'тайль Шенуар-Сэндай + - Нари'тайль Целлай-Сэндай + - Нари'тайль Релл-Сэндай + - Нари'тайль Файи-Сэндай + - Нари'тайль Наирр-Сэндай + - Нари'тайль Ильн-Сэндай + - Нари'тайль Лейи-Сэндай + - Нари'тайль Кайр-Сэндай + - Нари'тайль Лиий-Сэндай + - Нари'тайль Иурр-Сэндай + - Нари'тайль Рейи-Сэндай + - Нари'тайль Нирру-Сэндай + - Нари'тайль Хинн-Сэндай + - Нари'тайль Сай-Сэндай + - Нари'тайль Неос-Сэндай + - Нари'тайль Синну-Сэндай + - Нари'тайль Саир-Сэндай + - Нари'тайль Нарри-Сэндай + - Нари'тайль Гайи-Сэндай + - Нари'тайль Нарр-Сэндай + - Нари'тайль Ренн-Сэндай + - Нари'тайль Сииун-Сэндай + - Нари'нер Кайтам + - Нари'нер Хадии + - Нари'нер Сэндай + - Нари'нер Року-Сэндай + - Нари'нер Ниол-Сэндай + - Нари'нер Ринуа-Сэндай + - Нари'нер Року-Сэндай + - Нари'нер Кайи-Сэндай + - Нари'нер Айдам-Сэндай + - Нари'нер Каии-Сэндай + - Нари'нер Шенуар-Сэндай + - Нари'нер Целлай-Сэндай + - Нари'нер Релл-Сэндай + - Нари'нер Файи-Сэндай + - Нари'нер Наирр-Сэндай + - Нари'нер Ильн-Сэндай + - Нари'нер Лейи-Сэндай + - Нари'нер Кайр-Сэндай + - Нари'нер Лиий-Сэндай + - Нари'нер Иурр-Сэндай + - Нари'нер Рейи-Сэндай + - Нари'нер Нирру-Сэндай + - Нари'нер Хинн-Сэндай + - Нари'нер Сай-Сэндай + - Нари'нер Неос-Сэндай + - Нари'нер Синну-Сэндай + - Нари'нер Саир-Сэндай + - Нари'нер Нарри-Сэндай + - Нари'нер Гайи-Сэндай + - Нари'нер Нарр-Сэндай + - Нари'нер Ренн-Сэндай + - Нари'нер Сииун-Сэндай + - Нари'н Кайтам + - Нари'н Хадии + - Нари'н Сэндай + - Нари'н Року-Сэндай + - Нари'н Ниол-Сэндай + - Нари'н Ринуа-Сэндай + - Нари'н Року-Сэндай + - Нари'н Кайи-Сэндай + - Нари'н Айдам-Сэндай + - Нари'н Каии-Сэндай + - Нари'н Шенуар-Сэндай + - Нари'н Целлай-Сэндай + - Нари'н Релл-Сэндай + - Нари'н Файи-Сэндай + - Нари'н Наирр-Сэндай + - Нари'н Ильн-Сэндай + - Нари'н Лейи-Сэндай + - Нари'н Кайр-Сэндай + - Нари'н Лиий-Сэндай + - Нари'н Иурр-Сэндай + - Нари'н Рейи-Сэндай + - Нари'н Нирру-Сэндай + - Нари'н Хинн-Сэндай + - Нари'н Сай-Сэндай + - Нари'н Неос-Сэндай + - Нари'н Синну-Сэндай + - Нари'н Саир-Сэндай + - Нари'н Нарри-Сэндай + - Нари'н Гайи-Сэндай + - Нари'н Нарр-Сэндай + - Нари'н Ренн-Сэндай + - Нари'н Сииун-Сэндай + - Нари'тай Кайтам + - Нари'тай Хадии + - Нари'тай Сэндай + - Нари'тай Року-Сэндай + - Нари'тай Ниол-Сэндай + - Нари'тай Ринуа-Сэндай + - Нари'тай Року-Сэндай + - Нари'тай Кайи-Сэндай + - Нари'тай Айдам-Сэндай + - Нари'тай Каии-Сэндай + - Нари'тай Шенуар-Сэндай + - Нари'тай Целлай-Сэндай + - Нари'тай Релл-Сэндай + - Нари'тай Файи-Сэндай + - Нари'тай Наирр-Сэндай + - Нари'тай Ильн-Сэндай + - Нари'тай Лейи-Сэндай + - Нари'тай Кайр-Сэндай + - Нари'тай Лиий-Сэндай + - Нари'тай Иурр-Сэндай + - Нари'тай Рейи-Сэндай + - Нари'тай Нирру-Сэндай + - Нари'тай Хинн-Сэндай + - Нари'тай Сай-Сэндай + - Нари'тай Неос-Сэндай + - Нари'тай Синну-Сэндай + - Нари'тай Саир-Сэндай + - Нари'тай Нарри-Сэндай + - Нари'тай Гайи-Сэндай + - Нари'тай Нарр-Сэндай + - Нари'тай Ренн-Сэндай + - Нари'тай Сииун-Сэндай + - Нари'ай Кайтам + - Нари'ай Хадии + - Нари'ай Сэндай + - Нари'ай Року-Сэндай + - Нари'ай Ниол-Сэндай + - Нари'ай Ринуа-Сэндай + - Нари'ай Року-Сэндай + - Нари'ай Кайи-Сэндай + - Нари'ай Айдам-Сэндай + - Нари'ай Каии-Сэндай + - Нари'ай Шенуар-Сэндай + - Нари'ай Целлай-Сэндай + - Нари'ай Релл-Сэндай + - Нари'ай Файи-Сэндай + - Нари'ай Наирр-Сэндай + - Нари'ай Ильн-Сэндай + - Нари'ай Лейи-Сэндай + - Нари'ай Кайр-Сэндай + - Нари'ай Лиий-Сэндай + - Нари'ай Иурр-Сэндай + - Нари'ай Рейи-Сэндай + - Нари'ай Нирру-Сэндай + - Нари'ай Хинн-Сэндай + - Нари'ай Сай-Сэндай + - Нари'ай Неос-Сэндай + - Нари'ай Синну-Сэндай + - Нари'ай Саир-Сэндай + - Нари'ай Нарри-Сэндай + - Нари'ай Гайи-Сэндай + - Нари'ай Нарр-Сэндай + - Нари'ай Ренн-Сэндай + - Нари'ай Сииун-Сэндай + - Нари'таи Кайтам + - Нари'таи Хадии + - Нари'таи Сэндай + - Нари'таи Року-Сэндай + - Нари'таи Ниол-Сэндай + - Нари'таи Ринуа-Сэндай + - Нари'таи Року-Сэндай + - Нари'таи Кайи-Сэндай + - Нари'таи Айдам-Сэндай + - Нари'таи Каии-Сэндай + - Нари'таи Шенуар-Сэндай + - Нари'таи Целлай-Сэндай + - Нари'таи Релл-Сэндай + - Нари'таи Файи-Сэндай + - Нари'таи Наирр-Сэндай + - Нари'таи Ильн-Сэндай + - Нари'таи Лейи-Сэндай + - Нари'таи Кайр-Сэндай + - Нари'таи Лиий-Сэндай + - Нари'таи Иурр-Сэндай + - Нари'таи Рейи-Сэндай + - Нари'таи Нирру-Сэндай + - Нари'таи Хинн-Сэндай + - Нари'таи Сай-Сэндай + - Нари'таи Неос-Сэндай + - Нари'таи Синну-Сэндай + - Нари'таи Саир-Сэндай + - Нари'таи Нарри-Сэндай + - Нари'таи Гайи-Сэндай + - Нари'таи Нарр-Сэндай + - Нари'таи Ренн-Сэндай + - Нари'таи Сииун-Сэндай + - Нари'нии Кайтам + - Нари'нии Хадии + - Нари'нии Сэндай + - Нари'нии Року-Сэндай + - Нари'нии Ниол-Сэндай + - Нари'нии Ринуа-Сэндай + - Нари'нии Року-Сэндай + - Нари'нии Кайи-Сэндай + - Нари'нии Айдам-Сэндай + - Нари'нии Каии-Сэндай + - Нари'нии Шенуар-Сэндай + - Нари'нии Целлай-Сэндай + - Нари'нии Релл-Сэндай + - Нари'нии Файи-Сэндай + - Нари'нии Наирр-Сэндай + - Нари'нии Ильн-Сэндай + - Нари'нии Лейи-Сэндай + - Нари'нии Кайр-Сэндай + - Нари'нии Лиий-Сэндай + - Нари'нии Иурр-Сэндай + - Нари'нии Рейи-Сэндай + - Нари'нии Нирру-Сэндай + - Нари'нии Хинн-Сэндай + - Нари'нии Сай-Сэндай + - Нари'нии Неос-Сэндай + - Нари'нии Синну-Сэндай + - Нари'нии Саир-Сэндай + - Нари'нии Нарри-Сэндай + - Нари'нии Гайи-Сэндай + - Нари'нии Нарр-Сэндай + - Нари'нии Ренн-Сэндай + - Нари'нии Сииун-Сэндай + - Нари'стай Кайтам + - Нари'стай Хадии + - Нари'стай Сэндай + - Нари'стай Року-Сэндай + - Нари'стай Ниол-Сэндай + - Нари'стай Ринуа-Сэндай + - Нари'стай Року-Сэндай + - Нари'стай Кайи-Сэндай + - Нари'стай Айдам-Сэндай + - Нари'стай Каии-Сэндай + - Нари'стай Шенуар-Сэндай + - Нари'стай Целлай-Сэндай + - Нари'стай Релл-Сэндай + - Нари'стай Файи-Сэндай + - Нари'стай Наирр-Сэндай + - Нари'стай Ильн-Сэндай + - Нари'стай Лейи-Сэндай + - Нари'стай Кайр-Сэндай + - Нари'стай Лиий-Сэндай + - Нари'стай Иурр-Сэндай + - Нари'стай Рейи-Сэндай + - Нари'стай Нирру-Сэндай + - Нари'стай Хинн-Сэндай + - Нари'стай Сай-Сэндай + - Нари'стай Неос-Сэндай + - Нари'стай Синну-Сэндай + - Нари'стай Саир-Сэндай + - Нари'стай Нарри-Сэндай + - Нари'стай Гайи-Сэндай + - Нари'стай Нарр-Сэндай + - Нари'стай Ренн-Сэндай + - Нари'стай Сииун-Сэндай + - Нари'нирр Кайтам + - Нари'нирр Хадии + - Нари'нирр Сэндай + - Нари'нирр Року-Сэндай + - Нари'нирр Ниол-Сэндай + - Нари'нирр Ринуа-Сэндай + - Нари'нирр Року-Сэндай + - Нари'нирр Кайи-Сэндай + - Нари'нирр Айдам-Сэндай + - Нари'нирр Каии-Сэндай + - Нари'нирр Шенуар-Сэндай + - Нари'нирр Целлай-Сэндай + - Нари'нирр Релл-Сэндай + - Нари'нирр Файи-Сэндай + - Нари'нирр Наирр-Сэндай + - Нари'нирр Ильн-Сэндай + - Нари'нирр Лейи-Сэндай + - Нари'нирр Кайр-Сэндай + - Нари'нирр Лиий-Сэндай + - Нари'нирр Иурр-Сэндай + - Нари'нирр Рейи-Сэндай + - Нари'нирр Нирру-Сэндай + - Нари'нирр Хинн-Сэндай + - Нари'нирр Сай-Сэндай + - Нари'нирр Неос-Сэндай + - Нари'нирр Синну-Сэндай + - Нари'нирр Саир-Сэндай + - Нари'нирр Нарри-Сэндай + - Нари'нирр Гайи-Сэндай + - Нари'нирр Нарр-Сэндай + - Нари'нирр Ренн-Сэндай + - Нари'нирр Сииун-Сэндай + - Нари'сай Кайтам + - Нари'сай Хадии + - Нари'сай Сэндай + - Нари'сай Року-Сэндай + - Нари'сай Ниол-Сэндай + - Нари'сай Ринуа-Сэндай + - Нари'сай Року-Сэндай + - Нари'сай Кайи-Сэндай + - Нари'сай Айдам-Сэндай + - Нари'сай Каии-Сэндай + - Нари'сай Шенуар-Сэндай + - Нари'сай Целлай-Сэндай + - Нари'сай Релл-Сэндай + - Нари'сай Файи-Сэндай + - Нари'сай Наирр-Сэндай + - Нари'сай Ильн-Сэндай + - Нари'сай Лейи-Сэндай + - Нари'сай Кайр-Сэндай + - Нари'сай Лиий-Сэндай + - Нари'сай Иурр-Сэндай + - Нари'сай Рейи-Сэндай + - Нари'сай Нирру-Сэндай + - Нари'сай Хинн-Сэндай + - Нари'сай Сай-Сэндай + - Нари'сай Неос-Сэндай + - Нари'сай Синну-Сэндай + - Нари'сай Саир-Сэндай + - Нари'сай Нарри-Сэндай + - Нари'сай Гайи-Сэндай + - Нари'сай Нарр-Сэндай + - Нари'сай Ренн-Сэндай + - Нари'сай Сииун-Сэндай + - Нари'раль Кайтам + - Нари'раль Хадии + - Нари'раль Сэндай + - Нари'раль Року-Сэндай + - Нари'раль Ниол-Сэндай + - Нари'раль Ринуа-Сэндай + - Нари'раль Року-Сэндай + - Нари'раль Кайи-Сэндай + - Нари'раль Айдам-Сэндай + - Нари'раль Каии-Сэндай + - Нари'раль Шенуар-Сэндай + - Нари'раль Целлай-Сэндай + - Нари'раль Релл-Сэндай + - Нари'раль Файи-Сэндай + - Нари'раль Наирр-Сэндай + - Нари'раль Ильн-Сэндай + - Нари'раль Лейи-Сэндай + - Нари'раль Кайр-Сэндай + - Нари'раль Лиий-Сэндай + - Нари'раль Иурр-Сэндай + - Нари'раль Рейи-Сэндай + - Нари'раль Нирру-Сэндай + - Нари'раль Хинн-Сэндай + - Нари'раль Сай-Сэндай + - Нари'раль Неос-Сэндай + - Нари'раль Синну-Сэндай + - Нари'раль Саир-Сэндай + - Нари'раль Нарри-Сэндай + - Нари'раль Гайи-Сэндай + - Нари'раль Нарр-Сэндай + - Нари'раль Ренн-Сэндай + - Нари'раль Сииун-Сэндай + - Уорр'хинс Кайтам + - Уорр'хинс Хадии + - Уорр'хинс Сэндай + - Уорр'хинс Року-Сэндай + - Уорр'хинс Ниол-Сэндай + - Уорр'хинс Ринуа-Сэндай + - Уорр'хинс Року-Сэндай + - Уорр'хинс Кайи-Сэндай + - Уорр'хинс Айдам-Сэндай + - Уорр'хинс Каии-Сэндай + - Уорр'хинс Шенуар-Сэндай + - Уорр'хинс Целлай-Сэндай + - Уорр'хинс Релл-Сэндай + - Уорр'хинс Файи-Сэндай + - Уорр'хинс Наирр-Сэндай + - Уорр'хинс Ильн-Сэндай + - Уорр'хинс Лейи-Сэндай + - Уорр'хинс Кайр-Сэндай + - Уорр'хинс Лиий-Сэндай + - Уорр'хинс Иурр-Сэндай + - Уорр'хинс Рейи-Сэндай + - Уорр'хинс Нирру-Сэндай + - Уорр'хинс Хинн-Сэндай + - Уорр'хинс Сай-Сэндай + - Уорр'хинс Неос-Сэндай + - Уорр'хинс Синну-Сэндай + - Уорр'хинс Саир-Сэндай + - Уорр'хинс Нарри-Сэндай + - Уорр'хинс Гайи-Сэндай + - Уорр'хинс Нарр-Сэндай + - Уорр'хинс Ренн-Сэндай + - Уорр'хинс Сииун-Сэндай + - Уорр'ерс Кайтам + - Уорр'ерс Хадии + - Уорр'ерс Сэндай + - Уорр'ерс Року-Сэндай + - Уорр'ерс Ниол-Сэндай + - Уорр'ерс Ринуа-Сэндай + - Уорр'ерс Року-Сэндай + - Уорр'ерс Кайи-Сэндай + - Уорр'ерс Айдам-Сэндай + - Уорр'ерс Каии-Сэндай + - Уорр'ерс Шенуар-Сэндай + - Уорр'ерс Целлай-Сэндай + - Уорр'ерс Релл-Сэндай + - Уорр'ерс Файи-Сэндай + - Уорр'ерс Наирр-Сэндай + - Уорр'ерс Ильн-Сэндай + - Уорр'ерс Лейи-Сэндай + - Уорр'ерс Кайр-Сэндай + - Уорр'ерс Лиий-Сэндай + - Уорр'ерс Иурр-Сэндай + - Уорр'ерс Рейи-Сэндай + - Уорр'ерс Нирру-Сэндай + - Уорр'ерс Хинн-Сэндай + - Уорр'ерс Сай-Сэндай + - Уорр'ерс Неос-Сэндай + - Уорр'ерс Синну-Сэндай + - Уорр'ерс Саир-Сэндай + - Уорр'ерс Нарри-Сэндай + - Уорр'ерс Гайи-Сэндай + - Уорр'ерс Нарр-Сэндай + - Уорр'ерс Ренн-Сэндай + - Уорр'ерс Сииун-Сэндай + - Уорр'наи Кайтам + - Уорр'наи Хадии + - Уорр'наи Сэндай + - Уорр'наи Року-Сэндай + - Уорр'наи Ниол-Сэндай + - Уорр'наи Ринуа-Сэндай + - Уорр'наи Року-Сэндай + - Уорр'наи Кайи-Сэндай + - Уорр'наи Айдам-Сэндай + - Уорр'наи Каии-Сэндай + - Уорр'наи Шенуар-Сэндай + - Уорр'наи Целлай-Сэндай + - Уорр'наи Релл-Сэндай + - Уорр'наи Файи-Сэндай + - Уорр'наи Наирр-Сэндай + - Уорр'наи Ильн-Сэндай + - Уорр'наи Лейи-Сэндай + - Уорр'наи Кайр-Сэндай + - Уорр'наи Лиий-Сэндай + - Уорр'наи Иурр-Сэндай + - Уорр'наи Рейи-Сэндай + - Уорр'наи Нирру-Сэндай + - Уорр'наи Хинн-Сэндай + - Уорр'наи Сай-Сэндай + - Уорр'наи Неос-Сэндай + - Уорр'наи Синну-Сэндай + - Уорр'наи Саир-Сэндай + - Уорр'наи Нарри-Сэндай + - Уорр'наи Гайи-Сэндай + - Уорр'наи Нарр-Сэндай + - Уорр'наи Ренн-Сэндай + - Уорр'наи Сииун-Сэндай + - Уорр'тайль Кайтам + - Уорр'тайль Хадии + - Уорр'тайль Сэндай + - Уорр'тайль Року-Сэндай + - Уорр'тайль Ниол-Сэндай + - Уорр'тайль Ринуа-Сэндай + - Уорр'тайль Року-Сэндай + - Уорр'тайль Кайи-Сэндай + - Уорр'тайль Айдам-Сэндай + - Уорр'тайль Каии-Сэндай + - Уорр'тайль Шенуар-Сэндай + - Уорр'тайль Целлай-Сэндай + - Уорр'тайль Релл-Сэндай + - Уорр'тайль Файи-Сэндай + - Уорр'тайль Наирр-Сэндай + - Уорр'тайль Ильн-Сэндай + - Уорр'тайль Лейи-Сэндай + - Уорр'тайль Кайр-Сэндай + - Уорр'тайль Лиий-Сэндай + - Уорр'тайль Иурр-Сэндай + - Уорр'тайль Рейи-Сэндай + - Уорр'тайль Нирру-Сэндай + - Уорр'тайль Хинн-Сэндай + - Уорр'тайль Сай-Сэндай + - Уорр'тайль Неос-Сэндай + - Уорр'тайль Синну-Сэндай + - Уорр'тайль Саир-Сэндай + - Уорр'тайль Нарри-Сэндай + - Уорр'тайль Гайи-Сэндай + - Уорр'тайль Нарр-Сэндай + - Уорр'тайль Ренн-Сэндай + - Уорр'тайль Сииун-Сэндай + - Уорр'нер Кайтам + - Уорр'нер Хадии + - Уорр'нер Сэндай + - Уорр'нер Року-Сэндай + - Уорр'нер Ниол-Сэндай + - Уорр'нер Ринуа-Сэндай + - Уорр'нер Року-Сэндай + - Уорр'нер Кайи-Сэндай + - Уорр'нер Айдам-Сэндай + - Уорр'нер Каии-Сэндай + - Уорр'нер Шенуар-Сэндай + - Уорр'нер Целлай-Сэндай + - Уорр'нер Релл-Сэндай + - Уорр'нер Файи-Сэндай + - Уорр'нер Наирр-Сэндай + - Уорр'нер Ильн-Сэндай + - Уорр'нер Лейи-Сэндай + - Уорр'нер Кайр-Сэндай + - Уорр'нер Лиий-Сэндай + - Уорр'нер Иурр-Сэндай + - Уорр'нер Рейи-Сэндай + - Уорр'нер Нирру-Сэндай + - Уорр'нер Хинн-Сэндай + - Уорр'нер Сай-Сэндай + - Уорр'нер Неос-Сэндай + - Уорр'нер Синну-Сэндай + - Уорр'нер Саир-Сэндай + - Уорр'нер Нарри-Сэндай + - Уорр'нер Гайи-Сэндай + - Уорр'нер Нарр-Сэндай + - Уорр'нер Ренн-Сэндай + - Уорр'нер Сииун-Сэндай + - Уорр'н Кайтам + - Уорр'н Хадии + - Уорр'н Сэндай + - Уорр'н Року-Сэндай + - Уорр'н Ниол-Сэндай + - Уорр'н Ринуа-Сэндай + - Уорр'н Року-Сэндай + - Уорр'н Кайи-Сэндай + - Уорр'н Айдам-Сэндай + - Уорр'н Каии-Сэндай + - Уорр'н Шенуар-Сэндай + - Уорр'н Целлай-Сэндай + - Уорр'н Релл-Сэндай + - Уорр'н Файи-Сэндай + - Уорр'н Наирр-Сэндай + - Уорр'н Ильн-Сэндай + - Уорр'н Лейи-Сэндай + - Уорр'н Кайр-Сэндай + - Уорр'н Лиий-Сэндай + - Уорр'н Иурр-Сэндай + - Уорр'н Рейи-Сэндай + - Уорр'н Нирру-Сэндай + - Уорр'н Хинн-Сэндай + - Уорр'н Сай-Сэндай + - Уорр'н Неос-Сэндай + - Уорр'н Синну-Сэндай + - Уорр'н Саир-Сэндай + - Уорр'н Нарри-Сэндай + - Уорр'н Гайи-Сэндай + - Уорр'н Нарр-Сэндай + - Уорр'н Ренн-Сэндай + - Уорр'н Сииун-Сэндай + - Уорр'тай Кайтам + - Уорр'тай Хадии + - Уорр'тай Сэндай + - Уорр'тай Року-Сэндай + - Уорр'тай Ниол-Сэндай + - Уорр'тай Ринуа-Сэндай + - Уорр'тай Року-Сэндай + - Уорр'тай Кайи-Сэндай + - Уорр'тай Айдам-Сэндай + - Уорр'тай Каии-Сэндай + - Уорр'тай Шенуар-Сэндай + - Уорр'тай Целлай-Сэндай + - Уорр'тай Релл-Сэндай + - Уорр'тай Файи-Сэндай + - Уорр'тай Наирр-Сэндай + - Уорр'тай Ильн-Сэндай + - Уорр'тай Лейи-Сэндай + - Уорр'тай Кайр-Сэндай + - Уорр'тай Лиий-Сэндай + - Уорр'тай Иурр-Сэндай + - Уорр'тай Рейи-Сэндай + - Уорр'тай Нирру-Сэндай + - Уорр'тай Хинн-Сэндай + - Уорр'тай Сай-Сэндай + - Уорр'тай Неос-Сэндай + - Уорр'тай Синну-Сэндай + - Уорр'тай Саир-Сэндай + - Уорр'тай Нарри-Сэндай + - Уорр'тай Гайи-Сэндай + - Уорр'тай Нарр-Сэндай + - Уорр'тай Ренн-Сэндай + - Уорр'тай Сииун-Сэндай + - Уорр'ай Кайтам + - Уорр'ай Хадии + - Уорр'ай Сэндай + - Уорр'ай Року-Сэндай + - Уорр'ай Ниол-Сэндай + - Уорр'ай Ринуа-Сэндай + - Уорр'ай Року-Сэндай + - Уорр'ай Кайи-Сэндай + - Уорр'ай Айдам-Сэндай + - Уорр'ай Каии-Сэндай + - Уорр'ай Шенуар-Сэндай + - Уорр'ай Целлай-Сэндай + - Уорр'ай Релл-Сэндай + - Уорр'ай Файи-Сэндай + - Уорр'ай Наирр-Сэндай + - Уорр'ай Ильн-Сэндай + - Уорр'ай Лейи-Сэндай + - Уорр'ай Кайр-Сэндай + - Уорр'ай Лиий-Сэндай + - Уорр'ай Иурр-Сэндай + - Уорр'ай Рейи-Сэндай + - Уорр'ай Нирру-Сэндай + - Уорр'ай Хинн-Сэндай + - Уорр'ай Сай-Сэндай + - Уорр'ай Неос-Сэндай + - Уорр'ай Синну-Сэндай + - Уорр'ай Саир-Сэндай + - Уорр'ай Нарри-Сэндай + - Уорр'ай Гайи-Сэндай + - Уорр'ай Нарр-Сэндай + - Уорр'ай Ренн-Сэндай + - Уорр'ай Сииун-Сэндай + - Уорр'таи Кайтам + - Уорр'таи Хадии + - Уорр'таи Сэндай + - Уорр'таи Року-Сэндай + - Уорр'таи Ниол-Сэндай + - Уорр'таи Ринуа-Сэндай + - Уорр'таи Року-Сэндай + - Уорр'таи Кайи-Сэндай + - Уорр'таи Айдам-Сэндай + - Уорр'таи Каии-Сэндай + - Уорр'таи Шенуар-Сэндай + - Уорр'таи Целлай-Сэндай + - Уорр'таи Релл-Сэндай + - Уорр'таи Файи-Сэндай + - Уорр'таи Наирр-Сэндай + - Уорр'таи Ильн-Сэндай + - Уорр'таи Лейи-Сэндай + - Уорр'таи Кайр-Сэндай + - Уорр'таи Лиий-Сэндай + - Уорр'таи Иурр-Сэндай + - Уорр'таи Рейи-Сэндай + - Уорр'таи Нирру-Сэндай + - Уорр'таи Хинн-Сэндай + - Уорр'таи Сай-Сэндай + - Уорр'таи Неос-Сэндай + - Уорр'таи Синну-Сэндай + - Уорр'таи Саир-Сэндай + - Уорр'таи Нарри-Сэндай + - Уорр'таи Гайи-Сэндай + - Уорр'таи Нарр-Сэндай + - Уорр'таи Ренн-Сэндай + - Уорр'таи Сииун-Сэндай + - Уорр'нии Кайтам + - Уорр'нии Хадии + - Уорр'нии Сэндай + - Уорр'нии Року-Сэндай + - Уорр'нии Ниол-Сэндай + - Уорр'нии Ринуа-Сэндай + - Уорр'нии Року-Сэндай + - Уорр'нии Кайи-Сэндай + - Уорр'нии Айдам-Сэндай + - Уорр'нии Каии-Сэндай + - Уорр'нии Шенуар-Сэндай + - Уорр'нии Целлай-Сэндай + - Уорр'нии Релл-Сэндай + - Уорр'нии Файи-Сэндай + - Уорр'нии Наирр-Сэндай + - Уорр'нии Ильн-Сэндай + - Уорр'нии Лейи-Сэндай + - Уорр'нии Кайр-Сэндай + - Уорр'нии Лиий-Сэндай + - Уорр'нии Иурр-Сэндай + - Уорр'нии Рейи-Сэндай + - Уорр'нии Нирру-Сэндай + - Уорр'нии Хинн-Сэндай + - Уорр'нии Сай-Сэндай + - Уорр'нии Неос-Сэндай + - Уорр'нии Синну-Сэндай + - Уорр'нии Саир-Сэндай + - Уорр'нии Нарри-Сэндай + - Уорр'нии Гайи-Сэндай + - Уорр'нии Нарр-Сэндай + - Уорр'нии Ренн-Сэндай + - Уорр'нии Сииун-Сэндай + - Уорр'стай Кайтам + - Уорр'стай Хадии + - Уорр'стай Сэндай + - Уорр'стай Року-Сэндай + - Уорр'стай Ниол-Сэндай + - Уорр'стай Ринуа-Сэндай + - Уорр'стай Року-Сэндай + - Уорр'стай Кайи-Сэндай + - Уорр'стай Айдам-Сэндай + - Уорр'стай Каии-Сэндай + - Уорр'стай Шенуар-Сэндай + - Уорр'стай Целлай-Сэндай + - Уорр'стай Релл-Сэндай + - Уорр'стай Файи-Сэндай + - Уорр'стай Наирр-Сэндай + - Уорр'стай Ильн-Сэндай + - Уорр'стай Лейи-Сэндай + - Уорр'стай Кайр-Сэндай + - Уорр'стай Лиий-Сэндай + - Уорр'стай Иурр-Сэндай + - Уорр'стай Рейи-Сэндай + - Уорр'стай Нирру-Сэндай + - Уорр'стай Хинн-Сэндай + - Уорр'стай Сай-Сэндай + - Уорр'стай Неос-Сэндай + - Уорр'стай Синну-Сэндай + - Уорр'стай Саир-Сэндай + - Уорр'стай Нарри-Сэндай + - Уорр'стай Гайи-Сэндай + - Уорр'стай Нарр-Сэндай + - Уорр'стай Ренн-Сэндай + - Уорр'стай Сииун-Сэндай + - Уорр'нирр Кайтам + - Уорр'нирр Хадии + - Уорр'нирр Сэндай + - Уорр'нирр Року-Сэндай + - Уорр'нирр Ниол-Сэндай + - Уорр'нирр Ринуа-Сэндай + - Уорр'нирр Року-Сэндай + - Уорр'нирр Кайи-Сэндай + - Уорр'нирр Айдам-Сэндай + - Уорр'нирр Каии-Сэндай + - Уорр'нирр Шенуар-Сэндай + - Уорр'нирр Целлай-Сэндай + - Уорр'нирр Релл-Сэндай + - Уорр'нирр Файи-Сэндай + - Уорр'нирр Наирр-Сэндай + - Уорр'нирр Ильн-Сэндай + - Уорр'нирр Лейи-Сэндай + - Уорр'нирр Кайр-Сэндай + - Уорр'нирр Лиий-Сэндай + - Уорр'нирр Иурр-Сэндай + - Уорр'нирр Рейи-Сэндай + - Уорр'нирр Нирру-Сэндай + - Уорр'нирр Хинн-Сэндай + - Уорр'нирр Сай-Сэндай + - Уорр'нирр Неос-Сэндай + - Уорр'нирр Синну-Сэндай + - Уорр'нирр Саир-Сэндай + - Уорр'нирр Нарри-Сэндай + - Уорр'нирр Гайи-Сэндай + - Уорр'нирр Нарр-Сэндай + - Уорр'нирр Ренн-Сэндай + - Уорр'нирр Сииун-Сэндай + - Уорр'сай Кайтам + - Уорр'сай Хадии + - Уорр'сай Сэндай + - Уорр'сай Року-Сэндай + - Уорр'сай Ниол-Сэндай + - Уорр'сай Ринуа-Сэндай + - Уорр'сай Року-Сэндай + - Уорр'сай Кайи-Сэндай + - Уорр'сай Айдам-Сэндай + - Уорр'сай Каии-Сэндай + - Уорр'сай Шенуар-Сэндай + - Уорр'сай Целлай-Сэндай + - Уорр'сай Релл-Сэндай + - Уорр'сай Файи-Сэндай + - Уорр'сай Наирр-Сэндай + - Уорр'сай Ильн-Сэндай + - Уорр'сай Лейи-Сэндай + - Уорр'сай Кайр-Сэндай + - Уорр'сай Лиий-Сэндай + - Уорр'сай Иурр-Сэндай + - Уорр'сай Рейи-Сэндай + - Уорр'сай Нирру-Сэндай + - Уорр'сай Хинн-Сэндай + - Уорр'сай Сай-Сэндай + - Уорр'сай Неос-Сэндай + - Уорр'сай Синну-Сэндай + - Уорр'сай Саир-Сэндай + - Уорр'сай Нарри-Сэндай + - Уорр'сай Гайи-Сэндай + - Уорр'сай Нарр-Сэндай + - Уорр'сай Ренн-Сэндай + - Уорр'сай Сииун-Сэндай + - Уорр'раль Кайтам + - Уорр'раль Хадии + - Уорр'раль Сэндай + - Уорр'раль Року-Сэндай + - Уорр'раль Ниол-Сэндай + - Уорр'раль Ринуа-Сэндай + - Уорр'раль Року-Сэндай + - Уорр'раль Кайи-Сэндай + - Уорр'раль Айдам-Сэндай + - Уорр'раль Каии-Сэндай + - Уорр'раль Шенуар-Сэндай + - Уорр'раль Целлай-Сэндай + - Уорр'раль Релл-Сэндай + - Уорр'раль Файи-Сэндай + - Уорр'раль Наирр-Сэндай + - Уорр'раль Ильн-Сэндай + - Уорр'раль Лейи-Сэндай + - Уорр'раль Кайр-Сэндай + - Уорр'раль Лиий-Сэндай + - Уорр'раль Иурр-Сэндай + - Уорр'раль Рейи-Сэндай + - Уорр'раль Нирру-Сэндай + - Уорр'раль Хинн-Сэндай + - Уорр'раль Сай-Сэндай + - Уорр'раль Неос-Сэндай + - Уорр'раль Синну-Сэндай + - Уорр'раль Саир-Сэндай + - Уорр'раль Нарри-Сэндай + - Уорр'раль Гайи-Сэндай + - Уорр'раль Нарр-Сэндай + - Уорр'раль Ренн-Сэндай + - Уорр'раль Сииун-Сэндай + - Рах'хинс Кайтам + - Рах'хинс Хадии + - Рах'хинс Сэндай + - Рах'хинс Року-Сэндай + - Рах'хинс Ниол-Сэндай + - Рах'хинс Ринуа-Сэндай + - Рах'хинс Року-Сэндай + - Рах'хинс Кайи-Сэндай + - Рах'хинс Айдам-Сэндай + - Рах'хинс Каии-Сэндай + - Рах'хинс Шенуар-Сэндай + - Рах'хинс Целлай-Сэндай + - Рах'хинс Релл-Сэндай + - Рах'хинс Файи-Сэндай + - Рах'хинс Наирр-Сэндай + - Рах'хинс Ильн-Сэндай + - Рах'хинс Лейи-Сэндай + - Рах'хинс Кайр-Сэндай + - Рах'хинс Лиий-Сэндай + - Рах'хинс Иурр-Сэндай + - Рах'хинс Рейи-Сэндай + - Рах'хинс Нирру-Сэндай + - Рах'хинс Хинн-Сэндай + - Рах'хинс Сай-Сэндай + - Рах'хинс Неос-Сэндай + - Рах'хинс Синну-Сэндай + - Рах'хинс Саир-Сэндай + - Рах'хинс Нарри-Сэндай + - Рах'хинс Гайи-Сэндай + - Рах'хинс Нарр-Сэндай + - Рах'хинс Ренн-Сэндай + - Рах'хинс Сииун-Сэндай + - Рах'ерс Кайтам + - Рах'ерс Хадии + - Рах'ерс Сэндай + - Рах'ерс Року-Сэндай + - Рах'ерс Ниол-Сэндай + - Рах'ерс Ринуа-Сэндай + - Рах'ерс Року-Сэндай + - Рах'ерс Кайи-Сэндай + - Рах'ерс Айдам-Сэндай + - Рах'ерс Каии-Сэндай + - Рах'ерс Шенуар-Сэндай + - Рах'ерс Целлай-Сэндай + - Рах'ерс Релл-Сэндай + - Рах'ерс Файи-Сэндай + - Рах'ерс Наирр-Сэндай + - Рах'ерс Ильн-Сэндай + - Рах'ерс Лейи-Сэндай + - Рах'ерс Кайр-Сэндай + - Рах'ерс Лиий-Сэндай + - Рах'ерс Иурр-Сэндай + - Рах'ерс Рейи-Сэндай + - Рах'ерс Нирру-Сэндай + - Рах'ерс Хинн-Сэндай + - Рах'ерс Сай-Сэндай + - Рах'ерс Неос-Сэндай + - Рах'ерс Синну-Сэндай + - Рах'ерс Саир-Сэндай + - Рах'ерс Нарри-Сэндай + - Рах'ерс Гайи-Сэндай + - Рах'ерс Нарр-Сэндай + - Рах'ерс Ренн-Сэндай + - Рах'ерс Сииун-Сэндай + - Рах'наи Кайтам + - Рах'наи Хадии + - Рах'наи Сэндай + - Рах'наи Року-Сэндай + - Рах'наи Ниол-Сэндай + - Рах'наи Ринуа-Сэндай + - Рах'наи Року-Сэндай + - Рах'наи Кайи-Сэндай + - Рах'наи Айдам-Сэндай + - Рах'наи Каии-Сэндай + - Рах'наи Шенуар-Сэндай + - Рах'наи Целлай-Сэндай + - Рах'наи Релл-Сэндай + - Рах'наи Файи-Сэндай + - Рах'наи Наирр-Сэндай + - Рах'наи Ильн-Сэндай + - Рах'наи Лейи-Сэндай + - Рах'наи Кайр-Сэндай + - Рах'наи Лиий-Сэндай + - Рах'наи Иурр-Сэндай + - Рах'наи Рейи-Сэндай + - Рах'наи Нирру-Сэндай + - Рах'наи Хинн-Сэндай + - Рах'наи Сай-Сэндай + - Рах'наи Неос-Сэндай + - Рах'наи Синну-Сэндай + - Рах'наи Саир-Сэндай + - Рах'наи Нарри-Сэндай + - Рах'наи Гайи-Сэндай + - Рах'наи Нарр-Сэндай + - Рах'наи Ренн-Сэндай + - Рах'наи Сииун-Сэндай + - Рах'тайль Кайтам + - Рах'тайль Хадии + - Рах'тайль Сэндай + - Рах'тайль Року-Сэндай + - Рах'тайль Ниол-Сэндай + - Рах'тайль Ринуа-Сэндай + - Рах'тайль Року-Сэндай + - Рах'тайль Кайи-Сэндай + - Рах'тайль Айдам-Сэндай + - Рах'тайль Каии-Сэндай + - Рах'тайль Шенуар-Сэндай + - Рах'тайль Целлай-Сэндай + - Рах'тайль Релл-Сэндай + - Рах'тайль Файи-Сэндай + - Рах'тайль Наирр-Сэндай + - Рах'тайль Ильн-Сэндай + - Рах'тайль Лейи-Сэндай + - Рах'тайль Кайр-Сэндай + - Рах'тайль Лиий-Сэндай + - Рах'тайль Иурр-Сэндай + - Рах'тайль Рейи-Сэндай + - Рах'тайль Нирру-Сэндай + - Рах'тайль Хинн-Сэндай + - Рах'тайль Сай-Сэндай + - Рах'тайль Неос-Сэндай + - Рах'тайль Синну-Сэндай + - Рах'тайль Саир-Сэндай + - Рах'тайль Нарри-Сэндай + - Рах'тайль Гайи-Сэндай + - Рах'тайль Нарр-Сэндай + - Рах'тайль Ренн-Сэндай + - Рах'тайль Сииун-Сэндай + - Рах'нер Кайтам + - Рах'нер Хадии + - Рах'нер Сэндай + - Рах'нер Року-Сэндай + - Рах'нер Ниол-Сэндай + - Рах'нер Ринуа-Сэндай + - Рах'нер Року-Сэндай + - Рах'нер Кайи-Сэндай + - Рах'нер Айдам-Сэндай + - Рах'нер Каии-Сэндай + - Рах'нер Шенуар-Сэндай + - Рах'нер Целлай-Сэндай + - Рах'нер Релл-Сэндай + - Рах'нер Файи-Сэндай + - Рах'нер Наирр-Сэндай + - Рах'нер Ильн-Сэндай + - Рах'нер Лейи-Сэндай + - Рах'нер Кайр-Сэндай + - Рах'нер Лиий-Сэндай + - Рах'нер Иурр-Сэндай + - Рах'нер Рейи-Сэндай + - Рах'нер Нирру-Сэндай + - Рах'нер Хинн-Сэндай + - Рах'нер Сай-Сэндай + - Рах'нер Неос-Сэндай + - Рах'нер Синну-Сэндай + - Рах'нер Саир-Сэндай + - Рах'нер Нарри-Сэндай + - Рах'нер Гайи-Сэндай + - Рах'нер Нарр-Сэндай + - Рах'нер Ренн-Сэндай + - Рах'нер Сииун-Сэндай + - Рах'н Кайтам + - Рах'н Хадии + - Рах'н Сэндай + - Рах'н Року-Сэндай + - Рах'н Ниол-Сэндай + - Рах'н Ринуа-Сэндай + - Рах'н Року-Сэндай + - Рах'н Кайи-Сэндай + - Рах'н Айдам-Сэндай + - Рах'н Каии-Сэндай + - Рах'н Шенуар-Сэндай + - Рах'н Целлай-Сэндай + - Рах'н Релл-Сэндай + - Рах'н Файи-Сэндай + - Рах'н Наирр-Сэндай + - Рах'н Ильн-Сэндай + - Рах'н Лейи-Сэндай + - Рах'н Кайр-Сэндай + - Рах'н Лиий-Сэндай + - Рах'н Иурр-Сэндай + - Рах'н Рейи-Сэндай + - Рах'н Нирру-Сэндай + - Рах'н Хинн-Сэндай + - Рах'н Сай-Сэндай + - Рах'н Неос-Сэндай + - Рах'н Синну-Сэндай + - Рах'н Саир-Сэндай + - Рах'н Нарри-Сэндай + - Рах'н Гайи-Сэндай + - Рах'н Нарр-Сэндай + - Рах'н Ренн-Сэндай + - Рах'н Сииун-Сэндай + - Рах'тай Кайтам + - Рах'тай Хадии + - Рах'тай Сэндай + - Рах'тай Року-Сэндай + - Рах'тай Ниол-Сэндай + - Рах'тай Ринуа-Сэндай + - Рах'тай Року-Сэндай + - Рах'тай Кайи-Сэндай + - Рах'тай Айдам-Сэндай + - Рах'тай Каии-Сэндай + - Рах'тай Шенуар-Сэндай + - Рах'тай Целлай-Сэндай + - Рах'тай Релл-Сэндай + - Рах'тай Файи-Сэндай + - Рах'тай Наирр-Сэндай + - Рах'тай Ильн-Сэндай + - Рах'тай Лейи-Сэндай + - Рах'тай Кайр-Сэндай + - Рах'тай Лиий-Сэндай + - Рах'тай Иурр-Сэндай + - Рах'тай Рейи-Сэндай + - Рах'тай Нирру-Сэндай + - Рах'тай Хинн-Сэндай + - Рах'тай Сай-Сэндай + - Рах'тай Неос-Сэндай + - Рах'тай Синну-Сэндай + - Рах'тай Саир-Сэндай + - Рах'тай Нарри-Сэндай + - Рах'тай Гайи-Сэндай + - Рах'тай Нарр-Сэндай + - Рах'тай Ренн-Сэндай + - Рах'тай Сииун-Сэндай + - Рах'ай Кайтам + - Рах'ай Хадии + - Рах'ай Сэндай + - Рах'ай Року-Сэндай + - Рах'ай Ниол-Сэндай + - Рах'ай Ринуа-Сэндай + - Рах'ай Року-Сэндай + - Рах'ай Кайи-Сэндай + - Рах'ай Айдам-Сэндай + - Рах'ай Каии-Сэндай + - Рах'ай Шенуар-Сэндай + - Рах'ай Целлай-Сэндай + - Рах'ай Релл-Сэндай + - Рах'ай Файи-Сэндай + - Рах'ай Наирр-Сэндай + - Рах'ай Ильн-Сэндай + - Рах'ай Лейи-Сэндай + - Рах'ай Кайр-Сэндай + - Рах'ай Лиий-Сэндай + - Рах'ай Иурр-Сэндай + - Рах'ай Рейи-Сэндай + - Рах'ай Нирру-Сэндай + - Рах'ай Хинн-Сэндай + - Рах'ай Сай-Сэндай + - Рах'ай Неос-Сэндай + - Рах'ай Синну-Сэндай + - Рах'ай Саир-Сэндай + - Рах'ай Нарри-Сэндай + - Рах'ай Гайи-Сэндай + - Рах'ай Нарр-Сэндай + - Рах'ай Ренн-Сэндай + - Рах'ай Сииун-Сэндай + - Рах'таи Кайтам + - Рах'таи Хадии + - Рах'таи Сэндай + - Рах'таи Року-Сэндай + - Рах'таи Ниол-Сэндай + - Рах'таи Ринуа-Сэндай + - Рах'таи Року-Сэндай + - Рах'таи Кайи-Сэндай + - Рах'таи Айдам-Сэндай + - Рах'таи Каии-Сэндай + - Рах'таи Шенуар-Сэндай + - Рах'таи Целлай-Сэндай + - Рах'таи Релл-Сэндай + - Рах'таи Файи-Сэндай + - Рах'таи Наирр-Сэндай + - Рах'таи Ильн-Сэндай + - Рах'таи Лейи-Сэндай + - Рах'таи Кайр-Сэндай + - Рах'таи Лиий-Сэндай + - Рах'таи Иурр-Сэндай + - Рах'таи Рейи-Сэндай + - Рах'таи Нирру-Сэндай + - Рах'таи Хинн-Сэндай + - Рах'таи Сай-Сэндай + - Рах'таи Неос-Сэндай + - Рах'таи Синну-Сэндай + - Рах'таи Саир-Сэндай + - Рах'таи Нарри-Сэндай + - Рах'таи Гайи-Сэндай + - Рах'таи Нарр-Сэндай + - Рах'таи Ренн-Сэндай + - Рах'таи Сииун-Сэндай + - Рах'нии Кайтам + - Рах'нии Хадии + - Рах'нии Сэндай + - Рах'нии Року-Сэндай + - Рах'нии Ниол-Сэндай + - Рах'нии Ринуа-Сэндай + - Рах'нии Року-Сэндай + - Рах'нии Кайи-Сэндай + - Рах'нии Айдам-Сэндай + - Рах'нии Каии-Сэндай + - Рах'нии Шенуар-Сэндай + - Рах'нии Целлай-Сэндай + - Рах'нии Релл-Сэндай + - Рах'нии Файи-Сэндай + - Рах'нии Наирр-Сэндай + - Рах'нии Ильн-Сэндай + - Рах'нии Лейи-Сэндай + - Рах'нии Кайр-Сэндай + - Рах'нии Лиий-Сэндай + - Рах'нии Иурр-Сэндай + - Рах'нии Рейи-Сэндай + - Рах'нии Нирру-Сэндай + - Рах'нии Хинн-Сэндай + - Рах'нии Сай-Сэндай + - Рах'нии Неос-Сэндай + - Рах'нии Синну-Сэндай + - Рах'нии Саир-Сэндай + - Рах'нии Нарри-Сэндай + - Рах'нии Гайи-Сэндай + - Рах'нии Нарр-Сэндай + - Рах'нии Ренн-Сэндай + - Рах'нии Сииун-Сэндай + - Рах'стай Кайтам + - Рах'стай Хадии + - Рах'стай Сэндай + - Рах'стай Року-Сэндай + - Рах'стай Ниол-Сэндай + - Рах'стай Ринуа-Сэндай + - Рах'стай Року-Сэндай + - Рах'стай Кайи-Сэндай + - Рах'стай Айдам-Сэндай + - Рах'стай Каии-Сэндай + - Рах'стай Шенуар-Сэндай + - Рах'стай Целлай-Сэндай + - Рах'стай Релл-Сэндай + - Рах'стай Файи-Сэндай + - Рах'стай Наирр-Сэндай + - Рах'стай Ильн-Сэндай + - Рах'стай Лейи-Сэндай + - Рах'стай Кайр-Сэндай + - Рах'стай Лиий-Сэндай + - Рах'стай Иурр-Сэндай + - Рах'стай Рейи-Сэндай + - Рах'стай Нирру-Сэндай + - Рах'стай Хинн-Сэндай + - Рах'стай Сай-Сэндай + - Рах'стай Неос-Сэндай + - Рах'стай Синну-Сэндай + - Рах'стай Саир-Сэндай + - Рах'стай Нарри-Сэндай + - Рах'стай Гайи-Сэндай + - Рах'стай Нарр-Сэндай + - Рах'стай Ренн-Сэндай + - Рах'стай Сииун-Сэндай + - Рах'нирр Кайтам + - Рах'нирр Хадии + - Рах'нирр Сэндай + - Рах'нирр Року-Сэндай + - Рах'нирр Ниол-Сэндай + - Рах'нирр Ринуа-Сэндай + - Рах'нирр Року-Сэндай + - Рах'нирр Кайи-Сэндай + - Рах'нирр Айдам-Сэндай + - Рах'нирр Каии-Сэндай + - Рах'нирр Шенуар-Сэндай + - Рах'нирр Целлай-Сэндай + - Рах'нирр Релл-Сэндай + - Рах'нирр Файи-Сэндай + - Рах'нирр Наирр-Сэндай + - Рах'нирр Ильн-Сэндай + - Рах'нирр Лейи-Сэндай + - Рах'нирр Кайр-Сэндай + - Рах'нирр Лиий-Сэндай + - Рах'нирр Иурр-Сэндай + - Рах'нирр Рейи-Сэндай + - Рах'нирр Нирру-Сэндай + - Рах'нирр Хинн-Сэндай + - Рах'нирр Сай-Сэндай + - Рах'нирр Неос-Сэндай + - Рах'нирр Синну-Сэндай + - Рах'нирр Саир-Сэндай + - Рах'нирр Нарри-Сэндай + - Рах'нирр Гайи-Сэндай + - Рах'нирр Нарр-Сэндай + - Рах'нирр Ренн-Сэндай + - Рах'нирр Сииун-Сэндай + - Рах'сай Кайтам + - Рах'сай Хадии + - Рах'сай Сэндай + - Рах'сай Року-Сэндай + - Рах'сай Ниол-Сэндай + - Рах'сай Ринуа-Сэндай + - Рах'сай Року-Сэндай + - Рах'сай Кайи-Сэндай + - Рах'сай Айдам-Сэндай + - Рах'сай Каии-Сэндай + - Рах'сай Шенуар-Сэндай + - Рах'сай Целлай-Сэндай + - Рах'сай Релл-Сэндай + - Рах'сай Файи-Сэндай + - Рах'сай Наирр-Сэндай + - Рах'сай Ильн-Сэндай + - Рах'сай Лейи-Сэндай + - Рах'сай Кайр-Сэндай + - Рах'сай Лиий-Сэндай + - Рах'сай Иурр-Сэндай + - Рах'сай Рейи-Сэндай + - Рах'сай Нирру-Сэндай + - Рах'сай Хинн-Сэндай + - Рах'сай Сай-Сэндай + - Рах'сай Неос-Сэндай + - Рах'сай Синну-Сэндай + - Рах'сай Саир-Сэндай + - Рах'сай Нарри-Сэндай + - Рах'сай Гайи-Сэндай + - Рах'сай Нарр-Сэндай + - Рах'сай Ренн-Сэндай + - Рах'сай Сииун-Сэндай + - Рах'раль Кайтам + - Рах'раль Хадии + - Рах'раль Сэндай + - Рах'раль Року-Сэндай + - Рах'раль Ниол-Сэндай + - Рах'раль Ринуа-Сэндай + - Рах'раль Року-Сэндай + - Рах'раль Кайи-Сэндай + - Рах'раль Айдам-Сэндай + - Рах'раль Каии-Сэндай + - Рах'раль Шенуар-Сэндай + - Рах'раль Целлай-Сэндай + - Рах'раль Релл-Сэндай + - Рах'раль Файи-Сэндай + - Рах'раль Наирр-Сэндай + - Рах'раль Ильн-Сэндай + - Рах'раль Лейи-Сэндай + - Рах'раль Кайр-Сэндай + - Рах'раль Лиий-Сэндай + - Рах'раль Иурр-Сэндай + - Рах'раль Рейи-Сэндай + - Рах'раль Нирру-Сэндай + - Рах'раль Хинн-Сэндай + - Рах'раль Сай-Сэндай + - Рах'раль Неос-Сэндай + - Рах'раль Синну-Сэндай + - Рах'раль Саир-Сэндай + - Рах'раль Нарри-Сэндай + - Рах'раль Гайи-Сэндай + - Рах'раль Нарр-Сэндай + - Рах'раль Ренн-Сэндай + - Рах'раль Сииун-Сэндай + - Риас'хинс Кайтам + - Риас'хинс Хадии + - Риас'хинс Сэндай + - Риас'хинс Року-Сэндай + - Риас'хинс Ниол-Сэндай + - Риас'хинс Ринуа-Сэндай + - Риас'хинс Року-Сэндай + - Риас'хинс Кайи-Сэндай + - Риас'хинс Айдам-Сэндай + - Риас'хинс Каии-Сэндай + - Риас'хинс Шенуар-Сэндай + - Риас'хинс Целлай-Сэндай + - Риас'хинс Релл-Сэндай + - Риас'хинс Файи-Сэндай + - Риас'хинс Наирр-Сэндай + - Риас'хинс Ильн-Сэндай + - Риас'хинс Лейи-Сэндай + - Риас'хинс Кайр-Сэндай + - Риас'хинс Лиий-Сэндай + - Риас'хинс Иурр-Сэндай + - Риас'хинс Рейи-Сэндай + - Риас'хинс Нирру-Сэндай + - Риас'хинс Хинн-Сэндай + - Риас'хинс Сай-Сэндай + - Риас'хинс Неос-Сэндай + - Риас'хинс Синну-Сэндай + - Риас'хинс Саир-Сэндай + - Риас'хинс Нарри-Сэндай + - Риас'хинс Гайи-Сэндай + - Риас'хинс Нарр-Сэндай + - Риас'хинс Ренн-Сэндай + - Риас'хинс Сииун-Сэндай + - Риас'ерс Кайтам + - Риас'ерс Хадии + - Риас'ерс Сэндай + - Риас'ерс Року-Сэндай + - Риас'ерс Ниол-Сэндай + - Риас'ерс Ринуа-Сэндай + - Риас'ерс Року-Сэндай + - Риас'ерс Кайи-Сэндай + - Риас'ерс Айдам-Сэндай + - Риас'ерс Каии-Сэндай + - Риас'ерс Шенуар-Сэндай + - Риас'ерс Целлай-Сэндай + - Риас'ерс Релл-Сэндай + - Риас'ерс Файи-Сэндай + - Риас'ерс Наирр-Сэндай + - Риас'ерс Ильн-Сэндай + - Риас'ерс Лейи-Сэндай + - Риас'ерс Кайр-Сэндай + - Риас'ерс Лиий-Сэндай + - Риас'ерс Иурр-Сэндай + - Риас'ерс Рейи-Сэндай + - Риас'ерс Нирру-Сэндай + - Риас'ерс Хинн-Сэндай + - Риас'ерс Сай-Сэндай + - Риас'ерс Неос-Сэндай + - Риас'ерс Синну-Сэндай + - Риас'ерс Саир-Сэндай + - Риас'ерс Нарри-Сэндай + - Риас'ерс Гайи-Сэндай + - Риас'ерс Нарр-Сэндай + - Риас'ерс Ренн-Сэндай + - Риас'ерс Сииун-Сэндай + - Риас'наи Кайтам + - Риас'наи Хадии + - Риас'наи Сэндай + - Риас'наи Року-Сэндай + - Риас'наи Ниол-Сэндай + - Риас'наи Ринуа-Сэндай + - Риас'наи Року-Сэндай + - Риас'наи Кайи-Сэндай + - Риас'наи Айдам-Сэндай + - Риас'наи Каии-Сэндай + - Риас'наи Шенуар-Сэндай + - Риас'наи Целлай-Сэндай + - Риас'наи Релл-Сэндай + - Риас'наи Файи-Сэндай + - Риас'наи Наирр-Сэндай + - Риас'наи Ильн-Сэндай + - Риас'наи Лейи-Сэндай + - Риас'наи Кайр-Сэндай + - Риас'наи Лиий-Сэндай + - Риас'наи Иурр-Сэндай + - Риас'наи Рейи-Сэндай + - Риас'наи Нирру-Сэндай + - Риас'наи Хинн-Сэндай + - Риас'наи Сай-Сэндай + - Риас'наи Неос-Сэндай + - Риас'наи Синну-Сэндай + - Риас'наи Саир-Сэндай + - Риас'наи Нарри-Сэндай + - Риас'наи Гайи-Сэндай + - Риас'наи Нарр-Сэндай + - Риас'наи Ренн-Сэндай + - Риас'наи Сииун-Сэндай + - Риас'тайль Кайтам + - Риас'тайль Хадии + - Риас'тайль Сэндай + - Риас'тайль Року-Сэндай + - Риас'тайль Ниол-Сэндай + - Риас'тайль Ринуа-Сэндай + - Риас'тайль Року-Сэндай + - Риас'тайль Кайи-Сэндай + - Риас'тайль Айдам-Сэндай + - Риас'тайль Каии-Сэндай + - Риас'тайль Шенуар-Сэндай + - Риас'тайль Целлай-Сэндай + - Риас'тайль Релл-Сэндай + - Риас'тайль Файи-Сэндай + - Риас'тайль Наирр-Сэндай + - Риас'тайль Ильн-Сэндай + - Риас'тайль Лейи-Сэндай + - Риас'тайль Кайр-Сэндай + - Риас'тайль Лиий-Сэндай + - Риас'тайль Иурр-Сэндай + - Риас'тайль Рейи-Сэндай + - Риас'тайль Нирру-Сэндай + - Риас'тайль Хинн-Сэндай + - Риас'тайль Сай-Сэндай + - Риас'тайль Неос-Сэндай + - Риас'тайль Синну-Сэндай + - Риас'тайль Саир-Сэндай + - Риас'тайль Нарри-Сэндай + - Риас'тайль Гайи-Сэндай + - Риас'тайль Нарр-Сэндай + - Риас'тайль Ренн-Сэндай + - Риас'тайль Сииун-Сэндай + - Риас'нер Кайтам + - Риас'нер Хадии + - Риас'нер Сэндай + - Риас'нер Року-Сэндай + - Риас'нер Ниол-Сэндай + - Риас'нер Ринуа-Сэндай + - Риас'нер Року-Сэндай + - Риас'нер Кайи-Сэндай + - Риас'нер Айдам-Сэндай + - Риас'нер Каии-Сэндай + - Риас'нер Шенуар-Сэндай + - Риас'нер Целлай-Сэндай + - Риас'нер Релл-Сэндай + - Риас'нер Файи-Сэндай + - Риас'нер Наирр-Сэндай + - Риас'нер Ильн-Сэндай + - Риас'нер Лейи-Сэндай + - Риас'нер Кайр-Сэндай + - Риас'нер Лиий-Сэндай + - Риас'нер Иурр-Сэндай + - Риас'нер Рейи-Сэндай + - Риас'нер Нирру-Сэндай + - Риас'нер Хинн-Сэндай + - Риас'нер Сай-Сэндай + - Риас'нер Неос-Сэндай + - Риас'нер Синну-Сэндай + - Риас'нер Саир-Сэндай + - Риас'нер Нарри-Сэндай + - Риас'нер Гайи-Сэндай + - Риас'нер Нарр-Сэндай + - Риас'нер Ренн-Сэндай + - Риас'нер Сииун-Сэндай + - Риас'н Кайтам + - Риас'н Хадии + - Риас'н Сэндай + - Риас'н Року-Сэндай + - Риас'н Ниол-Сэндай + - Риас'н Ринуа-Сэндай + - Риас'н Року-Сэндай + - Риас'н Кайи-Сэндай + - Риас'н Айдам-Сэндай + - Риас'н Каии-Сэндай + - Риас'н Шенуар-Сэндай + - Риас'н Целлай-Сэндай + - Риас'н Релл-Сэндай + - Риас'н Файи-Сэндай + - Риас'н Наирр-Сэндай + - Риас'н Ильн-Сэндай + - Риас'н Лейи-Сэндай + - Риас'н Кайр-Сэндай + - Риас'н Лиий-Сэндай + - Риас'н Иурр-Сэндай + - Риас'н Рейи-Сэндай + - Риас'н Нирру-Сэндай + - Риас'н Хинн-Сэндай + - Риас'н Сай-Сэндай + - Риас'н Неос-Сэндай + - Риас'н Синну-Сэндай + - Риас'н Саир-Сэндай + - Риас'н Нарри-Сэндай + - Риас'н Гайи-Сэндай + - Риас'н Нарр-Сэндай + - Риас'н Ренн-Сэндай + - Риас'н Сииун-Сэндай + - Риас'тай Кайтам + - Риас'тай Хадии + - Риас'тай Сэндай + - Риас'тай Року-Сэндай + - Риас'тай Ниол-Сэндай + - Риас'тай Ринуа-Сэндай + - Риас'тай Року-Сэндай + - Риас'тай Кайи-Сэндай + - Риас'тай Айдам-Сэндай + - Риас'тай Каии-Сэндай + - Риас'тай Шенуар-Сэндай + - Риас'тай Целлай-Сэндай + - Риас'тай Релл-Сэндай + - Риас'тай Файи-Сэндай + - Риас'тай Наирр-Сэндай + - Риас'тай Ильн-Сэндай + - Риас'тай Лейи-Сэндай + - Риас'тай Кайр-Сэндай + - Риас'тай Лиий-Сэндай + - Риас'тай Иурр-Сэндай + - Риас'тай Рейи-Сэндай + - Риас'тай Нирру-Сэндай + - Риас'тай Хинн-Сэндай + - Риас'тай Сай-Сэндай + - Риас'тай Неос-Сэндай + - Риас'тай Синну-Сэндай + - Риас'тай Саир-Сэндай + - Риас'тай Нарри-Сэндай + - Риас'тай Гайи-Сэндай + - Риас'тай Нарр-Сэндай + - Риас'тай Ренн-Сэндай + - Риас'тай Сииун-Сэндай + - Риас'ай Кайтам + - Риас'ай Хадии + - Риас'ай Сэндай + - Риас'ай Року-Сэндай + - Риас'ай Ниол-Сэндай + - Риас'ай Ринуа-Сэндай + - Риас'ай Року-Сэндай + - Риас'ай Кайи-Сэндай + - Риас'ай Айдам-Сэндай + - Риас'ай Каии-Сэндай + - Риас'ай Шенуар-Сэндай + - Риас'ай Целлай-Сэндай + - Риас'ай Релл-Сэндай + - Риас'ай Файи-Сэндай + - Риас'ай Наирр-Сэндай + - Риас'ай Ильн-Сэндай + - Риас'ай Лейи-Сэндай + - Риас'ай Кайр-Сэндай + - Риас'ай Лиий-Сэндай + - Риас'ай Иурр-Сэндай + - Риас'ай Рейи-Сэндай + - Риас'ай Нирру-Сэндай + - Риас'ай Хинн-Сэндай + - Риас'ай Сай-Сэндай + - Риас'ай Неос-Сэндай + - Риас'ай Синну-Сэндай + - Риас'ай Саир-Сэндай + - Риас'ай Нарри-Сэндай + - Риас'ай Гайи-Сэндай + - Риас'ай Нарр-Сэндай + - Риас'ай Ренн-Сэндай + - Риас'ай Сииун-Сэндай + - Риас'таи Кайтам + - Риас'таи Хадии + - Риас'таи Сэндай + - Риас'таи Року-Сэндай + - Риас'таи Ниол-Сэндай + - Риас'таи Ринуа-Сэндай + - Риас'таи Року-Сэндай + - Риас'таи Кайи-Сэндай + - Риас'таи Айдам-Сэндай + - Риас'таи Каии-Сэндай + - Риас'таи Шенуар-Сэндай + - Риас'таи Целлай-Сэндай + - Риас'таи Релл-Сэндай + - Риас'таи Файи-Сэндай + - Риас'таи Наирр-Сэндай + - Риас'таи Ильн-Сэндай + - Риас'таи Лейи-Сэндай + - Риас'таи Кайр-Сэндай + - Риас'таи Лиий-Сэндай + - Риас'таи Иурр-Сэндай + - Риас'таи Рейи-Сэндай + - Риас'таи Нирру-Сэндай + - Риас'таи Хинн-Сэндай + - Риас'таи Сай-Сэндай + - Риас'таи Неос-Сэндай + - Риас'таи Синну-Сэндай + - Риас'таи Саир-Сэндай + - Риас'таи Нарри-Сэндай + - Риас'таи Гайи-Сэндай + - Риас'таи Нарр-Сэндай + - Риас'таи Ренн-Сэндай + - Риас'таи Сииун-Сэндай + - Риас'нии Кайтам + - Риас'нии Хадии + - Риас'нии Сэндай + - Риас'нии Року-Сэндай + - Риас'нии Ниол-Сэндай + - Риас'нии Ринуа-Сэндай + - Риас'нии Року-Сэндай + - Риас'нии Кайи-Сэндай + - Риас'нии Айдам-Сэндай + - Риас'нии Каии-Сэндай + - Риас'нии Шенуар-Сэндай + - Риас'нии Целлай-Сэндай + - Риас'нии Релл-Сэндай + - Риас'нии Файи-Сэндай + - Риас'нии Наирр-Сэндай + - Риас'нии Ильн-Сэндай + - Риас'нии Лейи-Сэндай + - Риас'нии Кайр-Сэндай + - Риас'нии Лиий-Сэндай + - Риас'нии Иурр-Сэндай + - Риас'нии Рейи-Сэндай + - Риас'нии Нирру-Сэндай + - Риас'нии Хинн-Сэндай + - Риас'нии Сай-Сэндай + - Риас'нии Неос-Сэндай + - Риас'нии Синну-Сэндай + - Риас'нии Саир-Сэндай + - Риас'нии Нарри-Сэндай + - Риас'нии Гайи-Сэндай + - Риас'нии Нарр-Сэндай + - Риас'нии Ренн-Сэндай + - Риас'нии Сииун-Сэндай + - Риас'стай Кайтам + - Риас'стай Хадии + - Риас'стай Сэндай + - Риас'стай Року-Сэндай + - Риас'стай Ниол-Сэндай + - Риас'стай Ринуа-Сэндай + - Риас'стай Року-Сэндай + - Риас'стай Кайи-Сэндай + - Риас'стай Айдам-Сэндай + - Риас'стай Каии-Сэндай + - Риас'стай Шенуар-Сэндай + - Риас'стай Целлай-Сэндай + - Риас'стай Релл-Сэндай + - Риас'стай Файи-Сэндай + - Риас'стай Наирр-Сэндай + - Риас'стай Ильн-Сэндай + - Риас'стай Лейи-Сэндай + - Риас'стай Кайр-Сэндай + - Риас'стай Лиий-Сэндай + - Риас'стай Иурр-Сэндай + - Риас'стай Рейи-Сэндай + - Риас'стай Нирру-Сэндай + - Риас'стай Хинн-Сэндай + - Риас'стай Сай-Сэндай + - Риас'стай Неос-Сэндай + - Риас'стай Синну-Сэндай + - Риас'стай Саир-Сэндай + - Риас'стай Нарри-Сэндай + - Риас'стай Гайи-Сэндай + - Риас'стай Нарр-Сэндай + - Риас'стай Ренн-Сэндай + - Риас'стай Сииун-Сэндай + - Риас'нирр Кайтам + - Риас'нирр Хадии + - Риас'нирр Сэндай + - Риас'нирр Року-Сэндай + - Риас'нирр Ниол-Сэндай + - Риас'нирр Ринуа-Сэндай + - Риас'нирр Року-Сэндай + - Риас'нирр Кайи-Сэндай + - Риас'нирр Айдам-Сэндай + - Риас'нирр Каии-Сэндай + - Риас'нирр Шенуар-Сэндай + - Риас'нирр Целлай-Сэндай + - Риас'нирр Релл-Сэндай + - Риас'нирр Файи-Сэндай + - Риас'нирр Наирр-Сэндай + - Риас'нирр Ильн-Сэндай + - Риас'нирр Лейи-Сэндай + - Риас'нирр Кайр-Сэндай + - Риас'нирр Лиий-Сэндай + - Риас'нирр Иурр-Сэндай + - Риас'нирр Рейи-Сэндай + - Риас'нирр Нирру-Сэндай + - Риас'нирр Хинн-Сэндай + - Риас'нирр Сай-Сэндай + - Риас'нирр Неос-Сэндай + - Риас'нирр Синну-Сэндай + - Риас'нирр Саир-Сэндай + - Риас'нирр Нарри-Сэндай + - Риас'нирр Гайи-Сэндай + - Риас'нирр Нарр-Сэндай + - Риас'нирр Ренн-Сэндай + - Риас'нирр Сииун-Сэндай + - Риас'сай Кайтам + - Риас'сай Хадии + - Риас'сай Сэндай + - Риас'сай Року-Сэндай + - Риас'сай Ниол-Сэндай + - Риас'сай Ринуа-Сэндай + - Риас'сай Року-Сэндай + - Риас'сай Кайи-Сэндай + - Риас'сай Айдам-Сэндай + - Риас'сай Каии-Сэндай + - Риас'сай Шенуар-Сэндай + - Риас'сай Целлай-Сэндай + - Риас'сай Релл-Сэндай + - Риас'сай Файи-Сэндай + - Риас'сай Наирр-Сэндай + - Риас'сай Ильн-Сэндай + - Риас'сай Лейи-Сэндай + - Риас'сай Кайр-Сэндай + - Риас'сай Лиий-Сэндай + - Риас'сай Иурр-Сэндай + - Риас'сай Рейи-Сэндай + - Риас'сай Нирру-Сэндай + - Риас'сай Хинн-Сэндай + - Риас'сай Сай-Сэндай + - Риас'сай Неос-Сэндай + - Риас'сай Синну-Сэндай + - Риас'сай Саир-Сэндай + - Риас'сай Нарри-Сэндай + - Риас'сай Гайи-Сэндай + - Риас'сай Нарр-Сэндай + - Риас'сай Ренн-Сэндай + - Риас'сай Сииун-Сэндай + - Риас'раль Кайтам + - Риас'раль Хадии + - Риас'раль Сэндай + - Риас'раль Року-Сэндай + - Риас'раль Ниол-Сэндай + - Риас'раль Ринуа-Сэндай + - Риас'раль Року-Сэндай + - Риас'раль Кайи-Сэндай + - Риас'раль Айдам-Сэндай + - Риас'раль Каии-Сэндай + - Риас'раль Шенуар-Сэндай + - Риас'раль Целлай-Сэндай + - Риас'раль Релл-Сэндай + - Риас'раль Файи-Сэндай + - Риас'раль Наирр-Сэндай + - Риас'раль Ильн-Сэндай + - Риас'раль Лейи-Сэндай + - Риас'раль Кайр-Сэндай + - Риас'раль Лиий-Сэндай + - Риас'раль Иурр-Сэндай + - Риас'раль Рейи-Сэндай + - Риас'раль Нирру-Сэндай + - Риас'раль Хинн-Сэндай + - Риас'раль Сай-Сэндай + - Риас'раль Неос-Сэндай + - Риас'раль Синну-Сэндай + - Риас'раль Саир-Сэндай + - Риас'раль Нарри-Сэндай + - Риас'раль Гайи-Сэндай + - Риас'раль Нарр-Сэндай + - Риас'раль Ренн-Сэндай + - Риас'раль Сииун-Сэндай + - Тасер'хинс Кайтам + - Тасер'хинс Хадии + - Тасер'хинс Сэндай + - Тасер'хинс Року-Сэндай + - Тасер'хинс Ниол-Сэндай + - Тасер'хинс Ринуа-Сэндай + - Тасер'хинс Року-Сэндай + - Тасер'хинс Кайи-Сэндай + - Тасер'хинс Айдам-Сэндай + - Тасер'хинс Каии-Сэндай + - Тасер'хинс Шенуар-Сэндай + - Тасер'хинс Целлай-Сэндай + - Тасер'хинс Релл-Сэндай + - Тасер'хинс Файи-Сэндай + - Тасер'хинс Наирр-Сэндай + - Тасер'хинс Ильн-Сэндай + - Тасер'хинс Лейи-Сэндай + - Тасер'хинс Кайр-Сэндай + - Тасер'хинс Лиий-Сэндай + - Тасер'хинс Иурр-Сэндай + - Тасер'хинс Рейи-Сэндай + - Тасер'хинс Нирру-Сэндай + - Тасер'хинс Хинн-Сэндай + - Тасер'хинс Сай-Сэндай + - Тасер'хинс Неос-Сэндай + - Тасер'хинс Синну-Сэндай + - Тасер'хинс Саир-Сэндай + - Тасер'хинс Нарри-Сэндай + - Тасер'хинс Гайи-Сэндай + - Тасер'хинс Нарр-Сэндай + - Тасер'хинс Ренн-Сэндай + - Тасер'хинс Сииун-Сэндай + - Тасер'ерс Кайтам + - Тасер'ерс Хадии + - Тасер'ерс Сэндай + - Тасер'ерс Року-Сэндай + - Тасер'ерс Ниол-Сэндай + - Тасер'ерс Ринуа-Сэндай + - Тасер'ерс Року-Сэндай + - Тасер'ерс Кайи-Сэндай + - Тасер'ерс Айдам-Сэндай + - Тасер'ерс Каии-Сэндай + - Тасер'ерс Шенуар-Сэндай + - Тасер'ерс Целлай-Сэндай + - Тасер'ерс Релл-Сэндай + - Тасер'ерс Файи-Сэндай + - Тасер'ерс Наирр-Сэндай + - Тасер'ерс Ильн-Сэндай + - Тасер'ерс Лейи-Сэндай + - Тасер'ерс Кайр-Сэндай + - Тасер'ерс Лиий-Сэндай + - Тасер'ерс Иурр-Сэндай + - Тасер'ерс Рейи-Сэндай + - Тасер'ерс Нирру-Сэндай + - Тасер'ерс Хинн-Сэндай + - Тасер'ерс Сай-Сэндай + - Тасер'ерс Неос-Сэндай + - Тасер'ерс Синну-Сэндай + - Тасер'ерс Саир-Сэндай + - Тасер'ерс Нарри-Сэндай + - Тасер'ерс Гайи-Сэндай + - Тасер'ерс Нарр-Сэндай + - Тасер'ерс Ренн-Сэндай + - Тасер'ерс Сииун-Сэндай + - Тасер'наи Кайтам + - Тасер'наи Хадии + - Тасер'наи Сэндай + - Тасер'наи Року-Сэндай + - Тасер'наи Ниол-Сэндай + - Тасер'наи Ринуа-Сэндай + - Тасер'наи Року-Сэндай + - Тасер'наи Кайи-Сэндай + - Тасер'наи Айдам-Сэндай + - Тасер'наи Каии-Сэндай + - Тасер'наи Шенуар-Сэндай + - Тасер'наи Целлай-Сэндай + - Тасер'наи Релл-Сэндай + - Тасер'наи Файи-Сэндай + - Тасер'наи Наирр-Сэндай + - Тасер'наи Ильн-Сэндай + - Тасер'наи Лейи-Сэндай + - Тасер'наи Кайр-Сэндай + - Тасер'наи Лиий-Сэндай + - Тасер'наи Иурр-Сэндай + - Тасер'наи Рейи-Сэндай + - Тасер'наи Нирру-Сэндай + - Тасер'наи Хинн-Сэндай + - Тасер'наи Сай-Сэндай + - Тасер'наи Неос-Сэндай + - Тасер'наи Синну-Сэндай + - Тасер'наи Саир-Сэндай + - Тасер'наи Нарри-Сэндай + - Тасер'наи Гайи-Сэндай + - Тасер'наи Нарр-Сэндай + - Тасер'наи Ренн-Сэндай + - Тасер'наи Сииун-Сэндай + - Тасер'тайль Кайтам + - Тасер'тайль Хадии + - Тасер'тайль Сэндай + - Тасер'тайль Року-Сэндай + - Тасер'тайль Ниол-Сэндай + - Тасер'тайль Ринуа-Сэндай + - Тасер'тайль Року-Сэндай + - Тасер'тайль Кайи-Сэндай + - Тасер'тайль Айдам-Сэндай + - Тасер'тайль Каии-Сэндай + - Тасер'тайль Шенуар-Сэндай + - Тасер'тайль Целлай-Сэндай + - Тасер'тайль Релл-Сэндай + - Тасер'тайль Файи-Сэндай + - Тасер'тайль Наирр-Сэндай + - Тасер'тайль Ильн-Сэндай + - Тасер'тайль Лейи-Сэндай + - Тасер'тайль Кайр-Сэндай + - Тасер'тайль Лиий-Сэндай + - Тасер'тайль Иурр-Сэндай + - Тасер'тайль Рейи-Сэндай + - Тасер'тайль Нирру-Сэндай + - Тасер'тайль Хинн-Сэндай + - Тасер'тайль Сай-Сэндай + - Тасер'тайль Неос-Сэндай + - Тасер'тайль Синну-Сэндай + - Тасер'тайль Саир-Сэндай + - Тасер'тайль Нарри-Сэндай + - Тасер'тайль Гайи-Сэндай + - Тасер'тайль Нарр-Сэндай + - Тасер'тайль Ренн-Сэндай + - Тасер'тайль Сииун-Сэндай + - Тасер'нер Кайтам + - Тасер'нер Хадии + - Тасер'нер Сэндай + - Тасер'нер Року-Сэндай + - Тасер'нер Ниол-Сэндай + - Тасер'нер Ринуа-Сэндай + - Тасер'нер Року-Сэндай + - Тасер'нер Кайи-Сэндай + - Тасер'нер Айдам-Сэндай + - Тасер'нер Каии-Сэндай + - Тасер'нер Шенуар-Сэндай + - Тасер'нер Целлай-Сэндай + - Тасер'нер Релл-Сэндай + - Тасер'нер Файи-Сэндай + - Тасер'нер Наирр-Сэндай + - Тасер'нер Ильн-Сэндай + - Тасер'нер Лейи-Сэндай + - Тасер'нер Кайр-Сэндай + - Тасер'нер Лиий-Сэндай + - Тасер'нер Иурр-Сэндай + - Тасер'нер Рейи-Сэндай + - Тасер'нер Нирру-Сэндай + - Тасер'нер Хинн-Сэндай + - Тасер'нер Сай-Сэндай + - Тасер'нер Неос-Сэндай + - Тасер'нер Синну-Сэндай + - Тасер'нер Саир-Сэндай + - Тасер'нер Нарри-Сэндай + - Тасер'нер Гайи-Сэндай + - Тасер'нер Нарр-Сэндай + - Тасер'нер Ренн-Сэндай + - Тасер'нер Сииун-Сэндай + - Тасер'н Кайтам + - Тасер'н Хадии + - Тасер'н Сэндай + - Тасер'н Року-Сэндай + - Тасер'н Ниол-Сэндай + - Тасер'н Ринуа-Сэндай + - Тасер'н Року-Сэндай + - Тасер'н Кайи-Сэндай + - Тасер'н Айдам-Сэндай + - Тасер'н Каии-Сэндай + - Тасер'н Шенуар-Сэндай + - Тасер'н Целлай-Сэндай + - Тасер'н Релл-Сэндай + - Тасер'н Файи-Сэндай + - Тасер'н Наирр-Сэндай + - Тасер'н Ильн-Сэндай + - Тасер'н Лейи-Сэндай + - Тасер'н Кайр-Сэндай + - Тасер'н Лиий-Сэндай + - Тасер'н Иурр-Сэндай + - Тасер'н Рейи-Сэндай + - Тасер'н Нирру-Сэндай + - Тасер'н Хинн-Сэндай + - Тасер'н Сай-Сэндай + - Тасер'н Неос-Сэндай + - Тасер'н Синну-Сэндай + - Тасер'н Саир-Сэндай + - Тасер'н Нарри-Сэндай + - Тасер'н Гайи-Сэндай + - Тасер'н Нарр-Сэндай + - Тасер'н Ренн-Сэндай + - Тасер'н Сииун-Сэндай + - Тасер'тай Кайтам + - Тасер'тай Хадии + - Тасер'тай Сэндай + - Тасер'тай Року-Сэндай + - Тасер'тай Ниол-Сэндай + - Тасер'тай Ринуа-Сэндай + - Тасер'тай Року-Сэндай + - Тасер'тай Кайи-Сэндай + - Тасер'тай Айдам-Сэндай + - Тасер'тай Каии-Сэндай + - Тасер'тай Шенуар-Сэндай + - Тасер'тай Целлай-Сэндай + - Тасер'тай Релл-Сэндай + - Тасер'тай Файи-Сэндай + - Тасер'тай Наирр-Сэндай + - Тасер'тай Ильн-Сэндай + - Тасер'тай Лейи-Сэндай + - Тасер'тай Кайр-Сэндай + - Тасер'тай Лиий-Сэндай + - Тасер'тай Иурр-Сэндай + - Тасер'тай Рейи-Сэндай + - Тасер'тай Нирру-Сэндай + - Тасер'тай Хинн-Сэндай + - Тасер'тай Сай-Сэндай + - Тасер'тай Неос-Сэндай + - Тасер'тай Синну-Сэндай + - Тасер'тай Саир-Сэндай + - Тасер'тай Нарри-Сэндай + - Тасер'тай Гайи-Сэндай + - Тасер'тай Нарр-Сэндай + - Тасер'тай Ренн-Сэндай + - Тасер'тай Сииун-Сэндай + - Тасер'ай Кайтам + - Тасер'ай Хадии + - Тасер'ай Сэндай + - Тасер'ай Року-Сэндай + - Тасер'ай Ниол-Сэндай + - Тасер'ай Ринуа-Сэндай + - Тасер'ай Року-Сэндай + - Тасер'ай Кайи-Сэндай + - Тасер'ай Айдам-Сэндай + - Тасер'ай Каии-Сэндай + - Тасер'ай Шенуар-Сэндай + - Тасер'ай Целлай-Сэндай + - Тасер'ай Релл-Сэндай + - Тасер'ай Файи-Сэндай + - Тасер'ай Наирр-Сэндай + - Тасер'ай Ильн-Сэндай + - Тасер'ай Лейи-Сэндай + - Тасер'ай Кайр-Сэндай + - Тасер'ай Лиий-Сэндай + - Тасер'ай Иурр-Сэндай + - Тасер'ай Рейи-Сэндай + - Тасер'ай Нирру-Сэндай + - Тасер'ай Хинн-Сэндай + - Тасер'ай Сай-Сэндай + - Тасер'ай Неос-Сэндай + - Тасер'ай Синну-Сэндай + - Тасер'ай Саир-Сэндай + - Тасер'ай Нарри-Сэндай + - Тасер'ай Гайи-Сэндай + - Тасер'ай Нарр-Сэндай + - Тасер'ай Ренн-Сэндай + - Тасер'ай Сииун-Сэндай + - Тасер'таи Кайтам + - Тасер'таи Хадии + - Тасер'таи Сэндай + - Тасер'таи Року-Сэндай + - Тасер'таи Ниол-Сэндай + - Тасер'таи Ринуа-Сэндай + - Тасер'таи Року-Сэндай + - Тасер'таи Кайи-Сэндай + - Тасер'таи Айдам-Сэндай + - Тасер'таи Каии-Сэндай + - Тасер'таи Шенуар-Сэндай + - Тасер'таи Целлай-Сэндай + - Тасер'таи Релл-Сэндай + - Тасер'таи Файи-Сэндай + - Тасер'таи Наирр-Сэндай + - Тасер'таи Ильн-Сэндай + - Тасер'таи Лейи-Сэндай + - Тасер'таи Кайр-Сэндай + - Тасер'таи Лиий-Сэндай + - Тасер'таи Иурр-Сэндай + - Тасер'таи Рейи-Сэндай + - Тасер'таи Нирру-Сэндай + - Тасер'таи Хинн-Сэндай + - Тасер'таи Сай-Сэндай + - Тасер'таи Неос-Сэндай + - Тасер'таи Синну-Сэндай + - Тасер'таи Саир-Сэндай + - Тасер'таи Нарри-Сэндай + - Тасер'таи Гайи-Сэндай + - Тасер'таи Нарр-Сэндай + - Тасер'таи Ренн-Сэндай + - Тасер'таи Сииун-Сэндай + - Тасер'нии Кайтам + - Тасер'нии Хадии + - Тасер'нии Сэндай + - Тасер'нии Року-Сэндай + - Тасер'нии Ниол-Сэндай + - Тасер'нии Ринуа-Сэндай + - Тасер'нии Року-Сэндай + - Тасер'нии Кайи-Сэндай + - Тасер'нии Айдам-Сэндай + - Тасер'нии Каии-Сэндай + - Тасер'нии Шенуар-Сэндай + - Тасер'нии Целлай-Сэндай + - Тасер'нии Релл-Сэндай + - Тасер'нии Файи-Сэндай + - Тасер'нии Наирр-Сэндай + - Тасер'нии Ильн-Сэндай + - Тасер'нии Лейи-Сэндай + - Тасер'нии Кайр-Сэндай + - Тасер'нии Лиий-Сэндай + - Тасер'нии Иурр-Сэндай + - Тасер'нии Рейи-Сэндай + - Тасер'нии Нирру-Сэндай + - Тасер'нии Хинн-Сэндай + - Тасер'нии Сай-Сэндай + - Тасер'нии Неос-Сэндай + - Тасер'нии Синну-Сэндай + - Тасер'нии Саир-Сэндай + - Тасер'нии Нарри-Сэндай + - Тасер'нии Гайи-Сэндай + - Тасер'нии Нарр-Сэндай + - Тасер'нии Ренн-Сэндай + - Тасер'нии Сииун-Сэндай + - Тасер'стай Кайтам + - Тасер'стай Хадии + - Тасер'стай Сэндай + - Тасер'стай Року-Сэндай + - Тасер'стай Ниол-Сэндай + - Тасер'стай Ринуа-Сэндай + - Тасер'стай Року-Сэндай + - Тасер'стай Кайи-Сэндай + - Тасер'стай Айдам-Сэндай + - Тасер'стай Каии-Сэндай + - Тасер'стай Шенуар-Сэндай + - Тасер'стай Целлай-Сэндай + - Тасер'стай Релл-Сэндай + - Тасер'стай Файи-Сэндай + - Тасер'стай Наирр-Сэндай + - Тасер'стай Ильн-Сэндай + - Тасер'стай Лейи-Сэндай + - Тасер'стай Кайр-Сэндай + - Тасер'стай Лиий-Сэндай + - Тасер'стай Иурр-Сэндай + - Тасер'стай Рейи-Сэндай + - Тасер'стай Нирру-Сэндай + - Тасер'стай Хинн-Сэндай + - Тасер'стай Сай-Сэндай + - Тасер'стай Неос-Сэндай + - Тасер'стай Синну-Сэндай + - Тасер'стай Саир-Сэндай + - Тасер'стай Нарри-Сэндай + - Тасер'стай Гайи-Сэндай + - Тасер'стай Нарр-Сэндай + - Тасер'стай Ренн-Сэндай + - Тасер'стай Сииун-Сэндай + - Тасер'нирр Кайтам + - Тасер'нирр Хадии + - Тасер'нирр Сэндай + - Тасер'нирр Року-Сэндай + - Тасер'нирр Ниол-Сэндай + - Тасер'нирр Ринуа-Сэндай + - Тасер'нирр Року-Сэндай + - Тасер'нирр Кайи-Сэндай + - Тасер'нирр Айдам-Сэндай + - Тасер'нирр Каии-Сэндай + - Тасер'нирр Шенуар-Сэндай + - Тасер'нирр Целлай-Сэндай + - Тасер'нирр Релл-Сэндай + - Тасер'нирр Файи-Сэндай + - Тасер'нирр Наирр-Сэндай + - Тасер'нирр Ильн-Сэндай + - Тасер'нирр Лейи-Сэндай + - Тасер'нирр Кайр-Сэндай + - Тасер'нирр Лиий-Сэндай + - Тасер'нирр Иурр-Сэндай + - Тасер'нирр Рейи-Сэндай + - Тасер'нирр Нирру-Сэндай + - Тасер'нирр Хинн-Сэндай + - Тасер'нирр Сай-Сэндай + - Тасер'нирр Неос-Сэндай + - Тасер'нирр Синну-Сэндай + - Тасер'нирр Саир-Сэндай + - Тасер'нирр Нарри-Сэндай + - Тасер'нирр Гайи-Сэндай + - Тасер'нирр Нарр-Сэндай + - Тасер'нирр Ренн-Сэндай + - Тасер'нирр Сииун-Сэндай + - Тасер'сай Кайтам + - Тасер'сай Хадии + - Тасер'сай Сэндай + - Тасер'сай Року-Сэндай + - Тасер'сай Ниол-Сэндай + - Тасер'сай Ринуа-Сэндай + - Тасер'сай Року-Сэндай + - Тасер'сай Кайи-Сэндай + - Тасер'сай Айдам-Сэндай + - Тасер'сай Каии-Сэндай + - Тасер'сай Шенуар-Сэндай + - Тасер'сай Целлай-Сэндай + - Тасер'сай Релл-Сэндай + - Тасер'сай Файи-Сэндай + - Тасер'сай Наирр-Сэндай + - Тасер'сай Ильн-Сэндай + - Тасер'сай Лейи-Сэндай + - Тасер'сай Кайр-Сэндай + - Тасер'сай Лиий-Сэндай + - Тасер'сай Иурр-Сэндай + - Тасер'сай Рейи-Сэндай + - Тасер'сай Нирру-Сэндай + - Тасер'сай Хинн-Сэндай + - Тасер'сай Сай-Сэндай + - Тасер'сай Неос-Сэндай + - Тасер'сай Синну-Сэндай + - Тасер'сай Саир-Сэндай + - Тасер'сай Нарри-Сэндай + - Тасер'сай Гайи-Сэндай + - Тасер'сай Нарр-Сэндай + - Тасер'сай Ренн-Сэндай + - Тасер'сай Сииун-Сэндай + - Тасер'раль Кайтам + - Тасер'раль Хадии + - Тасер'раль Сэндай + - Тасер'раль Року-Сэндай + - Тасер'раль Ниол-Сэндай + - Тасер'раль Ринуа-Сэндай + - Тасер'раль Року-Сэндай + - Тасер'раль Кайи-Сэндай + - Тасер'раль Айдам-Сэндай + - Тасер'раль Каии-Сэндай + - Тасер'раль Шенуар-Сэндай + - Тасер'раль Целлай-Сэндай + - Тасер'раль Релл-Сэндай + - Тасер'раль Файи-Сэндай + - Тасер'раль Наирр-Сэндай + - Тасер'раль Ильн-Сэндай + - Тасер'раль Лейи-Сэндай + - Тасер'раль Кайр-Сэндай + - Тасер'раль Лиий-Сэндай + - Тасер'раль Иурр-Сэндай + - Тасер'раль Рейи-Сэндай + - Тасер'раль Нирру-Сэндай + - Тасер'раль Хинн-Сэндай + - Тасер'раль Сай-Сэндай + - Тасер'раль Неос-Сэндай + - Тасер'раль Синну-Сэндай + - Тасер'раль Саир-Сэндай + - Тасер'раль Нарри-Сэндай + - Тасер'раль Гайи-Сэндай + - Тасер'раль Нарр-Сэндай + - Тасер'раль Ренн-Сэндай + - Тасер'раль Сииун-Сэндай + - Рии'хинс Кайтам + - Рии'хинс Хадии + - Рии'хинс Сэндай + - Рии'хинс Року-Сэндай + - Рии'хинс Ниол-Сэндай + - Рии'хинс Ринуа-Сэндай + - Рии'хинс Року-Сэндай + - Рии'хинс Кайи-Сэндай + - Рии'хинс Айдам-Сэндай + - Рии'хинс Каии-Сэндай + - Рии'хинс Шенуар-Сэндай + - Рии'хинс Целлай-Сэндай + - Рии'хинс Релл-Сэндай + - Рии'хинс Файи-Сэндай + - Рии'хинс Наирр-Сэндай + - Рии'хинс Ильн-Сэндай + - Рии'хинс Лейи-Сэндай + - Рии'хинс Кайр-Сэндай + - Рии'хинс Лиий-Сэндай + - Рии'хинс Иурр-Сэндай + - Рии'хинс Рейи-Сэндай + - Рии'хинс Нирру-Сэндай + - Рии'хинс Хинн-Сэндай + - Рии'хинс Сай-Сэндай + - Рии'хинс Неос-Сэндай + - Рии'хинс Синну-Сэндай + - Рии'хинс Саир-Сэндай + - Рии'хинс Нарри-Сэндай + - Рии'хинс Гайи-Сэндай + - Рии'хинс Нарр-Сэндай + - Рии'хинс Ренн-Сэндай + - Рии'хинс Сииун-Сэндай + - Рии'ерс Кайтам + - Рии'ерс Хадии + - Рии'ерс Сэндай + - Рии'ерс Року-Сэндай + - Рии'ерс Ниол-Сэндай + - Рии'ерс Ринуа-Сэндай + - Рии'ерс Року-Сэндай + - Рии'ерс Кайи-Сэндай + - Рии'ерс Айдам-Сэндай + - Рии'ерс Каии-Сэндай + - Рии'ерс Шенуар-Сэндай + - Рии'ерс Целлай-Сэндай + - Рии'ерс Релл-Сэндай + - Рии'ерс Файи-Сэндай + - Рии'ерс Наирр-Сэндай + - Рии'ерс Ильн-Сэндай + - Рии'ерс Лейи-Сэндай + - Рии'ерс Кайр-Сэндай + - Рии'ерс Лиий-Сэндай + - Рии'ерс Иурр-Сэндай + - Рии'ерс Рейи-Сэндай + - Рии'ерс Нирру-Сэндай + - Рии'ерс Хинн-Сэндай + - Рии'ерс Сай-Сэндай + - Рии'ерс Неос-Сэндай + - Рии'ерс Синну-Сэндай + - Рии'ерс Саир-Сэндай + - Рии'ерс Нарри-Сэндай + - Рии'ерс Гайи-Сэндай + - Рии'ерс Нарр-Сэндай + - Рии'ерс Ренн-Сэндай + - Рии'ерс Сииун-Сэндай + - Рии'наи Кайтам + - Рии'наи Хадии + - Рии'наи Сэндай + - Рии'наи Року-Сэндай + - Рии'наи Ниол-Сэндай + - Рии'наи Ринуа-Сэндай + - Рии'наи Року-Сэндай + - Рии'наи Кайи-Сэндай + - Рии'наи Айдам-Сэндай + - Рии'наи Каии-Сэндай + - Рии'наи Шенуар-Сэндай + - Рии'наи Целлай-Сэндай + - Рии'наи Релл-Сэндай + - Рии'наи Файи-Сэндай + - Рии'наи Наирр-Сэндай + - Рии'наи Ильн-Сэндай + - Рии'наи Лейи-Сэндай + - Рии'наи Кайр-Сэндай + - Рии'наи Лиий-Сэндай + - Рии'наи Иурр-Сэндай + - Рии'наи Рейи-Сэндай + - Рии'наи Нирру-Сэндай + - Рии'наи Хинн-Сэндай + - Рии'наи Сай-Сэндай + - Рии'наи Неос-Сэндай + - Рии'наи Синну-Сэндай + - Рии'наи Саир-Сэндай + - Рии'наи Нарри-Сэндай + - Рии'наи Гайи-Сэндай + - Рии'наи Нарр-Сэндай + - Рии'наи Ренн-Сэндай + - Рии'наи Сииун-Сэндай + - Рии'тайль Кайтам + - Рии'тайль Хадии + - Рии'тайль Сэндай + - Рии'тайль Року-Сэндай + - Рии'тайль Ниол-Сэндай + - Рии'тайль Ринуа-Сэндай + - Рии'тайль Року-Сэндай + - Рии'тайль Кайи-Сэндай + - Рии'тайль Айдам-Сэндай + - Рии'тайль Каии-Сэндай + - Рии'тайль Шенуар-Сэндай + - Рии'тайль Целлай-Сэндай + - Рии'тайль Релл-Сэндай + - Рии'тайль Файи-Сэндай + - Рии'тайль Наирр-Сэндай + - Рии'тайль Ильн-Сэндай + - Рии'тайль Лейи-Сэндай + - Рии'тайль Кайр-Сэндай + - Рии'тайль Лиий-Сэндай + - Рии'тайль Иурр-Сэндай + - Рии'тайль Рейи-Сэндай + - Рии'тайль Нирру-Сэндай + - Рии'тайль Хинн-Сэндай + - Рии'тайль Сай-Сэндай + - Рии'тайль Неос-Сэндай + - Рии'тайль Синну-Сэндай + - Рии'тайль Саир-Сэндай + - Рии'тайль Нарри-Сэндай + - Рии'тайль Гайи-Сэндай + - Рии'тайль Нарр-Сэндай + - Рии'тайль Ренн-Сэндай + - Рии'тайль Сииун-Сэндай + - Рии'нер Кайтам + - Рии'нер Хадии + - Рии'нер Сэндай + - Рии'нер Року-Сэндай + - Рии'нер Ниол-Сэндай + - Рии'нер Ринуа-Сэндай + - Рии'нер Року-Сэндай + - Рии'нер Кайи-Сэндай + - Рии'нер Айдам-Сэндай + - Рии'нер Каии-Сэндай + - Рии'нер Шенуар-Сэндай + - Рии'нер Целлай-Сэндай + - Рии'нер Релл-Сэндай + - Рии'нер Файи-Сэндай + - Рии'нер Наирр-Сэндай + - Рии'нер Ильн-Сэндай + - Рии'нер Лейи-Сэндай + - Рии'нер Кайр-Сэндай + - Рии'нер Лиий-Сэндай + - Рии'нер Иурр-Сэндай + - Рии'нер Рейи-Сэндай + - Рии'нер Нирру-Сэндай + - Рии'нер Хинн-Сэндай + - Рии'нер Сай-Сэндай + - Рии'нер Неос-Сэндай + - Рии'нер Синну-Сэндай + - Рии'нер Саир-Сэндай + - Рии'нер Нарри-Сэндай + - Рии'нер Гайи-Сэндай + - Рии'нер Нарр-Сэндай + - Рии'нер Ренн-Сэндай + - Рии'нер Сииун-Сэндай + - Рии'н Кайтам + - Рии'н Хадии + - Рии'н Сэндай + - Рии'н Року-Сэндай + - Рии'н Ниол-Сэндай + - Рии'н Ринуа-Сэндай + - Рии'н Року-Сэндай + - Рии'н Кайи-Сэндай + - Рии'н Айдам-Сэндай + - Рии'н Каии-Сэндай + - Рии'н Шенуар-Сэндай + - Рии'н Целлай-Сэндай + - Рии'н Релл-Сэндай + - Рии'н Файи-Сэндай + - Рии'н Наирр-Сэндай + - Рии'н Ильн-Сэндай + - Рии'н Лейи-Сэндай + - Рии'н Кайр-Сэндай + - Рии'н Лиий-Сэндай + - Рии'н Иурр-Сэндай + - Рии'н Рейи-Сэндай + - Рии'н Нирру-Сэндай + - Рии'н Хинн-Сэндай + - Рии'н Сай-Сэндай + - Рии'н Неос-Сэндай + - Рии'н Синну-Сэндай + - Рии'н Саир-Сэндай + - Рии'н Нарри-Сэндай + - Рии'н Гайи-Сэндай + - Рии'н Нарр-Сэндай + - Рии'н Ренн-Сэндай + - Рии'н Сииун-Сэндай + - Рии'тай Кайтам + - Рии'тай Хадии + - Рии'тай Сэндай + - Рии'тай Року-Сэндай + - Рии'тай Ниол-Сэндай + - Рии'тай Ринуа-Сэндай + - Рии'тай Року-Сэндай + - Рии'тай Кайи-Сэндай + - Рии'тай Айдам-Сэндай + - Рии'тай Каии-Сэндай + - Рии'тай Шенуар-Сэндай + - Рии'тай Целлай-Сэндай + - Рии'тай Релл-Сэндай + - Рии'тай Файи-Сэндай + - Рии'тай Наирр-Сэндай + - Рии'тай Ильн-Сэндай + - Рии'тай Лейи-Сэндай + - Рии'тай Кайр-Сэндай + - Рии'тай Лиий-Сэндай + - Рии'тай Иурр-Сэндай + - Рии'тай Рейи-Сэндай + - Рии'тай Нирру-Сэндай + - Рии'тай Хинн-Сэндай + - Рии'тай Сай-Сэндай + - Рии'тай Неос-Сэндай + - Рии'тай Синну-Сэндай + - Рии'тай Саир-Сэндай + - Рии'тай Нарри-Сэндай + - Рии'тай Гайи-Сэндай + - Рии'тай Нарр-Сэндай + - Рии'тай Ренн-Сэндай + - Рии'тай Сииун-Сэндай + - Рии'ай Кайтам + - Рии'ай Хадии + - Рии'ай Сэндай + - Рии'ай Року-Сэндай + - Рии'ай Ниол-Сэндай + - Рии'ай Ринуа-Сэндай + - Рии'ай Року-Сэндай + - Рии'ай Кайи-Сэндай + - Рии'ай Айдам-Сэндай + - Рии'ай Каии-Сэндай + - Рии'ай Шенуар-Сэндай + - Рии'ай Целлай-Сэндай + - Рии'ай Релл-Сэндай + - Рии'ай Файи-Сэндай + - Рии'ай Наирр-Сэндай + - Рии'ай Ильн-Сэндай + - Рии'ай Лейи-Сэндай + - Рии'ай Кайр-Сэндай + - Рии'ай Лиий-Сэндай + - Рии'ай Иурр-Сэндай + - Рии'ай Рейи-Сэндай + - Рии'ай Нирру-Сэндай + - Рии'ай Хинн-Сэндай + - Рии'ай Сай-Сэндай + - Рии'ай Неос-Сэндай + - Рии'ай Синну-Сэндай + - Рии'ай Саир-Сэндай + - Рии'ай Нарри-Сэндай + - Рии'ай Гайи-Сэндай + - Рии'ай Нарр-Сэндай + - Рии'ай Ренн-Сэндай + - Рии'ай Сииун-Сэндай + - Рии'таи Кайтам + - Рии'таи Хадии + - Рии'таи Сэндай + - Рии'таи Року-Сэндай + - Рии'таи Ниол-Сэндай + - Рии'таи Ринуа-Сэндай + - Рии'таи Року-Сэндай + - Рии'таи Кайи-Сэндай + - Рии'таи Айдам-Сэндай + - Рии'таи Каии-Сэндай + - Рии'таи Шенуар-Сэндай + - Рии'таи Целлай-Сэндай + - Рии'таи Релл-Сэндай + - Рии'таи Файи-Сэндай + - Рии'таи Наирр-Сэндай + - Рии'таи Ильн-Сэндай + - Рии'таи Лейи-Сэндай + - Рии'таи Кайр-Сэндай + - Рии'таи Лиий-Сэндай + - Рии'таи Иурр-Сэндай + - Рии'таи Рейи-Сэндай + - Рии'таи Нирру-Сэндай + - Рии'таи Хинн-Сэндай + - Рии'таи Сай-Сэндай + - Рии'таи Неос-Сэндай + - Рии'таи Синну-Сэндай + - Рии'таи Саир-Сэндай + - Рии'таи Нарри-Сэндай + - Рии'таи Гайи-Сэндай + - Рии'таи Нарр-Сэндай + - Рии'таи Ренн-Сэндай + - Рии'таи Сииун-Сэндай + - Рии'нии Кайтам + - Рии'нии Хадии + - Рии'нии Сэндай + - Рии'нии Року-Сэндай + - Рии'нии Ниол-Сэндай + - Рии'нии Ринуа-Сэндай + - Рии'нии Року-Сэндай + - Рии'нии Кайи-Сэндай + - Рии'нии Айдам-Сэндай + - Рии'нии Каии-Сэндай + - Рии'нии Шенуар-Сэндай + - Рии'нии Целлай-Сэндай + - Рии'нии Релл-Сэндай + - Рии'нии Файи-Сэндай + - Рии'нии Наирр-Сэндай + - Рии'нии Ильн-Сэндай + - Рии'нии Лейи-Сэндай + - Рии'нии Кайр-Сэндай + - Рии'нии Лиий-Сэндай + - Рии'нии Иурр-Сэндай + - Рии'нии Рейи-Сэндай + - Рии'нии Нирру-Сэндай + - Рии'нии Хинн-Сэндай + - Рии'нии Сай-Сэндай + - Рии'нии Неос-Сэндай + - Рии'нии Синну-Сэндай + - Рии'нии Саир-Сэндай + - Рии'нии Нарри-Сэндай + - Рии'нии Гайи-Сэндай + - Рии'нии Нарр-Сэндай + - Рии'нии Ренн-Сэндай + - Рии'нии Сииун-Сэндай + - Рии'стай Кайтам + - Рии'стай Хадии + - Рии'стай Сэндай + - Рии'стай Року-Сэндай + - Рии'стай Ниол-Сэндай + - Рии'стай Ринуа-Сэндай + - Рии'стай Року-Сэндай + - Рии'стай Кайи-Сэндай + - Рии'стай Айдам-Сэндай + - Рии'стай Каии-Сэндай + - Рии'стай Шенуар-Сэндай + - Рии'стай Целлай-Сэндай + - Рии'стай Релл-Сэндай + - Рии'стай Файи-Сэндай + - Рии'стай Наирр-Сэндай + - Рии'стай Ильн-Сэндай + - Рии'стай Лейи-Сэндай + - Рии'стай Кайр-Сэндай + - Рии'стай Лиий-Сэндай + - Рии'стай Иурр-Сэндай + - Рии'стай Рейи-Сэндай + - Рии'стай Нирру-Сэндай + - Рии'стай Хинн-Сэндай + - Рии'стай Сай-Сэндай + - Рии'стай Неос-Сэндай + - Рии'стай Синну-Сэндай + - Рии'стай Саир-Сэндай + - Рии'стай Нарри-Сэндай + - Рии'стай Гайи-Сэндай + - Рии'стай Нарр-Сэндай + - Рии'стай Ренн-Сэндай + - Рии'стай Сииун-Сэндай + - Рии'нирр Кайтам + - Рии'нирр Хадии + - Рии'нирр Сэндай + - Рии'нирр Року-Сэндай + - Рии'нирр Ниол-Сэндай + - Рии'нирр Ринуа-Сэндай + - Рии'нирр Року-Сэндай + - Рии'нирр Кайи-Сэндай + - Рии'нирр Айдам-Сэндай + - Рии'нирр Каии-Сэндай + - Рии'нирр Шенуар-Сэндай + - Рии'нирр Целлай-Сэндай + - Рии'нирр Релл-Сэндай + - Рии'нирр Файи-Сэндай + - Рии'нирр Наирр-Сэндай + - Рии'нирр Ильн-Сэндай + - Рии'нирр Лейи-Сэндай + - Рии'нирр Кайр-Сэндай + - Рии'нирр Лиий-Сэндай + - Рии'нирр Иурр-Сэндай + - Рии'нирр Рейи-Сэндай + - Рии'нирр Нирру-Сэндай + - Рии'нирр Хинн-Сэндай + - Рии'нирр Сай-Сэндай + - Рии'нирр Неос-Сэндай + - Рии'нирр Синну-Сэндай + - Рии'нирр Саир-Сэндай + - Рии'нирр Нарри-Сэндай + - Рии'нирр Гайи-Сэндай + - Рии'нирр Нарр-Сэндай + - Рии'нирр Ренн-Сэндай + - Рии'нирр Сииун-Сэндай + - Рии'сай Кайтам + - Рии'сай Хадии + - Рии'сай Сэндай + - Рии'сай Року-Сэндай + - Рии'сай Ниол-Сэндай + - Рии'сай Ринуа-Сэндай + - Рии'сай Року-Сэндай + - Рии'сай Кайи-Сэндай + - Рии'сай Айдам-Сэндай + - Рии'сай Каии-Сэндай + - Рии'сай Шенуар-Сэндай + - Рии'сай Целлай-Сэндай + - Рии'сай Релл-Сэндай + - Рии'сай Файи-Сэндай + - Рии'сай Наирр-Сэндай + - Рии'сай Ильн-Сэндай + - Рии'сай Лейи-Сэндай + - Рии'сай Кайр-Сэндай + - Рии'сай Лиий-Сэндай + - Рии'сай Иурр-Сэндай + - Рии'сай Рейи-Сэндай + - Рии'сай Нирру-Сэндай + - Рии'сай Хинн-Сэндай + - Рии'сай Сай-Сэндай + - Рии'сай Неос-Сэндай + - Рии'сай Синну-Сэндай + - Рии'сай Саир-Сэндай + - Рии'сай Нарри-Сэндай + - Рии'сай Гайи-Сэндай + - Рии'сай Нарр-Сэндай + - Рии'сай Ренн-Сэндай + - Рии'сай Сииун-Сэндай + - Рии'раль Кайтам + - Рии'раль Хадии + - Рии'раль Сэндай + - Рии'раль Року-Сэндай + - Рии'раль Ниол-Сэндай + - Рии'раль Ринуа-Сэндай + - Рии'раль Року-Сэндай + - Рии'раль Кайи-Сэндай + - Рии'раль Айдам-Сэндай + - Рии'раль Каии-Сэндай + - Рии'раль Шенуар-Сэндай + - Рии'раль Целлай-Сэндай + - Рии'раль Релл-Сэндай + - Рии'раль Файи-Сэндай + - Рии'раль Наирр-Сэндай + - Рии'раль Ильн-Сэндай + - Рии'раль Лейи-Сэндай + - Рии'раль Кайр-Сэндай + - Рии'раль Лиий-Сэндай + - Рии'раль Иурр-Сэндай + - Рии'раль Рейи-Сэндай + - Рии'раль Нирру-Сэндай + - Рии'раль Хинн-Сэндай + - Рии'раль Сай-Сэндай + - Рии'раль Неос-Сэндай + - Рии'раль Синну-Сэндай + - Рии'раль Саир-Сэндай + - Рии'раль Нарри-Сэндай + - Рии'раль Гайи-Сэндай + - Рии'раль Нарр-Сэндай + - Рии'раль Ренн-Сэндай + - Рии'раль Сииун-Сэндай + - Ринн'хинс Кайтам + - Ринн'хинс Хадии + - Ринн'хинс Сэндай + - Ринн'хинс Року-Сэндай + - Ринн'хинс Ниол-Сэндай + - Ринн'хинс Ринуа-Сэндай + - Ринн'хинс Року-Сэндай + - Ринн'хинс Кайи-Сэндай + - Ринн'хинс Айдам-Сэндай + - Ринн'хинс Каии-Сэндай + - Ринн'хинс Шенуар-Сэндай + - Ринн'хинс Целлай-Сэндай + - Ринн'хинс Релл-Сэндай + - Ринн'хинс Файи-Сэндай + - Ринн'хинс Наирр-Сэндай + - Ринн'хинс Ильн-Сэндай + - Ринн'хинс Лейи-Сэндай + - Ринн'хинс Кайр-Сэндай + - Ринн'хинс Лиий-Сэндай + - Ринн'хинс Иурр-Сэндай + - Ринн'хинс Рейи-Сэндай + - Ринн'хинс Нирру-Сэндай + - Ринн'хинс Хинн-Сэндай + - Ринн'хинс Сай-Сэндай + - Ринн'хинс Неос-Сэндай + - Ринн'хинс Синну-Сэндай + - Ринн'хинс Саир-Сэндай + - Ринн'хинс Нарри-Сэндай + - Ринн'хинс Гайи-Сэндай + - Ринн'хинс Нарр-Сэндай + - Ринн'хинс Ренн-Сэндай + - Ринн'хинс Сииун-Сэндай + - Ринн'ерс Кайтам + - Ринн'ерс Хадии + - Ринн'ерс Сэндай + - Ринн'ерс Року-Сэндай + - Ринн'ерс Ниол-Сэндай + - Ринн'ерс Ринуа-Сэндай + - Ринн'ерс Року-Сэндай + - Ринн'ерс Кайи-Сэндай + - Ринн'ерс Айдам-Сэндай + - Ринн'ерс Каии-Сэндай + - Ринн'ерс Шенуар-Сэндай + - Ринн'ерс Целлай-Сэндай + - Ринн'ерс Релл-Сэндай + - Ринн'ерс Файи-Сэндай + - Ринн'ерс Наирр-Сэндай + - Ринн'ерс Ильн-Сэндай + - Ринн'ерс Лейи-Сэндай + - Ринн'ерс Кайр-Сэндай + - Ринн'ерс Лиий-Сэндай + - Ринн'ерс Иурр-Сэндай + - Ринн'ерс Рейи-Сэндай + - Ринн'ерс Нирру-Сэндай + - Ринн'ерс Хинн-Сэндай + - Ринн'ерс Сай-Сэндай + - Ринн'ерс Неос-Сэндай + - Ринн'ерс Синну-Сэндай + - Ринн'ерс Саир-Сэндай + - Ринн'ерс Нарри-Сэндай + - Ринн'ерс Гайи-Сэндай + - Ринн'ерс Нарр-Сэндай + - Ринн'ерс Ренн-Сэндай + - Ринн'ерс Сииун-Сэндай + - Ринн'наи Кайтам + - Ринн'наи Хадии + - Ринн'наи Сэндай + - Ринн'наи Року-Сэндай + - Ринн'наи Ниол-Сэндай + - Ринн'наи Ринуа-Сэндай + - Ринн'наи Року-Сэндай + - Ринн'наи Кайи-Сэндай + - Ринн'наи Айдам-Сэндай + - Ринн'наи Каии-Сэндай + - Ринн'наи Шенуар-Сэндай + - Ринн'наи Целлай-Сэндай + - Ринн'наи Релл-Сэндай + - Ринн'наи Файи-Сэндай + - Ринн'наи Наирр-Сэндай + - Ринн'наи Ильн-Сэндай + - Ринн'наи Лейи-Сэндай + - Ринн'наи Кайр-Сэндай + - Ринн'наи Лиий-Сэндай + - Ринн'наи Иурр-Сэндай + - Ринн'наи Рейи-Сэндай + - Ринн'наи Нирру-Сэндай + - Ринн'наи Хинн-Сэндай + - Ринн'наи Сай-Сэндай + - Ринн'наи Неос-Сэндай + - Ринн'наи Синну-Сэндай + - Ринн'наи Саир-Сэндай + - Ринн'наи Нарри-Сэндай + - Ринн'наи Гайи-Сэндай + - Ринн'наи Нарр-Сэндай + - Ринн'наи Ренн-Сэндай + - Ринн'наи Сииун-Сэндай + - Ринн'тайль Кайтам + - Ринн'тайль Хадии + - Ринн'тайль Сэндай + - Ринн'тайль Року-Сэндай + - Ринн'тайль Ниол-Сэндай + - Ринн'тайль Ринуа-Сэндай + - Ринн'тайль Року-Сэндай + - Ринн'тайль Кайи-Сэндай + - Ринн'тайль Айдам-Сэндай + - Ринн'тайль Каии-Сэндай + - Ринн'тайль Шенуар-Сэндай + - Ринн'тайль Целлай-Сэндай + - Ринн'тайль Релл-Сэндай + - Ринн'тайль Файи-Сэндай + - Ринн'тайль Наирр-Сэндай + - Ринн'тайль Ильн-Сэндай + - Ринн'тайль Лейи-Сэндай + - Ринн'тайль Кайр-Сэндай + - Ринн'тайль Лиий-Сэндай + - Ринн'тайль Иурр-Сэндай + - Ринн'тайль Рейи-Сэндай + - Ринн'тайль Нирру-Сэндай + - Ринн'тайль Хинн-Сэндай + - Ринн'тайль Сай-Сэндай + - Ринн'тайль Неос-Сэндай + - Ринн'тайль Синну-Сэндай + - Ринн'тайль Саир-Сэндай + - Ринн'тайль Нарри-Сэндай + - Ринн'тайль Гайи-Сэндай + - Ринн'тайль Нарр-Сэндай + - Ринн'тайль Ренн-Сэндай + - Ринн'тайль Сииун-Сэндай + - Ринн'нер Кайтам + - Ринн'нер Хадии + - Ринн'нер Сэндай + - Ринн'нер Року-Сэндай + - Ринн'нер Ниол-Сэндай + - Ринн'нер Ринуа-Сэндай + - Ринн'нер Року-Сэндай + - Ринн'нер Кайи-Сэндай + - Ринн'нер Айдам-Сэндай + - Ринн'нер Каии-Сэндай + - Ринн'нер Шенуар-Сэндай + - Ринн'нер Целлай-Сэндай + - Ринн'нер Релл-Сэндай + - Ринн'нер Файи-Сэндай + - Ринн'нер Наирр-Сэндай + - Ринн'нер Ильн-Сэндай + - Ринн'нер Лейи-Сэндай + - Ринн'нер Кайр-Сэндай + - Ринн'нер Лиий-Сэндай + - Ринн'нер Иурр-Сэндай + - Ринн'нер Рейи-Сэндай + - Ринн'нер Нирру-Сэндай + - Ринн'нер Хинн-Сэндай + - Ринн'нер Сай-Сэндай + - Ринн'нер Неос-Сэндай + - Ринн'нер Синну-Сэндай + - Ринн'нер Саир-Сэндай + - Ринн'нер Нарри-Сэндай + - Ринн'нер Гайи-Сэндай + - Ринн'нер Нарр-Сэндай + - Ринн'нер Ренн-Сэндай + - Ринн'нер Сииун-Сэндай + - Ринн'н Кайтам + - Ринн'н Хадии + - Ринн'н Сэндай + - Ринн'н Року-Сэндай + - Ринн'н Ниол-Сэндай + - Ринн'н Ринуа-Сэндай + - Ринн'н Року-Сэндай + - Ринн'н Кайи-Сэндай + - Ринн'н Айдам-Сэндай + - Ринн'н Каии-Сэндай + - Ринн'н Шенуар-Сэндай + - Ринн'н Целлай-Сэндай + - Ринн'н Релл-Сэндай + - Ринн'н Файи-Сэндай + - Ринн'н Наирр-Сэндай + - Ринн'н Ильн-Сэндай + - Ринн'н Лейи-Сэндай + - Ринн'н Кайр-Сэндай + - Ринн'н Лиий-Сэндай + - Ринн'н Иурр-Сэндай + - Ринн'н Рейи-Сэндай + - Ринн'н Нирру-Сэндай + - Ринн'н Хинн-Сэндай + - Ринн'н Сай-Сэндай + - Ринн'н Неос-Сэндай + - Ринн'н Синну-Сэндай + - Ринн'н Саир-Сэндай + - Ринн'н Нарри-Сэндай + - Ринн'н Гайи-Сэндай + - Ринн'н Нарр-Сэндай + - Ринн'н Ренн-Сэндай + - Ринн'н Сииун-Сэндай + - Ринн'тай Кайтам + - Ринн'тай Хадии + - Ринн'тай Сэндай + - Ринн'тай Року-Сэндай + - Ринн'тай Ниол-Сэндай + - Ринн'тай Ринуа-Сэндай + - Ринн'тай Року-Сэндай + - Ринн'тай Кайи-Сэндай + - Ринн'тай Айдам-Сэндай + - Ринн'тай Каии-Сэндай + - Ринн'тай Шенуар-Сэндай + - Ринн'тай Целлай-Сэндай + - Ринн'тай Релл-Сэндай + - Ринн'тай Файи-Сэндай + - Ринн'тай Наирр-Сэндай + - Ринн'тай Ильн-Сэндай + - Ринн'тай Лейи-Сэндай + - Ринн'тай Кайр-Сэндай + - Ринн'тай Лиий-Сэндай + - Ринн'тай Иурр-Сэндай + - Ринн'тай Рейи-Сэндай + - Ринн'тай Нирру-Сэндай + - Ринн'тай Хинн-Сэндай + - Ринн'тай Сай-Сэндай + - Ринн'тай Неос-Сэндай + - Ринн'тай Синну-Сэндай + - Ринн'тай Саир-Сэндай + - Ринн'тай Нарри-Сэндай + - Ринн'тай Гайи-Сэндай + - Ринн'тай Нарр-Сэндай + - Ринн'тай Ренн-Сэндай + - Ринн'тай Сииун-Сэндай + - Ринн'ай Кайтам + - Ринн'ай Хадии + - Ринн'ай Сэндай + - Ринн'ай Року-Сэндай + - Ринн'ай Ниол-Сэндай + - Ринн'ай Ринуа-Сэндай + - Ринн'ай Року-Сэндай + - Ринн'ай Кайи-Сэндай + - Ринн'ай Айдам-Сэндай + - Ринн'ай Каии-Сэндай + - Ринн'ай Шенуар-Сэндай + - Ринн'ай Целлай-Сэндай + - Ринн'ай Релл-Сэндай + - Ринн'ай Файи-Сэндай + - Ринн'ай Наирр-Сэндай + - Ринн'ай Ильн-Сэндай + - Ринн'ай Лейи-Сэндай + - Ринн'ай Кайр-Сэндай + - Ринн'ай Лиий-Сэндай + - Ринн'ай Иурр-Сэндай + - Ринн'ай Рейи-Сэндай + - Ринн'ай Нирру-Сэндай + - Ринн'ай Хинн-Сэндай + - Ринн'ай Сай-Сэндай + - Ринн'ай Неос-Сэндай + - Ринн'ай Синну-Сэндай + - Ринн'ай Саир-Сэндай + - Ринн'ай Нарри-Сэндай + - Ринн'ай Гайи-Сэндай + - Ринн'ай Нарр-Сэндай + - Ринн'ай Ренн-Сэндай + - Ринн'ай Сииун-Сэндай + - Ринн'таи Кайтам + - Ринн'таи Хадии + - Ринн'таи Сэндай + - Ринн'таи Року-Сэндай + - Ринн'таи Ниол-Сэндай + - Ринн'таи Ринуа-Сэндай + - Ринн'таи Року-Сэндай + - Ринн'таи Кайи-Сэндай + - Ринн'таи Айдам-Сэндай + - Ринн'таи Каии-Сэндай + - Ринн'таи Шенуар-Сэндай + - Ринн'таи Целлай-Сэндай + - Ринн'таи Релл-Сэндай + - Ринн'таи Файи-Сэндай + - Ринн'таи Наирр-Сэндай + - Ринн'таи Ильн-Сэндай + - Ринн'таи Лейи-Сэндай + - Ринн'таи Кайр-Сэндай + - Ринн'таи Лиий-Сэндай + - Ринн'таи Иурр-Сэндай + - Ринн'таи Рейи-Сэндай + - Ринн'таи Нирру-Сэндай + - Ринн'таи Хинн-Сэндай + - Ринн'таи Сай-Сэндай + - Ринн'таи Неос-Сэндай + - Ринн'таи Синну-Сэндай + - Ринн'таи Саир-Сэндай + - Ринн'таи Нарри-Сэндай + - Ринн'таи Гайи-Сэндай + - Ринн'таи Нарр-Сэндай + - Ринн'таи Ренн-Сэндай + - Ринн'таи Сииун-Сэндай + - Ринн'нии Кайтам + - Ринн'нии Хадии + - Ринн'нии Сэндай + - Ринн'нии Року-Сэндай + - Ринн'нии Ниол-Сэндай + - Ринн'нии Ринуа-Сэндай + - Ринн'нии Року-Сэндай + - Ринн'нии Кайи-Сэндай + - Ринн'нии Айдам-Сэндай + - Ринн'нии Каии-Сэндай + - Ринн'нии Шенуар-Сэндай + - Ринн'нии Целлай-Сэндай + - Ринн'нии Релл-Сэндай + - Ринн'нии Файи-Сэндай + - Ринн'нии Наирр-Сэндай + - Ринн'нии Ильн-Сэндай + - Ринн'нии Лейи-Сэндай + - Ринн'нии Кайр-Сэндай + - Ринн'нии Лиий-Сэндай + - Ринн'нии Иурр-Сэндай + - Ринн'нии Рейи-Сэндай + - Ринн'нии Нирру-Сэндай + - Ринн'нии Хинн-Сэндай + - Ринн'нии Сай-Сэндай + - Ринн'нии Неос-Сэндай + - Ринн'нии Синну-Сэндай + - Ринн'нии Саир-Сэндай + - Ринн'нии Нарри-Сэндай + - Ринн'нии Гайи-Сэндай + - Ринн'нии Нарр-Сэндай + - Ринн'нии Ренн-Сэндай + - Ринн'нии Сииун-Сэндай + - Ринн'стай Кайтам + - Ринн'стай Хадии + - Ринн'стай Сэндай + - Ринн'стай Року-Сэндай + - Ринн'стай Ниол-Сэндай + - Ринн'стай Ринуа-Сэндай + - Ринн'стай Року-Сэндай + - Ринн'стай Кайи-Сэндай + - Ринн'стай Айдам-Сэндай + - Ринн'стай Каии-Сэндай + - Ринн'стай Шенуар-Сэндай + - Ринн'стай Целлай-Сэндай + - Ринн'стай Релл-Сэндай + - Ринн'стай Файи-Сэндай + - Ринн'стай Наирр-Сэндай + - Ринн'стай Ильн-Сэндай + - Ринн'стай Лейи-Сэндай + - Ринн'стай Кайр-Сэндай + - Ринн'стай Лиий-Сэндай + - Ринн'стай Иурр-Сэндай + - Ринн'стай Рейи-Сэндай + - Ринн'стай Нирру-Сэндай + - Ринн'стай Хинн-Сэндай + - Ринн'стай Сай-Сэндай + - Ринн'стай Неос-Сэндай + - Ринн'стай Синну-Сэндай + - Ринн'стай Саир-Сэндай + - Ринн'стай Нарри-Сэндай + - Ринн'стай Гайи-Сэндай + - Ринн'стай Нарр-Сэндай + - Ринн'стай Ренн-Сэндай + - Ринн'стай Сииун-Сэндай + - Ринн'нирр Кайтам + - Ринн'нирр Хадии + - Ринн'нирр Сэндай + - Ринн'нирр Року-Сэндай + - Ринн'нирр Ниол-Сэндай + - Ринн'нирр Ринуа-Сэндай + - Ринн'нирр Року-Сэндай + - Ринн'нирр Кайи-Сэндай + - Ринн'нирр Айдам-Сэндай + - Ринн'нирр Каии-Сэндай + - Ринн'нирр Шенуар-Сэндай + - Ринн'нирр Целлай-Сэндай + - Ринн'нирр Релл-Сэндай + - Ринн'нирр Файи-Сэндай + - Ринн'нирр Наирр-Сэндай + - Ринн'нирр Ильн-Сэндай + - Ринн'нирр Лейи-Сэндай + - Ринн'нирр Кайр-Сэндай + - Ринн'нирр Лиий-Сэндай + - Ринн'нирр Иурр-Сэндай + - Ринн'нирр Рейи-Сэндай + - Ринн'нирр Нирру-Сэндай + - Ринн'нирр Хинн-Сэндай + - Ринн'нирр Сай-Сэндай + - Ринн'нирр Неос-Сэндай + - Ринн'нирр Синну-Сэндай + - Ринн'нирр Саир-Сэндай + - Ринн'нирр Нарри-Сэндай + - Ринн'нирр Гайи-Сэндай + - Ринн'нирр Нарр-Сэндай + - Ринн'нирр Ренн-Сэндай + - Ринн'нирр Сииун-Сэндай + - Ринн'сай Кайтам + - Ринн'сай Хадии + - Ринн'сай Сэндай + - Ринн'сай Року-Сэндай + - Ринн'сай Ниол-Сэндай + - Ринн'сай Ринуа-Сэндай + - Ринн'сай Року-Сэндай + - Ринн'сай Кайи-Сэндай + - Ринн'сай Айдам-Сэндай + - Ринн'сай Каии-Сэндай + - Ринн'сай Шенуар-Сэндай + - Ринн'сай Целлай-Сэндай + - Ринн'сай Релл-Сэндай + - Ринн'сай Файи-Сэндай + - Ринн'сай Наирр-Сэндай + - Ринн'сай Ильн-Сэндай + - Ринн'сай Лейи-Сэндай + - Ринн'сай Кайр-Сэндай + - Ринн'сай Лиий-Сэндай + - Ринн'сай Иурр-Сэндай + - Ринн'сай Рейи-Сэндай + - Ринн'сай Нирру-Сэндай + - Ринн'сай Хинн-Сэндай + - Ринн'сай Сай-Сэндай + - Ринн'сай Неос-Сэндай + - Ринн'сай Синну-Сэндай + - Ринн'сай Саир-Сэндай + - Ринн'сай Нарри-Сэндай + - Ринн'сай Гайи-Сэндай + - Ринн'сай Нарр-Сэндай + - Ринн'сай Ренн-Сэндай + - Ринн'сай Сииун-Сэндай + - Ринн'раль Кайтам + - Ринн'раль Хадии + - Ринн'раль Сэндай + - Ринн'раль Року-Сэндай + - Ринн'раль Ниол-Сэндай + - Ринн'раль Ринуа-Сэндай + - Ринн'раль Року-Сэндай + - Ринн'раль Кайи-Сэндай + - Ринн'раль Айдам-Сэндай + - Ринн'раль Каии-Сэндай + - Ринн'раль Шенуар-Сэндай + - Ринн'раль Целлай-Сэндай + - Ринн'раль Релл-Сэндай + - Ринн'раль Файи-Сэндай + - Ринн'раль Наирр-Сэндай + - Ринн'раль Ильн-Сэндай + - Ринн'раль Лейи-Сэндай + - Ринн'раль Кайр-Сэндай + - Ринн'раль Лиий-Сэндай + - Ринн'раль Иурр-Сэндай + - Ринн'раль Рейи-Сэндай + - Ринн'раль Нирру-Сэндай + - Ринн'раль Хинн-Сэндай + - Ринн'раль Сай-Сэндай + - Ринн'раль Неос-Сэндай + - Ринн'раль Синну-Сэндай + - Ринн'раль Саир-Сэндай + - Ринн'раль Нарри-Сэндай + - Ринн'раль Гайи-Сэндай + - Ринн'раль Нарр-Сэндай + - Ринн'раль Ренн-Сэндай + - Ринн'раль Сииун-Сэндай + - Айр'хинс Кайтам + - Айр'хинс Хадии + - Айр'хинс Сэндай + - Айр'хинс Року-Сэндай + - Айр'хинс Ниол-Сэндай + - Айр'хинс Ринуа-Сэндай + - Айр'хинс Року-Сэндай + - Айр'хинс Кайи-Сэндай + - Айр'хинс Айдам-Сэндай + - Айр'хинс Каии-Сэндай + - Айр'хинс Шенуар-Сэндай + - Айр'хинс Целлай-Сэндай + - Айр'хинс Релл-Сэндай + - Айр'хинс Файи-Сэндай + - Айр'хинс Наирр-Сэндай + - Айр'хинс Ильн-Сэндай + - Айр'хинс Лейи-Сэндай + - Айр'хинс Кайр-Сэндай + - Айр'хинс Лиий-Сэндай + - Айр'хинс Иурр-Сэндай + - Айр'хинс Рейи-Сэндай + - Айр'хинс Нирру-Сэндай + - Айр'хинс Хинн-Сэндай + - Айр'хинс Сай-Сэндай + - Айр'хинс Неос-Сэндай + - Айр'хинс Синну-Сэндай + - Айр'хинс Саир-Сэндай + - Айр'хинс Нарри-Сэндай + - Айр'хинс Гайи-Сэндай + - Айр'хинс Нарр-Сэндай + - Айр'хинс Ренн-Сэндай + - Айр'хинс Сииун-Сэндай + - Айр'ерс Кайтам + - Айр'ерс Хадии + - Айр'ерс Сэндай + - Айр'ерс Року-Сэндай + - Айр'ерс Ниол-Сэндай + - Айр'ерс Ринуа-Сэндай + - Айр'ерс Року-Сэндай + - Айр'ерс Кайи-Сэндай + - Айр'ерс Айдам-Сэндай + - Айр'ерс Каии-Сэндай + - Айр'ерс Шенуар-Сэндай + - Айр'ерс Целлай-Сэндай + - Айр'ерс Релл-Сэндай + - Айр'ерс Файи-Сэндай + - Айр'ерс Наирр-Сэндай + - Айр'ерс Ильн-Сэндай + - Айр'ерс Лейи-Сэндай + - Айр'ерс Кайр-Сэндай + - Айр'ерс Лиий-Сэндай + - Айр'ерс Иурр-Сэндай + - Айр'ерс Рейи-Сэндай + - Айр'ерс Нирру-Сэндай + - Айр'ерс Хинн-Сэндай + - Айр'ерс Сай-Сэндай + - Айр'ерс Неос-Сэндай + - Айр'ерс Синну-Сэндай + - Айр'ерс Саир-Сэндай + - Айр'ерс Нарри-Сэндай + - Айр'ерс Гайи-Сэндай + - Айр'ерс Нарр-Сэндай + - Айр'ерс Ренн-Сэндай + - Айр'ерс Сииун-Сэндай + - Айр'наи Кайтам + - Айр'наи Хадии + - Айр'наи Сэндай + - Айр'наи Року-Сэндай + - Айр'наи Ниол-Сэндай + - Айр'наи Ринуа-Сэндай + - Айр'наи Року-Сэндай + - Айр'наи Кайи-Сэндай + - Айр'наи Айдам-Сэндай + - Айр'наи Каии-Сэндай + - Айр'наи Шенуар-Сэндай + - Айр'наи Целлай-Сэндай + - Айр'наи Релл-Сэндай + - Айр'наи Файи-Сэндай + - Айр'наи Наирр-Сэндай + - Айр'наи Ильн-Сэндай + - Айр'наи Лейи-Сэндай + - Айр'наи Кайр-Сэндай + - Айр'наи Лиий-Сэндай + - Айр'наи Иурр-Сэндай + - Айр'наи Рейи-Сэндай + - Айр'наи Нирру-Сэндай + - Айр'наи Хинн-Сэндай + - Айр'наи Сай-Сэндай + - Айр'наи Неос-Сэндай + - Айр'наи Синну-Сэндай + - Айр'наи Саир-Сэндай + - Айр'наи Нарри-Сэндай + - Айр'наи Гайи-Сэндай + - Айр'наи Нарр-Сэндай + - Айр'наи Ренн-Сэндай + - Айр'наи Сииун-Сэндай + - Айр'тайль Кайтам + - Айр'тайль Хадии + - Айр'тайль Сэндай + - Айр'тайль Року-Сэндай + - Айр'тайль Ниол-Сэндай + - Айр'тайль Ринуа-Сэндай + - Айр'тайль Року-Сэндай + - Айр'тайль Кайи-Сэндай + - Айр'тайль Айдам-Сэндай + - Айр'тайль Каии-Сэндай + - Айр'тайль Шенуар-Сэндай + - Айр'тайль Целлай-Сэндай + - Айр'тайль Релл-Сэндай + - Айр'тайль Файи-Сэндай + - Айр'тайль Наирр-Сэндай + - Айр'тайль Ильн-Сэндай + - Айр'тайль Лейи-Сэндай + - Айр'тайль Кайр-Сэндай + - Айр'тайль Лиий-Сэндай + - Айр'тайль Иурр-Сэндай + - Айр'тайль Рейи-Сэндай + - Айр'тайль Нирру-Сэндай + - Айр'тайль Хинн-Сэндай + - Айр'тайль Сай-Сэндай + - Айр'тайль Неос-Сэндай + - Айр'тайль Синну-Сэндай + - Айр'тайль Саир-Сэндай + - Айр'тайль Нарри-Сэндай + - Айр'тайль Гайи-Сэндай + - Айр'тайль Нарр-Сэндай + - Айр'тайль Ренн-Сэндай + - Айр'тайль Сииун-Сэндай + - Айр'нер Кайтам + - Айр'нер Хадии + - Айр'нер Сэндай + - Айр'нер Року-Сэндай + - Айр'нер Ниол-Сэндай + - Айр'нер Ринуа-Сэндай + - Айр'нер Року-Сэндай + - Айр'нер Кайи-Сэндай + - Айр'нер Айдам-Сэндай + - Айр'нер Каии-Сэндай + - Айр'нер Шенуар-Сэндай + - Айр'нер Целлай-Сэндай + - Айр'нер Релл-Сэндай + - Айр'нер Файи-Сэндай + - Айр'нер Наирр-Сэндай + - Айр'нер Ильн-Сэндай + - Айр'нер Лейи-Сэндай + - Айр'нер Кайр-Сэндай + - Айр'нер Лиий-Сэндай + - Айр'нер Иурр-Сэндай + - Айр'нер Рейи-Сэндай + - Айр'нер Нирру-Сэндай + - Айр'нер Хинн-Сэндай + - Айр'нер Сай-Сэндай + - Айр'нер Неос-Сэндай + - Айр'нер Синну-Сэндай + - Айр'нер Саир-Сэндай + - Айр'нер Нарри-Сэндай + - Айр'нер Гайи-Сэндай + - Айр'нер Нарр-Сэндай + - Айр'нер Ренн-Сэндай + - Айр'нер Сииун-Сэндай + - Айр'н Кайтам + - Айр'н Хадии + - Айр'н Сэндай + - Айр'н Року-Сэндай + - Айр'н Ниол-Сэндай + - Айр'н Ринуа-Сэндай + - Айр'н Року-Сэндай + - Айр'н Кайи-Сэндай + - Айр'н Айдам-Сэндай + - Айр'н Каии-Сэндай + - Айр'н Шенуар-Сэндай + - Айр'н Целлай-Сэндай + - Айр'н Релл-Сэндай + - Айр'н Файи-Сэндай + - Айр'н Наирр-Сэндай + - Айр'н Ильн-Сэндай + - Айр'н Лейи-Сэндай + - Айр'н Кайр-Сэндай + - Айр'н Лиий-Сэндай + - Айр'н Иурр-Сэндай + - Айр'н Рейи-Сэндай + - Айр'н Нирру-Сэндай + - Айр'н Хинн-Сэндай + - Айр'н Сай-Сэндай + - Айр'н Неос-Сэндай + - Айр'н Синну-Сэндай + - Айр'н Саир-Сэндай + - Айр'н Нарри-Сэндай + - Айр'н Гайи-Сэндай + - Айр'н Нарр-Сэндай + - Айр'н Ренн-Сэндай + - Айр'н Сииун-Сэндай + - Айр'тай Кайтам + - Айр'тай Хадии + - Айр'тай Сэндай + - Айр'тай Року-Сэндай + - Айр'тай Ниол-Сэндай + - Айр'тай Ринуа-Сэндай + - Айр'тай Року-Сэндай + - Айр'тай Кайи-Сэндай + - Айр'тай Айдам-Сэндай + - Айр'тай Каии-Сэндай + - Айр'тай Шенуар-Сэндай + - Айр'тай Целлай-Сэндай + - Айр'тай Релл-Сэндай + - Айр'тай Файи-Сэндай + - Айр'тай Наирр-Сэндай + - Айр'тай Ильн-Сэндай + - Айр'тай Лейи-Сэндай + - Айр'тай Кайр-Сэндай + - Айр'тай Лиий-Сэндай + - Айр'тай Иурр-Сэндай + - Айр'тай Рейи-Сэндай + - Айр'тай Нирру-Сэндай + - Айр'тай Хинн-Сэндай + - Айр'тай Сай-Сэндай + - Айр'тай Неос-Сэндай + - Айр'тай Синну-Сэндай + - Айр'тай Саир-Сэндай + - Айр'тай Нарри-Сэндай + - Айр'тай Гайи-Сэндай + - Айр'тай Нарр-Сэндай + - Айр'тай Ренн-Сэндай + - Айр'тай Сииун-Сэндай + - Айр'ай Кайтам + - Айр'ай Хадии + - Айр'ай Сэндай + - Айр'ай Року-Сэндай + - Айр'ай Ниол-Сэндай + - Айр'ай Ринуа-Сэндай + - Айр'ай Року-Сэндай + - Айр'ай Кайи-Сэндай + - Айр'ай Айдам-Сэндай + - Айр'ай Каии-Сэндай + - Айр'ай Шенуар-Сэндай + - Айр'ай Целлай-Сэндай + - Айр'ай Релл-Сэндай + - Айр'ай Файи-Сэндай + - Айр'ай Наирр-Сэндай + - Айр'ай Ильн-Сэндай + - Айр'ай Лейи-Сэндай + - Айр'ай Кайр-Сэндай + - Айр'ай Лиий-Сэндай + - Айр'ай Иурр-Сэндай + - Айр'ай Рейи-Сэндай + - Айр'ай Нирру-Сэндай + - Айр'ай Хинн-Сэндай + - Айр'ай Сай-Сэндай + - Айр'ай Неос-Сэндай + - Айр'ай Синну-Сэндай + - Айр'ай Саир-Сэндай + - Айр'ай Нарри-Сэндай + - Айр'ай Гайи-Сэндай + - Айр'ай Нарр-Сэндай + - Айр'ай Ренн-Сэндай + - Айр'ай Сииун-Сэндай + - Айр'таи Кайтам + - Айр'таи Хадии + - Айр'таи Сэндай + - Айр'таи Року-Сэндай + - Айр'таи Ниол-Сэндай + - Айр'таи Ринуа-Сэндай + - Айр'таи Року-Сэндай + - Айр'таи Кайи-Сэндай + - Айр'таи Айдам-Сэндай + - Айр'таи Каии-Сэндай + - Айр'таи Шенуар-Сэндай + - Айр'таи Целлай-Сэндай + - Айр'таи Релл-Сэндай + - Айр'таи Файи-Сэндай + - Айр'таи Наирр-Сэндай + - Айр'таи Ильн-Сэндай + - Айр'таи Лейи-Сэндай + - Айр'таи Кайр-Сэндай + - Айр'таи Лиий-Сэндай + - Айр'таи Иурр-Сэндай + - Айр'таи Рейи-Сэндай + - Айр'таи Нирру-Сэндай + - Айр'таи Хинн-Сэндай + - Айр'таи Сай-Сэндай + - Айр'таи Неос-Сэндай + - Айр'таи Синну-Сэндай + - Айр'таи Саир-Сэндай + - Айр'таи Нарри-Сэндай + - Айр'таи Гайи-Сэндай + - Айр'таи Нарр-Сэндай + - Айр'таи Ренн-Сэндай + - Айр'таи Сииун-Сэндай + - Айр'нии Кайтам + - Айр'нии Хадии + - Айр'нии Сэндай + - Айр'нии Року-Сэндай + - Айр'нии Ниол-Сэндай + - Айр'нии Ринуа-Сэндай + - Айр'нии Року-Сэндай + - Айр'нии Кайи-Сэндай + - Айр'нии Айдам-Сэндай + - Айр'нии Каии-Сэндай + - Айр'нии Шенуар-Сэндай + - Айр'нии Целлай-Сэндай + - Айр'нии Релл-Сэндай + - Айр'нии Файи-Сэндай + - Айр'нии Наирр-Сэндай + - Айр'нии Ильн-Сэндай + - Айр'нии Лейи-Сэндай + - Айр'нии Кайр-Сэндай + - Айр'нии Лиий-Сэндай + - Айр'нии Иурр-Сэндай + - Айр'нии Рейи-Сэндай + - Айр'нии Нирру-Сэндай + - Айр'нии Хинн-Сэндай + - Айр'нии Сай-Сэндай + - Айр'нии Неос-Сэндай + - Айр'нии Синну-Сэндай + - Айр'нии Саир-Сэндай + - Айр'нии Нарри-Сэндай + - Айр'нии Гайи-Сэндай + - Айр'нии Нарр-Сэндай + - Айр'нии Ренн-Сэндай + - Айр'нии Сииун-Сэндай + - Айр'стай Кайтам + - Айр'стай Хадии + - Айр'стай Сэндай + - Айр'стай Року-Сэндай + - Айр'стай Ниол-Сэндай + - Айр'стай Ринуа-Сэндай + - Айр'стай Року-Сэндай + - Айр'стай Кайи-Сэндай + - Айр'стай Айдам-Сэндай + - Айр'стай Каии-Сэндай + - Айр'стай Шенуар-Сэндай + - Айр'стай Целлай-Сэндай + - Айр'стай Релл-Сэндай + - Айр'стай Файи-Сэндай + - Айр'стай Наирр-Сэндай + - Айр'стай Ильн-Сэндай + - Айр'стай Лейи-Сэндай + - Айр'стай Кайр-Сэндай + - Айр'стай Лиий-Сэндай + - Айр'стай Иурр-Сэндай + - Айр'стай Рейи-Сэндай + - Айр'стай Нирру-Сэндай + - Айр'стай Хинн-Сэндай + - Айр'стай Сай-Сэндай + - Айр'стай Неос-Сэндай + - Айр'стай Синну-Сэндай + - Айр'стай Саир-Сэндай + - Айр'стай Нарри-Сэндай + - Айр'стай Гайи-Сэндай + - Айр'стай Нарр-Сэндай + - Айр'стай Ренн-Сэндай + - Айр'стай Сииун-Сэндай + - Айр'нирр Кайтам + - Айр'нирр Хадии + - Айр'нирр Сэндай + - Айр'нирр Року-Сэндай + - Айр'нирр Ниол-Сэндай + - Айр'нирр Ринуа-Сэндай + - Айр'нирр Року-Сэндай + - Айр'нирр Кайи-Сэндай + - Айр'нирр Айдам-Сэндай + - Айр'нирр Каии-Сэндай + - Айр'нирр Шенуар-Сэндай + - Айр'нирр Целлай-Сэндай + - Айр'нирр Релл-Сэндай + - Айр'нирр Файи-Сэндай + - Айр'нирр Наирр-Сэндай + - Айр'нирр Ильн-Сэндай + - Айр'нирр Лейи-Сэндай + - Айр'нирр Кайр-Сэндай + - Айр'нирр Лиий-Сэндай + - Айр'нирр Иурр-Сэндай + - Айр'нирр Рейи-Сэндай + - Айр'нирр Нирру-Сэндай + - Айр'нирр Хинн-Сэндай + - Айр'нирр Сай-Сэндай + - Айр'нирр Неос-Сэндай + - Айр'нирр Синну-Сэндай + - Айр'нирр Саир-Сэндай + - Айр'нирр Нарри-Сэндай + - Айр'нирр Гайи-Сэндай + - Айр'нирр Нарр-Сэндай + - Айр'нирр Ренн-Сэндай + - Айр'нирр Сииун-Сэндай + - Айр'сай Кайтам + - Айр'сай Хадии + - Айр'сай Сэндай + - Айр'сай Року-Сэндай + - Айр'сай Ниол-Сэндай + - Айр'сай Ринуа-Сэндай + - Айр'сай Року-Сэндай + - Айр'сай Кайи-Сэндай + - Айр'сай Айдам-Сэндай + - Айр'сай Каии-Сэндай + - Айр'сай Шенуар-Сэндай + - Айр'сай Целлай-Сэндай + - Айр'сай Релл-Сэндай + - Айр'сай Файи-Сэндай + - Айр'сай Наирр-Сэндай + - Айр'сай Ильн-Сэндай + - Айр'сай Лейи-Сэндай + - Айр'сай Кайр-Сэндай + - Айр'сай Лиий-Сэндай + - Айр'сай Иурр-Сэндай + - Айр'сай Рейи-Сэндай + - Айр'сай Нирру-Сэндай + - Айр'сай Хинн-Сэндай + - Айр'сай Сай-Сэндай + - Айр'сай Неос-Сэндай + - Айр'сай Синну-Сэндай + - Айр'сай Саир-Сэндай + - Айр'сай Нарри-Сэндай + - Айр'сай Гайи-Сэндай + - Айр'сай Нарр-Сэндай + - Айр'сай Ренн-Сэндай + - Айр'сай Сииун-Сэндай + - Айр'раль Кайтам + - Айр'раль Хадии + - Айр'раль Сэндай + - Айр'раль Року-Сэндай + - Айр'раль Ниол-Сэндай + - Айр'раль Ринуа-Сэндай + - Айр'раль Року-Сэндай + - Айр'раль Кайи-Сэндай + - Айр'раль Айдам-Сэндай + - Айр'раль Каии-Сэндай + - Айр'раль Шенуар-Сэндай + - Айр'раль Целлай-Сэндай + - Айр'раль Релл-Сэндай + - Айр'раль Файи-Сэндай + - Айр'раль Наирр-Сэндай + - Айр'раль Ильн-Сэндай + - Айр'раль Лейи-Сэндай + - Айр'раль Кайр-Сэндай + - Айр'раль Лиий-Сэндай + - Айр'раль Иурр-Сэндай + - Айр'раль Рейи-Сэндай + - Айр'раль Нирру-Сэндай + - Айр'раль Хинн-Сэндай + - Айр'раль Сай-Сэндай + - Айр'раль Неос-Сэндай + - Айр'раль Синну-Сэндай + - Айр'раль Саир-Сэндай + - Айр'раль Нарри-Сэндай + - Айр'раль Гайи-Сэндай + - Айр'раль Нарр-Сэндай + - Айр'раль Ренн-Сэндай + - Айр'раль Сииун-Сэндай + - Эрр'хинс Кайтам + - Эрр'хинс Хадии + - Эрр'хинс Сэндай + - Эрр'хинс Року-Сэндай + - Эрр'хинс Ниол-Сэндай + - Эрр'хинс Ринуа-Сэндай + - Эрр'хинс Року-Сэндай + - Эрр'хинс Кайи-Сэндай + - Эрр'хинс Айдам-Сэндай + - Эрр'хинс Каии-Сэндай + - Эрр'хинс Шенуар-Сэндай + - Эрр'хинс Целлай-Сэндай + - Эрр'хинс Релл-Сэндай + - Эрр'хинс Файи-Сэндай + - Эрр'хинс Наирр-Сэндай + - Эрр'хинс Ильн-Сэндай + - Эрр'хинс Лейи-Сэндай + - Эрр'хинс Кайр-Сэндай + - Эрр'хинс Лиий-Сэндай + - Эрр'хинс Иурр-Сэндай + - Эрр'хинс Рейи-Сэндай + - Эрр'хинс Нирру-Сэндай + - Эрр'хинс Хинн-Сэндай + - Эрр'хинс Сай-Сэндай + - Эрр'хинс Неос-Сэндай + - Эрр'хинс Синну-Сэндай + - Эрр'хинс Саир-Сэндай + - Эрр'хинс Нарри-Сэндай + - Эрр'хинс Гайи-Сэндай + - Эрр'хинс Нарр-Сэндай + - Эрр'хинс Ренн-Сэндай + - Эрр'хинс Сииун-Сэндай + - Эрр'ерс Кайтам + - Эрр'ерс Хадии + - Эрр'ерс Сэндай + - Эрр'ерс Року-Сэндай + - Эрр'ерс Ниол-Сэндай + - Эрр'ерс Ринуа-Сэндай + - Эрр'ерс Року-Сэндай + - Эрр'ерс Кайи-Сэндай + - Эрр'ерс Айдам-Сэндай + - Эрр'ерс Каии-Сэндай + - Эрр'ерс Шенуар-Сэндай + - Эрр'ерс Целлай-Сэндай + - Эрр'ерс Релл-Сэндай + - Эрр'ерс Файи-Сэндай + - Эрр'ерс Наирр-Сэндай + - Эрр'ерс Ильн-Сэндай + - Эрр'ерс Лейи-Сэндай + - Эрр'ерс Кайр-Сэндай + - Эрр'ерс Лиий-Сэндай + - Эрр'ерс Иурр-Сэндай + - Эрр'ерс Рейи-Сэндай + - Эрр'ерс Нирру-Сэндай + - Эрр'ерс Хинн-Сэндай + - Эрр'ерс Сай-Сэндай + - Эрр'ерс Неос-Сэндай + - Эрр'ерс Синну-Сэндай + - Эрр'ерс Саир-Сэндай + - Эрр'ерс Нарри-Сэндай + - Эрр'ерс Гайи-Сэндай + - Эрр'ерс Нарр-Сэндай + - Эрр'ерс Ренн-Сэндай + - Эрр'ерс Сииун-Сэндай + - Эрр'наи Кайтам + - Эрр'наи Хадии + - Эрр'наи Сэндай + - Эрр'наи Року-Сэндай + - Эрр'наи Ниол-Сэндай + - Эрр'наи Ринуа-Сэндай + - Эрр'наи Року-Сэндай + - Эрр'наи Кайи-Сэндай + - Эрр'наи Айдам-Сэндай + - Эрр'наи Каии-Сэндай + - Эрр'наи Шенуар-Сэндай + - Эрр'наи Целлай-Сэндай + - Эрр'наи Релл-Сэндай + - Эрр'наи Файи-Сэндай + - Эрр'наи Наирр-Сэндай + - Эрр'наи Ильн-Сэндай + - Эрр'наи Лейи-Сэндай + - Эрр'наи Кайр-Сэндай + - Эрр'наи Лиий-Сэндай + - Эрр'наи Иурр-Сэндай + - Эрр'наи Рейи-Сэндай + - Эрр'наи Нирру-Сэндай + - Эрр'наи Хинн-Сэндай + - Эрр'наи Сай-Сэндай + - Эрр'наи Неос-Сэндай + - Эрр'наи Синну-Сэндай + - Эрр'наи Саир-Сэндай + - Эрр'наи Нарри-Сэндай + - Эрр'наи Гайи-Сэндай + - Эрр'наи Нарр-Сэндай + - Эрр'наи Ренн-Сэндай + - Эрр'наи Сииун-Сэндай + - Эрр'тайль Кайтам + - Эрр'тайль Хадии + - Эрр'тайль Сэндай + - Эрр'тайль Року-Сэндай + - Эрр'тайль Ниол-Сэндай + - Эрр'тайль Ринуа-Сэндай + - Эрр'тайль Року-Сэндай + - Эрр'тайль Кайи-Сэндай + - Эрр'тайль Айдам-Сэндай + - Эрр'тайль Каии-Сэндай + - Эрр'тайль Шенуар-Сэндай + - Эрр'тайль Целлай-Сэндай + - Эрр'тайль Релл-Сэндай + - Эрр'тайль Файи-Сэндай + - Эрр'тайль Наирр-Сэндай + - Эрр'тайль Ильн-Сэндай + - Эрр'тайль Лейи-Сэндай + - Эрр'тайль Кайр-Сэндай + - Эрр'тайль Лиий-Сэндай + - Эрр'тайль Иурр-Сэндай + - Эрр'тайль Рейи-Сэндай + - Эрр'тайль Нирру-Сэндай + - Эрр'тайль Хинн-Сэндай + - Эрр'тайль Сай-Сэндай + - Эрр'тайль Неос-Сэндай + - Эрр'тайль Синну-Сэндай + - Эрр'тайль Саир-Сэндай + - Эрр'тайль Нарри-Сэндай + - Эрр'тайль Гайи-Сэндай + - Эрр'тайль Нарр-Сэндай + - Эрр'тайль Ренн-Сэндай + - Эрр'тайль Сииун-Сэндай + - Эрр'нер Кайтам + - Эрр'нер Хадии + - Эрр'нер Сэндай + - Эрр'нер Року-Сэндай + - Эрр'нер Ниол-Сэндай + - Эрр'нер Ринуа-Сэндай + - Эрр'нер Року-Сэндай + - Эрр'нер Кайи-Сэндай + - Эрр'нер Айдам-Сэндай + - Эрр'нер Каии-Сэндай + - Эрр'нер Шенуар-Сэндай + - Эрр'нер Целлай-Сэндай + - Эрр'нер Релл-Сэндай + - Эрр'нер Файи-Сэндай + - Эрр'нер Наирр-Сэндай + - Эрр'нер Ильн-Сэндай + - Эрр'нер Лейи-Сэндай + - Эрр'нер Кайр-Сэндай + - Эрр'нер Лиий-Сэндай + - Эрр'нер Иурр-Сэндай + - Эрр'нер Рейи-Сэндай + - Эрр'нер Нирру-Сэндай + - Эрр'нер Хинн-Сэндай + - Эрр'нер Сай-Сэндай + - Эрр'нер Неос-Сэндай + - Эрр'нер Синну-Сэндай + - Эрр'нер Саир-Сэндай + - Эрр'нер Нарри-Сэндай + - Эрр'нер Гайи-Сэндай + - Эрр'нер Нарр-Сэндай + - Эрр'нер Ренн-Сэндай + - Эрр'нер Сииун-Сэндай + - Эрр'н Кайтам + - Эрр'н Хадии + - Эрр'н Сэндай + - Эрр'н Року-Сэндай + - Эрр'н Ниол-Сэндай + - Эрр'н Ринуа-Сэндай + - Эрр'н Року-Сэндай + - Эрр'н Кайи-Сэндай + - Эрр'н Айдам-Сэндай + - Эрр'н Каии-Сэндай + - Эрр'н Шенуар-Сэндай + - Эрр'н Целлай-Сэндай + - Эрр'н Релл-Сэндай + - Эрр'н Файи-Сэндай + - Эрр'н Наирр-Сэндай + - Эрр'н Ильн-Сэндай + - Эрр'н Лейи-Сэндай + - Эрр'н Кайр-Сэндай + - Эрр'н Лиий-Сэндай + - Эрр'н Иурр-Сэндай + - Эрр'н Рейи-Сэндай + - Эрр'н Нирру-Сэндай + - Эрр'н Хинн-Сэндай + - Эрр'н Сай-Сэндай + - Эрр'н Неос-Сэндай + - Эрр'н Синну-Сэндай + - Эрр'н Саир-Сэндай + - Эрр'н Нарри-Сэндай + - Эрр'н Гайи-Сэндай + - Эрр'н Нарр-Сэндай + - Эрр'н Ренн-Сэндай + - Эрр'н Сииун-Сэндай + - Эрр'тай Кайтам + - Эрр'тай Хадии + - Эрр'тай Сэндай + - Эрр'тай Року-Сэндай + - Эрр'тай Ниол-Сэндай + - Эрр'тай Ринуа-Сэндай + - Эрр'тай Року-Сэндай + - Эрр'тай Кайи-Сэндай + - Эрр'тай Айдам-Сэндай + - Эрр'тай Каии-Сэндай + - Эрр'тай Шенуар-Сэндай + - Эрр'тай Целлай-Сэндай + - Эрр'тай Релл-Сэндай + - Эрр'тай Файи-Сэндай + - Эрр'тай Наирр-Сэндай + - Эрр'тай Ильн-Сэндай + - Эрр'тай Лейи-Сэндай + - Эрр'тай Кайр-Сэндай + - Эрр'тай Лиий-Сэндай + - Эрр'тай Иурр-Сэндай + - Эрр'тай Рейи-Сэндай + - Эрр'тай Нирру-Сэндай + - Эрр'тай Хинн-Сэндай + - Эрр'тай Сай-Сэндай + - Эрр'тай Неос-Сэндай + - Эрр'тай Синну-Сэндай + - Эрр'тай Саир-Сэндай + - Эрр'тай Нарри-Сэндай + - Эрр'тай Гайи-Сэндай + - Эрр'тай Нарр-Сэндай + - Эрр'тай Ренн-Сэндай + - Эрр'тай Сииун-Сэндай + - Эрр'ай Кайтам + - Эрр'ай Хадии + - Эрр'ай Сэндай + - Эрр'ай Року-Сэндай + - Эрр'ай Ниол-Сэндай + - Эрр'ай Ринуа-Сэндай + - Эрр'ай Року-Сэндай + - Эрр'ай Кайи-Сэндай + - Эрр'ай Айдам-Сэндай + - Эрр'ай Каии-Сэндай + - Эрр'ай Шенуар-Сэндай + - Эрр'ай Целлай-Сэндай + - Эрр'ай Релл-Сэндай + - Эрр'ай Файи-Сэндай + - Эрр'ай Наирр-Сэндай + - Эрр'ай Ильн-Сэндай + - Эрр'ай Лейи-Сэндай + - Эрр'ай Кайр-Сэндай + - Эрр'ай Лиий-Сэндай + - Эрр'ай Иурр-Сэндай + - Эрр'ай Рейи-Сэндай + - Эрр'ай Нирру-Сэндай + - Эрр'ай Хинн-Сэндай + - Эрр'ай Сай-Сэндай + - Эрр'ай Неос-Сэндай + - Эрр'ай Синну-Сэндай + - Эрр'ай Саир-Сэндай + - Эрр'ай Нарри-Сэндай + - Эрр'ай Гайи-Сэндай + - Эрр'ай Нарр-Сэндай + - Эрр'ай Ренн-Сэндай + - Эрр'ай Сииун-Сэндай + - Эрр'таи Кайтам + - Эрр'таи Хадии + - Эрр'таи Сэндай + - Эрр'таи Року-Сэндай + - Эрр'таи Ниол-Сэндай + - Эрр'таи Ринуа-Сэндай + - Эрр'таи Року-Сэндай + - Эрр'таи Кайи-Сэндай + - Эрр'таи Айдам-Сэндай + - Эрр'таи Каии-Сэндай + - Эрр'таи Шенуар-Сэндай + - Эрр'таи Целлай-Сэндай + - Эрр'таи Релл-Сэндай + - Эрр'таи Файи-Сэндай + - Эрр'таи Наирр-Сэндай + - Эрр'таи Ильн-Сэндай + - Эрр'таи Лейи-Сэндай + - Эрр'таи Кайр-Сэндай + - Эрр'таи Лиий-Сэндай + - Эрр'таи Иурр-Сэндай + - Эрр'таи Рейи-Сэндай + - Эрр'таи Нирру-Сэндай + - Эрр'таи Хинн-Сэндай + - Эрр'таи Сай-Сэндай + - Эрр'таи Неос-Сэндай + - Эрр'таи Синну-Сэндай + - Эрр'таи Саир-Сэндай + - Эрр'таи Нарри-Сэндай + - Эрр'таи Гайи-Сэндай + - Эрр'таи Нарр-Сэндай + - Эрр'таи Ренн-Сэндай + - Эрр'таи Сииун-Сэндай + - Эрр'нии Кайтам + - Эрр'нии Хадии + - Эрр'нии Сэндай + - Эрр'нии Року-Сэндай + - Эрр'нии Ниол-Сэндай + - Эрр'нии Ринуа-Сэндай + - Эрр'нии Року-Сэндай + - Эрр'нии Кайи-Сэндай + - Эрр'нии Айдам-Сэндай + - Эрр'нии Каии-Сэндай + - Эрр'нии Шенуар-Сэндай + - Эрр'нии Целлай-Сэндай + - Эрр'нии Релл-Сэндай + - Эрр'нии Файи-Сэндай + - Эрр'нии Наирр-Сэндай + - Эрр'нии Ильн-Сэндай + - Эрр'нии Лейи-Сэндай + - Эрр'нии Кайр-Сэндай + - Эрр'нии Лиий-Сэндай + - Эрр'нии Иурр-Сэндай + - Эрр'нии Рейи-Сэндай + - Эрр'нии Нирру-Сэндай + - Эрр'нии Хинн-Сэндай + - Эрр'нии Сай-Сэндай + - Эрр'нии Неос-Сэндай + - Эрр'нии Синну-Сэндай + - Эрр'нии Саир-Сэндай + - Эрр'нии Нарри-Сэндай + - Эрр'нии Гайи-Сэндай + - Эрр'нии Нарр-Сэндай + - Эрр'нии Ренн-Сэндай + - Эрр'нии Сииун-Сэндай + - Эрр'стай Кайтам + - Эрр'стай Хадии + - Эрр'стай Сэндай + - Эрр'стай Року-Сэндай + - Эрр'стай Ниол-Сэндай + - Эрр'стай Ринуа-Сэндай + - Эрр'стай Року-Сэндай + - Эрр'стай Кайи-Сэндай + - Эрр'стай Айдам-Сэндай + - Эрр'стай Каии-Сэндай + - Эрр'стай Шенуар-Сэндай + - Эрр'стай Целлай-Сэндай + - Эрр'стай Релл-Сэндай + - Эрр'стай Файи-Сэндай + - Эрр'стай Наирр-Сэндай + - Эрр'стай Ильн-Сэндай + - Эрр'стай Лейи-Сэндай + - Эрр'стай Кайр-Сэндай + - Эрр'стай Лиий-Сэндай + - Эрр'стай Иурр-Сэндай + - Эрр'стай Рейи-Сэндай + - Эрр'стай Нирру-Сэндай + - Эрр'стай Хинн-Сэндай + - Эрр'стай Сай-Сэндай + - Эрр'стай Неос-Сэндай + - Эрр'стай Синну-Сэндай + - Эрр'стай Саир-Сэндай + - Эрр'стай Нарри-Сэндай + - Эрр'стай Гайи-Сэндай + - Эрр'стай Нарр-Сэндай + - Эрр'стай Ренн-Сэндай + - Эрр'стай Сииун-Сэндай + - Эрр'нирр Кайтам + - Эрр'нирр Хадии + - Эрр'нирр Сэндай + - Эрр'нирр Року-Сэндай + - Эрр'нирр Ниол-Сэндай + - Эрр'нирр Ринуа-Сэндай + - Эрр'нирр Року-Сэндай + - Эрр'нирр Кайи-Сэндай + - Эрр'нирр Айдам-Сэндай + - Эрр'нирр Каии-Сэндай + - Эрр'нирр Шенуар-Сэндай + - Эрр'нирр Целлай-Сэндай + - Эрр'нирр Релл-Сэндай + - Эрр'нирр Файи-Сэндай + - Эрр'нирр Наирр-Сэндай + - Эрр'нирр Ильн-Сэндай + - Эрр'нирр Лейи-Сэндай + - Эрр'нирр Кайр-Сэндай + - Эрр'нирр Лиий-Сэндай + - Эрр'нирр Иурр-Сэндай + - Эрр'нирр Рейи-Сэндай + - Эрр'нирр Нирру-Сэндай + - Эрр'нирр Хинн-Сэндай + - Эрр'нирр Сай-Сэндай + - Эрр'нирр Неос-Сэндай + - Эрр'нирр Синну-Сэндай + - Эрр'нирр Саир-Сэндай + - Эрр'нирр Нарри-Сэндай + - Эрр'нирр Гайи-Сэндай + - Эрр'нирр Нарр-Сэндай + - Эрр'нирр Ренн-Сэндай + - Эрр'нирр Сииун-Сэндай + - Эрр'сай Кайтам + - Эрр'сай Хадии + - Эрр'сай Сэндай + - Эрр'сай Року-Сэндай + - Эрр'сай Ниол-Сэндай + - Эрр'сай Ринуа-Сэндай + - Эрр'сай Року-Сэндай + - Эрр'сай Кайи-Сэндай + - Эрр'сай Айдам-Сэндай + - Эрр'сай Каии-Сэндай + - Эрр'сай Шенуар-Сэндай + - Эрр'сай Целлай-Сэндай + - Эрр'сай Релл-Сэндай + - Эрр'сай Файи-Сэндай + - Эрр'сай Наирр-Сэндай + - Эрр'сай Ильн-Сэндай + - Эрр'сай Лейи-Сэндай + - Эрр'сай Кайр-Сэндай + - Эрр'сай Лиий-Сэндай + - Эрр'сай Иурр-Сэндай + - Эрр'сай Рейи-Сэндай + - Эрр'сай Нирру-Сэндай + - Эрр'сай Хинн-Сэндай + - Эрр'сай Сай-Сэндай + - Эрр'сай Неос-Сэндай + - Эрр'сай Синну-Сэндай + - Эрр'сай Саир-Сэндай + - Эрр'сай Нарри-Сэндай + - Эрр'сай Гайи-Сэндай + - Эрр'сай Нарр-Сэндай + - Эрр'сай Ренн-Сэндай + - Эрр'сай Сииун-Сэндай + - Эрр'раль Кайтам + - Эрр'раль Хадии + - Эрр'раль Сэндай + - Эрр'раль Року-Сэндай + - Эрр'раль Ниол-Сэндай + - Эрр'раль Ринуа-Сэндай + - Эрр'раль Року-Сэндай + - Эрр'раль Кайи-Сэндай + - Эрр'раль Айдам-Сэндай + - Эрр'раль Каии-Сэндай + - Эрр'раль Шенуар-Сэндай + - Эрр'раль Целлай-Сэндай + - Эрр'раль Релл-Сэндай + - Эрр'раль Файи-Сэндай + - Эрр'раль Наирр-Сэндай + - Эрр'раль Ильн-Сэндай + - Эрр'раль Лейи-Сэндай + - Эрр'раль Кайр-Сэндай + - Эрр'раль Лиий-Сэндай + - Эрр'раль Иурр-Сэндай + - Эрр'раль Рейи-Сэндай + - Эрр'раль Нирру-Сэндай + - Эрр'раль Хинн-Сэндай + - Эрр'раль Сай-Сэндай + - Эрр'раль Неос-Сэндай + - Эрр'раль Синну-Сэндай + - Эрр'раль Саир-Сэндай + - Эрр'раль Нарри-Сэндай + - Эрр'раль Гайи-Сэндай + - Эрр'раль Нарр-Сэндай + - Эрр'раль Ренн-Сэндай + - Эрр'раль Сииун-Сэндай + - Рии'хинс Кайтам + - Рии'хинс Хадии + - Рии'хинс Сэндай + - Рии'хинс Року-Сэндай + - Рии'хинс Ниол-Сэндай + - Рии'хинс Ринуа-Сэндай + - Рии'хинс Року-Сэндай + - Рии'хинс Кайи-Сэндай + - Рии'хинс Айдам-Сэндай + - Рии'хинс Каии-Сэндай + - Рии'хинс Шенуар-Сэндай + - Рии'хинс Целлай-Сэндай + - Рии'хинс Релл-Сэндай + - Рии'хинс Файи-Сэндай + - Рии'хинс Наирр-Сэндай + - Рии'хинс Ильн-Сэндай + - Рии'хинс Лейи-Сэндай + - Рии'хинс Кайр-Сэндай + - Рии'хинс Лиий-Сэндай + - Рии'хинс Иурр-Сэндай + - Рии'хинс Рейи-Сэндай + - Рии'хинс Нирру-Сэндай + - Рии'хинс Хинн-Сэндай + - Рии'хинс Сай-Сэндай + - Рии'хинс Неос-Сэндай + - Рии'хинс Синну-Сэндай + - Рии'хинс Саир-Сэндай + - Рии'хинс Нарри-Сэндай + - Рии'хинс Гайи-Сэндай + - Рии'хинс Нарр-Сэндай + - Рии'хинс Ренн-Сэндай + - Рии'хинс Сииун-Сэндай + - Рии'ерс Кайтам + - Рии'ерс Хадии + - Рии'ерс Сэндай + - Рии'ерс Року-Сэндай + - Рии'ерс Ниол-Сэндай + - Рии'ерс Ринуа-Сэндай + - Рии'ерс Року-Сэндай + - Рии'ерс Кайи-Сэндай + - Рии'ерс Айдам-Сэндай + - Рии'ерс Каии-Сэндай + - Рии'ерс Шенуар-Сэндай + - Рии'ерс Целлай-Сэндай + - Рии'ерс Релл-Сэндай + - Рии'ерс Файи-Сэндай + - Рии'ерс Наирр-Сэндай + - Рии'ерс Ильн-Сэндай + - Рии'ерс Лейи-Сэндай + - Рии'ерс Кайр-Сэндай + - Рии'ерс Лиий-Сэндай + - Рии'ерс Иурр-Сэндай + - Рии'ерс Рейи-Сэндай + - Рии'ерс Нирру-Сэндай + - Рии'ерс Хинн-Сэндай + - Рии'ерс Сай-Сэндай + - Рии'ерс Неос-Сэндай + - Рии'ерс Синну-Сэндай + - Рии'ерс Саир-Сэндай + - Рии'ерс Нарри-Сэндай + - Рии'ерс Гайи-Сэндай + - Рии'ерс Нарр-Сэндай + - Рии'ерс Ренн-Сэндай + - Рии'ерс Сииун-Сэндай + - Рии'наи Кайтам + - Рии'наи Хадии + - Рии'наи Сэндай + - Рии'наи Року-Сэндай + - Рии'наи Ниол-Сэндай + - Рии'наи Ринуа-Сэндай + - Рии'наи Року-Сэндай + - Рии'наи Кайи-Сэндай + - Рии'наи Айдам-Сэндай + - Рии'наи Каии-Сэндай + - Рии'наи Шенуар-Сэндай + - Рии'наи Целлай-Сэндай + - Рии'наи Релл-Сэндай + - Рии'наи Файи-Сэндай + - Рии'наи Наирр-Сэндай + - Рии'наи Ильн-Сэндай + - Рии'наи Лейи-Сэндай + - Рии'наи Кайр-Сэндай + - Рии'наи Лиий-Сэндай + - Рии'наи Иурр-Сэндай + - Рии'наи Рейи-Сэндай + - Рии'наи Нирру-Сэндай + - Рии'наи Хинн-Сэндай + - Рии'наи Сай-Сэндай + - Рии'наи Неос-Сэндай + - Рии'наи Синну-Сэндай + - Рии'наи Саир-Сэндай + - Рии'наи Нарри-Сэндай + - Рии'наи Гайи-Сэндай + - Рии'наи Нарр-Сэндай + - Рии'наи Ренн-Сэндай + - Рии'наи Сииун-Сэндай + - Рии'тайль Кайтам + - Рии'тайль Хадии + - Рии'тайль Сэндай + - Рии'тайль Року-Сэндай + - Рии'тайль Ниол-Сэндай + - Рии'тайль Ринуа-Сэндай + - Рии'тайль Року-Сэндай + - Рии'тайль Кайи-Сэндай + - Рии'тайль Айдам-Сэндай + - Рии'тайль Каии-Сэндай + - Рии'тайль Шенуар-Сэндай + - Рии'тайль Целлай-Сэндай + - Рии'тайль Релл-Сэндай + - Рии'тайль Файи-Сэндай + - Рии'тайль Наирр-Сэндай + - Рии'тайль Ильн-Сэндай + - Рии'тайль Лейи-Сэндай + - Рии'тайль Кайр-Сэндай + - Рии'тайль Лиий-Сэндай + - Рии'тайль Иурр-Сэндай + - Рии'тайль Рейи-Сэндай + - Рии'тайль Нирру-Сэндай + - Рии'тайль Хинн-Сэндай + - Рии'тайль Сай-Сэндай + - Рии'тайль Неос-Сэндай + - Рии'тайль Синну-Сэндай + - Рии'тайль Саир-Сэндай + - Рии'тайль Нарри-Сэндай + - Рии'тайль Гайи-Сэндай + - Рии'тайль Нарр-Сэндай + - Рии'тайль Ренн-Сэндай + - Рии'тайль Сииун-Сэндай + - Рии'нер Кайтам + - Рии'нер Хадии + - Рии'нер Сэндай + - Рии'нер Року-Сэндай + - Рии'нер Ниол-Сэндай + - Рии'нер Ринуа-Сэндай + - Рии'нер Року-Сэндай + - Рии'нер Кайи-Сэндай + - Рии'нер Айдам-Сэндай + - Рии'нер Каии-Сэндай + - Рии'нер Шенуар-Сэндай + - Рии'нер Целлай-Сэндай + - Рии'нер Релл-Сэндай + - Рии'нер Файи-Сэндай + - Рии'нер Наирр-Сэндай + - Рии'нер Ильн-Сэндай + - Рии'нер Лейи-Сэндай + - Рии'нер Кайр-Сэндай + - Рии'нер Лиий-Сэндай + - Рии'нер Иурр-Сэндай + - Рии'нер Рейи-Сэндай + - Рии'нер Нирру-Сэндай + - Рии'нер Хинн-Сэндай + - Рии'нер Сай-Сэндай + - Рии'нер Неос-Сэндай + - Рии'нер Синну-Сэндай + - Рии'нер Саир-Сэндай + - Рии'нер Нарри-Сэндай + - Рии'нер Гайи-Сэндай + - Рии'нер Нарр-Сэндай + - Рии'нер Ренн-Сэндай + - Рии'нер Сииун-Сэндай + - Рии'н Кайтам + - Рии'н Хадии + - Рии'н Сэндай + - Рии'н Року-Сэндай + - Рии'н Ниол-Сэндай + - Рии'н Ринуа-Сэндай + - Рии'н Року-Сэндай + - Рии'н Кайи-Сэндай + - Рии'н Айдам-Сэндай + - Рии'н Каии-Сэндай + - Рии'н Шенуар-Сэндай + - Рии'н Целлай-Сэндай + - Рии'н Релл-Сэндай + - Рии'н Файи-Сэндай + - Рии'н Наирр-Сэндай + - Рии'н Ильн-Сэндай + - Рии'н Лейи-Сэндай + - Рии'н Кайр-Сэндай + - Рии'н Лиий-Сэндай + - Рии'н Иурр-Сэндай + - Рии'н Рейи-Сэндай + - Рии'н Нирру-Сэндай + - Рии'н Хинн-Сэндай + - Рии'н Сай-Сэндай + - Рии'н Неос-Сэндай + - Рии'н Синну-Сэндай + - Рии'н Саир-Сэндай + - Рии'н Нарри-Сэндай + - Рии'н Гайи-Сэндай + - Рии'н Нарр-Сэндай + - Рии'н Ренн-Сэндай + - Рии'н Сииун-Сэндай + - Рии'тай Кайтам + - Рии'тай Хадии + - Рии'тай Сэндай + - Рии'тай Року-Сэндай + - Рии'тай Ниол-Сэндай + - Рии'тай Ринуа-Сэндай + - Рии'тай Року-Сэндай + - Рии'тай Кайи-Сэндай + - Рии'тай Айдам-Сэндай + - Рии'тай Каии-Сэндай + - Рии'тай Шенуар-Сэндай + - Рии'тай Целлай-Сэндай + - Рии'тай Релл-Сэндай + - Рии'тай Файи-Сэндай + - Рии'тай Наирр-Сэндай + - Рии'тай Ильн-Сэндай + - Рии'тай Лейи-Сэндай + - Рии'тай Кайр-Сэндай + - Рии'тай Лиий-Сэндай + - Рии'тай Иурр-Сэндай + - Рии'тай Рейи-Сэндай + - Рии'тай Нирру-Сэндай + - Рии'тай Хинн-Сэндай + - Рии'тай Сай-Сэндай + - Рии'тай Неос-Сэндай + - Рии'тай Синну-Сэндай + - Рии'тай Саир-Сэндай + - Рии'тай Нарри-Сэндай + - Рии'тай Гайи-Сэндай + - Рии'тай Нарр-Сэндай + - Рии'тай Ренн-Сэндай + - Рии'тай Сииун-Сэндай + - Рии'ай Кайтам + - Рии'ай Хадии + - Рии'ай Сэндай + - Рии'ай Року-Сэндай + - Рии'ай Ниол-Сэндай + - Рии'ай Ринуа-Сэндай + - Рии'ай Року-Сэндай + - Рии'ай Кайи-Сэндай + - Рии'ай Айдам-Сэндай + - Рии'ай Каии-Сэндай + - Рии'ай Шенуар-Сэндай + - Рии'ай Целлай-Сэндай + - Рии'ай Релл-Сэндай + - Рии'ай Файи-Сэндай + - Рии'ай Наирр-Сэндай + - Рии'ай Ильн-Сэндай + - Рии'ай Лейи-Сэндай + - Рии'ай Кайр-Сэндай + - Рии'ай Лиий-Сэндай + - Рии'ай Иурр-Сэндай + - Рии'ай Рейи-Сэндай + - Рии'ай Нирру-Сэндай + - Рии'ай Хинн-Сэндай + - Рии'ай Сай-Сэндай + - Рии'ай Неос-Сэндай + - Рии'ай Синну-Сэндай + - Рии'ай Саир-Сэндай + - Рии'ай Нарри-Сэндай + - Рии'ай Гайи-Сэндай + - Рии'ай Нарр-Сэндай + - Рии'ай Ренн-Сэндай + - Рии'ай Сииун-Сэндай + - Рии'таи Кайтам + - Рии'таи Хадии + - Рии'таи Сэндай + - Рии'таи Року-Сэндай + - Рии'таи Ниол-Сэндай + - Рии'таи Ринуа-Сэндай + - Рии'таи Року-Сэндай + - Рии'таи Кайи-Сэндай + - Рии'таи Айдам-Сэндай + - Рии'таи Каии-Сэндай + - Рии'таи Шенуар-Сэндай + - Рии'таи Целлай-Сэндай + - Рии'таи Релл-Сэндай + - Рии'таи Файи-Сэндай + - Рии'таи Наирр-Сэндай + - Рии'таи Ильн-Сэндай + - Рии'таи Лейи-Сэндай + - Рии'таи Кайр-Сэндай + - Рии'таи Лиий-Сэндай + - Рии'таи Иурр-Сэндай + - Рии'таи Рейи-Сэндай + - Рии'таи Нирру-Сэндай + - Рии'таи Хинн-Сэндай + - Рии'таи Сай-Сэндай + - Рии'таи Неос-Сэндай + - Рии'таи Синну-Сэндай + - Рии'таи Саир-Сэндай + - Рии'таи Нарри-Сэндай + - Рии'таи Гайи-Сэндай + - Рии'таи Нарр-Сэндай + - Рии'таи Ренн-Сэндай + - Рии'таи Сииун-Сэндай + - Рии'нии Кайтам + - Рии'нии Хадии + - Рии'нии Сэндай + - Рии'нии Року-Сэндай + - Рии'нии Ниол-Сэндай + - Рии'нии Ринуа-Сэндай + - Рии'нии Року-Сэндай + - Рии'нии Кайи-Сэндай + - Рии'нии Айдам-Сэндай + - Рии'нии Каии-Сэндай + - Рии'нии Шенуар-Сэндай + - Рии'нии Целлай-Сэндай + - Рии'нии Релл-Сэндай + - Рии'нии Файи-Сэндай + - Рии'нии Наирр-Сэндай + - Рии'нии Ильн-Сэндай + - Рии'нии Лейи-Сэндай + - Рии'нии Кайр-Сэндай + - Рии'нии Лиий-Сэндай + - Рии'нии Иурр-Сэндай + - Рии'нии Рейи-Сэндай + - Рии'нии Нирру-Сэндай + - Рии'нии Хинн-Сэндай + - Рии'нии Сай-Сэндай + - Рии'нии Неос-Сэндай + - Рии'нии Синну-Сэндай + - Рии'нии Саир-Сэндай + - Рии'нии Нарри-Сэндай + - Рии'нии Гайи-Сэндай + - Рии'нии Нарр-Сэндай + - Рии'нии Ренн-Сэндай + - Рии'нии Сииун-Сэндай + - Рии'стай Кайтам + - Рии'стай Хадии + - Рии'стай Сэндай + - Рии'стай Року-Сэндай + - Рии'стай Ниол-Сэндай + - Рии'стай Ринуа-Сэндай + - Рии'стай Року-Сэндай + - Рии'стай Кайи-Сэндай + - Рии'стай Айдам-Сэндай + - Рии'стай Каии-Сэндай + - Рии'стай Шенуар-Сэндай + - Рии'стай Целлай-Сэндай + - Рии'стай Релл-Сэндай + - Рии'стай Файи-Сэндай + - Рии'стай Наирр-Сэндай + - Рии'стай Ильн-Сэндай + - Рии'стай Лейи-Сэндай + - Рии'стай Кайр-Сэндай + - Рии'стай Лиий-Сэндай + - Рии'стай Иурр-Сэндай + - Рии'стай Рейи-Сэндай + - Рии'стай Нирру-Сэндай + - Рии'стай Хинн-Сэндай + - Рии'стай Сай-Сэндай + - Рии'стай Неос-Сэндай + - Рии'стай Синну-Сэндай + - Рии'стай Саир-Сэндай + - Рии'стай Нарри-Сэндай + - Рии'стай Гайи-Сэндай + - Рии'стай Нарр-Сэндай + - Рии'стай Ренн-Сэндай + - Рии'стай Сииун-Сэндай + - Рии'нирр Кайтам + - Рии'нирр Хадии + - Рии'нирр Сэндай + - Рии'нирр Року-Сэндай + - Рии'нирр Ниол-Сэндай + - Рии'нирр Ринуа-Сэндай + - Рии'нирр Року-Сэндай + - Рии'нирр Кайи-Сэндай + - Рии'нирр Айдам-Сэндай + - Рии'нирр Каии-Сэндай + - Рии'нирр Шенуар-Сэндай + - Рии'нирр Целлай-Сэндай + - Рии'нирр Релл-Сэндай + - Рии'нирр Файи-Сэндай + - Рии'нирр Наирр-Сэндай + - Рии'нирр Ильн-Сэндай + - Рии'нирр Лейи-Сэндай + - Рии'нирр Кайр-Сэндай + - Рии'нирр Лиий-Сэндай + - Рии'нирр Иурр-Сэндай + - Рии'нирр Рейи-Сэндай + - Рии'нирр Нирру-Сэндай + - Рии'нирр Хинн-Сэндай + - Рии'нирр Сай-Сэндай + - Рии'нирр Неос-Сэндай + - Рии'нирр Синну-Сэндай + - Рии'нирр Саир-Сэндай + - Рии'нирр Нарри-Сэндай + - Рии'нирр Гайи-Сэндай + - Рии'нирр Нарр-Сэндай + - Рии'нирр Ренн-Сэндай + - Рии'нирр Сииун-Сэндай + - Рии'сай Кайтам + - Рии'сай Хадии + - Рии'сай Сэндай + - Рии'сай Року-Сэндай + - Рии'сай Ниол-Сэндай + - Рии'сай Ринуа-Сэндай + - Рии'сай Року-Сэндай + - Рии'сай Кайи-Сэндай + - Рии'сай Айдам-Сэндай + - Рии'сай Каии-Сэндай + - Рии'сай Шенуар-Сэндай + - Рии'сай Целлай-Сэндай + - Рии'сай Релл-Сэндай + - Рии'сай Файи-Сэндай + - Рии'сай Наирр-Сэндай + - Рии'сай Ильн-Сэндай + - Рии'сай Лейи-Сэндай + - Рии'сай Кайр-Сэндай + - Рии'сай Лиий-Сэндай + - Рии'сай Иурр-Сэндай + - Рии'сай Рейи-Сэндай + - Рии'сай Нирру-Сэндай + - Рии'сай Хинн-Сэндай + - Рии'сай Сай-Сэндай + - Рии'сай Неос-Сэндай + - Рии'сай Синну-Сэндай + - Рии'сай Саир-Сэндай + - Рии'сай Нарри-Сэндай + - Рии'сай Гайи-Сэндай + - Рии'сай Нарр-Сэндай + - Рии'сай Ренн-Сэндай + - Рии'сай Сииун-Сэндай + - Рии'раль Кайтам + - Рии'раль Хадии + - Рии'раль Сэндай + - Рии'раль Року-Сэндай + - Рии'раль Ниол-Сэндай + - Рии'раль Ринуа-Сэндай + - Рии'раль Року-Сэндай + - Рии'раль Кайи-Сэндай + - Рии'раль Айдам-Сэндай + - Рии'раль Каии-Сэндай + - Рии'раль Шенуар-Сэндай + - Рии'раль Целлай-Сэндай + - Рии'раль Релл-Сэндай + - Рии'раль Файи-Сэндай + - Рии'раль Наирр-Сэндай + - Рии'раль Ильн-Сэндай + - Рии'раль Лейи-Сэндай + - Рии'раль Кайр-Сэндай + - Рии'раль Лиий-Сэндай + - Рии'раль Иурр-Сэндай + - Рии'раль Рейи-Сэндай + - Рии'раль Нирру-Сэндай + - Рии'раль Хинн-Сэндай + - Рии'раль Сай-Сэндай + - Рии'раль Неос-Сэндай + - Рии'раль Синну-Сэндай + - Рии'раль Саир-Сэндай + - Рии'раль Нарри-Сэндай + - Рии'раль Гайи-Сэндай + - Рии'раль Нарр-Сэндай + - Рии'раль Ренн-Сэндай + - Рии'раль Сииун-Сэндай + - Най'хинс Кайтам + - Най'хинс Хадии + - Най'хинс Сэндай + - Най'хинс Року-Сэндай + - Най'хинс Ниол-Сэндай + - Най'хинс Ринуа-Сэндай + - Най'хинс Року-Сэндай + - Най'хинс Кайи-Сэндай + - Най'хинс Айдам-Сэндай + - Най'хинс Каии-Сэндай + - Най'хинс Шенуар-Сэндай + - Най'хинс Целлай-Сэндай + - Най'хинс Релл-Сэндай + - Най'хинс Файи-Сэндай + - Най'хинс Наирр-Сэндай + - Най'хинс Ильн-Сэндай + - Най'хинс Лейи-Сэндай + - Най'хинс Кайр-Сэндай + - Най'хинс Лиий-Сэндай + - Най'хинс Иурр-Сэндай + - Най'хинс Рейи-Сэндай + - Най'хинс Нирру-Сэндай + - Най'хинс Хинн-Сэндай + - Най'хинс Сай-Сэндай + - Най'хинс Неос-Сэндай + - Най'хинс Синну-Сэндай + - Най'хинс Саир-Сэндай + - Най'хинс Нарри-Сэндай + - Най'хинс Гайи-Сэндай + - Най'хинс Нарр-Сэндай + - Най'хинс Ренн-Сэндай + - Най'хинс Сииун-Сэндай + - Най'ерс Кайтам + - Най'ерс Хадии + - Най'ерс Сэндай + - Най'ерс Року-Сэндай + - Най'ерс Ниол-Сэндай + - Най'ерс Ринуа-Сэндай + - Най'ерс Року-Сэндай + - Най'ерс Кайи-Сэндай + - Най'ерс Айдам-Сэндай + - Най'ерс Каии-Сэндай + - Най'ерс Шенуар-Сэндай + - Най'ерс Целлай-Сэндай + - Най'ерс Релл-Сэндай + - Най'ерс Файи-Сэндай + - Най'ерс Наирр-Сэндай + - Най'ерс Ильн-Сэндай + - Най'ерс Лейи-Сэндай + - Най'ерс Кайр-Сэндай + - Най'ерс Лиий-Сэндай + - Най'ерс Иурр-Сэндай + - Най'ерс Рейи-Сэндай + - Най'ерс Нирру-Сэндай + - Най'ерс Хинн-Сэндай + - Най'ерс Сай-Сэндай + - Най'ерс Неос-Сэндай + - Най'ерс Синну-Сэндай + - Най'ерс Саир-Сэндай + - Най'ерс Нарри-Сэндай + - Най'ерс Гайи-Сэндай + - Най'ерс Нарр-Сэндай + - Най'ерс Ренн-Сэндай + - Най'ерс Сииун-Сэндай + - Най'наи Кайтам + - Най'наи Хадии + - Най'наи Сэндай + - Най'наи Року-Сэндай + - Най'наи Ниол-Сэндай + - Най'наи Ринуа-Сэндай + - Най'наи Року-Сэндай + - Най'наи Кайи-Сэндай + - Най'наи Айдам-Сэндай + - Най'наи Каии-Сэндай + - Най'наи Шенуар-Сэндай + - Най'наи Целлай-Сэндай + - Най'наи Релл-Сэндай + - Най'наи Файи-Сэндай + - Най'наи Наирр-Сэндай + - Най'наи Ильн-Сэндай + - Най'наи Лейи-Сэндай + - Най'наи Кайр-Сэндай + - Най'наи Лиий-Сэндай + - Най'наи Иурр-Сэндай + - Най'наи Рейи-Сэндай + - Най'наи Нирру-Сэндай + - Най'наи Хинн-Сэндай + - Най'наи Сай-Сэндай + - Най'наи Неос-Сэндай + - Най'наи Синну-Сэндай + - Най'наи Саир-Сэндай + - Най'наи Нарри-Сэндай + - Най'наи Гайи-Сэндай + - Най'наи Нарр-Сэндай + - Най'наи Ренн-Сэндай + - Най'наи Сииун-Сэндай + - Най'тайль Кайтам + - Най'тайль Хадии + - Най'тайль Сэндай + - Най'тайль Року-Сэндай + - Най'тайль Ниол-Сэндай + - Най'тайль Ринуа-Сэндай + - Най'тайль Року-Сэндай + - Най'тайль Кайи-Сэндай + - Най'тайль Айдам-Сэндай + - Най'тайль Каии-Сэндай + - Най'тайль Шенуар-Сэндай + - Най'тайль Целлай-Сэндай + - Най'тайль Релл-Сэндай + - Най'тайль Файи-Сэндай + - Най'тайль Наирр-Сэндай + - Най'тайль Ильн-Сэндай + - Най'тайль Лейи-Сэндай + - Най'тайль Кайр-Сэндай + - Най'тайль Лиий-Сэндай + - Най'тайль Иурр-Сэндай + - Най'тайль Рейи-Сэндай + - Най'тайль Нирру-Сэндай + - Най'тайль Хинн-Сэндай + - Най'тайль Сай-Сэндай + - Най'тайль Неос-Сэндай + - Най'тайль Синну-Сэндай + - Най'тайль Саир-Сэндай + - Най'тайль Нарри-Сэндай + - Най'тайль Гайи-Сэндай + - Най'тайль Нарр-Сэндай + - Най'тайль Ренн-Сэндай + - Най'тайль Сииун-Сэндай + - Най'нер Кайтам + - Най'нер Хадии + - Най'нер Сэндай + - Най'нер Року-Сэндай + - Най'нер Ниол-Сэндай + - Най'нер Ринуа-Сэндай + - Най'нер Року-Сэндай + - Най'нер Кайи-Сэндай + - Най'нер Айдам-Сэндай + - Най'нер Каии-Сэндай + - Най'нер Шенуар-Сэндай + - Най'нер Целлай-Сэндай + - Най'нер Релл-Сэндай + - Най'нер Файи-Сэндай + - Най'нер Наирр-Сэндай + - Най'нер Ильн-Сэндай + - Най'нер Лейи-Сэндай + - Най'нер Кайр-Сэндай + - Най'нер Лиий-Сэндай + - Най'нер Иурр-Сэндай + - Най'нер Рейи-Сэндай + - Най'нер Нирру-Сэндай + - Най'нер Хинн-Сэндай + - Най'нер Сай-Сэндай + - Най'нер Неос-Сэндай + - Най'нер Синну-Сэндай + - Най'нер Саир-Сэндай + - Най'нер Нарри-Сэндай + - Най'нер Гайи-Сэндай + - Най'нер Нарр-Сэндай + - Най'нер Ренн-Сэндай + - Най'нер Сииун-Сэндай + - Най'н Кайтам + - Най'н Хадии + - Най'н Сэндай + - Най'н Року-Сэндай + - Най'н Ниол-Сэндай + - Най'н Ринуа-Сэндай + - Най'н Року-Сэндай + - Най'н Кайи-Сэндай + - Най'н Айдам-Сэндай + - Най'н Каии-Сэндай + - Най'н Шенуар-Сэндай + - Най'н Целлай-Сэндай + - Най'н Релл-Сэндай + - Най'н Файи-Сэндай + - Най'н Наирр-Сэндай + - Най'н Ильн-Сэндай + - Най'н Лейи-Сэндай + - Най'н Кайр-Сэндай + - Най'н Лиий-Сэндай + - Най'н Иурр-Сэндай + - Най'н Рейи-Сэндай + - Най'н Нирру-Сэндай + - Най'н Хинн-Сэндай + - Най'н Сай-Сэндай + - Най'н Неос-Сэндай + - Най'н Синну-Сэндай + - Най'н Саир-Сэндай + - Най'н Нарри-Сэндай + - Най'н Гайи-Сэндай + - Най'н Нарр-Сэндай + - Най'н Ренн-Сэндай + - Най'н Сииун-Сэндай + - Най'тай Кайтам + - Най'тай Хадии + - Най'тай Сэндай + - Най'тай Року-Сэндай + - Най'тай Ниол-Сэндай + - Най'тай Ринуа-Сэндай + - Най'тай Року-Сэндай + - Най'тай Кайи-Сэндай + - Най'тай Айдам-Сэндай + - Най'тай Каии-Сэндай + - Най'тай Шенуар-Сэндай + - Най'тай Целлай-Сэндай + - Най'тай Релл-Сэндай + - Най'тай Файи-Сэндай + - Най'тай Наирр-Сэндай + - Най'тай Ильн-Сэндай + - Най'тай Лейи-Сэндай + - Най'тай Кайр-Сэндай + - Най'тай Лиий-Сэндай + - Най'тай Иурр-Сэндай + - Най'тай Рейи-Сэндай + - Най'тай Нирру-Сэндай + - Най'тай Хинн-Сэндай + - Най'тай Сай-Сэндай + - Най'тай Неос-Сэндай + - Най'тай Синну-Сэндай + - Най'тай Саир-Сэндай + - Най'тай Нарри-Сэндай + - Най'тай Гайи-Сэндай + - Най'тай Нарр-Сэндай + - Най'тай Ренн-Сэндай + - Най'тай Сииун-Сэндай + - Най'ай Кайтам + - Най'ай Хадии + - Най'ай Сэндай + - Най'ай Року-Сэндай + - Най'ай Ниол-Сэндай + - Най'ай Ринуа-Сэндай + - Най'ай Року-Сэндай + - Най'ай Кайи-Сэндай + - Най'ай Айдам-Сэндай + - Най'ай Каии-Сэндай + - Най'ай Шенуар-Сэндай + - Най'ай Целлай-Сэндай + - Най'ай Релл-Сэндай + - Най'ай Файи-Сэндай + - Най'ай Наирр-Сэндай + - Най'ай Ильн-Сэндай + - Най'ай Лейи-Сэндай + - Най'ай Кайр-Сэндай + - Най'ай Лиий-Сэндай + - Най'ай Иурр-Сэндай + - Най'ай Рейи-Сэндай + - Най'ай Нирру-Сэндай + - Най'ай Хинн-Сэндай + - Най'ай Сай-Сэндай + - Най'ай Неос-Сэндай + - Най'ай Синну-Сэндай + - Най'ай Саир-Сэндай + - Най'ай Нарри-Сэндай + - Най'ай Гайи-Сэндай + - Най'ай Нарр-Сэндай + - Най'ай Ренн-Сэндай + - Най'ай Сииун-Сэндай + - Най'таи Кайтам + - Най'таи Хадии + - Най'таи Сэндай + - Най'таи Року-Сэндай + - Най'таи Ниол-Сэндай + - Най'таи Ринуа-Сэндай + - Най'таи Року-Сэндай + - Най'таи Кайи-Сэндай + - Най'таи Айдам-Сэндай + - Най'таи Каии-Сэндай + - Най'таи Шенуар-Сэндай + - Най'таи Целлай-Сэндай + - Най'таи Релл-Сэндай + - Най'таи Файи-Сэндай + - Най'таи Наирр-Сэндай + - Най'таи Ильн-Сэндай + - Най'таи Лейи-Сэндай + - Най'таи Кайр-Сэндай + - Най'таи Лиий-Сэндай + - Най'таи Иурр-Сэндай + - Най'таи Рейи-Сэндай + - Най'таи Нирру-Сэндай + - Най'таи Хинн-Сэндай + - Най'таи Сай-Сэндай + - Най'таи Неос-Сэндай + - Най'таи Синну-Сэндай + - Най'таи Саир-Сэндай + - Най'таи Нарри-Сэндай + - Най'таи Гайи-Сэндай + - Най'таи Нарр-Сэндай + - Най'таи Ренн-Сэндай + - Най'таи Сииун-Сэндай + - Най'нии Кайтам + - Най'нии Хадии + - Най'нии Сэндай + - Най'нии Року-Сэндай + - Най'нии Ниол-Сэндай + - Най'нии Ринуа-Сэндай + - Най'нии Року-Сэндай + - Най'нии Кайи-Сэндай + - Най'нии Айдам-Сэндай + - Най'нии Каии-Сэндай + - Най'нии Шенуар-Сэндай + - Най'нии Целлай-Сэндай + - Най'нии Релл-Сэндай + - Най'нии Файи-Сэндай + - Най'нии Наирр-Сэндай + - Най'нии Ильн-Сэндай + - Най'нии Лейи-Сэндай + - Най'нии Кайр-Сэндай + - Най'нии Лиий-Сэндай + - Най'нии Иурр-Сэндай + - Най'нии Рейи-Сэндай + - Най'нии Нирру-Сэндай + - Най'нии Хинн-Сэндай + - Най'нии Сай-Сэндай + - Най'нии Неос-Сэндай + - Най'нии Синну-Сэндай + - Най'нии Саир-Сэндай + - Най'нии Нарри-Сэндай + - Най'нии Гайи-Сэндай + - Най'нии Нарр-Сэндай + - Най'нии Ренн-Сэндай + - Най'нии Сииун-Сэндай + - Най'стай Кайтам + - Най'стай Хадии + - Най'стай Сэндай + - Най'стай Року-Сэндай + - Най'стай Ниол-Сэндай + - Най'стай Ринуа-Сэндай + - Най'стай Року-Сэндай + - Най'стай Кайи-Сэндай + - Най'стай Айдам-Сэндай + - Най'стай Каии-Сэндай + - Най'стай Шенуар-Сэндай + - Най'стай Целлай-Сэндай + - Най'стай Релл-Сэндай + - Най'стай Файи-Сэндай + - Най'стай Наирр-Сэндай + - Най'стай Ильн-Сэндай + - Най'стай Лейи-Сэндай + - Най'стай Кайр-Сэндай + - Най'стай Лиий-Сэндай + - Най'стай Иурр-Сэндай + - Най'стай Рейи-Сэндай + - Най'стай Нирру-Сэндай + - Най'стай Хинн-Сэндай + - Най'стай Сай-Сэндай + - Най'стай Неос-Сэндай + - Най'стай Синну-Сэндай + - Най'стай Саир-Сэндай + - Най'стай Нарри-Сэндай + - Най'стай Гайи-Сэндай + - Най'стай Нарр-Сэндай + - Най'стай Ренн-Сэндай + - Най'стай Сииун-Сэндай + - Най'нирр Кайтам + - Най'нирр Хадии + - Най'нирр Сэндай + - Най'нирр Року-Сэндай + - Най'нирр Ниол-Сэндай + - Най'нирр Ринуа-Сэндай + - Най'нирр Року-Сэндай + - Най'нирр Кайи-Сэндай + - Най'нирр Айдам-Сэндай + - Най'нирр Каии-Сэндай + - Най'нирр Шенуар-Сэндай + - Най'нирр Целлай-Сэндай + - Най'нирр Релл-Сэндай + - Най'нирр Файи-Сэндай + - Най'нирр Наирр-Сэндай + - Най'нирр Ильн-Сэндай + - Най'нирр Лейи-Сэндай + - Най'нирр Кайр-Сэндай + - Най'нирр Лиий-Сэндай + - Най'нирр Иурр-Сэндай + - Най'нирр Рейи-Сэндай + - Най'нирр Нирру-Сэндай + - Най'нирр Хинн-Сэндай + - Най'нирр Сай-Сэндай + - Най'нирр Неос-Сэндай + - Най'нирр Синну-Сэндай + - Най'нирр Саир-Сэндай + - Най'нирр Нарри-Сэндай + - Най'нирр Гайи-Сэндай + - Най'нирр Нарр-Сэндай + - Най'нирр Ренн-Сэндай + - Най'нирр Сииун-Сэндай + - Най'сай Кайтам + - Най'сай Хадии + - Най'сай Сэндай + - Най'сай Року-Сэндай + - Най'сай Ниол-Сэндай + - Най'сай Ринуа-Сэндай + - Най'сай Року-Сэндай + - Най'сай Кайи-Сэндай + - Най'сай Айдам-Сэндай + - Най'сай Каии-Сэндай + - Най'сай Шенуар-Сэндай + - Най'сай Целлай-Сэндай + - Най'сай Релл-Сэндай + - Най'сай Файи-Сэндай + - Най'сай Наирр-Сэндай + - Най'сай Ильн-Сэндай + - Най'сай Лейи-Сэндай + - Най'сай Кайр-Сэндай + - Най'сай Лиий-Сэндай + - Най'сай Иурр-Сэндай + - Най'сай Рейи-Сэндай + - Най'сай Нирру-Сэндай + - Най'сай Хинн-Сэндай + - Най'сай Сай-Сэндай + - Най'сай Неос-Сэндай + - Най'сай Синну-Сэндай + - Най'сай Саир-Сэндай + - Най'сай Нарри-Сэндай + - Най'сай Гайи-Сэндай + - Най'сай Нарр-Сэндай + - Най'сай Ренн-Сэндай + - Най'сай Сииун-Сэндай + - Най'раль Кайтам + - Най'раль Хадии + - Най'раль Сэндай + - Най'раль Року-Сэндай + - Най'раль Ниол-Сэндай + - Най'раль Ринуа-Сэндай + - Най'раль Року-Сэндай + - Най'раль Кайи-Сэндай + - Най'раль Айдам-Сэндай + - Най'раль Каии-Сэндай + - Най'раль Шенуар-Сэндай + - Най'раль Целлай-Сэндай + - Най'раль Релл-Сэндай + - Най'раль Файи-Сэндай + - Най'раль Наирр-Сэндай + - Най'раль Ильн-Сэндай + - Най'раль Лейи-Сэндай + - Най'раль Кайр-Сэндай + - Най'раль Лиий-Сэндай + - Най'раль Иурр-Сэндай + - Най'раль Рейи-Сэндай + - Най'раль Нирру-Сэндай + - Най'раль Хинн-Сэндай + - Най'раль Сай-Сэндай + - Най'раль Неос-Сэндай + - Най'раль Синну-Сэндай + - Най'раль Саир-Сэндай + - Най'раль Нарри-Сэндай + - Най'раль Гайи-Сэндай + - Най'раль Нарр-Сэндай + - Най'раль Ренн-Сэндай + - Най'раль Сииун-Сэндай + - Эрн'хинс Кайтам + - Эрн'хинс Хадии + - Эрн'хинс Сэндай + - Эрн'хинс Року-Сэндай + - Эрн'хинс Ниол-Сэндай + - Эрн'хинс Ринуа-Сэндай + - Эрн'хинс Року-Сэндай + - Эрн'хинс Кайи-Сэндай + - Эрн'хинс Айдам-Сэндай + - Эрн'хинс Каии-Сэндай + - Эрн'хинс Шенуар-Сэндай + - Эрн'хинс Целлай-Сэндай + - Эрн'хинс Релл-Сэндай + - Эрн'хинс Файи-Сэндай + - Эрн'хинс Наирр-Сэндай + - Эрн'хинс Ильн-Сэндай + - Эрн'хинс Лейи-Сэндай + - Эрн'хинс Кайр-Сэндай + - Эрн'хинс Лиий-Сэндай + - Эрн'хинс Иурр-Сэндай + - Эрн'хинс Рейи-Сэндай + - Эрн'хинс Нирру-Сэндай + - Эрн'хинс Хинн-Сэндай + - Эрн'хинс Сай-Сэндай + - Эрн'хинс Неос-Сэндай + - Эрн'хинс Синну-Сэндай + - Эрн'хинс Саир-Сэндай + - Эрн'хинс Нарри-Сэндай + - Эрн'хинс Гайи-Сэндай + - Эрн'хинс Нарр-Сэндай + - Эрн'хинс Ренн-Сэндай + - Эрн'хинс Сииун-Сэндай + - Эрн'ерс Кайтам + - Эрн'ерс Хадии + - Эрн'ерс Сэндай + - Эрн'ерс Року-Сэндай + - Эрн'ерс Ниол-Сэндай + - Эрн'ерс Ринуа-Сэндай + - Эрн'ерс Року-Сэндай + - Эрн'ерс Кайи-Сэндай + - Эрн'ерс Айдам-Сэндай + - Эрн'ерс Каии-Сэндай + - Эрн'ерс Шенуар-Сэндай + - Эрн'ерс Целлай-Сэндай + - Эрн'ерс Релл-Сэндай + - Эрн'ерс Файи-Сэндай + - Эрн'ерс Наирр-Сэндай + - Эрн'ерс Ильн-Сэндай + - Эрн'ерс Лейи-Сэндай + - Эрн'ерс Кайр-Сэндай + - Эрн'ерс Лиий-Сэндай + - Эрн'ерс Иурр-Сэндай + - Эрн'ерс Рейи-Сэндай + - Эрн'ерс Нирру-Сэндай + - Эрн'ерс Хинн-Сэндай + - Эрн'ерс Сай-Сэндай + - Эрн'ерс Неос-Сэндай + - Эрн'ерс Синну-Сэндай + - Эрн'ерс Саир-Сэндай + - Эрн'ерс Нарри-Сэндай + - Эрн'ерс Гайи-Сэндай + - Эрн'ерс Нарр-Сэндай + - Эрн'ерс Ренн-Сэндай + - Эрн'ерс Сииун-Сэндай + - Эрн'наи Кайтам + - Эрн'наи Хадии + - Эрн'наи Сэндай + - Эрн'наи Року-Сэндай + - Эрн'наи Ниол-Сэндай + - Эрн'наи Ринуа-Сэндай + - Эрн'наи Року-Сэндай + - Эрн'наи Кайи-Сэндай + - Эрн'наи Айдам-Сэндай + - Эрн'наи Каии-Сэндай + - Эрн'наи Шенуар-Сэндай + - Эрн'наи Целлай-Сэндай + - Эрн'наи Релл-Сэндай + - Эрн'наи Файи-Сэндай + - Эрн'наи Наирр-Сэндай + - Эрн'наи Ильн-Сэндай + - Эрн'наи Лейи-Сэндай + - Эрн'наи Кайр-Сэндай + - Эрн'наи Лиий-Сэндай + - Эрн'наи Иурр-Сэндай + - Эрн'наи Рейи-Сэндай + - Эрн'наи Нирру-Сэндай + - Эрн'наи Хинн-Сэндай + - Эрн'наи Сай-Сэндай + - Эрн'наи Неос-Сэндай + - Эрн'наи Синну-Сэндай + - Эрн'наи Саир-Сэндай + - Эрн'наи Нарри-Сэндай + - Эрн'наи Гайи-Сэндай + - Эрн'наи Нарр-Сэндай + - Эрн'наи Ренн-Сэндай + - Эрн'наи Сииун-Сэндай + - Эрн'тайль Кайтам + - Эрн'тайль Хадии + - Эрн'тайль Сэндай + - Эрн'тайль Року-Сэндай + - Эрн'тайль Ниол-Сэндай + - Эрн'тайль Ринуа-Сэндай + - Эрн'тайль Року-Сэндай + - Эрн'тайль Кайи-Сэндай + - Эрн'тайль Айдам-Сэндай + - Эрн'тайль Каии-Сэндай + - Эрн'тайль Шенуар-Сэндай + - Эрн'тайль Целлай-Сэндай + - Эрн'тайль Релл-Сэндай + - Эрн'тайль Файи-Сэндай + - Эрн'тайль Наирр-Сэндай + - Эрн'тайль Ильн-Сэндай + - Эрн'тайль Лейи-Сэндай + - Эрн'тайль Кайр-Сэндай + - Эрн'тайль Лиий-Сэндай + - Эрн'тайль Иурр-Сэндай + - Эрн'тайль Рейи-Сэндай + - Эрн'тайль Нирру-Сэндай + - Эрн'тайль Хинн-Сэндай + - Эрн'тайль Сай-Сэндай + - Эрн'тайль Неос-Сэндай + - Эрн'тайль Синну-Сэндай + - Эрн'тайль Саир-Сэндай + - Эрн'тайль Нарри-Сэндай + - Эрн'тайль Гайи-Сэндай + - Эрн'тайль Нарр-Сэндай + - Эрн'тайль Ренн-Сэндай + - Эрн'тайль Сииун-Сэндай + - Эрн'нер Кайтам + - Эрн'нер Хадии + - Эрн'нер Сэндай + - Эрн'нер Року-Сэндай + - Эрн'нер Ниол-Сэндай + - Эрн'нер Ринуа-Сэндай + - Эрн'нер Року-Сэндай + - Эрн'нер Кайи-Сэндай + - Эрн'нер Айдам-Сэндай + - Эрн'нер Каии-Сэндай + - Эрн'нер Шенуар-Сэндай + - Эрн'нер Целлай-Сэндай + - Эрн'нер Релл-Сэндай + - Эрн'нер Файи-Сэндай + - Эрн'нер Наирр-Сэндай + - Эрн'нер Ильн-Сэндай + - Эрн'нер Лейи-Сэндай + - Эрн'нер Кайр-Сэндай + - Эрн'нер Лиий-Сэндай + - Эрн'нер Иурр-Сэндай + - Эрн'нер Рейи-Сэндай + - Эрн'нер Нирру-Сэндай + - Эрн'нер Хинн-Сэндай + - Эрн'нер Сай-Сэндай + - Эрн'нер Неос-Сэндай + - Эрн'нер Синну-Сэндай + - Эрн'нер Саир-Сэндай + - Эрн'нер Нарри-Сэндай + - Эрн'нер Гайи-Сэндай + - Эрн'нер Нарр-Сэндай + - Эрн'нер Ренн-Сэндай + - Эрн'нер Сииун-Сэндай + - Эрн'н Кайтам + - Эрн'н Хадии + - Эрн'н Сэндай + - Эрн'н Року-Сэндай + - Эрн'н Ниол-Сэндай + - Эрн'н Ринуа-Сэндай + - Эрн'н Року-Сэндай + - Эрн'н Кайи-Сэндай + - Эрн'н Айдам-Сэндай + - Эрн'н Каии-Сэндай + - Эрн'н Шенуар-Сэндай + - Эрн'н Целлай-Сэндай + - Эрн'н Релл-Сэндай + - Эрн'н Файи-Сэндай + - Эрн'н Наирр-Сэндай + - Эрн'н Ильн-Сэндай + - Эрн'н Лейи-Сэндай + - Эрн'н Кайр-Сэндай + - Эрн'н Лиий-Сэндай + - Эрн'н Иурр-Сэндай + - Эрн'н Рейи-Сэндай + - Эрн'н Нирру-Сэндай + - Эрн'н Хинн-Сэндай + - Эрн'н Сай-Сэндай + - Эрн'н Неос-Сэндай + - Эрн'н Синну-Сэндай + - Эрн'н Саир-Сэндай + - Эрн'н Нарри-Сэндай + - Эрн'н Гайи-Сэндай + - Эрн'н Нарр-Сэндай + - Эрн'н Ренн-Сэндай + - Эрн'н Сииун-Сэндай + - Эрн'тай Кайтам + - Эрн'тай Хадии + - Эрн'тай Сэндай + - Эрн'тай Року-Сэндай + - Эрн'тай Ниол-Сэндай + - Эрн'тай Ринуа-Сэндай + - Эрн'тай Року-Сэндай + - Эрн'тай Кайи-Сэндай + - Эрн'тай Айдам-Сэндай + - Эрн'тай Каии-Сэндай + - Эрн'тай Шенуар-Сэндай + - Эрн'тай Целлай-Сэндай + - Эрн'тай Релл-Сэндай + - Эрн'тай Файи-Сэндай + - Эрн'тай Наирр-Сэндай + - Эрн'тай Ильн-Сэндай + - Эрн'тай Лейи-Сэндай + - Эрн'тай Кайр-Сэндай + - Эрн'тай Лиий-Сэндай + - Эрн'тай Иурр-Сэндай + - Эрн'тай Рейи-Сэндай + - Эрн'тай Нирру-Сэндай + - Эрн'тай Хинн-Сэндай + - Эрн'тай Сай-Сэндай + - Эрн'тай Неос-Сэндай + - Эрн'тай Синну-Сэндай + - Эрн'тай Саир-Сэндай + - Эрн'тай Нарри-Сэндай + - Эрн'тай Гайи-Сэндай + - Эрн'тай Нарр-Сэндай + - Эрн'тай Ренн-Сэндай + - Эрн'тай Сииун-Сэндай + - Эрн'ай Кайтам + - Эрн'ай Хадии + - Эрн'ай Сэндай + - Эрн'ай Року-Сэндай + - Эрн'ай Ниол-Сэндай + - Эрн'ай Ринуа-Сэндай + - Эрн'ай Року-Сэндай + - Эрн'ай Кайи-Сэндай + - Эрн'ай Айдам-Сэндай + - Эрн'ай Каии-Сэндай + - Эрн'ай Шенуар-Сэндай + - Эрн'ай Целлай-Сэндай + - Эрн'ай Релл-Сэндай + - Эрн'ай Файи-Сэндай + - Эрн'ай Наирр-Сэндай + - Эрн'ай Ильн-Сэндай + - Эрн'ай Лейи-Сэндай + - Эрн'ай Кайр-Сэндай + - Эрн'ай Лиий-Сэндай + - Эрн'ай Иурр-Сэндай + - Эрн'ай Рейи-Сэндай + - Эрн'ай Нирру-Сэндай + - Эрн'ай Хинн-Сэндай + - Эрн'ай Сай-Сэндай + - Эрн'ай Неос-Сэндай + - Эрн'ай Синну-Сэндай + - Эрн'ай Саир-Сэндай + - Эрн'ай Нарри-Сэндай + - Эрн'ай Гайи-Сэндай + - Эрн'ай Нарр-Сэндай + - Эрн'ай Ренн-Сэндай + - Эрн'ай Сииун-Сэндай + - Эрн'таи Кайтам + - Эрн'таи Хадии + - Эрн'таи Сэндай + - Эрн'таи Року-Сэндай + - Эрн'таи Ниол-Сэндай + - Эрн'таи Ринуа-Сэндай + - Эрн'таи Року-Сэндай + - Эрн'таи Кайи-Сэндай + - Эрн'таи Айдам-Сэндай + - Эрн'таи Каии-Сэндай + - Эрн'таи Шенуар-Сэндай + - Эрн'таи Целлай-Сэндай + - Эрн'таи Релл-Сэндай + - Эрн'таи Файи-Сэндай + - Эрн'таи Наирр-Сэндай + - Эрн'таи Ильн-Сэндай + - Эрн'таи Лейи-Сэндай + - Эрн'таи Кайр-Сэндай + - Эрн'таи Лиий-Сэндай + - Эрн'таи Иурр-Сэндай + - Эрн'таи Рейи-Сэндай + - Эрн'таи Нирру-Сэндай + - Эрн'таи Хинн-Сэндай + - Эрн'таи Сай-Сэндай + - Эрн'таи Неос-Сэндай + - Эрн'таи Синну-Сэндай + - Эрн'таи Саир-Сэндай + - Эрн'таи Нарри-Сэндай + - Эрн'таи Гайи-Сэндай + - Эрн'таи Нарр-Сэндай + - Эрн'таи Ренн-Сэндай + - Эрн'таи Сииун-Сэндай + - Эрн'нии Кайтам + - Эрн'нии Хадии + - Эрн'нии Сэндай + - Эрн'нии Року-Сэндай + - Эрн'нии Ниол-Сэндай + - Эрн'нии Ринуа-Сэндай + - Эрн'нии Року-Сэндай + - Эрн'нии Кайи-Сэндай + - Эрн'нии Айдам-Сэндай + - Эрн'нии Каии-Сэндай + - Эрн'нии Шенуар-Сэндай + - Эрн'нии Целлай-Сэндай + - Эрн'нии Релл-Сэндай + - Эрн'нии Файи-Сэндай + - Эрн'нии Наирр-Сэндай + - Эрн'нии Ильн-Сэндай + - Эрн'нии Лейи-Сэндай + - Эрн'нии Кайр-Сэндай + - Эрн'нии Лиий-Сэндай + - Эрн'нии Иурр-Сэндай + - Эрн'нии Рейи-Сэндай + - Эрн'нии Нирру-Сэндай + - Эрн'нии Хинн-Сэндай + - Эрн'нии Сай-Сэндай + - Эрн'нии Неос-Сэндай + - Эрн'нии Синну-Сэндай + - Эрн'нии Саир-Сэндай + - Эрн'нии Нарри-Сэндай + - Эрн'нии Гайи-Сэндай + - Эрн'нии Нарр-Сэндай + - Эрн'нии Ренн-Сэндай + - Эрн'нии Сииун-Сэндай + - Эрн'стай Кайтам + - Эрн'стай Хадии + - Эрн'стай Сэндай + - Эрн'стай Року-Сэндай + - Эрн'стай Ниол-Сэндай + - Эрн'стай Ринуа-Сэндай + - Эрн'стай Року-Сэндай + - Эрн'стай Кайи-Сэндай + - Эрн'стай Айдам-Сэндай + - Эрн'стай Каии-Сэндай + - Эрн'стай Шенуар-Сэндай + - Эрн'стай Целлай-Сэндай + - Эрн'стай Релл-Сэндай + - Эрн'стай Файи-Сэндай + - Эрн'стай Наирр-Сэндай + - Эрн'стай Ильн-Сэндай + - Эрн'стай Лейи-Сэндай + - Эрн'стай Кайр-Сэндай + - Эрн'стай Лиий-Сэндай + - Эрн'стай Иурр-Сэндай + - Эрн'стай Рейи-Сэндай + - Эрн'стай Нирру-Сэндай + - Эрн'стай Хинн-Сэндай + - Эрн'стай Сай-Сэндай + - Эрн'стай Неос-Сэндай + - Эрн'стай Синну-Сэндай + - Эрн'стай Саир-Сэндай + - Эрн'стай Нарри-Сэндай + - Эрн'стай Гайи-Сэндай + - Эрн'стай Нарр-Сэндай + - Эрн'стай Ренн-Сэндай + - Эрн'стай Сииун-Сэндай + - Эрн'нирр Кайтам + - Эрн'нирр Хадии + - Эрн'нирр Сэндай + - Эрн'нирр Року-Сэндай + - Эрн'нирр Ниол-Сэндай + - Эрн'нирр Ринуа-Сэндай + - Эрн'нирр Року-Сэндай + - Эрн'нирр Кайи-Сэндай + - Эрн'нирр Айдам-Сэндай + - Эрн'нирр Каии-Сэндай + - Эрн'нирр Шенуар-Сэндай + - Эрн'нирр Целлай-Сэндай + - Эрн'нирр Релл-Сэндай + - Эрн'нирр Файи-Сэндай + - Эрн'нирр Наирр-Сэндай + - Эрн'нирр Ильн-Сэндай + - Эрн'нирр Лейи-Сэндай + - Эрн'нирр Кайр-Сэндай + - Эрн'нирр Лиий-Сэндай + - Эрн'нирр Иурр-Сэндай + - Эрн'нирр Рейи-Сэндай + - Эрн'нирр Нирру-Сэндай + - Эрн'нирр Хинн-Сэндай + - Эрн'нирр Сай-Сэндай + - Эрн'нирр Неос-Сэндай + - Эрн'нирр Синну-Сэндай + - Эрн'нирр Саир-Сэндай + - Эрн'нирр Нарри-Сэндай + - Эрн'нирр Гайи-Сэндай + - Эрн'нирр Нарр-Сэндай + - Эрн'нирр Ренн-Сэндай + - Эрн'нирр Сииун-Сэндай + - Эрн'сай Кайтам + - Эрн'сай Хадии + - Эрн'сай Сэндай + - Эрн'сай Року-Сэндай + - Эрн'сай Ниол-Сэндай + - Эрн'сай Ринуа-Сэндай + - Эрн'сай Року-Сэндай + - Эрн'сай Кайи-Сэндай + - Эрн'сай Айдам-Сэндай + - Эрн'сай Каии-Сэндай + - Эрн'сай Шенуар-Сэндай + - Эрн'сай Целлай-Сэндай + - Эрн'сай Релл-Сэндай + - Эрн'сай Файи-Сэндай + - Эрн'сай Наирр-Сэндай + - Эрн'сай Ильн-Сэндай + - Эрн'сай Лейи-Сэндай + - Эрн'сай Кайр-Сэндай + - Эрн'сай Лиий-Сэндай + - Эрн'сай Иурр-Сэндай + - Эрн'сай Рейи-Сэндай + - Эрн'сай Нирру-Сэндай + - Эрн'сай Хинн-Сэндай + - Эрн'сай Сай-Сэндай + - Эрн'сай Неос-Сэндай + - Эрн'сай Синну-Сэндай + - Эрн'сай Саир-Сэндай + - Эрн'сай Нарри-Сэндай + - Эрн'сай Гайи-Сэндай + - Эрн'сай Нарр-Сэндай + - Эрн'сай Ренн-Сэндай + - Эрн'сай Сииун-Сэндай + - Эрн'раль Кайтам + - Эрн'раль Хадии + - Эрн'раль Сэндай + - Эрн'раль Року-Сэндай + - Эрн'раль Ниол-Сэндай + - Эрн'раль Ринуа-Сэндай + - Эрн'раль Року-Сэндай + - Эрн'раль Кайи-Сэндай + - Эрн'раль Айдам-Сэндай + - Эрн'раль Каии-Сэндай + - Эрн'раль Шенуар-Сэндай + - Эрн'раль Целлай-Сэндай + - Эрн'раль Релл-Сэндай + - Эрн'раль Файи-Сэндай + - Эрн'раль Наирр-Сэндай + - Эрн'раль Ильн-Сэндай + - Эрн'раль Лейи-Сэндай + - Эрн'раль Кайр-Сэндай + - Эрн'раль Лиий-Сэндай + - Эрн'раль Иурр-Сэндай + - Эрн'раль Рейи-Сэндай + - Эрн'раль Нирру-Сэндай + - Эрн'раль Хинн-Сэндай + - Эрн'раль Сай-Сэндай + - Эрн'раль Неос-Сэндай + - Эрн'раль Синну-Сэндай + - Эрн'раль Саир-Сэндай + - Эрн'раль Нарри-Сэндай + - Эрн'раль Гайи-Сэндай + - Эрн'раль Нарр-Сэндай + - Эрн'раль Ренн-Сэндай + - Эрн'раль Сииун-Сэндай + - Нар'хинс Кайтам + - Нар'хинс Хадии + - Нар'хинс Сэндай + - Нар'хинс Року-Сэндай + - Нар'хинс Ниол-Сэндай + - Нар'хинс Ринуа-Сэндай + - Нар'хинс Року-Сэндай + - Нар'хинс Кайи-Сэндай + - Нар'хинс Айдам-Сэндай + - Нар'хинс Каии-Сэндай + - Нар'хинс Шенуар-Сэндай + - Нар'хинс Целлай-Сэндай + - Нар'хинс Релл-Сэндай + - Нар'хинс Файи-Сэндай + - Нар'хинс Наирр-Сэндай + - Нар'хинс Ильн-Сэндай + - Нар'хинс Лейи-Сэндай + - Нар'хинс Кайр-Сэндай + - Нар'хинс Лиий-Сэндай + - Нар'хинс Иурр-Сэндай + - Нар'хинс Рейи-Сэндай + - Нар'хинс Нирру-Сэндай + - Нар'хинс Хинн-Сэндай + - Нар'хинс Сай-Сэндай + - Нар'хинс Неос-Сэндай + - Нар'хинс Синну-Сэндай + - Нар'хинс Саир-Сэндай + - Нар'хинс Нарри-Сэндай + - Нар'хинс Гайи-Сэндай + - Нар'хинс Нарр-Сэндай + - Нар'хинс Ренн-Сэндай + - Нар'хинс Сииун-Сэндай + - Нар'ерс Кайтам + - Нар'ерс Хадии + - Нар'ерс Сэндай + - Нар'ерс Року-Сэндай + - Нар'ерс Ниол-Сэндай + - Нар'ерс Ринуа-Сэндай + - Нар'ерс Року-Сэндай + - Нар'ерс Кайи-Сэндай + - Нар'ерс Айдам-Сэндай + - Нар'ерс Каии-Сэндай + - Нар'ерс Шенуар-Сэндай + - Нар'ерс Целлай-Сэндай + - Нар'ерс Релл-Сэндай + - Нар'ерс Файи-Сэндай + - Нар'ерс Наирр-Сэндай + - Нар'ерс Ильн-Сэндай + - Нар'ерс Лейи-Сэндай + - Нар'ерс Кайр-Сэндай + - Нар'ерс Лиий-Сэндай + - Нар'ерс Иурр-Сэндай + - Нар'ерс Рейи-Сэндай + - Нар'ерс Нирру-Сэндай + - Нар'ерс Хинн-Сэндай + - Нар'ерс Сай-Сэндай + - Нар'ерс Неос-Сэндай + - Нар'ерс Синну-Сэндай + - Нар'ерс Саир-Сэндай + - Нар'ерс Нарри-Сэндай + - Нар'ерс Гайи-Сэндай + - Нар'ерс Нарр-Сэндай + - Нар'ерс Ренн-Сэндай + - Нар'ерс Сииун-Сэндай + - Нар'наи Кайтам + - Нар'наи Хадии + - Нар'наи Сэндай + - Нар'наи Року-Сэндай + - Нар'наи Ниол-Сэндай + - Нар'наи Ринуа-Сэндай + - Нар'наи Року-Сэндай + - Нар'наи Кайи-Сэндай + - Нар'наи Айдам-Сэндай + - Нар'наи Каии-Сэндай + - Нар'наи Шенуар-Сэндай + - Нар'наи Целлай-Сэндай + - Нар'наи Релл-Сэндай + - Нар'наи Файи-Сэндай + - Нар'наи Наирр-Сэндай + - Нар'наи Ильн-Сэндай + - Нар'наи Лейи-Сэндай + - Нар'наи Кайр-Сэндай + - Нар'наи Лиий-Сэндай + - Нар'наи Иурр-Сэндай + - Нар'наи Рейи-Сэндай + - Нар'наи Нирру-Сэндай + - Нар'наи Хинн-Сэндай + - Нар'наи Сай-Сэндай + - Нар'наи Неос-Сэндай + - Нар'наи Синну-Сэндай + - Нар'наи Саир-Сэндай + - Нар'наи Нарри-Сэндай + - Нар'наи Гайи-Сэндай + - Нар'наи Нарр-Сэндай + - Нар'наи Ренн-Сэндай + - Нар'наи Сииун-Сэндай + - Нар'тайль Кайтам + - Нар'тайль Хадии + - Нар'тайль Сэндай + - Нар'тайль Року-Сэндай + - Нар'тайль Ниол-Сэндай + - Нар'тайль Ринуа-Сэндай + - Нар'тайль Року-Сэндай + - Нар'тайль Кайи-Сэндай + - Нар'тайль Айдам-Сэндай + - Нар'тайль Каии-Сэндай + - Нар'тайль Шенуар-Сэндай + - Нар'тайль Целлай-Сэндай + - Нар'тайль Релл-Сэндай + - Нар'тайль Файи-Сэндай + - Нар'тайль Наирр-Сэндай + - Нар'тайль Ильн-Сэндай + - Нар'тайль Лейи-Сэндай + - Нар'тайль Кайр-Сэндай + - Нар'тайль Лиий-Сэндай + - Нар'тайль Иурр-Сэндай + - Нар'тайль Рейи-Сэндай + - Нар'тайль Нирру-Сэндай + - Нар'тайль Хинн-Сэндай + - Нар'тайль Сай-Сэндай + - Нар'тайль Неос-Сэндай + - Нар'тайль Синну-Сэндай + - Нар'тайль Саир-Сэндай + - Нар'тайль Нарри-Сэндай + - Нар'тайль Гайи-Сэндай + - Нар'тайль Нарр-Сэндай + - Нар'тайль Ренн-Сэндай + - Нар'тайль Сииун-Сэндай + - Нар'нер Кайтам + - Нар'нер Хадии + - Нар'нер Сэндай + - Нар'нер Року-Сэндай + - Нар'нер Ниол-Сэндай + - Нар'нер Ринуа-Сэндай + - Нар'нер Року-Сэндай + - Нар'нер Кайи-Сэндай + - Нар'нер Айдам-Сэндай + - Нар'нер Каии-Сэндай + - Нар'нер Шенуар-Сэндай + - Нар'нер Целлай-Сэндай + - Нар'нер Релл-Сэндай + - Нар'нер Файи-Сэндай + - Нар'нер Наирр-Сэндай + - Нар'нер Ильн-Сэндай + - Нар'нер Лейи-Сэндай + - Нар'нер Кайр-Сэндай + - Нар'нер Лиий-Сэндай + - Нар'нер Иурр-Сэндай + - Нар'нер Рейи-Сэндай + - Нар'нер Нирру-Сэндай + - Нар'нер Хинн-Сэндай + - Нар'нер Сай-Сэндай + - Нар'нер Неос-Сэндай + - Нар'нер Синну-Сэндай + - Нар'нер Саир-Сэндай + - Нар'нер Нарри-Сэндай + - Нар'нер Гайи-Сэндай + - Нар'нер Нарр-Сэндай + - Нар'нер Ренн-Сэндай + - Нар'нер Сииун-Сэндай + - Нар'н Кайтам + - Нар'н Хадии + - Нар'н Сэндай + - Нар'н Року-Сэндай + - Нар'н Ниол-Сэндай + - Нар'н Ринуа-Сэндай + - Нар'н Року-Сэндай + - Нар'н Кайи-Сэндай + - Нар'н Айдам-Сэндай + - Нар'н Каии-Сэндай + - Нар'н Шенуар-Сэндай + - Нар'н Целлай-Сэндай + - Нар'н Релл-Сэндай + - Нар'н Файи-Сэндай + - Нар'н Наирр-Сэндай + - Нар'н Ильн-Сэндай + - Нар'н Лейи-Сэндай + - Нар'н Кайр-Сэндай + - Нар'н Лиий-Сэндай + - Нар'н Иурр-Сэндай + - Нар'н Рейи-Сэндай + - Нар'н Нирру-Сэндай + - Нар'н Хинн-Сэндай + - Нар'н Сай-Сэндай + - Нар'н Неос-Сэндай + - Нар'н Синну-Сэндай + - Нар'н Саир-Сэндай + - Нар'н Нарри-Сэндай + - Нар'н Гайи-Сэндай + - Нар'н Нарр-Сэндай + - Нар'н Ренн-Сэндай + - Нар'н Сииун-Сэндай + - Нар'тай Кайтам + - Нар'тай Хадии + - Нар'тай Сэндай + - Нар'тай Року-Сэндай + - Нар'тай Ниол-Сэндай + - Нар'тай Ринуа-Сэндай + - Нар'тай Року-Сэндай + - Нар'тай Кайи-Сэндай + - Нар'тай Айдам-Сэндай + - Нар'тай Каии-Сэндай + - Нар'тай Шенуар-Сэндай + - Нар'тай Целлай-Сэндай + - Нар'тай Релл-Сэндай + - Нар'тай Файи-Сэндай + - Нар'тай Наирр-Сэндай + - Нар'тай Ильн-Сэндай + - Нар'тай Лейи-Сэндай + - Нар'тай Кайр-Сэндай + - Нар'тай Лиий-Сэндай + - Нар'тай Иурр-Сэндай + - Нар'тай Рейи-Сэндай + - Нар'тай Нирру-Сэндай + - Нар'тай Хинн-Сэндай + - Нар'тай Сай-Сэндай + - Нар'тай Неос-Сэндай + - Нар'тай Синну-Сэндай + - Нар'тай Саир-Сэндай + - Нар'тай Нарри-Сэндай + - Нар'тай Гайи-Сэндай + - Нар'тай Нарр-Сэндай + - Нар'тай Ренн-Сэндай + - Нар'тай Сииун-Сэндай + - Нар'ай Кайтам + - Нар'ай Хадии + - Нар'ай Сэндай + - Нар'ай Року-Сэндай + - Нар'ай Ниол-Сэндай + - Нар'ай Ринуа-Сэндай + - Нар'ай Року-Сэндай + - Нар'ай Кайи-Сэндай + - Нар'ай Айдам-Сэндай + - Нар'ай Каии-Сэндай + - Нар'ай Шенуар-Сэндай + - Нар'ай Целлай-Сэндай + - Нар'ай Релл-Сэндай + - Нар'ай Файи-Сэндай + - Нар'ай Наирр-Сэндай + - Нар'ай Ильн-Сэндай + - Нар'ай Лейи-Сэндай + - Нар'ай Кайр-Сэндай + - Нар'ай Лиий-Сэндай + - Нар'ай Иурр-Сэндай + - Нар'ай Рейи-Сэндай + - Нар'ай Нирру-Сэндай + - Нар'ай Хинн-Сэндай + - Нар'ай Сай-Сэндай + - Нар'ай Неос-Сэндай + - Нар'ай Синну-Сэндай + - Нар'ай Саир-Сэндай + - Нар'ай Нарри-Сэндай + - Нар'ай Гайи-Сэндай + - Нар'ай Нарр-Сэндай + - Нар'ай Ренн-Сэндай + - Нар'ай Сииун-Сэндай + - Нар'таи Кайтам + - Нар'таи Хадии + - Нар'таи Сэндай + - Нар'таи Року-Сэндай + - Нар'таи Ниол-Сэндай + - Нар'таи Ринуа-Сэндай + - Нар'таи Року-Сэндай + - Нар'таи Кайи-Сэндай + - Нар'таи Айдам-Сэндай + - Нар'таи Каии-Сэндай + - Нар'таи Шенуар-Сэндай + - Нар'таи Целлай-Сэндай + - Нар'таи Релл-Сэндай + - Нар'таи Файи-Сэндай + - Нар'таи Наирр-Сэндай + - Нар'таи Ильн-Сэндай + - Нар'таи Лейи-Сэндай + - Нар'таи Кайр-Сэндай + - Нар'таи Лиий-Сэндай + - Нар'таи Иурр-Сэндай + - Нар'таи Рейи-Сэндай + - Нар'таи Нирру-Сэндай + - Нар'таи Хинн-Сэндай + - Нар'таи Сай-Сэндай + - Нар'таи Неос-Сэндай + - Нар'таи Синну-Сэндай + - Нар'таи Саир-Сэндай + - Нар'таи Нарри-Сэндай + - Нар'таи Гайи-Сэндай + - Нар'таи Нарр-Сэндай + - Нар'таи Ренн-Сэндай + - Нар'таи Сииун-Сэндай + - Нар'нии Кайтам + - Нар'нии Хадии + - Нар'нии Сэндай + - Нар'нии Року-Сэндай + - Нар'нии Ниол-Сэндай + - Нар'нии Ринуа-Сэндай + - Нар'нии Року-Сэндай + - Нар'нии Кайи-Сэндай + - Нар'нии Айдам-Сэндай + - Нар'нии Каии-Сэндай + - Нар'нии Шенуар-Сэндай + - Нар'нии Целлай-Сэндай + - Нар'нии Релл-Сэндай + - Нар'нии Файи-Сэндай + - Нар'нии Наирр-Сэндай + - Нар'нии Ильн-Сэндай + - Нар'нии Лейи-Сэндай + - Нар'нии Кайр-Сэндай + - Нар'нии Лиий-Сэндай + - Нар'нии Иурр-Сэндай + - Нар'нии Рейи-Сэндай + - Нар'нии Нирру-Сэндай + - Нар'нии Хинн-Сэндай + - Нар'нии Сай-Сэндай + - Нар'нии Неос-Сэндай + - Нар'нии Синну-Сэндай + - Нар'нии Саир-Сэндай + - Нар'нии Нарри-Сэндай + - Нар'нии Гайи-Сэндай + - Нар'нии Нарр-Сэндай + - Нар'нии Ренн-Сэндай + - Нар'нии Сииун-Сэндай + - Нар'стай Кайтам + - Нар'стай Хадии + - Нар'стай Сэндай + - Нар'стай Року-Сэндай + - Нар'стай Ниол-Сэндай + - Нар'стай Ринуа-Сэндай + - Нар'стай Року-Сэндай + - Нар'стай Кайи-Сэндай + - Нар'стай Айдам-Сэндай + - Нар'стай Каии-Сэндай + - Нар'стай Шенуар-Сэндай + - Нар'стай Целлай-Сэндай + - Нар'стай Релл-Сэндай + - Нар'стай Файи-Сэндай + - Нар'стай Наирр-Сэндай + - Нар'стай Ильн-Сэндай + - Нар'стай Лейи-Сэндай + - Нар'стай Кайр-Сэндай + - Нар'стай Лиий-Сэндай + - Нар'стай Иурр-Сэндай + - Нар'стай Рейи-Сэндай + - Нар'стай Нирру-Сэндай + - Нар'стай Хинн-Сэндай + - Нар'стай Сай-Сэндай + - Нар'стай Неос-Сэндай + - Нар'стай Синну-Сэндай + - Нар'стай Саир-Сэндай + - Нар'стай Нарри-Сэндай + - Нар'стай Гайи-Сэндай + - Нар'стай Нарр-Сэндай + - Нар'стай Ренн-Сэндай + - Нар'стай Сииун-Сэндай + - Нар'нирр Кайтам + - Нар'нирр Хадии + - Нар'нирр Сэндай + - Нар'нирр Року-Сэндай + - Нар'нирр Ниол-Сэндай + - Нар'нирр Ринуа-Сэндай + - Нар'нирр Року-Сэндай + - Нар'нирр Кайи-Сэндай + - Нар'нирр Айдам-Сэндай + - Нар'нирр Каии-Сэндай + - Нар'нирр Шенуар-Сэндай + - Нар'нирр Целлай-Сэндай + - Нар'нирр Релл-Сэндай + - Нар'нирр Файи-Сэндай + - Нар'нирр Наирр-Сэндай + - Нар'нирр Ильн-Сэндай + - Нар'нирр Лейи-Сэндай + - Нар'нирр Кайр-Сэндай + - Нар'нирр Лиий-Сэндай + - Нар'нирр Иурр-Сэндай + - Нар'нирр Рейи-Сэндай + - Нар'нирр Нирру-Сэндай + - Нар'нирр Хинн-Сэндай + - Нар'нирр Сай-Сэндай + - Нар'нирр Неос-Сэндай + - Нар'нирр Синну-Сэндай + - Нар'нирр Саир-Сэндай + - Нар'нирр Нарри-Сэндай + - Нар'нирр Гайи-Сэндай + - Нар'нирр Нарр-Сэндай + - Нар'нирр Ренн-Сэндай + - Нар'нирр Сииун-Сэндай + - Нар'сай Кайтам + - Нар'сай Хадии + - Нар'сай Сэндай + - Нар'сай Року-Сэндай + - Нар'сай Ниол-Сэндай + - Нар'сай Ринуа-Сэндай + - Нар'сай Року-Сэндай + - Нар'сай Кайи-Сэндай + - Нар'сай Айдам-Сэндай + - Нар'сай Каии-Сэндай + - Нар'сай Шенуар-Сэндай + - Нар'сай Целлай-Сэндай + - Нар'сай Релл-Сэндай + - Нар'сай Файи-Сэндай + - Нар'сай Наирр-Сэндай + - Нар'сай Ильн-Сэндай + - Нар'сай Лейи-Сэндай + - Нар'сай Кайр-Сэндай + - Нар'сай Лиий-Сэндай + - Нар'сай Иурр-Сэндай + - Нар'сай Рейи-Сэндай + - Нар'сай Нирру-Сэндай + - Нар'сай Хинн-Сэндай + - Нар'сай Сай-Сэндай + - Нар'сай Неос-Сэндай + - Нар'сай Синну-Сэндай + - Нар'сай Саир-Сэндай + - Нар'сай Нарри-Сэндай + - Нар'сай Гайи-Сэндай + - Нар'сай Нарр-Сэндай + - Нар'сай Ренн-Сэндай + - Нар'сай Сииун-Сэндай + - Нар'раль Кайтам + - Нар'раль Хадии + - Нар'раль Сэндай + - Нар'раль Року-Сэндай + - Нар'раль Ниол-Сэндай + - Нар'раль Ринуа-Сэндай + - Нар'раль Року-Сэндай + - Нар'раль Кайи-Сэндай + - Нар'раль Айдам-Сэндай + - Нар'раль Каии-Сэндай + - Нар'раль Шенуар-Сэндай + - Нар'раль Целлай-Сэндай + - Нар'раль Релл-Сэндай + - Нар'раль Файи-Сэндай + - Нар'раль Наирр-Сэндай + - Нар'раль Ильн-Сэндай + - Нар'раль Лейи-Сэндай + - Нар'раль Кайр-Сэндай + - Нар'раль Лиий-Сэндай + - Нар'раль Иурр-Сэндай + - Нар'раль Рейи-Сэндай + - Нар'раль Нирру-Сэндай + - Нар'раль Хинн-Сэндай + - Нар'раль Сай-Сэндай + - Нар'раль Неос-Сэндай + - Нар'раль Синну-Сэндай + - Нар'раль Саир-Сэндай + - Нар'раль Нарри-Сэндай + - Нар'раль Гайи-Сэндай + - Нар'раль Нарр-Сэндай + - Нар'раль Ренн-Сэндай + - Нар'раль Сииун-Сэндай + - Сай'хинс Кайтам + - Сай'хинс Хадии + - Сай'хинс Сэндай + - Сай'хинс Року-Сэндай + - Сай'хинс Ниол-Сэндай + - Сай'хинс Ринуа-Сэндай + - Сай'хинс Року-Сэндай + - Сай'хинс Кайи-Сэндай + - Сай'хинс Айдам-Сэндай + - Сай'хинс Каии-Сэндай + - Сай'хинс Шенуар-Сэндай + - Сай'хинс Целлай-Сэндай + - Сай'хинс Релл-Сэндай + - Сай'хинс Файи-Сэндай + - Сай'хинс Наирр-Сэндай + - Сай'хинс Ильн-Сэндай + - Сай'хинс Лейи-Сэндай + - Сай'хинс Кайр-Сэндай + - Сай'хинс Лиий-Сэндай + - Сай'хинс Иурр-Сэндай + - Сай'хинс Рейи-Сэндай + - Сай'хинс Нирру-Сэндай + - Сай'хинс Хинн-Сэндай + - Сай'хинс Сай-Сэндай + - Сай'хинс Неос-Сэндай + - Сай'хинс Синну-Сэндай + - Сай'хинс Саир-Сэндай + - Сай'хинс Нарри-Сэндай + - Сай'хинс Гайи-Сэндай + - Сай'хинс Нарр-Сэндай + - Сай'хинс Ренн-Сэндай + - Сай'хинс Сииун-Сэндай + - Сай'ерс Кайтам + - Сай'ерс Хадии + - Сай'ерс Сэндай + - Сай'ерс Року-Сэндай + - Сай'ерс Ниол-Сэндай + - Сай'ерс Ринуа-Сэндай + - Сай'ерс Року-Сэндай + - Сай'ерс Кайи-Сэндай + - Сай'ерс Айдам-Сэндай + - Сай'ерс Каии-Сэндай + - Сай'ерс Шенуар-Сэндай + - Сай'ерс Целлай-Сэндай + - Сай'ерс Релл-Сэндай + - Сай'ерс Файи-Сэндай + - Сай'ерс Наирр-Сэндай + - Сай'ерс Ильн-Сэндай + - Сай'ерс Лейи-Сэндай + - Сай'ерс Кайр-Сэндай + - Сай'ерс Лиий-Сэндай + - Сай'ерс Иурр-Сэндай + - Сай'ерс Рейи-Сэндай + - Сай'ерс Нирру-Сэндай + - Сай'ерс Хинн-Сэндай + - Сай'ерс Сай-Сэндай + - Сай'ерс Неос-Сэндай + - Сай'ерс Синну-Сэндай + - Сай'ерс Саир-Сэндай + - Сай'ерс Нарри-Сэндай + - Сай'ерс Гайи-Сэндай + - Сай'ерс Нарр-Сэндай + - Сай'ерс Ренн-Сэндай + - Сай'ерс Сииун-Сэндай + - Сай'наи Кайтам + - Сай'наи Хадии + - Сай'наи Сэндай + - Сай'наи Року-Сэндай + - Сай'наи Ниол-Сэндай + - Сай'наи Ринуа-Сэндай + - Сай'наи Року-Сэндай + - Сай'наи Кайи-Сэндай + - Сай'наи Айдам-Сэндай + - Сай'наи Каии-Сэндай + - Сай'наи Шенуар-Сэндай + - Сай'наи Целлай-Сэндай + - Сай'наи Релл-Сэндай + - Сай'наи Файи-Сэндай + - Сай'наи Наирр-Сэндай + - Сай'наи Ильн-Сэндай + - Сай'наи Лейи-Сэндай + - Сай'наи Кайр-Сэндай + - Сай'наи Лиий-Сэндай + - Сай'наи Иурр-Сэндай + - Сай'наи Рейи-Сэндай + - Сай'наи Нирру-Сэндай + - Сай'наи Хинн-Сэндай + - Сай'наи Сай-Сэндай + - Сай'наи Неос-Сэндай + - Сай'наи Синну-Сэндай + - Сай'наи Саир-Сэндай + - Сай'наи Нарри-Сэндай + - Сай'наи Гайи-Сэндай + - Сай'наи Нарр-Сэндай + - Сай'наи Ренн-Сэндай + - Сай'наи Сииун-Сэндай + - Сай'тайль Кайтам + - Сай'тайль Хадии + - Сай'тайль Сэндай + - Сай'тайль Року-Сэндай + - Сай'тайль Ниол-Сэндай + - Сай'тайль Ринуа-Сэндай + - Сай'тайль Року-Сэндай + - Сай'тайль Кайи-Сэндай + - Сай'тайль Айдам-Сэндай + - Сай'тайль Каии-Сэндай + - Сай'тайль Шенуар-Сэндай + - Сай'тайль Целлай-Сэндай + - Сай'тайль Релл-Сэндай + - Сай'тайль Файи-Сэндай + - Сай'тайль Наирр-Сэндай + - Сай'тайль Ильн-Сэндай + - Сай'тайль Лейи-Сэндай + - Сай'тайль Кайр-Сэндай + - Сай'тайль Лиий-Сэндай + - Сай'тайль Иурр-Сэндай + - Сай'тайль Рейи-Сэндай + - Сай'тайль Нирру-Сэндай + - Сай'тайль Хинн-Сэндай + - Сай'тайль Сай-Сэндай + - Сай'тайль Неос-Сэндай + - Сай'тайль Синну-Сэндай + - Сай'тайль Саир-Сэндай + - Сай'тайль Нарри-Сэндай + - Сай'тайль Гайи-Сэндай + - Сай'тайль Нарр-Сэндай + - Сай'тайль Ренн-Сэндай + - Сай'тайль Сииун-Сэндай + - Сай'нер Кайтам + - Сай'нер Хадии + - Сай'нер Сэндай + - Сай'нер Року-Сэндай + - Сай'нер Ниол-Сэндай + - Сай'нер Ринуа-Сэндай + - Сай'нер Року-Сэндай + - Сай'нер Кайи-Сэндай + - Сай'нер Айдам-Сэндай + - Сай'нер Каии-Сэндай + - Сай'нер Шенуар-Сэндай + - Сай'нер Целлай-Сэндай + - Сай'нер Релл-Сэндай + - Сай'нер Файи-Сэндай + - Сай'нер Наирр-Сэндай + - Сай'нер Ильн-Сэндай + - Сай'нер Лейи-Сэндай + - Сай'нер Кайр-Сэндай + - Сай'нер Лиий-Сэндай + - Сай'нер Иурр-Сэндай + - Сай'нер Рейи-Сэндай + - Сай'нер Нирру-Сэндай + - Сай'нер Хинн-Сэндай + - Сай'нер Сай-Сэндай + - Сай'нер Неос-Сэндай + - Сай'нер Синну-Сэндай + - Сай'нер Саир-Сэндай + - Сай'нер Нарри-Сэндай + - Сай'нер Гайи-Сэндай + - Сай'нер Нарр-Сэндай + - Сай'нер Ренн-Сэндай + - Сай'нер Сииун-Сэндай + - Сай'н Кайтам + - Сай'н Хадии + - Сай'н Сэндай + - Сай'н Року-Сэндай + - Сай'н Ниол-Сэндай + - Сай'н Ринуа-Сэндай + - Сай'н Року-Сэндай + - Сай'н Кайи-Сэндай + - Сай'н Айдам-Сэндай + - Сай'н Каии-Сэндай + - Сай'н Шенуар-Сэндай + - Сай'н Целлай-Сэндай + - Сай'н Релл-Сэндай + - Сай'н Файи-Сэндай + - Сай'н Наирр-Сэндай + - Сай'н Ильн-Сэндай + - Сай'н Лейи-Сэндай + - Сай'н Кайр-Сэндай + - Сай'н Лиий-Сэндай + - Сай'н Иурр-Сэндай + - Сай'н Рейи-Сэндай + - Сай'н Нирру-Сэндай + - Сай'н Хинн-Сэндай + - Сай'н Сай-Сэндай + - Сай'н Неос-Сэндай + - Сай'н Синну-Сэндай + - Сай'н Саир-Сэндай + - Сай'н Нарри-Сэндай + - Сай'н Гайи-Сэндай + - Сай'н Нарр-Сэндай + - Сай'н Ренн-Сэндай + - Сай'н Сииун-Сэндай + - Сай'тай Кайтам + - Сай'тай Хадии + - Сай'тай Сэндай + - Сай'тай Року-Сэндай + - Сай'тай Ниол-Сэндай + - Сай'тай Ринуа-Сэндай + - Сай'тай Року-Сэндай + - Сай'тай Кайи-Сэндай + - Сай'тай Айдам-Сэндай + - Сай'тай Каии-Сэндай + - Сай'тай Шенуар-Сэндай + - Сай'тай Целлай-Сэндай + - Сай'тай Релл-Сэндай + - Сай'тай Файи-Сэндай + - Сай'тай Наирр-Сэндай + - Сай'тай Ильн-Сэндай + - Сай'тай Лейи-Сэндай + - Сай'тай Кайр-Сэндай + - Сай'тай Лиий-Сэндай + - Сай'тай Иурр-Сэндай + - Сай'тай Рейи-Сэндай + - Сай'тай Нирру-Сэндай + - Сай'тай Хинн-Сэндай + - Сай'тай Сай-Сэндай + - Сай'тай Неос-Сэндай + - Сай'тай Синну-Сэндай + - Сай'тай Саир-Сэндай + - Сай'тай Нарри-Сэндай + - Сай'тай Гайи-Сэндай + - Сай'тай Нарр-Сэндай + - Сай'тай Ренн-Сэндай + - Сай'тай Сииун-Сэндай + - Сай'ай Кайтам + - Сай'ай Хадии + - Сай'ай Сэндай + - Сай'ай Року-Сэндай + - Сай'ай Ниол-Сэндай + - Сай'ай Ринуа-Сэндай + - Сай'ай Року-Сэндай + - Сай'ай Кайи-Сэндай + - Сай'ай Айдам-Сэндай + - Сай'ай Каии-Сэндай + - Сай'ай Шенуар-Сэндай + - Сай'ай Целлай-Сэндай + - Сай'ай Релл-Сэндай + - Сай'ай Файи-Сэндай + - Сай'ай Наирр-Сэндай + - Сай'ай Ильн-Сэндай + - Сай'ай Лейи-Сэндай + - Сай'ай Кайр-Сэндай + - Сай'ай Лиий-Сэндай + - Сай'ай Иурр-Сэндай + - Сай'ай Рейи-Сэндай + - Сай'ай Нирру-Сэндай + - Сай'ай Хинн-Сэндай + - Сай'ай Сай-Сэндай + - Сай'ай Неос-Сэндай + - Сай'ай Синну-Сэндай + - Сай'ай Саир-Сэндай + - Сай'ай Нарри-Сэндай + - Сай'ай Гайи-Сэндай + - Сай'ай Нарр-Сэндай + - Сай'ай Ренн-Сэндай + - Сай'ай Сииун-Сэндай + - Сай'таи Кайтам + - Сай'таи Хадии + - Сай'таи Сэндай + - Сай'таи Року-Сэндай + - Сай'таи Ниол-Сэндай + - Сай'таи Ринуа-Сэндай + - Сай'таи Року-Сэндай + - Сай'таи Кайи-Сэндай + - Сай'таи Айдам-Сэндай + - Сай'таи Каии-Сэндай + - Сай'таи Шенуар-Сэндай + - Сай'таи Целлай-Сэндай + - Сай'таи Релл-Сэндай + - Сай'таи Файи-Сэндай + - Сай'таи Наирр-Сэндай + - Сай'таи Ильн-Сэндай + - Сай'таи Лейи-Сэндай + - Сай'таи Кайр-Сэндай + - Сай'таи Лиий-Сэндай + - Сай'таи Иурр-Сэндай + - Сай'таи Рейи-Сэндай + - Сай'таи Нирру-Сэндай + - Сай'таи Хинн-Сэндай + - Сай'таи Сай-Сэндай + - Сай'таи Неос-Сэндай + - Сай'таи Синну-Сэндай + - Сай'таи Саир-Сэндай + - Сай'таи Нарри-Сэндай + - Сай'таи Гайи-Сэндай + - Сай'таи Нарр-Сэндай + - Сай'таи Ренн-Сэндай + - Сай'таи Сииун-Сэндай + - Сай'нии Кайтам + - Сай'нии Хадии + - Сай'нии Сэндай + - Сай'нии Року-Сэндай + - Сай'нии Ниол-Сэндай + - Сай'нии Ринуа-Сэндай + - Сай'нии Року-Сэндай + - Сай'нии Кайи-Сэндай + - Сай'нии Айдам-Сэндай + - Сай'нии Каии-Сэндай + - Сай'нии Шенуар-Сэндай + - Сай'нии Целлай-Сэндай + - Сай'нии Релл-Сэндай + - Сай'нии Файи-Сэндай + - Сай'нии Наирр-Сэндай + - Сай'нии Ильн-Сэндай + - Сай'нии Лейи-Сэндай + - Сай'нии Кайр-Сэндай + - Сай'нии Лиий-Сэндай + - Сай'нии Иурр-Сэндай + - Сай'нии Рейи-Сэндай + - Сай'нии Нирру-Сэндай + - Сай'нии Хинн-Сэндай + - Сай'нии Сай-Сэндай + - Сай'нии Неос-Сэндай + - Сай'нии Синну-Сэндай + - Сай'нии Саир-Сэндай + - Сай'нии Нарри-Сэндай + - Сай'нии Гайи-Сэндай + - Сай'нии Нарр-Сэндай + - Сай'нии Ренн-Сэндай + - Сай'нии Сииун-Сэндай + - Сай'стай Кайтам + - Сай'стай Хадии + - Сай'стай Сэндай + - Сай'стай Року-Сэндай + - Сай'стай Ниол-Сэндай + - Сай'стай Ринуа-Сэндай + - Сай'стай Року-Сэндай + - Сай'стай Кайи-Сэндай + - Сай'стай Айдам-Сэндай + - Сай'стай Каии-Сэндай + - Сай'стай Шенуар-Сэндай + - Сай'стай Целлай-Сэндай + - Сай'стай Релл-Сэндай + - Сай'стай Файи-Сэндай + - Сай'стай Наирр-Сэндай + - Сай'стай Ильн-Сэндай + - Сай'стай Лейи-Сэндай + - Сай'стай Кайр-Сэндай + - Сай'стай Лиий-Сэндай + - Сай'стай Иурр-Сэндай + - Сай'стай Рейи-Сэндай + - Сай'стай Нирру-Сэндай + - Сай'стай Хинн-Сэндай + - Сай'стай Сай-Сэндай + - Сай'стай Неос-Сэндай + - Сай'стай Синну-Сэндай + - Сай'стай Саир-Сэндай + - Сай'стай Нарри-Сэндай + - Сай'стай Гайи-Сэндай + - Сай'стай Нарр-Сэндай + - Сай'стай Ренн-Сэндай + - Сай'стай Сииун-Сэндай + - Сай'нирр Кайтам + - Сай'нирр Хадии + - Сай'нирр Сэндай + - Сай'нирр Року-Сэндай + - Сай'нирр Ниол-Сэндай + - Сай'нирр Ринуа-Сэндай + - Сай'нирр Року-Сэндай + - Сай'нирр Кайи-Сэндай + - Сай'нирр Айдам-Сэндай + - Сай'нирр Каии-Сэндай + - Сай'нирр Шенуар-Сэндай + - Сай'нирр Целлай-Сэндай + - Сай'нирр Релл-Сэндай + - Сай'нирр Файи-Сэндай + - Сай'нирр Наирр-Сэндай + - Сай'нирр Ильн-Сэндай + - Сай'нирр Лейи-Сэндай + - Сай'нирр Кайр-Сэндай + - Сай'нирр Лиий-Сэндай + - Сай'нирр Иурр-Сэндай + - Сай'нирр Рейи-Сэндай + - Сай'нирр Нирру-Сэндай + - Сай'нирр Хинн-Сэндай + - Сай'нирр Сай-Сэндай + - Сай'нирр Неос-Сэндай + - Сай'нирр Синну-Сэндай + - Сай'нирр Саир-Сэндай + - Сай'нирр Нарри-Сэндай + - Сай'нирр Гайи-Сэндай + - Сай'нирр Нарр-Сэндай + - Сай'нирр Ренн-Сэндай + - Сай'нирр Сииун-Сэндай + - Сай'раль Кайтам + - Сай'раль Хадии + - Сай'раль Сэндай + - Сай'раль Року-Сэндай + - Сай'раль Ниол-Сэндай + - Сай'раль Ринуа-Сэндай + - Сай'раль Року-Сэндай + - Сай'раль Кайи-Сэндай + - Сай'раль Айдам-Сэндай + - Сай'раль Каии-Сэндай + - Сай'раль Шенуар-Сэндай + - Сай'раль Целлай-Сэндай + - Сай'раль Релл-Сэндай + - Сай'раль Файи-Сэндай + - Сай'раль Наирр-Сэндай + - Сай'раль Ильн-Сэндай + - Сай'раль Лейи-Сэндай + - Сай'раль Кайр-Сэндай + - Сай'раль Лиий-Сэндай + - Сай'раль Иурр-Сэндай + - Сай'раль Рейи-Сэндай + - Сай'раль Нирру-Сэндай + - Сай'раль Хинн-Сэндай + - Сай'раль Сай-Сэндай + - Сай'раль Неос-Сэндай + - Сай'раль Синну-Сэндай + - Сай'раль Саир-Сэндай + - Сай'раль Нарри-Сэндай + - Сай'раль Гайи-Сэндай + - Сай'раль Нарр-Сэндай + - Сай'раль Ренн-Сэндай + - Сай'раль Сииун-Сэндай diff --git a/Resources/Prototypes/ADT/Datasets/Names/name_ipc.yml b/Resources/Prototypes/ADT/Datasets/Names/name_ipc.yml new file mode 100644 index 00000000000..d5952a4f797 --- /dev/null +++ b/Resources/Prototypes/ADT/Datasets/Names/name_ipc.yml @@ -0,0 +1,1123 @@ +# Simple Station + +- type: dataset + id: IpcFirst + values: + - АБЕКС + - АБЕЛЬ + - АНД + - АНКЛ + - АНТР + - АРМА + - АУРА + - ВЕКСА + - ВИТА + - ВЕЙВ + - ВОЛТ + - ВЕЙФ + - ВИСП + - ВЖ + - ВП + - ВД + - ЛП + - ИМП + - ВРЕН + - ДРСД + - ДУНК + - ДЖЕЙД + - ДЖИНГЛ + - ЖЖР + - ЖЛЛО + - ЖРД + - ЖУНО + - ЗАК + - ЗАРГ + - ЗЕОН + - ЗОЛТ + - ЗУМА + - ЗУЛО + - ЗЕВА + - ИКСИС + - ЙЕРА + - ЙАГО + - КСИ + - РГБ + - СБОС + - СДБ + - КХОС + - СХРИ + - СОЛ + - КРУКС + - САЙБР + - ЭБИКС + - ЭКСОС + - ФИРК + - ФИЗЗ + - ФРЕ + - ФКСМС + - ГИГА + - ГУФ + - ГРИН + - ГАН + - ХБЛ + - ХГ + - ХИУ + - ХОГ + - ИНС + - КАЙЛ + - КАНО + - КАЗА + - КЕНТ + - КИВ + - КОР + - КОРА + - КОС + - ЛУМА + - ЛУНА + - ЛИНКС + - ЛИТА + - МЕТ + - МИВ + - МИР + - МНОС + - МРПР + - МСО + - НАНО + - НЕСТ + - НЕКСО + - НОВА + - ОРНГ + - ОСИ + - ПБУ + - ПКП + - ПКP + - ПКР + - ПЛЕКС + - ПЛЕКСО + - ПЛИКС + - КУС + - КВИН + - КВЕР + - РИФТ + - РР + - РАЙНО + - РЗХ + - СИНА + - СЛИ + - ОПРС + - КЗ + - СТЛП + - TКРГ + - ТРИКС + - ВЕРА + - КСАЛ + - КСЕНА + - КСАЙЛО + - ЮПТ + - ЯМЛ + - ЯНО + - ЯДРО + +- type: dataset + id: IpcLast + values: + - 000 + - 001 + - 002 + - 003 + - 004 + - 005 + - 006 + - 007 + - 008 + - 009 + - 010 + - 011 + - 012 + - 013 + - 014 + - 015 + - 016 + - 017 + - 018 + - 019 + - 020 + - 021 + - 022 + - 023 + - 024 + - 025 + - 026 + - 027 + - 028 + - 029 + - 030 + - 031 + - 032 + - 033 + - 034 + - 035 + - 036 + - 037 + - 038 + - 039 + - 040 + - 041 + - 042 + - 043 + - 044 + - 045 + - 046 + - 047 + - 048 + - 049 + - 050 + - 051 + - 052 + - 053 + - 054 + - 055 + - 056 + - 057 + - 058 + - 059 + - 060 + - 061 + - 062 + - 063 + - 064 + - 065 + - 066 + - 067 + - 068 + - 069 + - 070 + - 071 + - 072 + - 073 + - 074 + - 075 + - 076 + - 077 + - 078 + - 079 + - 080 + - 081 + - 082 + - 083 + - 084 + - 085 + - 086 + - 087 + - 088 + - 089 + - 090 + - 091 + - 092 + - 093 + - 094 + - 095 + - 096 + - 097 + - 098 + - 099 + - 100 + - 101 + - 102 + - 103 + - 104 + - 105 + - 106 + - 107 + - 108 + - 109 + - 110 + - 111 + - 112 + - 113 + - 114 + - 115 + - 116 + - 117 + - 118 + - 119 + - 120 + - 121 + - 122 + - 123 + - 124 + - 125 + - 126 + - 127 + - 128 + - 129 + - 130 + - 131 + - 132 + - 133 + - 134 + - 135 + - 136 + - 137 + - 138 + - 139 + - 140 + - 141 + - 142 + - 143 + - 144 + - 145 + - 146 + - 147 + - 148 + - 149 + - 150 + - 151 + - 152 + - 153 + - 154 + - 155 + - 156 + - 157 + - 158 + - 159 + - 160 + - 161 + - 162 + - 163 + - 164 + - 165 + - 166 + - 167 + - 168 + - 169 + - 170 + - 171 + - 172 + - 173 + - 174 + - 175 + - 176 + - 177 + - 178 + - 179 + - 180 + - 181 + - 182 + - 183 + - 184 + - 185 + - 186 + - 187 + - 188 + - 189 + - 190 + - 191 + - 192 + - 193 + - 194 + - 195 + - 196 + - 197 + - 198 + - 199 + - 200 + - 201 + - 202 + - 203 + - 204 + - 205 + - 206 + - 207 + - 208 + - 209 + - 210 + - 211 + - 212 + - 213 + - 214 + - 215 + - 216 + - 217 + - 218 + - 219 + - 220 + - 221 + - 222 + - 223 + - 224 + - 225 + - 226 + - 227 + - 228 + - 229 + - 230 + - 231 + - 232 + - 233 + - 234 + - 235 + - 236 + - 237 + - 238 + - 239 + - 240 + - 241 + - 242 + - 243 + - 244 + - 245 + - 246 + - 247 + - 248 + - 249 + - 250 + - 251 + - 252 + - 253 + - 254 + - 255 + - 256 + - 257 + - 258 + - 259 + - 260 + - 261 + - 262 + - 263 + - 264 + - 265 + - 266 + - 267 + - 268 + - 269 + - 270 + - 271 + - 272 + - 273 + - 274 + - 275 + - 276 + - 277 + - 278 + - 279 + - 280 + - 281 + - 282 + - 283 + - 284 + - 285 + - 286 + - 287 + - 288 + - 289 + - 290 + - 291 + - 292 + - 293 + - 294 + - 295 + - 296 + - 297 + - 298 + - 299 + - 300 + - 301 + - 302 + - 303 + - 304 + - 305 + - 306 + - 307 + - 308 + - 309 + - 310 + - 311 + - 312 + - 313 + - 314 + - 315 + - 316 + - 317 + - 318 + - 319 + - 320 + - 321 + - 322 + - 323 + - 324 + - 325 + - 326 + - 327 + - 328 + - 329 + - 330 + - 331 + - 332 + - 333 + - 334 + - 335 + - 336 + - 337 + - 338 + - 339 + - 340 + - 341 + - 342 + - 343 + - 344 + - 345 + - 346 + - 347 + - 348 + - 349 + - 350 + - 351 + - 352 + - 353 + - 354 + - 355 + - 356 + - 357 + - 358 + - 359 + - 360 + - 361 + - 362 + - 363 + - 364 + - 365 + - 366 + - 367 + - 368 + - 369 + - 370 + - 371 + - 372 + - 373 + - 374 + - 375 + - 376 + - 377 + - 378 + - 379 + - 380 + - 381 + - 382 + - 383 + - 384 + - 385 + - 386 + - 387 + - 388 + - 389 + - 390 + - 391 + - 392 + - 393 + - 394 + - 395 + - 396 + - 397 + - 398 + - 399 + - 400 + - 401 + - 402 + - 403 + - 404 + - 405 + - 406 + - 407 + - 408 + - 409 + - 410 + - 411 + - 412 + - 413 + - 414 + - 415 + - 416 + - 417 + - 418 + - 419 + - 420 + - 421 + - 422 + - 423 + - 424 + - 425 + - 426 + - 427 + - 428 + - 429 + - 430 + - 431 + - 432 + - 433 + - 434 + - 435 + - 436 + - 437 + - 438 + - 439 + - 440 + - 441 + - 442 + - 443 + - 444 + - 445 + - 446 + - 447 + - 448 + - 449 + - 450 + - 451 + - 452 + - 453 + - 454 + - 455 + - 456 + - 457 + - 458 + - 459 + - 460 + - 461 + - 462 + - 463 + - 464 + - 465 + - 466 + - 467 + - 468 + - 469 + - 470 + - 471 + - 472 + - 473 + - 474 + - 475 + - 476 + - 477 + - 478 + - 479 + - 480 + - 481 + - 482 + - 483 + - 484 + - 485 + - 486 + - 487 + - 488 + - 489 + - 490 + - 491 + - 492 + - 493 + - 494 + - 495 + - 496 + - 497 + - 498 + - 499 + - 500 + - 501 + - 502 + - 503 + - 504 + - 505 + - 506 + - 507 + - 508 + - 509 + - 510 + - 511 + - 512 + - 513 + - 514 + - 515 + - 516 + - 517 + - 518 + - 519 + - 520 + - 521 + - 522 + - 523 + - 524 + - 525 + - 526 + - 527 + - 528 + - 529 + - 530 + - 531 + - 532 + - 533 + - 534 + - 535 + - 536 + - 537 + - 538 + - 539 + - 540 + - 541 + - 542 + - 543 + - 544 + - 545 + - 546 + - 547 + - 548 + - 549 + - 550 + - 551 + - 552 + - 553 + - 554 + - 555 + - 556 + - 557 + - 558 + - 559 + - 560 + - 561 + - 562 + - 563 + - 564 + - 565 + - 566 + - 567 + - 568 + - 569 + - 570 + - 571 + - 572 + - 573 + - 574 + - 575 + - 576 + - 577 + - 578 + - 579 + - 580 + - 581 + - 582 + - 583 + - 584 + - 585 + - 586 + - 587 + - 588 + - 589 + - 590 + - 591 + - 592 + - 593 + - 594 + - 595 + - 596 + - 597 + - 598 + - 599 + - 600 + - 601 + - 602 + - 603 + - 604 + - 605 + - 606 + - 607 + - 608 + - 609 + - 610 + - 611 + - 612 + - 613 + - 614 + - 615 + - 616 + - 617 + - 618 + - 619 + - 620 + - 621 + - 622 + - 623 + - 624 + - 625 + - 626 + - 627 + - 628 + - 629 + - 630 + - 631 + - 632 + - 633 + - 634 + - 635 + - 636 + - 637 + - 638 + - 639 + - 640 + - 641 + - 642 + - 643 + - 644 + - 645 + - 646 + - 647 + - 648 + - 649 + - 650 + - 651 + - 652 + - 653 + - 654 + - 655 + - 656 + - 657 + - 658 + - 659 + - 660 + - 661 + - 662 + - 663 + - 664 + - 665 + - 666 + - 667 + - 668 + - 669 + - 670 + - 671 + - 672 + - 673 + - 674 + - 675 + - 676 + - 677 + - 678 + - 679 + - 680 + - 681 + - 682 + - 683 + - 684 + - 685 + - 686 + - 687 + - 688 + - 689 + - 690 + - 691 + - 692 + - 693 + - 694 + - 695 + - 696 + - 697 + - 698 + - 699 + - 700 + - 701 + - 702 + - 703 + - 704 + - 705 + - 706 + - 707 + - 708 + - 709 + - 710 + - 711 + - 712 + - 713 + - 714 + - 715 + - 716 + - 717 + - 718 + - 719 + - 720 + - 721 + - 722 + - 723 + - 724 + - 725 + - 726 + - 727 + - 728 + - 729 + - 730 + - 731 + - 732 + - 733 + - 734 + - 735 + - 736 + - 737 + - 738 + - 739 + - 740 + - 741 + - 742 + - 743 + - 744 + - 745 + - 746 + - 747 + - 748 + - 749 + - 750 + - 751 + - 752 + - 753 + - 754 + - 755 + - 756 + - 757 + - 758 + - 759 + - 760 + - 761 + - 762 + - 763 + - 764 + - 765 + - 766 + - 767 + - 768 + - 769 + - 770 + - 771 + - 772 + - 773 + - 774 + - 775 + - 776 + - 777 + - 778 + - 779 + - 780 + - 781 + - 782 + - 783 + - 784 + - 785 + - 786 + - 787 + - 788 + - 789 + - 790 + - 791 + - 792 + - 793 + - 794 + - 795 + - 796 + - 797 + - 798 + - 799 + - 800 + - 801 + - 802 + - 803 + - 804 + - 805 + - 806 + - 807 + - 808 + - 809 + - 810 + - 811 + - 812 + - 813 + - 814 + - 815 + - 816 + - 817 + - 818 + - 819 + - 820 + - 821 + - 822 + - 823 + - 824 + - 825 + - 826 + - 827 + - 828 + - 829 + - 830 + - 831 + - 832 + - 833 + - 834 + - 835 + - 836 + - 837 + - 838 + - 839 + - 840 + - 841 + - 842 + - 843 + - 844 + - 845 + - 846 + - 847 + - 848 + - 849 + - 850 + - 851 + - 852 + - 853 + - 854 + - 855 + - 856 + - 857 + - 858 + - 859 + - 860 + - 861 + - 862 + - 863 + - 864 + - 865 + - 866 + - 867 + - 868 + - 869 + - 870 + - 871 + - 872 + - 873 + - 874 + - 875 + - 876 + - 877 + - 878 + - 879 + - 880 + - 881 + - 882 + - 883 + - 884 + - 885 + - 886 + - 887 + - 888 + - 889 + - 890 + - 891 + - 892 + - 893 + - 894 + - 895 + - 896 + - 897 + - 898 + - 899 + - 900 + - 901 + - 902 + - 903 + - 904 + - 905 + - 906 + - 907 + - 908 + - 909 + - 910 + - 911 + - 912 + - 913 + - 914 + - 915 + - 916 + - 917 + - 918 + - 919 + - 920 + - 921 + - 922 + - 923 + - 924 + - 925 + - 926 + - 927 + - 928 + - 929 + - 930 + - 931 + - 932 + - 933 + - 934 + - 935 + - 936 + - 937 + - 938 + - 939 + - 940 + - 941 + - 942 + - 943 + - 944 + - 945 + - 946 + - 947 + - 948 + - 949 + - 950 + - 951 + - 952 + - 953 + - 954 + - 955 + - 956 + - 957 + - 958 + - 959 + - 960 + - 961 + - 962 + - 963 + - 964 + - 965 + - 966 + - 967 + - 968 + - 969 + - 970 + - 971 + - 972 + - 973 + - 974 + - 975 + - 976 + - 977 + - 978 + - 979 + - 980 + - 981 + - 982 + - 983 + - 984 + - 985 + - 986 + - 987 + - 988 + - 989 + - 990 + - 991 + - 992 + - 993 + - 994 + - 995 + - 996 + - 997 + - 998 + - 999 diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Back/fill.txt b/Resources/Prototypes/ADT/Entities/Clothing/Back/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Clothing/Back/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/ADT/Entities/Clothing/Ears/headsets.yml new file mode 100644 index 00000000000..200cf36bc4c --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Clothing/Ears/headsets.yml @@ -0,0 +1,47 @@ +- type: entity + parent: ClothingHeadset + id: ClothingHeadsetMagistrat + name: magistrat headset + description: magistrat's headset. + components: + - type: ContainerFill + containers: + key_slots: + - ADTEncryptionKeyLawyer + - EncryptionKeyCommand + - EncryptionKeySecurity + - EncryptionKeyCommon + - EncryptionKeyCentCom + - type: Sprite + sprite: Clothing/Ears/Headsets/servicesecurity.rsi + +- type: entity + parent: ClothingHeadset + id: ClothingHeadsetLawyer + name: lawyer headset + description: lawyer's headset. + components: + - type: ContainerFill + containers: + key_slots: + - ADTEncryptionKeyLawyer + - EncryptionKeySecurity + - EncryptionKeyCommon + - type: Sprite + sprite: Clothing/Ears/Headsets/servicesecurity.rsi + +- type: entity + parent: ClothingHeadset + id: ClothingHeadsetIAA + name: IAA headset + description: IAA's headset. + components: + - type: ContainerFill + containers: + key_slots: + - ADTEncryptionKeyLawyer + - EncryptionKeyCommand + - EncryptionKeySecurity + - EncryptionKeyCommon + - type: Sprite + sprite: Clothing/Ears/Headsets/servicesecurity.rsi diff --git a/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/Jumpsuits.yml b/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/Jumpsuits.yml new file mode 100644 index 00000000000..a2ef44656e6 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Clothing/Uniforms/Jumpsuits.yml @@ -0,0 +1,10 @@ +- type: entity + parent: ClothingUniformBase + id: ADTClothingUniformsJumpsuitWhiteDiplomatSuitL + name: white-diplomat-suit-namе + description: white-diplomat-suit-desc + components: + - type: Sprite + sprite: ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi + - type: Clothing + sprite: ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi diff --git a/Resources/Prototypes/ADT/Entities/Markers/Spawners/jobs.yml b/Resources/Prototypes/ADT/Entities/Markers/Spawners/jobs.yml new file mode 100644 index 00000000000..8b7daec37ea --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Markers/Spawners/jobs.yml @@ -0,0 +1,58 @@ +- type: entity + id: ADTSpawnPointJobBase + parent: MarkerBase + abstract: true + suffix: Job Spawn ADT + components: + - type: SpawnPoint + spawn_type: Job + - type: Sprite + sprite: ADT/Markers/jobs.rsi + +- type: entity + id: SpawnPointADTPathologist + parent: ADTSpawnPointJobBase + name: pathologist + components: + - type: SpawnPoint + job_id: ADTPathologist + - type: Sprite + layers: + - state: green + - state: pathologist + +- type: entity + id: SpawnPointMagistrat + parent: ADTSpawnPointJobBase + name: magistrat + components: + - type: SpawnPoint + job_id: Magistrat + - type: Sprite + layers: + - state: green + - state: magistrat + +- type: entity + id: SpawnPointIAA + parent: ADTSpawnPointJobBase + name: IAA + components: + - type: SpawnPoint + job_id: IAA + - type: Sprite + layers: + - state: green + - state: iaa + +- type: entity + id: ADTSpawnPointRoboticist + parent: SpawnPointJobBase + name: roboticist + components: + - type: SpawnPoint + job_id: ADTRoboticist + - type: Sprite + layers: + - state: green + - state: scientist diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Tajaran.yml b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Tajaran.yml new file mode 100644 index 00000000000..9aba8b8a30d --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Tajaran.yml @@ -0,0 +1,545 @@ +#Живот. +- type: marking + id: Belly1 + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi + state: belly1 + +- type: marking + id: Belly2 + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi + state: belly2 + +- type: marking + id: Belly3 + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi + state: belly3 + +- type: marking + id: Belly4 + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi + state: chest + +#Наложение. +- type: marking + id: BodyStripes + bodyPart: [ Chest, RArm, LArm, RLeg, LLeg ] + markingCategory: Overlay + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi #Спрайты от moroz_3 + state: stripes_body + +- type: marking + id: BodyBlots + bodyPart: [ Chest, RArm, LArm, RLeg, LLeg ] + markingCategory: Overlay + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi #Спрайты от moroz_3 + state: blots_body + +- type: marking + id: patch2 + bodyPart: [ Chest, RLeg, LLeg ] + markingCategory: Overlay + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi + state: patch + +- type: marking + id: BodySkeleton + bodyPart: [ Chest, RArm, LArm, RLeg, LLeg ] + markingCategory: Overlay + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi #Спрайты от prazat911 + state: skeleton_body + +- type: marking + id: arm1 + bodyPart: [ RArm, LArm, RLeg, LLeg ] #честно, я без малейшего понятия, почему это не работает. Черта либо клипается сквозь одежду, либо обрезает руки. + markingCategory: Overlay + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi + state: points + +#Части тел. + +- type: marking + id: LHandGradient + bodyPart: LHand + markingCategory: Arms + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi #Спрайты от moroz_3 + state: gradient_LHand + +- type: marking + id: RHandGradient + bodyPart: RHand + markingCategory: Arms + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi #Спрайты от moroz_3 + state: gradient_RHand + +- type: marking + id: LArmGradient + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi #Спрайты от moroz_3 + state: gradient_LArm + +- type: marking + id: RArmGradient + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi #Спрайты от moroz_3 + state: gradient_RArm + +- type: marking + id: LLegGradient + bodyPart: RFoot + markingCategory: Legs + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi #Спрайты от moroz_3 + state: gradient_LLeg + +- type: marking + id: RLegGradient + bodyPart: RFoot + markingCategory: Legs + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi #Спрайты от moroz_3 + state: gradient_RLeg + +#Хвосты. +- type: marking + id: TailWingler3 + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi #Спрайты от moroz_3 + state: wingler_3 + +- type: marking + id: TailWingler2 + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi #Спрайты от moroz_3 + state: wingler_2 + +- type: marking + id: TailWingler1 + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi #Спрайты от moroz_3 + state: wingler_1 + +- type: marking + id: TailTip + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi #Спрайты от moroz_3 + state: tail_tip + +- type: marking + id: TailRing + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi #Спрайты от moroz_3 + state: tail_ring + +- type: marking + id: TailSkeleton + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi #Спрайты от prazat911 + state: tail_skeleton + +- type: marking + id: TailFluffy + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi #Спрайты от moroz_3 + state: tail_fluffy + +- type: marking + id: TailColor + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: tail_m + +#Голова. + +##Голова (верх) +- type: marking + id: Head1 + bodyPart: Head + markingCategory: HeadTop + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_head.rsi + state: outears + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_head.rsi + state: inears +## + +- type: marking + id: Head5 + bodyPart: Head + markingCategory: Head + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_head.rsi + state: nose + +- type: marking + id: Head7 + bodyPart: Head + markingCategory: Head + speciesRestriction: [TajaranSpecies] + sponsorOnly: true + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_head.rsi + state: patch_SPONSOR_ONLY + +- type: marking + id: Head8 + bodyPart: Head + markingCategory: Head + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_head.rsi + state: tiger_face + +- type: marking + id: Head9 + bodyPart: Head + markingCategory: Head + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_head.rsi + state: tiger_head + +- type: marking + id: HeadEyesStripes + bodyPart: Head + markingCategory: Head + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_head.rsi #Спрайты от moroz_3 + state: eye_stripes_head + +- type: marking + id: HeadStar + bodyPart: Head + markingCategory: Head + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_head.rsi #Спрайты от moroz_3 + state: star_head + +- type: marking + id: HeadRacoon + bodyPart: Head + markingCategory: Head + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_head.rsi #Спрайты от moroz_3 + state: raccoon-head + +- type: marking + id: HeadMane + bodyPart: Head + markingCategory: Head + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_head.rsi #Спрайты от moroz_3 + state: mane_head + +- type: marking + id: HairEyebrows + bodyPart: Head + markingCategory: Head + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi #Спрайты от moroz_3 + state: eyebrows + +#Морда. +- type: marking + id: Head4 + bodyPart: Head + markingCategory: Snout + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_head.rsi + state: muzzleinears + +- type: marking + id: Head2 + bodyPart: Head + markingCategory: Snout + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_head.rsi + state: muzzle + +#Волосы. +- type: marking + id: Hair1 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi + state: bangs + +- type: marking + id: Hair2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi + state: bedhead + +- type: marking + id: Hair3 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi + state: bob + +- type: marking + id: Hair4 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi + state: braid + +- type: marking + id: Hair5 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi + state: clean + +- type: marking + id: Hair6 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi + state: curly + +- type: marking + id: Hair7 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi + state: fingerwave + +- type: marking + id: Hair8 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi + state: ladiesretro + +- type: marking + id: Hair9 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi + state: long + +- type: marking + id: Hair10 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi + state: messy + +- type: marking + id: Hair11 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi + state: mohawk + +- type: marking + id: Hair12 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi + state: plait + +- type: marking + id: Hair13 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi + state: rattail + +- type: marking + id: Hair14 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi + state: shaggy + +- type: marking + id: Hair15 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi + state: spikey + +- type: marking + id: Hair16 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi + state: straight + +- type: marking + id: Hair17 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi + state: victory + +- type: marking + id: HairPigtail + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi #Спрайты от prazat911 + state: pigtail + +- type: marking + id: HairPonytail + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi #Спрайты от prazat911 + state: ponytail + +#Бороды. (которые, как бы, лицевая раст-сть) +- type: marking + id: FacialHairBeard + bodyPart: FacialHair + markingCategory: FacialHair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi #Спрайты от moroz_3 + state: beard + +- type: marking + id: FacialHairCheeks + bodyPart: FacialHair + markingCategory: FacialHair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi #Спрайты от moroz_3 + state: cheeks + +- type: marking + id: FacialHairMustache + bodyPart: FacialHair + markingCategory: FacialHair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi #Спрайты от moroz_3 + state: mustache + +- type: marking + id: FacialHairMustache2 + bodyPart: FacialHair + markingCategory: FacialHair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi #Спрайты от moroz_3 + state: mustache_2 + +- type: marking + id: FacialHairMustache3 + bodyPart: FacialHair + markingCategory: FacialHair + speciesRestriction: [TajaranSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi #Спрайты от moroz_3 + state: mustache_3 diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Vulpkanin.yml b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Vulpkanin.yml new file mode 100644 index 00000000000..583e91f062e --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Vulpkanin.yml @@ -0,0 +1,198 @@ +- type: marking + id: ADTVulpkaninaltpointsfadebelly + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi + state: altpointsfadebelly + +- type: marking + id: ADTVulpkaninbellycrest + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi + state: bellycrest + +- type: marking + id: ADTVulpkanincrestpoints + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi + state: crestpoints + +- type: marking + id: ADTVulpkaninfoxbelly + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi + state: foxbelly + +- type: marking + id: ADTVulpkaninfullbelly + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi + state: fullbelly + +- type: marking + id: ADTVulpkaninpointsfade + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi + state: pointsfade + +- type: marking + id: ADTVulpkaninpointsfadebelly + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi + state: pointsfadebelly + +- type: marking + id: ADTVulpkaninsharppoints + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi + state: sharppoints + +- type: marking + id: ADTVulpkanintail1 + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi + state: tail1 + +- type: marking + id: ADTVulpkanintail2 + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi + state: tail2 + +- type: marking + id: ADTVulpkanintailAll + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi + state: tail_m + +#- type: marking +# id: ADTVulpkanintail3 +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [VulpkaninSpecies] +# sprites: +# - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi +# state: tail3 + +- type: marking + id: ADTVulpkaninear + bodyPart: Head + markingCategory: Head + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi + state: ear + +- type: marking + id: ADTVulpkaninearBack + bodyPart: Head + markingCategory: Head + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi + state: ear_back + +- type: marking + id: ADTVulpkaninmuzzle + bodyPart: Head + markingCategory: Head + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi + state: muzzle + +- type: marking + id: ADTVulpkaninmuzzleear + bodyPart: Head + markingCategory: Head + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi + state: muzzle_ear + +- type: marking + id: ADTVulpkaninnose + bodyPart: Head + markingCategory: Head + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi + state: nose + +- type: marking + id: ADTVulpkaninpoints_fade + bodyPart: Head + markingCategory: Head + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi + state: points_fade + +- type: marking + id: ADTVulpkaninpoints_sharp + bodyPart: Head + markingCategory: Head + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi + state: points_sharp + +- type: marking + id: ADTVulpkaninskull_sponsor + bodyPart: Head + markingCategory: Head + speciesRestriction: [VulpkaninSpecies] + sponsorOnly: true + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi + state: skull_sponsor + +- type: marking + id: ADTVulpkanintiger_face + bodyPart: Head + markingCategory: Head + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi + state: tiger_face + +- type: marking + id: ADTVulpkanintiger_head + bodyPart: Head + markingCategory: Head + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi + state: tiger_head \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Vulpkanin_hair.yml b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Vulpkanin_hair.yml new file mode 100644 index 00000000000..8c85f52df60 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/Vulpkanin_hair.yml @@ -0,0 +1,1568 @@ +- type: marking + id: ADTVulpkaninAbhara + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: abhara + +- type: marking + id: ADTVulpkaninAnite + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: anite + +- type: marking + id: ADTVulpkaninApollo + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: apollo + +- type: marking + id: ADTVulpkaninBelle + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: belle + +- type: marking + id: ADTVulpkaninBraided + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: braided + +- type: marking + id: ADTVulpkaninBun + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: bun + +- type: marking + id: ADTVulpkaninCurl + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: curl + +- type: marking + id: ADTVulpkaninHair_sponsor + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + #sponsorOnly: true + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: hair_sponsor + +- type: marking + id: ADTVulpkaninHawk + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: hawk + +- type: marking + id: ADTVulpkaninJagged_sponsor_hair + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + #sponsorOnly: true + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: jagged_sponsor_hair + +- type: marking + id: ADTVulpkaninKajam1 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: kajam1 + +- type: marking + id: ADTVulpkaninKajam2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: kajam2 + +- type: marking + id: ADTVulpkaninKeid + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: keid + +- type: marking + id: ADTVulpkaninKleeia + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: kleeia + +- type: marking + id: ADTVulpkaninMizar + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: mizar + +- type: marking + id: ADTVulpkaninRaine + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: raine + +- type: marking + id: ADTVulpkaninRough + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: rough + +- type: marking + id: ADTVulpkaninShort + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: short + +- type: marking + id: ADTVulpkaninShort2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: short2 + +- type: marking + id: ADTVulpkaninSpike + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: spike + +- type: marking + id: ADTVulpkaninYkiteru_sponsor_hair + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + #sponsorOnly: true + sprites: + - sprite: ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi + state: ykiteru_sponsor_hair + +- type: marking + id: ADTVulpkaninAfro + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: afro +- type: marking + id: ADTVulpkaninAfro2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: afro2 +- type: marking + id: ADTVulpkaninBigafro + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: bigafro +- type: marking + id: ADTVulpkaninAntenna + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: antenna +- type: marking + id: ADTVulpkaninBalding + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: e +- type: marking + id: ADTVulpkaninBedhead + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: bedhead +- type: marking + id: ADTVulpkaninBedheadv2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: bedheadv2 +- type: marking + id: ADTVulpkaninBedheadv3 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: bedheadv3 +- type: marking + id: ADTVulpkaninLongBedhead + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: long_bedhead +- type: marking + id: ADTVulpkaninFloorlengthBedhead + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: floorlength_bedhead +- type: marking + id: ADTVulpkaninBeehive + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: beehive +- type: marking + id: ADTVulpkaninBeehivev2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: beehivev2 +- type: marking + id: ADTVulpkaninBob + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: bob +- type: marking + id: ADTVulpkaninBob2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: bob2 +- type: marking + id: ADTVulpkaninBobcut + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: bobcut +- type: marking + id: ADTVulpkaninBob4 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: bob4 +- type: marking + id: ADTVulpkaninBobcurl + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: bobcurl +- type: marking + id: ADTVulpkaninBoddicker + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: boddicker +- type: marking + id: ADTVulpkaninBowlcut + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: bowlcut +- type: marking + id: ADTVulpkaninBowlcut2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: bowlcut2 +- type: marking + id: ADTVulpkaninBraid + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: braid +- type: marking + id: ADTVulpkaninBraidfront + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: braidfront +- type: marking + id: ADTVulpkaninBraid2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: braid2 +- type: marking + id: ADTVulpkaninHbraid + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: hbraid +- type: marking + id: ADTVulpkaninShortbraid + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: shortbraid +- type: marking + id: ADTVulpkaninBraidtail + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: braidtail +- type: marking + id: ADTVulpkaninBunhead2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: bunhead2 +- type: marking + id: ADTVulpkaninBun3 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: bun3 +- type: marking + id: ADTVulpkaninLargebun + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: largebun +- type: marking + id: ADTVulpkaninManbun + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: manbun +- type: marking + id: ADTVulpkaninTightbun + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: tightbun +- type: marking + id: ADTVulpkaninBusiness + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: business +- type: marking + id: ADTVulpkaninBusiness2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: business2 +- type: marking + id: ADTVulpkaninBusiness3 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: business3 +- type: marking + id: ADTVulpkaninBusiness4 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: business4 +- type: marking + id: ADTVulpkaninBuzzcut + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: buzzcut +- type: marking + id: ADTVulpkaninCia + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: cia +- type: marking + id: ADTVulpkaninCoffeehouse + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: coffeehouse +- type: marking + id: ADTVulpkaninCombover + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: combover +- type: marking + id: ADTVulpkaninCornrows + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: cornrows +- type: marking + id: ADTVulpkaninCornrows2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: cornrows2 +- type: marking + id: ADTVulpkaninCornrowbun + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: cornrowbun +- type: marking + id: ADTVulpkaninCornrowbraid + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: cornrowbraid +- type: marking + id: ADTVulpkaninCornrowtail + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: cornrowtail +- type: marking + id: ADTVulpkaninCrewcut + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: crewcut +- type: marking + id: ADTVulpkaninCurls + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: curls +- type: marking + id: ADTVulpkaninC + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: c +- type: marking + id: ADTVulpkaninDandypompadour + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: dandypompadour +- type: marking + id: ADTVulpkaninDevilock + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: devilock +- type: marking + id: ADTVulpkaninDoublebun + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: doublebun +- type: marking + id: ADTVulpkaninDreads + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: dreads +- type: marking + id: ADTVulpkaninDrillruru + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: drillruru +- type: marking + id: ADTVulpkaninDrillhairextended + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: drillhairextended +- type: marking + id: ADTVulpkaninEmo + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: emo +- type: marking + id: ADTVulpkaninEmofringe + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: emofringe +- type: marking + id: ADTVulpkaninNofade + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: nofade +- type: marking + id: ADTVulpkaninHighfade + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: highfade +- type: marking + id: ADTVulpkaninMedfade + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: medfade +- type: marking + id: ADTVulpkaninLowfade + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: lowfade +- type: marking + id: ADTVulpkaninBaldfade + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: baldfade +- type: marking + id: ADTVulpkaninFeather + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: feather +- type: marking + id: ADTVulpkaninFather + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: father +- type: marking + id: ADTVulpkaninSargeant + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: sargeant +- type: marking + id: ADTVulpkaninFlair + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: flair +- type: marking + id: ADTVulpkaninBigflattop + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: bigflattop +- type: marking + id: ADTVulpkaninFlow + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: f +- type: marking + id: ADTVulpkaninGelled + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: gelled +- type: marking + id: ADTVulpkaninGentle + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: gentle +- type: marking + id: ADTVulpkaninHalfbang + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: halfbang +- type: marking + id: ADTVulpkaninHalfbang2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: halfbang2 +- type: marking + id: ADTVulpkaninHalfshaved + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: halfshaved +- type: marking + id: ADTVulpkaninHedgehog + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: hedgehog +- type: marking + id: ADTVulpkaninHimecut + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: himecut +- type: marking + id: ADTVulpkaninHimecut2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: himecut2 +- type: marking + id: ADTVulpkaninShorthime + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: shorthime +- type: marking + id: ADTVulpkaninHimeup + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: himeup +- type: marking + id: ADTVulpkaninHitop + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: hitop +- type: marking + id: ADTVulpkaninJade + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: jade +- type: marking + id: ADTVulpkaninJensen + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: jensen +- type: marking + id: ADTVulpkaninJoestar + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: joestar +- type: marking + id: ADTVulpkaninKeanu + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: keanu +- type: marking + id: ADTVulpkaninKusanagi + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: kusanagi +- type: marking + id: ADTVulpkaninLong + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: long +- type: marking + id: ADTVulpkaninLong2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: long2 +- type: marking + id: ADTVulpkaninLong3 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: long3 +- type: marking + id: ADTVulpkaninLongovereye + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: longovereye +- type: marking + id: ADTVulpkaninLbangs + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: lbangs +- type: marking + id: ADTVulpkaninLongemo + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: longemo +- type: marking + id: ADTVulpkaninLongfringe + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: longfringe +- type: marking + id: ADTVulpkaninLongsidepart + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: longsidepart +- type: marking + id: ADTVulpkaninMegaeyebrows + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: megaeyebrows +- type: marking + id: ADTVulpkaninMessy + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: messy +- type: marking + id: ADTVulpkaninModern + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: modern +- type: marking + id: ADTVulpkaninMohawk + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: d +- type: marking + id: ADTVulpkaninNitori + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: nitori +- type: marking + id: ADTVulpkaninReversemohawk + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: reversemohawk +- type: marking + id: ADTVulpkaninUnshavenMohawk + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: unshaven_mohawk +- type: marking + id: ADTVulpkaninMulder + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: mulder +- type: marking + id: ADTVulpkaninOdango + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: odango +- type: marking + id: ADTVulpkaninOmbre + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: ombre +- type: marking + id: ADTVulpkaninOneshoulder + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: oneshoulder +- type: marking + id: ADTVulpkaninShortovereye + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: shortovereye +- type: marking + id: ADTVulpkaninOxton + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: oxton +- type: marking + id: ADTVulpkaninParted + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: parted +- type: marking + id: ADTVulpkaninPart + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: part +- type: marking + id: ADTVulpkaninKagami + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: kagami +- type: marking + id: ADTVulpkaninPigtails + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: pigtails +- type: marking + id: ADTVulpkaninPigtails2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: pigtails2 +- type: marking + id: ADTVulpkaninPixie + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: pixie +- type: marking + id: ADTVulpkaninPompadour + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: pompadour +- type: marking + id: ADTVulpkaninBigpompadour + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: bigpompadour +- type: marking + id: ADTVulpkaninPonytail + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: ponytail +- type: marking + id: ADTVulpkaninPonytail2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: ponytail2 +- type: marking + id: ADTVulpkaninPonytail3 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: ponytail3 +- type: marking + id: ADTVulpkaninPonytail4 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: ponytail4 +- type: marking + id: ADTVulpkaninPonytail5 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: ponytail5 +- type: marking + id: ADTVulpkaninPonytail6 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: ponytail6 +- type: marking + id: ADTVulpkaninPonytail7 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: ponytail7 +- type: marking + id: ADTVulpkaninHighponytail + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: highponytail +- type: marking + id: ADTVulpkaninStail + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: stail +- type: marking + id: ADTVulpkaninLongstraightponytail + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: longstraightponytail +- type: marking + id: ADTVulpkaninCountry + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: country +- type: marking + id: ADTVulpkaninFringetail + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: fringetail +- type: marking + id: ADTVulpkaninSidetail + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: sidetail +- type: marking + id: ADTVulpkaninSidetail2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: sidetail2 +- type: marking + id: ADTVulpkaninSidetail3 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: sidetail3 +- type: marking + id: ADTVulpkaninSidetail4 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: sidetail4 +- type: marking + id: ADTVulpkaninSpikyponytail + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: spikyponytail +- type: marking + id: ADTVulpkaninPoofy + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: poofy +- type: marking + id: ADTVulpkaninQuiff + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: quiff +- type: marking + id: ADTVulpkaninRonin + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: ronin +- type: marking + id: ADTVulpkaninShaved + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: shaved +- type: marking + id: ADTVulpkaninShavedpart + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: shavedpart +- type: marking + id: ADTVulpkaninShortbangs + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: shortbangs +- type: marking + id: ADTVulpkaninA + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: a +- type: marking + id: ADTVulpkaninShorthair2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: shorthair2 +- type: marking + id: ADTVulpkaninShorthair3 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: shorthair3 +- type: marking + id: ADTVulpkaninD + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: d +- type: marking + id: ADTVulpkaninE + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: e +- type: marking + id: ADTVulpkaninF + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: f +- type: marking + id: ADTVulpkaninShorthairg + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: shorthairg +- type: marking + id: ADTVulpkanin80s + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: 80s +- type: marking + id: ADTVulpkaninRosa + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: rosa +- type: marking + id: ADTVulpkaninB + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: b +- type: marking + id: ADTVulpkaninSidecut + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: sidecut +- type: marking + id: ADTVulpkaninSkinhead + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: skinhead +- type: marking + id: ADTVulpkaninProtagonist + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: protagonist +- type: marking + id: ADTVulpkaninSpikey + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: spikey +- type: marking + id: ADTVulpkaninSpiky + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: spiky +- type: marking + id: ADTVulpkaninSpiky2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: spiky2 +- type: marking + id: ADTVulpkaninSwept + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: swept +- type: marking + id: ADTVulpkaninSwept2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: swept2 +- type: marking + id: ADTVulpkaninThinning + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: thinning +- type: marking + id: ADTVulpkaninThinningfront + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: thinningfront +- type: marking + id: ADTVulpkaninThinningrear + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: thinningrear +- type: marking + id: ADTVulpkaninTopknot + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: topknot +- type: marking + id: ADTVulpkaninTressshoulder + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: tressshoulder +- type: marking + id: ADTVulpkaninTrimmed + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: trimmed +- type: marking + id: ADTVulpkaninTrimflat + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: trimflat +- type: marking + id: ADTVulpkaninTwintail + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: twintail +- type: marking + id: ADTVulpkaninUndercut + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: undercut +- type: marking + id: ADTVulpkaninUndercutleft + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: undercutleft +- type: marking + id: ADTVulpkaninUndercutright + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: undercutright +- type: marking + id: ADTVulpkaninUnkept + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: unkept +- type: marking + id: ADTVulpkaninUpdo + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: updo +- type: marking + id: ADTVulpkaninVlong + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: vlong +- type: marking + id: ADTVulpkaninLongest + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: longest +- type: marking + id: ADTVulpkaninLongest2 + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: longest2 +- type: marking + id: ADTVulpkaninVeryshortovereyealternate + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: veryshortovereyealternate +- type: marking + id: ADTVulpkaninVlongfringe + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: vlongfringe +- type: marking + id: ADTVulpkaninVolaju + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: volaju +- type: marking + id: ADTVulpkaninWisp + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [VulpkaninSpecies] + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: wisp \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/antenna.yml b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/antenna.yml new file mode 100644 index 00000000000..d114bb4874d --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/antenna.yml @@ -0,0 +1,91 @@ +# Simple Station + +- type: marking + speciesRestriction: [IPC] + id: RobotAntennaTv + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: ADT/Mobs/Customization/ipc_antenna.rsi + state: ipc_antenna_tv + +- type: marking + speciesRestriction: [IPC] + id: RobotAntennaTesla + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: ADT/Mobs/Customization/ipc_antenna.rsi + state: ipc_antenna_tesla + +# - type: marking +# speciesRestriction: [IPC] +# id: RobotAntennaLightb +# bodyPart: Hair +# markingCategory: Hair +# sprites: +# - sprite: ADT/Mobs/Customization/ipc_antenna.rsi +# state: ipc_antenna_lightb + +# - type: marking +# speciesRestriction: [IPC] +# id: RobotAntennaLight +# bodyPart: Hair +# markingCategory: Hair +# sprites: +# - sprite: ADT/Mobs/Customization/ipc_antenna.rsi +# state: ipc_antenna_light + +- type: marking + speciesRestriction: [IPC] + id: RobotAntennaCyberhead + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: ADT/Mobs/Customization/ipc_antenna.rsi + state: ipc_antenna_cyberhead + +# - type: marking +# speciesRestriction: [IPC] +# id: RobotAntennaSidelights +# bodyPart: Hair +# markingCategory: Hair +# sprites: +# - sprite: ADT/Mobs/Customization/ipc_antenna.rsi +# state: ipc_antenna_sidelights + +- type: marking + speciesRestriction: [IPC] + id: RobotAntennaAntlers + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: ADT/Mobs/Customization/ipc_antenna.rsi + state: ipc_antenna_antlers + +- type: marking + speciesRestriction: [IPC] + id: RobotAntennaDroneeyes + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: ADT/Mobs/Customization/ipc_antenna.rsi + state: ipc_antenna_droneeyes + +- type: marking + speciesRestriction: [IPC] + id: RobotAntennaCrowned + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: ADT/Mobs/Customization/ipc_antenna.rsi + state: ipc_antenna_crowned + +- type: marking + speciesRestriction: [IPC] + id: RobotAntennaTowers + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: ADT/Mobs/Customization/ipc_antenna.rsi + state: ipc_antenna_towers diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/moth.yml b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/moth.yml new file mode 100644 index 00000000000..c1d5df24633 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/moth.yml @@ -0,0 +1,1111 @@ +# Antennas +- type: marking + id: MothAntennasDefault + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: default + +- type: marking + id: MothAntennasCharred + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: charred + +- type: marking + id: MothAntennasDbushy + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: dbushy + +- type: marking + id: MothAntennasDcurvy + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: dcurvy + +- type: marking + id: MothAntennasDfan + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: dfan + +- type: marking + id: MothAntennasDpointy + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: dpointy + +- type: marking + id: MothAntennasFeathery + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: feathery + +- type: marking + id: MothAntennasFirewatch + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: firewatch + +- type: marking + id: MothAntennasGray + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: gray + +- type: marking + id: MothAntennasJungle + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: jungle + +- type: marking + id: MothAntennasMoffra + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: moffra + +- type: marking + id: MothAntennasOakworm + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: oakworm + +- type: marking + id: MothAntennasPlasmafire + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: plasmafire + +- type: marking + id: MothAntennasMaple + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: maple + +- type: marking + id: MothAntennasRoyal + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: royal + +- type: marking + id: MothAntennasStriped + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: striped + +- type: marking + id: MothAntennasWhitefly + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: whitefly + +- type: marking + id: MothAntennasWitchwing + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: witchwing + +- type: marking + id: MothAntennasUnderwing + bodyPart: HeadTop + markingCategory: HeadTop + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: underwing_primary + - sprite: Mobs/Customization/Moth/moth_antennas.rsi + state: underwing_secondary + +# Wings +- type: marking + id: MothWingsDefault + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: default + +- type: marking + id: MothWingsCharred + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: charred + +- type: marking + id: MothWingsDbushy + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: dbushy_primary + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: dbushy_secondary + +- type: marking + id: MothWingsDeathhead + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: deathhead_primary + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: deathhead_secondary + +- type: marking + id: MothWingsFan + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: fan + +- type: marking + id: MothWingsDfan + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: dfan + +- type: marking + id: MothWingsFeathery + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: feathery + +- type: marking + id: MothWingsFirewatch + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: firewatch_primary + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: firewatch_secondary + +- type: marking + id: MothWingsGothic + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: gothic + +- type: marking + id: MothWingsJungle + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: jungle + +- type: marking + id: MothWingsLadybug + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: ladybug + +- type: marking + id: MothWingsMaple + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: maple + +- type: marking + id: MothWingsMoffra + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: moffra_primary + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: moffra_secondary + +- type: marking + id: MothWingsOakworm + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: oakworm + +- type: marking + id: MothWingsPlasmafire + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: plasmafire_primary + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: plasmafire_secondary + +- type: marking + id: MothWingsPointy + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: pointy + +- type: marking + id: MothWingsRoyal + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: royal_primary + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: royal_secondary + +- type: marking + id: MothWingsStellar + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: stellar + +- type: marking + id: MothWingsStriped + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: striped + +- type: marking + id: MothWingsSwirly + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: swirly + +- type: marking + id: MothWingsWhitefly + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: whitefly + +- type: marking + id: MothWingsWitchwing + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: witchwing + +- type: marking + id: MothWingsUnderwing + bodyPart: Tail + markingCategory: Tail + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: underwing_primary + - sprite: Mobs/Customization/Moth/moth_wings.rsi + state: underwing_secondary + +# Body markings: +# Charred +- type: marking + id: MothChestCharred + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: charred_chest + +- type: marking + id: MothHeadCharred + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: charred_head + +- type: marking + id: MothLLegCharred + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: charred_l_leg + +- type: marking + id: MothRLegCharred + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: charred_r_leg + +- type: marking + id: MothLArmCharred + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: charred_l_arm + +- type: marking + id: MothRArmCharred + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: charred_r_arm + +# Death's-Head +- type: marking + id: MothChestDeathhead + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: deathhead_chest + +- type: marking + id: MothHeadDeathhead + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: deathhead_head + +- type: marking + id: MothLLegDeathhead + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: deathhead_l_leg + +- type: marking + id: MothRLegDeathhead + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: deathhead_r_leg + +- type: marking + id: MothLArmDeathhead + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: deathhead_l_arm + +- type: marking + id: MothRArmDeathhead + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: deathhead_r_arm + +# Fan +- type: marking + id: MothChestFan + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: fan_chest + +- type: marking + id: MothHeadFan + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: fan_head + +- type: marking + id: MothLLegFan + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: fan_l_leg + +- type: marking + id: MothRLegFan + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: fan_r_leg + +- type: marking + id: MothLArmFan + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: fan_l_arm + +- type: marking + id: MothRArmFan + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: fan_r_arm + +# Firewatch +- type: marking + id: MothChestFirewatch + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: firewatch_chest + +- type: marking + id: MothHeadFirewatch + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: firewatch_head + +- type: marking + id: MothLLegFirewatch + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: firewatch_l_leg + +- type: marking + id: MothRLegFirewatch + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: firewatch_r_leg + +- type: marking + id: MothLArmFirewatch + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: firewatch_l_arm + +- type: marking + id: MothRArmFirewatch + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: firewatch_r_arm + +# Gothic +- type: marking + id: MothChestGothic + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: gothic_chest + +- type: marking + id: MothHeadGothic + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: gothic_head + +- type: marking + id: MothLLegGothic + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: gothic_l_leg + +- type: marking + id: MothRLegGothic + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: gothic_r_leg + +- type: marking + id: MothLArmGothic + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: gothic_l_arm + +- type: marking + id: MothRArmGothic + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: gothic_r_arm + +# Jungle +- type: marking + id: MothChestJungle + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: jungle_chest + +- type: marking + id: MothHeadJungle + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: jungle_head + +- type: marking + id: MothLLegJungle + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: jungle_l_leg + +- type: marking + id: MothRLegJungle + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: jungle_r_leg + +- type: marking + id: MothLArmJungle + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: jungle_l_arm + +- type: marking + id: MothRArmJungle + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: jungle_r_arm + +# Moonfly +- type: marking + id: MothChestMoonfly + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: moonfly_chest + +- type: marking + id: MothHeadMoonfly + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: moonfly_head + +- type: marking + id: MothLLegMoonfly + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: moonfly_l_leg + +- type: marking + id: MothRLegMoonfly + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: moonfly_r_leg + +- type: marking + id: MothLArmMoonfly + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: moonfly_l_arm + +- type: marking + id: MothRArmMoonfly + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: moonfly_r_arm + +# Oak Worm +- type: marking + id: MothChestOakworm + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: oakworm_chest + +- type: marking + id: MothHeadOakworm + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: oakworm_head + +- type: marking + id: MothLLegOakworm + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: oakworm_l_leg + +- type: marking + id: MothRLegOakworm + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: oakworm_r_leg + +- type: marking + id: MothLArmOakworm + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: oakworm_l_arm + +- type: marking + id: MothRArmOakworm + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: oakworm_r_arm + +# Pointy +- type: marking + id: MothChestPointy + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: pointy_chest + +- type: marking + id: MothHeadPointy + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: pointy_head + +- type: marking + id: MothLLegPointy + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: pointy_l_leg + +- type: marking + id: MothRLegPointy + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: pointy_r_leg + +- type: marking + id: MothLArmPointy + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: pointy_l_arm + +- type: marking + id: MothRArmPointy + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: pointy_r_arm + +# Ragged +- type: marking + id: MothChestRagged + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: ragged_chest + +- type: marking + id: MothHeadRagged + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: ragged_head + +- type: marking + id: MothLLegRagged + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: ragged_l_leg + +- type: marking + id: MothRLegRagged + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: ragged_r_leg + +- type: marking + id: MothLArmRagged + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: ragged_l_arm + +- type: marking + id: MothRArmRagged + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: ragged_r_arm + +# Royal +- type: marking + id: MothChestRoyal + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: royal_chest + +- type: marking + id: MothHeadRoyal + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: royal_head + +- type: marking + id: MothLLegRoyal + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: royal_l_leg + +- type: marking + id: MothRLegRoyal + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: royal_r_leg + +- type: marking + id: MothLArmRoyal + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: royal_l_arm + +- type: marking + id: MothRArmRoyal + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: royal_r_arm + +# White Fly +- type: marking + id: MothChestWhitefly + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: whitefly_chest + +- type: marking + id: MothHeadWhitefly + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: whitefly_head + +- type: marking + id: MothLLegWhitefly + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: whitefly_l_leg + +- type: marking + id: MothRLegWhitefly + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: whitefly_r_leg + +- type: marking + id: MothLArmWhitefly + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: whitefly_l_arm + +- type: marking + id: MothRArmWhitefly + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: whitefly_r_arm + +# Witch Wing +- type: marking + id: MothChestWitchwing + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: witchwing_chest + +- type: marking + id: MothHeadWitchwing + bodyPart: Head + markingCategory: Head + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: witchwing_head + +- type: marking + id: MothLLegWitchwing + bodyPart: LLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: witchwing_l_leg + +- type: marking + id: MothRLegWitchwing + bodyPart: RLeg + markingCategory: Legs + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: witchwing_r_leg + +- type: marking + id: MothLArmWitchwing + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: witchwing_l_arm + +- type: marking + id: MothRArmWitchwing + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Moth] + sprites: + - sprite: Mobs/Customization/Moth/moth_parts.rsi + state: witchwing_r_arm diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/screens.yml b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/screens.yml new file mode 100644 index 00000000000..2dfb75f970d --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Customization/Markings/screens.yml @@ -0,0 +1,374 @@ +# Simple Station + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenStatic + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_static + +- type: marking + speciesRestriction: [IPC] + id: ScreenBlue + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_blue + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenBreakout + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_breakout + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenEight + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_eight + +- type: marking + speciesRestriction: [IPC] + id: ScreenGoggles + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_goggles + +- type: marking + speciesRestriction: [IPC] + id: ScreenExclaim + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_exclaim + +- type: marking + speciesRestriction: [IPC] + id: ScreenHeart + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_heart + +- type: marking + speciesRestriction: [IPC] + id: ScreenMonoeye + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_monoeye + +- type: marking + speciesRestriction: [IPC] + id: ScreenNature + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_nature + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenOrange + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_orange + +- type: marking + speciesRestriction: [IPC] + id: ScreenPink + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_pink + +- type: marking + speciesRestriction: [IPC] + id: ScreenQuestion + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_question + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenShower + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_shower + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenYellow + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_yellow + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenScroll + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_scroll + +- type: marking + speciesRestriction: [IPC] + id: ScreenConsole + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_console + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenRgb + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_rgb + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenGlider + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_glider + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenRainbowhoriz + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_rainbowhoriz + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenBsod + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_bsod + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenRedtext + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_redtext + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenSinewave + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_sinewave + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenSquarewave + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_squarewave + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenEcgwave + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_ecgwave + +- type: marking + speciesRestriction: [IPC] + id: ScreenEyes + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_eyes + +- type: marking + speciesRestriction: [IPC] + id: ScreenEyestall + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_eyestall + +- type: marking + speciesRestriction: [IPC] + id: ScreenEyesangry + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_eyesangry + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenLoading + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_loading + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenWindowsxp + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_windowsxp + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenTetris + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_tetris + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenTv + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_tv + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenTextdrop + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_textdrop + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenStars + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_stars + +- type: marking + speciesRestriction: [IPC] + #sponsorOnly: true # Corvax-Sponsors + id: ScreenRainbowdiag + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_rainbowdiag + +- type: marking + speciesRestriction: [IPC] + id: ScreenBlank + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_blank + +- type: marking + speciesRestriction: [IPC] + id: ScreenSmile + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_smile + +- type: marking + speciesRestriction: [IPC] + id: ScreenFrown + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_frown + +- type: marking + speciesRestriction: [IPC] + id: ScreenRing + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_ring + +- type: marking + speciesRestriction: [IPC] + id: ScreenL + bodyPart: FacialHair + markingCategory: FacialHair + sprites: + - sprite: ADT/Mobs/Customization/ipc_screens.rsi + state: ipc_screen_l diff --git a/Resources/Prototypes/ADT/Entities/Mobs/player/Drask.yml b/Resources/Prototypes/ADT/Entities/Mobs/Player/Drask.yml similarity index 100% rename from Resources/Prototypes/ADT/Entities/Mobs/player/Drask.yml rename to Resources/Prototypes/ADT/Entities/Mobs/Player/Drask.yml diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Player/Tajaran.yml b/Resources/Prototypes/ADT/Entities/Mobs/Player/Tajaran.yml new file mode 100644 index 00000000000..aaf79c2861c --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Player/Tajaran.yml @@ -0,0 +1,65 @@ +- type: entity + save: false + name: "Таяр" + parent: BaseMobTajaran + id: MobTajaran + components: + - type: MeleeWeapon + soundHit: + collection: Punch + animation: WeaponArcClaw + damage: + types: + Blunt: 0.9 + Slash: 5 + - type: CombatMode + - type: InteractionPopup + successChance: 1 + interactSuccessString: petting-success-generic + interactSuccessSound: /Audio/ADT/Felinid/cat_purr1.ogg + messagePerceivedByOthers: petting-success-soft-floofy-others + interactSuccessSpawn: EffectHearts + interactDelay: 4 + - type: MindContainer + showExamineInfo: true + - type: Input + context: "human" + - type: MobMover + - type: InputMover + - type: Vocal + # maleScream: /Audio/Voice/Human/malescream_1.ogg + # femaleScream: /Audio/Voice/Human/femalescream_2.ogg + wilhelm: "/Audio/ADT/Felinid/cat_wilhelm.ogg" + sounds: + Male: ADTMaleTajaran + Female: ADTFemaleTajaran + Unsexed: ADTMaleTajaran + - type: Alerts + - type: Eye + - type: CameraRecoil + - type: Examiner + - type: CanHostGuardian + - type: NpcFactionMember + factions: + - NanoTrasen + - type: Respirator + damage: + types: + Asphyxiation: 1.0 + damageRecovery: + types: + Asphyxiation: -1.0 + - type: LanguageSpeaker + speaks: + - GalacticCommon + - SikTaj + - CintaTaj + understands: + - GalacticCommon + - SikTaj + - CintaTaj + - type: SizeAttributeWhitelist # Frontier + tall: true + tallscale: 1 + short: true + shortscale: 0.85 diff --git a/Resources/Prototypes/ADT/Entities/Mobs/player/Vulpkanin.yml b/Resources/Prototypes/ADT/Entities/Mobs/Player/Vulpkanin.yml similarity index 100% rename from Resources/Prototypes/ADT/Entities/Mobs/player/Vulpkanin.yml rename to Resources/Prototypes/ADT/Entities/Mobs/Player/Vulpkanin.yml diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Player/ipc.yml b/Resources/Prototypes/ADT/Entities/Mobs/Player/ipc.yml new file mode 100644 index 00000000000..2ec0397e02d --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Player/ipc.yml @@ -0,0 +1,146 @@ +# Simple Station + +- type: entity + id: MobIPC + parent: PlayerSiliconHumanoidBase + name: Urist McPositronic + #description: [mob_ipc-desc] + components: + - type: InteractionPopup + interactSuccessString: petting-success-ipc + #interactFailureString: petting-failure-cleanbot + interactSuccessSound: + path: /Audio/Ambience/Objects/periodic_beep.ogg + - type: SiliconEmitSoundOnDrained + sound: "/Audio/Weapons/Guns/EmptyAlarm/smg_empty_alarm.ogg" + interval: 15 + playChance: 1 + popUp: silicon-power-low + - type: MobState + allowedStates: + - Alive + - Critical + - Dead + - type: MobThresholds + thresholds: + 0: Alive + 125: Critical + 180: Dead + stateAlertDict: + Alive: BorgHealth + Critical: BorgCrit + Dead: BorgDead + allowRevives: true # Для воскрешения достаточно починить урон. - ss220. + - type: NpcFactionMember + factions: + - NanoTrasen + - type: TypingIndicator + proto: robot + - type: Destructible + thresholds: + - trigger: + !type:DamageTypeTrigger + damageType: Blunt + damage: 400 + behaviors: + - !type:GibBehavior { } + - type: SlowOnDamage + speedModifierThresholds: + 60: 0.7 + 90: 0.5 + 120: 0.3 + - type: SiliconDownOnDead + - type: Inventory + templateId: ipc + - type: EyeProtection + protectionTime: 12 + - type: Battery + maxCharge: 75000 + startingCharge: 75000 + - type: Silicon + entityType: enum.SiliconType.Player + batteryPowered: true + drainPerSecond: 30 + chargeThresholdMid: 0.80 + chargeThresholdLow: 0.35 + chargeThresholdCritical: 0.10 + speedModifierThresholds: + 4: 1 + 3: 1 + 2: 0.80 + 1: 0.45 + 0: 0.00 + - type: BatteryDrinker + - type: UnpoweredFlashlight + - type: PointLight + enabled: false + color: "#a8d8ff" + mask: /Textures/Effects/LightMasks/cone.png + autoRot: true + radius: 6 + - type: Wires + boardName: "ipc-board-name" + layoutId: IPC + - type: WiresPanel + - type: EncryptionKeyHolder + keySlots: 3 + examineWhileLocked: false + keysExtractionMethod: Cutting + - type: ActiveRadio + - type: IntrinsicRadioReceiver + - type: IntrinsicRadioTransmitter + - type: SSDIndicator +# - type: UnblockableSpeech + # - type: EmotePanel + - type: ContentEye + maxZoom: 1.0,1.0 + - type: LightningTarget + priority: 4 + lightningExplode: false + - type: Vocal + sounds: + Male: UnisexIPC + Female: UnisexIPC + Unsexed: UnisexIPC + - type: TriggerOnMobstateChange + mobState: + - Dead + - type: EmitSoundOnTrigger + sound: + path: /Audio/ADT/IPC/borg_deathsound.ogg + - type: TTS # Corvax-TTS + # Frontier - languages mechanic + - type: LanguageSpeaker + speaks: + - GalacticCommon + - BorgTalk + - RobotTalk + understands: + - GalacticCommon + - BorgTalk + - RobotTalk + - type: Tag + tags: + # - ChangelingBlacklist + # - ShoesRequiredStepTriggerImmune + - CanPilot + - FootstepSound + - DoorBumpOpener + # - type: SizeAttributeWhitelist # Frontier + # tall: true + # tallscale: 1.1 + # short: true + # shortscale: 0.9 + +- type: entity + save: false + name: Urist McPositronic + parent: MobHumanDummy + id: MobIPCDummy + noSpawn: true + description: A dummy IPC meant to be used in character setup. + components: + - type: HumanoidAppearance + species: IPC + - type: Inventory + templateId: ipc diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Player/moth.yml b/Resources/Prototypes/ADT/Entities/Mobs/Player/moth.yml new file mode 100644 index 00000000000..ea01677626d --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Player/moth.yml @@ -0,0 +1,5 @@ +- type: entity + save: false + name: Urist McFluff + parent: BaseMobMoth + id: MobMoth diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Player/silicon_base.yml b/Resources/Prototypes/ADT/Entities/Mobs/Player/silicon_base.yml new file mode 100644 index 00000000000..9295c7751f9 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Player/silicon_base.yml @@ -0,0 +1,381 @@ +# Simple Station + +- type: entity + save: false + abstract: true + id: ADTPlayerSiliconBase # For player controlled silicons + components: + - type: Reactive + groups: + Acidic: [Touch] + - type: Input + context: "human" + - type: InputMover + - type: ZombieImmune + - type: MobMover + - type: DamageOnHighSpeedImpact + damage: + types: + Blunt: 5 + soundHit: + path: /Audio/Effects/hit_kick.ogg + - type: Clickable + - type: Damageable + damageContainer: Inorganic # Note that for dumb reasons, this essentially makes them a wall. + - type: InteractionOutline + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeCircle + radius: 0.35 + density: 185 ### влияет на шанс Disarm. было 50 + mask: + - MobMask + layer: + - MobLayer + - type: MovementSpeedModifier + baseWalkSpeed: 3 + baseSprintSpeed: 4 + - type: Sprite + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: full + noRot: true + drawdepth: Mobs + - type: Physics + bodyType: KinematicController + - type: Body + prototype: Drone + - type: DoAfter + - type: Examiner + # - type: Recyclable + # safe: false + - type: StandingState + - type: Alerts + # - type: EyeProtection # You'll want this if your robot can't wear glasses, like an IPC. + # protectionTime: 12 + - type: Silicon + entityType: enum.SiliconType.Player + batteryPowered: false # Needs to also have a battery! + chargeThresholdMid: 0.60 + chargeThresholdLow: 0.30 + chargeThresholdCritical: 0 + speedModifierThresholds: + 4: 1 + 3: 1 + 2: 0.80 + 1: 0.45 + 0: 0.00 + - type: RadiationReceiver + - type: AtmosExposed + - type: Temperature + heatDamageThreshold: 700 + coldDamageThreshold: 0 + currentTemperature: 400 + specificHeat: 24 + coldDamage: + types: + Cold: 0.1 # Per second, scales with temperature & other constants. + heatDamage: + types: + Heat: 0.25 # Per second, scales with temperature & other constants. + atmosTemperatureTransferEfficiency: 0.05 + - type: ThermalRegulator + metabolismHeat: 600 + radiatedHeat: 350 + implicitHeatRegulation: 350 + sweatHeatRegulation: 0 # This might end up being a problem if they can't cool themselves down? + shiveringHeatRegulation: 1200 + normalBodyTemperature: 400 + thermalRegulationTemperatureThreshold: 125 + - type: ComplexInteraction + +- type: entity + parent: ADTPlayerSiliconBase + id: PlayerSiliconHumanoidBase + abstract: true + components: + - type: StatusIcon + - type: MobState + allowedStates: + - Alive + - Dead + - type: MobThresholds + thresholds: + 0: Alive + 165: Dead + - type: Damageable + damageContainer: ADTSiliconDamageContainer # Not a wall. + - type: Stamina + critThreshold: 200 + - type: Destructible + thresholds: + - trigger: !type:DamageTrigger + damage: 500 + behaviors: + - !type:GibBehavior {} + - type: Icon + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: full + - type: MindContainer + showExamineInfo: true + - type: Sprite + noRot: true + drawdepth: Mobs + 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/masking_helpers.rsi + state: female_full + visible: false + - map: ["enum.HumanoidVisualLayers.LFoot"] + - map: ["enum.HumanoidVisualLayers.RFoot"] + - map: ["socks"] + - map: ["underpants"] + - map: ["undershirt"] + - map: ["jumpsuit"] + - map: ["enum.HumanoidVisualLayers.LHand"] + - map: ["enum.HumanoidVisualLayers.RHand"] + - 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: ["mask"] + - map: ["head"] + - map: ["pocket1"] + - map: ["pocket2"] + - map: ["enum.HumanoidVisualLayers.Tail"] + #- map: ["enum.HumanoidVisualLayers.Wings"] + - map: ["clownedon"] # Dynamically generated + sprite: "Effects/creampie.rsi" + state: "creampie_human" + visible: false + - type: Repairable + #fuelcost: 60 + doAfterDelay: 10 # was 18 + damage: + types: + Blunt: -20 + Slash: -20 + Piercing: -20 + #bloodlossModifier: -100 + - type: Bloodstream ### я добавил компонент Bloodstream как заглушку. Он нужен, +# чтобы хилиться с помощью CableStack. Дело в том, что HealingSystem использует проверку на наличие BloodstreamComponent. +# В любом случае Bloodstream здесь является костылём, чтобы не лезть в код. В будущем можно зделать для IPC нормальную bloodstream систему. + damageBleedModifiers: BloodlossIPC + bloodReagent: Water + bleedReductionAmount: 0 + bloodMaxVolume: 0 + chemicalMaxVolume: 0 + bleedPuddleThreshold: 3 + bloodRefreshAmount: 0 + bloodlossThreshold: 0 + maxBleedAmount: 0 + bloodlossDamage: + types: + Burn: 1.5 + bloodlossHealDamage: + types: + Burn: 0 + - type: Flammable + fireSpread: true + canResistFire: true + damage: + types: + Heat: 0.75 #per second, scales with number of fire 'stacks' + # - type: Barotrauma # Not particularly modifiable. In the future, some response to pressure changes would be nice. + # damage: + # types: + # Blunt: 0.28 #per second, scales with pressure and other constants. + - type: Temperature + heatDamageThreshold: 320 + coldDamageThreshold: 255 + currentTemperature: 280 + specificHeat: 50 + coldDamage: + types: + Cold: 0.1 #per second, scales with temperature & other constants + heatDamage: + types: + Heat: 0.15 #per second, scales with temperature & other constants + atmosTemperatureTransferEfficiency: 0.4 + - type: ThermalRegulator + metabolismHeat: 1000 # Increase once we have more ways to regulate temperature + radiatedHeat: 800 + implicitHeatRegulation: 600 + sweatHeatRegulation: 0 + shiveringHeatRegulation: 12000 # Overclocking, yo + normalBodyTemperature: 280 + thermalRegulationTemperatureThreshold: 32 + - type: Polymorphable + - type: Identity + - type: MovedByPressure + - type: DamageOnHighSpeedImpact + damage: + types: + Blunt: 5 + soundHit: + path: /Audio/Effects/metal_break1.ogg + - type: LagCompensation + - type: RangedDamageSound + soundGroups: + Brute: + collection: MetalBulletImpact + soundTypes: + Heat: + collection: MetalLaserImpact + - type: Tag + tags: + - CanPilot + - FootstepSound + - DoorBumpOpener + - type: Hands + - type: Inventory + templateId: human + - type: InventorySlots + - type: Appearance + - type: GenericVisualizer + visuals: + enum.CreamPiedVisuals.Creamed: + clownedon: + True: { visible: true } + False: { visible: false } + - type: RotationVisuals + - type: FloatingVisuals + - type: FireVisuals + sprite: Mobs/Effects/onfire.rsi + normalState: Generic_mob_burning + alternateState: Standing + fireStackAlternateState: 3 + - type: CombatMode + canDisarm: true + - type: Climbing + - type: Cuffable + - type: AnimationPlayer + - type: Buckle + - type: CreamPied + - type: Stripping + - type: Strippable + - type: UserInterface + interfaces: + enum.VoiceMaskUIKey.Key: + type: VoiceMaskBoundUserInterface + enum.HumanoidMarkingModifierKey.Key: + type: HumanoidMarkingModifierBoundUserInterface + enum.StrippingUiKey.Key: + type: StrippableBoundUserInterface + - type: Emoting + - type: Grammar + attributes: + proper: true + - type: StandingState + - type: CanEscapeInventory + - type: HumanoidAppearance + species: IPC + - type: Body + prototype: IPC + requiredLegs: 2 + - type: Ensnareable + sprite: Objects/Misc/ensnare.rsi + - type: Speech + speechSounds: Pai + - type: Vocal + sounds: + Male: MaleHuman + Female: FemaleHuman + Unsexed: MaleHuman + - type: MeleeWeapon + hidden: true + soundHit: + collection: Punch + angle: 30 + animation: WeaponArcFist + attackRate: 1 + damage: + types: + Blunt: 6 # It's tough. + - type: MobPrice + price: 1500 # Kidnapping a living person and selling them for cred is a good move. + deathPenalty: 0.01 # However they really ought to be living and intact, otherwise they're worth 100x less. + - type: Pullable + - type: Puller + - type: Reactive + groups: + Flammable: [Touch] + Extinguish: [Touch] + Acidic: [Touch, Ingestion] + reactions: + - reagents: [Water, SpaceCleaner] + methods: [Touch] + effects: + - !type:WashCreamPieReaction + - type: BodyEmotes + soundsId: GeneralBodyEmotes + - type: DamageVisuals + thresholds: [20, 50, 100] + targetLayers: + - "enum.HumanoidVisualLayers.Chest" + - "enum.HumanoidVisualLayers.Head" + - "enum.HumanoidVisualLayers.LArm" + - "enum.HumanoidVisualLayers.LLeg" + - "enum.HumanoidVisualLayers.RArm" + - "enum.HumanoidVisualLayers.RLeg" + damageOverlayGroups: + Brute: + sprite: Mobs/Effects/brute_damage.rsi + color: "#1a1a1a" + Burn: + sprite: Mobs/Effects/burn_damage.rsi + # Organs + - type: IdExaminable + - type: HealthExaminable + examinableTypes: + - Blunt + - Slash + - Piercing + - Heat + - Shock + - type: StatusEffects + allowed: + - Stun + - KnockedDown + - SlowedDown + - Stutter + - SeeingRainbows + - Electrocution + # - Drunk + - SlurredSpeech + # - PressureImmunity + - Muted + # - ForcedSleep + - TemporaryBlindness + - Pacified + # - PsionicsDisabled + # - PsionicallyInsulated + - SeeingStatic + - type: Blindable diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/Tajaran.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/Tajaran.yml new file mode 100644 index 00000000000..c39720a0a07 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/Tajaran.yml @@ -0,0 +1,72 @@ +- type: entity + save: false + name: Tajaran McHands + parent: BaseMobSpeciesOrganic + id: BaseMobTajaran + abstract: true + components: + - type: HumanoidAppearance + species: TajaranSpecies + - type: Body + prototype: Tajaran + requiredLegs: 2 + - type: RoarAccent + - type: Hunger + - type: Thirst + - type: Icon + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: tajaran_m + - type: Damageable + damageContainer: Biological + damageModifierSet: Fur + - type: MeleeWeapon + hidden: true + soundHit: + path: /Audio/Weapons/pierce.ogg + angle: 30 + animation: WeaponArcPunch + damage: + types: + Piercing: 5 + - type: Temperature + heatDamageThreshold: 400 + coldDamageThreshold: 200 + currentTemperature: 310.15 + specificHeat: 46 + coldDamage: + types: + Cold : 0.2 #per second, scales with temperature & other constants + heatDamage: + types: + Heat : 0.1 #per second, scales with temperature & other constants + - type: MovementSpeedModifier + baseWalkSpeed : 2.7 + baseSprintSpeed : 4.6 + - type: Perishable + - type: MobThresholds + thresholds: + 0: Alive + 80: Critical + 200: Dead + - type: Sprite + netsync: false + noRot: true + drawdepth: Mobs + scale: 0.95, 0.95 + +- type: entity + save: false + name: Tajaran McHands + parent: MobHumanDummy + id: MobTajaranDummy + noSpawn: true + description: A dummy tajaran meant to be used in character setup. + components: + - type: HumanoidAppearance + species: TajaranSpecies + - type: Sprite + netsync: false + noRot: true + drawdepth: Mobs + scale: 0.95, 0.95 + diff --git a/Resources/Prototypes/ADT/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/ADT/Entities/Mobs/Species/moth.yml new file mode 100644 index 00000000000..7a9335779fb --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Mobs/Species/moth.yml @@ -0,0 +1,141 @@ +- type: entity + save: false + name: Urist McFluff + parent: BaseMobSpeciesOrganic + id: BaseMobMoth + abstract: true + components: + - type: HumanoidAppearance + species: Moth + - type: Hunger + starvationDamage: + types: + Cold: 0.05 + Bloodloss: 0.05 + - type: Thirst + - type: Icon + sprite: ADT/Mobs/Species/Moth/parts.rsi + state: full + - type: Body + prototype: Moth + requiredLegs: 2 + - type: Damageable + damageContainer: Biological + damageModifierSet: Moth + - type: ZombieAccentOverride + accent: zombieMoth + - type: Speech + speechVerb: Moth + - type: TypingIndicator + proto: moth + - type: Butcherable + butcheringType: Spike + spawned: + - id: FoodMeat + amount: 5 + - type: Bloodstream + bloodReagent: InsectBlood + - type: DamageVisuals + damageOverlayGroups: + Brute: + sprite: Mobs/Effects/brute_damage.rsi + color: "#808A51" + - type: MothAccent + - type: Vocal + sounds: + Male: MaleMoth + Female: FemaleMoth + Unsexed: MaleMoth + - type: MovementSpeedModifier + weightlessAcceleration: 1.5 # Move around more easily in space. + weightlessFriction: 1 + weightlessModifier: 1 + - type: Flammable + damage: + types: + Heat: 4.5 # moths burn more easily + - type: Temperature # Moths hate the heat and thrive in the cold. + heatDamageThreshold: 320 + coldDamageThreshold: 230 + currentTemperature: 310.15 + 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: Sprite # sprite again because we want different layer ordering + noRot: true + drawdepth: Mobs + 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 #PJB on stencil clear being on the left leg: "...this is 'fine'" -https://github.com/space-wizards/space-station-14/pull/12217#issuecomment-1291677115 + # its fine, but its still very stupid that it has to be done like this instead of allowing sprites to just directly insert a stencil clear. + # sprite refactor when + state: l_leg + - shader: StencilMask + map: [ "enum.HumanoidVisualLayers.StencilMask" ] + sprite: Mobs/Customization/masking_helpers.rsi + state: unisex_full + visible: false + - map: [ "underwearb" ] #Sirena + - map: [ "underweart" ] #Sirena + - map: [ "enum.HumanoidVisualLayers.LFoot" ] + - map: [ "enum.HumanoidVisualLayers.RFoot" ] + - map: [ "socks" ] #Sirena + - 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: [ "gloves" ] + - map: [ "shoes" ] + - map: [ "ears" ] + - map: [ "outerClothing" ] + - map: [ "eyes" ] + - map: [ "belt" ] + - map: [ "id" ] + - map: [ "enum.HumanoidVisualLayers.Tail" ] #in the utopian future we should probably have a wings enum inserted here so everyhting doesn't break + - map: [ "neck" ] + - map: [ "back" ] + - map: [ "enum.HumanoidVisualLayers.FacialHair" ] + - map: [ "enum.HumanoidVisualLayers.Hair" ] + - map: [ "enum.HumanoidVisualLayers.HeadSide" ] + - map: [ "enum.HumanoidVisualLayers.HeadTop" ] + - map: [ "mask" ] + - map: [ "head" ] + - map: [ "pocket1" ] + - map: [ "pocket2" ] + - map: [ "clownedon" ] # Dynamically generated + sprite: "Effects/creampie.rsi" + state: "creampie_moth" + visible: false + - type: LanguageSpeaker # Frontier + speaks: + - GalacticCommon + - Nian + understands: + - GalacticCommon + - Nian + +- type: entity + parent: BaseSpeciesDummy + id: MobMothDummy + noSpawn: true + components: + - type: HumanoidAppearance + species: Moth diff --git a/Resources/Prototypes/NES/Entities/Mobs/SpeciesSound/vulpkanin_voice.yml b/Resources/Prototypes/ADT/Entities/Mobs/SpeciesSound/vulpkanin_voice.yml similarity index 69% rename from Resources/Prototypes/NES/Entities/Mobs/SpeciesSound/vulpkanin_voice.yml rename to Resources/Prototypes/ADT/Entities/Mobs/SpeciesSound/vulpkanin_voice.yml index f9b230728f3..6cecff851d7 100644 --- a/Resources/Prototypes/NES/Entities/Mobs/SpeciesSound/vulpkanin_voice.yml +++ b/Resources/Prototypes/ADT/Entities/Mobs/SpeciesSound/vulpkanin_voice.yml @@ -1,70 +1,5 @@ #Для звуков и голосов вульпочек -- type: emote - id: VulpHeckaet - name: chat-emote-name-heck - category: Vocal - chatMessages: [хекает] - chatTriggers: - - кхе - - кхе. - - хекает - - хекает. - - отдышка - - отдышка. - -- type: emote - id: VulpHowl - name: chat-emote-name-howl - category: Vocal - chatMessages: [воет] - chatTriggers: - - воет - - воет. - - воет! - -- type: emote - id: VulpWhine - name: chat-emote-name-whine - category: Vocal - chatMessages: [скулит] - chatTriggers: - - скул - - скул. - - скул! - - скулит - - скулит. - - скулит! - -- type: emote - id: VulpBark - name: chat-emote-name-bark - category: Vocal - chatMessages: [лает] - chatTriggers: - - лает - - лает. - - лает! - - гавкает - - гавкает. - - гавкает! - - гав - - гав. - - гав! - - рявкает - - рявкает. - - рявкает! - -- type: emote - id: VulpGrowl - name: chat-emote-name-growl - category: Vocal - chatMessages: [воет] - chatTriggers: - - рычит - - рычит. - - рычит! - - type: soundCollection id: NesMaleVulpaScreams files: @@ -150,17 +85,17 @@ collection: MaleSigh Crying: collection: MaleCry - VulpHowl: + Howl: collection: VulpHowls - VulpBark: + Bark: collection: VulpBarks - VulpGrowl: + Growl: collection: VulpGrowls - VulpWhine: + Whine: collection: VulpWhines Whistle: collection: Whistles - VulpHeckaet: + Heckaet: collection: VulpHeckaetSound - type: emoteSounds @@ -194,15 +129,15 @@ collection: FemaleSigh Crying: collection: FemaleCry - VulpHowl: + Howl: collection: VulpHowls - VulpBark: + Bark: collection: VulpBarks - VulpGrowl: + Growl: collection: VulpGrowls - VulpWhine: + Whine: collection: VulpWhines Whistle: collection: Whistles - VulpHeckaet: + Heckaet: collection: VulpHeckaetSound diff --git a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Drinks/drinks_cans.yml b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Drinks/drinks_cans.yml new file mode 100644 index 00000000000..1d17e418785 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Drinks/drinks_cans.yml @@ -0,0 +1,15 @@ +- type: entity + parent: DrinkCanBaseFull + id: ADTDrinkNoStopCan + name: No Stop Can + description: No Stop Can + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: EnergyDrink + Quantity: 30 + - type: Sprite + sprite: ADT/Objects/Consumable/Drinks/nostop.rsi diff --git a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/frozen.yml b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/frozen.yml new file mode 100644 index 00000000000..4bf6075779e --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/frozen.yml @@ -0,0 +1,882 @@ + +# Мороженки + +- type: entity + parent: FoodFrozenBase + id: ADTFoodFrozenBase + abstract: true + components: + - type: Food + - type: Sprite + sprite: ADT/Objects/Consumable/Food/Frozen/ice.rsi + - type: SolutionContainerManager + solutions: + food: + maxVol: 20 + reagents: + - ReagentId: Nutriment + Quantity: 10 + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenChocolateFreezy + components: + - type: Food + - type: Sprite + state: chocolatefreezy + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenChocolateFreezyCaramel + components: + - type: Food + - type: Sprite + state: chocolatefreezy_caramel + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenChocolateIceCream + components: + - type: Food + - type: Sprite + state: chocolateicecream + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenHonkdae + components: + - type: Food + - type: Sprite + state: honkdae + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenIceCreamCone + components: + - type: Food + - type: Sprite + state: icecreamcone + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenIceCreamWafflecone + components: + - type: Food + - type: Sprite + state: icecreamwafflecone + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenIceCreamWaffleconeNuts + components: + - type: Food + - type: Sprite + state: icecreamwaffleconenuts + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenPineappleChocolate + components: + - type: Food + - type: Sprite + state: pineapplechocolate + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenSpaceFreezy + components: + - type: Food + - type: Sprite + state: spacefreezy + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenSpaceFreezyCaramel + components: + - type: Food + - type: Sprite + state: spacefreezy_caramel + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenSpaceIceCream + components: + - type: Food + - type: Sprite + state: spaceicecream + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenStrawberryIceCream + components: + - type: Food + - type: Sprite + state: strawberryicecream + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenSundae + components: + - type: Food + - type: Sprite + state: sundae + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenThreeFlavorsFreezy + components: + - type: Food + - type: Sprite + state: threeflavorsfreezy + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenThreeFlavorsFreezyCaramel + components: + - type: Food + - type: Sprite + state: threeflavorsfreezy_caramel + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenVanillaFreezy + components: + - type: Food + - type: Sprite + state: vanillafreezy + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenVanillaFreezyCaramel + components: + - type: Food + - type: Sprite + state: vanillafreezy_caramel + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenVanillaIceCream + components: + - type: Food + - type: Sprite + state: vanillaicecream + +- type: entity + parent: ADTFoodFrozenBase + id: ADTFoodFrozenWafflecone + components: + - type: Food + - type: Sprite + state: wafflecone + +# Мороженные на палочке + +- type: entity + name: Popsicle + parent: ADTFoodFrozenBase + id: ADTFoodFrozenPopsicleBase + abstract: true + components: + - type: Sprite + layers: + - state: IceCreamStick + - state: bananafruitIce + - type: Food + trash: FoodFrozenPopsicleTrash + - type: Tag + tags: + - Fruit + +- type: entity + name: Popsicle + parent: ADTFoodFrozenPopsicleBase + id: ADTFoodFrozenPopsicleBananaFruitIce + components: + - type: Sprite + layers: + - state: IceCreamStick + - state: bananafruitIce + +- type: entity + name: Popsicle + parent: ADTFoodFrozenPopsicleBase + id: ADTFoodFrozenPopsicleBerryFruitIce + components: + - type: Sprite + layers: + - state: IceCreamStick + - state: berryfruitIce + +- type: entity + name: Popsicle + parent: ADTFoodFrozenPopsicleBase + id: ADTFoodFrozenChocolatePopsicle + components: + - type: Sprite + layers: + - state: IceCreamStick + - state: chocolatepopsicle + +- type: entity + name: Popsicle + parent: ADTFoodFrozenPopsicleBase + id: ADTFoodFrozenChocolatePopsicleWithNuts + components: + - type: Sprite + layers: + - state: IceCreamStick + - state: chocolatepopsiclewithnuts + +- type: entity + name: Popsicle + parent: ADTFoodFrozenPopsicleBase + id: ADTFoodFrozenPopsicleGrapeFruitIce + components: + - type: Sprite + layers: + - state: IceCreamStick + - state: grapefruitIce + +- type: entity + name: Popsicle + parent: ADTFoodFrozenPopsicleBase + id: ADTFoodFrozenPopsicleJumbo + components: + - type: Sprite + layers: + - state: IceCreamStick + - state: jumbopopsicle + +- type: entity + name: Popsicle + parent: ADTFoodFrozenPopsicleBase + id: ADTFoodFrozenPopsicleMangoFruitIce + components: + - type: Sprite + layers: + - state: IceCreamStick + - state: mangofruitIce + +- type: entity + name: Popsicle + parent: ADTFoodFrozenPopsicleBase + id: ADTFoodFrozenMelonPopsicle + components: + - type: Sprite + layers: + - state: IceCreamStick + - state: melonpopsicle + +- type: entity + name: Popsicle + parent: ADTFoodFrozenPopsicleBase + id: ADTFoodFrozenOrangePopsicle + components: + - type: Sprite + layers: + - state: IceCreamStick + - state: orangepopsicle + +- type: entity + name: Popsicle + parent: ADTFoodFrozenPopsicleBase + id: ADTFoodFrozenPopsicleApple + components: + - type: Sprite + layers: + - state: IceCreamStick + - state: popsicleapple + +- type: entity + name: Popsicle + parent: ADTFoodFrozenPopsicleBase + id: ADTFoodFrozenPopsicleBanana + components: + - type: Sprite + layers: + - state: IceCreamStick + - state: popsiclebanana + +- type: entity + name: Popsicle + parent: ADTFoodFrozenPopsicleBase + id: ADTFoodFrozenPopsicleMole + components: + - type: Sprite + layers: + - state: IceCreamStick + - state: popsiclemole + +- type: entity + name: Popsicle + parent: ADTFoodFrozenPopsicleBase + id: ADTFoodFrozenPopsicleSeaSalt + components: + - type: Sprite + layers: + - state: IceCreamStick + - state: seasaltppopsicle + +- type: entity + name: Popsicle + parent: ADTFoodFrozenPopsicleBase + id: ADTFoodFrozenPopsicleStrawberryFruitIce + components: + - type: Sprite + layers: + - state: IceCreamStick + - state: strawberryfruitIce + +- type: entity + name: Popsicle + parent: ADTFoodFrozenPopsicleBase + id: ADTFoodFrozenThreeFlavorsPopsicle + components: + - type: Sprite + layers: + - state: IceCreamStick + - state: threeflavorspopsicle + +- type: entity + name: Popsicle + parent: ADTFoodFrozenPopsicleBase + id: ADTFoodFrozenWatermelonPopsicle + components: + - type: Sprite + layers: + - state: IceCreamStick + - state: watermelonpopsicle + +# Упаковки с мороженым + +- type: entity + name: Frozen Packed + parent: BaseItem + id: ADTFoodFrozenPackedBase + abstract: true + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Food/Frozen/packed.rsi + state: chocolatefreezy_packing + - type: Item + size: Tiny + - type: Tag + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenChocolateFreezy + - id: ADTFoodFrozenChocolateFreezyTrash + sound: + path: /Audio/Effects/unwrap.ogg + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedChocolateFreezy + components: + - type: Sprite + state: chocolatefreezy_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenChocolateFreezy + - id: ADTFoodFrozenChocolateFreezyTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedChocolateIceCream + components: + - type: Sprite + state: chocolateicecream_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenChocolateIceCream + - id: ADTFoodFrozenChocolateIceCreamTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedChocolatePopsicle + components: + - type: Sprite + state: chocolatepopsicle_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenChocolatePopsicle + - id: ADTFoodFrozenChocolatePopsicleTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedChocolatePopsicleWithNuts + components: + - type: Sprite + state: chocolatepopsiclewithnuts_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenChocolatePopsicleWithNuts + - id: ADTFoodFrozenChocolatePopsicleWithNutsTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedIceCreamWafflecone + components: + - type: Sprite + state: icecreamwafflecone_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenIceCreamWafflecone + - id: ADTFoodFrozenIceCreamWaffleconeTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedIceCreamWaffleconeNuts + components: + - type: Sprite + state: icecreamwaffleconenuts_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenIceCreamWaffleconeNuts + - id: ADTFoodFrozenIceCreamWaffleconeNutsTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedJumboPopsicle + components: + - type: Sprite + state: jumbopopsicle_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenPopsicleJumbo + - id: ADTFoodFrozenPopsicleJumboTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedMelonPopsicle + components: + - type: Sprite + state: melonpopsicle_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenMelonPopsicle + - id: ADTFoodFrozenMelonPopsicleTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedOrangePopsicle + components: + - type: Sprite + state: orangepopsicle_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenOrangePopsicle + - id: ADTFoodFrozenOrangePopsicleTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedPineappleChocolate + components: + - type: Sprite + state: pineapplechocolate_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenPineappleChocolate + - id: ADTFoodFrozenPineappleChocolateTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedPopsicleApple + components: + - type: Sprite + state: popsicleapple_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenPopsicleApple + - id: ADTFoodFrozenPopsicleAppleTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedPopsicleBanana + components: + - type: Sprite + state: popsiclebanana_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenPopsicleBanana + - id: ADTFoodFrozenPopsicleBananaTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedPopsicleMole + components: + - type: Sprite + state: popsiclemole_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenPopsicleMole + - id: ADTFoodFrozenPopsicleMoleTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedRandomFruitIce + components: + - type: Sprite + state: randomfruitIce + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenRandomFruitIceTrash + - id: ADTFoodFrozenPopsicleBerryFruitIce + orGroup: FruitIce + - id: ADTFoodFrozenPopsicleBananaFruitIce + orGroup: FruitIce + - id: ADTFoodFrozenPopsicleGrapeFruitIce + orGroup: FruitIce + - id: ADTFoodFrozenPopsicleMangoFruitIce + orGroup: FruitIce + - id: ADTFoodFrozenPopsicleStrawberryFruitIce + orGroup: FruitIce + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedPopsicleSeaSalt + components: + - type: Sprite + state: seasaltppopsicle_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenPopsicleSeaSalt + - id: ADTFoodFrozenPopsicleSeaSaltTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedSpaceFreezy + components: + - type: Sprite + state: spacefreezy_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenSpaceFreezy + - id: ADTFoodFrozenSpaceFreezyTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedSpaceIceCream + components: + - type: Sprite + state: spaceicecream_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenSpaceIceCream + - id: ADTFoodFrozenSpaceIceCreamTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedStrawberryIceCream + components: + - type: Sprite + state: strawberryicecream_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenStrawberryIceCream + - id: ADTFoodFrozenStrawberryIceCreamTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedThreeFlavorsFreezy + components: + - type: Sprite + state: threeflavorsfreezy_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenThreeFlavorsFreezy + - id: ADTFoodFrozenThreeFlavorsFreezyTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedThreeFlavorsPopsicle + components: + - type: Sprite + state: threeflavorspopsicle_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenThreeFlavorsPopsicle + - id: ADTFoodFrozenThreeFlavorsPopsicleTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedVanillaFreezy + components: + - type: Sprite + state: vanillafreezy_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenVanillaFreezy + - id: ADTFoodFrozenVanillaFreezyTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedVanillaIceCream + components: + - type: Sprite + state: vanillaicecream_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenVanillaIceCream + - id: ADTFoodFrozenVanillaIceCreamTrash + +- type: entity + name: Frozen Packed + parent: ADTFoodFrozenPackedBase + id: ADTFoodFrozenPackedWatermelonPopsicle + components: + - type: Sprite + state: watermelonpopsicle_packing + - type: SpawnItemsOnUse + items: + - id: ADTFoodFrozenWatermelonPopsicle + - id: ADTFoodFrozenWatermelonPopsicleTrash + +# Мусор + +- type: entity + parent: BaseItem + id: ADTFoodPacketFrozenTrashBase + description: This is rubbish. + abstract: true + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Food/Frozen/trash.rsi + state: chocolatefreezy_trash + - type: Tag + tags: + - Trash + - type: PhysicalComposition + materialComposition: + Steel: 100 + - type: SpaceGarbage + - type: StaticPrice + price: 0 + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenChocolateFreezyTrash + noSpawn: true + components: + - type: Sprite + state: chocolatefreezy_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenChocolateIceCreamTrash + noSpawn: true + components: + - type: Sprite + state: chocolateicecream_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenChocolatePopsicleTrash + noSpawn: true + components: + - type: Sprite + state: ChocolatePopsicle_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenChocolatePopsicleWithNutsTrash + noSpawn: true + components: + - type: Sprite + state: chocolatepopsiclewithnuts_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenIceCreamWaffleconeTrash + noSpawn: true + components: + - type: Sprite + state: icecreamwafflecone_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenIceCreamWaffleconeNutsTrash + noSpawn: true + components: + - type: Sprite + state: icecreamwaffleconenuts_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenPopsicleJumboTrash + noSpawn: true + components: + - type: Sprite + state: jumbopopsicle_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenMelonPopsicleTrash + noSpawn: true + components: + - type: Sprite + state: melonpopsicle_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenOrangePopsicleTrash + noSpawn: true + components: + - type: Sprite + state: orangepopsicle_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenPineappleChocolateTrash + noSpawn: true + components: + - type: Sprite + state: pineapplechocolate_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenPopsicleAppleTrash + noSpawn: true + components: + - type: Sprite + state: popsicleapple_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenPopsicleBananaTrash + noSpawn: true + components: + - type: Sprite + state: popsiclebanana_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenPopsicleMoleTrash + noSpawn: true + components: + - type: Sprite + state: popsiclemole_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenRandomFruitIceTrash + noSpawn: true + components: + - type: Sprite + state: randomfruitIce_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenPopsicleSeaSaltTrash + noSpawn: true + components: + - type: Sprite + state: seasaltppopsicle_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenSpaceFreezyTrash + noSpawn: true + components: + - type: Sprite + state: spacefreezy_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenSpaceIceCreamTrash + noSpawn: true + components: + - type: Sprite + state: spaceicecream_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenStrawberryIceCreamTrash + noSpawn: true + components: + - type: Sprite + state: strawberryicecream_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenThreeFlavorsFreezyTrash + noSpawn: true + components: + - type: Sprite + state: threeflavorsfreezy_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenThreeFlavorsPopsicleTrash + noSpawn: true + components: + - type: Sprite + state: threeflavorspopsicle_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenVanillaFreezyTrash + noSpawn: true + components: + - type: Sprite + state: vanillafreezy_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenVanillaIceCreamTrash + noSpawn: true + components: + - type: Sprite + state: vanillaicecream_trash + +- type: entity + name: Frozen + parent: ADTFoodPacketFrozenTrashBase + id: ADTFoodFrozenWatermelonPopsicleTrash + noSpawn: true + components: + - type: Sprite + state: watermelonpopsicle_trash diff --git a/Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/snacks.yml b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/snacks.yml new file mode 100644 index 00000000000..fd78b688f86 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Consumable/Food/snacks.yml @@ -0,0 +1,492 @@ +# Чипсеки + +- type: entity + name: chips + parent: FoodSnackBase + id: ADTFoodSnackChipsBase + description: chips + abstract: true + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Food/Snacks/Chips/chips.rsi + state: onion-and-sourcream + - type: Item + - type: Food + trash: ADTFoodPacketChipsTrash + +- type: entity + name: chips + parent: ADTFoodSnackChipsBase + id: ADTFoodSnackChipsOnionAndSourcream + description: chips + components: + - type: Sprite + state: onion-and-sourcream + - type: Food + trash: ADTFoodPacketChipsOnionAndSourcreamTrash + +- type: entity + name: chips + parent: ADTFoodSnackChipsBase + id: ADTFoodSnackChipsShrimp + description: chips + components: + - type: Sprite + state: shrimp + - type: Food + trash: ADTFoodPacketChipsShrimpTrash + +- type: entity + name: chips + parent: ADTFoodSnackChipsBase + id: ADTFoodSnackChipsSpace + description: chips + components: + - type: Sprite + state: space + - type: Food + trash: ADTFoodPacketChipsSpaceTrash + +- type: entity + name: chips + parent: ADTFoodSnackChipsBase + id: ADTFoodSnackChipsSpicy + description: chips + components: + - type: Sprite + state: spicy + - type: Food + trash: ADTFoodPacketSpicyTrash + - type: SolutionContainerManager + solutions: + food: + maxVol: 30 + reagents: + - ReagentId: Nutriment + Quantity: 5 + - ReagentId: CapsaicinOil + Quantity: 5 + +# Сушеное мясо + +- type: entity + name: Dried meat + parent: FoodSnackBase + id: ADTFoodSnackDriedBase + description: Dried meat + abstract: true + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Food/Snacks/Dried/meat.rsi + state: beef + - type: Item + - type: Food + trash: ADTFoodPacketBeefTrash +# Я однако не знаю какое им делать наполнение,по дефолту у них 10 питательных веществ, если нужно то заполните в base свои значения + +- type: entity + name: Dried meat + parent: ADTFoodSnackDriedBase + id: ADTFoodSnackDriedBeef + description: Dried meat + components: + - type: Sprite + state: beef + - type: Item + - type: Food + trash: ADTFoodPacketBeefTrash + +- type: entity + name: Dried meat + parent: ADTFoodSnackDriedBase + id: ADTFoodSnackDriedChicken + description: Dried meat + components: + - type: Sprite + state: chicken + - type: Item + - type: Food + trash: ADTFoodPacketChickenTrash + +- type: entity + name: Dried meat + parent: ADTFoodSnackDriedBase + id: ADTFoodSnackDriedHorse + description: Dried meat + components: + - type: Sprite + state: horse + - type: Item + - type: Food + trash: ADTFoodPacketHorseTrash + +- type: entity + name: Dried meat + parent: ADTFoodSnackDriedBase + id: ADTFoodSnackDriedPig + description: Dried meat + components: + - type: Sprite + state: pig + - type: Item + - type: Food + trash: ADTFoodPacketPigTrash + +# Мусор + +- type: entity + noSpawn: true + parent: FoodPacketTrash + id: ADTFoodPacketChipsTrashBase + description: This is rubbish. + abstract: true + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Food/Snacks/Chips/trash.rsi + state: onion-and-sourcream-trash + - type: Item + +- type: entity + noSpawn: true + parent: FoodPacketTrash + id: ADTFoodDriedPacketTrashBase + description: This is rubbish. + abstract: true + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Food/Snacks/Dried/trash.rsi + state: beef-trash + - type: Item + +- type: entity + noSpawn: true + parent: ADTFoodPacketChipsTrashBase + id: ADTFoodPacketChipsOnionAndSourcreamTrash + description: This is rubbish. + components: + - type: Sprite + state: onion-and-sourcream-trash + +- type: entity + noSpawn: true + parent: ADTFoodPacketChipsTrashBase + id: ADTFoodPacketChipsShrimpTrash + description: This is rubbish. + components: + - type: Sprite + state: shrimp-trash + +- type: entity + noSpawn: true + parent: ADTFoodPacketChipsTrashBase + id: ADTFoodPacketChipsSpaceTrash + description: This is rubbish. + components: + - type: Sprite + state: space-trash + +- type: entity + noSpawn: true + parent: ADTFoodPacketChipsTrashBase + id: ADTFoodPacketSpicyTrash + description: This is rubbish. + components: + - type: Sprite + state: spicy-trash + +# разделитель + +- type: entity + noSpawn: true + parent: ADTFoodDriedPacketTrashBase + id: ADTFoodPacketBeefTrash + description: This is rubbish. + components: + - type: Sprite + state: beef-trash + +- type: entity + noSpawn: true + parent: ADTFoodDriedPacketTrashBase + id: ADTFoodPacketChickenTrash + description: This is rubbish. + components: + - type: Sprite + state: chicken-trash + +- type: entity + noSpawn: true + parent: ADTFoodDriedPacketTrashBase + id: ADTFoodPacketHorseTrash + description: This is rubbish. + components: + - type: Sprite + state: horse-trash + +- type: entity + noSpawn: true + parent: ADTFoodDriedPacketTrashBase + id: ADTFoodPacketPigTrash + description: This is rubbish. + components: + - type: Sprite + state: pig-trash + +#Chocolate packing + +- type: entity + name: chocolate bar + parent: FoodSnackChocolate + id: ADTFoodSnackChocolateBarsBase + description: Tastes like cardboard. + abstract: true + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Food/Chocolate/packing.rsi + state: choco-packed + - type: Item + heldPrefix: chocolatebar + size: Tiny + - type: Tag + tags: + - FoodSnack + - type: SpawnItemsOnUse + items: + - id: FoodPacketChocolateTrash + - id: FoodSnackChocolateBar + sound: + path: /Audio/Effects/unwrap.ogg + +- type: entity + name: chocolate bar + parent: ADTFoodSnackChocolateBarsBase + id: ADTFoodSnackChocolateBarChocoPack + description: Tastes like cardboard. + components: + - type: Sprite + state: choco-packed + - type: Tag + - type: SpawnItemsOnUse + items: + - id: ADTFoodPacketChocolateTrashChoco + - id: ADTFoodSnackChocolateBarCoconut + +- type: entity + name: chocolate bar + parent: ADTFoodSnackChocolateBarsBase + id: ADTFoodSnackChocolateBarCoconutPack + description: Tastes like cardboard. + components: + - type: Sprite + state: coconut-packed + - type: Tag + - type: SpawnItemsOnUse + items: + - id: ADTFoodPacketChocolateTrashCoconut + - id: ADTFoodSnackChocolateBarCoconut + +- type: entity + name: chocolate bar + parent: ADTFoodSnackChocolateBarsBase + id: ADTFoodSnackChocolateBarEnergyPack + description: Tastes like cardboard. + components: + - type: Sprite + state: energy-packed + - type: Tag + - type: SpawnItemsOnUse + items: + - id: ADTFoodPacketChocolateTrashEnergy + - id: ADTFoodSnackChocolateBarEnergy + +- type: entity + name: chocolate bar + parent: ADTFoodSnackChocolateBarsBase + id: ADTFoodSnackChocolateBarNutsPack + description: Tastes like cardboard. + components: + - type: Sprite + state: nuts-packed + - type: Tag + - type: SpawnItemsOnUse + items: + - id: ADTFoodPacketChocolateTrashNuts + - id: ADTFoodSnackChocolateBarNuts + +- type: entity + name: chocolate bar + parent: ADTFoodSnackChocolateBarsBase + id: ADTFoodSnackChocolateBarPinkPack + description: Tastes like cardboard. + components: + - type: Sprite + state: pink-packed + - type: Tag + - type: SpawnItemsOnUse + items: + - id: ADTFoodPacketChocolateTrashPink + - id: ADTFoodSnackChocolateBarPink + +- type: entity + name: chocolate bar + parent: ADTFoodSnackChocolateBarsBase + id: ADTFoodSnackChocolateBarTwoPack + description: Tastes like cardboard. + components: + - type: Sprite + state: two-packed + - type: Tag + - type: SpawnItemsOnUse + items: + - id: ADTFoodPacketChocolateTrashTwo + - id: ADTFoodSnackChocolateBarTwo +#Chocolate bars +- type: entity + name: chocolate bar + parent: FoodSnackChocolateBar + id: ADTFoodSnackChocolateBarBase + description: Tastes like cardboard. + abstract: true + components: + - type: FlavorProfile + flavors: + - chocolate + - type: Sprite + sprite: ADT/Objects/Consumable/Food/Chocolate/bars.rsi + state: bar-choco + - type: Item + - type: SolutionContainerManager + solutions: + food: + maxVol: 30 + reagents: + - ReagentId: Nutriment + Quantity: 10 + - ReagentId: Theobromine + Quantity: 3 + - ReagentId: CocoaPowder + Quantity: 1 + - type: Extractable + grindableSolutionName: food + +- type: entity + name: chocolate bar + parent: ADTFoodSnackChocolateBarBase + id: ADTFoodSnackChocolateBarChoco + description: Tastes like cardboard. + components: + - type: Sprite + state: bar-choco + +- type: entity + name: chocolate bar + parent: ADTFoodSnackChocolateBarBase + id: ADTFoodSnackChocolateBarCoconut + description: Tastes like cardboard. + components: + - type: Sprite + state: bar-coconut + +- type: entity + name: chocolate bar + parent: ADTFoodSnackChocolateBarBase + id: ADTFoodSnackChocolateBarEnergy + description: Tastes like cardboard. + components: + - type: Sprite + state: bar-energy + +- type: entity + name: chocolate bar + parent: ADTFoodSnackChocolateBarBase + id: ADTFoodSnackChocolateBarNuts + description: Tastes like cardboard. + components: + - type: Sprite + state: bar-nuts + +- type: entity + name: chocolate bar + parent: ADTFoodSnackChocolateBarBase + id: ADTFoodSnackChocolateBarPink + description: Tastes like cardboard. + components: + - type: Sprite + state: bar-pink + +- type: entity + name: chocolate bar + parent: ADTFoodSnackChocolateBarBase + id: ADTFoodSnackChocolateBarTwo + description: Tastes like cardboard. + components: + - type: Sprite + state: bar-two + +#Trash + +- type: entity + noSpawn: true + parent: FoodPacketChocolateTrash + id: ADTFoodPacketChocolateTrash + name: chocolate wrapper + abstract: true + components: + - type: Sprite + sprite: ADT/Objects/Consumable/Food/Chocolate/trash.rsi + state: choco-trash + - type: Item + +- type: entity + noSpawn: true + parent: ADTFoodPacketChocolateTrash + id: ADTFoodPacketChocolateTrashChoco + name: chocolate wrapper + components: + - type: Sprite + state: choco-trash + +- type: entity + noSpawn: true + parent: ADTFoodPacketChocolateTrash + id: ADTFoodPacketChocolateTrashCoconut + name: chocolate wrapper + components: + - type: Sprite + state: coconut-trash + +- type: entity + noSpawn: true + parent: ADTFoodPacketChocolateTrash + id: ADTFoodPacketChocolateTrashEnergy + name: chocolate wrapper + components: + - type: Sprite + state: energy-trash + +- type: entity + noSpawn: true + parent: ADTFoodPacketChocolateTrash + id: ADTFoodPacketChocolateTrashNuts + name: chocolate wrapper + components: + - type: Sprite + state: nuts-trash + +- type: entity + noSpawn: true + parent: ADTFoodPacketChocolateTrash + id: ADTFoodPacketChocolateTrashPink + name: chocolate wrapper + components: + - type: Sprite + state: pink-trash + +- type: entity + noSpawn: true + parent: ADTFoodPacketChocolateTrash + id: ADTFoodPacketChocolateTrashTwo + name: chocolate wrapper + components: + - type: Sprite + state: two-trash \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Objects/Device/Circuitboards/Machine/fill.txt b/Resources/Prototypes/ADT/Entities/Objects/Device/Circuitboards/Machine/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Objects/Device/Circuitboards/Machine/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Objects/Device/Circuitboards/siliconchargers.yml b/Resources/Prototypes/ADT/Entities/Objects/Device/Circuitboards/siliconchargers.yml new file mode 100644 index 00000000000..8359e7aaa4a --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Device/Circuitboards/siliconchargers.yml @@ -0,0 +1,16 @@ +- type: entity + id: IndustrialChargerCircuitboard + parent: BaseMachineCircuitboard + name: industrial charger machine board + description: A machine printed circuit board for an industrial charger + components: + - type: Sprite + state: engineering + - type: MachineBoard + prototype: SiliconChargerIndustrial + stackRequirements: + Plastic: 6 + CableHV: 4 + CableMV: 8 + Capacitor: 8 + Manipulator: 2 diff --git a/Resources/Prototypes/ADT/Alerts/fill.txt b/Resources/Prototypes/ADT/Entities/Objects/Devices/Circuitboards/Machine/fill.txt similarity index 100% rename from Resources/Prototypes/ADT/Alerts/fill.txt rename to Resources/Prototypes/ADT/Entities/Objects/Devices/Circuitboards/Machine/fill.txt diff --git a/Resources/Prototypes/ADT/Entities/Objects/Devices/Electronics/door_access.yml b/Resources/Prototypes/ADT/Entities/Objects/Devices/Electronics/door_access.yml new file mode 100644 index 00000000000..7db42283dc1 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Devices/Electronics/door_access.yml @@ -0,0 +1,15 @@ +- type: entity + parent: DoorElectronics + id: DoorElectronicsIAA + suffix: IAA, Locked + components: + - type: AccessReader + access: [["IAA"]] + +- type: entity + parent: DoorElectronics + id: DoorElectronicsMagistrate + suffix: Magistrate, Locked + components: + - type: AccessReader + access: [["Magistrate"]] diff --git a/Resources/Prototypes/ADT/Entities/Objects/Devices/encryption_keys.yml b/Resources/Prototypes/ADT/Entities/Objects/Devices/encryption_keys.yml new file mode 100644 index 00000000000..09ba604d7fc --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Devices/encryption_keys.yml @@ -0,0 +1,14 @@ +- type: entity + parent: EncryptionKey + id: ADTEncryptionKeyLawyer + name: law department encryption key + description: The encryption key used by the most hated person (after the clown). + components: + - type: EncryptionKey + channels: + - ADTLawyerChannel + defaultChannel: ADTLawyerChannel + - type: Sprite + layers: + - state: crypt_silver + - state: nano_label diff --git a/Resources/Prototypes/ADT/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/ADT/Entities/Objects/Devices/pda.yml new file mode 100644 index 00000000000..2660c105ac1 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Devices/pda.yml @@ -0,0 +1,41 @@ +- type: entity + parent: BasePDA + id: MagistratPDA + name: magistrat PDA + description: magistrat PDA + components: + - type: Pda + id: MagistratIDCard + state: pda-lawyer + - type: Icon + state: pda-lawyer + +- type: entity + parent: BasePDA + id: ADTRoboticistPDA + name: roboticist PDA + description: It's covered with an unknown gooey substance. + components: + - type: Pda + id: ADTRoboticistIDCard + state: pda-roboticist + - type: PdaBorderColor + borderColor: "#171716" + accentVColor: "#d90000" + - type: Icon + state: pda-roboticist + +- type: entity + parent: MedicalPDA + id: ADTPathologistPDA + name: pathologist's PDA + description: It breezes chill. + components: + - type: Pda + id: ADTPathologistIDCard + state: pda-pathologist + - type: PdaBorderColor + borderColor: "#d7d7d0" + accentVColor: "#15616b" + - type: Icon + state: pda-pathologist diff --git a/Resources/Prototypes/ADT/Entities/Objects/Device/translators.yml b/Resources/Prototypes/ADT/Entities/Objects/Devices/translators.yml similarity index 100% rename from Resources/Prototypes/ADT/Entities/Objects/Device/translators.yml rename to Resources/Prototypes/ADT/Entities/Objects/Devices/translators.yml diff --git a/Resources/Prototypes/ADT/Entities/Objects/Misc/fill.txt b/Resources/Prototypes/ADT/Entities/Objects/Misc/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Objects/Misc/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/ADT/Entities/Objects/Misc/identification_cards.yml new file mode 100644 index 00000000000..83d6930836f --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Misc/identification_cards.yml @@ -0,0 +1,37 @@ +- type: entity + parent: IDCardStandard + id: MagistratIDCard + name: magistrat ID card + description: magistrat ID card + components: + - type: Sprite + layers: + - state: silver + - state: idlawyer + - type: PresetIdCard + job: Magistrat + +- type: entity + parent: IDCardStandard + id: ADTPathologistIDCard + name: pathologist's ID card + components: + - type: Sprite + sprite: ADT/Objects/Misc/id_cards.rsi + layers: + - state: default + - state: id-pathologist + - type: PresetIdCard + job: ADTPathologist + +- type: entity + parent: IDCardStandard + id: ADTRoboticistIDCard + name: roboticist ID card + components: + - type: Sprite + layers: + - state: default + - state: idroboticist + - type: PresetIdCard + job: ADTRoboticist diff --git a/Resources/Prototypes/ADT/Entities/Objects/Misc/rubber_stamp.yml b/Resources/Prototypes/ADT/Entities/Objects/Misc/rubber_stamp.yml new file mode 100644 index 00000000000..df00f40884b --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Misc/rubber_stamp.yml @@ -0,0 +1,13 @@ +- type: entity + name: magistrat's rubber stamp + parent: RubberStampBase + id: RubberStampMagisrat + suffix: DO NOT MAP + components: + - type: Stamp + stampedName: stamp-component-stamped-name-magistrat + stampedColor: "#754d36" + stampState: "paper_stamp-detective" + - type: Sprite + sprite: ADT/Objects/Misc/stampsADT.rsi + state: stamp-magistrat diff --git a/Resources/Prototypes/ADT/Entities/Objects/Tools/fill.txt b/Resources/Prototypes/ADT/Entities/Objects/Tools/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Objects/Tools/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/ADT/Entities/Objects/Tools/tools.yml new file mode 100644 index 00000000000..e6fc94ae026 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Objects/Tools/tools.yml @@ -0,0 +1,102 @@ +- type: entity + id: ADTRPD + parent: BaseItem + name: RPD + description: Rapid Pipe Dispenser is used to quickly build structures for atmosphere operation and disposal. + components: + - type: RPD + availablePrototypes: + - ADTFireAlarm + - ADTGasPipeBend + - ADTGasPipeStraight + - ADTGasPipeHalf + - ADTGasPipeFourway + - ADTGasPipeTJunction + - ADTGasPressurePump + - ADTGasMixer + - ADTGasMixerFlipped + - ADTGasFilter + - ADTGasFilterFlipped + - ADTGasVolumePump + - ADTGasPassiveVent + - ADTGasOutletInjector + - ADTGasVentPump + - ADTGasValve + - ADTGasVentScrubber + - ADTAtmosDeviceFanTiny + - ADTGasPassiveGate + - ADTGasDualPortVentPump + - ADTSignalControlledValve + - ADTPressureControlledValve + - ADTDisposalUnit + - ADTMailingUnit + - ADTGasPort + - ADTDisposalJunctionFlipped + - ADTDisposalJunction + - ADTDisposalRouterFlipped + - ADTDisposalRouter + - ADTDisposalTagger + - ADTDisposalBend + - ADTDisposalYJunction + - ADTDisposalSignalRouter + - ADTDisposalSignalRouterFlipped + - ADTDisposalTrunk + - ADTDisposalPipe + - ADTAirSensor + - ADTFloorDrain + - ADTAirAlarm + - ADTDeconstruct + - type: LimitedCharges + maxCharges: 130 + charges: 130 + - type: UseDelay + - type: Sprite + sprite: ADT/Objects/Tools/rpd.rsi + state: icon + - type: Item + size: Normal + - type: Clothing + sprite: ADT/Objects/Tools/rpd.rsi + quickEquip: false + slots: + - Belt + - type: PhysicalComposition + materialComposition: + Steel: 600 + Plastic: 100 + - type: StaticPrice + price: 100 + - type: UserInterface + interfaces: + enum.RpdUiKey.Key: + type: RPDMenuBoundUserInterface + - type: ActivatableUI + key: enum.RpdUiKey.Key + +- type: entity + id: ADTRPDAmmo + parent: BaseItem + name: canned matter + description: A polymeric substance designed to create new objects. + components: + - type: RPDAmmo + - type: Sprite + sprite: ADT/Objects/Tools/rpd.rsi + state: ammo + - type: Item + sprite: ADT/Objects/Tools/rpd.rsi + heldPrefix: ammo + - type: PhysicalComposition + materialComposition: + Steel: 100 + Plastic: 100 + - type: StaticPrice + price: 60 + +- type: entity + id: ADTRPDEmpty + parent: ADTRPD + suffix: Empty + components: + - type: LimitedCharges + charges: 0 diff --git a/Resources/Prototypes/ADT/Entities/Structures/Doors/Airlock/access.yml b/Resources/Prototypes/ADT/Entities/Structures/Doors/Airlock/access.yml new file mode 100644 index 00000000000..d777d7c6774 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Structures/Doors/Airlock/access.yml @@ -0,0 +1,17 @@ +- type: entity + parent: AirlockCommandGlass + id: AirlockMagistrateGlassLocked + suffix: Magistrate, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsMagistrate ] + +- type: entity + parent: AirlockCommandGlass + id: AirlockIAAGlassLocked + suffix: IAA, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsIAA ] diff --git a/Resources/Prototypes/ADT/Entities/Structures/Machines/Computers/fill.txt b/Resources/Prototypes/ADT/Entities/Structures/Machines/Computers/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Entities/Structures/Machines/Computers/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Entities/Structures/Machines/silicon_chargers.yml b/Resources/Prototypes/ADT/Entities/Structures/Machines/silicon_chargers.yml new file mode 100644 index 00000000000..97f1e8700f9 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Structures/Machines/silicon_chargers.yml @@ -0,0 +1,86 @@ +- type: entity + id: SiliconChargerIndustrial + parent: BaseMachinePowered + name: industrial charger + description: A heavy duty machine for inductively charging robotic beings. Gets extremely hot! + components: + - type: Sprite + sprite: ADT/Structures/Machines/borgcharger.rsi + noRot: true + layers: + - state: base + - state: closed + map: ["enum.StorageVisualLayers.Door"] + - state: borgcharger_closed_unlit + shader: unshaded + map: ["enum.SiliconChargerVisuals.Lights"] + - state: HV + map: ["HV"] + - state: MV + map: ["MV"] + - state: LV + map: ["LV"] + - type: EntityStorageVisuals + stateDoorOpen: open + stateDoorClosed: closed + - type: GenericVisualizer + visuals: + enum.PowerDeviceVisuals.VisualState: + enum.SiliconChargerVisuals.Lights: + Normal: { state: "borgcharger_closed_unlit" } + NormalOpen: { state: "borgcharger_open_unlit" } + Charging: { state: "borgcharger_active_unlit" } + enum.PowerDeviceVisuals.Powered: + enum.SiliconChargerVisuals.Lights: + True: { visible: true } + False: { visible: false } + - type: Icon + sprite: ADT/Structures/Machines/borgcharger.rsi + state: icon + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: !type:PhysShapeAabb + bounds: "-0.45,-0.5,0.45,0.5" + density: 190 + mask: + - MachineMask + layer: + - MachineLayer + - type: ApcPowerReceiver + powerLoad: 500 + - type: StaticPrice #было DynamicPrice + price: 600 + - type: EntityStorage + maxItemSize: Tiny + - type: Appearance + - type: ContainerContainer + containers: + machine_board: !type:Container + machine_parts: !type:Container + entity_storage: !type:Container + - type: SiliconCharger + chargeMulti: 50 + targetTemp: 390 + - type: Construction + graph: Machine + node: machine + containers: + - machine_board + - machine_parts + - entity_storage + - type: Machine + board: IndustrialChargerCircuitboard + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 350 + behaviors: + - !type:EmptyAllContainersBehaviour + - !type:ChangeConstructionNodeBehavior + node: machineFrame + - !type:DoActsBehavior + acts: ["Destruction"] diff --git a/Resources/Prototypes/ADT/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/ADT/Entities/Structures/Machines/vending_machines.yml new file mode 100644 index 00000000000..b3e80f7fa17 --- /dev/null +++ b/Resources/Prototypes/ADT/Entities/Structures/Machines/vending_machines.yml @@ -0,0 +1,29 @@ +- type: entity + parent: VendingMachine + id: ADTVendingMachinePatholoDrobe + name: PatholoDrobe + description: A vending machine that dispences new clothing for pathologists. + components: + - type: VendingMachine + pack: PatholodrobeInventory + offState: off + brokenState: broken + normalState: normal-unshaded + - type: Advertise + pack: PatholodrobeAds + - type: Sprite + sprite: ADT/Structures/Machines/VendingMachines/patholodrobe.rsi + layers: + - state: "off" + map: ["enum.VendingMachineVisualLayers.Base"] + - state: "off" + map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] + shader: unshaded + - state: panel + map: ["enum.WiresVisualLayers.MaintenancePanel"] + - type: AccessReader + access: [["Medical"]] + - type: PointLight + radius: 1.8 + energy: 1.6 + color: "#1ca9d4" \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Interface/Radial/RPD.yml b/Resources/Prototypes/ADT/Interface/Radial/RPD.yml new file mode 100644 index 00000000000..e35dcf8c57a --- /dev/null +++ b/Resources/Prototypes/ADT/Interface/Radial/RPD.yml @@ -0,0 +1,611 @@ +- type: RPD + id: Invalid + mode: Invalid + +- type: RPD + id: ADTDeconstruct + name: rpd-component-deconstruct + category: Main + sprite: /Textures/ADT/Interface/Radial/RPD/deconstruct.png + mode: Deconstruct + prototype: EffectRCDDeconstructPreview + rotation: Camera + +- type: RPD + id: ADTFireAlarm + name: rpd-component-FireAlarm + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/FireAlarm.png + mode: ConstructObject + prototype: FireAlarm + cost: 1 + delay: 0 + collisionMask: InteractImpassable + rules: + - IsWall + rotation: User + fx: EffectRCDConstruct0 + +- type: RPD + id: ADTGasPipeBend + name: rpd-component-GasPipeBend + category: Gaspipes + sprite: /Textures/ADT/Interface/Radial/RPD/GasPipeBend.png + mode: ConstructObject + prototype: GasPipeBend + cost: 2 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTGasPipeStraight + name: rpd-component-GasPipeStraight + category: Gaspipes + sprite: /Textures/ADT/Interface/Radial/RPD/GasPipeStraight.png + mode: ConstructObject + prototype: GasPipeStraight + cost: 2 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTGasPipeHalf + name: rpd-component-GasPipeHalf + category: Gaspipes + sprite: /Textures/ADT/Interface/Radial/RPD/GasPipeHalf.png + mode: ConstructObject + prototype: GasPipeHalf + cost: 2 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTGasPipeFourway + name: rpd-component-GasPipeFourway + category: Gaspipes + sprite: /Textures/ADT/Interface/Radial/RPD/GasPipeFourway.png + mode: ConstructObject + prototype: GasPipeFourway + cost: 4 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTGasPipeTJunction + name: rpd-component-GasPipeTJunction + category: Gaspipes + sprite: /Textures/ADT/Interface/Radial/RPD/GasPipeTJunction.png + mode: ConstructObject + prototype: GasPipeTJunction + cost: 3 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTGasPressurePump + name: rpd-component-GasPressurePump + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/GasPressurePump.png + mode: ConstructObject + prototype: GasPressurePump + cost: 2 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTGasMixer + name: rpd-component-GasMixer + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/GasMixer.png + mode: ConstructObject + prototype: GasMixer + cost: 3 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTGasMixerFlipped + name: rpd-component-GasMixerFlipped + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/GasMixerFlipped.png + mode: ConstructObject + prototype: GasMixerFlipped + cost: 3 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTGasFilter + name: rpd-component-GasFilter + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/GasFilter.png + mode: ConstructObject + prototype: GasFilter + cost: 3 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTGasFilterFlipped + name: rpd-component-GasFilterFlipped + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/GasFilterFlipped.png + mode: ConstructObject + prototype: GasFilterFlipped + cost: 3 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTGasVolumePump + name: rpd-component-GasVolumePump + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/GasVolumePump.png + mode: ConstructObject + prototype: GasVolumePump + cost: 3 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTGasPassiveVent + name: rpd-component-GasPassiveVent + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/GasPassiveVent.png + mode: ConstructObject + prototype: GasPassiveVent + cost: 4 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTGasOutletInjector + name: rpd-component-GasOutletInjector + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/GasOutletInjector.png + mode: ConstructObject + prototype: GasOutletInjector + cost: 4 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTGasVentPump + name: rpd-component-GasVentPump + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/GasVentPump.png + mode: ConstructObject + prototype: GasVentPump + cost: 4 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTGasValve + name: rpd-component-GasValve + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/GasValve.png + mode: ConstructObject + prototype: GasValve + cost: 4 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTGasVentScrubber + name: rpd-component-GasVentScrubber + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/GasVentScrubber.png + mode: ConstructObject + prototype: GasVentScrubber + cost: 4 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTAtmosDeviceFanTiny + name: rpd-component-AtmosDeviceFanTiny + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/AtmosDeviceFanTiny.png + mode: ConstructObject + prototype: AtmosDeviceFanTiny + cost: 6 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTGasPassiveGate + name: rpd-component-GasPassiveGate + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/GasPassiveGate.png + mode: ConstructObject + prototype: GasPassiveGate + cost: 4 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTGasDualPortVentPump + name: rpd-component-GasDualPortVentPump + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/GasDualPortVentPump.png + mode: ConstructObject + prototype: GasDualPortVentPump + cost: 4 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTPressureControlledValve + name: rpd-component-PressureControlledValve + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/PressureControlledValve.png + mode: ConstructObject + prototype: PressureControlledValve + cost: 4 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTDisposalUnit + name: rpd-component-DisposalUnit + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/DisposalUnit.png + mode: ConstructObject + prototype: DisposalUnit + cost: 10 + delay: 4 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct4 + +- type: RPD + id: ADTMailingUnit + name: rpd-component-MailingUnit + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/MailingUnit.png + mode: ConstructObject + prototype: MailingUnit + cost: 10 + delay: 4 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct4 + +- type: RPD + id: ADTGasPort + name: rpd-component-GasPort + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/GasPort.png + mode: ConstructObject + prototype: GasPort + cost: 5 + delay: 3 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct3 + +- type: RPD + id: ADTDisposalJunctionFlipped + name: rpd-component-DisposalJunctionFlipped + category: DisposalPipe + sprite: /Textures/ADT/Interface/Radial/RPD/DisposalJunctionFlipped.png + mode: ConstructObject + prototype: DisposalJunctionFlipped + cost: 3 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTDisposalJunction + name: rpd-component-DisposalJunction + category: DisposalPipe + sprite: /Textures/ADT/Interface/Radial/RPD/DisposalJunction.png + mode: ConstructObject + prototype: DisposalJunction + cost: 3 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTDisposalRouterFlipped + name: rpd-component-DisposalRouterFlipped + category: DisposalPipe + sprite: /Textures/ADT/Interface/Radial/RPD/DisposalRouterFlipped.png + mode: ConstructObject + prototype: DisposalRouterFlipped + cost: 3 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTDisposalRouter + name: rpd-component-DisposalRouter + category: DisposalPipe + sprite: /Textures/ADT/Interface/Radial/RPD/DisposalRouter.png + mode: ConstructObject + prototype: DisposalRouter + cost: 3 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTDisposalTagger + name: rpd-component-DisposalTagger + category: DisposalPipe + sprite: /Textures/ADT/Interface/Radial/RPD/DisposalTagger.png + mode: ConstructObject + prototype: DisposalTagger + cost: 3 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTDisposalBend + name: rpd-component-DisposalBend + category: DisposalPipe + sprite: /Textures/ADT/Interface/Radial/RPD/DisposalBend.png + mode: ConstructObject + prototype: DisposalBend + cost: 2 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTDisposalYJunction + name: rpd-component-DisposalYJunction + category: DisposalPipe + sprite: /Textures/ADT/Interface/Radial/RPD/DisposalYJunction.png + mode: ConstructObject + prototype: DisposalYJunction + cost: 3 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTDisposalSignalRouter + name: rpd-component-DisposalSignalRouter + category: DisposalPipe + sprite: /Textures/ADT/Interface/Radial/RPD/DisposalSignalRouter.png + mode: ConstructObject + prototype: DisposalSignalRouter + cost: 3 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTDisposalSignalRouterFlipped + name: rpd-component-DisposalSignalRouterFlipped + category: DisposalPipe + sprite: /Textures/ADT/Interface/Radial/RPD/DisposalSignalRouterFlipped.png + mode: ConstructObject + prototype: DisposalSignalRouterFlipped + cost: 3 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTDisposalTrunk + name: rpd-component-DisposalTrunk + category: DisposalPipe + sprite: /Textures/ADT/Interface/Radial/RPD/DisposalTrunk.png + mode: ConstructObject + prototype: DisposalTrunk + cost: 2 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTDisposalPipe + name: rpd-component-DisposalPipes + category: DisposalPipe + sprite: /Textures/ADT/Interface/Radial/RPD/DisposalPipe.png + mode: ConstructObject + prototype: DisposalPipe + cost: 2 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWindow + - MustBuildOnSubfloor + rotation: User + fx: EffectRCDConstruct2 + +- type: RPD + id: ADTAirSensor + name: rpd-component-AirSensor + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/AirSensor.png + mode: ConstructObject + prototype: AirSensor + cost: 4 + delay: 3 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct3 + +- type: RPD + id: ADTFloorDrain + name: rpd-component-FloorDrain + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/FloorDrain.png + mode: ConstructObject + prototype: FloorDrain + cost: 10 + delay: 4 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct4 + +- type: RPD + id: ADTAirAlarm + name: rpd-component-AirAlarm + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/AirAlarm.png + mode: ConstructObject + prototype: AirAlarm + cost: 6 + delay: 4 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rules: + - IsWall + rotation: User + fx: EffectRCDConstruct4 + +- type: RPD + id: ADTSignalControlledValve + name: rpd-component-SignalControlledValve + category: Devices + sprite: /Textures/ADT/Interface/Radial/RPD/SignalControlledValve.png + mode: ConstructObject + prototype: SignalControlledValve + cost: 3 + delay: 2 + collisionMask: FullTileMask + collisionBounds: "-0.23,-0.49,0.23,-0.36" + rotation: User + fx: EffectRCDConstruct2 diff --git a/Resources/Prototypes/ADT/InventoryTemplates/fill.txt b/Resources/Prototypes/ADT/InventoryTemplates/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/InventoryTemplates/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/InventoryTemplates/ipc_inventory_template.yml b/Resources/Prototypes/ADT/InventoryTemplates/ipc_inventory_template.yml new file mode 100644 index 00000000000..7172aabdcff --- /dev/null +++ b/Resources/Prototypes/ADT/InventoryTemplates/ipc_inventory_template.yml @@ -0,0 +1,143 @@ +# Simple Station + +- type: inventoryTemplate + id: ipc + slots: + - name: shoes + slotTexture: shoes + slotFlags: FEET + stripTime: 3 + uiWindowPos: 1,0 + strippingWindowPos: 1,2 + displayName: Shoes + - name: jumpsuit + slotTexture: uniform + slotFlags: INNERCLOTHING + stripTime: 6 + uiWindowPos: 1,1 + strippingWindowPos: 1,1 + displayName: Jumpsuit + - name: outerClothing + slotTexture: suit + slotFlags: OUTERCLOTHING + #slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 2,0 + strippingWindowPos: 0,2 + displayName: Suit + # Underwear + # - name: undershirt + # slotTexture: undershirt + # slotFlags: UNDERSHIRT + # stripTime: 8 + # uiWindowPos: 4,1 + # strippingWindowPos: 3,1 + # displayName: Undershirt + # - name: underpants + # slotTexture: underpants + # slotFlags: UNDERPANTS + # stripTime: 12 + # uiWindowPos: 4,0 + # strippingWindowPos: 3,2 + # displayName: Underpants + # - name: socks + # slotTexture: socks + # slotFlags: SOCKS + # stripTime: 8 + # uiWindowPos: 4,2 + # strippingWindowPos: 3,3 + # displayName: Socks + - name: gloves + slotTexture: gloves + slotFlags: GLOVES + uiWindowPos: 2,1 + strippingWindowPos: 2,1 + displayName: Gloves + - name: neck + slotTexture: neck + slotFlags: NECK + uiWindowPos: 0,1 + strippingWindowPos: 0,1 + displayName: Neck + # - name: mask + # slotTexture: mask + # slotFlags: MASK + # uiWindowPos: 1,1 + # strippingWindowPos: 1,1 + # displayName: Mask + # offset: 0.5, 1.5 + # - name: eyes + # slotTexture: glasses + # slotFlags: EYES + # stripTime: 3 + # uiWindowPos: 0,0 + # strippingWindowPos: 0,0 + # displayName: Eyes + # - name: ears + # slotTexture: ears + # slotFlags: EARS + # stripTime: 3 + # uiWindowPos: 2,0 + # strippingWindowPos: 2,0 + # displayName: Ears + - name: head + slotTexture: head + slotFlags: HEAD + uiWindowPos: 1,2 + strippingWindowPos: 1,0 + displayName: Head + offset: 0, 0 + - name: pocket1 + slotTexture: pocket + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 0,3 + strippingWindowPos: 0,3 + dependsOn: jumpsuit + displayName: Pocket 1 + stripHidden: true + - name: pocket2 + slotTexture: pocket + slotFlags: POCKET + slotGroup: MainHotbar + stripTime: 3 + uiWindowPos: 2,3 + strippingWindowPos: 1,3 + dependsOn: jumpsuit + displayName: Pocket 2 + stripHidden: true + - name: suitstorage + slotTexture: suit_storage + slotFlags: SUITSTORAGE + stripTime: 3 + uiWindowPos: 2,0 + strippingWindowPos: 2,4 + dependsOn: outerClothing + displayName: Suit Storage + slotGroup: MainHotbar + - name: id + slotTexture: id + slotFlags: IDCARD + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 2,1 + strippingWindowPos: 2,3 + dependsOn: jumpsuit + displayName: ID + - name: belt + slotTexture: belt + slotFlags: BELT + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 3,1 + strippingWindowPos: 1,4 + displayName: Belt + - name: back + slotTexture: back + slotFlags: BACK + slotGroup: SecondHotbar + stripTime: 6 + uiWindowPos: 3,0 + strippingWindowPos: 0,4 + displayName: Back diff --git a/Resources/Prototypes/ADT/Languages/fill.txt b/Resources/Prototypes/ADT/Languages/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Languages/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Loadouts/Jobs/Juridical/magistrat.yml b/Resources/Prototypes/ADT/Loadouts/Jobs/Juridical/magistrat.yml new file mode 100644 index 00000000000..350aef8cb43 --- /dev/null +++ b/Resources/Prototypes/ADT/Loadouts/Jobs/Juridical/magistrat.yml @@ -0,0 +1,8 @@ +- type: loadout + id: MagistratJumpsuit + equipment: MagistratJumpsuit + +- type: startingGear + id: MagistratJumpsuit + equipment: + jumpsuit: ADTClothingUniformsJumpsuitWhiteDiplomatSuitL diff --git a/Resources/Prototypes/ADT/Loadouts/Jobs/Medical/patholog.yml b/Resources/Prototypes/ADT/Loadouts/Jobs/Medical/patholog.yml new file mode 100644 index 00000000000..2af5deb0e9a --- /dev/null +++ b/Resources/Prototypes/ADT/Loadouts/Jobs/Medical/patholog.yml @@ -0,0 +1,112 @@ +# Head +- type: loadout + id: PathologHead + equipment: PathologHead + +- type: startingGear + id: PathologHead + equipment: + head: ClothingHeadHatSurgcapBlue + +# Jumpsuit +- type: loadout + id: PathologJumpsuit + equipment: PathologJumpsuit + +- type: startingGear + id: PathologJumpsuit + equipment: + jumpsuit: ADTClothingUniformPathologistSuit + +- type: loadout + id: PathologJumpskirt + equipment: PathologJumpskirt + +- type: startingGear + id: PathologJumpskirt + equipment: + jumpsuit: ADTClothingUniformPathologistSkirt + +- type: loadout + id: PathologJumpsuitAlt + equipment: PathologJumpsuitAlt + +- type: startingGear + id: PathologJumpsuitAlt + equipment: + jumpsuit: ADTClothingUniformPathologistSuitAlt + +- type: loadout + id: PathologJumpskirtAlt + equipment: PathologJumpskirtAlt + +- type: startingGear + id: PathologJumpskirtAlt + equipment: + jumpsuit: ADTClothingUniformPathologistSkirtAlt + +# Outer clothing +- type: loadout + id: PathologWindbreaker + equipment: PathologWindbreaker + +- type: startingGear + id: PathologWindbreaker + equipment: + outerClothing: ADTClothingOuterCoatLabPathologist + +- type: loadout + id: PathologApron + equipment: PathologApron + +- type: startingGear + id: PathologApron + equipment: + outerClothing: ADTClothingOuterApronPathologist + +- type: loadout + id: PathologWintercoat + equipment: PathologWintercoat + +- type: startingGear + id: PathologWintercoat + equipment: + outerClothing: ClothingOuterWinterMed + +# Back +- type: loadout + id: PathologBackpack + equipment: PathologBackpack + +- type: startingGear + id: PathologBackpack + equipment: + back: ADTClothingBackpackPathologistFilled + +- type: loadout + id: PathologSatchel + equipment: PathologSatchel + +- type: startingGear + id: PathologSatchel + equipment: + back: ADTClothingBackpackSatchelPathologistFilled + +- type: loadout + id: PathologDuffel + equipment: PathologDuffel + +- type: startingGear + id: PathologDuffel + equipment: + back: ADTClothingBackpackDuffelPathologistFilled + +# Shoes +- type: loadout + id: PathologShoes + equipment: PathologShoes + +- type: startingGear + id: PathologShoes + equipment: + shoes: ClothingShoesColorBlue \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml b/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml new file mode 100644 index 00000000000..facd4eb165d --- /dev/null +++ b/Resources/Prototypes/ADT/Loadouts/loadout_groups.yml @@ -0,0 +1,96 @@ +- type: loadoutGroup + id: MagistratJumpsuit + name: loadout-group-lawyer-jumpsuit + minLimit: 1 + loadouts: + - MagistratJumpsuit + - LawyerJumpsuit + - LawyerJumpskirt + - LawyerJumpsuitBlue + - LawyerJumpskirtBlue + - LawyerJumpsuitPurple + - LawyerJumpskirtPurple + - LawyerJumpsuitRed + - LawyerJumpskirtRed + - LawyerJumpsuitGood + - LawyerJumpskirtGood + +- type: loadoutGroup + id: MagistratNeck + name: loadout-group-lawyer-neck + minLimit: 0 + loadouts: + - LawyerNeck + +- type: loadoutGroup + id: PathologHead + name: loadout-group-patholog-head + minLimit: 0 + loadouts: + - PathologHead + +- type: loadoutGroup + id: PathologJumpsuit + name: loadout-group-patholog-jumpsuit + minLimit: 1 + loadouts: + - PathologJumpsuit + - PathologJumpskirt + - PathologJumpsuitAlt + - PathologJumpskirtAlt + +- type: loadoutGroup + id: PathologBackpack + name: loadout-group-patholog-backpack + minLimit: 1 + loadouts: + - PathologBackpack + - PathologSatchel + - PathologDuffel + +- type: loadoutGroup + id: PathologWindbreaker + name: loadout-group-patholog-outerclothing + minLimit: 0 + loadouts: + - PathologWindbreaker + - PathologWintercoat + - PathologApron + +- type: loadoutGroup + id: PathologShoes + name: loadout-group-patholog-shoes + loadouts: + - BlueShoes + - MedicalWinterBoots + +#Science + +- type: loadoutGroup + id: RoboticistJumpsuit + name: loadout-group-roboticist-jumpsuit + minLimit: 1 + loadouts: + - ScientistJumpsuit + - ScientistJumpskirt + - RoboticistJumpsuit + - RoboticistJumpskirt + +- type: loadoutGroup + id: RoboticistOuterClothing + name: loadout-group-roboticist-outerclothing + minLimit: 0 + loadouts: + - RegularLabCoat + - ScienceLabCoat + - ScienceWintercoat + - RoboticistWintercoat + +- type: loadoutGroup + id: RobohandsGloves + name: loadout-group-roboticist-gloves + minLimit: 0 + loadouts: + - LatexGloves + - PurpleGloves + - RobohandsGloves diff --git a/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml b/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml new file mode 100644 index 00000000000..dd613aacad5 --- /dev/null +++ b/Resources/Prototypes/ADT/Loadouts/role_loadouts.yml @@ -0,0 +1,46 @@ +- type: roleLoadout + id: JobMagistrat + groups: + - Inventory # Corvax-Loadouts + - GroupTankHarness + - MagistratNeck + - MagistratJumpsuit + - CommonBackpack + - Glasses + - Survival + - Trinkets + - GroupSpeciesBreathTool + +- type: roleLoadout + id: JobADTPathologist + groups: + - Inventory # Corvax-Loadouts + - GroupTankHarness + - PathologHead + - MedicalMask + - PathologJumpsuit + - MedicalGloves + - PathologBackpack + - PathologWindbreaker + - PathologShoes + - Glasses + - SurvivalMedical + - Trinkets + - GroupSpeciesBreathToolMedical + +- type: roleLoadout + id: JobADTRoboticist + groups: + - Inventory # Corvax-Loadouts + - GroupTankHarness + - ScientistHead + - ScientistNeck + - RoboticistJumpsuit + - ScientistBackpack + - RoboticistOuterClothing + - RobohandsGloves + - ScientistShoes + - Glasses + - Survival + - Trinkets + - GroupSpeciesBreathTool diff --git a/Resources/Prototypes/ADT/Polymorphs/polymorphs.yml b/Resources/Prototypes/ADT/Polymorphs/polymorphs.yml index f781310f7b7..b3e39b97581 100644 --- a/Resources/Prototypes/ADT/Polymorphs/polymorphs.yml +++ b/Resources/Prototypes/ADT/Polymorphs/polymorphs.yml @@ -7,4 +7,28 @@ transferName: true transferDamage: true revertOnCrit: false - revertOnDeath: true \ No newline at end of file + revertOnDeath: true + +- type: polymorph + id: ADTPMothroach + configuration: + entity: MobMothroach + forced: true + transferName: true + allowRepeatedMorphs: False + inventory: Drop + revertOnCrit: true + revertOnDeath: true + duration: 40 + +- type: polymorph + id: ADTPMothroach2 + configuration: + entity: MobMothroach + forced: true + transferName: true + allowRepeatedMorphs: False + inventory: Drop + revertOnCrit: true + revertOnDeath: true + duration: 120 diff --git a/Resources/Prototypes/ADT/Recipes/Lathes/electronics.yml b/Resources/Prototypes/ADT/Recipes/Lathes/electronics.yml new file mode 100644 index 00000000000..24c34e966ff --- /dev/null +++ b/Resources/Prototypes/ADT/Recipes/Lathes/electronics.yml @@ -0,0 +1,8 @@ +- type: latheRecipe + id: IndustrialChargerCircuitboard + result: IndustrialChargerCircuitboard + completetime: 2 + materials: + Steel: 900 + Plastic: 100 + Gold: 100 diff --git a/Resources/Prototypes/ADT/Recipes/Lathes/fill.txt b/Resources/Prototypes/ADT/Recipes/Lathes/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Recipes/Lathes/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Recipes/Lathes/tools.yml b/Resources/Prototypes/ADT/Recipes/Lathes/tools.yml new file mode 100644 index 00000000000..cc16a64af5f --- /dev/null +++ b/Resources/Prototypes/ADT/Recipes/Lathes/tools.yml @@ -0,0 +1,17 @@ +- type: latheRecipe + id: RPD + result: ADTRPDEmpty + category: Tools + completetime: 4 + materials: + Steel: 1000 + Plastic: 300 + +- type: latheRecipe + id: RPDAmmo + result: ADTRPDAmmo + category: Tools + completetime: 2.4 + materials: + Steel: 500 + Plastic: 250 diff --git a/Resources/Prototypes/ADT/Roles/Jobs/Juridical/Magistrat.yml b/Resources/Prototypes/ADT/Roles/Jobs/Juridical/Magistrat.yml new file mode 100644 index 00000000000..ca258ad2391 --- /dev/null +++ b/Resources/Prototypes/ADT/Roles/Jobs/Juridical/Magistrat.yml @@ -0,0 +1,55 @@ +- type: job + id: Magistrat + name: job-name-magistrat + description: job-description-magistrat + playTimeTracker: JobMagistrat + requirements: + - !type:DepartmentTimeRequirement + department: Security + time: 600000 + # - !type:DepartmentTimeRequirement + # department: Sponsor + # time: 10 + startingGear: MagistratGear + icon: "JobIconMagistrat" + requireAdminNotify: true + joinNotifyCrew: true + supervisors: job-supervisors-captain + canBeAntag: false + access: + - Command + - Brig + - Maintenance + - Service + - Security + - Magistrate + - Lawyer + - IAA + special: + - !type:AddImplantSpecial + implants: [ MindShieldImplant ] + +- type: startingGear + id: MagistratGear + equipment: +# jumpsuit: ADTClothingUniformsJumpsuitWhiteDiplomatSuitL +# back: ClothingBackpackIAAFilled + shoes: ClothingShoesBootsLaceup + #mask: Ну что за косипор оставляет пустуе значения? + #outerClothing: ClothingOuterRobesJudge + eyes: ClothingEyesGlassesSunglasses + #head: ClothingHeadHatPwig + id: MagistratPDA + #gloves: + ears: ClothingHeadsetMagistrat + #belt: + neck: ClothingNeckLawyerbadge + pocket2: RubberStampMagisrat +# pocket1: ADTtelescopicBaton +# underwearb: ClothingUnderwearBottomBoxersWhite # Sirena-Underwear +# socks: ClothingUnderwearSocksNormal +# underweart: ClothingUnderwearTopBraWhite # Sirena-Underwear +# underwearb: ClothingUnderwearBottomPantiesWhite # Sirena-Underwear +# innerClothingSkirt: ADTClothingUniformsJumpsuitWhiteDiplomatSuitL +# satchel: ClothingBackpackSatchelIAAFilled +# duffelbag: ClothingBackpackDuffelIAAFilled diff --git a/Resources/Prototypes/ADT/Roles/Jobs/Medical/fill.txt b/Resources/Prototypes/ADT/Roles/Jobs/Medical/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Roles/Jobs/Medical/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Roles/Jobs/Medical/pathologist.yml b/Resources/Prototypes/ADT/Roles/Jobs/Medical/pathologist.yml new file mode 100644 index 00000000000..885d562cfae --- /dev/null +++ b/Resources/Prototypes/ADT/Roles/Jobs/Medical/pathologist.yml @@ -0,0 +1,23 @@ +- type: job + id: ADTPathologist + name: job-name-ADTPathologist + description: job-description-ADTPathologist + playTimeTracker: JobADTPathologist + requirements: + - !type:DepartmentTimeRequirement + department: Medical + time: 21600 #6 hrs + startingGear: ADTPathologistGear + icon: "JobIconADTPathologist" + supervisors: job-supervisors-cmo + canBeAntag: true + access: + - Medical + - Maintenance + +- type: startingGear + id: ADTPathologistGear + equipment: + id: ADTPathologistPDA + ears: ClothingHeadsetMedical + belt: BoxFolderClipboard \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Roles/Jobs/Science/roboticist.yml b/Resources/Prototypes/ADT/Roles/Jobs/Science/roboticist.yml new file mode 100644 index 00000000000..19d8211f573 --- /dev/null +++ b/Resources/Prototypes/ADT/Roles/Jobs/Science/roboticist.yml @@ -0,0 +1,22 @@ +- type: job + id: ADTRoboticist + name: job-name-roboticist + description: job-description-roboticist + playTimeTracker: JobRoboticist + requirements: + - !type:DepartmentTimeRequirement + department: Science + time: 25200 #7 hrs + startingGear: ADTRoboticistGear + icon: "JobIconRoboticist" + supervisors: job-supervisors-rd + access: + - Research + - Maintenance + +- type: startingGear + id: ADTRoboticistGear + equipment: + ears: ClothingHeadsetRobotics + id: ADTRoboticistPDA + pocket1: BorgTranslatorImplanter diff --git a/Resources/Prototypes/ADT/Roles/Jobs/departments.yml b/Resources/Prototypes/ADT/Roles/Jobs/departments.yml new file mode 100644 index 00000000000..7cb060cb2e0 --- /dev/null +++ b/Resources/Prototypes/ADT/Roles/Jobs/departments.yml @@ -0,0 +1,8 @@ +- type: department + id: Juridical + description: department-Juridical-description + color: "#777777" + roles: + - Magistrat + - IAA + - Lawyer diff --git a/Resources/Prototypes/ADT/Roles/play_time_trackers.yml b/Resources/Prototypes/ADT/Roles/play_time_trackers.yml new file mode 100644 index 00000000000..dc77c0fb415 --- /dev/null +++ b/Resources/Prototypes/ADT/Roles/play_time_trackers.yml @@ -0,0 +1,8 @@ +- type: playTimeTracker + id: JobMagistrat + +- type: playTimeTracker + id: JobADTPathologist + +- type: playTimeTracker + id: JobRoboticist diff --git a/Resources/Prototypes/ADT/Shaders/shaders.yml b/Resources/Prototypes/ADT/Shaders/shaders.yml new file mode 100644 index 00000000000..060c64503c3 --- /dev/null +++ b/Resources/Prototypes/ADT/Shaders/shaders.yml @@ -0,0 +1,6 @@ +# Simple Station + +- type: shader + id: SeeingStatic + kind: source + path: "/Textures/ADT/Shaders/seeing_static.swsl" diff --git a/Resources/Prototypes/ADT/SoundCollections/emotes.yml b/Resources/Prototypes/ADT/SoundCollections/emotes.yml index 3f6d3245480..f44ddd9944a 100644 --- a/Resources/Prototypes/ADT/SoundCollections/emotes.yml +++ b/Resources/Prototypes/ADT/SoundCollections/emotes.yml @@ -14,3 +14,93 @@ id: DraskTalk files: - /Audio/ADT/Drask/drasktalk.ogg + +# IPC +- type: soundCollection + id: SynthYes + files: + - /Audio/ADT/IPC/synth_yes.ogg + +- type: soundCollection + id: SynthNo + files: + - /Audio/ADT/IPC/synth_no.ogg + +- type: soundCollection + id: Ping + files: + - /Audio/ADT/IPC/ping.ogg + +- type: soundCollection + id: Buzz + files: + - /Audio/ADT/IPC/buzz-sigh.ogg + +- type: soundCollection + id: SighIPC + files: + - /Audio/ADT/IPC/buzz-two.ogg + +- type: soundCollection + id: ScreamIPC + files: + - /Audio/ADT/IPC/synth_scream.ogg + +- type: soundCollection + id: SighBuzz + files: + - /Audio/ADT/IPC/buzz-two.ogg + +- type: soundCollection + id: TajaranHisses + files: + - /Audio/ADT/Felinid/cat_hiss1.ogg + - /Audio/ADT/Felinid/cat_hiss2.ogg + +- type: soundCollection + id: TajaranMeows + files: + - /Audio/ADT/Felinid/cat_meow1.ogg + - /Audio/ADT/Felinid/cat_meow2.ogg + - /Audio/ADT/Felinid/cat_meow3.ogg + +- type: soundCollection + id: TajaranMews + files: + - /Audio/ADT/Felinid/cat_mew1.ogg + - /Audio/ADT/Felinid/cat_mew2.ogg + +- type: soundCollection + id: TajaranGrowls + files: + - /Audio/ADT/Felinid/cat_growl1.ogg + +- type: soundCollection + id: TajaranPurrs + files: + - /Audio/ADT/Felinid/cat_purr1.ogg + +- type: soundCollection + id: MothBuzz + files: + - /Audio/ADT/Moth/moth_squeak.ogg + +- type: soundCollection + id: MothScream + files: + - /Audio/ADT/Moth/moth_screm.ogg + +- type: soundCollection + id: MothLaugh + files: + - /Audio/ADT/Moth/moth_laugh.ogg + +- type: soundCollection + id: MothChitter + files: + - /Audio/ADT/Moth/moth_chitter.ogg + +- type: soundCollection + id: MothSqueak + files: + - /Audio/ADT/Moth/moth_squeak.ogg diff --git a/Resources/Prototypes/ADT/SoundCollections/screams.yml b/Resources/Prototypes/ADT/SoundCollections/screams.yml new file mode 100644 index 00000000000..cbed0a2e8c2 --- /dev/null +++ b/Resources/Prototypes/ADT/SoundCollections/screams.yml @@ -0,0 +1,16 @@ +- type: soundCollection + id: TajaranMaleScreams + files: + - /Audio/Voice/Human/malescream_1.ogg + +- type: soundCollection + id: TajaranFemaleScreams + files: + - /Audio/Voice/Human/femalescream_2.ogg + +- type: soundCollection + id: TajaranScreams + files: + - /Audio/ADT/Felinid/cat_scream1.ogg + - /Audio/ADT/Felinid/cat_scream2.ogg + - /Audio/ADT/Felinid/cat_scream3.ogg \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Species/Tajaran.yml b/Resources/Prototypes/ADT/Species/Tajaran.yml new file mode 100644 index 00000000000..53c48562662 --- /dev/null +++ b/Resources/Prototypes/ADT/Species/Tajaran.yml @@ -0,0 +1,150 @@ +- type: species + id: TajaranSpecies + name: species-name-tajaran + roundStart: true #can player role + prototype: MobTajaran + sprites: MobTajaranSprites + markingLimits: MobTajaranMarkingLimits + dollPrototype: MobTajaranDummy + skinColoration: Hues + maleFirstNames: firstMaleTajaran + femaleFirstNames: firstFemaleTajaran + maleLastNames: TajaranLast + femaleLastNames: TajaranLast + naming: firstlast + +- type: speciesBaseSprites + id: MobTajaranSprites + sprites: + Head: MobTajaranHead + Hair: MobHumanoidAnyMarking + FacialHair: MobHumanoidAnyMarking + Chest: MobTajaranTorso + Eyes: MobTajaranEyes + LArm: MobTajaranLArm + RArm: MobTajaranRArm + LHand: MobTajaranLHand + RHand: MobTajaranRHand + LLeg: MobTajaranLLeg + RLeg: MobTajaranRLeg + LFoot: MobTajaranLFoot + RFoot: MobTajaranRFoot + Tail: MobTajaranTail + +- type: markingPoints + id: MobTajaranMarkingLimits + onlyWhitelisted: true + points: + Hair: + points: 1 + required: false + FacialHair: + points: 1 + required: false + Chest: + points: 1 + required: false + Tail: + points: 1 + required: false + Head: + points: 3 + required: false + +- type: humanoidBaseSprite + id: MobTajaranEyes + baseSprite: + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: tajaran_eyes + +- type: humanoidBaseSprite + id: MobTajaranTail + baseSprite: + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: tail_m + +- type: humanoidBaseSprite + id: MobTajaranHead + baseSprite: + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobTajaranHeadMale + baseSprite: + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobTajaranHeadFemale + baseSprite: + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: head_f + +- type: humanoidBaseSprite + id: MobTajaranTorso + baseSprite: + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobTajaranTorsoMale + baseSprite: + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobTajaranTorsoFemale + baseSprite: + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: torso_f + +- type: humanoidBaseSprite + id: MobTajaranLLeg + baseSprite: + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: l_leg + +- type: humanoidBaseSprite + id: MobTajaranLArm + baseSprite: + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: l_arm + +- type: humanoidBaseSprite + id: MobTajaranLHand + baseSprite: + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: l_hand + +- type: humanoidBaseSprite + id: MobTajaranLFoot + baseSprite: + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: l_foot + +- type: humanoidBaseSprite + id: MobTajaranRLeg + baseSprite: + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: r_leg + +- type: humanoidBaseSprite + id: MobTajaranRArm + baseSprite: + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: r_arm + +- type: humanoidBaseSprite + id: MobTajaranRHand + baseSprite: + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: r_hand + +- type: humanoidBaseSprite + id: MobTajaranRFoot + baseSprite: + sprite: ADT/Mobs/Species/Tajaran/parts.rsi + state: r_foot + +# diff --git a/Resources/Prototypes/ADT/Species/ipc.yml b/Resources/Prototypes/ADT/Species/ipc.yml new file mode 100644 index 00000000000..a144d4cf946 --- /dev/null +++ b/Resources/Prototypes/ADT/Species/ipc.yml @@ -0,0 +1,150 @@ +# Simple Station + +- type: species + id: IPC + name: species-name-ipc + roundStart: true # закомментировано для теста + prototype: MobIPC + sprites: MobIPCSprites + markingLimits: MobIPCMarkingLimits + dollPrototype: MobIPCDummy + skinColoration: Hues + sponsorOnly: false + minAge: 1 + maxAge: 240 + oldAge: 50 + youngAge: 25 + maleFirstNames: IpcFirst + femaleFirstNames: IpcFirst + maleLastNames: IpcLast # Corvax-LastnameGender + femaleLastNames: IpcLast # Corvax-LastnameGender + naming: FirstDashLast + sexes: + - Unsexed + +# The lack of a layer means that +# this person cannot have round-start anything +# applied to that layer. It has to instead +# be defined as a 'custom base layer' +# in either the mob's starting marking prototype, +# or it has to be added in C#. +- type: speciesBaseSprites + id: MobIPCSprites + sprites: + Head: MobIPCHead + Snout: MobHumanoidAnyMarking + HeadTop: MobHumanoidAnyMarking + HeadSide: MobHumanoidAnyMarking + Tail: MobHumanoidAnyMarking + Hair: MobHumanoidMarkingMatchSkin + FacialHair: MobIPCScreen + Chest: MobIPCTorso + LArm: MobIPCLArm + RArm: MobIPCRArm + LHand: MobIPCLHand + RHand: MobIPCRHand + LLeg: MobIPCLLeg + RLeg: MobIPCRLeg + LFoot: MobIPCLFoot + RFoot: MobIPCRFoot + +- type: markingPoints + id: MobIPCMarkingLimits + onlyWhitelisted: true + points: + Chest: + points: 0 + required: false + Legs: + points: 0 + required: false + Arms: + points: 0 + required: false + +- type: humanoidBaseSprite + id: MobIPCScreen + +- type: humanoidBaseSprite + id: MobIPCHead + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobIPCHeadMale + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobIPCHeadFemale + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: head_f + +- type: humanoidBaseSprite + id: MobIPCTorso + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobIPCTorsoMale + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobIPCTorsoFemale + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: torso_f + +- type: humanoidBaseSprite + id: MobIPCLLeg + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: l_leg + +- type: humanoidBaseSprite + id: MobIPCLArm + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: l_arm + +- type: humanoidBaseSprite + id: MobIPCLHand + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: l_hand + +- type: humanoidBaseSprite + id: MobIPCLFoot + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: l_foot + +- type: humanoidBaseSprite + id: MobIPCRLeg + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: r_leg + +- type: humanoidBaseSprite + id: MobIPCRArm + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: r_arm + +- type: humanoidBaseSprite + id: MobIPCRHand + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: r_hand + +- type: humanoidBaseSprite + id: MobIPCRFoot + baseSprite: + sprite: ADT/Mobs/Species/IPC/parts.rsi + state: r_foot diff --git a/Resources/Prototypes/ADT/Species/moth.yml b/Resources/Prototypes/ADT/Species/moth.yml new file mode 100644 index 00000000000..889fc2b9b5f --- /dev/null +++ b/Resources/Prototypes/ADT/Species/moth.yml @@ -0,0 +1,160 @@ +- type: species + id: Moth + name: species-name-moth + roundStart: true + prototype: MobMoth + sprites: MobMothSprites + defaultSkinTone: "#ffda93" + markingLimits: MobMothMarkingLimits + dollPrototype: MobMothDummy + skinColoration: Hues + maleFirstNames: first_male_moth # ADT-name-custom + femaleFirstNames: first_female_moth # ADT-name-custom + maleLastNames: last_moth # ADT-custom + femaleLastNames: last_moth # ADT-custom + +- type: speciesBaseSprites + id: MobMothSprites + sprites: + Head: MobMothHead + Snout: MobHumanoidAnyMarking + Chest: MobMothTorso + HeadTop: MobHumanoidAnyMarking + HeadSide: MobHumanoidAnyMarking + Tail: MobHumanoidAnyMarking + Eyes: MobMothEyes + LArm: MobMothLArm + RArm: MobMothRArm + LHand: MobMothLHand + RHand: MobMothRHand + LLeg: MobMothLLeg + RLeg: MobMothRLeg + LFoot: MobMothLFoot + RFoot: MobMothRFoot + +- type: humanoidBaseSprite + id: MobMothEyes + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: eyes + +- type: markingPoints + id: MobMothMarkingLimits + onlyWhitelisted: true + points: + Hair: + points: 0 + required: false + FacialHair: + points: 0 + required: false + Tail: + points: 1 + required: true + defaultMarkings: [ MothWingsDefault ] + Snout: + points: 1 + required: false + HeadTop: + points: 1 + required: true + defaultMarkings: [ MothAntennasDefault ] + HeadSide: + points: 1 + required: false + Head: + points: 1 + required: false + Chest: + points: 1 + required: false + Legs: + points: 2 + required: false + Arms: + points: 2 + required: false + +- type: humanoidBaseSprite + id: MobMothHead + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobMothHeadMale + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: head_m + +- type: humanoidBaseSprite + id: MobMothHeadFemale + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: head_f + +- type: humanoidBaseSprite + id: MobMothTorso + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobMothTorsoMale + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: torso_m + +- type: humanoidBaseSprite + id: MobMothTorsoFemale + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: torso_f + +- type: humanoidBaseSprite + id: MobMothLLeg + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: l_leg + +- type: humanoidBaseSprite + id: MobMothLHand + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: l_hand + +- type: humanoidBaseSprite + id: MobMothLArm + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: l_arm + +- type: humanoidBaseSprite + id: MobMothLFoot + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: l_foot + +- type: humanoidBaseSprite + id: MobMothRLeg + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: r_leg + +- type: humanoidBaseSprite + id: MobMothRHand + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: r_hand + +- type: humanoidBaseSprite + id: MobMothRArm + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: r_arm + +- type: humanoidBaseSprite + id: MobMothRFoot + baseSprite: + sprite: Mobs/Species/Moth/parts.rsi + state: r_foot diff --git a/Resources/Prototypes/ADT/StatusEffects/fill.txt b/Resources/Prototypes/ADT/StatusEffects/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/StatusEffects/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/StatusEffects/job.yml b/Resources/Prototypes/ADT/StatusEffects/job.yml new file mode 100644 index 00000000000..cf9957ad852 --- /dev/null +++ b/Resources/Prototypes/ADT/StatusEffects/job.yml @@ -0,0 +1,6 @@ +- type: statusIcon + parent: JobIcon + id: JobIconADTPathologist + icon: + sprite: /Textures/ADT/Interface/Misc/job_icons.rsi + state: ADTPathologist \ No newline at end of file diff --git a/Resources/Prototypes/ADT/StatusEffects/seeingstatic.yml b/Resources/Prototypes/ADT/StatusEffects/seeingstatic.yml new file mode 100644 index 00000000000..5fb3e737493 --- /dev/null +++ b/Resources/Prototypes/ADT/StatusEffects/seeingstatic.yml @@ -0,0 +1,4 @@ +# Simple Station + +- type: statusEffect + id: SeeingStatic diff --git a/Resources/Prototypes/ADT/StatusIcon/job.yml b/Resources/Prototypes/ADT/StatusIcon/job.yml new file mode 100644 index 00000000000..aef4c3dbf9d --- /dev/null +++ b/Resources/Prototypes/ADT/StatusIcon/job.yml @@ -0,0 +1,6 @@ +- type: statusIcon + parent: JobIcon + id: JobIconMagistrat + icon: + sprite: /Textures/ADT/Interface/Misc/job_icons.rsi + state: Magistrat diff --git a/Resources/Prototypes/ADT/Traits/disabilities.yml b/Resources/Prototypes/ADT/Traits/disabilities.yml index 17cd0d5aa33..fc43fc11af1 100644 --- a/Resources/Prototypes/ADT/Traits/disabilities.yml +++ b/Resources/Prototypes/ADT/Traits/disabilities.yml @@ -6,3 +6,13 @@ components: - type: Hemophilia modifier: 0.01 + +# Simple Station + +- type: trait + id: ColorBlindnessMonochrome + name: trait-monochromacy-name + description: trait-monochromacy-description + category: Disabilities + components: + - type: Monochromacy diff --git a/Resources/Prototypes/ADT/Traits/fill.txt b/Resources/Prototypes/ADT/Traits/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Traits/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Voice/fill.txt b/Resources/Prototypes/ADT/Voice/fill.txt deleted file mode 100644 index b4954caf47d..00000000000 --- a/Resources/Prototypes/ADT/Voice/fill.txt +++ /dev/null @@ -1 +0,0 @@ -# Данный файл существует по причине того что Githab плохо дружит с пустыми папками, при работе с этой папкой этот файл можно спокойно удалить \ No newline at end of file diff --git a/Resources/Prototypes/ADT/Voice/speech_emote_sounds.yml b/Resources/Prototypes/ADT/Voice/speech_emote_sounds.yml index 8eb673d93f3..637802d908a 100644 --- a/Resources/Prototypes/ADT/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/ADT/Voice/speech_emote_sounds.yml @@ -65,3 +65,196 @@ collection: FemaleCry Whistle: collection: Whistles + +- type: emoteSounds + id: MaleMoth + params: + variation: 0.125 + sounds: + Buzz: + collection: MothBuzz + Scream: + collection: MothScream + Laugh: + collection: MothLaugh + Chitter: + collection: MothChitter + Squeak: + collection: MothSqueak + Weh: + collection: Weh + Sneeze: + collection: MaleSneezes + Cough: + collection: MaleCoughs + MonkeyScreeches: + collection: MonkeyScreeches + Yawn: + collection: MaleYawn + Snore: + collection: Snores + Honk: + collection: BikeHorn + Sigh: + collection: MaleSigh + Crying: + collection: MaleCry + Whistle: + collection: Whistles + +- type: emoteSounds + id: FemaleMoth + params: + variation: 0.125 + sounds: + Buzz: + collection: MothBuzz + Scream: + collection: MothScream + Laugh: + collection: MothLaugh + Chitter: + collection: MothChitter + Squeak: + collection: MothSqueak + Weh: + collection: Weh + Sneeze: + collection: MaleSneezes + Cough: + collection: MaleCoughs + MonkeyScreeches: + collection: MonkeyScreeches + Yawn: + collection: MaleYawn + Snore: + collection: Snores + Honk: + collection: BikeHorn + Sigh: + collection: MaleSigh + Crying: + collection: MaleCry + Whistle: + collection: Whistles + +- type: emoteSounds + id: ADTMaleTajaran + params: + variation: 0.125 + sounds: + Scream: + collection: TajaranMaleScreams + Laugh: + collection: MaleLaugh + Hiss: + collection: TajaranHisses + Meow: + collection: TajaranMeows + Mew: + collection: TajaranMews + Growl: + collection: TajaranGrowls + Purr: + collection: TajaranPurrs + Sneeze: + collection: MaleSneezes + Cough: + collection: MaleCoughs + MonkeyScreeches: + collection: MonkeyScreeches + RobotBeep: + collection: RobotBeeps + Yawn: + collection: MaleYawn + Snore: + collection: Snores + Honk: + collection: BikeHorn + Sigh: + collection: MaleSigh + Crying: + collection: MaleCry + Whistle: + collection: Whistles + # ADT-Apathy Sounds. + Scream-apathy: + collection: TajaranMaleScreams + Laugh-apathy: + collection: MaleLaugh + Sigh-apathy: + collection: MaleSigh + Crying-apathy: + collection: MaleCry + +- type: emoteSounds + id: ADTFemaleTajaran + params: + variation: 0.125 + sounds: + Scream: + collection: TajaranFemaleScreams + Laugh: + collection: FemaleLaugh + Sneeze: + collection: FemaleSneezes + Cough: + collection: FemaleCoughs + Hiss: + collection: TajaranHisses + Meow: + collection: TajaranMeows + Mew: + collection: TajaranMews + Growl: + collection: TajaranGrowls + Purr: + collection: TajaranPurrs + MonkeyScreeches: + collection: MonkeyScreeches + RobotBeep: + collection: RobotBeeps + Yawn: + collection: FemaleYawn + Snore: + collection: Snores + Honk: + collection: CluwneHorn + Sigh: + collection: FemaleSigh + Crying: + collection: FemaleCry + Whistle: + collection: Whistles + + # ADT-Apathy Sounds. + Scream-apathy: + collection: TajaranFemaleScreams + Laugh-apathy: + collection: FemaleLaugh + Sigh-apathy: + collection: FemaleSigh + Crying-apathy: + collection: FemaleCry + +- type: emoteSounds + id: UnisexIPC + sounds: + RobotBeep: + collection: RobotBeeps + SynthYes: + path: /Audio/ADT/IPC/synth_yes.ogg + SynthNo: + path: /Audio/ADT/IPC/synth_no.ogg + Ping: + path: /Audio/ADT/IPC/ping.ogg + Buzz: + path: /Audio/ADT/IPC/buzz-sigh.ogg + SighBuzz: + path: /Audio/ADT/IPC/buzz-two.ogg + Sigh: + path: /Audio/ADT/IPC/buzz-two.ogg + Scream: + path: /Audio/ADT/IPC/synth_scream.ogg + params: + variation: 0.125 diff --git a/Resources/Prototypes/ADT/Voice/speech_emotes.yml b/Resources/Prototypes/ADT/Voice/speech_emotes.yml new file mode 100644 index 00000000000..b75b97b3dca --- /dev/null +++ b/Resources/Prototypes/ADT/Voice/speech_emotes.yml @@ -0,0 +1,211 @@ +- type: emote # эмоция work out + id: WorkOut + name: chat-emote-name-workout + chatMessages: ["качается"] + chatTriggers: + - works out + - bigs up + - buffs up + - качается + +- type: emote + id: Laugh-apathy + name: chat-emote-name-laugh-apathy + category: Vocal + chatMessages: [выдавливает из себя смех] + chatTriggers: + - выдавливает из себя смех + +- type: emote + id: Scream-apathy + name: chat-emote-name-scream-apathy + category: Vocal + chatMessages: [наигранно кричит!] + chatTriggers: + - наигранно кричит! + +- type: emote + id: Sigh-apathy + name: chat-emote-name-sigh-apathy + category: Vocal + chatMessages: [театрально вздыхает] + chatTriggers: + - театрально вздыхает + +- type: emote + id: Crying-apathy + name: chat-emote-name-crying-apathy + category: Vocal + chatMessages: [фальшиво плачет] + chatTriggers: + - фальшиво плачет + +## vocal emotes +- type: emote + id: Hiss + name: chat-emote-name-hiss + category: Vocal + chatMessages: [шипит] + chatTriggers: + - шипит + - шипит. + - шипит! + +- type: emote + id: Meow + name: chat-emote-name-meow + category: Vocal + chatMessages: [мяукает] + chatTriggers: + - мяу + - мяукнул + - мяукнул. + - мяукнул! + - мяукнула + - мяукнула. + - мяукнула! + - мяукает + - мяукает. + - мяукает! + +- type: emote + id: Mew + name: chat-emote-name-mew + category: Vocal + chatMessages: [мякает] + chatTriggers: + - мя + - мякает + - мякает. + - мякает! + - ня + - мякает? + - mews. + - mews! + - mewing + - mewed + +- type: emote + id: Growl + name: chat-emote-name-growl + category: Vocal + chatMessages: [рычит] + chatTriggers: + - рычит + - рычит. + - рычит! + - ррр + - growl + - growls + - growls. + - growls! + - growling + - growled + +- type: emote + id: Purr + name: chat-emote-name-purr + category: Vocal + chatMessages: [мурчит] + chatTriggers: + - мур + - мурчит + - мурчит. + - мурчит! + +- type: emote + id: Heckaet + name: chat-emote-name-heck + category: Vocal + chatMessages: [хекает] + chatTriggers: + - кхе + - кхе. + - хекает + - хекает. + - отдышка + - отдышка. + +- type: emote + id: Howl + name: chat-emote-name-howl + category: Vocal + chatMessages: [воет] + chatTriggers: + - воет + - воет. + - воет! + +- type: emote + id: Whine + name: chat-emote-name-whine + category: Vocal + chatMessages: [скулит] + chatTriggers: + - скул + - скул. + - скул! + - скулит + - скулит. + - скулит! + +- type: emote + id: Bark + name: chat-emote-name-bark + category: Vocal + chatMessages: [лает] + chatTriggers: + - лает + - лает. + - лает! + - гавкает + - гавкает. + - гавкает! + - гав + - гав. + - гав! + - рявкает + - рявкает. + - рявкает! + +# IPC +- type: emote + id: SynthYes + name: chat-emote-name-synth-yes + category: Vocal + chatMessages: [утвердительно пищит] + chatTriggers: + - утвердительно пищит + - утвердительно пищит. + - соглашается + - соглашается. + - согласен + - согласен. + - подтверждает + - подтверждает. + +- type: emote + id: SynthNo + name: chat-emote-name-synth-no + category: Vocal + chatMessages: [отрицательно пищит] + chatTriggers: + - отрицательно пищит + - отрицательно пищит. + - отрицает + - отрицает. + - не соглашается + - не соглашается. + - не согласен + - не согласен. + +- type: emote + id: SighBuzz + name: chat-emote-name-sigh-buzz + category: Vocal + chatMessages: [раздражённо жужжит] + chatTriggers: + - раздражённо жужжит + - раздражённо жужжит. + - раздраженно жужжит + - раздраженно жужжит. diff --git a/Resources/Prototypes/ADT/Wires/layouts.yml b/Resources/Prototypes/ADT/Wires/layouts.yml new file mode 100644 index 00000000000..02d3a19e6e6 --- /dev/null +++ b/Resources/Prototypes/ADT/Wires/layouts.yml @@ -0,0 +1,4 @@ +# Simple Station + +- type: wireLayout + id: IPC diff --git a/Resources/Prototypes/ADT/radio_channels.yml b/Resources/Prototypes/ADT/radio_channels.yml new file mode 100644 index 00000000000..bde851d1453 --- /dev/null +++ b/Resources/Prototypes/ADT/radio_channels.yml @@ -0,0 +1,7 @@ +- type: radioChannel + id: ADTLawyerChannel + name: ADT-Lawyer-Channel-name + keycode: 'ю' + frequency: 1305 + color: "#c6d2f5" + longRange: false diff --git a/Resources/Prototypes/ADT/tags.yml b/Resources/Prototypes/ADT/tags.yml new file mode 100644 index 00000000000..c2f4fe3da9d --- /dev/null +++ b/Resources/Prototypes/ADT/tags.yml @@ -0,0 +1,2 @@ +- type: Tag + id: ADTMothFriendlyFood \ No newline at end of file diff --git a/Resources/Prototypes/Access/misc.yml b/Resources/Prototypes/Access/misc.yml index f79f1779c22..0ac85d29ee5 100644 --- a/Resources/Prototypes/Access/misc.yml +++ b/Resources/Prototypes/Access/misc.yml @@ -32,3 +32,5 @@ - Chapel - Hydroponics - Atmospherics + - IAA + - Magistrate diff --git a/Resources/Prototypes/Access/service.yml b/Resources/Prototypes/Access/service.yml index cb62a3f6e70..492e7a9092a 100644 --- a/Resources/Prototypes/Access/service.yml +++ b/Resources/Prototypes/Access/service.yml @@ -26,10 +26,6 @@ id: Chapel name: id-card-access-level-chapel -- type: accessLevel - id: Lawyer - name: id-card-access-level-lawyer - - type: accessGroup id: Service tags: @@ -41,4 +37,3 @@ - Janitor - Theatre - Chapel - - Lawyer diff --git a/Resources/Prototypes/Body/Organs/moth.yml b/Resources/Prototypes/Body/Organs/moth.yml index aef5576048d..a1deafddbc5 100644 --- a/Resources/Prototypes/Body/Organs/moth.yml +++ b/Resources/Prototypes/Body/Organs/moth.yml @@ -1,26 +1,26 @@ -- type: entity - id: OrganMothStomach - parent: [OrganAnimalStomach, OrganHumanStomach] - noSpawn: true - components: - - type: Stomach - specialDigestible: - tags: - - ClothMade - - Paper - - type: SolutionContainerManager - solutions: - stomach: - maxVol: 50 - food: - maxVol: 5 - reagents: - - ReagentId: UncookedAnimalProteins - Quantity: 5 - - type: Metabolizer - maxReagents: 3 - metabolizerTypes: [ Moth ] - removeEmpty: true - groups: - - id: Food - - id: Drink +# - type: entity +# id: OrganMothStomach +# parent: [OrganAnimalStomach, OrganHumanStomach] +# noSpawn: true +# components: +# - type: Stomach +# specialDigestible: +# tags: +# - ClothMade +# - Paper +# - type: SolutionContainerManager +# solutions: +# stomach: +# maxVol: 50 +# food: +# maxVol: 5 +# reagents: +# - ReagentId: UncookedAnimalProteins +# Quantity: 5 +# - type: Metabolizer +# maxReagents: 3 +# metabolizerTypes: [ Moth ] +# removeEmpty: true +# groups: +# - id: Food +# - id: Drink diff --git a/Resources/Prototypes/Body/Parts/moth.yml b/Resources/Prototypes/Body/Parts/moth.yml index bb96430383a..a7fb9d0f84f 100644 --- a/Resources/Prototypes/Body/Parts/moth.yml +++ b/Resources/Prototypes/Body/Parts/moth.yml @@ -1,120 +1,120 @@ -# TODO: Add descriptions (many) -# TODO BODY: Part damage -- type: entity - id: PartMoth - parent: [BaseItem, BasePart] - name: "moth body part" - abstract: true - components: - - type: Extractable - juiceSolution: - reagents: - - ReagentId: Fat - Quantity: 3 - - ReagentId: Blood - Quantity: 10 +# # TODO: Add descriptions (many) +# # TODO BODY: Part damage +# - type: entity +# id: PartMoth +# parent: [BaseItem, BasePart] +# name: "moth body part" +# abstract: true +# components: +# - type: Extractable +# juiceSolution: +# reagents: +# - ReagentId: Fat +# Quantity: 3 +# - ReagentId: Blood +# Quantity: 10 -- type: entity - id: TorsoMoth - name: "moth torso" - parent: [PartMoth, BaseTorso] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "torso_m" - - type: Extractable - juiceSolution: - reagents: - - ReagentId: Fat - Quantity: 10 - - ReagentId: Blood - Quantity: 20 +# - type: entity +# id: TorsoMoth +# name: "moth torso" +# parent: [PartMoth, BaseTorso] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "torso_m" +# - type: Extractable +# juiceSolution: +# reagents: +# - ReagentId: Fat +# Quantity: 10 +# - ReagentId: Blood +# Quantity: 20 -- type: entity - id: HeadMoth - name: "moth head" - parent: [PartMoth, BaseHead] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "head_m" - - type: Extractable - juiceSolution: - reagents: - - ReagentId: Fat - Quantity: 5 - - ReagentId: Blood - Quantity: 10 +# - type: entity +# id: HeadMoth +# name: "moth head" +# parent: [PartMoth, BaseHead] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "head_m" +# - type: Extractable +# juiceSolution: +# reagents: +# - ReagentId: Fat +# Quantity: 5 +# - ReagentId: Blood +# Quantity: 10 -- type: entity - id: LeftArmMoth - name: "left moth arm" - parent: [PartMoth, BaseLeftArm] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "l_arm" +# - type: entity +# id: LeftArmMoth +# name: "left moth arm" +# parent: [PartMoth, BaseLeftArm] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "l_arm" -- type: entity - id: RightArmMoth - name: "right moth arm" - parent: [PartMoth, BaseRightArm] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "r_arm" +# - type: entity +# id: RightArmMoth +# name: "right moth arm" +# parent: [PartMoth, BaseRightArm] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "r_arm" -- type: entity - id: LeftHandMoth - name: "left moth hand" - parent: [PartMoth, BaseLeftHand] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "l_hand" +# - type: entity +# id: LeftHandMoth +# name: "left moth hand" +# parent: [PartMoth, BaseLeftHand] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "l_hand" -- type: entity - id: RightHandMoth - name: "right moth hand" - parent: [PartMoth, BaseRightHand] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "r_hand" +# - type: entity +# id: RightHandMoth +# name: "right moth hand" +# parent: [PartMoth, BaseRightHand] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "r_hand" -- type: entity - id: LeftLegMoth - name: "left moth leg" - parent: [PartMoth, BaseLeftLeg] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "l_leg" +# - type: entity +# id: LeftLegMoth +# name: "left moth leg" +# parent: [PartMoth, BaseLeftLeg] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "l_leg" -- type: entity - id: RightLegMoth - name: "right moth leg" - parent: [PartMoth, BaseRightLeg] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "r_leg" +# - type: entity +# id: RightLegMoth +# name: "right moth leg" +# parent: [PartMoth, BaseRightLeg] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "r_leg" -- type: entity - id: LeftFootMoth - name: "left moth foot" - parent: [PartMoth, BaseLeftFoot] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "l_foot" +# - type: entity +# id: LeftFootMoth +# name: "left moth foot" +# parent: [PartMoth, BaseLeftFoot] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "l_foot" -- type: entity - id: RightFootMoth - name: "right moth foot" - parent: [PartMoth, BaseRightFoot] - components: - - type: Sprite - sprite: Mobs/Species/Moth/parts.rsi - state: "r_foot" +# - type: entity +# id: RightFootMoth +# name: "right moth foot" +# parent: [PartMoth, BaseRightFoot] +# components: +# - type: Sprite +# sprite: Mobs/Species/Moth/parts.rsi +# state: "r_foot" diff --git a/Resources/Prototypes/Body/Prototypes/moth.yml b/Resources/Prototypes/Body/Prototypes/moth.yml index 7ebeda7fefa..977cea2b4a1 100644 --- a/Resources/Prototypes/Body/Prototypes/moth.yml +++ b/Resources/Prototypes/Body/Prototypes/moth.yml @@ -1,49 +1,49 @@ -- type: body - id: Moth - name: "Moth" - root: torso - slots: - head: - part: HeadMoth - connections: - - torso - organs: - brain: OrganHumanBrain - eyes: OrganHumanEyes - torso: - part: TorsoMoth - organs: - heart: OrganAnimalHeart - lungs: OrganHumanLungs - stomach: OrganMothStomach - liver: OrganAnimalLiver - kidneys: OrganHumanKidneys - connections: - - right arm - - left arm - - right leg - - left leg - right arm: - part: RightArmMoth - connections: - - right hand - left arm: - part: LeftArmMoth - connections: - - left hand - right hand: - part: RightHandMoth - left hand: - part: LeftHandMoth - right leg: - part: RightLegMoth - connections: - - right foot - left leg: - part: LeftLegMoth - connections: - - left foot - right foot: - part: RightFootMoth - left foot: - part: LeftFootMoth +# - type: body +# id: Moth +# name: "Moth" +# root: torso +# slots: +# head: +# part: HeadMoth +# connections: +# - torso +# organs: +# brain: OrganHumanBrain +# eyes: OrganHumanEyes +# torso: +# part: TorsoMoth +# organs: +# heart: OrganAnimalHeart +# lungs: OrganHumanLungs +# stomach: OrganMothStomach +# liver: OrganAnimalLiver +# kidneys: OrganHumanKidneys +# connections: +# - right arm +# - left arm +# - right leg +# - left leg +# right arm: +# part: RightArmMoth +# connections: +# - right hand +# left arm: +# part: LeftArmMoth +# connections: +# - left hand +# right hand: +# part: RightHandMoth +# left hand: +# part: LeftHandMoth +# right leg: +# part: RightLegMoth +# connections: +# - right foot +# left leg: +# part: LeftLegMoth +# connections: +# - left foot +# right foot: +# part: RightFootMoth +# left foot: +# part: LeftFootMoth diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml index 1bf7a9443b5..b3369106b9d 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/engineer.yml @@ -94,8 +94,10 @@ - id: GasAnalyzer - id: MedkitOxygenFilled - id: HolofanProjector - - id: RCD - - id: RCDAmmo + # ADT-RPD-Start + - id: ADTRPD + - id: ADTRPDAmmo + # ADT-RPD-End - type: entity id: LockerAtmosphericsFilled @@ -110,8 +112,10 @@ - id: GasAnalyzer - id: MedkitOxygenFilled - id: HolofanProjector - - id: RCD - - id: RCDAmmo + # ADT-RPD-Start + - id: ADTRPD + - id: ADTRPDAmmo + # ADT-RPD-End - type: entity id: LockerEngineerFilledHardsuit diff --git a/Resources/Prototypes/Corvax/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/Corvax/Entities/Clothing/Ears/headsets.yml index 160f5a4c172..62e27fa5fc8 100644 --- a/Resources/Prototypes/Corvax/Entities/Clothing/Ears/headsets.yml +++ b/Resources/Prototypes/Corvax/Entities/Clothing/Ears/headsets.yml @@ -1,6 +1,7 @@ - type: entity parent: ClothingHeadset - id: ClothingHeadsetIAA + id: СorvaxClothingHeadsetIAA + suffix: DONT TOUCH! It`s Corvax Headset name: iaa headset description: A headset for internal affairs agent to hear the captain's last words. components: diff --git a/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml b/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml index bed463766c2..20dde6fe490 100644 --- a/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml +++ b/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml @@ -4,15 +4,11 @@ - CorvaxDelta - CorvaxAvrite - CorvaxSilly - - CorvaxOutpost - CorvaxAstra - CorvaxMaus - - CorvaxIshimura - CorvaxPaper - CorvaxPilgrim - - CorvaxSplit - CorvaxTerra - - CorvaxFrame - CorvaxPearl - Box - Train diff --git a/Resources/Prototypes/Corvax/Maps/Pools/default.yml b/Resources/Prototypes/Corvax/Maps/Pools/default.yml index 2088ff3cccc..5b09453bc92 100644 --- a/Resources/Prototypes/Corvax/Maps/Pools/default.yml +++ b/Resources/Prototypes/Corvax/Maps/Pools/default.yml @@ -4,15 +4,11 @@ - CorvaxDelta - CorvaxAvrite - CorvaxSilly - - CorvaxOutpost - CorvaxAstra - CorvaxMaus - - CorvaxIshimura - CorvaxPaper - CorvaxPilgrim - - CorvaxSplit - CorvaxTerra - - CorvaxFrame - CorvaxPearl - Atlas - Bagel @@ -27,5 +23,4 @@ - Origin - Saltern - Packed - - Reach - Train diff --git a/Resources/Prototypes/Corvax/Maps/astra.yml b/Resources/Prototypes/Corvax/Maps/astra.yml index bb8e1fd516a..0ce81c8b307 100644 --- a/Resources/Prototypes/Corvax/Maps/astra.yml +++ b/Resources/Prototypes/Corvax/Maps/astra.yml @@ -4,7 +4,7 @@ mapPath: /Maps/corvax_astra.yml maxRandomOffset: 0 randomRotation: false - minPlayers: 40 + minPlayers: 55 stations: Astra: stationProto: StandardNanotrasenStation @@ -35,7 +35,6 @@ Zookeeper: [ 1, 1 ] # command Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # engineering ChiefEngineer: [ 1, 1 ] AtmosphericTechnician: [ 2, 3 ] @@ -74,4 +73,4 @@ - Zoo - MiningOutpost - Tesla - - VirusologyAmbusol \ No newline at end of file + - VirusologyAmbusol diff --git a/Resources/Prototypes/Corvax/Maps/avrite.yml b/Resources/Prototypes/Corvax/Maps/avrite.yml index 3e391c082ab..ca15d2d811d 100644 --- a/Resources/Prototypes/Corvax/Maps/avrite.yml +++ b/Resources/Prototypes/Corvax/Maps/avrite.yml @@ -35,7 +35,6 @@ Zookeeper: [ 1, 1 ] # command Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # engineering ChiefEngineer: [ 1, 1 ] AtmosphericTechnician: [ 3, 3 ] diff --git a/Resources/Prototypes/Corvax/Maps/delta.yml b/Resources/Prototypes/Corvax/Maps/delta.yml index e3a012684a6..0716618463a 100644 --- a/Resources/Prototypes/Corvax/Maps/delta.yml +++ b/Resources/Prototypes/Corvax/Maps/delta.yml @@ -31,7 +31,6 @@ Mime: [ 1, 1 ] Zookeeper: [ 1, 1 ] Captain: [ 1, 1 ] - IAA: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] ChiefEngineer: [ 1, 1 ] StationEngineer: [ 5, 5 ] diff --git a/Resources/Prototypes/Corvax/Maps/frame.yml b/Resources/Prototypes/Corvax/Maps/frame.yml index eecef188388..d60a7a26eaa 100644 --- a/Resources/Prototypes/Corvax/Maps/frame.yml +++ b/Resources/Prototypes/Corvax/Maps/frame.yml @@ -48,14 +48,15 @@ - type: StationJobs availableJobs: # service - Passenger: [ -1, -1 ] Clown: [ 1, 1 ] # engineering ChiefEngineer: [ 1, 1 ] AtmosphericTechnician: [ 1, 1 ] - StationEngineer: [ 3, 3 ] + StationEngineer: [ 3, 6 ] + TechnicalAssistant: [ -1, -1 ] # medical Paramedic: [ 1, 1 ] + MedicalIntern: [ 0, 1 ] # science Scientist: [ 1, 2 ] Borg: [ 1, 1 ] diff --git a/Resources/Prototypes/Corvax/Maps/gelta.yml b/Resources/Prototypes/Corvax/Maps/gelta.yml index fb366c97ddd..a661c0d4bf7 100644 --- a/Resources/Prototypes/Corvax/Maps/gelta.yml +++ b/Resources/Prototypes/Corvax/Maps/gelta.yml @@ -27,7 +27,6 @@ Janitor: [ 1, 2 ] Mime: [ 1, 1 ] Captain: [ 1, 1 ] - IAA: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] ChiefEngineer: [ 1, 1 ] StationEngineer: [ 5, 5 ] diff --git a/Resources/Prototypes/Corvax/Maps/ishimura.yml b/Resources/Prototypes/Corvax/Maps/ishimura.yml index 13845eb009e..cd14370b4ee 100644 --- a/Resources/Prototypes/Corvax/Maps/ishimura.yml +++ b/Resources/Prototypes/Corvax/Maps/ishimura.yml @@ -35,7 +35,6 @@ Reporter: [ 1, 1 ] # command Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # engineering ChiefEngineer: [ 1, 1 ] AtmosphericTechnician: [ 3, 3 ] diff --git a/Resources/Prototypes/Corvax/Maps/maus.yml b/Resources/Prototypes/Corvax/Maps/maus.yml index 7393383e90b..f92353ee43a 100644 --- a/Resources/Prototypes/Corvax/Maps/maus.yml +++ b/Resources/Prototypes/Corvax/Maps/maus.yml @@ -30,7 +30,6 @@ Janitor: [ 1, 1 ] Mime: [ 1, 1 ] Captain: [ 1, 1 ] - IAA: [1, 1] HeadOfPersonnel: [ 1, 1 ] ChiefEngineer: [ 1, 1 ] StationEngineer: [ 2, 3 ] diff --git a/Resources/Prototypes/Corvax/Maps/outpost.yml b/Resources/Prototypes/Corvax/Maps/outpost.yml index 556e08c8fba..e143a9a0cce 100644 --- a/Resources/Prototypes/Corvax/Maps/outpost.yml +++ b/Resources/Prototypes/Corvax/Maps/outpost.yml @@ -21,7 +21,6 @@ availableJobs: #service Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # Corvax-IAA HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] Botanist: [ 2, 2 ] diff --git a/Resources/Prototypes/Corvax/Maps/paper.yml b/Resources/Prototypes/Corvax/Maps/paper.yml index 8f4edfd4081..216865daa5f 100644 --- a/Resources/Prototypes/Corvax/Maps/paper.yml +++ b/Resources/Prototypes/Corvax/Maps/paper.yml @@ -36,7 +36,6 @@ Zookeeper: [ 1, 1 ] # command Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # engineering ChiefEngineer: [ 1, 1 ] AtmosphericTechnician: [ 2, 3 ] diff --git a/Resources/Prototypes/Corvax/Maps/pearl.yml b/Resources/Prototypes/Corvax/Maps/pearl.yml index 4f49826da2f..f1b5da402b6 100644 --- a/Resources/Prototypes/Corvax/Maps/pearl.yml +++ b/Resources/Prototypes/Corvax/Maps/pearl.yml @@ -37,7 +37,6 @@ Musician: [ 2, 2 ] # command Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # engineering ChiefEngineer: [ 1, 1 ] AtmosphericTechnician: [ 2, 2 ] @@ -73,4 +72,4 @@ - Bank - Zoo - MiningOutpost - - Tesla \ No newline at end of file + - Tesla diff --git a/Resources/Prototypes/Corvax/Maps/pilgrim.yml b/Resources/Prototypes/Corvax/Maps/pilgrim.yml index bf7a03406ac..01c583de79b 100644 --- a/Resources/Prototypes/Corvax/Maps/pilgrim.yml +++ b/Resources/Prototypes/Corvax/Maps/pilgrim.yml @@ -36,7 +36,6 @@ Zookeeper: [ 1, 1 ] # command Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # engineering ChiefEngineer: [ 1, 1 ] AtmosphericTechnician: [ 3, 3 ] diff --git a/Resources/Prototypes/Corvax/Maps/silly.yml b/Resources/Prototypes/Corvax/Maps/silly.yml index af9addc6763..d234f4bcae9 100644 --- a/Resources/Prototypes/Corvax/Maps/silly.yml +++ b/Resources/Prototypes/Corvax/Maps/silly.yml @@ -65,7 +65,6 @@ Librarian: [ 1, 1 ] # command Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # engineering ChiefEngineer: [ 1, 1 ] StationEngineer: [ 2, 2 ] diff --git a/Resources/Prototypes/Corvax/Maps/split.yml b/Resources/Prototypes/Corvax/Maps/split.yml index 2a8d7fcf113..b848ac90d7e 100644 --- a/Resources/Prototypes/Corvax/Maps/split.yml +++ b/Resources/Prototypes/Corvax/Maps/split.yml @@ -41,7 +41,6 @@ Zookeeper: [ 1, 1 ] # command Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # engineering AtmosphericTechnician: [ 1, 1 ] # medical diff --git a/Resources/Prototypes/Corvax/Maps/terra.yml b/Resources/Prototypes/Corvax/Maps/terra.yml index 6a69392fe1e..537577aeb96 100644 --- a/Resources/Prototypes/Corvax/Maps/terra.yml +++ b/Resources/Prototypes/Corvax/Maps/terra.yml @@ -49,7 +49,6 @@ Zookeeper: [ 1, 1 ] # command Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # engineering ChiefEngineer: [ 1, 1 ] StationEngineer: [ 2, 2 ] diff --git a/Resources/Prototypes/Corvax/Roles/Jobs/Command/iaa.yml b/Resources/Prototypes/Corvax/Roles/Jobs/Command/iaa.yml index 004e5f0db8e..b5679503610 100644 --- a/Resources/Prototypes/Corvax/Roles/Jobs/Command/iaa.yml +++ b/Resources/Prototypes/Corvax/Roles/Jobs/Command/iaa.yml @@ -21,6 +21,7 @@ - Command - External - Lawyer + - IAA special: - !type:AddImplantSpecial implants: [ MindShieldImplant ] diff --git a/Resources/Prototypes/Corvax/lobbyscreens.yml b/Resources/Prototypes/Corvax/lobbyscreens.yml index 455a37aa6e6..24717202794 100644 --- a/Resources/Prototypes/Corvax/lobbyscreens.yml +++ b/Resources/Prototypes/Corvax/lobbyscreens.yml @@ -185,3 +185,7 @@ - type: lobbyBackground id: EngineersVsZombies background: /Textures/Corvax/LobbyScreens/engineers-vs-zombies.png + +- type: lobbyBackground + id: SillyIsland + background: /Textures/Corvax/LobbyScreens/silly-island.png diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml index 02223b6a9fe..b34c77efef0 100644 --- a/Resources/Prototypes/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Damage/modifier_sets.yml @@ -183,12 +183,13 @@ Slash: 0.8 Heat: 1.5 Shock: 1.2 - -- type: damageModifierSet - id: Moth # Slightly worse at everything but cold - coefficients: - Cold: 0.7 - Heat: 1.3 + +## ADT Tweak - ЗАКОММЕНТИЛИ ДЛЯ ADT НИАН +# - type: damageModifierSet +# id: Moth # Slightly worse at everything but cold +# coefficients: +# Cold: 0.7 +# Heat: 1.3 - type: damageModifierSet id: Vox diff --git a/Resources/Prototypes/Datasets/Names/moth_first_female.yml b/Resources/Prototypes/Datasets/Names/moth_first_female.yml index ecdcc95475a..1183ff9ba0d 100644 --- a/Resources/Prototypes/Datasets/Names/moth_first_female.yml +++ b/Resources/Prototypes/Datasets/Names/moth_first_female.yml @@ -1,57 +1,57 @@ -- type: dataset - id: names_moth_first_female - values: - - Атропос # Acherontia atropos - - Бетулария # Biston betularia - - Дафне # Daphnis - - Дафнис - - Эурупта # Eurypteryx - - Эудрайс # Eudryas - - Ирис # Salassa iris - - Лакесис # Acherontia lachesis - - Луна # Actias luna - - Лиманция # Lymantria - - Лимантрия - - Рубикунда # Dryocampa rubicunda, "Rosy Maple" - - Роузи - - Мэппл - - Мима # Mimas - - Нефель # Nephele - - Космосома # Cosmosoma myrodora, "Scarlet-bodied wasp moth" - - Скарлет - - Стикс # Acherontia styx - - Аскалафа - - Долабрия - - Цисания - - Бруматта +# - type: dataset +# id: names_moth_first_female +# values: +# - Атропос # Acherontia atropos +# - Бетулария # Biston betularia +# - Дафне # Daphnis +# - Дафнис +# - Эурупта # Eurypteryx +# - Эудрайс # Eudryas +# - Ирис # Salassa iris +# - Лакесис # Acherontia lachesis +# - Луна # Actias luna +# - Лиманция # Lymantria +# - Лимантрия +# - Рубикунда # Dryocampa rubicunda, "Rosy Maple" +# - Роузи +# - Мэппл +# - Мима # Mimas +# - Нефель # Nephele +# - Космосома # Cosmosoma myrodora, "Scarlet-bodied wasp moth" +# - Скарлет +# - Стикс # Acherontia styx +# - Аскалафа +# - Долабрия +# - Цисания +# - Бруматта - # Other languages - - Авелиана # Galician "moth" (avelaíña) - - Фалена # Italian "winter moth" - - Менодора # Greek "moon gift" - - Моли # Romanian "moth" - - Полилла # Spanish "moth" +# # Other languages +# - Авелиана # Galician "moth" (avelaíña) +# - Фалена # Italian "winter moth" +# - Менодора # Greek "moon gift" +# - Моли # Romanian "moth" +# - Полилла # Spanish "moth" - # Myth and legend - - Атея # Greek mythological figure - - Алфея - - Аврора # Roman goddess of the dawn - - Хель # Greek mythological figure - - Селена # Greek goddess of the moon - - Никс # Greek goddess of the night +# # Myth and legend +# - Атея # Greek mythological figure +# - Алфея +# - Аврора # Roman goddess of the dawn +# - Хель # Greek mythological figure +# - Селена # Greek goddess of the moon +# - Никс # Greek goddess of the night - # Fun names - - Ангел - - Сэнди - - Либерти +# # Fun names +# - Ангел +# - Сэнди +# - Либерти - # Common names, filler - - Беатрикс - - Дейзи - - Элизабет - - Люси - - Руби - - Сара - - Сьенна - - Уиллоу - - Зои +# # Common names, filler +# - Беатрикс +# - Дейзи +# - Элизабет +# - Люси +# - Руби +# - Сара +# - Сьенна +# - Уиллоу +# - Зои diff --git a/Resources/Prototypes/Datasets/Names/moth_first_male.yml b/Resources/Prototypes/Datasets/Names/moth_first_male.yml index 82c9ac64630..7803c49ab7a 100644 --- a/Resources/Prototypes/Datasets/Names/moth_first_male.yml +++ b/Resources/Prototypes/Datasets/Names/moth_first_male.yml @@ -1,49 +1,49 @@ -- type: dataset - id: names_moth_first_male - values: - - Агриус # Agrius - - Атлас # Attacus atlas - - Аттакус # Attacus - - Цезарь # Attacus caesar - - Геркулес # Coscinocera hercules - - Раннох # Itame brunneata, "Rannoch Looper" - - Сократ # Acosmeryx socrates - - Солус # Saturniidae solus +# - type: dataset +# id: names_moth_first_male +# values: +# - Агриус # Agrius +# - Атлас # Attacus atlas +# - Аттакус # Attacus +# - Цезарь # Attacus caesar +# - Геркулес # Coscinocera hercules +# - Раннох # Itame brunneata, "Rannoch Looper" +# - Сократ # Acosmeryx socrates +# - Солус # Saturniidae solus - # Other languages - - Эш # Hebrew עש "moth" - - Азар # Persian "fire" - - Кайзер # German "emperor" descendant of the Latin caesar - - Раджас # Sanskrit "darkness" or "dust" - - Скорос # Greek "clothes moth" +# # Other languages +# - Эш # Hebrew עש "moth" +# - Азар # Persian "fire" +# - Кайзер # German "emperor" descendant of the Latin caesar +# - Раджас # Sanskrit "darkness" or "dust" +# - Скорос # Greek "clothes moth" - # Myth and legend - - Бладуд # legendary king of the Britons who crafted wings and died in his attempt at flight - - Дедал # father of Icarus - - Эребус # Greek primordial deity of darkness - - Икар # the classic - - Джатайу # Hindu figure, similar to Icarus - - Кохо # Japanese reading of 夸父(こほ) - - Куафу # Chinese giant 夸父, similar to Icarus - - Люцифер # more commonly-known fall-from-heaven figure - - Мерлин # Arthurian wizard - - Фаэтон # another Greek figure, similar to Icarus - - Волфорд # rendering of Bladud from the Welsh blaidd "wolf" + iudd "lord" +# # Myth and legend +# - Бладуд # legendary king of the Britons who crafted wings and died in his attempt at flight +# - Дедал # father of Icarus +# - Эребус # Greek primordial deity of darkness +# - Икар # the classic +# - Джатайу # Hindu figure, similar to Icarus +# - Кохо # Japanese reading of 夸父(こほ) +# - Куафу # Chinese giant 夸父, similar to Icarus +# - Люцифер # more commonly-known fall-from-heaven figure +# - Мерлин # Arthurian wizard +# - Фаэтон # another Greek figure, similar to Icarus +# - Волфорд # rendering of Bladud from the Welsh blaidd "wolf" + iudd "lord" - # Fun names - - Эйс - - Альтаир - - Дасти - - Гамбит - - Хоук - - Мотью - - Тимоти +# # Fun names +# - Эйс +# - Альтаир +# - Дасти +# - Гамбит +# - Хоук +# - Мотью +# - Тимоти - # Common names, filler - - Эшер - - Роман - - Исаак - - Самюэл - - Себастиан - - Сайлас - - Саймон +# # Common names, filler +# - Эшер +# - Роман +# - Исаак +# - Самюэл +# - Себастиан +# - Сайлас +# - Саймон diff --git a/Resources/Prototypes/Datasets/Names/moth_last.yml b/Resources/Prototypes/Datasets/Names/moth_last.yml index 4a2f9b3325f..f59eb69e8f4 100644 --- a/Resources/Prototypes/Datasets/Names/moth_last.yml +++ b/Resources/Prototypes/Datasets/Names/moth_last.yml @@ -1,44 +1,44 @@ -- type: dataset - id: names_moth_last - values: - - Одоратта # Ascalapha odorata - - Император # Saturniinae - - Сатурниина - - Плагодис # Plagodis dolabraria - - Темнора # Temnora - - Уста # Usta - - Агриппин # Thysania agrippina - - Оперофтера # Operophtera brumata - - Коциносера - - Брунеатта - - Акосмерикс - - Саттурнид - - Бистон - - Саласс - - Актияс - - Дриокамп - - Майродор - - Аккеронт +# - type: dataset +# id: names_moth_last +# values: +# - Одоратта # Ascalapha odorata +# - Император # Saturniinae +# - Сатурниина +# - Плагодис # Plagodis dolabraria +# - Темнора # Temnora +# - Уста # Usta +# - Агриппин # Thysania agrippina +# - Оперофтера # Operophtera brumata +# - Коциносера +# - Брунеатта +# - Акосмерикс +# - Саттурнид +# - Бистон +# - Саласс +# - Актияс +# - Дриокамп +# - Майродор +# - Аккеронт - # Other languages - - Эпиолос # Ancient Greek "moth" - - Молье # conceivably any Old Norse descendant of mǫlr but probably more Danish than anything. "oe" digraph for ø. - - Накфальтер # literal pseudo-translation of German Nachtfalter +# # Other languages +# - Эпиолос # Ancient Greek "moth" +# - Молье # conceivably any Old Norse descendant of mǫlr but probably more Danish than anything. "oe" digraph for ø. +# - Накфальтер # literal pseudo-translation of German Nachtfalter - # Myth and legend - - Геральд # belief of moths flying at night signalling the reception of a letter - - Леандер # Greek figure associated with Hero, and similar sounding to Oleander hawk-moth - - Мофман # split between being a myth reference and actual possible surname given the actual Goodman, Hoffman, Newman, Coleman, etc. +# # Myth and legend +# - Геральд # belief of moths flying at night signalling the reception of a letter +# - Леандер # Greek figure associated with Hero, and similar sounding to Oleander hawk-moth +# - Мофман # split between being a myth reference and actual possible surname given the actual Goodman, Hoffman, Newman, Coleman, etc. - # Fun names - - Кометрайдер - - Ивентайд - - Файрфлай - - Файрбруш - - Флеймкот - - Лайтвир - - Мунданс - - Найтвиш - - Оулбейн - - Сликтонг - - Спаркдроу +# # Fun names +# - Кометрайдер +# - Ивентайд +# - Файрфлай +# - Файрбруш +# - Флеймкот +# - Лайтвир +# - Мунданс +# - Найтвиш +# - Оулбейн +# - Сликтонг +# - Спаркдроу diff --git a/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml b/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml index 9dd72691b5a..e6a38cb0e9b 100644 --- a/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/headsets_alt.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity abstract: true parent: ClothingHeadset id: ClothingHeadsetAlt @@ -110,6 +110,7 @@ - EncryptionKeySecurity - EncryptionKeyCommand - EncryptionKeyCommon + - ADTEncryptionKeyLawyer - type: Sprite sprite: Clothing/Ears/Headsets/security.rsi - type: Clothing diff --git a/Resources/Prototypes/Entities/Markers/Spawners/jobs.yml b/Resources/Prototypes/Entities/Markers/Spawners/jobs.yml index c80bacdfc90..33e03de0388 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/jobs.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/jobs.yml @@ -239,7 +239,7 @@ name: lawyer components: - type: SpawnPoint - job_id: IAA # Corvax-IAA: Lawyer replaced with IAA + job_id: Lawyer # Corvax-IAA: Lawyer replaced with IAA - type: Sprite layers: - state: green diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/moth.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/moth.yml index c1d5df24633..977dff2203d 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/moth.yml @@ -1,1111 +1,1111 @@ -# Antennas -- type: marking - id: MothAntennasDefault - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: default - -- type: marking - id: MothAntennasCharred - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: charred - -- type: marking - id: MothAntennasDbushy - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: dbushy - -- type: marking - id: MothAntennasDcurvy - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: dcurvy - -- type: marking - id: MothAntennasDfan - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: dfan - -- type: marking - id: MothAntennasDpointy - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: dpointy - -- type: marking - id: MothAntennasFeathery - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: feathery - -- type: marking - id: MothAntennasFirewatch - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: firewatch - -- type: marking - id: MothAntennasGray - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: gray - -- type: marking - id: MothAntennasJungle - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: jungle - -- type: marking - id: MothAntennasMoffra - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: moffra - -- type: marking - id: MothAntennasOakworm - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: oakworm - -- type: marking - id: MothAntennasPlasmafire - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: plasmafire - -- type: marking - id: MothAntennasMaple - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: maple - -- type: marking - id: MothAntennasRoyal - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: royal - -- type: marking - id: MothAntennasStriped - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: striped - -- type: marking - id: MothAntennasWhitefly - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: whitefly - -- type: marking - id: MothAntennasWitchwing - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: witchwing - -- type: marking - id: MothAntennasUnderwing - bodyPart: HeadTop - markingCategory: HeadTop - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: underwing_primary - - sprite: Mobs/Customization/Moth/moth_antennas.rsi - state: underwing_secondary - -# Wings -- type: marking - id: MothWingsDefault - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: default - -- type: marking - id: MothWingsCharred - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: charred - -- type: marking - id: MothWingsDbushy - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: dbushy_primary - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: dbushy_secondary - -- type: marking - id: MothWingsDeathhead - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: deathhead_primary - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: deathhead_secondary - -- type: marking - id: MothWingsFan - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: fan - -- type: marking - id: MothWingsDfan - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: dfan - -- type: marking - id: MothWingsFeathery - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: feathery - -- type: marking - id: MothWingsFirewatch - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: firewatch_primary - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: firewatch_secondary - -- type: marking - id: MothWingsGothic - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: gothic - -- type: marking - id: MothWingsJungle - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: jungle - -- type: marking - id: MothWingsLadybug - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: ladybug - -- type: marking - id: MothWingsMaple - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: maple - -- type: marking - id: MothWingsMoffra - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: moffra_primary - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: moffra_secondary - -- type: marking - id: MothWingsOakworm - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: oakworm - -- type: marking - id: MothWingsPlasmafire - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: plasmafire_primary - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: plasmafire_secondary - -- type: marking - id: MothWingsPointy - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: pointy - -- type: marking - id: MothWingsRoyal - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: royal_primary - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: royal_secondary - -- type: marking - id: MothWingsStellar - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: stellar - -- type: marking - id: MothWingsStriped - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: striped - -- type: marking - id: MothWingsSwirly - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: swirly - -- type: marking - id: MothWingsWhitefly - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: whitefly - -- type: marking - id: MothWingsWitchwing - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: witchwing - -- type: marking - id: MothWingsUnderwing - bodyPart: Tail - markingCategory: Tail - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: underwing_primary - - sprite: Mobs/Customization/Moth/moth_wings.rsi - state: underwing_secondary - -# Body markings: -# Charred -- type: marking - id: MothChestCharred - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: charred_chest - -- type: marking - id: MothHeadCharred - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: charred_head - -- type: marking - id: MothLLegCharred - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: charred_l_leg - -- type: marking - id: MothRLegCharred - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: charred_r_leg - -- type: marking - id: MothLArmCharred - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: charred_l_arm - -- type: marking - id: MothRArmCharred - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: charred_r_arm - -# Death's-Head -- type: marking - id: MothChestDeathhead - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: deathhead_chest - -- type: marking - id: MothHeadDeathhead - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: deathhead_head - -- type: marking - id: MothLLegDeathhead - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: deathhead_l_leg - -- type: marking - id: MothRLegDeathhead - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: deathhead_r_leg - -- type: marking - id: MothLArmDeathhead - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: deathhead_l_arm - -- type: marking - id: MothRArmDeathhead - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: deathhead_r_arm - -# Fan -- type: marking - id: MothChestFan - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: fan_chest - -- type: marking - id: MothHeadFan - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: fan_head - -- type: marking - id: MothLLegFan - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: fan_l_leg - -- type: marking - id: MothRLegFan - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: fan_r_leg - -- type: marking - id: MothLArmFan - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: fan_l_arm - -- type: marking - id: MothRArmFan - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: fan_r_arm - -# Firewatch -- type: marking - id: MothChestFirewatch - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: firewatch_chest - -- type: marking - id: MothHeadFirewatch - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: firewatch_head - -- type: marking - id: MothLLegFirewatch - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: firewatch_l_leg - -- type: marking - id: MothRLegFirewatch - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: firewatch_r_leg - -- type: marking - id: MothLArmFirewatch - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: firewatch_l_arm - -- type: marking - id: MothRArmFirewatch - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: firewatch_r_arm - -# Gothic -- type: marking - id: MothChestGothic - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: gothic_chest - -- type: marking - id: MothHeadGothic - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: gothic_head - -- type: marking - id: MothLLegGothic - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: gothic_l_leg - -- type: marking - id: MothRLegGothic - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: gothic_r_leg - -- type: marking - id: MothLArmGothic - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: gothic_l_arm - -- type: marking - id: MothRArmGothic - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: gothic_r_arm - -# Jungle -- type: marking - id: MothChestJungle - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: jungle_chest - -- type: marking - id: MothHeadJungle - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: jungle_head - -- type: marking - id: MothLLegJungle - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: jungle_l_leg - -- type: marking - id: MothRLegJungle - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: jungle_r_leg - -- type: marking - id: MothLArmJungle - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: jungle_l_arm - -- type: marking - id: MothRArmJungle - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: jungle_r_arm - -# Moonfly -- type: marking - id: MothChestMoonfly - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: moonfly_chest - -- type: marking - id: MothHeadMoonfly - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: moonfly_head - -- type: marking - id: MothLLegMoonfly - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: moonfly_l_leg - -- type: marking - id: MothRLegMoonfly - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: moonfly_r_leg - -- type: marking - id: MothLArmMoonfly - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: moonfly_l_arm - -- type: marking - id: MothRArmMoonfly - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: moonfly_r_arm - -# Oak Worm -- type: marking - id: MothChestOakworm - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: oakworm_chest - -- type: marking - id: MothHeadOakworm - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: oakworm_head - -- type: marking - id: MothLLegOakworm - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: oakworm_l_leg - -- type: marking - id: MothRLegOakworm - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: oakworm_r_leg - -- type: marking - id: MothLArmOakworm - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: oakworm_l_arm - -- type: marking - id: MothRArmOakworm - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: oakworm_r_arm - -# Pointy -- type: marking - id: MothChestPointy - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: pointy_chest - -- type: marking - id: MothHeadPointy - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: pointy_head - -- type: marking - id: MothLLegPointy - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: pointy_l_leg - -- type: marking - id: MothRLegPointy - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: pointy_r_leg - -- type: marking - id: MothLArmPointy - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: pointy_l_arm - -- type: marking - id: MothRArmPointy - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: pointy_r_arm - -# Ragged -- type: marking - id: MothChestRagged - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: ragged_chest - -- type: marking - id: MothHeadRagged - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: ragged_head - -- type: marking - id: MothLLegRagged - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: ragged_l_leg - -- type: marking - id: MothRLegRagged - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: ragged_r_leg - -- type: marking - id: MothLArmRagged - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: ragged_l_arm - -- type: marking - id: MothRArmRagged - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: ragged_r_arm - -# Royal -- type: marking - id: MothChestRoyal - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: royal_chest - -- type: marking - id: MothHeadRoyal - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: royal_head - -- type: marking - id: MothLLegRoyal - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: royal_l_leg - -- type: marking - id: MothRLegRoyal - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: royal_r_leg - -- type: marking - id: MothLArmRoyal - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: royal_l_arm - -- type: marking - id: MothRArmRoyal - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: royal_r_arm - -# White Fly -- type: marking - id: MothChestWhitefly - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: whitefly_chest - -- type: marking - id: MothHeadWhitefly - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: whitefly_head - -- type: marking - id: MothLLegWhitefly - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: whitefly_l_leg - -- type: marking - id: MothRLegWhitefly - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: whitefly_r_leg - -- type: marking - id: MothLArmWhitefly - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: whitefly_l_arm - -- type: marking - id: MothRArmWhitefly - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: whitefly_r_arm - -# Witch Wing -- type: marking - id: MothChestWitchwing - bodyPart: Chest - markingCategory: Chest - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: witchwing_chest - -- type: marking - id: MothHeadWitchwing - bodyPart: Head - markingCategory: Head - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: witchwing_head - -- type: marking - id: MothLLegWitchwing - bodyPart: LLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: witchwing_l_leg - -- type: marking - id: MothRLegWitchwing - bodyPart: RLeg - markingCategory: Legs - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: witchwing_r_leg - -- type: marking - id: MothLArmWitchwing - bodyPart: LArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: witchwing_l_arm - -- type: marking - id: MothRArmWitchwing - bodyPart: RArm - markingCategory: Arms - speciesRestriction: [Moth] - sprites: - - sprite: Mobs/Customization/Moth/moth_parts.rsi - state: witchwing_r_arm +# # Antennas +# - type: marking +# id: MothAntennasDefault +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: default + +# - type: marking +# id: MothAntennasCharred +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: charred + +# - type: marking +# id: MothAntennasDbushy +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: dbushy + +# - type: marking +# id: MothAntennasDcurvy +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: dcurvy + +# - type: marking +# id: MothAntennasDfan +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: dfan + +# - type: marking +# id: MothAntennasDpointy +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: dpointy + +# - type: marking +# id: MothAntennasFeathery +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: feathery + +# - type: marking +# id: MothAntennasFirewatch +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: firewatch + +# - type: marking +# id: MothAntennasGray +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: gray + +# - type: marking +# id: MothAntennasJungle +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: jungle + +# - type: marking +# id: MothAntennasMoffra +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: moffra + +# - type: marking +# id: MothAntennasOakworm +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: oakworm + +# - type: marking +# id: MothAntennasPlasmafire +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: plasmafire + +# - type: marking +# id: MothAntennasMaple +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: maple + +# - type: marking +# id: MothAntennasRoyal +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: royal + +# - type: marking +# id: MothAntennasStriped +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: striped + +# - type: marking +# id: MothAntennasWhitefly +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: whitefly + +# - type: marking +# id: MothAntennasWitchwing +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: witchwing + +# - type: marking +# id: MothAntennasUnderwing +# bodyPart: HeadTop +# markingCategory: HeadTop +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: underwing_primary +# - sprite: Mobs/Customization/Moth/moth_antennas.rsi +# state: underwing_secondary + +# # Wings +# - type: marking +# id: MothWingsDefault +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: default + +# - type: marking +# id: MothWingsCharred +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: charred + +# - type: marking +# id: MothWingsDbushy +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: dbushy_primary +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: dbushy_secondary + +# - type: marking +# id: MothWingsDeathhead +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: deathhead_primary +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: deathhead_secondary + +# - type: marking +# id: MothWingsFan +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: fan + +# - type: marking +# id: MothWingsDfan +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: dfan + +# - type: marking +# id: MothWingsFeathery +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: feathery + +# - type: marking +# id: MothWingsFirewatch +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: firewatch_primary +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: firewatch_secondary + +# - type: marking +# id: MothWingsGothic +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: gothic + +# - type: marking +# id: MothWingsJungle +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: jungle + +# - type: marking +# id: MothWingsLadybug +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: ladybug + +# - type: marking +# id: MothWingsMaple +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: maple + +# - type: marking +# id: MothWingsMoffra +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: moffra_primary +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: moffra_secondary + +# - type: marking +# id: MothWingsOakworm +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: oakworm + +# - type: marking +# id: MothWingsPlasmafire +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: plasmafire_primary +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: plasmafire_secondary + +# - type: marking +# id: MothWingsPointy +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: pointy + +# - type: marking +# id: MothWingsRoyal +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: royal_primary +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: royal_secondary + +# - type: marking +# id: MothWingsStellar +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: stellar + +# - type: marking +# id: MothWingsStriped +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: striped + +# - type: marking +# id: MothWingsSwirly +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: swirly + +# - type: marking +# id: MothWingsWhitefly +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: whitefly + +# - type: marking +# id: MothWingsWitchwing +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: witchwing + +# - type: marking +# id: MothWingsUnderwing +# bodyPart: Tail +# markingCategory: Tail +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: underwing_primary +# - sprite: Mobs/Customization/Moth/moth_wings.rsi +# state: underwing_secondary + +# # Body markings: +# # Charred +# - type: marking +# id: MothChestCharred +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: charred_chest + +# - type: marking +# id: MothHeadCharred +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: charred_head + +# - type: marking +# id: MothLLegCharred +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: charred_l_leg + +# - type: marking +# id: MothRLegCharred +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: charred_r_leg + +# - type: marking +# id: MothLArmCharred +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: charred_l_arm + +# - type: marking +# id: MothRArmCharred +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: charred_r_arm + +# # Death's-Head +# - type: marking +# id: MothChestDeathhead +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: deathhead_chest + +# - type: marking +# id: MothHeadDeathhead +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: deathhead_head + +# - type: marking +# id: MothLLegDeathhead +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: deathhead_l_leg + +# - type: marking +# id: MothRLegDeathhead +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: deathhead_r_leg + +# - type: marking +# id: MothLArmDeathhead +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: deathhead_l_arm + +# - type: marking +# id: MothRArmDeathhead +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: deathhead_r_arm + +# # Fan +# - type: marking +# id: MothChestFan +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: fan_chest + +# - type: marking +# id: MothHeadFan +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: fan_head + +# - type: marking +# id: MothLLegFan +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: fan_l_leg + +# - type: marking +# id: MothRLegFan +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: fan_r_leg + +# - type: marking +# id: MothLArmFan +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: fan_l_arm + +# - type: marking +# id: MothRArmFan +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: fan_r_arm + +# # Firewatch +# - type: marking +# id: MothChestFirewatch +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: firewatch_chest + +# - type: marking +# id: MothHeadFirewatch +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: firewatch_head + +# - type: marking +# id: MothLLegFirewatch +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: firewatch_l_leg + +# - type: marking +# id: MothRLegFirewatch +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: firewatch_r_leg + +# - type: marking +# id: MothLArmFirewatch +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: firewatch_l_arm + +# - type: marking +# id: MothRArmFirewatch +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: firewatch_r_arm + +# # Gothic +# - type: marking +# id: MothChestGothic +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: gothic_chest + +# - type: marking +# id: MothHeadGothic +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: gothic_head + +# - type: marking +# id: MothLLegGothic +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: gothic_l_leg + +# - type: marking +# id: MothRLegGothic +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: gothic_r_leg + +# - type: marking +# id: MothLArmGothic +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: gothic_l_arm + +# - type: marking +# id: MothRArmGothic +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: gothic_r_arm + +# # Jungle +# - type: marking +# id: MothChestJungle +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: jungle_chest + +# - type: marking +# id: MothHeadJungle +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: jungle_head + +# - type: marking +# id: MothLLegJungle +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: jungle_l_leg + +# - type: marking +# id: MothRLegJungle +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: jungle_r_leg + +# - type: marking +# id: MothLArmJungle +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: jungle_l_arm + +# - type: marking +# id: MothRArmJungle +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: jungle_r_arm + +# # Moonfly +# - type: marking +# id: MothChestMoonfly +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: moonfly_chest + +# - type: marking +# id: MothHeadMoonfly +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: moonfly_head + +# - type: marking +# id: MothLLegMoonfly +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: moonfly_l_leg + +# - type: marking +# id: MothRLegMoonfly +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: moonfly_r_leg + +# - type: marking +# id: MothLArmMoonfly +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: moonfly_l_arm + +# - type: marking +# id: MothRArmMoonfly +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: moonfly_r_arm + +# # Oak Worm +# - type: marking +# id: MothChestOakworm +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: oakworm_chest + +# - type: marking +# id: MothHeadOakworm +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: oakworm_head + +# - type: marking +# id: MothLLegOakworm +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: oakworm_l_leg + +# - type: marking +# id: MothRLegOakworm +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: oakworm_r_leg + +# - type: marking +# id: MothLArmOakworm +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: oakworm_l_arm + +# - type: marking +# id: MothRArmOakworm +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: oakworm_r_arm + +# # Pointy +# - type: marking +# id: MothChestPointy +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: pointy_chest + +# - type: marking +# id: MothHeadPointy +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: pointy_head + +# - type: marking +# id: MothLLegPointy +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: pointy_l_leg + +# - type: marking +# id: MothRLegPointy +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: pointy_r_leg + +# - type: marking +# id: MothLArmPointy +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: pointy_l_arm + +# - type: marking +# id: MothRArmPointy +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: pointy_r_arm + +# # Ragged +# - type: marking +# id: MothChestRagged +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: ragged_chest + +# - type: marking +# id: MothHeadRagged +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: ragged_head + +# - type: marking +# id: MothLLegRagged +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: ragged_l_leg + +# - type: marking +# id: MothRLegRagged +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: ragged_r_leg + +# - type: marking +# id: MothLArmRagged +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: ragged_l_arm + +# - type: marking +# id: MothRArmRagged +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: ragged_r_arm + +# # Royal +# - type: marking +# id: MothChestRoyal +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: royal_chest + +# - type: marking +# id: MothHeadRoyal +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: royal_head + +# - type: marking +# id: MothLLegRoyal +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: royal_l_leg + +# - type: marking +# id: MothRLegRoyal +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: royal_r_leg + +# - type: marking +# id: MothLArmRoyal +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: royal_l_arm + +# - type: marking +# id: MothRArmRoyal +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: royal_r_arm + +# # White Fly +# - type: marking +# id: MothChestWhitefly +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: whitefly_chest + +# - type: marking +# id: MothHeadWhitefly +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: whitefly_head + +# - type: marking +# id: MothLLegWhitefly +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: whitefly_l_leg + +# - type: marking +# id: MothRLegWhitefly +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: whitefly_r_leg + +# - type: marking +# id: MothLArmWhitefly +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: whitefly_l_arm + +# - type: marking +# id: MothRArmWhitefly +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: whitefly_r_arm + +# # Witch Wing +# - type: marking +# id: MothChestWitchwing +# bodyPart: Chest +# markingCategory: Chest +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: witchwing_chest + +# - type: marking +# id: MothHeadWitchwing +# bodyPart: Head +# markingCategory: Head +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: witchwing_head + +# - type: marking +# id: MothLLegWitchwing +# bodyPart: LLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: witchwing_l_leg + +# - type: marking +# id: MothRLegWitchwing +# bodyPart: RLeg +# markingCategory: Legs +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: witchwing_r_leg + +# - type: marking +# id: MothLArmWitchwing +# bodyPart: LArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: witchwing_l_arm + +# - type: marking +# id: MothRArmWitchwing +# bodyPart: RArm +# markingCategory: Arms +# speciesRestriction: [Moth] +# sprites: +# - sprite: Mobs/Customization/Moth/moth_parts.rsi +# state: witchwing_r_arm diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 0650eddb408..c1d53355a44 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -130,6 +130,7 @@ - KnockedDown - SlowedDown - Flashed + - SeeingStatic # ADT IPC (shaders) - type: TypingIndicator proto: robot - type: Speech diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index baf7d7ade0b..29a4a036dbf 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -511,9 +511,11 @@ accent: zombieMoth - type: Vocal sounds: - Male: UnisexMoth - Female: UnisexMoth - Unsexed: UnisexMoth + # Start-ADT Tweak Нианы + Male: MaleMoth + Female: FemaleMoth + Unsexed: MaleMoth + # End-ADT Tweak Нианы wilhelmProbability: 0.001 - type: MobPrice price: 150 diff --git a/Resources/Prototypes/Entities/Mobs/Player/moth.yml b/Resources/Prototypes/Entities/Mobs/Player/moth.yml index ea01677626d..431843d4edc 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/moth.yml @@ -1,5 +1,5 @@ -- type: entity - save: false - name: Urist McFluff - parent: BaseMobMoth - id: MobMoth +# - type: entity +# save: false +# name: Urist McFluff +# parent: BaseMobMoth +# id: MobMoth diff --git a/Resources/Prototypes/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/Entities/Mobs/Species/moth.yml index a2730b6d7e9..327ded7cf31 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/moth.yml @@ -1,135 +1,136 @@ -- type: entity - save: false - name: Urist McFluff - parent: BaseMobSpeciesOrganic - id: BaseMobMoth - abstract: true - components: - - type: HumanoidAppearance - species: Moth - hideLayersOnEquip: - - HeadTop - - type: Hunger - - type: Thirst - - type: Icon - sprite: Mobs/Species/Moth/parts.rsi - state: full - - type: Body - prototype: Moth - requiredLegs: 2 - - type: Damageable - damageContainer: Biological - damageModifierSet: Moth - - type: ZombieAccentOverride - accent: zombieMoth - - type: Speech - speechVerb: Moth - allowedEmotes: ['Chitter', 'Squeak'] - - type: TypingIndicator - proto: moth - - type: Butcherable - butcheringType: Spike - spawned: - - id: FoodMeat - amount: 5 - - type: Bloodstream - bloodReagent: InsectBlood - - type: DamageVisuals - damageOverlayGroups: - Brute: - sprite: Mobs/Effects/brute_damage.rsi - color: "#808A51" - - type: MothAccent - - type: Vocal - sounds: - Male: UnisexMoth - Female: UnisexMoth - Unsexed: UnisexMoth - - type: MovementSpeedModifier - weightlessAcceleration: 1.5 # Move around more easily in space. - weightlessFriction: 1 - weightlessModifier: 1 - - type: Flammable - damage: - types: - Heat: 4.5 # moths burn more easily - - type: Temperature # Moths hate the heat and thrive in the cold. - heatDamageThreshold: 320 - coldDamageThreshold: 230 - currentTemperature: 310.15 - 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: Sprite # sprite again because we want different layer ordering - noRot: true - drawdepth: Mobs - 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 #PJB on stencil clear being on the left leg: "...this is 'fine'" -https://github.com/space-wizards/space-station-14/pull/12217#issuecomment-1291677115 - # its fine, but its still very stupid that it has to be done like this instead of allowing sprites to just directly insert a stencil clear. - # sprite refactor when - state: l_leg - - shader: StencilMask - map: [ "enum.HumanoidVisualLayers.StencilMask" ] - sprite: Mobs/Customization/masking_helpers.rsi - state: unisex_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: [ "gloves" ] - - map: [ "shoes" ] - - map: [ "ears" ] - - map: [ "outerClothing" ] - - map: [ "eyes" ] - - map: [ "belt" ] - - map: [ "id" ] - - map: [ "enum.HumanoidVisualLayers.Tail" ] #in the utopian future we should probably have a wings enum inserted here so everyhting doesn't break - - map: [ "neck" ] - - map: [ "back" ] - - map: [ "enum.HumanoidVisualLayers.FacialHair" ] - - map: [ "enum.HumanoidVisualLayers.Hair" ] - - map: [ "enum.HumanoidVisualLayers.HeadSide" ] - - map: [ "enum.HumanoidVisualLayers.HeadTop" ] - - map: [ "mask" ] - - map: [ "head" ] - - map: [ "pocket1" ] - - map: [ "pocket2" ] - - map: [ "clownedon" ] # Dynamically generated - sprite: "Effects/creampie.rsi" - state: "creampie_moth" - visible: false - - type: LanguageSpeaker # Frontier - speaks: - - GalacticCommon - - Nian - understands: - - GalacticCommon - - Nian +## ADT Tweak - ЗАКОММЕНТИЛИ ДЛЯ ADT НИАН +# - type: entity +# save: false +# name: Urist McFluff +# parent: BaseMobSpeciesOrganic +# id: BaseMobMoth +# abstract: true +# components: +# - type: HumanoidAppearance +# species: Moth +# hideLayersOnEquip: +# - HeadTop +# - type: Hunger +# - type: Thirst +# - type: Icon +# sprite: Mobs/Species/Moth/parts.rsi +# state: full +# - type: Body +# prototype: Moth +# requiredLegs: 2 +# - type: Damageable +# damageContainer: Biological +# damageModifierSet: Moth +# - type: ZombieAccentOverride +# accent: zombieMoth +# - type: Speech +# speechVerb: Moth +# allowedEmotes: ['Chitter', 'Squeak'] +# - type: TypingIndicator +# proto: moth +# - type: Butcherable +# butcheringType: Spike +# spawned: +# - id: FoodMeat +# amount: 5 +# - type: Bloodstream +# bloodReagent: InsectBlood +# - type: DamageVisuals +# damageOverlayGroups: +# Brute: +# sprite: Mobs/Effects/brute_damage.rsi +# color: "#808A51" +# - type: MothAccent +# - type: Vocal +# sounds: +# Male: UnisexMoth +# Female: UnisexMoth +# Unsexed: UnisexMoth +# - type: MovementSpeedModifier +# weightlessAcceleration: 1.5 # Move around more easily in space. +# weightlessFriction: 1 +# weightlessModifier: 1 +# - type: Flammable +# damage: +# types: +# Heat: 4.5 # moths burn more easily +# - type: Temperature # Moths hate the heat and thrive in the cold. +# heatDamageThreshold: 320 +# coldDamageThreshold: 230 +# currentTemperature: 310.15 +# 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: Sprite # sprite again because we want different layer ordering +# noRot: true +# drawdepth: Mobs +# 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 #PJB on stencil clear being on the left leg: "...this is 'fine'" -https://github.com/space-wizards/space-station-14/pull/12217#issuecomment-1291677115 +# # its fine, but its still very stupid that it has to be done like this instead of allowing sprites to just directly insert a stencil clear. +# # sprite refactor when +# state: l_leg +# - shader: StencilMask +# map: [ "enum.HumanoidVisualLayers.StencilMask" ] +# sprite: Mobs/Customization/masking_helpers.rsi +# state: unisex_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: [ "gloves" ] +# - map: [ "shoes" ] +# - map: [ "ears" ] +# - map: [ "outerClothing" ] +# - map: [ "eyes" ] +# - map: [ "belt" ] +# - map: [ "id" ] +# - map: [ "enum.HumanoidVisualLayers.Tail" ] #in the utopian future we should probably have a wings enum inserted here so everyhting doesn't break +# - map: [ "neck" ] +# - map: [ "back" ] +# - map: [ "enum.HumanoidVisualLayers.FacialHair" ] +# - map: [ "enum.HumanoidVisualLayers.Hair" ] +# - map: [ "enum.HumanoidVisualLayers.HeadSide" ] +# - map: [ "enum.HumanoidVisualLayers.HeadTop" ] +# - map: [ "mask" ] +# - map: [ "head" ] +# - map: [ "pocket1" ] +# - map: [ "pocket2" ] +# - map: [ "clownedon" ] # Dynamically generated +# sprite: "Effects/creampie.rsi" +# state: "creampie_moth" +# visible: false +# - type: LanguageSpeaker # Frontier +# speaks: +# - GalacticCommon +# - Nian +# understands: +# - GalacticCommon +# - Nian -- type: entity - parent: BaseSpeciesDummy - id: MobMothDummy - noSpawn: true - components: - - type: HumanoidAppearance - species: Moth +# - type: entity +# parent: BaseSpeciesDummy +# id: MobMothDummy +# noSpawn: true +# components: +# - type: HumanoidAppearance +# species: Moth diff --git a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml index 75cca712214..a4afd95feb1 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/encryption_keys.yml @@ -72,6 +72,7 @@ - Security - Service - Supply + - ADTLawyerChannel #ADT defaultChannel: Command - type: Sprite layers: @@ -163,6 +164,7 @@ - type: EncryptionKey channels: - Science + - Binary # ADT Tweak Roboticist defaultChannel: Science - type: Sprite layers: diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml index 41677e26a93..7de4bdba5fd 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml @@ -602,6 +602,7 @@ icons: # TODO figure out a better way of doing this. # Probably by adding a bool or icon-category data-field to the icon prototype? + - JobIconMagistrat - JobIconDetective - JobIconQuarterMaster - JobIconBotanist diff --git a/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml b/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml index 3c5bc93b42c..ce9224d588e 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/access_configurator.yml @@ -48,6 +48,8 @@ - Security - Service - Theatre + - Magistrate + - IAA privilegedIdSlot: name: id-card-console-privileged-id ejectSound: /Audio/Machines/id_swipe.ogg diff --git a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml index 3f72fa10fad..355ce3c8789 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/cable_coils.yml @@ -29,6 +29,21 @@ - type: PhysicalComposition materialComposition: Steel: 15 + # ADT Tweak Start: IPC + - type: Healing # cables can be used to heal IPC + damageContainers: + - ADTSiliconDamageContainer + damage: + types: + Heat: -5 + Cold: -5 + Shock: -5 + Caustic: -5 + # healingBeginSound: + # path: "/Audio/Items/Medical/ointment_begin.ogg" + # healingEndSound: + # path: "/Audio/Items/Medical/ointment_end.ogg" + # ADT Tweak End - type: entity id: CableHVStack diff --git a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml index 72bbd82ab8a..29694916397 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml @@ -83,6 +83,7 @@ - type: FaxMachine name: "Central Command" notifyAdmins: true + receiveNukeCodes: true # ADT-NukeCodes receiveStationGoal: true # Corvax-StationGoal - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Machines/nuke.yml b/Resources/Prototypes/Entities/Structures/Machines/nuke.yml index 1cf9ceaeab3..8dbc4da141e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/nuke.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/nuke.yml @@ -16,9 +16,11 @@ map: ["enum.NukeVisualLayers.Unlit"] shader: unshaded visible: false - - state: nuclearbomb_gay - map: ["pride"] - visible: false +# ADT-Holidays-Start + # - state: nuclearbomb_gay + # map: ["pride"] + # visible: false +# ADT-Holidays-End - state: nukefestive map: ["christmas"] visible: false @@ -27,15 +29,19 @@ holidays: festive: - FestiveSeason - pride: - - PrideMonth +# ADT-Holidays-Start + # pride: + # - PrideMonth +# ADT-Holidays-End - type: GenericVisualizer visuals: enum.HolidayVisuals.Holiday: christmas: festive: { visible: true } - pride: - pride: { visible: true } +# ADT-Holidays-Start + # pride: + # pride: { visible: true } +# ADT-Holidays-End enum.NukeVisuals.Deployed: enum.NukeVisualLayers.Base: False: { state: nuclearbomb_base } @@ -136,23 +142,29 @@ - state: nukefestive map: ["christmas"] visible: false - - state: nuclearbomb_gay - map: [ "pride" ] - visible: false +# ADT-Holidays-Start + # - state: nuclearbomb_gay + # map: [ "pride" ] + # visible: false +# ADT-Holidays-End - type: Appearance - type: HolidayVisuals holidays: festive: - FestiveSeason - pride: - - PrideMonth +# ADT-Holidays-Start + # pride: + # - PrideMonth +# ADT-Holidays-End - type: GenericVisualizer visuals: enum.HolidayVisuals.Holiday: christmas: festive: { visible: true } - pride: - pride: { visible: true } +# ADT-Holidays-Start + # pride: + # pride: { visible: true } +# ADT-Holidays-End - type: Physics bodyType: Dynamic - type: Fixtures diff --git a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml index 4a1b5a3560a..a9a857c316f 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/telecomms.yml @@ -86,6 +86,7 @@ - EncryptionKeySecurity - EncryptionKeyService - EncryptionKeyCommand + - ADTEncryptionKeyLawyer - type: entity parent: TelecomServer diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml index 4961f90be91..72fe81aff41 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/binary.yml @@ -22,6 +22,12 @@ !type:PipeNode nodeGroupID: Pipe pipeDirection: South + # ADT-RPD-Start + - type: RPDDeconstructable + cost: 4 + delay: 2 + fx: EffectRCDDeconstruct2 + # ADT-RPD-End - type: entity parent: GasBinaryBase diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml index c2fc4e0565b..81e8cabb33f 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/pipes.yml @@ -62,6 +62,12 @@ bodyType: static - type: StaticPrice price: 11 + # ADT-RPD-Start + - type: RPDDeconstructable + cost: 4 + delay: 2 + fx: EffectRCDDeconstruct2 + # ADT-RPD-End #Note: The PipeDirection of the PipeNode should be the south-facing version, because the entity starts at an angle of 0 (south) diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml index eff831fa9ea..1b100af47e6 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/special.yml @@ -25,6 +25,12 @@ - type: Tag tags: - SpreaderIgnore + # ADT-RPD-Start + - type: RPDDeconstructable + cost: 4 + delay: 2 + fx: EffectRCDDeconstruct2 + # ADT-RPD-End - type: entity id: AtmosDeviceFanDirectional diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml index 63c7665978b..5fcfecf234a 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/unary.yml @@ -19,6 +19,12 @@ nodeGroupID: Pipe pipeDirection: South - type: CollideOnAnchor + # ADT-RPD-Start + - type: RPDDeconstructable + cost: 4 + delay: 2 + fx: EffectRCDDeconstruct2 + # ADT-RPD-End - type: entity parent: [GasUnaryBase, AirSensorBase] diff --git a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml index 7aee5896472..60ec3a2dcc6 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Disposal/pipes.yml @@ -58,6 +58,12 @@ DisposalTube: !type:Container - type: StaticPrice price: 22 + # ADT-RPD-Start + - type: RPDDeconstructable + cost: 4 + delay: 2 + fx: EffectRCDDeconstruct2 + # ADT-RPD-End - type: entity id: DisposalHolder diff --git a/Resources/Prototypes/Entities/Structures/Power/apc.yml b/Resources/Prototypes/Entities/Structures/Power/apc.yml index 0948cdb4cc4..c53160376df 100644 --- a/Resources/Prototypes/Entities/Structures/Power/apc.yml +++ b/Resources/Prototypes/Entities/Structures/Power/apc.yml @@ -143,6 +143,8 @@ priority: 1 - type: StaticPrice price: 500 + - type: BatteryDrinkerSource # ADT - IPC + maxAmount: 10000 # APC under construction - type: entity diff --git a/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml index b118b85c4db..ea3427e2903 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Atmospherics/sensor.yml @@ -28,6 +28,12 @@ - type: Tag tags: - AirSensor + # ADT-RPD-Start + - type: RPDDeconstructable + cost: 4 + delay: 2 + fx: EffectRCDDeconstruct2 + # ADT-RPD-End - type: entity id: AirSensor diff --git a/Resources/Prototypes/Entities/Structures/Specific/Janitor/drain.yml b/Resources/Prototypes/Entities/Structures/Specific/Janitor/drain.yml index e0247001f20..838e96bef7b 100644 --- a/Resources/Prototypes/Entities/Structures/Specific/Janitor/drain.yml +++ b/Resources/Prototypes/Entities/Structures/Specific/Janitor/drain.yml @@ -60,3 +60,9 @@ - !type:PlaySoundBehavior sound: collection: MetalBreak + # ADT-RPD-Start + - type: RPDDeconstructable + cost: 10 + delay: 6 + fx: EffectRCDDeconstruct6 + # ADT-RPD-End diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml index 89fd4d4809b..0fa8790947d 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/air_alarm.yml @@ -109,6 +109,12 @@ collection: MetalGlassBreak params: volume: -4 + # ADT-RPD-Start + - type: RPDDeconstructable + cost: 5 + delay: 6 + fx: EffectRCDDeconstruct6 + # ADT-RPD-Start - type: entity id: AirAlarmAssembly @@ -139,3 +145,9 @@ node: assembly - type: Transform anchored: true + # ADT-RPD-Start + - type: RPDDeconstructable + cost: 5 + delay: 6 + fx: EffectRCDDeconstruct6 + # ADT-RPD-Start diff --git a/Resources/Prototypes/Entities/Structures/Walls/grille.yml b/Resources/Prototypes/Entities/Structures/Walls/grille.yml index 7be721b6f9a..1abc9cb7d1f 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/grille.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/grille.yml @@ -12,7 +12,8 @@ - type: RCDDeconstructable cost: 6 delay: 4 - fx: EffectRCDDeconstruct4 + fx: EffectRCDDeconstruct4 + - type: CanBuildWindowOnTopRPD # ADT-RPD - type: CanBuildWindowOnTop - type: Sprite drawdepth: Walls @@ -233,4 +234,4 @@ - type: Construction graph: GrilleDiagonal node: clockworkGrilleDiagonal - + diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index 1ab770812a6..02552fa244a 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -80,7 +80,7 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] - + - type: CanBuildWindowOnTopRPD # ADT-RPD - type: IconSmooth key: bricks base: brick diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml index 954ff4d9500..4d8c4ca40d3 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/window.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml @@ -92,7 +92,8 @@ - type: StaticPrice price: 100 - type: BlockWeather - + - type: CanBuildWindowOnTopRPD # ADT-RPD + - type: entity id: WindowRCDResistant parent: Window @@ -197,7 +198,7 @@ price: 10 - type: entity - id: WindowDirectionalRCDResistant + id: WindowDirectionalRCDResistant parent: WindowDirectional abstract: true components: @@ -264,4 +265,4 @@ sprite: Structures/Windows/cracks_diagonal.rsi - type: Construction graph: WindowDiagonal - node: windowDiagonal \ No newline at end of file + node: windowDiagonal diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index 917afa6ed26..34208924296 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -34,6 +34,7 @@ - ClothingNeckMainPin - ClothingNeckNebulaPin - ClothingNeckNovaPin + - ClothingNeckSolarisPin - ClothingNeckWhiteListPin # Corvax-Loadouts-End - type: loadoutGroup diff --git a/Resources/Prototypes/Maps/atlas.yml b/Resources/Prototypes/Maps/atlas.yml index 6fe3eff030a..335f8ded25c 100644 --- a/Resources/Prototypes/Maps/atlas.yml +++ b/Resources/Prototypes/Maps/atlas.yml @@ -55,3 +55,6 @@ Clown: [ 1, 1 ] Mime: [ 1, 1 ] Musician: [ 1, 1 ] + # Юрдеп + Lawyer: [ 1, 1 ] + diff --git a/Resources/Prototypes/Maps/bagel.yml b/Resources/Prototypes/Maps/bagel.yml index 0bd4714e3ec..2771582fa35 100644 --- a/Resources/Prototypes/Maps/bagel.yml +++ b/Resources/Prototypes/Maps/bagel.yml @@ -19,7 +19,6 @@ availableJobs: #service Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # Corvax-IAA HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] Botanist: [ 3, 3 ] @@ -61,3 +60,5 @@ Mime: [ 1, 1 ] Musician: [ 1, 1 ] Reporter: [ 2, 2 ] + # Юрдеп + Lawyer: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/box.yml b/Resources/Prototypes/Maps/box.yml index ecd4ef07404..13f7381c28d 100644 --- a/Resources/Prototypes/Maps/box.yml +++ b/Resources/Prototypes/Maps/box.yml @@ -18,7 +18,6 @@ availableJobs: #service Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # Corvax-IAA HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] Botanist: [ 3, 3 ] @@ -60,4 +59,5 @@ Clown: [ 1, 1 ] Mime: [ 1, 1 ] Musician: [ 1, 1 ] - + # Юрдеп + Lawyer: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/cluster.yml b/Resources/Prototypes/Maps/cluster.yml index 8485b068f8d..b7bb6339e24 100644 --- a/Resources/Prototypes/Maps/cluster.yml +++ b/Resources/Prototypes/Maps/cluster.yml @@ -1,4 +1,4 @@ -- type: gameMap +- type: gameMap id: Cluster mapName: 'Cluster' mapPath: /Maps/cluster.yml @@ -19,7 +19,6 @@ availableJobs: #service Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # Corvax-IAA HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] Botanist: [ 2, 2 ] @@ -59,4 +58,5 @@ Clown: [ 1, 1 ] Mime: [ 1, 1 ] Musician: [ 1, 1 ] - + # Юрдеп + Lawyer: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/core.yml b/Resources/Prototypes/Maps/core.yml index e531579b336..f543e8ce63d 100644 --- a/Resources/Prototypes/Maps/core.yml +++ b/Resources/Prototypes/Maps/core.yml @@ -25,7 +25,6 @@ Chef: [ 1, 1 ] Janitor: [ 2, 2 ] Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # Corvax-IAA HeadOfPersonnel: [ 1, 1 ] Chaplain: [ 1, 1 ] Librarian: [ 1, 1 ] @@ -64,3 +63,5 @@ Musician: [ 1, 1 ] Boxer: [ 2, 2 ] Reporter: [ 2, 2 ] + # Юрдеп + Lawyer: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/europa.yml b/Resources/Prototypes/Maps/europa.yml index 84961a3874b..dd185b849df 100644 --- a/Resources/Prototypes/Maps/europa.yml +++ b/Resources/Prototypes/Maps/europa.yml @@ -25,7 +25,6 @@ Chef: [ 1, 1 ] Janitor: [ 2, 2 ] Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # Corvax-IAA HeadOfPersonnel: [ 1, 1 ] Chaplain: [ 1, 1 ] Librarian: [ 1, 1 ] @@ -62,3 +61,5 @@ Mime: [ 1, 1 ] Musician: [ 1, 1 ] Reporter: [ 1, 1 ] + # Юрдеп + Lawyer: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/fland.yml b/Resources/Prototypes/Maps/fland.yml index 97ed26c8ec9..96c57be02f2 100644 --- a/Resources/Prototypes/Maps/fland.yml +++ b/Resources/Prototypes/Maps/fland.yml @@ -20,7 +20,6 @@ availableJobs: #service Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # Corvax-IAA HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] Botanist: [ 3, 3 ] @@ -61,3 +60,5 @@ Clown: [ 1, 1 ] Mime: [ 1, 1 ] Musician: [ 1, 1 ] + # Юрдеп + Lawyer: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/marathon.yml b/Resources/Prototypes/Maps/marathon.yml index d3968c369a1..e684a59e30e 100644 --- a/Resources/Prototypes/Maps/marathon.yml +++ b/Resources/Prototypes/Maps/marathon.yml @@ -19,7 +19,6 @@ availableJobs: #service Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # Corvax-IAA HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] Botanist: [ 2, 3 ] @@ -61,3 +60,5 @@ Clown: [ 1, 1 ] Mime: [ 1, 1 ] Musician: [ 1, 1 ] + # Юрдеп + Lawyer: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/meta.yml b/Resources/Prototypes/Maps/meta.yml index 67600c501d6..efdcb6626b7 100644 --- a/Resources/Prototypes/Maps/meta.yml +++ b/Resources/Prototypes/Maps/meta.yml @@ -18,7 +18,6 @@ availableJobs: #service Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # Corvax-IAA HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] Botanist: [ 2, 3 ] @@ -59,3 +58,5 @@ Clown: [ 1, 1 ] Mime: [ 1, 1 ] Musician: [ 1, 1 ] + # Юрдеп + Lawyer: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/oasis.yml b/Resources/Prototypes/Maps/oasis.yml index d11a1217d90..1fafb22fb10 100644 --- a/Resources/Prototypes/Maps/oasis.yml +++ b/Resources/Prototypes/Maps/oasis.yml @@ -18,7 +18,6 @@ availableJobs: #service Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # Corvax-IAA HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] Botanist: [ 2, 3 ] @@ -62,3 +61,5 @@ Clown: [ 1, 1 ] Mime: [ 1, 1 ] Musician: [ 1, 1 ] + # Юрдеп + Lawyer: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/omega.yml b/Resources/Prototypes/Maps/omega.yml index b4df9c756da..b51099c9f7d 100644 --- a/Resources/Prototypes/Maps/omega.yml +++ b/Resources/Prototypes/Maps/omega.yml @@ -19,7 +19,6 @@ availableJobs: #service Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # Corvax-IAA HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] Botanist: [ 2, 2 ] @@ -59,3 +58,5 @@ Mime: [ 1, 1 ] Musician: [ 1, 1 ] Borg: [ 2, 2 ] + # Юрдеп + Lawyer: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/origin.yml b/Resources/Prototypes/Maps/origin.yml index fa7c6435577..d61d913b696 100644 --- a/Resources/Prototypes/Maps/origin.yml +++ b/Resources/Prototypes/Maps/origin.yml @@ -18,7 +18,6 @@ availableJobs: #service Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # Corvax-IAA HeadOfPersonnel: [ 1, 1 ] Bartender: [ 2, 2 ] Botanist: [ 3, 3 ] @@ -62,4 +61,6 @@ Musician: [ 2, 2 ] Boxer: [ 1, 1 ] Reporter: [ 1, 1 ] + # Юрдеп + Lawyer: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/packed.yml b/Resources/Prototypes/Maps/packed.yml index fdffc03fcd6..af3eb47e518 100644 --- a/Resources/Prototypes/Maps/packed.yml +++ b/Resources/Prototypes/Maps/packed.yml @@ -17,7 +17,6 @@ availableJobs: #service Captain: [ 1, 1 ] - IAA: [ 1, 1 ] # Corvax-IAA HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] Botanist: [ 1, 2 ] @@ -58,3 +57,5 @@ Mime: [ 1, 1 ] Musician: [ 1, 1 ] Borg: [ 1 , 1 ] + # Юрдеп + Lawyer: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/saltern.yml b/Resources/Prototypes/Maps/saltern.yml index e49fde94efa..f9a5094fa0a 100644 --- a/Resources/Prototypes/Maps/saltern.yml +++ b/Resources/Prototypes/Maps/saltern.yml @@ -59,4 +59,3 @@ Clown: [ 1, 1 ] Mime: [ 1, 1 ] Musician: [ 1, 1 ] - diff --git a/Resources/Prototypes/Maps/train.yml b/Resources/Prototypes/Maps/train.yml index 46492e80f06..a1ef8670dd7 100644 --- a/Resources/Prototypes/Maps/train.yml +++ b/Resources/Prototypes/Maps/train.yml @@ -21,7 +21,6 @@ availableJobs: #service Captain: [ 1, 1 ] - IAA: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] Bartender: [ 1, 1 ] Botanist: [ 2, 2 ] @@ -61,3 +60,5 @@ Mime: [ 1, 1 ] Musician: [ 1, 1 ] Borg: [ 2, 2 ] + # Юрдеп + Lawyer: [ 1, 1 ] diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml index 07c76b9d1b0..584b0dece3d 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/lawyer.yml @@ -7,7 +7,6 @@ - !type:OverallPlaytimeRequirement time: 36000 # 10 hrs startingGear: LawyerGear - setPreference: false # Corvax-IAA icon: "JobIconLawyer" supervisors: job-supervisors-hop access: @@ -21,7 +20,7 @@ equipment: shoes: ClothingShoesBootsLaceup id: LawyerPDA - ears: ClothingHeadsetSecurity + ears: ClothingHeadsetLawyer inhand: - BriefcaseBrownFilled storage: diff --git a/Resources/Prototypes/Roles/Jobs/departments.yml b/Resources/Prototypes/Roles/Jobs/departments.yml index a9d0e8e7a42..62e027d9e2d 100644 --- a/Resources/Prototypes/Roles/Jobs/departments.yml +++ b/Resources/Prototypes/Roles/Jobs/departments.yml @@ -22,7 +22,6 @@ - Clown - HeadOfPersonnel - Janitor - - Lawyer - Librarian - Mime - Musician @@ -38,7 +37,6 @@ color: "#334E6D" roles: - Captain - - IAA # Corvax-IAA - CentralCommandOfficial - ChiefEngineer - ChiefMedicalOfficer @@ -70,6 +68,7 @@ - MedicalIntern - Psychologist - Paramedic + - ADTPathologist - type: department id: Security @@ -92,6 +91,7 @@ - ResearchDirector - Scientist - ResearchAssistant + - ADTRoboticist # ADT-Roles - type: department id: Specific diff --git a/Resources/Prototypes/Species/moth.yml b/Resources/Prototypes/Species/moth.yml index b474f613f84..3a4310872ac 100644 --- a/Resources/Prototypes/Species/moth.yml +++ b/Resources/Prototypes/Species/moth.yml @@ -1,160 +1,161 @@ -- type: species - id: Moth - name: species-name-moth - roundStart: true - prototype: MobMoth - sprites: MobMothSprites - defaultSkinTone: "#ffda93" - markingLimits: MobMothMarkingLimits - dollPrototype: MobMothDummy - skinColoration: Hues - maleFirstNames: names_moth_first_male - femaleFirstNames: names_moth_first_female - maleLastNames: names_moth_last # Corvax-LastnameGender - femaleLastNames: names_moth_last # Corvax-LastnameGender - -- type: speciesBaseSprites - id: MobMothSprites - sprites: - Head: MobMothHead - Snout: MobHumanoidAnyMarking - Chest: MobMothTorso - HeadTop: MobHumanoidAnyMarking - HeadSide: MobHumanoidAnyMarking - Tail: MobHumanoidAnyMarking - Eyes: MobMothEyes - LArm: MobMothLArm - RArm: MobMothRArm - LHand: MobMothLHand - RHand: MobMothRHand - LLeg: MobMothLLeg - RLeg: MobMothRLeg - LFoot: MobMothLFoot - RFoot: MobMothRFoot - -- type: humanoidBaseSprite - id: MobMothEyes - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: eyes - -- type: markingPoints - id: MobMothMarkingLimits - onlyWhitelisted: true - points: - Hair: - points: 0 - required: false - FacialHair: - points: 0 - required: false - Tail: - points: 1 - required: true - defaultMarkings: [ MothWingsDefault ] - Snout: - points: 1 - required: false - HeadTop: - points: 1 - required: true - defaultMarkings: [ MothAntennasDefault ] - HeadSide: - points: 1 - required: false - Head: - points: 1 - required: false - Chest: - points: 1 - required: false - Legs: - points: 2 - required: false - Arms: - points: 2 - required: false - -- type: humanoidBaseSprite - id: MobMothHead - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: head_m - -- type: humanoidBaseSprite - id: MobMothHeadMale - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: head_m - -- type: humanoidBaseSprite - id: MobMothHeadFemale - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: head_f - -- type: humanoidBaseSprite - id: MobMothTorso - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: torso_m - -- type: humanoidBaseSprite - id: MobMothTorsoMale - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: torso_m - -- type: humanoidBaseSprite - id: MobMothTorsoFemale - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: torso_f - -- type: humanoidBaseSprite - id: MobMothLLeg - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: l_leg - -- type: humanoidBaseSprite - id: MobMothLHand - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: l_hand - -- type: humanoidBaseSprite - id: MobMothLArm - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: l_arm - -- type: humanoidBaseSprite - id: MobMothLFoot - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: l_foot - -- type: humanoidBaseSprite - id: MobMothRLeg - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: r_leg - -- type: humanoidBaseSprite - id: MobMothRHand - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: r_hand - -- type: humanoidBaseSprite - id: MobMothRArm - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: r_arm - -- type: humanoidBaseSprite - id: MobMothRFoot - baseSprite: - sprite: Mobs/Species/Moth/parts.rsi - state: r_foot +## ADT Tweak - ЗАКОММЕНТИЛИ ДЛЯ ADT НИАН +# - type: species +# id: Moth +# name: species-name-moth +# roundStart: true +# prototype: MobMoth +# sprites: MobMothSprites +# defaultSkinTone: "#ffda93" +# markingLimits: MobMothMarkingLimits +# dollPrototype: MobMothDummy +# skinColoration: Hues +# maleFirstNames: names_moth_first_male +# femaleFirstNames: names_moth_first_female +# maleLastNames: names_moth_last # Corvax-LastnameGender +# femaleLastNames: names_moth_last # Corvax-LastnameGender + +# - type: speciesBaseSprites +# id: MobMothSprites +# sprites: +# Head: MobMothHead +# Snout: MobHumanoidAnyMarking +# Chest: MobMothTorso +# HeadTop: MobHumanoidAnyMarking +# HeadSide: MobHumanoidAnyMarking +# Tail: MobHumanoidAnyMarking +# Eyes: MobMothEyes +# LArm: MobMothLArm +# RArm: MobMothRArm +# LHand: MobMothLHand +# RHand: MobMothRHand +# LLeg: MobMothLLeg +# RLeg: MobMothRLeg +# LFoot: MobMothLFoot +# RFoot: MobMothRFoot + +# - type: humanoidBaseSprite +# id: MobMothEyes +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: eyes + +# - type: markingPoints +# id: MobMothMarkingLimits +# onlyWhitelisted: true +# points: +# Hair: +# points: 0 +# required: false +# FacialHair: +# points: 0 +# required: false +# Tail: +# points: 1 +# required: true +# defaultMarkings: [ MothWingsDefault ] +# Snout: +# points: 1 +# required: false +# HeadTop: +# points: 1 +# required: true +# defaultMarkings: [ MothAntennasDefault ] +# HeadSide: +# points: 1 +# required: false +# Head: +# points: 1 +# required: false +# Chest: +# points: 1 +# required: false +# Legs: +# points: 2 +# required: false +# Arms: +# points: 2 +# required: false + +# - type: humanoidBaseSprite +# id: MobMothHead +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: head_m + +# - type: humanoidBaseSprite +# id: MobMothHeadMale +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: head_m + +# - type: humanoidBaseSprite +# id: MobMothHeadFemale +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: head_f + +# - type: humanoidBaseSprite +# id: MobMothTorso +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: torso_m + +# - type: humanoidBaseSprite +# id: MobMothTorsoMale +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: torso_m + +# - type: humanoidBaseSprite +# id: MobMothTorsoFemale +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: torso_f + +# - type: humanoidBaseSprite +# id: MobMothLLeg +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: l_leg + +# - type: humanoidBaseSprite +# id: MobMothLHand +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: l_hand + +# - type: humanoidBaseSprite +# id: MobMothLArm +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: l_arm + +# - type: humanoidBaseSprite +# id: MobMothLFoot +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: l_foot + +# - type: humanoidBaseSprite +# id: MobMothRLeg +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: r_leg + +# - type: humanoidBaseSprite +# id: MobMothRHand +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: r_hand + +# - type: humanoidBaseSprite +# id: MobMothRArm +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: r_arm + +# - type: humanoidBaseSprite +# id: MobMothRFoot +# baseSprite: +# sprite: Mobs/Species/Moth/parts.rsi +# state: r_foot diff --git a/Resources/Prototypes/Species/species_weights.yml b/Resources/Prototypes/Species/species_weights.yml index 46b289ce6db..98273a96f23 100644 --- a/Resources/Prototypes/Species/species_weights.yml +++ b/Resources/Prototypes/Species/species_weights.yml @@ -8,3 +8,4 @@ #Vulpkanin: 4 # Corvax-Vulp VulpkaninSpecies: 4 Diona: 2 + TajaranSpecies: 3 \ No newline at end of file diff --git a/Resources/Prototypes/holidays.yml b/Resources/Prototypes/holidays.yml index 173999d156b..6d87e5fba48 100644 --- a/Resources/Prototypes/holidays.yml +++ b/Resources/Prototypes/holidays.yml @@ -265,11 +265,13 @@ !type:DayOfYear dayOfYear: 256 -- type: holiday - id: BisexualPrideDay - name: holiday-name-bisexual-pride-day - beginDay: 23 - beginMonth: September +# ADT-Holidays-Start +# - type: holiday +# id: BisexualPrideDay +# name: holiday-name-bisexual-pride-day +# beginDay: 23 +# beginMonth: September +# ADT-Holidays-End - type: holiday id: StupidQuestionsDay @@ -361,11 +363,13 @@ beginDay: 19 beginMonth: November -- type: holiday - id: TransgenderRemembranceDay - name: holiday-name-transgender-remembrance-day - beginDay: 20 - beginMonth: November +# ADT-Holidays-Start +# - type: holiday +# id: TransgenderRemembranceDay +# name: holiday-name-transgender-remembrance-day +# beginDay: 20 +# beginMonth: November +# ADT-Holidays-End - type: holiday id: SayingHelloDay @@ -438,9 +442,11 @@ shouldCelebrate: !type:FridayThirteenth { } -- type: holiday - id: PrideMonth - name: holiday-name-pride-month - beginDay: 1 - endDay: 31 - beginMonth: June +# ADT-Holidays-Start +# - type: holiday +# id: PrideMonth +# name: holiday-name-pride-month +# beginDay: 1 +# endDay: 31 +# beginMonth: June +# ADT-Holidays-End diff --git a/Resources/Textures/ADT/Clothing/Back/pathologist_backpack.rsi/equipped-BACKPACK.png b/Resources/Textures/ADT/Clothing/Back/pathologist_backpack.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..0f4ccfb1040 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Back/pathologist_backpack.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/ADT/Clothing/Back/pathologist_backpack.rsi/icon.png b/Resources/Textures/ADT/Clothing/Back/pathologist_backpack.rsi/icon.png new file mode 100644 index 00000000000..7124dcfd120 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Back/pathologist_backpack.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Clothing/Back/pathologist_backpack.rsi/inhand-left.png b/Resources/Textures/ADT/Clothing/Back/pathologist_backpack.rsi/inhand-left.png new file mode 100644 index 00000000000..24697435236 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Back/pathologist_backpack.rsi/inhand-left.png differ diff --git a/Resources/Textures/ADT/Clothing/Back/pathologist_backpack.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/Back/pathologist_backpack.rsi/inhand-right.png new file mode 100644 index 00000000000..0fcdbe84a0f Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Back/pathologist_backpack.rsi/inhand-right.png differ diff --git a/Resources/Textures/ADT/Clothing/Back/pathologist_backpack.rsi/meta.json b/Resources/Textures/ADT/Clothing/Back/pathologist_backpack.rsi/meta.json new file mode 100644 index 00000000000..880271d7b62 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Back/pathologist_backpack.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by JustKekc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Back/pathologist_duffel.rsi/equipped-BACKPACK.png b/Resources/Textures/ADT/Clothing/Back/pathologist_duffel.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..2e5790934ed Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Back/pathologist_duffel.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/ADT/Clothing/Back/pathologist_duffel.rsi/icon.png b/Resources/Textures/ADT/Clothing/Back/pathologist_duffel.rsi/icon.png new file mode 100644 index 00000000000..e6af1d9b3fd Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Back/pathologist_duffel.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Clothing/Back/pathologist_duffel.rsi/inhand-left.png b/Resources/Textures/ADT/Clothing/Back/pathologist_duffel.rsi/inhand-left.png new file mode 100644 index 00000000000..bea3102d2e8 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Back/pathologist_duffel.rsi/inhand-left.png differ diff --git a/Resources/Textures/ADT/Clothing/Back/pathologist_duffel.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/Back/pathologist_duffel.rsi/inhand-right.png new file mode 100644 index 00000000000..d6487b51d07 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Back/pathologist_duffel.rsi/inhand-right.png differ diff --git a/Resources/Textures/ADT/Clothing/Back/pathologist_duffel.rsi/meta.json b/Resources/Textures/ADT/Clothing/Back/pathologist_duffel.rsi/meta.json new file mode 100644 index 00000000000..880271d7b62 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Back/pathologist_duffel.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by JustKekc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Back/pathologist_satchel.rsi/equipped-BACKPACK.png b/Resources/Textures/ADT/Clothing/Back/pathologist_satchel.rsi/equipped-BACKPACK.png new file mode 100644 index 00000000000..994b3bed247 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Back/pathologist_satchel.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/ADT/Clothing/Back/pathologist_satchel.rsi/icon.png b/Resources/Textures/ADT/Clothing/Back/pathologist_satchel.rsi/icon.png new file mode 100644 index 00000000000..bf81ea59874 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Back/pathologist_satchel.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Clothing/Back/pathologist_satchel.rsi/inhand-left.png b/Resources/Textures/ADT/Clothing/Back/pathologist_satchel.rsi/inhand-left.png new file mode 100644 index 00000000000..bb089a8d440 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Back/pathologist_satchel.rsi/inhand-left.png differ diff --git a/Resources/Textures/ADT/Clothing/Back/pathologist_satchel.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/Back/pathologist_satchel.rsi/inhand-right.png new file mode 100644 index 00000000000..9b292a1d3dd Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Back/pathologist_satchel.rsi/inhand-right.png differ diff --git a/Resources/Textures/ADT/Clothing/Back/pathologist_satchel.rsi/meta.json b/Resources/Textures/ADT/Clothing/Back/pathologist_satchel.rsi/meta.json new file mode 100644 index 00000000000..880271d7b62 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Back/pathologist_satchel.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by JustKekc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..bb74c740bd9 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/icon-open.png b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/icon-open.png new file mode 100644 index 00000000000..4800a822f28 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/icon-open.png differ diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/icon.png b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/icon.png new file mode 100644 index 00000000000..4800a822f28 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/inhand-left.png b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/inhand-left.png new file mode 100644 index 00000000000..ee9dc3c79e8 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/inhand-left.png differ diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/inhand-right.png new file mode 100644 index 00000000000..04a7594670b Binary files /dev/null and b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/inhand-right.png differ diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/meta.json b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/meta.json new file mode 100644 index 00000000000..c83e07dd30d --- /dev/null +++ b/Resources/Textures/ADT/Clothing/OuterClothing/Coats/labcoat_pathologist.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by JustKekc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Misc/apron_pathologist.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/ADT/Clothing/OuterClothing/Misc/apron_pathologist.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 00000000000..035c7779872 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/OuterClothing/Misc/apron_pathologist.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Misc/apron_pathologist.rsi/icon.png b/Resources/Textures/ADT/Clothing/OuterClothing/Misc/apron_pathologist.rsi/icon.png new file mode 100644 index 00000000000..62551c1cb60 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/OuterClothing/Misc/apron_pathologist.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Misc/apron_pathologist.rsi/inhand-left.png b/Resources/Textures/ADT/Clothing/OuterClothing/Misc/apron_pathologist.rsi/inhand-left.png new file mode 100644 index 00000000000..5b73a5e4a36 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/OuterClothing/Misc/apron_pathologist.rsi/inhand-left.png differ diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Misc/apron_pathologist.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/OuterClothing/Misc/apron_pathologist.rsi/inhand-right.png new file mode 100644 index 00000000000..cc9646a3436 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/OuterClothing/Misc/apron_pathologist.rsi/inhand-right.png differ diff --git a/Resources/Textures/ADT/Clothing/OuterClothing/Misc/apron_pathologist.rsi/meta.json b/Resources/Textures/ADT/Clothing/OuterClothing/Misc/apron_pathologist.rsi/meta.json new file mode 100644 index 00000000000..1b9ee617e6b --- /dev/null +++ b/Resources/Textures/ADT/Clothing/OuterClothing/Misc/apron_pathologist.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by JustKekc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..c391e98c1b7 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi/icon.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi/icon.png new file mode 100644 index 00000000000..67d7e988e65 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi/inhand-left.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi/inhand-left.png new file mode 100644 index 00000000000..b34b9d66299 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi/inhand-left.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi/inhand-right.png new file mode 100644 index 00000000000..5ce111b9528 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi/inhand-right.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi/meta.json b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi/meta.json new file mode 100644 index 00000000000..92e0986e8f4 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by JustKekc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..bc05fc1d271 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi/icon.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi/icon.png new file mode 100644 index 00000000000..cfa499c5762 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi/inhand-left.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi/inhand-left.png new file mode 100644 index 00000000000..2c0cb120d3d Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi/inhand-left.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi/inhand-right.png new file mode 100644 index 00000000000..cf048071c4f Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi/inhand-right.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi/meta.json b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi/meta.json new file mode 100644 index 00000000000..92e0986e8f4 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Uniforms/Jumpskirt/pathologist_alt.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by JustKekc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..a961e51f887 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi/icon.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi/icon.png new file mode 100644 index 00000000000..35ff4730355 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi/inhand-left.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi/inhand-left.png new file mode 100644 index 00000000000..d319cd79ede Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi/inhand-left.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi/inhand-right.png new file mode 100644 index 00000000000..a2b4e3412b5 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi/inhand-right.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi/meta.json b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi/meta.json new file mode 100644 index 00000000000..92e0986e8f4 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by JustKekc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..9ce5825ec28 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi/icon.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi/icon.png new file mode 100644 index 00000000000..3c088b5e8f3 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi/inhand-left.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi/inhand-left.png new file mode 100644 index 00000000000..2e179b2bf02 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi/inhand-left.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi/inhand-right.png new file mode 100644 index 00000000000..f16c595398a Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi/inhand-right.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi/meta.json b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi/meta.json new file mode 100644 index 00000000000..92e0986e8f4 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuit/pathologist_alt.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by JustKekc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 00000000000..a9bcfd38b1d Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/icon.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/icon.png new file mode 100644 index 00000000000..09c98d746a7 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/inhand-left.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/inhand-left.png new file mode 100644 index 00000000000..e87a2b72740 Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/inhand-left.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/inhand-right.png b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/inhand-right.png new file mode 100644 index 00000000000..86fb676e73e Binary files /dev/null and b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/inhand-right.png differ diff --git a/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/meta.json b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/meta.json new file mode 100644 index 00000000000..0cb998035f3 --- /dev/null +++ b/Resources/Textures/ADT/Clothing/Uniforms/Jumpsuits/white-diplomat-suit.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:LunaLita#0840", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge-empty.png b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge-empty.png new file mode 100644 index 00000000000..69888305555 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge-empty.png differ diff --git a/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge0.png b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge0.png new file mode 100644 index 00000000000..e0604dae992 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge0.png differ diff --git a/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge1.png b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge1.png new file mode 100644 index 00000000000..fe810021484 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge1.png differ diff --git a/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge2.png b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge2.png new file mode 100644 index 00000000000..381741aba48 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge2.png differ diff --git a/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge3.png b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge3.png new file mode 100644 index 00000000000..467cb413322 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge3.png differ diff --git a/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge4.png b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge4.png new file mode 100644 index 00000000000..f5ac42a38a5 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/charge4.png differ diff --git a/Resources/Textures/ADT/Interface/Alerts/charge.rsi/meta.json b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/meta.json new file mode 100644 index 00000000000..f378fc6831c --- /dev/null +++ b/Resources/Textures/ADT/Interface/Alerts/charge.rsi/meta.json @@ -0,0 +1,35 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Original taken from Yogstation at https://github.com/yogstation13/Yogstation/commit/aaaed39293dd0b9edace6e2fe2017203e7352ef2, resprite by _kote", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "charge0" + }, + { + "name": "charge1", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "charge2" + }, + { + "name": "charge3" + }, + { + "name": "charge4" + }, + { + "name": "charge-empty" + } + ] +} diff --git a/Resources/Textures/ADT/Interface/Misc/job_icons.rsi/ADTPathologist.png b/Resources/Textures/ADT/Interface/Misc/job_icons.rsi/ADTPathologist.png new file mode 100644 index 00000000000..3e4b6a7d637 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Misc/job_icons.rsi/ADTPathologist.png differ diff --git a/Resources/Textures/ADT/Interface/Misc/job_icons.rsi/Magistrat.png b/Resources/Textures/ADT/Interface/Misc/job_icons.rsi/Magistrat.png new file mode 100644 index 00000000000..9addb688c06 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Misc/job_icons.rsi/Magistrat.png differ diff --git a/Resources/Textures/ADT/Interface/Misc/job_icons.rsi/meta.json b/Resources/Textures/ADT/Interface/Misc/job_icons.rsi/meta.json new file mode 100644 index 00000000000..a71d57c8075 --- /dev/null +++ b/Resources/Textures/ADT/Interface/Misc/job_icons.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "ADTPathologist icon made by JustKeks(github) | Taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi | Brigmedic icon made by PuroSlavKing (Github) | Zombie icon made by RamZ | Zookeper by netwy (discort) | Rev and Head Rev icon taken from https://tgstation13.org/wiki/HUD and edited by coolmankid12345 (Discord) | Mindshield icon taken from https://github.com/tgstation/tgstation/blob/master/icons/mob/huds/hud.dmi . Blueshield made by Tamioki.", + + "size": { + "x": 8, + "y": 8 + }, + "states": [ + { + "name": "Magistrat" + }, + { + "name": "ADTPathologist" + } + ] +} diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/AirAlarm.png b/Resources/Textures/ADT/Interface/Radial/RPD/AirAlarm.png new file mode 100644 index 00000000000..164470c9456 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/AirAlarm.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/AirSensor.png b/Resources/Textures/ADT/Interface/Radial/RPD/AirSensor.png new file mode 100644 index 00000000000..e4e4a96da3b Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/AirSensor.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/AtmosDeviceFanTiny.png b/Resources/Textures/ADT/Interface/Radial/RPD/AtmosDeviceFanTiny.png new file mode 100644 index 00000000000..350e7c48875 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/AtmosDeviceFanTiny.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/Devices.png b/Resources/Textures/ADT/Interface/Radial/RPD/Devices.png new file mode 100644 index 00000000000..164470c9456 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/Devices.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/DisposalBend.png b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalBend.png new file mode 100644 index 00000000000..83fb9d5c1c2 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalBend.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/DisposalJunction.png b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalJunction.png new file mode 100644 index 00000000000..9746cd2412b Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalJunction.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/DisposalJunctionFlipped.png b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalJunctionFlipped.png new file mode 100644 index 00000000000..aa037f3c87b Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalJunctionFlipped.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/DisposalPipe.png b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalPipe.png new file mode 100644 index 00000000000..319a13447ff Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalPipe.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/DisposalRouter.png b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalRouter.png new file mode 100644 index 00000000000..be01f941475 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalRouter.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/DisposalRouterFlipped.png b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalRouterFlipped.png new file mode 100644 index 00000000000..fce52d29e0a Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalRouterFlipped.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/DisposalSignalRouter.png b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalSignalRouter.png new file mode 100644 index 00000000000..14c9df5b001 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalSignalRouter.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/DisposalSignalRouterFlipped.png b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalSignalRouterFlipped.png new file mode 100644 index 00000000000..6b180bf44e2 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalSignalRouterFlipped.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/DisposalTagger.png b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalTagger.png new file mode 100644 index 00000000000..e372c16dbd3 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalTagger.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/DisposalTrunk.png b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalTrunk.png new file mode 100644 index 00000000000..210f85b5e22 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalTrunk.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/DisposalUnit.png b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalUnit.png new file mode 100644 index 00000000000..7e0117264d7 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalUnit.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/DisposalYJunction.png b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalYJunction.png new file mode 100644 index 00000000000..22ec30328de Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/DisposalYJunction.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/FireAlarm.png b/Resources/Textures/ADT/Interface/Radial/RPD/FireAlarm.png new file mode 100644 index 00000000000..948cfa3abc9 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/FireAlarm.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/FloorDrain.png b/Resources/Textures/ADT/Interface/Radial/RPD/FloorDrain.png new file mode 100644 index 00000000000..1c2b0e3f13c Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/FloorDrain.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasDualPortVentPump.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasDualPortVentPump.png new file mode 100644 index 00000000000..81e2f721fb0 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasDualPortVentPump.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasFilter.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasFilter.png new file mode 100644 index 00000000000..126d14fc735 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasFilter.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasFilterFlipped.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasFilterFlipped.png new file mode 100644 index 00000000000..7df0a6d97e5 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasFilterFlipped.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasMixer.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasMixer.png new file mode 100644 index 00000000000..5cea3fc80c2 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasMixer.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasMixerFlipped.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasMixerFlipped.png new file mode 100644 index 00000000000..f6c6354c9d7 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasMixerFlipped.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasOutletInjector.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasOutletInjector.png new file mode 100644 index 00000000000..2e7a0a2823f Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasOutletInjector.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasPassiveGate.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasPassiveGate.png new file mode 100644 index 00000000000..c61a037fecf Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasPassiveGate.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasPassiveVent.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasPassiveVent.png new file mode 100644 index 00000000000..e911c3bc266 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasPassiveVent.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasPipeBend.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasPipeBend.png new file mode 100644 index 00000000000..65a3a085e59 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasPipeBend.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasPipeFourway.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasPipeFourway.png new file mode 100644 index 00000000000..84f1f62d04b Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasPipeFourway.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasPipeHalf.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasPipeHalf.png new file mode 100644 index 00000000000..051c77f45df Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasPipeHalf.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasPipeStraight.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasPipeStraight.png new file mode 100644 index 00000000000..4c5669de43e Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasPipeStraight.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasPipeTJunction.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasPipeTJunction.png new file mode 100644 index 00000000000..a5e6f3c417c Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasPipeTJunction.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasPort.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasPort.png new file mode 100644 index 00000000000..e69c00d19cf Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasPort.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasPressurePump.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasPressurePump.png new file mode 100644 index 00000000000..39f271c959f Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasPressurePump.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasValve.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasValve.png new file mode 100644 index 00000000000..e27beb4efe6 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasValve.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasVentPump.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasVentPump.png new file mode 100644 index 00000000000..81e2f721fb0 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasVentPump.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasVentScrubber.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasVentScrubber.png new file mode 100644 index 00000000000..c7ed5cc06dd Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasVentScrubber.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/GasVolumePump.png b/Resources/Textures/ADT/Interface/Radial/RPD/GasVolumePump.png new file mode 100644 index 00000000000..2b511b9b494 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/GasVolumePump.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/Gaspipes.png b/Resources/Textures/ADT/Interface/Radial/RPD/Gaspipes.png new file mode 100644 index 00000000000..84f1f62d04b Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/Gaspipes.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/HeatExchanger.png b/Resources/Textures/ADT/Interface/Radial/RPD/HeatExchanger.png new file mode 100644 index 00000000000..ca1353150f7 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/HeatExchanger.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/MailingUnit.png b/Resources/Textures/ADT/Interface/Radial/RPD/MailingUnit.png new file mode 100644 index 00000000000..7686de99379 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/MailingUnit.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/PressureControlledValve.png b/Resources/Textures/ADT/Interface/Radial/RPD/PressureControlledValve.png new file mode 100644 index 00000000000..19fd0d72635 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/PressureControlledValve.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/SignalControlledValve.png b/Resources/Textures/ADT/Interface/Radial/RPD/SignalControlledValve.png new file mode 100644 index 00000000000..c8b036ec370 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/SignalControlledValve.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/RPD/deconstruct.png b/Resources/Textures/ADT/Interface/Radial/RPD/deconstruct.png new file mode 100644 index 00000000000..ca9548e0cf9 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/RPD/deconstruct.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/back_hover.png b/Resources/Textures/ADT/Interface/Radial/back_hover.png new file mode 100644 index 00000000000..7378a60fef4 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/back_hover.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/back_normal.png b/Resources/Textures/ADT/Interface/Radial/back_normal.png new file mode 100644 index 00000000000..2c4a20048c6 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/back_normal.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/button_hover.png b/Resources/Textures/ADT/Interface/Radial/button_hover.png new file mode 100644 index 00000000000..49885a26c37 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/button_hover.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/button_normal.png b/Resources/Textures/ADT/Interface/Radial/button_normal.png new file mode 100644 index 00000000000..66dc2777099 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/button_normal.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/close_hover.png b/Resources/Textures/ADT/Interface/Radial/close_hover.png new file mode 100644 index 00000000000..873d20961d4 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/close_hover.png differ diff --git a/Resources/Textures/ADT/Interface/Radial/close_normal.png b/Resources/Textures/ADT/Interface/Radial/close_normal.png new file mode 100644 index 00000000000..99417f28295 Binary files /dev/null and b/Resources/Textures/ADT/Interface/Radial/close_normal.png differ diff --git a/Resources/Textures/ADT/Markers/jobs.rsi/green.png b/Resources/Textures/ADT/Markers/jobs.rsi/green.png new file mode 100644 index 00000000000..0becfdb0c54 Binary files /dev/null and b/Resources/Textures/ADT/Markers/jobs.rsi/green.png differ diff --git a/Resources/Textures/ADT/Markers/jobs.rsi/iaa.png b/Resources/Textures/ADT/Markers/jobs.rsi/iaa.png new file mode 100644 index 00000000000..f93b5d50349 Binary files /dev/null and b/Resources/Textures/ADT/Markers/jobs.rsi/iaa.png differ diff --git a/Resources/Textures/ADT/Markers/jobs.rsi/investigator.png b/Resources/Textures/ADT/Markers/jobs.rsi/investigator.png new file mode 100644 index 00000000000..998804ffc71 Binary files /dev/null and b/Resources/Textures/ADT/Markers/jobs.rsi/investigator.png differ diff --git a/Resources/Textures/ADT/Markers/jobs.rsi/magistrat.png b/Resources/Textures/ADT/Markers/jobs.rsi/magistrat.png new file mode 100644 index 00000000000..1e86415378c Binary files /dev/null and b/Resources/Textures/ADT/Markers/jobs.rsi/magistrat.png differ diff --git a/Resources/Textures/ADT/Markers/jobs.rsi/meta.json b/Resources/Textures/ADT/Markers/jobs.rsi/meta.json new file mode 100644 index 00000000000..40d0eda2dcf --- /dev/null +++ b/Resources/Textures/ADT/Markers/jobs.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by Adventure Time, justkekc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "green" + }, + { + "name": "investigator" + }, + { + "name": "magistrat" + }, + { + "name": "iaa" + }, + { + "name": "urist" + }, + { + "name": "pathologist" + } + ] +} diff --git a/Resources/Textures/ADT/Markers/jobs.rsi/pathologist.png b/Resources/Textures/ADT/Markers/jobs.rsi/pathologist.png new file mode 100644 index 00000000000..1da905aca17 Binary files /dev/null and b/Resources/Textures/ADT/Markers/jobs.rsi/pathologist.png differ diff --git a/Resources/Textures/ADT/Markers/jobs.rsi/urist.png b/Resources/Textures/ADT/Markers/jobs.rsi/urist.png new file mode 100644 index 00000000000..b113c2c99e8 Binary files /dev/null and b/Resources/Textures/ADT/Markers/jobs.rsi/urist.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi/belly1.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi/belly1.png new file mode 100644 index 00000000000..fbe18ccfd93 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi/belly1.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi/belly2.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi/belly2.png new file mode 100644 index 00000000000..a8615ab1e58 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi/belly2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi/belly3.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi/belly3.png new file mode 100644 index 00000000000..2c00e4d77a9 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi/belly3.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi/chest.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi/chest.png new file mode 100644 index 00000000000..1c1aa0f66ab Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi/chest.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi/meta.json new file mode 100644 index 00000000000..1aecf9ccbbb --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_chest.rsi/meta.json @@ -0,0 +1,15 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { "name": "belly1", "directions": 4 }, + { "name": "belly2", "directions": 4 }, + { "name": "belly3", "directions": 4 }, + { "name": "chest", "directions": 4 } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/beard.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/beard.png new file mode 100644 index 00000000000..2e43e850def Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/beard.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/cheeks.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/cheeks.png new file mode 100644 index 00000000000..1d8a0d7eb04 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/cheeks.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/meta.json new file mode 100644 index 00000000000..c3714f9977e --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/meta.json @@ -0,0 +1,16 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "JustKekc & moroz_3", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { "name": "beard", "directions": 4 }, + { "name": "cheeks", "directions": 4 }, + { "name": "mustache", "directions": 4 }, + { "name": "mustache_2", "directions": 4 }, + { "name": "mustache_3", "directions": 4 } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/mustache.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/mustache.png new file mode 100644 index 00000000000..9b91d8588d6 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/mustache.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/mustache_2.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/mustache_2.png new file mode 100644 index 00000000000..2e2fdec389d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/mustache_2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/mustache_3.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/mustache_3.png new file mode 100644 index 00000000000..73a14e66fbb Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_facial_hairs.rsi/mustache_3.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/bangs.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/bangs.png new file mode 100644 index 00000000000..f93878742c5 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/bangs.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/bedhead.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/bedhead.png new file mode 100644 index 00000000000..dec9231b280 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/bedhead.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/bob.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/bob.png new file mode 100644 index 00000000000..5006da1c6bd Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/bob.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/braid.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/braid.png new file mode 100644 index 00000000000..b220e6c1630 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/braid.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/clean.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/clean.png new file mode 100644 index 00000000000..11c1f3e0611 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/clean.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/curly.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/curly.png new file mode 100644 index 00000000000..bd741017dda Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/curly.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/eyebrows.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/eyebrows.png new file mode 100644 index 00000000000..1fce2638c1b Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/eyebrows.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/fingerwave.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/fingerwave.png new file mode 100644 index 00000000000..dd72d3ecac1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/fingerwave.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/ladiesretro.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/ladiesretro.png new file mode 100644 index 00000000000..4501867f57d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/ladiesretro.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/long.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/long.png new file mode 100644 index 00000000000..15266d8d514 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/long.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/messy.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/messy.png new file mode 100644 index 00000000000..aa2c581c379 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/messy.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/meta.json new file mode 100644 index 00000000000..0a9ede3061a --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/meta.json @@ -0,0 +1,31 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { "name": "bangs", "directions": 4 }, + { "name": "bedhead", "directions": 4 }, + { "name": "bob", "directions": 4 }, + { "name": "braid", "directions": 4 }, + { "name": "clean", "directions": 4 }, + { "name": "curly", "directions": 4 }, + { "name": "fingerwave", "directions": 4 }, + { "name": "ladiesretro", "directions": 4 }, + { "name": "long", "directions": 4 }, + { "name": "messy", "directions": 4 }, + { "name": "mohawk", "directions": 4 }, + { "name": "plait", "directions": 4 }, + { "name": "rattail", "directions": 4 }, + { "name": "shaggy", "directions": 4 }, + { "name": "spikey", "directions": 4 }, + { "name": "straight", "directions": 4 }, + { "name": "eyebrows", "directions": 4 }, + { "name": "pigtail", "directions": 4 }, + { "name": "ponytail", "directions": 4 }, + { "name": "victory", "directions": 4 } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/mohawk.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/mohawk.png new file mode 100644 index 00000000000..852a5503ebb Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/mohawk.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/pigtail.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/pigtail.png new file mode 100644 index 00000000000..8327f98e0b6 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/pigtail.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/plait.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/plait.png new file mode 100644 index 00000000000..dcd493f0796 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/plait.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/ponytail.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/ponytail.png new file mode 100644 index 00000000000..47a28d21a48 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/ponytail.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/rattail.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/rattail.png new file mode 100644 index 00000000000..4caf5d636b9 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/rattail.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/shaggy.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/shaggy.png new file mode 100644 index 00000000000..5dea7108d87 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/shaggy.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/spikey.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/spikey.png new file mode 100644 index 00000000000..652fc8d77ca Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/spikey.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/straight.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/straight.png new file mode 100644 index 00000000000..8a5b8aa4c08 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/straight.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/victory.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/victory.png new file mode 100644 index 00000000000..88ba56026e2 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_hairs.rsi/victory.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/eye_stripes_head.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/eye_stripes_head.png new file mode 100644 index 00000000000..c4af78a13d4 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/eye_stripes_head.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/inears.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/inears.png new file mode 100644 index 00000000000..1c61cff776a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/inears.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/mane_head.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/mane_head.png new file mode 100644 index 00000000000..7879b2b016f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/mane_head.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/meta.json new file mode 100644 index 00000000000..34ec36d604e --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { "name": "inears", "directions": 4 }, + { "name": "muzzle", "directions": 4 }, + { "name": "muzzleinears", "directions": 4 }, + { "name": "nose", "directions": 4 }, + { "name": "outears", "directions": 4 }, + { "name": "patch_SPONSOR_ONLY", "directions": 4 }, + { "name": "tiger_face", "directions": 4 }, + { "name": "tiger_head", "directions": 4 }, + { "name": "eye_stripes_head", "directions": 4 }, + { "name": "star_head", "directions": 4 }, + { "name": "mane_head", "directions": 4 }, + { "name": "raccoon-head", "directions": 4 } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/muzzle.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/muzzle.png new file mode 100644 index 00000000000..2df122a2c1c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/muzzle.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/muzzleinears.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/muzzleinears.png new file mode 100644 index 00000000000..56df08d88cf Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/muzzleinears.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/nose.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/nose.png new file mode 100644 index 00000000000..1b315d6cdcb Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/nose.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/outears.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/outears.png new file mode 100644 index 00000000000..ecdc3d2dc08 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/outears.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/patch_SPONSOR_ONLY.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/patch_SPONSOR_ONLY.png new file mode 100644 index 00000000000..3a50a4b406d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/patch_SPONSOR_ONLY.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/raccoon-head.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/raccoon-head.png new file mode 100644 index 00000000000..a74cbdb9c03 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/raccoon-head.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/star_head.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/star_head.png new file mode 100644 index 00000000000..870aadb0d5c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/star_head.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/tiger_face.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/tiger_face.png new file mode 100644 index 00000000000..100be0b7012 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/tiger_face.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/tiger_head.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/tiger_head.png new file mode 100644 index 00000000000..5730fc5bd92 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_head.rsi/tiger_head.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/blots_body.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/blots_body.png new file mode 100644 index 00000000000..74ecbb14202 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/blots_body.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/meta.json new file mode 100644 index 00000000000..b378d9e5384 --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/meta.json @@ -0,0 +1,16 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "JustKekc & moroz_3", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { "name": "stripes_body", "directions": 4 }, + { "name": "skeleton_body", "directions": 4 }, + { "name": "patch", "directions": 4 }, + { "name": "blots_body", "directions": 4 }, + { "name": "points", "directions": 4 } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/patch.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/patch.png new file mode 100644 index 00000000000..2685f5e8f94 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/patch.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/points.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/points.png new file mode 100644 index 00000000000..02d96d38022 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/points.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/skeleton_body.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/skeleton_body.png new file mode 100644 index 00000000000..fe745f8c307 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/skeleton_body.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/stripes_body.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/stripes_body.png new file mode 100644 index 00000000000..78266bf3e58 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_overlay.rsi/stripes_body.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_LArm.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_LArm.png new file mode 100644 index 00000000000..29aee9511ef Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_LArm.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_LHand.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_LHand.png new file mode 100644 index 00000000000..78e0b4d55cb Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_LHand.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_LLeg.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_LLeg.png new file mode 100644 index 00000000000..ee58994e29d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_LLeg.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_RArm.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_RArm.png new file mode 100644 index 00000000000..e2c4944914d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_RArm.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_RHand.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_RHand.png new file mode 100644 index 00000000000..c2608dce1e7 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_RHand.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_RLeg.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_RLeg.png new file mode 100644 index 00000000000..2c813edba83 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/gradient_RLeg.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/meta.json new file mode 100644 index 00000000000..4bd468badb2 --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_parts.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "JustKekc & moroz_3", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { "name": "gradient_LArm", "directions": 4 }, + { "name": "gradient_RArm", "directions": 4 }, + { "name": "gradient_LHand", "directions": 4 }, + { "name": "gradient_RHand", "directions": 4 }, + { "name": "gradient_LLeg", "directions": 4 }, + { "name": "gradient_RLeg", "directions": 4 } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/meta.json new file mode 100644 index 00000000000..cea988f2e80 --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/meta.json @@ -0,0 +1,81 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "wingler_1", + "directions": 4, + "delays": [ + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15] + ] + }, + { + "name": "wingler_2", + "directions": 4, + "delays": [ + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15] + ] + }, + { + "name": "wingler_3", + "directions": 4, + "delays": [ + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15] + ] + }, + { + "name": "tail_ring", + "directions": 4, + "delays": [ + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15] + ] + }, + { + "name": "tail_skeleton", + "directions": 4, + "delays": [ + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15] + ] + }, + { + "name": "tail_fluffy", + "directions": 4, + "delays": [ + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15] + ] + }, + { + "name": "tail_tip", + "directions": 4, + "delays": [ + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15] + ] + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/tail_fluffy.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/tail_fluffy.png new file mode 100644 index 00000000000..20ea8605666 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/tail_fluffy.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/tail_ring.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/tail_ring.png new file mode 100644 index 00000000000..c159eed2122 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/tail_ring.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/tail_skeleton.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/tail_skeleton.png new file mode 100644 index 00000000000..59044e9b856 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/tail_skeleton.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/tail_tip.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/tail_tip.png new file mode 100644 index 00000000000..131e89032d7 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/tail_tip.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/wingler_1.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/wingler_1.png new file mode 100644 index 00000000000..deec37f19aa Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/wingler_1.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/wingler_2.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/wingler_2.png new file mode 100644 index 00000000000..c933f3e69ff Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/wingler_2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/wingler_3.png b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/wingler_3.png new file mode 100644 index 00000000000..445b894f6a5 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Tajaran/tajaran_tail.rsi/wingler_3.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/altpointsfadebelly.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/altpointsfadebelly.png new file mode 100644 index 00000000000..1de1aa8f4ea Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/altpointsfadebelly.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/bellycrest.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/bellycrest.png new file mode 100644 index 00000000000..4a1916b4c25 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/bellycrest.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/crestpoints.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/crestpoints.png new file mode 100644 index 00000000000..dd6b1e361e1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/crestpoints.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/foxbelly.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/foxbelly.png new file mode 100644 index 00000000000..6ade4bd969f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/foxbelly.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/fullbelly.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/fullbelly.png new file mode 100644 index 00000000000..5dc2e4550c1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/fullbelly.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/meta.json new file mode 100644 index 00000000000..1e89d70d419 --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/meta.json @@ -0,0 +1,43 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Make by ADT", + "states": [ + { + "name": "altpointsfadebelly", + "directions": 4 + }, + { + "name": "bellycrest", + "directions": 4 + }, + { + "name": "crestpoints", + "directions": 4 + }, + { + "name": "foxbelly", + "directions": 4 + }, + { + "name": "fullbelly", + "directions": 4 + }, + { + "name": "pointsfade", + "directions": 4 + }, + { + "name": "pointsfadebelly", + "directions": 4 + }, + { + "name": "sharppoints", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/pointsfade.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/pointsfade.png new file mode 100644 index 00000000000..6bb1b28a539 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/pointsfade.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/pointsfadebelly.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/pointsfadebelly.png new file mode 100644 index 00000000000..c7ac5f63410 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/pointsfadebelly.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/sharppoints.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/sharppoints.png new file mode 100644 index 00000000000..6199ab98c7e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_body.rsi/sharppoints.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/abhara.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/abhara.png new file mode 100644 index 00000000000..eeac334c7cd Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/abhara.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/anite.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/anite.png new file mode 100644 index 00000000000..6f064581ec3 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/anite.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/apollo.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/apollo.png new file mode 100644 index 00000000000..d0f63bb7596 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/apollo.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/belle.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/belle.png new file mode 100644 index 00000000000..1ab0b587636 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/belle.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/braided.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/braided.png new file mode 100644 index 00000000000..33d5098418d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/braided.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/bun.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/bun.png new file mode 100644 index 00000000000..52c48050633 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/bun.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/curl.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/curl.png new file mode 100644 index 00000000000..8bd8b1ae613 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/curl.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/hair_sponsor.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/hair_sponsor.png new file mode 100644 index 00000000000..f003864310f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/hair_sponsor.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/hawk.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/hawk.png new file mode 100644 index 00000000000..db06aaf4806 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/hawk.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/jagged_sponsor_hair.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/jagged_sponsor_hair.png new file mode 100644 index 00000000000..c633e3919fe Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/jagged_sponsor_hair.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/kajam1.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/kajam1.png new file mode 100644 index 00000000000..6355309eadc Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/kajam1.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/kajam2.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/kajam2.png new file mode 100644 index 00000000000..0d55d90c387 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/kajam2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/keid.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/keid.png new file mode 100644 index 00000000000..4cda7a4ad92 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/keid.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/kleeia.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/kleeia.png new file mode 100644 index 00000000000..724ea4d1b4b Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/kleeia.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/meta.json new file mode 100644 index 00000000000..7ddc2ebe4d2 --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/meta.json @@ -0,0 +1,95 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Make by ADT", + "states": [ + { + "name": "abhara", + "directions": 4 + }, + { + "name": "anite", + "directions": 4 + }, + { + "name": "apollo", + "directions": 4 + }, + { + "name": "belle", + "directions": 4 + }, + { + "name": "braided", + "directions": 4 + }, + { + "name": "bun", + "directions": 4 + }, + { + "name": "curl", + "directions": 4 + }, + { + "name": "hair_sponsor", + "directions": 4 + }, + { + "name": "hawk", + "directions": 4 + }, + { + "name": "jagged_sponsor_hair", + "directions": 4 + }, + { + "name": "kajam1", + "directions": 4 + }, + { + "name": "kajam2", + "directions": 4 + }, + { + "name": "keid", + "directions": 4 + }, + { + "name": "kleeia", + "directions": 4 + }, + { + "name": "mizar", + "directions": 4 + }, + { + "name": "raine", + "directions": 4 + }, + { + "name": "rough", + "directions": 4 + }, + { + "name": "short", + "directions": 4 + }, + { + "name": "short2", + "directions": 4 + }, + { + "name": "spike", + "directions": 4 + }, + { + "name": "ykiteru_sponsor_hair", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/mizar.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/mizar.png new file mode 100644 index 00000000000..b7bc0299854 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/mizar.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/raine.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/raine.png new file mode 100644 index 00000000000..344f19d15bd Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/raine.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/rough.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/rough.png new file mode 100644 index 00000000000..fd3be05af70 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/rough.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/short.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/short.png new file mode 100644 index 00000000000..f7dcc35baca Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/short.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/short2.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/short2.png new file mode 100644 index 00000000000..4c7e662e77d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/short2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/spike.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/spike.png new file mode 100644 index 00000000000..a4fc8de870c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/spike.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/ykiteru_sponsor_hair.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/ykiteru_sponsor_hair.png new file mode 100644 index 00000000000..b46e822a792 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_hair.rsi/ykiteru_sponsor_hair.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/ear.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/ear.png new file mode 100644 index 00000000000..f739cc390df Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/ear.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/ear_back.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/ear_back.png new file mode 100644 index 00000000000..235de6cb533 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/ear_back.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/meta.json new file mode 100644 index 00000000000..a7120c6e84b --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/meta.json @@ -0,0 +1,51 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Make by ADT", + "states": [ + { + "name": "ear", + "directions": 4 + }, + { + "name": "ear_back", + "directions": 4 + }, + { + "name": "muzzle", + "directions": 4 + }, + { + "name": "muzzle_ear", + "directions": 4 + }, + { + "name": "nose", + "directions": 4 + }, + { + "name": "points_fade", + "directions": 4 + }, + { + "name": "points_sharp", + "directions": 4 + }, + { + "name": "tiger_face", + "directions": 4 + }, + { + "name": "tiger_head", + "directions": 4 + }, + { + "name": "skull_sponsor", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/muzzle.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/muzzle.png new file mode 100644 index 00000000000..ba8ff08722d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/muzzle.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/muzzle_ear.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/muzzle_ear.png new file mode 100644 index 00000000000..57366c56769 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/muzzle_ear.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/nose.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/nose.png new file mode 100644 index 00000000000..9d72fc81408 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/nose.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/points_fade.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/points_fade.png new file mode 100644 index 00000000000..d13b109a517 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/points_fade.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/points_sharp.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/points_sharp.png new file mode 100644 index 00000000000..586cd02e1d7 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/points_sharp.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/skull_sponsor.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/skull_sponsor.png new file mode 100644 index 00000000000..47bf2348fcf Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/skull_sponsor.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/tiger_face.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/tiger_face.png new file mode 100644 index 00000000000..4525287edf3 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/tiger_face.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/tiger_head.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/tiger_head.png new file mode 100644 index 00000000000..698032f6583 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_head.rsi/tiger_head.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi/meta.json new file mode 100644 index 00000000000..9ffb6fbf125 --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi/meta.json @@ -0,0 +1,45 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Make by ADT", + "states": [ + { + "name": "tail3", + "directions": 4 + }, + { + "name": "tail1", + "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, 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, 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": "tail2", + "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, 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, 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": "tail_m", + "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, 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, 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/ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi/tail1.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi/tail1.png new file mode 100644 index 00000000000..7e1ed562b98 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi/tail1.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi/tail2.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi/tail2.png new file mode 100644 index 00000000000..092347aa1df Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi/tail2.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi/tail3.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi/tail3.png new file mode 100644 index 00000000000..59d1b45ecda Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi/tail3.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi/tail_m.png b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi/tail_m.png new file mode 100644 index 00000000000..0254becd1c2 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/Vulpkanin/vulpkanin_tail.rsi/tail_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_antlers.png b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_antlers.png new file mode 100644 index 00000000000..125f9cf913e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_antlers.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_crowned.png b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_crowned.png new file mode 100644 index 00000000000..2fd0cdd06d2 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_crowned.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_cyberhead.png b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_cyberhead.png new file mode 100644 index 00000000000..c3d1111199e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_cyberhead.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_droneeyes.png b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_droneeyes.png new file mode 100644 index 00000000000..5b2a67a813a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_droneeyes.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_light.png b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_light.png new file mode 100644 index 00000000000..91f5fd25e78 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_light.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_lightb.png b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_lightb.png new file mode 100644 index 00000000000..bc1133d8d3c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_lightb.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_sidelights.png b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_sidelights.png new file mode 100644 index 00000000000..7a1c31e45e4 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_sidelights.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_tesla.png b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_tesla.png new file mode 100644 index 00000000000..98cb10d3cbc Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_tesla.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_towers.png b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_towers.png new file mode 100644 index 00000000000..f971130b8e4 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_towers.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_tv.png b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_tv.png new file mode 100644 index 00000000000..ae53b4762ed Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/ipc_antenna_tv.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/meta.json new file mode 100644 index 00000000000..69316d7e57c --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/ipc_antenna.rsi/meta.json @@ -0,0 +1,107 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Yogstation at https://github.com/yogstation13/Yogstation/commit/9c046aa5327c71f9e93e45a34283b3a4aff58bd1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "ipc_antenna_tv", + "directions": 4 + }, + { + "name": "ipc_antenna_tesla", + "directions": 4, + "delays": [ + [ + 4, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 4, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 4, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 4, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_antenna_lightb", + "directions": 4, + "delays": [ + [ + 4, + 0.5, + 0.1, + 0.5 + ], + [ + 4, + 0.5, + 0.1, + 0.5 + ], + [ + 4, + 0.5, + 0.1, + 0.5 + ], + [ + 4, + 0.5, + 0.1, + 0.5 + ] + ] + }, + { + "name": "ipc_antenna_light", + "directions": 4 + }, + { + "name": "ipc_antenna_cyberhead", + "directions": 4 + }, + { + "name": "ipc_antenna_sidelights", + "directions": 4 + }, + { + "name": "ipc_antenna_antlers", + "directions": 4 + }, + { + "name": "ipc_antenna_droneeyes", + "directions": 4 + }, + { + "name": "ipc_antenna_crowned", + "directions": 4 + }, + { + "name": "ipc_antenna_towers", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_blank.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_blank.png new file mode 100644 index 00000000000..4361a36c1ed Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_blank.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_blue.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_blue.png new file mode 100644 index 00000000000..f1568848807 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_blue.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_breakout.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_breakout.png new file mode 100644 index 00000000000..f39f2c643b9 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_breakout.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_bsod.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_bsod.png new file mode 100644 index 00000000000..7d7a8efb62e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_bsod.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_console.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_console.png new file mode 100644 index 00000000000..dfed44e10cd Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_console.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_ecgwave.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_ecgwave.png new file mode 100644 index 00000000000..2d2c405734d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_ecgwave.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_eight.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_eight.png new file mode 100644 index 00000000000..80a5e37dd6a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_eight.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_exclaim.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_exclaim.png new file mode 100644 index 00000000000..e280615e504 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_exclaim.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_eyes.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_eyes.png new file mode 100644 index 00000000000..42ee79361b1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_eyes.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_eyesangry.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_eyesangry.png new file mode 100644 index 00000000000..8a7e45c7e8f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_eyesangry.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_eyestall.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_eyestall.png new file mode 100644 index 00000000000..d8c03fa3240 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_eyestall.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_frown.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_frown.png new file mode 100644 index 00000000000..f297c401a10 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_frown.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_glider.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_glider.png new file mode 100644 index 00000000000..afd5349ee6b Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_glider.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_goggles.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_goggles.png new file mode 100644 index 00000000000..422a603cc7c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_goggles.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_heart.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_heart.png new file mode 100644 index 00000000000..6bfe07e397a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_heart.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_l.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_l.png new file mode 100644 index 00000000000..902845f11fc Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_l.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_loading.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_loading.png new file mode 100644 index 00000000000..9a1f705a0d7 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_loading.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_monoeye.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_monoeye.png new file mode 100644 index 00000000000..4e5056528d9 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_monoeye.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_nature.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_nature.png new file mode 100644 index 00000000000..6425fe2b517 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_nature.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_orange.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_orange.png new file mode 100644 index 00000000000..f4c98278e1d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_orange.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_pink.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_pink.png new file mode 100644 index 00000000000..dc50eb693db Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_pink.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_question.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_question.png new file mode 100644 index 00000000000..f90dcc94abb Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_question.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_rainbowdiag.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_rainbowdiag.png new file mode 100644 index 00000000000..37274191d37 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_rainbowdiag.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_rainbowhoriz.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_rainbowhoriz.png new file mode 100644 index 00000000000..9b6192dd6dc Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_rainbowhoriz.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_redtext.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_redtext.png new file mode 100644 index 00000000000..c180b8e674e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_redtext.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_rgb.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_rgb.png new file mode 100644 index 00000000000..36f48e75d7a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_rgb.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_ring.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_ring.png new file mode 100644 index 00000000000..e5454221602 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_ring.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_scroll.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_scroll.png new file mode 100644 index 00000000000..cbf936810a1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_scroll.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_shower.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_shower.png new file mode 100644 index 00000000000..1546c8dbf13 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_shower.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_sinewave.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_sinewave.png new file mode 100644 index 00000000000..c976f421791 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_sinewave.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_smile.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_smile.png new file mode 100644 index 00000000000..7ecd324e898 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_smile.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_squarewave.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_squarewave.png new file mode 100644 index 00000000000..04211f366e8 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_squarewave.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_stars.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_stars.png new file mode 100644 index 00000000000..8feda85c428 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_stars.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_static.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_static.png new file mode 100644 index 00000000000..08e96db1508 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_static.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_tetris.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_tetris.png new file mode 100644 index 00000000000..d4ea13ea39b Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_tetris.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_textdrop.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_textdrop.png new file mode 100644 index 00000000000..c71ba6d24e9 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_textdrop.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_tv.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_tv.png new file mode 100644 index 00000000000..5b9b25dcd9a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_tv.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_windowsxp.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_windowsxp.png new file mode 100644 index 00000000000..595ab8444b2 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_windowsxp.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_yellow.png b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_yellow.png new file mode 100644 index 00000000000..bbf4c92cb32 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/ipc_screen_yellow.png differ diff --git a/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/meta.json b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/meta.json new file mode 100644 index 00000000000..b6314cde9c2 --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Customization/ipc_screens.rsi/meta.json @@ -0,0 +1,1363 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Yogstation at https://github.com/yogstation13/Yogstation/commit/9c046aa5327c71f9e93e45a34283b3a4aff58bd1", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "ipc_screen_static", + "directions": 4, + "delays": [ + [ + 0.15, + 0.15, + 0.15, + 0.15 + ], + [ + 0.15, + 0.15, + 0.15, + 0.15 + ], + [ + 0.15, + 0.15, + 0.15, + 0.15 + ], + [ + 0.15, + 0.15, + 0.15, + 0.15 + ] + ] + }, + { + "name": "ipc_screen_blue", + "directions": 4, + "delays": [ + [ + 2.4, + 2.4, + 2.4, + 2.4, + 2.4, + 2.4 + ], + [ + 2.4, + 2.4, + 2.4, + 2.4, + 2.4, + 2.4 + ], + [ + 2.4, + 2.4, + 2.4, + 2.4, + 2.4, + 2.4 + ], + [ + 2.4, + 2.4, + 2.4, + 2.4, + 2.4, + 2.4 + ] + ] + }, + { + "name": "ipc_screen_breakout", + "directions": 4, + "delays": [ + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ] + ] + }, + { + "name": "ipc_screen_eight", + "directions": 4, + "delays": [ + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ] + ] + }, + { + "name": "ipc_screen_goggles", + "directions": 4, + "delays": [ + [ + 0.2, + 4 + ], + [ + 0.2, + 4 + ], + [ + 0.2, + 4 + ], + [ + 0.2, + 4 + ] + ] + }, + { + "name": "ipc_screen_exclaim", + "directions": 4, + "delays": [ + [ + 0.6, + 0.6 + ], + [ + 0.6, + 0.6 + ], + [ + 0.6, + 0.6 + ], + [ + 0.6, + 0.6 + ] + ] + }, + { + "name": "ipc_screen_heart", + "directions": 4, + "delays": [ + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ] + ] + }, + { + "name": "ipc_screen_monoeye", + "directions": 4, + "delays": [ + [ + 4, + 0.1, + 0.1, + 0.1 + ], + [ + 4, + 0.1, + 0.1, + 0.1 + ], + [ + 4, + 0.1, + 0.1, + 0.1 + ], + [ + 4, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_nature", + "directions": 4, + "delays": [ + [ + 10, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 10, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 10, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 10, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 10, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 10, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 10, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 10, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_orange", + "directions": 4, + "delays": [ + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ] + ] + }, + { + "name": "ipc_screen_pink", + "directions": 4, + "delays": [ + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ] + ] + }, + { + "name": "ipc_screen_question", + "directions": 4, + "delays": [ + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ], + [ + 0.8, + 0.8 + ] + ] + }, + { + "name": "ipc_screen_shower", + "directions": 4, + "delays": [ + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ], + [ + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8, + 0.8 + ] + ] + }, + { + "name": "ipc_screen_yellow", + "directions": 4, + "delays": [ + [ + 2, + 2 + ], + [ + 2, + 2 + ], + [ + 2, + 2 + ], + [ + 2, + 2 + ] + ] + }, + { + "name": "ipc_screen_scroll", + "directions": 4, + "delays": [ + [ + 0.125, + 0.125, + 0.125, + 0.125, + 0.125 + ], + [ + 0.125, + 0.125, + 0.125, + 0.125, + 0.125 + ], + [ + 0.125, + 0.125, + 0.125, + 0.125, + 0.125 + ], + [ + 0.125, + 0.125, + 0.125, + 0.125, + 0.125 + ] + ] + }, + { + "name": "ipc_screen_console", + "directions": 4, + "delays": [ + [ + 1, + 1 + ], + [ + 1, + 1 + ], + [ + 1, + 1 + ], + [ + 1, + 1 + ] + ] + }, + { + "name": "ipc_screen_rgb", + "directions": 4, + "delays": [ + [ + 2, + 2, + 2 + ], + [ + 2, + 2, + 2 + ], + [ + 2, + 2, + 2 + ], + [ + 2, + 2, + 2 + ] + ] + }, + { + "name": "ipc_screen_glider", + "directions": 4, + "delays": [ + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ], + [ + 0.3, + 0.3, + 0.3, + 0.3 + ] + ] + }, + { + "name": "ipc_screen_rainbowhoriz", + "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 + ] + ] + }, + { + "name": "ipc_screen_bsod", + "directions": 4, + "delays": [ + [ + 0.4, + 0.1, + 0.1, + 0.1, + 0.1, + 0.4, + 0.1, + 0.1, + 0.1 + ], + [ + 0.4, + 0.1, + 0.1, + 0.1, + 0.1, + 0.4, + 0.1, + 0.1, + 0.1 + ], + [ + 0.4, + 0.1, + 0.1, + 0.1, + 0.1, + 0.4, + 0.1, + 0.1, + 0.1 + ], + [ + 0.4, + 0.1, + 0.1, + 0.1, + 0.1, + 0.4, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_redtext", + "directions": 4, + "delays": [ + [ + 0.4, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.4, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.4, + 0.1, + 0.1, + 0.1, + 0.1 + ], + [ + 0.4, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_sinewave", + "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 + ] + ] + }, + { + "name": "ipc_screen_squarewave", + "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 + ] + ] + }, + { + "name": "ipc_screen_ecgwave", + "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, + 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 + ] + ] + }, + { + "name": "ipc_screen_eyes", + "directions": 4, + "delays": [ + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ] + ] + }, + { + "name": "ipc_screen_eyestall", + "directions": 4, + "delays": [ + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ] + ] + }, + { + "name": "ipc_screen_eyesangry", + "directions": 4, + "delays": [ + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ], + [ + 3, + 0.5 + ] + ] + }, + { + "name": "ipc_screen_loading", + "directions": 4, + "delays": [ + [ + 0.2, + 0.1, + 0.2, + 0.1, + 0.2 + ], + [ + 0.2, + 0.1, + 0.2, + 0.1, + 0.2 + ], + [ + 0.2, + 0.1, + 0.2, + 0.1, + 0.2 + ], + [ + 0.2, + 0.1, + 0.2, + 0.1, + 0.2 + ] + ] + }, + { + "name": "ipc_screen_windowsxp", + "directions": 4, + "delays": [ + [ + 0.25, + 0.19, + 0.120000005, + 0.1, + 0.16, + 0.22 + ], + [ + 0.25, + 0.19, + 0.120000005, + 0.1, + 0.16, + 0.22 + ], + [ + 0.25, + 0.19, + 0.120000005, + 0.1, + 0.16, + 0.22 + ], + [ + 0.25, + 0.19, + 0.120000005, + 0.1, + 0.16, + 0.22 + ] + ] + }, + { + "name": "ipc_screen_tetris", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1, + 0.2, + 0.2, + 0.2, + 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.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.1, + 0.2, + 0.2, + 0.2, + 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.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.1, + 0.2, + 0.2, + 0.2, + 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.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.1, + 0.2, + 0.2, + 0.2, + 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.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + }, + { + "name": "ipc_screen_tv", + "directions": 4, + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1 + ], + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_textdrop", + "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, + 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": "ipc_screen_stars", + "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 + ] + ] + }, + { + "name": "ipc_screen_rainbowdiag", + "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, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "ipc_screen_blank", + "directions": 4 + }, + { + "name": "ipc_screen_smile", + "directions": 4 + }, + { + "name": "ipc_screen_frown", + "directions": 4 + }, + { + "name": "ipc_screen_ring", + "directions": 4 + }, + { + "name": "ipc_screen_l", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain-inhand-left.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain-inhand-left.png new file mode 100644 index 00000000000..cf6e4684e9c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain-inhand-left.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain-inhand-right.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain-inhand-right.png new file mode 100644 index 00000000000..978d4f3c5f1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain-inhand-right.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain.png new file mode 100644 index 00000000000..f69ff1aa3e4 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/brain.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/ears.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/ears.png new file mode 100644 index 00000000000..9966cc2ac2d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/ears.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/eyeball-l.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/eyeball-l.png new file mode 100644 index 00000000000..09b98e316f8 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/eyeball-l.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/eyeball-r.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/eyeball-r.png new file mode 100644 index 00000000000..f1ff37a002f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/eyeball-r.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/heart-off.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/heart-off.png new file mode 100644 index 00000000000..7dda0d3a8e6 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/heart-off.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/heart-on.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/heart-on.png new file mode 100644 index 00000000000..676a641989a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/heart-on.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/meta.json b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/meta.json new file mode 100644 index 00000000000..3078ec86feb --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/meta.json @@ -0,0 +1,82 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Yogstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "brain-inhand-left", + "directions": 4 + }, + { + "name": "brain-inhand-right", + "directions": 4 + }, + { + "name": "heart-off" + }, + { + "name": "heart-on", + "delays": [ + [ + 0.6, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "brain", + "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 + ] + ] + }, + { + "name": "eyeball-r" + }, + { + "name": "tongue" + }, + { + "name": "eyeball-l" + }, + { + "name": "microcell", + "delays": [ + [ + 0.5, + 0.5 + ] + ] + }, + { + "name": "ears" + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/microcell.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/microcell.png new file mode 100644 index 00000000000..18b692a5a99 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/microcell.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/tongue.png b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/tongue.png new file mode 100644 index 00000000000..dee2ed3b99f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/organs.rsi/tongue.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/full.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/full.png new file mode 100644 index 00000000000..7faae4a077e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/full.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/head_f.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/head_f.png new file mode 100644 index 00000000000..31d77176c96 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/head_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/head_m.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/head_m.png new file mode 100644 index 00000000000..53d6069a283 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/head_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_arm.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_arm.png new file mode 100644 index 00000000000..4f042bf40e0 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_foot.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_foot.png new file mode 100644 index 00000000000..bb9bede2180 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_hand.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_hand.png new file mode 100644 index 00000000000..5b6c2df090c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_leg.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_leg.png new file mode 100644 index 00000000000..788f2769d43 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/meta.json b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/meta.json new file mode 100644 index 00000000000..1463c57a060 --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/meta.json @@ -0,0 +1,62 @@ +{ + "version": 2, + "license": "CC-BY-SA-3.0", + "copyright": "Original drawn by @robustyanka on Discord, modified by @pspritechologist", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "head_m", + "directions": 4 + }, + { + "name": "head_f", + "directions": 4 + }, + { + "name": "torso_m", + "directions": 4 + }, + { + "name": "torso_f", + "directions": 4 + }, + { + "name": "r_arm", + "directions": 4 + }, + { + "name": "l_arm", + "directions": 4 + }, + { + "name": "r_hand", + "directions": 4 + }, + { + "name": "l_hand", + "directions": 4 + }, + { + "name": "r_leg", + "directions": 4 + }, + { + "name": "l_leg", + "directions": 4 + }, + { + "name": "r_foot", + "directions": 4 + }, + { + "name": "l_foot", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_arm.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_arm.png new file mode 100644 index 00000000000..6c1ff1ec9cf Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_foot.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_foot.png new file mode 100644 index 00000000000..2389c30aea5 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_hand.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_hand.png new file mode 100644 index 00000000000..3ec4fab0378 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_leg.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_leg.png new file mode 100644 index 00000000000..f424b2efbca Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/torso_f.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/torso_f.png new file mode 100644 index 00000000000..b36a2eed8c7 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/torso_m.png b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/torso_m.png new file mode 100644 index 00000000000..df2588b562d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/IPC/parts.rsi/torso_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/eyes.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/eyes.png new file mode 100644 index 00000000000..e35b5717d2f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/eyes.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/full.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/full.png new file mode 100644 index 00000000000..a1f944ad023 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/full.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/head_f.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/head_f.png new file mode 100644 index 00000000000..6788ca0c00e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/head_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/head_m.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/head_m.png new file mode 100644 index 00000000000..6788ca0c00e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/head_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/icon.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/icon.png new file mode 100644 index 00000000000..016d8ba5a76 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_arm.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_arm.png new file mode 100644 index 00000000000..0dac6f22cf3 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_foot.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_foot.png new file mode 100644 index 00000000000..1dfe4f91724 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_hand.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_hand.png new file mode 100644 index 00000000000..7b90385759f Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_leg.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_leg.png new file mode 100644 index 00000000000..54efa6db786 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/meta.json b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/meta.json new file mode 100644 index 00000000000..636f6b545dc --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/meta.json @@ -0,0 +1,69 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/tgstation/tgstation/commit/1d0eadcb126fc3581eed33490f4be2a88157af58, modified by https://github.com/PixelTheKermit", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "full" + }, + { + "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": "eyes", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_arm.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_arm.png new file mode 100644 index 00000000000..7ece2c81c72 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_foot.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_foot.png new file mode 100644 index 00000000000..1071c6bf8b3 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_hand.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_hand.png new file mode 100644 index 00000000000..1302b00b0ef Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_leg.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_leg.png new file mode 100644 index 00000000000..6f45ae18950 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/torso_f.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/torso_f.png new file mode 100644 index 00000000000..233dd6d7222 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/torso_m.png b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/torso_m.png new file mode 100644 index 00000000000..a2722c22730 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Moth/parts.rsi/torso_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/full.png b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/full.png new file mode 100644 index 00000000000..ce813a6f77d Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/full.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/head_f.png b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/head_f.png new file mode 100644 index 00000000000..cd5fbe6a5a3 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/head_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/head_m.png b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/head_m.png new file mode 100644 index 00000000000..bc4adff3ab0 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/head_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/l_arm.png b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/l_arm.png new file mode 100644 index 00000000000..bf594a140a2 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/l_arm.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/l_foot.png b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/l_foot.png new file mode 100644 index 00000000000..8d8931c81fc Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/l_foot.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/l_hand.png b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/l_hand.png new file mode 100644 index 00000000000..02aca6585af Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/l_hand.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/l_leg.png b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/l_leg.png new file mode 100644 index 00000000000..ba434cf61e1 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/l_leg.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/meta.json b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/meta.json new file mode 100644 index 00000000000..31780b8e9fe --- /dev/null +++ b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/meta.json @@ -0,0 +1,97 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "https://github.com/ParadiseSS13/Paradise/commit/924e8cc949a40ea64a978656dbbc0b43b4a8f33a and modified by EmoGarbage", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "tajaran_m" + }, + { + "name": "full" + }, + { + "name": "head_m", + "directions": 4 + }, + { + "name": "head_f", + "directions": 4 + }, + { + "name": "l_arm", + "directions": 4 + }, + { + "name": "l_foot", + "directions": 4 + }, + { + "name": "l_hand", + "directions": 4 + }, + { + "name": "l_leg", + "directions": 4 + }, + { + "name": "overlay_husk", + "directions": 4 + }, + { + "name": "r_arm", + "directions": 4 + }, + { + "name": "r_foot", + "directions": 4 + }, + { + "name": "r_hand", + "directions": 4 + }, + { + "name": "r_leg", + "directions": 4 + }, + { + "name": "torso_m", + "directions": 4 + }, + { + "name": "torso_f", + "directions": 4 + }, + { + "name": "tail_m", + "directions": 4, + "delays": [ + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15], + [0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15, 0.15] + ] + }, + { + "name": "tajaran_eyes", + "directions": 4, + "delays": [ + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ], + [ + 1.0 + ] + ] + } + ] +} diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/overlay_husk.png b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/overlay_husk.png new file mode 100644 index 00000000000..b627ae20186 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/overlay_husk.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/r_arm.png b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/r_arm.png new file mode 100644 index 00000000000..a5dbca3272a Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/r_arm.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/r_foot.png b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/r_foot.png new file mode 100644 index 00000000000..bdf64f4a9dd Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/r_foot.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/r_hand.png b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/r_hand.png new file mode 100644 index 00000000000..1585a96d989 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/r_hand.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/r_leg.png b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/r_leg.png new file mode 100644 index 00000000000..20de31b06a5 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/r_leg.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/tail_m.png b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/tail_m.png new file mode 100644 index 00000000000..f25f8906948 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/tail_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/tajaran_eyes.png b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/tajaran_eyes.png new file mode 100644 index 00000000000..11bcd9cac4c Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/tajaran_eyes.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/tajaran_m.png b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/tajaran_m.png new file mode 100644 index 00000000000..3443e2a816e Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/tajaran_m.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/torso_f.png b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/torso_f.png new file mode 100644 index 00000000000..e727d1c522b Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/torso_f.png differ diff --git a/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/torso_m.png b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/torso_m.png new file mode 100644 index 00000000000..a0f1150d6a3 Binary files /dev/null and b/Resources/Textures/ADT/Mobs/Species/Tajaran/parts.rsi/torso_m.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Drinks/nostop.rsi/icon-open.png b/Resources/Textures/ADT/Objects/Consumable/Drinks/nostop.rsi/icon-open.png new file mode 100644 index 00000000000..5136a730814 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Drinks/nostop.rsi/icon-open.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Drinks/nostop.rsi/icon.png b/Resources/Textures/ADT/Objects/Consumable/Drinks/nostop.rsi/icon.png new file mode 100644 index 00000000000..79b78b196ca Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Drinks/nostop.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Drinks/nostop.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Drinks/nostop.rsi/meta.json new file mode 100644 index 00000000000..cde51f8f5ad --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Drinks/nostop.rsi/meta.json @@ -0,0 +1,17 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat911", + "states": [ + { + "name": "icon" + }, + { + "name": "icon-open" + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-choco.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-choco.png new file mode 100644 index 00000000000..54397ac5374 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-choco.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-coconut.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-coconut.png new file mode 100644 index 00000000000..13c44a7120e Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-coconut.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-energy.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-energy.png new file mode 100644 index 00000000000..626c86ef26e Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-energy.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-nuts.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-nuts.png new file mode 100644 index 00000000000..efec36ff6b5 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-nuts.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-pink.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-pink.png new file mode 100644 index 00000000000..676fea32c8b Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-pink.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-two.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-two.png new file mode 100644 index 00000000000..99bce244a3f Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/bar-two.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/meta.json new file mode 100644 index 00000000000..6ffb23064fa --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/bars.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "bar-choco" + }, + { + "name": "bar-coconut" + }, + { + "name": "bar-energy" + }, + { + "name": "bar-nuts" + }, + { + "name": "bar-pink" + }, + { + "name": "bar-two" + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/choco-packed.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/choco-packed.png new file mode 100644 index 00000000000..9371c6e6791 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/choco-packed.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/coconut-packed.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/coconut-packed.png new file mode 100644 index 00000000000..0206b3a890c Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/coconut-packed.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/energy-packed.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/energy-packed.png new file mode 100644 index 00000000000..ef232901aa3 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/energy-packed.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/meta.json new file mode 100644 index 00000000000..bdc555da8f9 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "choco-packed" + }, + { + "name": "coconut-packed" + }, + { + "name": "energy-packed" + }, + { + "name": "nuts-packed" + }, + { + "name": "pink-packed" + }, + { + "name": "two-packed" + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/nuts-packed.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/nuts-packed.png new file mode 100644 index 00000000000..0d034b0862f Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/nuts-packed.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/pink-packed.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/pink-packed.png new file mode 100644 index 00000000000..22b6f523a70 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/pink-packed.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/two-packed.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/two-packed.png new file mode 100644 index 00000000000..1690cea8e13 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/packing.rsi/two-packed.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/choco-trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/choco-trash.png new file mode 100644 index 00000000000..db3b93a9e1b Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/choco-trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/coconut-trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/coconut-trash.png new file mode 100644 index 00000000000..5b5c61734f5 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/coconut-trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/energy-trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/energy-trash.png new file mode 100644 index 00000000000..8190c7c4f07 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/energy-trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/meta.json new file mode 100644 index 00000000000..2f43531e0e7 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "choco-trash" + }, + { + "name": "coconut-trash" + }, + { + "name": "energy-trash" + }, + { + "name": "nuts-trash" + }, + { + "name": "pink-trash" + }, + { + "name": "two-trash" + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/nuts-trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/nuts-trash.png new file mode 100644 index 00000000000..47b752d721c Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/nuts-trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/pink-trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/pink-trash.png new file mode 100644 index 00000000000..864a2ce1226 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/pink-trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/two-trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/two-trash.png new file mode 100644 index 00000000000..f5297c1ecf9 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Chocolate/trash.rsi/two-trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/IceCreamStick.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/IceCreamStick.png new file mode 100644 index 00000000000..2ea22c5bec7 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/IceCreamStick.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/bananafruitIce.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/bananafruitIce.png new file mode 100644 index 00000000000..cebd24f9760 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/bananafruitIce.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/berryfruitIce.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/berryfruitIce.png new file mode 100644 index 00000000000..1bac6561a74 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/berryfruitIce.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/chocolatefreezy.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/chocolatefreezy.png new file mode 100644 index 00000000000..124ac52cce6 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/chocolatefreezy.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/chocolatefreezy_caramel.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/chocolatefreezy_caramel.png new file mode 100644 index 00000000000..b4167d411cc Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/chocolatefreezy_caramel.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/chocolateicecream.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/chocolateicecream.png new file mode 100644 index 00000000000..7062cb0f2c6 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/chocolateicecream.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/chocolatepopsicle.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/chocolatepopsicle.png new file mode 100644 index 00000000000..3593e8cc3b4 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/chocolatepopsicle.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/chocolatepopsiclewithnuts.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/chocolatepopsiclewithnuts.png new file mode 100644 index 00000000000..f42f2d576c3 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/chocolatepopsiclewithnuts.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/grapefruitIce.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/grapefruitIce.png new file mode 100644 index 00000000000..30ca797a8d3 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/grapefruitIce.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/honkdae.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/honkdae.png new file mode 100644 index 00000000000..e1756aaeba6 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/honkdae.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/icecreamcone.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/icecreamcone.png new file mode 100644 index 00000000000..d065ea8dc43 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/icecreamcone.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/icecreamwafflecone.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/icecreamwafflecone.png new file mode 100644 index 00000000000..6c4fedaac4c Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/icecreamwafflecone.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/icecreamwaffleconenuts.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/icecreamwaffleconenuts.png new file mode 100644 index 00000000000..1ec0282b4af Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/icecreamwaffleconenuts.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/jumbopopsicle.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/jumbopopsicle.png new file mode 100644 index 00000000000..831808c1c10 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/jumbopopsicle.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/mangofruitIce.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/mangofruitIce.png new file mode 100644 index 00000000000..247eedaa47e Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/mangofruitIce.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/melonpopsicle.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/melonpopsicle.png new file mode 100644 index 00000000000..81dd5f0a1f5 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/melonpopsicle.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/meta.json new file mode 100644 index 00000000000..d00159052e6 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/meta.json @@ -0,0 +1,119 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "bananafruitIce" + }, + { + "name": "berryfruitIce" + }, + { + "name": "chocolatefreezy" + }, + { + "name": "chocolatefreezy_caramel" + }, + { + "name": "chocolateicecream" + }, + { + "name": "chocolatepopsicle" + }, + { + "name": "chocolatepopsiclewithnuts" + }, + { + "name": "grapefruitIce" + }, + { + "name": "honkdae" + }, + { + "name": "icecreamcone" + }, + { + "name": "IceCreamStick" + }, + { + "name": "icecreamwafflecone" + }, + { + "name": "icecreamwaffleconenuts" + }, + { + "name": "jumbopopsicle" + }, + { + "name": "mangofruitIce" + }, + { + "name": "melonpopsicle" + }, + { + "name": "orangepopsicle" + }, + { + "name": "pineapplechocolate" + }, + { + "name": "popsicleapple" + }, + { + "name": "popsiclebanana" + }, + { + "name": "popsiclemole" + }, + { + "name": "seasaltppopsicle" + }, + { + "name": "spacefreezy" + }, + { + "name": "spacefreezy_caramel" + }, + { + "name": "spaceicecream" + }, + { + "name": "strawberryfruitIce" + }, + { + "name": "strawberryicecream" + }, + { + "name": "sundae" + }, + { + "name": "threeflavorsfreezy" + }, + { + "name": "threeflavorsfreezy_caramel" + }, + { + "name": "threeflavorspopsicle" + }, + { + "name": "vanillafreezy" + }, + { + "name": "vanillafreezy_caramel" + }, + { + "name": "vanillaicecream" + }, + { + "name": "wafflecone" + }, + { + "name": "watermelonpopsicle" + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/orangepopsicle.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/orangepopsicle.png new file mode 100644 index 00000000000..d4c6b5ba191 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/orangepopsicle.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/pineapplechocolate.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/pineapplechocolate.png new file mode 100644 index 00000000000..63661ff1cce Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/pineapplechocolate.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/popsicleapple.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/popsicleapple.png new file mode 100644 index 00000000000..54631021a4d Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/popsicleapple.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/popsiclebanana.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/popsiclebanana.png new file mode 100644 index 00000000000..aff5c4ba915 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/popsiclebanana.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/popsiclemole.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/popsiclemole.png new file mode 100644 index 00000000000..b700d8d3076 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/popsiclemole.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/seasaltppopsicle.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/seasaltppopsicle.png new file mode 100644 index 00000000000..fff9c3421c2 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/seasaltppopsicle.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/spacefreezy.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/spacefreezy.png new file mode 100644 index 00000000000..995f7aad5eb Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/spacefreezy.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/spacefreezy_caramel.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/spacefreezy_caramel.png new file mode 100644 index 00000000000..3b4b75eccda Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/spacefreezy_caramel.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/spaceicecream.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/spaceicecream.png new file mode 100644 index 00000000000..1946884f3fb Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/spaceicecream.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/strawberryfruitIce.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/strawberryfruitIce.png new file mode 100644 index 00000000000..bf23342864f Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/strawberryfruitIce.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/strawberryicecream.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/strawberryicecream.png new file mode 100644 index 00000000000..d072054a2b0 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/strawberryicecream.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/sundae.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/sundae.png new file mode 100644 index 00000000000..82a4768ecc1 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/sundae.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/threeflavorsfreezy.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/threeflavorsfreezy.png new file mode 100644 index 00000000000..5989a0edc79 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/threeflavorsfreezy.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/threeflavorsfreezy_caramel.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/threeflavorsfreezy_caramel.png new file mode 100644 index 00000000000..d5d5fc18fb6 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/threeflavorsfreezy_caramel.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/threeflavorspopsicle.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/threeflavorspopsicle.png new file mode 100644 index 00000000000..7b22ba508d2 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/threeflavorspopsicle.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/vanillafreezy.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/vanillafreezy.png new file mode 100644 index 00000000000..88918196f7b Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/vanillafreezy.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/vanillafreezy_caramel.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/vanillafreezy_caramel.png new file mode 100644 index 00000000000..39296d025e3 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/vanillafreezy_caramel.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/vanillaicecream.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/vanillaicecream.png new file mode 100644 index 00000000000..833f04a17f2 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/vanillaicecream.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/wafflecone.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/wafflecone.png new file mode 100644 index 00000000000..ae0ded02f31 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/wafflecone.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/watermelonpopsicle.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/watermelonpopsicle.png new file mode 100644 index 00000000000..108fb3a87be Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/ice.rsi/watermelonpopsicle.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/chocolatefreezy_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/chocolatefreezy_packing.png new file mode 100644 index 00000000000..476d5c8fbc0 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/chocolatefreezy_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/chocolateicecream_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/chocolateicecream_packing.png new file mode 100644 index 00000000000..212a02d53c6 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/chocolateicecream_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/chocolatepopsicle_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/chocolatepopsicle_packing.png new file mode 100644 index 00000000000..6a64df08920 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/chocolatepopsicle_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/chocolatepopsiclewithnuts_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/chocolatepopsiclewithnuts_packing.png new file mode 100644 index 00000000000..867dce25153 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/chocolatepopsiclewithnuts_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/icecreamwafflecone_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/icecreamwafflecone_packing.png new file mode 100644 index 00000000000..c7d5da8b7c8 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/icecreamwafflecone_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/icecreamwaffleconenuts_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/icecreamwaffleconenuts_packing.png new file mode 100644 index 00000000000..ac95f0df30b Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/icecreamwaffleconenuts_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/jumbopopsicle_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/jumbopopsicle_packing.png new file mode 100644 index 00000000000..dcc5354d0cd Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/jumbopopsicle_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/melonpopsicle_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/melonpopsicle_packing.png new file mode 100644 index 00000000000..5d626b8faf4 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/melonpopsicle_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/meta.json new file mode 100644 index 00000000000..b5aadeeac27 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/meta.json @@ -0,0 +1,80 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "chocolatefreezy_packing" + }, + { + "name": "chocolateicecream_packing" + }, + { + "name": "chocolatepopsicle_packing" + }, + { + "name": "chocolatepopsiclewithnuts_packing" + }, + { + "name": "icecreamwafflecone_packing" + }, + { + "name": "icecreamwaffleconenuts_packing" + }, + { + "name": "jumbopopsicle_packing" + }, + { + "name": "melonpopsicle_packing" + }, + { + "name": "orangepopsicle_packing" + }, + { + "name": "pineapplechocolate_packing" + }, + { + "name": "popsicleapple_packing" + }, + { + "name": "popsiclebanana_packing" + }, + { + "name": "popsiclemole_packing" + }, + { + "name": "randomfruitIce" + }, + { + "name": "seasaltppopsicle_packing" + }, + { + "name": "spacefreezy_packing" + }, + { + "name": "spaceicecream_packing" + }, + { + "name": "strawberryicecream_packing" + }, + { + "name": "threeflavorsfreezy_packing" + }, + { + "name": "threeflavorspopsicle_packing" + }, + { + "name": "vanillafreezy_packing" + }, + { + "name": "vanillaicecream_packing" + }, + { + "name": "watermelonpopsicle_packing" + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/orangepopsicle_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/orangepopsicle_packing.png new file mode 100644 index 00000000000..8e882180c2e Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/orangepopsicle_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/pineapplechocolate_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/pineapplechocolate_packing.png new file mode 100644 index 00000000000..cc1a680fe17 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/pineapplechocolate_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/popsicleapple_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/popsicleapple_packing.png new file mode 100644 index 00000000000..7f8885b2311 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/popsicleapple_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/popsiclebanana_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/popsiclebanana_packing.png new file mode 100644 index 00000000000..1baab70d27c Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/popsiclebanana_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/popsiclemole_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/popsiclemole_packing.png new file mode 100644 index 00000000000..0cf3c865db9 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/popsiclemole_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/randomfruitIce.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/randomfruitIce.png new file mode 100644 index 00000000000..9d7d5d35931 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/randomfruitIce.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/seasaltppopsicle_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/seasaltppopsicle_packing.png new file mode 100644 index 00000000000..32d979dffe7 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/seasaltppopsicle_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/spacefreezy_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/spacefreezy_packing.png new file mode 100644 index 00000000000..5d4fac9a0d9 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/spacefreezy_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/spaceicecream_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/spaceicecream_packing.png new file mode 100644 index 00000000000..013598585f8 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/spaceicecream_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/strawberryicecream_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/strawberryicecream_packing.png new file mode 100644 index 00000000000..c7c371eba54 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/strawberryicecream_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/threeflavorsfreezy_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/threeflavorsfreezy_packing.png new file mode 100644 index 00000000000..0ff7f2da475 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/threeflavorsfreezy_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/threeflavorspopsicle_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/threeflavorspopsicle_packing.png new file mode 100644 index 00000000000..3b617a368b6 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/threeflavorspopsicle_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/vanillafreezy_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/vanillafreezy_packing.png new file mode 100644 index 00000000000..081bd75ed9e Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/vanillafreezy_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/vanillaicecream_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/vanillaicecream_packing.png new file mode 100644 index 00000000000..ec865039f68 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/vanillaicecream_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/watermelonpopsicle_packing.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/watermelonpopsicle_packing.png new file mode 100644 index 00000000000..8d4e4b74400 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/packed.rsi/watermelonpopsicle_packing.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/ChocolatePopsicle_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/ChocolatePopsicle_trash.png new file mode 100644 index 00000000000..6c8b1ee6908 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/ChocolatePopsicle_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/chocolatefreezy_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/chocolatefreezy_trash.png new file mode 100644 index 00000000000..f761adbb386 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/chocolatefreezy_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/chocolateicecream_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/chocolateicecream_trash.png new file mode 100644 index 00000000000..f696f750e3c Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/chocolateicecream_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/chocolatepopsiclewithnuts_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/chocolatepopsiclewithnuts_trash.png new file mode 100644 index 00000000000..40734b7ff56 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/chocolatepopsiclewithnuts_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/icecreamwafflecone_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/icecreamwafflecone_trash.png new file mode 100644 index 00000000000..80e3c07d9c9 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/icecreamwafflecone_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/icecreamwaffleconenuts_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/icecreamwaffleconenuts_trash.png new file mode 100644 index 00000000000..3d93854d754 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/icecreamwaffleconenuts_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/jumbopopsicle_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/jumbopopsicle_trash.png new file mode 100644 index 00000000000..3f2e211a032 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/jumbopopsicle_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/melonpopsicle_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/melonpopsicle_trash.png new file mode 100644 index 00000000000..369f6afb793 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/melonpopsicle_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/meta.json new file mode 100644 index 00000000000..2d118d02b75 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/meta.json @@ -0,0 +1,80 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:prazat911", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "chocolatefreezy_trash" + }, + { + "name": "chocolateicecream_trash" + }, + { + "name": "ChocolatePopsicle_trash" + }, + { + "name": "chocolatepopsiclewithnuts_trash" + }, + { + "name": "icecreamwafflecone_trash" + }, + { + "name": "icecreamwaffleconenuts_trash" + }, + { + "name": "jumbopopsicle_trash" + }, + { + "name": "melonpopsicle_trash" + }, + { + "name": "orangepopsicle_trash" + }, + { + "name": "pineapplechocolate_trash" + }, + { + "name": "popsicleapple_trash" + }, + { + "name": "popsiclebanana_trash" + }, + { + "name": "popsiclemole_trash" + }, + { + "name": "randomfruitIce_trash" + }, + { + "name": "seasaltppopsicle_trash" + }, + { + "name": "spacefreezy_trash" + }, + { + "name": "spaceicecream_trash" + }, + { + "name": "strawberryicecream_trash" + }, + { + "name": "threeflavorsfreezy_trash" + }, + { + "name": "threeflavorspopsicle_trash" + }, + { + "name": "vanillafreezy_trash" + }, + { + "name": "vanillaicecream_trash" + }, + { + "name": "watermelonpopsicle_trash" + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/orangepopsicle_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/orangepopsicle_trash.png new file mode 100644 index 00000000000..961f9f33046 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/orangepopsicle_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/pineapplechocolate_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/pineapplechocolate_trash.png new file mode 100644 index 00000000000..1b02c077edd Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/pineapplechocolate_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/popsicleapple_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/popsicleapple_trash.png new file mode 100644 index 00000000000..916ccc58210 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/popsicleapple_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/popsiclebanana_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/popsiclebanana_trash.png new file mode 100644 index 00000000000..a56a7581f5c Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/popsiclebanana_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/popsiclemole_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/popsiclemole_trash.png new file mode 100644 index 00000000000..9f9d4583194 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/popsiclemole_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/randomfruitIce_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/randomfruitIce_trash.png new file mode 100644 index 00000000000..ec8e728df1f Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/randomfruitIce_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/seasaltppopsicle_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/seasaltppopsicle_trash.png new file mode 100644 index 00000000000..578c577aac5 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/seasaltppopsicle_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/spacefreezy_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/spacefreezy_trash.png new file mode 100644 index 00000000000..04db01561bc Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/spacefreezy_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/spaceicecream_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/spaceicecream_trash.png new file mode 100644 index 00000000000..af4a7789976 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/spaceicecream_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/strawberryicecream_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/strawberryicecream_trash.png new file mode 100644 index 00000000000..33fa133aacd Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/strawberryicecream_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/threeflavorsfreezy_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/threeflavorsfreezy_trash.png new file mode 100644 index 00000000000..dfb89999f1b Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/threeflavorsfreezy_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/threeflavorspopsicle_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/threeflavorspopsicle_trash.png new file mode 100644 index 00000000000..206eb917371 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/threeflavorspopsicle_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/vanillafreezy_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/vanillafreezy_trash.png new file mode 100644 index 00000000000..fa2309ad633 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/vanillafreezy_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/vanillaicecream_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/vanillaicecream_trash.png new file mode 100644 index 00000000000..bcd669bdfe6 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/vanillaicecream_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/watermelonpopsicle_trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/watermelonpopsicle_trash.png new file mode 100644 index 00000000000..e903eba892c Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Frozen/trash.rsi/watermelonpopsicle_trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/chips.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/chips.rsi/meta.json new file mode 100644 index 00000000000..877fc40c596 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/chips.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Adventure Time", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "onion-and-sourcream" + }, + { + "name": "shrimp" + }, + { + "name": "space" + }, + { + "name": "spicy" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/chips.rsi/onion-and-sourcream.png b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/chips.rsi/onion-and-sourcream.png new file mode 100644 index 00000000000..8b23593c943 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/chips.rsi/onion-and-sourcream.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/chips.rsi/shrimp.png b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/chips.rsi/shrimp.png new file mode 100644 index 00000000000..2fcdd019a28 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/chips.rsi/shrimp.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/chips.rsi/space.png b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/chips.rsi/space.png new file mode 100644 index 00000000000..27bd02d7e19 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/chips.rsi/space.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/chips.rsi/spicy.png b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/chips.rsi/spicy.png new file mode 100644 index 00000000000..26ee1c622c4 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/chips.rsi/spicy.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/trash.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/trash.rsi/meta.json new file mode 100644 index 00000000000..8e881246d79 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/trash.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Adventure Time", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "onion-and-sourcream-trash" + }, + { + "name": "shrimp-trash" + }, + { + "name": "space-trash" + }, + { + "name": "spicy-trash" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/trash.rsi/onion-and-sourcream-trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/trash.rsi/onion-and-sourcream-trash.png new file mode 100644 index 00000000000..151887cea9d Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/trash.rsi/onion-and-sourcream-trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/trash.rsi/shrimp-trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/trash.rsi/shrimp-trash.png new file mode 100644 index 00000000000..51b51e9d69e Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/trash.rsi/shrimp-trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/trash.rsi/space-trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/trash.rsi/space-trash.png new file mode 100644 index 00000000000..eefb6ae0b44 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/trash.rsi/space-trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/trash.rsi/spicy-trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/trash.rsi/spicy-trash.png new file mode 100644 index 00000000000..4fa70e97619 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Chips/trash.rsi/spicy-trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/meat.rsi/beef.png b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/meat.rsi/beef.png new file mode 100644 index 00000000000..97f7777cf02 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/meat.rsi/beef.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/meat.rsi/chicken.png b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/meat.rsi/chicken.png new file mode 100644 index 00000000000..217f97ab6c7 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/meat.rsi/chicken.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/meat.rsi/horse.png b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/meat.rsi/horse.png new file mode 100644 index 00000000000..8b59de010c9 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/meat.rsi/horse.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/meat.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/meat.rsi/meta.json new file mode 100644 index 00000000000..ef7e2e7d60f --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/meat.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Adventure Time", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "beef" + }, + { + "name": "chicken" + }, + { + "name": "horse" + }, + { + "name": "pig" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/meat.rsi/pig.png b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/meat.rsi/pig.png new file mode 100644 index 00000000000..5badc563181 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/meat.rsi/pig.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/trash.rsi/beef-trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/trash.rsi/beef-trash.png new file mode 100644 index 00000000000..26aa7680d7a Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/trash.rsi/beef-trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/trash.rsi/chicken-trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/trash.rsi/chicken-trash.png new file mode 100644 index 00000000000..e55cff72665 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/trash.rsi/chicken-trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/trash.rsi/horse-trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/trash.rsi/horse-trash.png new file mode 100644 index 00000000000..0209a1f733d Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/trash.rsi/horse-trash.png differ diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/trash.rsi/meta.json b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/trash.rsi/meta.json new file mode 100644 index 00000000000..6823d411d44 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/trash.rsi/meta.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by Adventure Time", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "beef-trash" + }, + { + "name": "chicken-trash" + }, + { + "name": "horse-trash" + }, + { + "name": "pig-trash" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/trash.rsi/pig-trash.png b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/trash.rsi/pig-trash.png new file mode 100644 index 00000000000..460640c44c3 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Consumable/Food/Snacks/Dried/trash.rsi/pig-trash.png differ diff --git a/Resources/Textures/ADT/Objects/Misc/id_cards.rsi/default-inhand-left.png b/Resources/Textures/ADT/Objects/Misc/id_cards.rsi/default-inhand-left.png new file mode 100644 index 00000000000..f7848f63f6a Binary files /dev/null and b/Resources/Textures/ADT/Objects/Misc/id_cards.rsi/default-inhand-left.png differ diff --git a/Resources/Textures/ADT/Objects/Misc/id_cards.rsi/default-inhand-right.png b/Resources/Textures/ADT/Objects/Misc/id_cards.rsi/default-inhand-right.png new file mode 100644 index 00000000000..82b5598806d Binary files /dev/null and b/Resources/Textures/ADT/Objects/Misc/id_cards.rsi/default-inhand-right.png differ diff --git a/Resources/Textures/ADT/Objects/Misc/id_cards.rsi/default.png b/Resources/Textures/ADT/Objects/Misc/id_cards.rsi/default.png new file mode 100644 index 00000000000..95b3d54c270 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Misc/id_cards.rsi/default.png differ diff --git a/Resources/Textures/ADT/Objects/Misc/id_cards.rsi/id-pathologist.png b/Resources/Textures/ADT/Objects/Misc/id_cards.rsi/id-pathologist.png new file mode 100644 index 00000000000..a4793b60469 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Misc/id_cards.rsi/id-pathologist.png differ diff --git a/Resources/Textures/ADT/Objects/Misc/id_cards.rsi/meta.json b/Resources/Textures/ADT/Objects/Misc/id_cards.rsi/meta.json new file mode 100644 index 00000000000..f8b4aa32c54 --- /dev/null +++ b/Resources/Textures/ADT/Objects/Misc/id_cards.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "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, pathologist made by JustKekc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "default" + }, + { + "name": "id-pathologist" + }, + { + "name": "default-inhand-left", + "directions": 4 + }, + { + "name": "default-inhand-right", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Objects/Misc/stampsADT.rsi/meta.json b/Resources/Textures/ADT/Objects/Misc/stampsADT.rsi/meta.json new file mode 100644 index 00000000000..f0ca450081a --- /dev/null +++ b/Resources/Textures/ADT/Objects/Misc/stampsADT.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Created by discord:KING_DICE#4881", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "stamp-magistrat" + } + ] +} diff --git a/Resources/Textures/ADT/Objects/Misc/stampsADT.rsi/stamp-magistrat.png b/Resources/Textures/ADT/Objects/Misc/stampsADT.rsi/stamp-magistrat.png new file mode 100644 index 00000000000..67d707bf6c4 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Misc/stampsADT.rsi/stamp-magistrat.png differ diff --git a/Resources/Textures/ADT/Objects/Tools/rpd.rsi/ammo-inhand-left.png b/Resources/Textures/ADT/Objects/Tools/rpd.rsi/ammo-inhand-left.png new file mode 100644 index 00000000000..6c95dc229a8 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Tools/rpd.rsi/ammo-inhand-left.png differ diff --git a/Resources/Textures/ADT/Objects/Tools/rpd.rsi/ammo-inhand-right.png b/Resources/Textures/ADT/Objects/Tools/rpd.rsi/ammo-inhand-right.png new file mode 100644 index 00000000000..c4742e9cedb Binary files /dev/null and b/Resources/Textures/ADT/Objects/Tools/rpd.rsi/ammo-inhand-right.png differ diff --git a/Resources/Textures/ADT/Objects/Tools/rpd.rsi/ammo.png b/Resources/Textures/ADT/Objects/Tools/rpd.rsi/ammo.png new file mode 100644 index 00000000000..5422d5b9764 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Tools/rpd.rsi/ammo.png differ diff --git a/Resources/Textures/ADT/Objects/Tools/rpd.rsi/equipped-BELT.png b/Resources/Textures/ADT/Objects/Tools/rpd.rsi/equipped-BELT.png new file mode 100644 index 00000000000..0b6ed654575 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Tools/rpd.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/ADT/Objects/Tools/rpd.rsi/icon.png b/Resources/Textures/ADT/Objects/Tools/rpd.rsi/icon.png new file mode 100644 index 00000000000..2988de76199 Binary files /dev/null and b/Resources/Textures/ADT/Objects/Tools/rpd.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Objects/Tools/rpd.rsi/inhand-left.png b/Resources/Textures/ADT/Objects/Tools/rpd.rsi/inhand-left.png new file mode 100644 index 00000000000..7a07062f1cf Binary files /dev/null and b/Resources/Textures/ADT/Objects/Tools/rpd.rsi/inhand-left.png differ diff --git a/Resources/Textures/ADT/Objects/Tools/rpd.rsi/inhand-right.png b/Resources/Textures/ADT/Objects/Tools/rpd.rsi/inhand-right.png new file mode 100644 index 00000000000..d93bb310eec Binary files /dev/null and b/Resources/Textures/ADT/Objects/Tools/rpd.rsi/inhand-right.png differ diff --git a/Resources/Textures/ADT/Objects/Tools/rpd.rsi/meta.json b/Resources/Textures/ADT/Objects/Tools/rpd.rsi/meta.json new file mode 100644 index 00000000000..7da580b795e --- /dev/null +++ b/Resources/Textures/ADT/Objects/Tools/rpd.rsi/meta.json @@ -0,0 +1,37 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "ammo" + }, + { + "name": "ammo-inhand-left", + "directions": 4 + }, + { + "name": "ammo-inhand-right", + "directions": 4 + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/ADT/Shaders/seeing_static.swsl b/Resources/Textures/ADT/Shaders/seeing_static.swsl new file mode 100644 index 00000000000..765cb94f712 --- /dev/null +++ b/Resources/Textures/ADT/Shaders/seeing_static.swsl @@ -0,0 +1,43 @@ +// Credited to PelicanPolice on Shadertoy +// Free for any purpose, commercial or otherwise. +// But do post here so I can see where it got used! +// If using on shadertoy, do link to this project on yours :) + +// A copy of the camera static shader, but takes a screen texture, and an amount to mix by. + +uniform sampler2D SCREEN_TEXTURE; +uniform highp float mixAmount; + +highp float noise(highp vec2 pos, highp float evolve) { + + // Loop the evolution (over a very long period of time). + highp float e = fract((evolve*0.01)); + + // Coordinates + highp float cx = pos.x*e; + highp float cy = sin(pos.y*e * 376.0); // is this close enough to a 60hz interference? :smol: + + highp float v2_2 = cx*2.4/cy*23.0+pow(abs(cy/22.4),3.3); + highp float v2_1 = fract(fract(v2_2)); + highp float v2 = fract(2.0/v2_1); + highp float v3 = fract(cx*evolve/pow(abs(cy),0.050)); + + // Generate a "random" black or white value + return fract(0.1*v2*v3); +} + + +void fragment() { + highp vec4 color = zTextureSpec(SCREEN_TEXTURE, UV); + highp vec2 coords = FRAGCOORD.xy; + + highp vec3 staticAmount; + for (int i = 0; i < 1; i++) + { + // Generate a black to white pixel + staticAmount = vec3(noise(coords,TIME)); + } + + // Output to screen + COLOR = mix(color, vec4(staticAmount, 1.0), mixAmount); +} diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/patholodrobe.rsi/broken.png b/Resources/Textures/ADT/Structures/Machines/VendingMachines/patholodrobe.rsi/broken.png new file mode 100644 index 00000000000..cb3f5e45c2a Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/VendingMachines/patholodrobe.rsi/broken.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/patholodrobe.rsi/meta.json b/Resources/Textures/ADT/Structures/Machines/VendingMachines/patholodrobe.rsi/meta.json new file mode 100644 index 00000000000..7a99d3e9b02 --- /dev/null +++ b/Resources/Textures/ADT/Structures/Machines/VendingMachines/patholodrobe.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by JustKekc", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "broken" + }, + { + "name": "off" + }, + { + "name": "panel" + }, + { + "name": "normal-unshaded", + "delays": [ + [ + 1.0, + 0.1, + 1.0, + 0.1, + 1.0, + 0.1 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/patholodrobe.rsi/normal-unshaded.png b/Resources/Textures/ADT/Structures/Machines/VendingMachines/patholodrobe.rsi/normal-unshaded.png new file mode 100644 index 00000000000..d8191578f19 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/VendingMachines/patholodrobe.rsi/normal-unshaded.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/patholodrobe.rsi/off.png b/Resources/Textures/ADT/Structures/Machines/VendingMachines/patholodrobe.rsi/off.png new file mode 100644 index 00000000000..a249c5ea329 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/VendingMachines/patholodrobe.rsi/off.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/VendingMachines/patholodrobe.rsi/panel.png b/Resources/Textures/ADT/Structures/Machines/VendingMachines/patholodrobe.rsi/panel.png new file mode 100644 index 00000000000..0032751ff4f Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/VendingMachines/patholodrobe.rsi/panel.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/HV.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/HV.png new file mode 100644 index 00000000000..c74f8d48d53 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/HV.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/LV.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/LV.png new file mode 100644 index 00000000000..87b6b7cf25d Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/LV.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/MV.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/MV.png new file mode 100644 index 00000000000..7276d79d380 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/MV.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/base.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/base.png new file mode 100644 index 00000000000..dcd8ca51df2 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/base.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_1.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_1.png new file mode 100644 index 00000000000..f254109f0cb Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_1.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_2.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_2.png new file mode 100644 index 00000000000..f602224e5ac Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_2.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_active_unlit.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_active_unlit.png new file mode 100644 index 00000000000..18357d1eb9d Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_active_unlit.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_closed_unlit.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_closed_unlit.png new file mode 100644 index 00000000000..99eec2b9815 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_closed_unlit.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_open_unlit.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_open_unlit.png new file mode 100644 index 00000000000..9f52b9154ac Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_open_unlit.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_panel.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_panel.png new file mode 100644 index 00000000000..95f7dd49e96 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_panel.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_unlit.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_unlit.png new file mode 100644 index 00000000000..586fe93f3b3 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/borgcharger_unlit.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/closed.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/closed.png new file mode 100644 index 00000000000..6f88f12c2e9 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/closed.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/icon.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/icon.png new file mode 100644 index 00000000000..fbd69e21679 Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/icon.png differ diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/meta.json b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/meta.json new file mode 100644 index 00000000000..cc7e1771aab --- /dev/null +++ b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/meta.json @@ -0,0 +1,61 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Yogstation at commit https://github.com/yogstation13/Yogstation/commit/159e6bf846e911590ab27f15272ec2ebc465c1da", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "HV" + }, + { + "name": "MV" + }, + { + "name": "LV" + }, + { + "name": "base" + }, + { + "name": "open" + }, + { + "name": "closed" + }, + { + "name": "borgcharger_open_unlit" + }, + { + "name": "borgcharger_closed_unlit" + }, + { + "name": "borgcharger_unlit" + }, + { + "name": "borgcharger_active_unlit", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.15 + ] + ] + }, + { + "name": "borgcharger_panel" + }, + { + "name": "borgcharger_1" + }, + { + "name": "borgcharger_2" + } + ] +} diff --git a/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/open.png b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/open.png new file mode 100644 index 00000000000..76a8ae2ad3e Binary files /dev/null and b/Resources/Textures/ADT/Structures/Machines/borgcharger.rsi/open.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/equipped-INNERCLOTHING.png index af5abf6f0bb..4d5a6f6cb87 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/icon.png index 861539fab81..5a6b5851b74 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/inhand-left.png index bacc6c39de6..3faddf27e2b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/inhand-right.png index d107c18c8da..193be2fcaa8 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/meta.json index bb0a29fbfcd..c3fd459e7a7 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpskirt/roboticist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite by DreamlyJack, monkey derivative made by brainfood1183 (github)", + "copyright": "Sprite by DreamlyJack, modified by Prazat (discord: prazat911), monkey derivative made by brainfood1183 (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/equipped-INNERCLOTHING.png index f4f4ab93ca6..4d18340f530 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/icon.png index ab39a7e17e4..b887556e93b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/inhand-left.png index d0bd2174369..3faddf27e2b 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/inhand-right.png index a20d35709d5..193be2fcaa8 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/meta.json index bb0a29fbfcd..c3fd459e7a7 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/roboticist.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Sprite by DreamlyJack, monkey derivative made by brainfood1183 (github)", + "copyright": "Sprite by DreamlyJack, modified by Prazat (discord: prazat911), monkey derivative made by brainfood1183 (github)", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Corvax/LobbyScreens/attributions.yml b/Resources/Textures/Corvax/LobbyScreens/attributions.yml index effeeb90f33..f09fe0669b0 100644 --- a/Resources/Textures/Corvax/LobbyScreens/attributions.yml +++ b/Resources/Textures/Corvax/LobbyScreens/attributions.yml @@ -187,3 +187,8 @@ license: "CC-BY-SA-3.0" copyright: "limemint on discord" source: "https://discord.com/channels/919301044784226385/1073603532898435183/1253009500944859227" + +- files: ["silly-island.png"] + license: "CC-BY-NC-SA-4.0" + copyright: "alexsandr_the_great2(1165521026579451935) on discord" + source: "https://discord.com/channels/919301044784226385/1073603532898435183/1261290085287071914" diff --git a/Resources/Textures/Corvax/LobbyScreens/silly-island.png b/Resources/Textures/Corvax/LobbyScreens/silly-island.png new file mode 100644 index 00000000000..442170ee067 Binary files /dev/null and b/Resources/Textures/Corvax/LobbyScreens/silly-island.png differ diff --git a/Resources/Textures/Corvax/LobbyScreens/silly-island.png.yml b/Resources/Textures/Corvax/LobbyScreens/silly-island.png.yml new file mode 100644 index 00000000000..51ff40335ef --- /dev/null +++ b/Resources/Textures/Corvax/LobbyScreens/silly-island.png.yml @@ -0,0 +1,2 @@ +sample: + filter: false diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical.png index dcb23552f19..ead2a3f200e 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_a.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_a.png index 693c38cbd56..cb92870b813 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_a.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_a.png differ diff --git a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_b.png b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_b.png index 0bc4b8e1d5a..0b82343b464 100644 Binary files a/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_b.png and b/Resources/Textures/Decals/Overlays/greyscale.rsi/pavement_vertical_checker_b.png differ diff --git a/Resources/Textures/Objects/Devices/pda.rsi/meta.json b/Resources/Textures/Objects/Devices/pda.rsi/meta.json index f77f8c0e711..7db1ebf7418 100644 --- a/Resources/Textures/Objects/Devices/pda.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/pda.rsi/meta.json @@ -61,6 +61,9 @@ { "name": "pda-clown" }, + { + "name": "pda-pathologist" + }, { "name": "pda-cmo" }, diff --git a/Resources/Textures/Objects/Devices/pda.rsi/pda-pathologist.png b/Resources/Textures/Objects/Devices/pda.rsi/pda-pathologist.png new file mode 100644 index 00000000000..14d8219888e Binary files /dev/null and b/Resources/Textures/Objects/Devices/pda.rsi/pda-pathologist.png differ diff --git a/Tools/publish_github_artifact.py b/Tools/publish_github_artifact.py index c5ea85ef707..2897a368dd8 100755 --- a/Tools/publish_github_artifact.py +++ b/Tools/publish_github_artifact.py @@ -9,13 +9,13 @@ ARTIFACT_ID = os.environ["ARTIFACT_ID"] GITHUB_REPOSITORY = os.environ["GITHUB_REPOSITORY"] VERSION = os.environ['GITHUB_SHA'] +FORK_ID = os.environ['FORK_ID'] # # CONFIGURATION PARAMETERS # Forks should change these to publish to their own infrastructure. # ROBUST_CDN_URL = "https://cdn.station14.ru/" -FORK_ID = "syndicate" def main(): print("Fetching artifact URL from API...")