From 38e3455803996243304eecdf2d6ac9716e52f74b Mon Sep 17 00:00:00 2001 From: Dvir Date: Mon, 22 Apr 2024 01:36:20 +0300 Subject: [PATCH] Evil Ships --- .../Systems/ShipyardSystem.Consoles.cs | 12 +- .../SharedShipyardConsoleComponent.cs | 3 - .../Shipyard/SharedShipyardSystem.cs | 4 + Resources/Maps/_NF/POI/lpbravo.yml | 42 +- .../Maps/_NF/Shuttles/Blackmarket/menace.yml | 778 ++++---- .../_NF/Shuttles/Blackmarket/schooner.yml | 1610 +++++++++-------- .../_NF/Shuttles/Syndicate/infiltrator.yml | 25 +- .../Machines/Computers/computers.yml | 196 -- .../Machines/Computers/computers_shipyard.yml | 223 +++ ....yml => computers_shipyard_mothership.yml} | 0 .../_NF/Shipyard/Blackmarket/menace.yml | 4 +- .../_NF/Shipyard/Blackmarket/schooner.yml | 4 +- .../_NF/Shipyard/Syndicate/hunter.yml | 2 +- .../_NF/Shipyard/Syndicate/infiltrator.yml | 4 +- 14 files changed, 1502 insertions(+), 1405 deletions(-) create mode 100644 Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_shipyard.yml rename Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/{mothership-computers.yml => computers_shipyard_mothership.yml} (100%) diff --git a/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs index 629d2e12ed4..adb197d6847 100644 --- a/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs +++ b/Content.Server/Shipyard/Systems/ShipyardSystem.Consoles.cs @@ -239,11 +239,11 @@ private void OnPurchaseMessage(EntityUid uid, ShipyardConsoleComponent component if (TryComp(targetId, out var deed)) sellValue = (int) _pricing.AppraiseGrid((EntityUid) (deed?.ShuttleUid!)); - if (ShipyardConsoleUiKey.BlackMarket == (ShipyardConsoleUiKey) args.UiKey) + if (ShipyardConsoleUiKey.BlackMarket == (ShipyardConsoleUiKey) args.UiKey || ShipyardConsoleUiKey.Syndicate == (ShipyardConsoleUiKey) args.UiKey) // Unhardcode this please { var tax = (int) (sellValue * 0.30f); sellValue -= tax; - channel = component.BlackMarketShipyardChannel; + channel = component.ShipyardChannel; SendPurchaseMessage(uid, player, name, component.SecurityShipyardChannel, true); } @@ -334,7 +334,7 @@ public void OnSellMessage(EntityUid uid, ShipyardConsoleComponent component, Shi if (ShipyardConsoleUiKey.Security == (ShipyardConsoleUiKey) args.UiKey) channel = component.SecurityShipyardChannel; - if (ShipyardConsoleUiKey.BlackMarket == (ShipyardConsoleUiKey) args.UiKey) + if (ShipyardConsoleUiKey.BlackMarket == (ShipyardConsoleUiKey) args.UiKey || ShipyardConsoleUiKey.Syndicate == (ShipyardConsoleUiKey) args.UiKey) // Unhardcode this please { var tax = (int) (bill * 0.30f); var query = EntityQueryEnumerator(); @@ -345,7 +345,7 @@ public void OnSellMessage(EntityUid uid, ShipyardConsoleComponent component, Shi } bill -= tax; - channel = component.BlackMarketShipyardChannel; + channel = component.ShipyardChannel; SendSellMessage(uid, deed.ShuttleOwner!, GetFullName(deed), component.SecurityShipyardChannel, player, true); } @@ -389,7 +389,7 @@ private void OnConsoleUIOpened(EntityUid uid, ShipyardConsoleComponent component if (deed?.ShuttleUid != null) sellValue = (int) _pricing.AppraiseGrid((EntityUid) (deed?.ShuttleUid!)); - if (ShipyardConsoleUiKey.BlackMarket == (ShipyardConsoleUiKey) uiComp.Key) + if (ShipyardConsoleUiKey.BlackMarket == (ShipyardConsoleUiKey) args.UiKey || ShipyardConsoleUiKey.Syndicate == (ShipyardConsoleUiKey) args.UiKey) // Unhardcode this please { var tax = (int) (sellValue * 0.30f); sellValue -= tax; @@ -477,7 +477,7 @@ private void OnItemSlotChanged(EntityUid uid, ShipyardConsoleComponent component if (deed?.ShuttleUid != null) sellValue = (int) _pricing.AppraiseGrid((EntityUid) (deed?.ShuttleUid!)); - if (ShipyardConsoleUiKey.BlackMarket == (ShipyardConsoleUiKey) uiComp.Key) + if (ShipyardConsoleUiKey.BlackMarket == (ShipyardConsoleUiKey) uiComp.Key || ShipyardConsoleUiKey.Syndicate == (ShipyardConsoleUiKey) uiComp.Key) // Unhardcode this please { var tax = (int) (sellValue * 0.30f); sellValue -= tax; diff --git a/Content.Shared/Shipyard/Components/SharedShipyardConsoleComponent.cs b/Content.Shared/Shipyard/Components/SharedShipyardConsoleComponent.cs index d14643c4548..cc5910533e8 100644 --- a/Content.Shared/Shipyard/Components/SharedShipyardConsoleComponent.cs +++ b/Content.Shared/Shipyard/Components/SharedShipyardConsoleComponent.cs @@ -26,7 +26,4 @@ public sealed partial class ShipyardConsoleComponent : Component [DataField("securityShipyardChannel")] public string SecurityShipyardChannel = "Nfsd"; - - [DataField("blackMarketShipyardChannel")] - public string BlackMarketShipyardChannel = "Syndicate"; } diff --git a/Content.Shared/Shipyard/SharedShipyardSystem.cs b/Content.Shared/Shipyard/SharedShipyardSystem.cs index 17a153aae75..0210911b532 100644 --- a/Content.Shared/Shipyard/SharedShipyardSystem.cs +++ b/Content.Shared/Shipyard/SharedShipyardSystem.cs @@ -13,6 +13,8 @@ public enum ShipyardConsoleUiKey : byte { Shipyard, Security, + Nfsd, + Syndicate, BlackMarket, Expedition, Scrap, @@ -29,6 +31,8 @@ public abstract class SharedShipyardSystem : EntitySystem { {ShipyardConsoleUiKey.Shipyard, "Civilian"}, {ShipyardConsoleUiKey.Security, "Security"}, + {ShipyardConsoleUiKey.Nfsd, "Nfsd"}, + {ShipyardConsoleUiKey.Syndicate, "Syndicate"}, {ShipyardConsoleUiKey.BlackMarket, "BlackMarket"}, {ShipyardConsoleUiKey.Expedition, "Expedition"}, {ShipyardConsoleUiKey.Scrap, "Scrap"}, diff --git a/Resources/Maps/_NF/POI/lpbravo.yml b/Resources/Maps/_NF/POI/lpbravo.yml index bc01b72a0b0..a589dc264a3 100644 --- a/Resources/Maps/_NF/POI/lpbravo.yml +++ b/Resources/Maps/_NF/POI/lpbravo.yml @@ -1152,6 +1152,11 @@ entities: parent: 1 - proto: BannerSyndicate entities: + - uid: 446 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 - uid: 502 components: - type: Transform @@ -1432,6 +1437,8 @@ entities: - type: Transform pos: -4.5,-5.5 parent: 1 + - type: SpamEmitSound + enabled: False - proto: BoxFolderBlack entities: - uid: 327 @@ -2547,6 +2554,23 @@ entities: rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 1 +- proto: ComputerShipyardSyndicate + entities: + - uid: 447 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - type: ContainerContainer + containers: + ShipyardConsole-targetId: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + board: !type:Container + showEnts: False + occludes: True + ents: [] - proto: ComputerSolarControl entities: - uid: 204 @@ -3491,6 +3515,8 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-5.5 parent: 1 + - type: SpamEmitSound + enabled: False - proto: SpawnMobCatSyndy entities: - uid: 652 @@ -3644,20 +3670,6 @@ entities: - type: Transform pos: -2.3828456,2.660123 parent: 1 -- proto: VendingMachineCoffee - entities: - - uid: 447 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 1 -- proto: VendingMachineDonut - entities: - - uid: 446 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 1 - proto: VendingMachineSyndieContraband entities: - uid: 516 @@ -3670,7 +3682,7 @@ entities: - uid: 187 components: - type: Transform - pos: -1.5,0.5 + pos: 0.5,-2.5 parent: 1 - proto: WallPlastitanium entities: diff --git a/Resources/Maps/_NF/Shuttles/Blackmarket/menace.yml b/Resources/Maps/_NF/Shuttles/Blackmarket/menace.yml index a4d6c223f50..f81fb108ff4 100644 --- a/Resources/Maps/_NF/Shuttles/Blackmarket/menace.yml +++ b/Resources/Maps/_NF/Shuttles/Blackmarket/menace.yml @@ -15,10 +15,11 @@ entities: - uid: 103 components: - type: MetaData - - pos: 0.015568733,-0.010050297 + - type: Transform + pos: 0.015568733,-0.010050297 parent: invalid - type: Transform - - chunks: + - type: MapGrid + chunks: 0,0: ind: 0,0 tiles: JQAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAIQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAAJQAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA @@ -35,26 +36,26 @@ entities: ind: -1,0 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAIQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: MapGrid - type: Broadphase - - bodyStatus: InAir + - type: Physics + bodyStatus: InAir angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures + - type: Fixtures + fixtures: {} - type: IFF color: '#FFC000FF' flags: HideLabel - type: OccluderTree - type: Shuttle - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: + - type: DecalGrid + chunkCollection: version: 2 nodes: - node: @@ -90,8 +91,8 @@ entities: id: WarnLineW decals: 2: -2,0 - type: DecalGrid - - version: 2 + - type: GridAtmosphere + version: 2 data: tiles: 0,0: @@ -144,737 +145,740 @@ entities: - 0 - 0 chunkSize: 4 - type: GridAtmosphere - type: GasTileOverlay - type: RadiationGridResistance - - id: mailhunter - type: BecomesStation + - type: BecomesStation + id: mailhunter - type: SpreaderGrid - proto: ActionToggleInternals entities: - uid: 53 components: - - flags: InContainer - type: MetaData - - parent: 5 - type: Transform - - container: 5 - type: InstantAction + - type: Transform + parent: 5 + - type: InstantAction + container: 5 - uid: 131 components: - - flags: InContainer - type: MetaData - - parent: 18 - type: Transform - - container: 18 - type: InstantAction + - type: Transform + parent: 18 + - type: InstantAction + container: 18 - proto: AirAlarm entities: - uid: 125 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,3.5 parent: 103 - type: Transform - - ShutdownSubscribers: + - type: DeviceList + devices: - 82 - 40 - type: DeviceNetwork - - devices: - - 82 - - 40 - type: DeviceList - proto: AirCanister entities: - uid: 2 components: - - anchored: True + - type: Transform + anchored: True pos: -0.5,0.5 parent: 103 - type: Transform - - bodyType: Static - type: Physics + - type: Physics + bodyType: Static - proto: AirlockShuttle entities: - uid: 13 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,1.5 parent: 103 - type: Transform - proto: AmeController entities: - uid: 87 components: - - pos: 1.5,0.5 + - type: Transform + pos: 1.5,0.5 parent: 103 - type: Transform - - injecting: True - type: AmeController - - containers: + - type: AmeController + injecting: True + - type: ContainerContainer + containers: AmeFuel: !type:ContainerSlot showEnts: False occludes: True ent: 88 - type: ContainerContainer + fuelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: AmeJar entities: - uid: 88 components: - - flags: InContainer - type: MetaData - - parent: 87 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 87 + - type: Physics + canCollide: False + - uid: 133 + components: + - type: Transform + pos: 1.8442372,1.3896302 + parent: 103 + - uid: 134 + components: + - type: Transform + pos: 1.5838206,1.3792136 + parent: 103 - proto: AmeShielding entities: - uid: 3 components: - - pos: -0.5,-2.5 + - type: Transform + pos: -0.5,-2.5 parent: 103 - type: Transform - uid: 6 components: - - pos: -0.5,-1.5 + - type: Transform + pos: -0.5,-1.5 parent: 103 - type: Transform - uid: 8 components: - - pos: -0.5,-0.5 + - type: Transform + pos: -0.5,-0.5 parent: 103 - type: Transform - uid: 9 components: - - pos: 0.5,-2.5 + - type: Transform + pos: 0.5,-2.5 parent: 103 - type: Transform - uid: 15 components: - - pos: 0.5,-1.5 + - type: Transform + pos: 0.5,-1.5 parent: 103 - type: Transform - - radius: 2 + - type: PointLight + radius: 2 enabled: True - type: PointLight - uid: 17 components: - - pos: 0.5,-0.5 + - type: Transform + pos: 0.5,-0.5 parent: 103 - type: Transform - uid: 110 components: - - pos: 1.5,-0.5 + - type: Transform + pos: 1.5,-0.5 parent: 103 - type: Transform - uid: 111 components: - - pos: 1.5,-1.5 + - type: Transform + pos: 1.5,-1.5 parent: 103 - type: Transform - uid: 112 components: - - pos: 1.5,-2.5 + - type: Transform + pos: 1.5,-2.5 parent: 103 - type: Transform - proto: APCBasic entities: - uid: 84 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,1.5 parent: 103 - type: Transform - proto: AtmosDeviceFanTiny entities: - uid: 45 components: - - pos: -2.5,1.5 + - type: Transform + pos: -2.5,1.5 parent: 103 - type: Transform - uid: 86 components: - - pos: 2.5,2.5 + - type: Transform + pos: 2.5,2.5 parent: 103 - type: Transform - proto: AtmosFixBlockerMarker entities: - uid: 57 components: - - pos: 3.5,0.5 + - type: Transform + pos: 3.5,0.5 parent: 103 - type: Transform - uid: 77 components: - - pos: -2.5,3.5 + - type: Transform + pos: -2.5,3.5 parent: 103 - type: Transform - uid: 78 components: - - pos: 3.5,2.5 + - type: Transform + pos: 3.5,2.5 parent: 103 - type: Transform - uid: 89 components: - - pos: 3.5,1.5 + - type: Transform + pos: 3.5,1.5 parent: 103 - type: Transform - uid: 92 components: - - pos: 3.5,3.5 + - type: Transform + pos: 3.5,3.5 parent: 103 - type: Transform - uid: 98 components: - - pos: -2.5,4.5 + - type: Transform + pos: -2.5,4.5 parent: 103 - type: Transform - uid: 99 components: - - pos: -1.5,4.5 + - type: Transform + pos: -1.5,4.5 parent: 103 - type: Transform - uid: 107 components: - - pos: 2.5,-3.5 + - type: Transform + pos: 2.5,-3.5 parent: 103 - type: Transform - uid: 108 components: - - pos: -1.5,-3.5 + - type: Transform + pos: -1.5,-3.5 parent: 103 - type: Transform - uid: 109 components: - - pos: -2.5,-2.5 + - type: Transform + pos: -2.5,-2.5 parent: 103 - type: Transform - uid: 121 components: - - pos: 3.5,4.5 + - type: Transform + pos: 3.5,4.5 parent: 103 - type: Transform - uid: 122 components: - - pos: 2.5,4.5 + - type: Transform + pos: 2.5,4.5 parent: 103 - type: Transform - proto: BlastDoor entities: - uid: 81 components: - - pos: 2.5,2.5 + - type: Transform + pos: 2.5,2.5 parent: 103 - type: Transform - - links: + - type: DeviceLinkSink + links: - 61 - type: DeviceLinkSink - proto: CableApcExtension entities: - uid: 19 components: - - pos: 2.5,1.5 + - type: Transform + pos: 2.5,1.5 parent: 103 - type: Transform - uid: 23 components: - - pos: 0.5,-1.5 + - type: Transform + pos: 0.5,-1.5 parent: 103 - type: Transform - uid: 24 components: - - pos: 0.5,-2.5 + - type: Transform + pos: 0.5,-2.5 parent: 103 - type: Transform - uid: 27 components: - - pos: 1.5,2.5 + - type: Transform + pos: 1.5,2.5 parent: 103 - type: Transform - uid: 31 components: - - pos: 1.5,3.5 + - type: Transform + pos: 1.5,3.5 parent: 103 - type: Transform - uid: 51 components: - - pos: 1.5,1.5 + - type: Transform + pos: 1.5,1.5 parent: 103 - type: Transform - uid: 68 components: - - pos: 0.5,-0.5 + - type: Transform + pos: 0.5,-0.5 parent: 103 - type: Transform - uid: 73 components: - - pos: 0.5,0.5 + - type: Transform + pos: 0.5,0.5 parent: 103 - type: Transform - uid: 74 components: - - pos: 0.5,1.5 + - type: Transform + pos: 0.5,1.5 parent: 103 - type: Transform - uid: 79 components: - - pos: -0.5,1.5 + - type: Transform + pos: -0.5,1.5 parent: 103 - type: Transform - uid: 80 components: - - pos: -1.5,1.5 + - type: Transform + pos: -1.5,1.5 parent: 103 - type: Transform - uid: 113 components: - - pos: -0.5,-2.5 + - type: Transform + pos: -0.5,-2.5 parent: 103 - type: Transform - uid: 120 components: - - pos: -1.5,2.5 + - type: Transform + pos: -1.5,2.5 parent: 103 - type: Transform - proto: CableHV entities: - uid: 43 components: - - pos: 2.5,0.5 + - type: Transform + pos: 2.5,0.5 parent: 103 - type: Transform - uid: 104 components: - - pos: 1.5,0.5 + - type: Transform + pos: 1.5,0.5 parent: 103 - type: Transform - proto: CableMV entities: - uid: 33 components: - - pos: 2.5,1.5 + - type: Transform + pos: 2.5,1.5 parent: 103 - type: Transform - uid: 67 components: - - pos: 2.5,0.5 + - type: Transform + pos: 2.5,0.5 parent: 103 - type: Transform - proto: Catwalk entities: - uid: 4 components: - - pos: 0.5,-1.5 + - type: Transform + pos: 0.5,-1.5 parent: 103 - type: Transform - uid: 7 components: - - pos: 0.5,-0.5 + - type: Transform + pos: 0.5,-0.5 parent: 103 - type: Transform - uid: 14 components: - - pos: 0.5,-2.5 + - type: Transform + pos: 0.5,-2.5 parent: 103 - type: Transform - uid: 47 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,4.5 parent: 103 - type: Transform - uid: 48 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,0.5 parent: 103 - type: Transform - uid: 49 components: - - pos: -2.5,-2.5 + - type: Transform + pos: -2.5,-2.5 parent: 103 - type: Transform - uid: 50 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,2.5 parent: 103 - type: Transform - uid: 56 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,4.5 parent: 103 - type: Transform - uid: 94 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,4.5 parent: 103 - type: Transform - uid: 101 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,3.5 parent: 103 - type: Transform - uid: 102 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 103 - type: Transform - uid: 105 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,4.5 parent: 103 - type: Transform - uid: 118 components: - - pos: -2.5,3.5 + - type: Transform + pos: -2.5,3.5 parent: 103 - type: Transform - proto: ChairWood entities: - uid: 55 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,2.5 parent: 103 - type: Transform - proto: ComputerTabletopIFF entities: - uid: 63 components: - - pos: 1.5,3.5 + - type: Transform + pos: 1.5,3.5 parent: 103 - type: Transform - proto: ComputerTabletopShuttle entities: - uid: 95 components: - - pos: 0.5,3.5 + - type: Transform + pos: 0.5,3.5 parent: 103 - type: Transform - proto: ComputerTabletopStationRecords entities: - uid: 96 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,2.5 parent: 103 - type: Transform +- proto: CratePirateChest + entities: + - uid: 135 + components: + - type: Transform + pos: 1.5,2.5 + parent: 103 - proto: DefibrillatorCabinetFilled entities: - uid: 117 components: - - pos: -1.5,3.5 + - type: Transform + pos: -1.5,3.5 parent: 103 - type: Transform - proto: EmergencyLight entities: - uid: 128 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,1.5 parent: 103 - type: Transform - proto: ExtinguisherCabinetFilled entities: - uid: 124 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,2.5 parent: 103 - type: Transform - proto: FaxMachineShipAntag entities: - uid: 22 components: - - pos: -0.5,3.5 + - type: Transform + pos: -0.5,3.5 parent: 103 - type: Transform - proto: GasPassiveVent entities: - uid: 114 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,2.5 parent: 103 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeStraight entities: - uid: 41 components: - - pos: -0.5,2.5 + - type: Transform + pos: -0.5,2.5 parent: 103 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000CCFF' - uid: 62 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 103 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - uid: 115 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,2.5 parent: 103 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPort entities: - uid: 39 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,0.5 parent: 103 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000CCFF' - proto: GasPressurePump entities: - uid: 37 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,1.5 parent: 103 - type: Transform - - color: '#0000CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000CCFF' - uid: 69 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,2.5 parent: 103 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - proto: GasVentPump entities: - uid: 40 components: - - pos: -0.5,3.5 + - type: Transform + pos: -0.5,3.5 parent: 103 - type: Transform - - ShutdownSubscribers: - - 125 - type: DeviceNetwork - - color: '#0000CCFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000CCFF' - proto: GasVentScrubber entities: - uid: 82 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,2.5 parent: 103 - type: Transform - - ShutdownSubscribers: - - 125 - type: DeviceNetwork - - color: '#990000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#990000FF' - proto: GravityGeneratorMini entities: - uid: 1 components: - - pos: -1.5,-0.5 + - type: Transform + pos: -1.5,-0.5 parent: 103 - type: Transform - proto: Grille entities: - uid: 26 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,4.5 parent: 103 - type: Transform - uid: 35 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,0.5 parent: 103 - type: Transform - uid: 36 components: - - pos: -2.5,-0.5 + - type: Transform + pos: -2.5,-0.5 parent: 103 - type: Transform - uid: 52 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,4.5 parent: 103 - type: Transform - uid: 100 components: - - pos: 1.5,4.5 + - type: Transform + pos: 1.5,4.5 parent: 103 - type: Transform - proto: GunSafeShuttleT3Spawner entities: - uid: 34 components: - - pos: -1.5,2.5 + - type: Transform + pos: -1.5,2.5 parent: 103 - type: Transform - proto: Gyroscope entities: - uid: 119 components: - - pos: -1.5,0.5 + - type: Transform + pos: -1.5,0.5 parent: 103 - type: Transform - proto: NitrousOxideTankFilled entities: - uid: 5 components: - - pos: -0.48881638,3.010011 + - type: Transform + pos: -0.48881638,3.010011 parent: 103 - type: Transform - - toggleActionEntity: 53 - type: GasTank + - type: GasTank + toggleActionEntity: 53 - type: ActionsContainer - - containers: + - type: ContainerContainer + containers: actions: !type:Container ents: - 53 - type: ContainerContainer - uid: 18 components: - - flags: InContainer - type: MetaData - - parent: 10 - type: Transform - - toggleActionEntity: 131 - type: GasTank - - canCollide: False - type: Physics + - type: Transform + parent: 10 + - type: GasTank + toggleActionEntity: 131 + - type: Physics + canCollide: False - type: ActionsContainer - - containers: + - type: ContainerContainer + containers: actions: !type:Container ents: - 131 - type: ContainerContainer - proto: PoweredlightColoredBlack entities: - uid: 127 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,0.5 parent: 103 - type: Transform - proto: ReinforcedPlasmaWindow entities: - uid: 75 components: - - pos: 1.5,4.5 + - type: Transform + pos: 1.5,4.5 parent: 103 - type: Transform - uid: 83 components: - - pos: -2.5,0.5 + - type: Transform + pos: -2.5,0.5 parent: 103 - type: Transform - uid: 126 components: - - pos: -0.5,4.5 + - type: Transform + pos: -0.5,4.5 parent: 103 - type: Transform - uid: 129 components: - - pos: -2.5,-0.5 + - type: Transform + pos: -2.5,-0.5 parent: 103 - type: Transform - uid: 130 components: - - pos: 0.5,4.5 + - type: Transform + pos: 0.5,4.5 parent: 103 - type: Transform - proto: ShuttersRadiationOpen entities: - uid: 137 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,0.5 parent: 103 - type: Transform - - links: + - type: DeviceLinkSink + links: - 143 - type: DeviceLinkSink - uid: 138 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-0.5 parent: 103 - type: Transform - - links: + - type: DeviceLinkSink + links: - 143 - type: DeviceLinkSink - uid: 139 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 103 - type: Transform - - links: + - type: DeviceLinkSink + links: - 143 - type: DeviceLinkSink - uid: 140 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 103 - type: Transform - - links: + - type: DeviceLinkSink + links: - 143 - type: DeviceLinkSink - uid: 141 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 103 - type: Transform - - links: + - type: DeviceLinkSink + links: - 143 - type: DeviceLinkSink - uid: 142 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,1.5 parent: 103 - type: Transform - - links: + - type: DeviceLinkSink + links: - 143 - type: DeviceLinkSink - proto: SignalButton entities: - uid: 61 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,3.5 parent: 103 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 81: - Pressed: Toggle - type: DeviceLinkSource - uid: 143 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5008554,3.2410142 parent: 103 - type: Transform - - linkedPorts: + - type: DeviceLinkSource + linkedPorts: 141: - Pressed: Toggle 140: @@ -887,257 +891,236 @@ entities: - Pressed: Toggle 138: - Pressed: Toggle - type: DeviceLinkSource - proto: SignMail entities: - uid: 136 components: - - pos: -2.5,-1.5 + - type: Transform + pos: -2.5,-1.5 parent: 103 - type: Transform - proto: SpawnPointLatejoin entities: - uid: 60 components: - - pos: 0.5,1.5 + - type: Transform + pos: 0.5,1.5 parent: 103 - type: Transform -- proto: SpawnPointMailCarrier - entities: - - uid: 135 - components: - - pos: -0.5,1.5 - parent: 103 - type: Transform -- proto: SpawnPointMercenary - entities: - - uid: 132 - components: - - pos: 1.5,1.5 - parent: 103 - type: Transform -- proto: SpawnPointPilot - entities: - - uid: 133 - components: - - pos: 0.5,2.5 - parent: 103 - type: Transform - proto: SubstationWallBasic entities: - uid: 72 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 103 - type: Transform - proto: SuitStorageEVAPirate entities: - uid: 123 components: - - pos: 0.5,0.5 + - type: Transform + pos: 0.5,0.5 parent: 103 - type: Transform - proto: TableCarpet entities: - uid: 32 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 103 - type: Transform - proto: TableWoodReinforced entities: - uid: 11 components: - - pos: -0.5,2.5 + - type: Transform + pos: -0.5,2.5 parent: 103 - type: Transform - uid: 21 components: - - pos: -0.5,3.5 + - type: Transform + pos: -0.5,3.5 parent: 103 - type: Transform - uid: 54 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,3.5 parent: 103 - type: Transform - uid: 58 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,3.5 parent: 103 - type: Transform - proto: Thruster entities: - uid: 65 components: - - pos: -2.5,4.5 + - type: Transform + pos: -2.5,4.5 parent: 103 - type: Transform - uid: 76 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-2.5 parent: 103 - type: Transform - uid: 97 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,0.5 parent: 103 - type: Transform - uid: 116 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,4.5 parent: 103 - type: Transform - proto: WallMining entities: - uid: 12 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 103 - type: Transform - uid: 16 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-1.5 parent: 103 - type: Transform - uid: 20 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,3.5 parent: 103 - type: Transform - uid: 25 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-2.5 parent: 103 - type: Transform - uid: 28 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-0.5 parent: 103 - type: Transform - uid: 30 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-3.5 parent: 103 - type: Transform - uid: 38 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,2.5 parent: 103 - type: Transform - uid: 42 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,-3.5 parent: 103 - type: Transform - uid: 44 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-2.5 parent: 103 - type: Transform - uid: 59 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,1.5 parent: 103 - type: Transform - uid: 66 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,3.5 parent: 103 - type: Transform - uid: 71 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-3.5 parent: 103 - type: Transform - uid: 91 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 103 - type: Transform - uid: 106 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 103 - type: Transform - proto: WallMiningDiagonal entities: - uid: 29 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-3.5 parent: 103 - type: Transform - uid: 46 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,1.5 parent: 103 - type: Transform - uid: 64 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-3.5 parent: 103 - type: Transform - uid: 70 components: - - pos: -2.5,3.5 + - type: Transform + pos: -2.5,3.5 parent: 103 - type: Transform - uid: 85 components: - - pos: -1.5,4.5 + - type: Transform + pos: -1.5,4.5 parent: 103 - type: Transform - uid: 90 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,3.5 parent: 103 - type: Transform - uid: 93 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,4.5 parent: 103 - type: Transform - proto: WarpPointShip entities: - - uid: 134 + - uid: 132 components: - - pos: 1.5,2.5 + - type: Transform + pos: -0.5,1.5 parent: 103 - type: Transform - proto: WeaponImprovisedPneumaticCannon entities: - uid: 10 components: - - pos: -0.3918358,2.7159653 + - type: Transform + pos: -0.3918358,2.7159653 parent: 103 - type: Transform - - containers: + - type: ContainerContainer + containers: storagebase: !type:Container showEnts: False occludes: True @@ -1146,5 +1129,4 @@ entities: showEnts: False occludes: True ent: 18 - type: ContainerContainer ... diff --git a/Resources/Maps/_NF/Shuttles/Blackmarket/schooner.yml b/Resources/Maps/_NF/Shuttles/Blackmarket/schooner.yml index ff6f70d376a..24995baef86 100644 --- a/Resources/Maps/_NF/Shuttles/Blackmarket/schooner.yml +++ b/Resources/Maps/_NF/Shuttles/Blackmarket/schooner.yml @@ -4,11 +4,11 @@ meta: tilemap: 0: Space 58: FloorHullReinforced - 105: FloorTechMaint - 119: FloorWood - 120: FloorWoodTile - 121: Lattice - 122: Plating + 107: FloorTechMaint + 121: FloorWood + 123: FloorWoodTile + 124: Lattice + 125: Plating entities: - proto: "" entities: @@ -22,23 +22,23 @@ entities: chunks: 0,0: ind: 0,0 - tiles: egAAAAAAdwAAAAABdwAAAAACdwAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAABdwAAAAAAdwAAAAACeAAAAAADOgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAABdwAAAAABdwAAAAACeAAAAAACOgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAACdwAAAAADdwAAAAACeAAAAAACOgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAACegAAAAAAdwAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAADdwAAAAAAdwAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAACdwAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fQAAAAAAeQAAAAABeQAAAAACeQAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAewAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAACeQAAAAABeQAAAAAAeQAAAAACewAAAAADOgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAABeQAAAAABeQAAAAACewAAAAACOgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAABeQAAAAACeQAAAAADeQAAAAACewAAAAACOgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAABeQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAewAAAAACfQAAAAAAeQAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAADeQAAAAADeQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAADeQAAAAAAeQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAACeQAAAAACfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAACeQAAAAACfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAABeQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeAAAAAABegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAAAdwAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAACdwAAAAACdwAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAADdwAAAAACdwAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACegAAAAAAegAAAAAAeAAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAAAeAAAAAACOgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAABdwAAAAAAdwAAAAACeAAAAAABOgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAABdwAAAAACdwAAAAACeAAAAAAAOgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAewAAAAABfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAADeQAAAAAAeQAAAAADfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAACeQAAAAACeQAAAAACeQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAADeQAAAAADeQAAAAACeQAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAACfQAAAAAAfQAAAAAAewAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAeQAAAAADeQAAAAAAewAAAAACOgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAADeQAAAAABeQAAAAAAeQAAAAACewAAAAABOgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAACeQAAAAABeQAAAAACeQAAAAACewAAAAAAOgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAewAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAADeQAAAAABeQAAAAACfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAeAAAAAABdwAAAAACdwAAAAAAdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAeAAAAAABdwAAAAAAdwAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAeAAAAAABdwAAAAACdwAAAAAAdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAADdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAeQAAAAACeQAAAAAAeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAewAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOgAAAAAAewAAAAABeQAAAAACeQAAAAAAeQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOgAAAAAAewAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOgAAAAAAewAAAAABeQAAAAACeQAAAAAAeQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAawAAAAAAfQAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAewAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAeQAAAAADeQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAeQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAeAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeAAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAeAAAAAACdwAAAAACdwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAeAAAAAADdwAAAAACdwAAAAADdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAeAAAAAADdwAAAAAAdwAAAAAAdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAewAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAeQAAAAACeQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAADeQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAeQAAAAADeQAAAAADeQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAewAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOgAAAAAAewAAAAACeQAAAAACeQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOgAAAAAAewAAAAADeQAAAAACeQAAAAADeQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOgAAAAAAewAAAAADeQAAAAAAeQAAAAAAeQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAewAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 0,1: ind: 0,1 - tiles: eQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -432,7 +432,8 @@ entities: 0,-1: 0: 65535 -1,0: - 0: 65535 + 0: 63487 + 1: 2048 -1,-1: 0: 65407 1: 128 @@ -517,137 +518,362 @@ entities: id: Schooner - proto: AirCanister entities: - - uid: 174 + - uid: 2 components: - type: Transform pos: -2.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: AirlockGlassShuttle entities: - - uid: 448 + - uid: 3 components: - type: Transform pos: 1.5,-9.5 parent: 1 - - uid: 449 + - uid: 4 components: - type: Transform pos: -0.5,-9.5 parent: 1 - proto: APCBasic entities: - - uid: 139 + - uid: 5 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,8.5 parent: 1 - - uid: 140 + - uid: 6 components: - type: Transform pos: 1.5,-5.5 parent: 1 - proto: AtmosDeviceFanTiny entities: - - uid: 80 + - uid: 7 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 81 + - uid: 8 components: - type: Transform pos: 4.5,3.5 parent: 1 - - uid: 82 + - uid: 9 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 83 + - uid: 10 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 84 + - uid: 11 components: - type: Transform pos: -3.5,3.5 parent: 1 - - uid: 85 + - uid: 12 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 86 + - uid: 13 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 87 + - uid: 14 components: - type: Transform pos: 4.5,-3.5 parent: 1 - - uid: 88 + - uid: 15 components: - type: Transform pos: 4.5,-4.5 parent: 1 - - uid: 89 + - uid: 16 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 90 + - uid: 17 components: - type: Transform pos: -3.5,-3.5 parent: 1 - - uid: 91 + - uid: 18 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 446 + - uid: 19 components: - type: Transform pos: -0.5,-9.5 parent: 1 - - uid: 447 + - uid: 20 components: - type: Transform pos: 1.5,-9.5 parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 226 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 521 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 522 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 523 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 525 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 538 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 + - uid: 542 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 543 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 544 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 548 + components: + - type: Transform + pos: 1.5,15.5 + parent: 1 - proto: Bed entities: - - uid: 145 + - uid: 21 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 146 + - uid: 22 components: - type: Transform pos: -0.5,-0.5 parent: 1 - proto: BedsheetSpawner entities: - - uid: 147 + - uid: 23 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 148 + - uid: 24 components: - type: Transform pos: -0.5,-0.5 parent: 1 - proto: BenchSofaLeft entities: - - uid: 157 + - uid: 25 components: - type: Transform pos: 1.5,12.5 @@ -656,7 +882,7 @@ entities: bodyType: Static - proto: BenchSofaMiddle entities: - - uid: 159 + - uid: 26 components: - type: Transform pos: 0.5,12.5 @@ -665,7 +891,7 @@ entities: bodyType: Static - proto: BenchSofaRight entities: - - uid: 158 + - uid: 27 components: - type: Transform pos: -0.5,12.5 @@ -674,765 +900,765 @@ entities: bodyType: Static - proto: CableApcExtension entities: - - uid: 253 + - uid: 28 components: - type: Transform pos: 0.5,16.5 parent: 1 - - uid: 338 + - uid: 29 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 339 + - uid: 30 components: - type: Transform pos: 0.5,-5.5 parent: 1 - - uid: 340 + - uid: 31 components: - type: Transform pos: -0.5,-5.5 parent: 1 - - uid: 341 + - uid: 32 components: - type: Transform pos: -0.5,-6.5 parent: 1 - - uid: 342 + - uid: 33 components: - type: Transform pos: -1.5,-6.5 parent: 1 - - uid: 343 + - uid: 34 components: - type: Transform pos: -2.5,-6.5 parent: 1 - - uid: 344 + - uid: 35 components: - type: Transform pos: -2.5,-7.5 parent: 1 - - uid: 345 + - uid: 36 components: - type: Transform pos: -1.5,-7.5 parent: 1 - - uid: 346 + - uid: 37 components: - type: Transform pos: -1.5,-8.5 parent: 1 - - uid: 347 + - uid: 38 components: - type: Transform pos: -0.5,-8.5 parent: 1 - - uid: 348 + - uid: 39 components: - type: Transform pos: 0.5,-8.5 parent: 1 - - uid: 349 + - uid: 40 components: - type: Transform pos: 1.5,-8.5 parent: 1 - - uid: 350 + - uid: 41 components: - type: Transform pos: 2.5,-8.5 parent: 1 - - uid: 351 + - uid: 42 components: - type: Transform pos: 2.5,-7.5 parent: 1 - - uid: 352 + - uid: 43 components: - type: Transform pos: 2.5,-6.5 parent: 1 - - uid: 353 + - uid: 44 components: - type: Transform pos: 3.5,-6.5 parent: 1 - - uid: 354 + - uid: 45 components: - type: Transform pos: 3.5,-7.5 parent: 1 - - uid: 355 + - uid: 46 components: - type: Transform pos: -3.5,-7.5 parent: 1 - - uid: 356 + - uid: 47 components: - type: Transform pos: -3.5,-6.5 parent: 1 - - uid: 357 + - uid: 48 components: - type: Transform pos: 4.5,-7.5 parent: 1 - - uid: 358 + - uid: 49 components: - type: Transform pos: 4.5,-6.5 parent: 1 - - uid: 359 + - uid: 50 components: - type: Transform pos: -3.5,-8.5 parent: 1 - - uid: 360 + - uid: 51 components: - type: Transform pos: 4.5,-8.5 parent: 1 - - uid: 361 + - uid: 52 components: - type: Transform pos: -2.5,-5.5 parent: 1 - - uid: 362 + - uid: 53 components: - type: Transform pos: -2.5,-4.5 parent: 1 - - uid: 363 + - uid: 54 components: - type: Transform pos: -2.5,-3.5 parent: 1 - - uid: 364 + - uid: 55 components: - type: Transform pos: -2.5,-2.5 parent: 1 - - uid: 365 + - uid: 56 components: - type: Transform pos: -1.5,-2.5 parent: 1 - - uid: 366 + - uid: 57 components: - type: Transform pos: -0.5,-2.5 parent: 1 - - uid: 367 + - uid: 58 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 368 + - uid: 59 components: - type: Transform pos: 1.5,-2.5 parent: 1 - - uid: 369 + - uid: 60 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 370 + - uid: 61 components: - type: Transform pos: 3.5,-2.5 parent: 1 - - uid: 371 + - uid: 62 components: - type: Transform pos: 3.5,-3.5 parent: 1 - - uid: 372 + - uid: 63 components: - type: Transform pos: 3.5,-4.5 parent: 1 - - uid: 373 + - uid: 64 components: - type: Transform pos: 3.5,-5.5 parent: 1 - - uid: 374 + - uid: 65 components: - type: Transform pos: 4.5,-2.5 parent: 1 - - uid: 375 + - uid: 66 components: - type: Transform pos: 5.5,-2.5 parent: 1 - - uid: 376 + - uid: 67 components: - type: Transform pos: 5.5,-3.5 parent: 1 - - uid: 377 + - uid: 68 components: - type: Transform pos: 5.5,-4.5 parent: 1 - - uid: 378 + - uid: 69 components: - type: Transform pos: 4.5,-4.5 parent: 1 - - uid: 379 + - uid: 70 components: - type: Transform pos: -3.5,-2.5 parent: 1 - - uid: 380 + - uid: 71 components: - type: Transform pos: -4.5,-2.5 parent: 1 - - uid: 381 + - uid: 72 components: - type: Transform pos: -4.5,-3.5 parent: 1 - - uid: 382 + - uid: 73 components: - type: Transform pos: -4.5,-4.5 parent: 1 - - uid: 383 + - uid: 74 components: - type: Transform pos: -3.5,-4.5 parent: 1 - - uid: 384 + - uid: 75 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 385 + - uid: 76 components: - type: Transform pos: -0.5,8.5 parent: 1 - - uid: 386 + - uid: 77 components: - type: Transform pos: -1.5,8.5 parent: 1 - - uid: 387 + - uid: 78 components: - type: Transform pos: -2.5,8.5 parent: 1 - - uid: 389 + - uid: 79 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 390 + - uid: 80 components: - type: Transform pos: 2.5,8.5 parent: 1 - - uid: 391 + - uid: 81 components: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 392 + - uid: 82 components: - type: Transform pos: 1.5,9.5 parent: 1 - - uid: 393 + - uid: 83 components: - type: Transform pos: 1.5,10.5 parent: 1 - - uid: 394 + - uid: 84 components: - type: Transform pos: 1.5,11.5 parent: 1 - - uid: 395 + - uid: 85 components: - type: Transform pos: 1.5,12.5 parent: 1 - - uid: 396 + - uid: 86 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 397 + - uid: 87 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 398 + - uid: 88 components: - type: Transform pos: 0.5,13.5 parent: 1 - - uid: 399 + - uid: 89 components: - type: Transform pos: -0.5,12.5 parent: 1 - - uid: 400 + - uid: 90 components: - type: Transform pos: -0.5,11.5 parent: 1 - - uid: 401 + - uid: 91 components: - type: Transform pos: -0.5,10.5 parent: 1 - - uid: 402 + - uid: 92 components: - type: Transform pos: -1.5,10.5 parent: 1 - - uid: 403 + - uid: 93 components: - type: Transform pos: -1.5,9.5 parent: 1 - - uid: 404 + - uid: 94 components: - type: Transform pos: -2.5,7.5 parent: 1 - - uid: 405 + - uid: 95 components: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 406 + - uid: 96 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 407 + - uid: 97 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 408 + - uid: 98 components: - type: Transform pos: -3.5,8.5 parent: 1 - - uid: 409 + - uid: 99 components: - type: Transform pos: 0.5,14.5 parent: 1 - - uid: 410 + - uid: 100 components: - type: Transform pos: 0.5,15.5 parent: 1 - - uid: 411 + - uid: 101 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 412 + - uid: 102 components: - type: Transform pos: 4.5,7.5 parent: 1 - - uid: 413 + - uid: 103 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 414 + - uid: 104 components: - type: Transform pos: 3.5,6.5 parent: 1 - - uid: 415 + - uid: 105 components: - type: Transform pos: 3.5,7.5 parent: 1 - - uid: 416 + - uid: 106 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 417 + - uid: 107 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 418 + - uid: 108 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 419 + - uid: 109 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 420 + - uid: 110 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 421 + - uid: 111 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 422 + - uid: 112 components: - type: Transform pos: 3.5,4.5 parent: 1 - - uid: 423 + - uid: 113 components: - type: Transform pos: 4.5,4.5 parent: 1 - - uid: 424 + - uid: 114 components: - type: Transform pos: 5.5,4.5 parent: 1 - - uid: 425 + - uid: 115 components: - type: Transform pos: 5.5,3.5 parent: 1 - - uid: 426 + - uid: 116 components: - type: Transform pos: 5.5,2.5 parent: 1 - - uid: 427 + - uid: 117 components: - type: Transform pos: 4.5,2.5 parent: 1 - - uid: 428 + - uid: 118 components: - type: Transform pos: 3.5,2.5 parent: 1 - - uid: 429 + - uid: 119 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 430 + - uid: 120 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 431 + - uid: 121 components: - type: Transform pos: 0.5,4.5 parent: 1 - - uid: 432 + - uid: 122 components: - type: Transform pos: -0.5,4.5 parent: 1 - - uid: 433 + - uid: 123 components: - type: Transform pos: -1.5,4.5 parent: 1 - - uid: 434 + - uid: 124 components: - type: Transform pos: -2.5,4.5 parent: 1 - - uid: 435 + - uid: 125 components: - type: Transform pos: -3.5,4.5 parent: 1 - - uid: 436 + - uid: 126 components: - type: Transform pos: -4.5,4.5 parent: 1 - - uid: 437 + - uid: 127 components: - type: Transform pos: -4.5,3.5 parent: 1 - - uid: 438 + - uid: 128 components: - type: Transform pos: -4.5,2.5 parent: 1 - - uid: 439 + - uid: 129 components: - type: Transform pos: -2.5,2.5 parent: 1 - - uid: 440 + - uid: 130 components: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 441 + - uid: 131 components: - type: Transform pos: -1.5,2.5 parent: 1 - - uid: 442 + - uid: 132 components: - type: Transform pos: -0.5,2.5 parent: 1 - - uid: 443 + - uid: 133 components: - type: Transform pos: 0.5,2.5 parent: 1 - - uid: 444 + - uid: 134 components: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 445 + - uid: 135 components: - type: Transform pos: -1.5,3.5 parent: 1 - proto: CableHV entities: - - uid: 135 + - uid: 136 components: - type: Transform pos: -0.5,8.5 parent: 1 - - uid: 136 + - uid: 137 components: - type: Transform pos: -0.5,7.5 parent: 1 - - uid: 137 + - uid: 138 components: - type: Transform pos: 0.5,7.5 parent: 1 - proto: CableMV entities: - - uid: 320 + - uid: 139 components: - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 321 + - uid: 140 components: - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 322 + - uid: 141 components: - type: Transform pos: 1.5,7.5 parent: 1 - - uid: 323 + - uid: 142 components: - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 324 + - uid: 143 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 325 + - uid: 144 components: - type: Transform pos: 1.5,4.5 parent: 1 - - uid: 326 + - uid: 145 components: - type: Transform pos: 1.5,3.5 parent: 1 - - uid: 327 + - uid: 146 components: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 328 + - uid: 147 components: - type: Transform pos: 2.5,2.5 parent: 1 - - uid: 329 + - uid: 148 components: - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 330 + - uid: 149 components: - type: Transform pos: 2.5,0.5 parent: 1 - - uid: 331 + - uid: 150 components: - type: Transform pos: 2.5,-0.5 parent: 1 - - uid: 332 + - uid: 151 components: - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 333 + - uid: 152 components: - type: Transform pos: 2.5,-2.5 parent: 1 - - uid: 334 + - uid: 153 components: - type: Transform pos: 2.5,-3.5 parent: 1 - - uid: 335 + - uid: 154 components: - type: Transform pos: 2.5,-4.5 parent: 1 - - uid: 336 + - uid: 155 components: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 337 + - uid: 156 components: - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 388 + - uid: 157 components: - type: Transform pos: 0.5,8.5 parent: 1 - proto: CableTerminal entities: - - uid: 134 + - uid: 158 components: - type: Transform pos: -0.5,8.5 parent: 1 - proto: CannonBall entities: - - uid: 166 + - uid: 159 components: - type: Transform pos: -1.7174473,-4.5506954 parent: 1 - - uid: 167 + - uid: 160 components: - type: Transform pos: -1.5265388,-4.3122215 parent: 1 - - uid: 168 + - uid: 161 components: - type: Transform pos: -1.383357,-4.5506954 parent: 1 - proto: CarpetBlack entities: - - uid: 284 + - uid: 162 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,12.5 parent: 1 - - uid: 285 + - uid: 163 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,11.5 parent: 1 - - uid: 286 + - uid: 164 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,12.5 parent: 1 - - uid: 287 + - uid: 165 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,11.5 parent: 1 - - uid: 288 + - uid: 166 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,12.5 parent: 1 - - uid: 289 + - uid: 167 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,11.5 parent: 1 - - uid: 290 + - uid: 168 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,0.5 parent: 1 - - uid: 291 + - uid: 169 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 1 - - uid: 292 + - uid: 170 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 1 - - uid: 293 + - uid: 171 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-0.5 parent: 1 - - uid: 294 + - uid: 172 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-5.5 parent: 1 - - uid: 295 + - uid: 173 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-6.5 parent: 1 - - uid: 296 + - uid: 174 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 1 - - uid: 297 + - uid: 175 components: - type: Transform rot: -1.5707963267948966 rad @@ -1440,136 +1666,136 @@ entities: parent: 1 - proto: Catwalk entities: - - uid: 2 + - uid: 176 components: - type: Transform pos: 0.5,16.5 parent: 1 - - uid: 171 + - uid: 177 components: - type: Transform pos: -1.5,8.5 parent: 1 - - uid: 172 + - uid: 178 components: - type: Transform pos: -1.5,7.5 parent: 1 - - uid: 187 + - uid: 179 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-4.5 parent: 1 - - uid: 189 + - uid: 180 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-3.5 parent: 1 - - uid: 190 + - uid: 181 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 1 - - uid: 191 + - uid: 182 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,2.5 parent: 1 - - uid: 192 + - uid: 183 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,3.5 parent: 1 - - uid: 193 + - uid: 184 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,4.5 parent: 1 - - uid: 194 + - uid: 185 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,2.5 parent: 1 - - uid: 195 + - uid: 186 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,3.5 parent: 1 - - uid: 196 + - uid: 187 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,4.5 parent: 1 - - uid: 197 + - uid: 188 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-4.5 parent: 1 - - uid: 198 + - uid: 189 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-3.5 parent: 1 - - uid: 199 + - uid: 190 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-2.5 parent: 1 - - uid: 245 + - uid: 191 components: - type: Transform pos: 1.5,14.5 parent: 1 - - uid: 246 + - uid: 192 components: - type: Transform pos: 1.5,15.5 parent: 1 - - uid: 247 + - uid: 193 components: - type: Transform pos: 0.5,14.5 parent: 1 - - uid: 248 + - uid: 194 components: - type: Transform pos: 0.5,15.5 parent: 1 - - uid: 249 + - uid: 195 components: - type: Transform pos: -0.5,14.5 parent: 1 - - uid: 250 + - uid: 196 components: - type: Transform pos: -0.5,15.5 parent: 1 - - uid: 251 + - uid: 197 components: - type: Transform pos: 0.5,17.5 parent: 1 - - uid: 252 + - uid: 198 components: - type: Transform pos: 0.5,18.5 parent: 1 - proto: ChairPilotSeat entities: - - uid: 153 + - uid: 199 components: - type: Transform rot: 3.141592653589793 rad @@ -1577,14 +1803,14 @@ entities: parent: 1 - proto: ChairWood entities: - - uid: 154 + - uid: 200 components: - type: Transform pos: -2.5,0.5 parent: 1 -- proto: ClosetBase +- proto: ClosetSteelBase entities: - - uid: 274 + - uid: 201 components: - type: Transform pos: 3.5,0.5 @@ -1595,22 +1821,22 @@ entities: showEnts: False occludes: True ents: - - 275 - - 276 - - 277 + - 204 + - 203 + - 202 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 496 + - uid: 205 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 1 - - uid: 500 + - uid: 206 components: - type: Transform rot: 3.141592653589793 rad @@ -1618,13 +1844,13 @@ entities: parent: 1 - proto: ClosetWallFireFilledRandom entities: - - uid: 497 + - uid: 207 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,1.5 parent: 1 - - uid: 501 + - uid: 208 components: - type: Transform rot: 3.141592653589793 rad @@ -1632,87 +1858,81 @@ entities: parent: 1 - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 498 + - uid: 209 components: - type: Transform pos: -0.5,6.5 parent: 1 - proto: ClothingEyesEyepatch entities: - - uid: 455 + - uid: 210 components: - type: Transform pos: -0.3120169,12.330579 parent: 1 - - uid: 467 + - uid: 211 components: - type: Transform pos: 1.5970745,-0.4589188 parent: 1 - proto: ClothingHeadBandSkull entities: - - uid: 312 + - uid: 212 components: - type: Transform pos: 1.2214307,2.6089354 parent: 1 - proto: ClothingHeadHatPirate entities: - - uid: 474 + - uid: 213 components: - type: Transform pos: 1.5811653,12.328757 parent: 1 - proto: ClothingHeadHatPirateTricord entities: - - uid: 475 + - uid: 214 components: - type: Transform pos: -0.27106684,-0.46582198 parent: 1 - proto: ClothingNeckCloakPirateCap entities: - - uid: 277 + - uid: 202 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 274 + parent: 201 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingOuterCoatJensen entities: - - uid: 468 + - uid: 215 components: - type: Transform pos: -0.3756531,12.328757 parent: 1 - proto: ClothingOuterCoatPirate entities: - - uid: 276 + - uid: 203 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 274 + parent: 201 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPirate entities: - - uid: 275 + - uid: 204 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 274 + parent: 201 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ComputerIFF entities: - - uid: 144 + - uid: 216 components: - type: Transform rot: 1.5707963267948966 rad @@ -1720,7 +1940,7 @@ entities: parent: 1 - proto: ComputerPowerMonitoring entities: - - uid: 173 + - uid: 217 components: - type: Transform rot: 1.5707963267948966 rad @@ -1728,14 +1948,14 @@ entities: parent: 1 - proto: ComputerShuttle entities: - - uid: 142 + - uid: 218 components: - type: Transform pos: 0.5,-5.5 parent: 1 - proto: ComputerStationRecords entities: - - uid: 143 + - uid: 219 components: - type: Transform rot: -1.5707963267948966 rad @@ -1743,38 +1963,29 @@ entities: parent: 1 - proto: CrateEmptySpawner entities: - - uid: 307 + - uid: 220 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 308 + - uid: 221 components: - type: Transform pos: 2.5,4.5 parent: 1 - - uid: 309 + - uid: 222 components: - type: Transform pos: -2.5,2.5 parent: 1 -- proto: CrateFilledSpawner - entities: - - uid: 306 + - uid: 223 components: - type: Transform pos: 1.5,-2.5 parent: 1 -- proto: CrateFunPirate - entities: - - uid: 188 - components: - - type: Transform - pos: -0.5,2.5 - parent: 1 - proto: CratePirate entities: - - uid: 310 + - uid: 225 components: - type: Transform pos: -0.5,-2.5 @@ -1797,117 +2008,119 @@ entities: - 0 - 0 - 0 -- proto: Cutlass +- proto: CratePirateChest entities: - - uid: 163 + - uid: 224 components: - type: Transform - pos: -0.627528,5.5431094 + pos: -0.5,5.5 parent: 1 - - uid: 164 +- proto: CratePirateChestCaptain + entities: + - uid: 274 components: - type: Transform - pos: -0.3650282,5.4238725 + pos: -0.5,2.5 parent: 1 - proto: DefibrillatorCabinetFilled entities: - - uid: 494 + - uid: 228 components: - type: Transform pos: 2.5,5.5 parent: 1 - proto: DresserFilled entities: - - uid: 151 + - uid: 229 components: - type: Transform pos: 1.5,0.5 parent: 1 - - uid: 152 + - uid: 230 components: - type: Transform pos: -0.5,0.5 parent: 1 - proto: DrinkCubaLibreGlass entities: - - uid: 472 + - uid: 231 components: - type: Transform pos: 2.5660982,10.291233 parent: 1 - proto: DrinkFlask entities: - - uid: 451 + - uid: 232 components: - type: Transform pos: 2.6853623,-8.233373 parent: 1 - proto: DrinkRumBottleFull entities: - - uid: 466 + - uid: 233 components: - type: Transform pos: -2.7438211,-0.10760628 parent: 1 - proto: ExtinguisherCabinetFilled entities: - - uid: 495 + - uid: 234 components: - type: Transform pos: -0.5,-4.5 parent: 1 - proto: FaxMachineShipAntag entities: - - uid: 301 + - uid: 235 components: - type: Transform pos: 2.5,-6.5 parent: 1 - proto: FirelockGlass entities: - - uid: 175 + - uid: 236 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-5.5 parent: 1 - - uid: 176 + - uid: 237 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-5.5 parent: 1 - - uid: 177 + - uid: 238 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 1 - - uid: 178 + - uid: 239 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-1.5 parent: 1 - - uid: 179 + - uid: 240 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,1.5 parent: 1 - - uid: 180 + - uid: 241 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,1.5 parent: 1 - - uid: 181 + - uid: 242 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,6.5 parent: 1 - - uid: 182 + - uid: 243 components: - type: Transform rot: 1.5707963267948966 rad @@ -1915,236 +2128,227 @@ entities: parent: 1 - proto: FoodMealNachosCuban entities: - - uid: 304 + - uid: 244 components: - type: Transform pos: 2.418281,9.579869 parent: 1 - proto: GravityGeneratorMini entities: - - uid: 156 + - uid: 245 components: - type: Transform pos: -2.5,6.5 parent: 1 - proto: Grille entities: - - uid: 44 + - uid: 246 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 45 + - uid: 247 components: - type: Transform pos: 0.5,13.5 parent: 1 - - uid: 46 + - uid: 248 components: - type: Transform pos: 1.5,13.5 parent: 1 - - uid: 47 + - uid: 249 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 48 + - uid: 250 components: - type: Transform pos: 4.5,7.5 parent: 1 - - uid: 49 + - uid: 251 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 50 + - uid: 252 components: - type: Transform pos: -3.5,8.5 parent: 1 - - uid: 51 + - uid: 253 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 52 + - uid: 254 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 53 + - uid: 255 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 54 + - uid: 256 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 55 + - uid: 257 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 56 + - uid: 258 components: - type: Transform pos: -3.5,-0.5 parent: 1 - - uid: 57 + - uid: 259 components: - type: Transform pos: 4.5,-6.5 parent: 1 - - uid: 58 + - uid: 260 components: - type: Transform pos: 4.5,-7.5 parent: 1 - - uid: 59 + - uid: 261 components: - type: Transform pos: -3.5,-6.5 parent: 1 - - uid: 60 + - uid: 262 components: - type: Transform pos: -3.5,-7.5 parent: 1 - - uid: 64 + - uid: 263 components: - type: Transform pos: 0.5,-4.5 parent: 1 - proto: Gyroscope entities: - - uid: 155 + - uid: 264 components: - type: Transform pos: 3.5,6.5 parent: 1 - proto: HeadSkeleton entities: - - uid: 311 + - uid: 265 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 1.4600676,2.5612402 parent: 1 - proto: HospitalCurtainsOpen entities: - - uid: 149 + - uid: 266 components: - type: Transform pos: 1.5,-0.5 parent: 1 - - uid: 150 + - uid: 267 components: - type: Transform pos: -0.5,-0.5 parent: 1 - proto: IngotGold1 entities: - - uid: 269 + - uid: 268 components: - type: Transform pos: -2.7279124,-0.2188937 parent: 1 - - uid: 456 + - uid: 269 components: - type: Transform pos: -2.6483665,-0.44146922 parent: 1 - - uid: 457 + - uid: 270 components: - type: Transform pos: -2.4256396,-0.36197793 parent: 1 - proto: IngotSilver1 entities: - - uid: 458 + - uid: 271 components: - type: Transform pos: -2.552912,-0.2188937 parent: 1 - - uid: 459 + - uid: 272 components: - type: Transform pos: -2.4733667,-0.42557085 parent: 1 - - uid: 460 + - uid: 273 components: - type: Transform pos: -2.7120032,-0.473266 parent: 1 -- proto: LockerWallMedicalFilled - entities: - - uid: 499 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 1 - proto: PaintingSkeletonBoof entities: - - uid: 313 + - uid: 275 components: - type: Transform pos: 0.5,0.5 parent: 1 - proto: PaintingSkeletonCigarette entities: - - uid: 314 + - uid: 276 components: - type: Transform pos: 0.5,6.5 parent: 1 - proto: PaperCaptainsThoughts entities: - - uid: 453 + - uid: 277 components: - type: Transform pos: 2.3989987,-8.217474 parent: 1 - - uid: 454 + - uid: 278 components: - type: Transform pos: 2.5421808,-8.281067 parent: 1 - proto: PenCap entities: - - uid: 452 + - uid: 279 components: - type: Transform pos: 2.3989987,-8.34466 parent: 1 - proto: PinpointerUniversal entities: - - uid: 315 + - uid: 280 components: - type: Transform pos: 0.67992365,2.5024152 parent: 1 - proto: PirateFlag entities: - - uid: 96 + - uid: 281 components: - type: Transform pos: -0.5,-5.5 parent: 1 - proto: PirateHandyFlag entities: - - uid: 305 + - uid: 282 components: - type: Transform pos: 0.567313,12.346827 parent: 1 - proto: PortableGeneratorSuperPacmanShuttle entities: - - uid: 141 + - uid: 283 components: - type: Transform pos: -0.5,8.5 @@ -2155,56 +2359,56 @@ entities: bodyType: Static - proto: PosterContrabandDonk entities: - - uid: 489 + - uid: 284 components: - type: Transform pos: 2.5,6.5 parent: 1 - proto: PosterContrabandRebelsUnite entities: - - uid: 481 + - uid: 285 components: - type: Transform pos: 2.5,11.5 parent: 1 - proto: PosterContrabandRise entities: - - uid: 482 + - uid: 286 components: - type: Transform pos: -1.5,11.5 parent: 1 - proto: PosterContrabandTheBigGasTruth entities: - - uid: 483 + - uid: 287 components: - type: Transform pos: 3.5,1.5 parent: 1 - proto: PosterLegitCohibaRobustoAd entities: - - uid: 476 + - uid: 288 components: - type: Transform pos: 0.5,-1.5 parent: 1 - proto: PosterLegitDejaVu entities: - - uid: 479 + - uid: 289 components: - type: Transform pos: 2.5,-5.5 parent: 1 - proto: PosterLegitPizzaHope entities: - - uid: 480 + - uid: 290 components: - type: Transform pos: -1.5,5.5 parent: 1 - proto: PowerCellRecharger entities: - - uid: 300 + - uid: 291 components: - type: Transform rot: -1.5707963267948966 rad @@ -2212,69 +2416,69 @@ entities: parent: 1 - proto: PoweredLightPostSmall entities: - - uid: 260 + - uid: 292 components: - type: Transform pos: 0.5,16.5 parent: 1 - proto: PoweredSmallLight entities: - - uid: 232 + - uid: 293 components: - type: Transform pos: 5.5,4.5 parent: 1 - - uid: 233 + - uid: 294 components: - type: Transform pos: -4.5,4.5 parent: 1 - - uid: 234 + - uid: 295 components: - type: Transform pos: 5.5,-2.5 parent: 1 - - uid: 235 + - uid: 296 components: - type: Transform pos: -4.5,-2.5 parent: 1 - - uid: 236 + - uid: 297 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-8.5 parent: 1 - - uid: 237 + - uid: 298 components: - type: Transform pos: 0.5,-2.5 parent: 1 - - uid: 238 + - uid: 299 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-0.5 parent: 1 - - uid: 239 + - uid: 300 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,-0.5 parent: 1 - - uid: 240 + - uid: 301 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,2.5 parent: 1 - - uid: 241 + - uid: 302 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,8.5 parent: 1 - - uid: 242 + - uid: 303 components: - type: Transform rot: 3.141592653589793 rad @@ -2282,61 +2486,55 @@ entities: parent: 1 - proto: Rack entities: - - uid: 170 + - uid: 304 components: - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 183 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,5.5 - parent: 1 - - uid: 184 + - uid: 306 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,5.5 parent: 1 - - uid: 302 + - uid: 307 components: - type: Transform pos: 2.5,-8.5 parent: 1 - proto: Railing entities: - - uid: 216 + - uid: 308 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-3.5 parent: 1 - - uid: 217 + - uid: 309 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,3.5 parent: 1 - - uid: 218 + - uid: 310 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,3.5 parent: 1 - - uid: 219 + - uid: 311 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-3.5 parent: 1 - - uid: 258 + - uid: 312 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,14.5 parent: 1 - - uid: 259 + - uid: 313 components: - type: Transform rot: -1.5707963267948966 rad @@ -2344,59 +2542,59 @@ entities: parent: 1 - proto: RailingCorner entities: - - uid: 200 + - uid: 314 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-2.5 parent: 1 - - uid: 201 + - uid: 315 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,4.5 parent: 1 - - uid: 202 + - uid: 316 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,-4.5 parent: 1 - - uid: 203 + - uid: 317 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,2.5 parent: 1 - - uid: 204 + - uid: 318 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-2.5 parent: 1 - - uid: 205 + - uid: 319 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,4.5 parent: 1 - - uid: 206 + - uid: 320 components: - type: Transform pos: 6.5,2.5 parent: 1 - - uid: 207 + - uid: 321 components: - type: Transform pos: 6.5,-4.5 parent: 1 - - uid: 244 + - uid: 322 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,15.5 parent: 1 - - uid: 255 + - uid: 323 components: - type: Transform rot: 1.5707963267948966 rad @@ -2404,408 +2602,448 @@ entities: parent: 1 - proto: RailingCornerSmall entities: - - uid: 208 + - uid: 324 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-4.5 parent: 1 - - uid: 209 + - uid: 325 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,2.5 parent: 1 - - uid: 210 + - uid: 326 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,2.5 parent: 1 - - uid: 211 + - uid: 327 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-4.5 parent: 1 - - uid: 212 + - uid: 328 components: - type: Transform pos: -4.5,-2.5 parent: 1 - - uid: 213 + - uid: 329 components: - type: Transform pos: -4.5,4.5 parent: 1 - - uid: 214 + - uid: 330 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,4.5 parent: 1 - - uid: 215 + - uid: 331 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-2.5 parent: 1 - - uid: 256 + - uid: 332 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,15.5 parent: 1 - - uid: 257 + - uid: 333 components: - type: Transform pos: 0.5,15.5 parent: 1 - proto: RandomPosterContraband entities: - - uid: 484 + - uid: 334 components: - type: Transform pos: -2.5,1.5 parent: 1 - - uid: 485 + - uid: 335 components: - type: Transform pos: -1.5,-5.5 parent: 1 - proto: RandomSpawner entities: - - uid: 278 + - uid: 336 components: - type: Transform pos: 3.5,-0.5 parent: 1 - - uid: 279 + - uid: 337 components: - type: Transform pos: -1.5,4.5 parent: 1 - - uid: 280 + - uid: 338 components: - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 281 + - uid: 339 components: - type: Transform pos: 1.5,9.5 parent: 1 +- proto: RemoteSignaller + entities: + - uid: 505 + components: + - type: Transform + pos: 5.791469,3.081873 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 504: + - Pressed: Trigger + - uid: 506 + components: + - type: Transform + pos: -4.8832855,2.9985394 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 501: + - Pressed: Trigger + - uid: 507 + components: + - type: Transform + pos: -4.8755403,-3.8523176 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 502: + - Pressed: Trigger + - uid: 508 + components: + - type: Transform + pos: 5.8889656,-3.8939846 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 503: + - Pressed: Trigger - proto: SheetUranium entities: - - uid: 477 + - uid: 340 components: - type: Transform pos: -0.51266235,8.61944 parent: 1 - proto: ShuttersNormal entities: - - uid: 220 + - uid: 341 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-2.5 parent: 1 - type: DeviceLinkSink links: - - 273 - - uid: 221 + - 356 + - uid: 342 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-3.5 parent: 1 - type: DeviceLinkSink links: - - 273 - - uid: 222 + - 356 + - uid: 343 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-4.5 parent: 1 - type: DeviceLinkSink links: - - 273 - - uid: 223 + - 356 + - uid: 344 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-4.5 parent: 1 - type: DeviceLinkSink links: - - 272 - - uid: 224 + - 355 + - uid: 345 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-3.5 parent: 1 - type: DeviceLinkSink links: - - 272 - - uid: 225 + - 355 + - uid: 346 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-2.5 parent: 1 - type: DeviceLinkSink links: - - 272 - - uid: 226 + - 355 + - uid: 347 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 270 - - uid: 227 + - 353 + - uid: 348 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,3.5 parent: 1 - type: DeviceLinkSink links: - - 270 - - uid: 228 + - 353 + - uid: 349 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,4.5 parent: 1 - type: DeviceLinkSink links: - - 270 - - uid: 229 + - 353 + - uid: 350 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,2.5 parent: 1 - type: DeviceLinkSink links: - - 271 - - uid: 230 + - 354 + - uid: 351 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,3.5 parent: 1 - type: DeviceLinkSink links: - - 271 - - uid: 231 + - 354 + - uid: 352 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,4.5 parent: 1 - type: DeviceLinkSink links: - - 271 + - 354 +- proto: ShuttleGunPirateCannon + entities: + - uid: 501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 506 + - uid: 502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 507 + - uid: 503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 508 + - uid: 504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + - type: DeviceLinkSink + links: + - 505 - proto: SignalButtonDirectional entities: - - uid: 270 + - uid: 353 components: - type: Transform pos: 3.5,5.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 228: + 349: - Pressed: Toggle - 227: + 348: - Pressed: Toggle - 226: + 347: - Pressed: Toggle - - uid: 271 + - uid: 354 components: - type: Transform pos: -2.5,5.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 231: + 352: - Pressed: Toggle - 230: + 351: - Pressed: Toggle - 229: + 350: - Pressed: Toggle - - uid: 272 + - uid: 355 components: - type: Transform pos: -2.5,-1.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 225: + 346: - Pressed: Toggle - 224: + 345: - Pressed: Toggle - 223: + 344: - Pressed: Toggle - - uid: 273 + - uid: 356 components: - type: Transform pos: 3.5,-1.5 parent: 1 - type: DeviceLinkSource linkedPorts: - 220: + 341: - Pressed: Toggle - 221: + 342: - Pressed: Toggle - 222: + 343: - Pressed: Toggle - proto: SignBridge entities: - - uid: 486 + - uid: 357 components: - type: Transform pos: 0.5,-9.5 parent: 1 - proto: SignEngine entities: - - uid: 478 + - uid: 358 components: - type: Transform pos: -0.5,9.5 parent: 1 - proto: SignShield entities: - - uid: 490 + - uid: 359 components: - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 491 + - uid: 360 components: - type: Transform pos: -4.5,5.5 parent: 1 - - uid: 492 + - uid: 361 components: - type: Transform pos: -4.5,-5.5 parent: 1 - - uid: 493 + - uid: 362 components: - type: Transform pos: 5.5,-5.5 parent: 1 - proto: SignShipDock entities: - - uid: 487 + - uid: 363 components: - type: Transform pos: 2.5,-9.5 parent: 1 - - uid: 488 + - uid: 364 components: - type: Transform pos: -1.5,-9.5 parent: 1 - proto: SMESBasic entities: - - uid: 133 + - uid: 365 components: - type: Transform pos: -0.5,7.5 parent: 1 - proto: SpaceCash entities: - - uid: 461 + - uid: 366 components: - type: Transform pos: -2.2665484,-0.10760628 parent: 1 - - uid: 462 + - uid: 367 components: - type: Transform pos: -2.4256396,-0.3937747 parent: 1 - - uid: 463 + - uid: 368 components: - type: Transform pos: -2.6642756,-0.1553008 parent: 1 - - uid: 464 + - uid: 369 components: - type: Transform pos: -2.2188215,-0.34607953 parent: 1 - - uid: 465 + - uid: 370 components: - type: Transform pos: -2.5688212,-0.6004522 parent: 1 - proto: SpaceVillainArcadeFilled entities: - - uid: 282 + - uid: 371 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,8.5 parent: 1 + - type: SpamEmitSound + enabled: False - proto: SpawnMobParrot entities: - - uid: 469 + - uid: 372 components: - type: Transform pos: 0.5,4.5 parent: 1 - proto: SpawnPointLatejoin entities: - - uid: 471 + - uid: 373 components: - type: Transform pos: 0.5,-3.5 parent: 1 -- proto: SpearReinforced - entities: - - uid: 317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5450768,5.468791 - parent: 1 - - uid: 318 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.3859855,5.595977 - parent: 1 - proto: StatueVenusRed entities: - - uid: 254 + - uid: 376 components: - type: Transform pos: 0.5,16.5 parent: 1 - proto: SubstationWallBasic entities: - - uid: 138 + - uid: 377 components: - type: Transform rot: 1.5707963267948966 rad @@ -2813,14 +3051,14 @@ entities: parent: 1 - proto: SuitStorageEVAPirate entities: - - uid: 283 + - uid: 378 components: - type: Transform pos: 3.5,7.5 parent: 1 - proto: SuitStoragePirateCap entities: - - uid: 303 + - uid: 379 components: - type: Transform pos: -1.5,-8.5 @@ -2845,23 +3083,23 @@ entities: - 0 - proto: TableCarpet entities: - - uid: 160 + - uid: 380 components: - type: Transform pos: 2.5,10.5 parent: 1 - - uid: 161 + - uid: 381 components: - type: Transform pos: 2.5,9.5 parent: 1 - - uid: 185 + - uid: 382 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,2.5 parent: 1 - - uid: 186 + - uid: 383 components: - type: Transform rot: 1.5707963267948966 rad @@ -2869,18 +3107,18 @@ entities: parent: 1 - proto: TableWood entities: - - uid: 268 + - uid: 384 components: - type: Transform pos: -2.5,-0.5 parent: 1 - - uid: 298 + - uid: 385 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-6.5 parent: 1 - - uid: 299 + - uid: 386 components: - type: Transform rot: -1.5707963267948966 rad @@ -2888,572 +3126,432 @@ entities: parent: 1 - proto: Thruster entities: - - uid: 116 + - uid: 387 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,-6.5 parent: 1 - - uid: 117 + - uid: 388 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,-9.5 parent: 1 - - uid: 118 + - uid: 389 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-9.5 parent: 1 - - uid: 119 + - uid: 390 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-6.5 parent: 1 - - uid: 120 + - uid: 391 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,0.5 parent: 1 - - uid: 121 + - uid: 392 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,-0.5 parent: 1 - - uid: 122 + - uid: 393 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 1 - - uid: 123 + - uid: 394 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-0.5 parent: 1 - - uid: 124 + - uid: 395 components: - type: Transform pos: 5.5,6.5 parent: 1 - - uid: 125 + - uid: 396 components: - type: Transform pos: -4.5,6.5 parent: 1 - - uid: 126 + - uid: 397 components: - type: Transform pos: -3.5,10.5 parent: 1 - - uid: 127 + - uid: 398 components: - type: Transform pos: 4.5,10.5 parent: 1 - proto: ToyFigurineCaptain entities: - - uid: 450 + - uid: 399 components: - type: Transform pos: 2.2876348,-8.376457 parent: 1 - proto: VendingMachineTankDispenserEVA entities: - - uid: 169 + - uid: 400 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 2.5,-4.5 parent: 1 - proto: WallWood entities: - - uid: 3 + - uid: 401 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-1.5 parent: 1 - - uid: 4 + - uid: 402 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-5.5 parent: 1 - - uid: 5 + - uid: 403 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-5.5 parent: 1 - - uid: 6 + - uid: 404 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-1.5 parent: 1 - - uid: 7 + - uid: 405 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,1.5 parent: 1 - - uid: 8 + - uid: 406 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 9 + - uid: 407 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,5.5 parent: 1 - - uid: 10 + - uid: 408 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,5.5 parent: 1 - - uid: 11 + - uid: 409 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,5.5 parent: 1 - - uid: 12 + - uid: 410 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,5.5 parent: 1 - - uid: 13 + - uid: 411 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,1.5 parent: 1 - - uid: 14 + - uid: 412 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,1.5 parent: 1 - - uid: 15 + - uid: 413 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-1.5 parent: 1 - - uid: 16 + - uid: 414 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-1.5 parent: 1 - - uid: 17 + - uid: 415 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-5.5 parent: 1 - - uid: 18 + - uid: 416 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,-5.5 parent: 1 - - uid: 19 + - uid: 417 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-8.5 parent: 1 - - uid: 20 + - uid: 418 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-8.5 parent: 1 - - uid: 21 + - uid: 419 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-9.5 parent: 1 - - uid: 22 + - uid: 420 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-9.5 parent: 1 - - uid: 23 + - uid: 421 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-8.5 parent: 1 - - uid: 24 + - uid: 422 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-8.5 parent: 1 - - uid: 25 + - uid: 423 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,9.5 parent: 1 - - uid: 26 + - uid: 424 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,9.5 parent: 1 - - uid: 27 + - uid: 425 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,10.5 parent: 1 - - uid: 28 + - uid: 426 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,11.5 parent: 1 - - uid: 29 + - uid: 427 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,11.5 parent: 1 - - uid: 30 + - uid: 428 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,12.5 parent: 1 - - uid: 31 + - uid: 429 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,13.5 parent: 1 - - uid: 32 + - uid: 430 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,13.5 parent: 1 - - uid: 33 + - uid: 431 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,12.5 parent: 1 - - uid: 34 + - uid: 432 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,11.5 parent: 1 - - uid: 35 + - uid: 433 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,11.5 parent: 1 - - uid: 36 + - uid: 434 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 37 + - uid: 435 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,9.5 parent: 1 - - uid: 38 + - uid: 436 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,9.5 parent: 1 - - uid: 39 + - uid: 437 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-9.5 parent: 1 - - uid: 40 + - uid: 438 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-9.5 parent: 1 - - uid: 41 + - uid: 439 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-9.5 parent: 1 - - uid: 42 + - uid: 440 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 43 + - uid: 441 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,5.5 parent: 1 - - uid: 61 + - uid: 442 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-5.5 parent: 1 - - uid: 62 + - uid: 443 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-5.5 parent: 1 - - uid: 63 + - uid: 444 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 65 + - uid: 445 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-4.5 parent: 1 - - uid: 66 + - uid: 446 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-5.5 parent: 1 - - uid: 67 + - uid: 447 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-5.5 parent: 1 - - uid: 68 + - uid: 448 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-1.5 parent: 1 - - uid: 69 + - uid: 449 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-0.5 parent: 1 - - uid: 70 + - uid: 450 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,0.5 parent: 1 - - uid: 71 + - uid: 451 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,1.5 parent: 1 - - uid: 72 + - uid: 452 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 73 + - uid: 453 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-1.5 parent: 1 - - uid: 74 + - uid: 454 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-1.5 parent: 1 - - uid: 75 + - uid: 455 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,1.5 parent: 1 - - uid: 76 + - uid: 456 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,1.5 parent: 1 - - uid: 77 + - uid: 457 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-1.5 parent: 1 - - uid: 78 + - uid: 458 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,1.5 parent: 1 - - uid: 79 + - uid: 459 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-1.5 parent: 1 - - uid: 92 + - uid: 460 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,5.5 parent: 1 - - uid: 93 + - uid: 461 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,5.5 parent: 1 - - uid: 94 + - uid: 462 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,6.5 parent: 1 - - uid: 95 + - uid: 463 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,6.5 parent: 1 - - uid: 97 + - uid: 464 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,6.5 parent: 1 - - uid: 128 + - uid: 465 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,6.5 parent: 1 - - uid: 129 + - uid: 466 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,9.5 parent: 1 - - uid: 130 + - uid: 467 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,7.5 parent: 1 - - uid: 131 + - uid: 468 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,8.5 parent: 1 - - uid: 132 + - uid: 469 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,9.5 parent: 1 @@ -3466,179 +3564,163 @@ entities: parent: 1 - proto: WeaponGrapplingGun entities: - - uid: 316 + - uid: 471 components: - type: Transform pos: 0.44128692,2.693194 parent: 1 - proto: WeaponLauncherPirateCannon entities: - - uid: 162 + - uid: 472 components: - type: Transform pos: 0.4072001,5.6771774 parent: 1 - proto: WeaponRevolverPirate entities: - - uid: 319 + - uid: 473 components: - type: Transform pos: 0.6162869,5.484689 parent: 1 - proto: WeaponShotgunBlunderbuss entities: - - uid: 165 + - uid: 474 components: - type: Transform pos: 0.5503819,5.2956195 parent: 1 - proto: Window entities: - - uid: 98 + - uid: 475 components: - type: Transform pos: -3.5,-6.5 parent: 1 - - uid: 99 + - uid: 476 components: - type: Transform pos: -3.5,-7.5 parent: 1 - - uid: 100 + - uid: 477 components: - type: Transform pos: 4.5,-6.5 parent: 1 - - uid: 101 + - uid: 478 components: - type: Transform pos: 4.5,-7.5 parent: 1 - - uid: 102 + - uid: 479 components: - type: Transform pos: 0.5,-4.5 parent: 1 - - uid: 103 + - uid: 480 components: - type: Transform pos: 4.5,0.5 parent: 1 - - uid: 104 + - uid: 481 components: - type: Transform pos: 4.5,-0.5 parent: 1 - - uid: 105 + - uid: 482 components: - type: Transform pos: -3.5,-0.5 parent: 1 - - uid: 106 + - uid: 483 components: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 107 + - uid: 484 components: - type: Transform pos: 4.5,8.5 parent: 1 - - uid: 108 + - uid: 485 components: - type: Transform pos: 4.5,7.5 parent: 1 - - uid: 109 + - uid: 486 components: - type: Transform pos: 4.5,6.5 parent: 1 - - uid: 110 + - uid: 487 components: - type: Transform pos: -3.5,6.5 parent: 1 - - uid: 111 + - uid: 488 components: - type: Transform pos: -3.5,7.5 parent: 1 - - uid: 112 + - uid: 489 components: - type: Transform pos: -3.5,8.5 parent: 1 - - uid: 113 + - uid: 490 components: - type: Transform pos: -0.5,13.5 parent: 1 - - uid: 114 + - uid: 491 components: - type: Transform pos: 0.5,13.5 parent: 1 - - uid: 115 + - uid: 492 components: - type: Transform pos: 1.5,13.5 parent: 1 - proto: WoodDoor entities: - - uid: 243 + - uid: 493 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,6.5 parent: 1 - - uid: 261 + - uid: 494 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,9.5 parent: 1 - - uid: 262 + - uid: 495 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,1.5 parent: 1 - - uid: 263 + - uid: 496 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,1.5 parent: 1 - - uid: 264 + - uid: 497 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-1.5 parent: 1 - - uid: 265 + - uid: 498 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-1.5 parent: 1 - - uid: 266 + - uid: 499 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-5.5 parent: 1 - - uid: 267 + - uid: 500 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-5.5 parent: 1 diff --git a/Resources/Maps/_NF/Shuttles/Syndicate/infiltrator.yml b/Resources/Maps/_NF/Shuttles/Syndicate/infiltrator.yml index fb3579562d5..21bb0afe192 100644 --- a/Resources/Maps/_NF/Shuttles/Syndicate/infiltrator.yml +++ b/Resources/Maps/_NF/Shuttles/Syndicate/infiltrator.yml @@ -2645,14 +2645,6 @@ entities: - type: Transform pos: 0.5,-2.5 parent: 1 -- proto: ComputerTabletopSalvageExpedition - entities: - - uid: 638 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 1 - proto: ComputerTabletopShuttle entities: - uid: 320 @@ -2904,7 +2896,7 @@ entities: parent: 1 - proto: FaxMachineShipAntag entities: - - uid: 835 + - uid: 632 components: - type: Transform pos: -2.5,-2.5 @@ -3832,7 +3824,7 @@ entities: - uid: 499 components: - type: Transform - pos: -1.4095261,-2.4481335 + pos: -1.3170255,-2.228292 parent: 1 - type: HandheldLight toggleActionEntity: 467 @@ -4009,7 +4001,7 @@ entities: - uid: 887 components: - type: Transform - pos: 1.3549327,-2.7774053 + pos: -1.5043011,-3.340704 parent: 1 - proto: PinpointerUniversal entities: @@ -4895,6 +4887,12 @@ entities: - type: Transform pos: -0.5,-2.5 parent: 1 + - uid: 638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 - uid: 645 components: - type: Transform @@ -4905,11 +4903,6 @@ entities: - type: Transform pos: -2.5,-13.5 parent: 1 - - uid: 647 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 1 - uid: 648 components: - type: Transform diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml index 8dfd0222fd3..7b0d78fb618 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers.yml @@ -1,199 +1,3 @@ -- type: entity - name: shipyard console - parent: [BaseStructureDisableToolUse, BaseStructureIndestructible, BaseStructureComputer] - id: ComputerShipyard - description: Used to purchase and sell shuttles - placement: - mode: SnapgridCenter - components: - - type: MeleeSound - soundGroups: - Brute: - collection: MetalGlassBreak - - type: Computer - - type: ApcPowerReceiver - powerLoad: 200 - - type: ExtensionCableReceiver - - type: ActivatableUIRequiresPower - - type: Sprite - netsync: false - noRot: true - sprite: _NF/Structures/Machines/computers.rsi - layers: - - map: ["computerLayerBody"] - state: computer - - map: ["computerLayerKeyboard"] - state: generic_keyboard - - map: ["computerLayerScreen"] - state: shipyard - - map: ["computerLayerKeys"] - state: telesci_key - - type: Appearance - - type: GenericVisualizer - visuals: - enum.ComputerVisuals.Powered: - computerLayerScreen: - True: { visible: true, shader: unshaded } - False: { visible: false } - computerLayerKeys: - True: { visible: true, shader: unshaded } - False: { visible: true, shader: shaded } - - type: LitOnPowered - - type: PointLight - radius: 1.5 - energy: 1.6 - color: "#b89f25" - enabled: false - mask: /Textures/Effects/LightMasks/cone.png - autoRot: true - offset: "0, 0.4" # shine from the top, not bottom of the computer - castShadows: false - - type: EmitSoundOnUIOpen - sound: - collection: Keyboard - - type: ShipyardConsole - targetIdSlot: - name: id-card-console-target-id - ejectSound: /Audio/Machines/id_swipe.ogg - insertSound: /Audio/Weapons/Guns/MagIn/batrifle_magin.ogg - ejectOnBreak: true - swap: true - whitelist: - components: - - IdCard - - type: ActivatableUI - singleUser: true - key: enum.ShipyardConsoleUiKey.Shipyard - - type: UserInterface - interfaces: - - key: enum.ShipyardConsoleUiKey.Shipyard - type: ShipyardConsoleBoundUserInterface - - type: ItemSlots - - type: ContainerContainer - containers: - ShipyardConsole-targetId: !type:ContainerSlot {} - -# Hardcoded consoles -- type: entity - id: ComputerShipyardSecurity - parent: [BaseStructureDisableToolUse, BaseStructureIndestructible, ComputerShipyard] - name: security shipyard console - description: Used to enlist into Nanotrasen Security Forces - components: - - type: Sprite - sprite: _NF/Structures/Machines/computers.rsi - layers: - - map: ["computerLayerBody"] - state: computer - - map: ["computerLayerKeyboard"] - state: generic_keyboard - - map: ["computerLayerScreen"] - state: shipyard_security - - map: ["computerLayerKeys"] - state: telesci_key - - type: ActivatableUI - key: enum.ShipyardConsoleUiKey.Security - - type: UserInterface - interfaces: - - key: enum.ShipyardConsoleUiKey.Security - type: ShipyardConsoleBoundUserInterface - -- type: entity - id: ComputerShipyardNFSD - parent: [BaseStructureDisableToolUse, BaseStructureIndestructible, ComputerShipyard] - name: nfsd shipyard console - description: Used to buy nfsd patrol vessels - components: - - type: Sprite - sprite: _NF/Structures/Machines/computers.rsi - layers: - - map: ["computerLayerBody"] - state: computer - - map: ["computerLayerKeyboard"] - state: generic_keyboard - - map: ["computerLayerScreen"] - state: shipyard_nfsd - - map: ["computerLayerKeys"] - state: telesci_key - - type: ActivatableUI - key: enum.ShipyardConsoleUiKey.Security - - type: UserInterface - interfaces: - - key: enum.ShipyardConsoleUiKey.Security - type: ShipyardConsoleBoundUserInterface - -- type: entity - id: ComputerShipyardBlackMarket - parent: [BaseStructureDisableToolUse, BaseStructureDestructible, ComputerShipyard] - name: black market shipyard console - description: Used to buy ships not available through other means. Has a sticker that says SALES TAX 30% - components: - - type: ActivatableUI - key: enum.ShipyardConsoleUiKey.BlackMarket - - type: UserInterface - interfaces: - - key: enum.ShipyardConsoleUiKey.BlackMarket - type: ShipyardConsoleBoundUserInterface - - type: Sprite - sprite: _NF/Structures/Machines/computers.rsi - layers: - - map: ["computerLayerBody"] - state: computer_blackmarket - - map: ["computerLayerKeyboard"] - state: generic_keyboard - - map: ["computerLayerScreen"] - state: shipyard_blackmarket - - map: ["computerLayerKeys"] - state: blackmarket_key - -- type: entity - id: ComputerShipyardExpedition - parent: [BaseStructureDisableToolUse, BaseStructureIndestructible, ComputerShipyard] - name: expedition shipyard console - description: Used to buy ships outfitted for planetary expeditions - components: - - type: ActivatableUI - key: enum.ShipyardConsoleUiKey.Expedition - - type: UserInterface - interfaces: - - key: enum.ShipyardConsoleUiKey.Expedition - type: ShipyardConsoleBoundUserInterface - - type: Sprite - sprite: _NF/Structures/Machines/computers.rsi - layers: - - map: ["computerLayerBody"] - state: computer_blackmarket - - map: ["computerLayerKeyboard"] - state: generic_keyboard - - map: ["computerLayerScreen"] - state: shipyard_blackmarket - - map: ["computerLayerKeys"] - state: blackmarket_key - -- type: entity - id: ComputerShipyardScrap - parent: [BaseStructureDisableToolUse, BaseStructureIndestructible, ComputerShipyard] - name: scrapyard console - description: Used to purchase and sell "shuttles" - components: - - type: ActivatableUI - key: enum.ShipyardConsoleUiKey.Scrap - - type: UserInterface - interfaces: - - key: enum.ShipyardConsoleUiKey.Scrap - type: ShipyardConsoleBoundUserInterface - - type: Sprite - sprite: _NF/Structures/Machines/computers.rsi - layers: - - map: ["computerLayerBody"] - state: computer_blackmarket - - map: ["computerLayerKeyboard"] - state: generic_keyboard - - map: ["computerLayerScreen"] - state: shipyard_blackmarket - - map: ["computerLayerKeys"] - state: blackmarket_key - - type: entity name: cargo sale computer suffix: Normal diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_shipyard.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_shipyard.yml new file mode 100644 index 00000000000..789e16d199b --- /dev/null +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_shipyard.yml @@ -0,0 +1,223 @@ +- type: entity + name: shipyard console + parent: [BaseStructureDisableToolUse, BaseStructureIndestructible, BaseStructureComputer] + id: ComputerShipyard + description: Used to purchase and sell shuttles + placement: + mode: SnapgridCenter + components: + - type: MeleeSound + soundGroups: + Brute: + collection: MetalGlassBreak + - type: Computer + - type: ApcPowerReceiver + powerLoad: 200 + - type: ExtensionCableReceiver + - type: ActivatableUIRequiresPower + - type: Sprite + netsync: false + noRot: true + sprite: _NF/Structures/Machines/computers.rsi + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: shipyard + - map: ["computerLayerKeys"] + state: telesci_key + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ComputerVisuals.Powered: + computerLayerScreen: + True: { visible: true, shader: unshaded } + False: { visible: false } + computerLayerKeys: + True: { visible: true, shader: unshaded } + False: { visible: true, shader: shaded } + - type: LitOnPowered + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#b89f25" + enabled: false + mask: /Textures/Effects/LightMasks/cone.png + autoRot: true + offset: "0, 0.4" # shine from the top, not bottom of the computer + castShadows: false + - type: EmitSoundOnUIOpen + sound: + collection: Keyboard + - type: ShipyardConsole + targetIdSlot: + name: id-card-console-target-id + ejectSound: /Audio/Machines/id_swipe.ogg + insertSound: /Audio/Weapons/Guns/MagIn/batrifle_magin.ogg + ejectOnBreak: true + swap: true + whitelist: + components: + - IdCard + - type: ActivatableUI + singleUser: true + key: enum.ShipyardConsoleUiKey.Shipyard + - type: UserInterface + interfaces: + - key: enum.ShipyardConsoleUiKey.Shipyard + type: ShipyardConsoleBoundUserInterface + - type: ItemSlots + - type: ContainerContainer + containers: + ShipyardConsole-targetId: !type:ContainerSlot {} + +# Hardcoded consoles +- type: entity + id: ComputerShipyardSecurity + parent: [BaseStructureDisableToolUse, BaseStructureIndestructible, ComputerShipyard] + name: security shipyard console + description: Used to enlist into Nanotrasen Security Forces + components: + - type: Sprite + sprite: _NF/Structures/Machines/computers.rsi + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: shipyard_security + - map: ["computerLayerKeys"] + state: telesci_key + - type: ActivatableUI + key: enum.ShipyardConsoleUiKey.Security + - type: UserInterface + interfaces: + - key: enum.ShipyardConsoleUiKey.Security + type: ShipyardConsoleBoundUserInterface + +- type: entity + id: ComputerShipyardNFSD + parent: [BaseStructureDisableToolUse, BaseStructureIndestructible, ComputerShipyard] + name: nfsd shipyard console + description: Used to buy nfsd patrol vessels + components: + - type: Sprite + sprite: _NF/Structures/Machines/computers.rsi + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: shipyard_nfsd + - map: ["computerLayerKeys"] + state: telesci_key + - type: ActivatableUI + key: enum.ShipyardConsoleUiKey.Nfsd + - type: UserInterface + interfaces: + - key: enum.ShipyardConsoleUiKey.Nfsd + type: ShipyardConsoleBoundUserInterface + +- type: entity + id: ComputerShipyardSyndicate + parent: [BaseStructureDisableToolUse, BaseStructureDestructible, ComputerShipyard] + name: syndicate shipyard console + description: Used to buy ships not available through other means. Has a sticker that says SALES TAX 30% + components: + - type: ActivatableUI + key: enum.ShipyardConsoleUiKey.Syndicate + - type: UserInterface + interfaces: + - key: enum.ShipyardConsoleUiKey.Syndicate + type: ShipyardConsoleBoundUserInterface + - type: Sprite + sprite: _NF/Structures/Machines/computers.rsi + layers: + - map: ["computerLayerBody"] + state: computer_blackmarket + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: shipyard_blackmarket + - map: ["computerLayerKeys"] + state: blackmarket_key + - type: ShipyardConsole + shipyardChannel: Syndicate + +- type: entity + id: ComputerShipyardBlackMarket + parent: [BaseStructureDisableToolUse, BaseStructureDestructible, ComputerShipyard] + name: black market shipyard console + description: Used to buy ships not available through other means. Has a sticker that says SALES TAX 30% + components: + - type: ActivatableUI + key: enum.ShipyardConsoleUiKey.BlackMarket + - type: UserInterface + interfaces: + - key: enum.ShipyardConsoleUiKey.BlackMarket + type: ShipyardConsoleBoundUserInterface + - type: Sprite + sprite: _NF/Structures/Machines/computers.rsi + layers: + - map: ["computerLayerBody"] + state: computer_blackmarket + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: shipyard_blackmarket + - map: ["computerLayerKeys"] + state: blackmarket_key + - type: ShipyardConsole + shipyardChannel: Freelance + +- type: entity + id: ComputerShipyardExpedition + parent: [BaseStructureDisableToolUse, BaseStructureIndestructible, ComputerShipyard] + name: expedition shipyard console + description: Used to buy ships outfitted for planetary expeditions + components: + - type: ActivatableUI + key: enum.ShipyardConsoleUiKey.Expedition + - type: UserInterface + interfaces: + - key: enum.ShipyardConsoleUiKey.Expedition + type: ShipyardConsoleBoundUserInterface + - type: Sprite + sprite: _NF/Structures/Machines/computers.rsi + layers: + - map: ["computerLayerBody"] + state: computer_blackmarket + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: shipyard_blackmarket + - map: ["computerLayerKeys"] + state: blackmarket_key + +- type: entity + id: ComputerShipyardScrap + parent: [BaseStructureDisableToolUse, BaseStructureIndestructible, ComputerShipyard] + name: scrapyard console + description: Used to purchase and sell "shuttles" + components: + - type: ActivatableUI + key: enum.ShipyardConsoleUiKey.Scrap + - type: UserInterface + interfaces: + - key: enum.ShipyardConsoleUiKey.Scrap + type: ShipyardConsoleBoundUserInterface + - type: Sprite + sprite: _NF/Structures/Machines/computers.rsi + layers: + - map: ["computerLayerBody"] + state: computer_blackmarket + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: shipyard_blackmarket + - map: ["computerLayerKeys"] + state: blackmarket_key diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/mothership-computers.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_shipyard_mothership.yml similarity index 100% rename from Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/mothership-computers.yml rename to Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_shipyard_mothership.yml diff --git a/Resources/Prototypes/_NF/Shipyard/Blackmarket/menace.yml b/Resources/Prototypes/_NF/Shipyard/Blackmarket/menace.yml index 8c5232156e8..c4f99e02454 100644 --- a/Resources/Prototypes/_NF/Shipyard/Blackmarket/menace.yml +++ b/Resources/Prototypes/_NF/Shipyard/Blackmarket/menace.yml @@ -15,12 +15,12 @@ price: 50000 category: Small group: BlackMarket - shuttlePath: /Maps/_NF/Shuttles/Blackmarket/menace.yml + shuttlePath: /Maps/_NF/Shuttles/BlackMarket/menace.yml - type: gameMap id: Menace mapName: 'Menace' - mapPath: /Maps/_NF/Shuttles/Blackmarket/menace.yml + mapPath: /Maps/_NF/Shuttles/BlackMarket/menace.yml minPlayers: 0 stations: Menace: diff --git a/Resources/Prototypes/_NF/Shipyard/Blackmarket/schooner.yml b/Resources/Prototypes/_NF/Shipyard/Blackmarket/schooner.yml index 4232f428e2f..2431788fb06 100644 --- a/Resources/Prototypes/_NF/Shipyard/Blackmarket/schooner.yml +++ b/Resources/Prototypes/_NF/Shipyard/Blackmarket/schooner.yml @@ -5,12 +5,12 @@ price: 60000 category: Medium group: BlackMarket - shuttlePath: /Maps/_NF/Shuttles/Blackmarket/schooner.yml + shuttlePath: /Maps/_NF/Shuttles/BlackMarket/schooner.yml - type: gameMap id: Schooner mapName: 'Schooner' - mapPath: /Maps/_NF/Shuttles/Blackmarket/schooner.yml + mapPath: /Maps/_NF/Shuttles/BlackMarket/schooner.yml minPlayers: 0 stations: Schooner: diff --git a/Resources/Prototypes/_NF/Shipyard/Syndicate/hunter.yml b/Resources/Prototypes/_NF/Shipyard/Syndicate/hunter.yml index 5aa7862e2d3..f779a44ae10 100644 --- a/Resources/Prototypes/_NF/Shipyard/Syndicate/hunter.yml +++ b/Resources/Prototypes/_NF/Shipyard/Syndicate/hunter.yml @@ -4,7 +4,7 @@ description: A small armored Syndicate assault shuttle, perfect for devious operations! price: 50000 category: Small - group: BlackMarket + group: Syndicate shuttlePath: /Maps/_NF/Shuttles/Syndicate/hunter.yml - type: gameMap diff --git a/Resources/Prototypes/_NF/Shipyard/Syndicate/infiltrator.yml b/Resources/Prototypes/_NF/Shipyard/Syndicate/infiltrator.yml index d28d32cd50d..9c94a28a3f3 100644 --- a/Resources/Prototypes/_NF/Shipyard/Syndicate/infiltrator.yml +++ b/Resources/Prototypes/_NF/Shipyard/Syndicate/infiltrator.yml @@ -4,7 +4,7 @@ description: A Syndicate nuclear operative infiltration ship, expedition capable. price: 85000 category: Medium - group: BlackMarket + group: Syndicate shuttlePath: /Maps/_NF/Shuttles/Syndicate/infiltrator.yml - type: gameMap @@ -14,7 +14,7 @@ minPlayers: 0 stations: Infiltrator: - stationProto: StandardFrontierExpeditionVessel + stationProto: StandardFrontierVessel components: - type: StationNameSetup mapNameTemplate: 'Infiltrator {1}'