diff --git a/Content.Server/Speech/Components/PirateAccentComponent.cs b/Content.Server/Speech/Components/PirateAccentComponent.cs new file mode 100644 index 0000000000..be6a8b6211 --- /dev/null +++ b/Content.Server/Speech/Components/PirateAccentComponent.cs @@ -0,0 +1,20 @@ +using Content.Server.Speech.EntitySystems; + +namespace Content.Server.Speech.Components; + +[RegisterComponent] +[Access(typeof(PirateAccentSystem))] +public sealed class PirateAccentComponent : Component +{ + [ViewVariables(VVAccess.ReadWrite)] + [DataField("yarrChance")] + public readonly float YarrChance = 0.5f; + + [ViewVariables] + public readonly List PirateWords = new() + { + "accent-pirate-prefix-1", + "accent-pirate-prefix-2", + "accent-pirate-prefix-3" + }; +} diff --git a/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs b/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs new file mode 100644 index 0000000000..f1d64ede10 --- /dev/null +++ b/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs @@ -0,0 +1,41 @@ +using Content.Server.Speech.Components; +using Robust.Shared.Random; +using System.Text.RegularExpressions; + +namespace Content.Server.Speech.EntitySystems; + +public sealed class PirateAccentSystem : EntitySystem +{ + [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly ReplacementAccentSystem _replacement = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnAccentGet); + } + + // converts left word when typed into the right word. For example typing you becomes ye. + public string Accentuate(string message, PirateAccentComponent component) + { + var msg = message; + + msg = _replacement.ApplyReplacements(msg, "pirate"); + + if (!_random.Prob(component.YarrChance)) + return msg; + + var pick = _random.Pick(component.PirateWords); + // Reverse sanitize capital + msg = msg[0].ToString().ToLower() + msg.Remove(0, 1); + msg = Loc.GetString(pick) + " " + msg; + + return msg; + } + + private void OnAccentGet(EntityUid uid, PirateAccentComponent component, AccentGetEvent args) + { + args.Message = Accentuate(args.Message, component); + } +} diff --git a/Resources/Locale/en-US/accent/pirate.ftl b/Resources/Locale/en-US/accent/pirate.ftl new file mode 100644 index 0000000000..bb3394a300 --- /dev/null +++ b/Resources/Locale/en-US/accent/pirate.ftl @@ -0,0 +1,23 @@ +accent-pirate-prefix-1 = Arrgh +accent-pirate-prefix-2 = Gar +accent-pirate-prefix-3 = Yarr + +accent-pirate-replaced-1 = my +accent-pirate-replacement-1 = me + +accent-pirate-replaced-2 = you +accent-pirate-replacement-2 = ya + +accent-pirate-replaced-3 = hello +accent-pirate-replacement-3 = ahoy + +accent-pirate-replaced-4 = yes +accent-pirate-replacement-4 = aye +accent-pirate-replaced-5 = yea +accent-pirate-replaced-6 = hi + +accent-pirate-replaced-7 = is +accent-pirate-replacement-5 = be + +accent-pirate-replaced-8 = there +accent-pirate-replacement-6 = thar diff --git a/Resources/Maps/Shuttles/pirate.yml b/Resources/Maps/Shuttles/pirate.yml index 66fb6a4d33..530879ab27 100644 --- a/Resources/Maps/Shuttles/pirate.yml +++ b/Resources/Maps/Shuttles/pirate.yml @@ -17,239 +17,90 @@ tilemap: 10: FloorAsteroidSand 11: FloorAsteroidTile 12: FloorBar - 13: FloorBlue - 14: FloorBlueCircuit - 15: FloorBoxing - 16: FloorCarpetClown - 17: FloorCarpetOffice - 18: FloorCave - 19: FloorCaveDrought - 20: FloorClown - 21: FloorDark - 22: FloorDarkDiagonal - 23: FloorDarkDiagonalMini - 24: FloorDarkHerringbone - 25: FloorDarkMini - 26: FloorDarkMono - 27: FloorDarkOffset - 28: FloorDarkPavement - 29: FloorDarkPavementVertical - 30: FloorDarkPlastic - 31: FloorDirt - 32: FloorEighties - 33: FloorElevatorShaft - 34: FloorFreezer - 35: FloorGlass - 36: FloorGold - 37: FloorGrass - 38: FloorGrassDark - 39: FloorGrassJungle - 40: FloorGrassLight - 41: FloorGreenCircuit - 42: FloorGym - 43: FloorHydro - 44: FloorKitchen - 45: FloorLaundry - 46: FloorLino - 47: FloorMetalDiamond - 48: FloorMime - 49: FloorMono - 50: FloorPlastic - 51: FloorRGlass - 52: FloorReinforced - 53: FloorRockVault - 54: FloorShowroom - 55: FloorShuttleBlue - 56: FloorShuttleOrange - 57: FloorShuttlePurple - 58: FloorShuttleRed - 59: FloorShuttleWhite - 60: FloorSilver - 61: FloorSnow - 62: FloorSteel - 63: FloorSteelDiagonal - 64: FloorSteelDiagonalMini - 65: FloorSteelDirty - 66: FloorSteelHerringbone - 67: FloorSteelMini - 68: FloorSteelMono - 69: FloorSteelOffset - 70: FloorSteelPavement - 71: FloorSteelPavementVertical - 72: FloorTechMaint - 73: FloorTechMaint2 - 74: FloorTechMaint3 - 75: FloorWhite - 76: FloorWhiteDiagonal - 77: FloorWhiteDiagonalMini - 78: FloorWhiteHerringbone - 79: FloorWhiteMini - 80: FloorWhiteMono - 81: FloorWhiteOffset - 82: FloorWhitePavement - 83: FloorWhitePavementVertical - 84: FloorWhitePlastic - 85: FloorWood - 86: FloorWoodTile - 87: Lattice - 88: Plating + 13: FloorBasalt + 14: FloorBlue + 15: FloorBlueCircuit + 16: FloorBoxing + 17: FloorCarpetClown + 18: FloorCarpetOffice + 19: FloorCave + 20: FloorCaveDrought + 21: FloorClown + 22: FloorDark + 23: FloorDarkDiagonal + 24: FloorDarkDiagonalMini + 25: FloorDarkHerringbone + 26: FloorDarkMini + 27: FloorDarkMono + 28: FloorDarkOffset + 29: FloorDarkPavement + 30: FloorDarkPavementVertical + 31: FloorDarkPlastic + 32: FloorDesert + 33: FloorDirt + 34: FloorEighties + 35: FloorElevatorShaft + 36: FloorFlesh + 37: FloorFreezer + 38: FloorGlass + 39: FloorGold + 40: FloorGrass + 41: FloorGrassDark + 42: FloorGrassJungle + 43: FloorGrassLight + 44: FloorGreenCircuit + 45: FloorGym + 46: FloorHydro + 47: FloorKitchen + 48: FloorLaundry + 49: FloorLino + 50: FloorLowDesert + 51: FloorMetalDiamond + 52: FloorMime + 53: FloorMono + 54: FloorPlanetDirt + 55: FloorPlanetGrass + 56: FloorPlastic + 57: FloorRGlass + 58: FloorReinforced + 59: FloorRockVault + 60: FloorShowroom + 61: FloorShuttleBlue + 62: FloorShuttleOrange + 63: FloorShuttlePurple + 64: FloorShuttleRed + 65: FloorShuttleWhite + 66: FloorSilver + 67: FloorSnow + 68: FloorSteel + 69: FloorSteelDiagonal + 70: FloorSteelDiagonalMini + 71: FloorSteelDirty + 72: FloorSteelHerringbone + 73: FloorSteelMini + 74: FloorSteelMono + 75: FloorSteelOffset + 76: FloorSteelPavement + 77: FloorSteelPavementVertical + 78: FloorTechMaint + 79: FloorTechMaint2 + 80: FloorTechMaint3 + 81: FloorWhite + 82: FloorWhiteDiagonal + 83: FloorWhiteDiagonalMini + 84: FloorWhiteHerringbone + 85: FloorWhiteMini + 86: FloorWhiteMono + 87: FloorWhiteOffset + 88: FloorWhitePavement + 89: FloorWhitePavementVertical + 90: FloorWhitePlastic + 91: FloorWood + 92: FloorWoodTile + 93: Lattice + 94: Plating entities: - uid: 0 - type: Grille - components: - - pos: 0.5,10.5 - parent: 25 - type: Transform -- uid: 1 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 4.5,12.5 - parent: 25 - type: Transform -- uid: 2 - type: AirlockExternalGlass - components: - - pos: 4.5,2.5 - parent: 25 - type: Transform -- uid: 3 - type: WallShuttle - components: - - rot: 3.141592653589793 rad - pos: 4.5,4.5 - parent: 25 - type: Transform -- uid: 4 - type: WallShuttle - components: - - pos: 4.5,-5.5 - parent: 25 - type: Transform -- uid: 5 - type: WallShuttle - components: - - pos: 2.5,10.5 - parent: 25 - type: Transform -- uid: 6 - type: WallShuttle - components: - - pos: 5.5,-1.5 - parent: 25 - type: Transform -- uid: 7 - type: WallShuttle - components: - - pos: -9.5,1.5 - parent: 25 - type: Transform -- uid: 8 - type: WallShuttle - components: - - pos: -6.5,0.5 - parent: 25 - type: Transform -- uid: 9 - type: WallShuttle - components: - - pos: -7.5,-5.5 - parent: 25 - type: Transform -- uid: 10 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 2.5,14.5 - parent: 25 - type: Transform -- uid: 11 - type: WallShuttle - components: - - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 25 - type: Transform -- uid: 12 - type: WallReinforced - components: - - pos: -5.5,4.5 - parent: 25 - type: Transform -- uid: 13 - type: Grille - components: - - pos: 0.5,11.5 - parent: 25 - type: Transform -- uid: 14 - type: Grille - components: - - pos: -3.5,12.5 - parent: 25 - type: Transform -- uid: 15 - type: WallReinforced - components: - - pos: -3.5,5.5 - parent: 25 - type: Transform -- uid: 16 - type: Grille - components: - - pos: -0.5,11.5 - parent: 25 - type: Transform -- uid: 17 - type: Grille - components: - - pos: -4.5,12.5 - parent: 25 - type: Transform -- uid: 18 - type: AirlockExternalGlass - components: - - pos: -9.5,2.5 - parent: 25 - type: Transform -- uid: 19 - type: Table - components: - - pos: -1.5,11.5 - parent: 25 - type: Transform -- uid: 20 - type: ReinforcedWindow - components: - - pos: 0.5,11.5 - parent: 25 - type: Transform -- uid: 21 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 25 - type: Transform -- uid: 22 - type: WallShuttle - components: - - pos: -10.5,-1.5 - parent: 25 - type: Transform -- uid: 23 - type: WallShuttle - components: - - pos: -10.5,-2.5 - parent: 25 - type: Transform -- uid: 24 - type: WallShuttle - components: - - pos: -10.5,-5.5 - parent: 25 - type: Transform -- uid: 25 components: - type: MetaData - pos: 2.2710133,-2.4148211 @@ -258,16 +109,16 @@ entities: - chunks: -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAFgAAAAMAAAAWAAAAFgAAAA0AAAANAAAADQAAAA0AAAANAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAAA+AAAAWAAAAD4AAABYAAAANAAAADQAAAA0AAAANAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAPgAAAFgAAAA+AAAAWAAAADQAAAA0AAAANAAAADQAAAA0AAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAD4AAABYAAAAPgAAAFgAAAA0AAAANAAAADQAAAA0AAAANAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAABYAAAAPgAAAFgAAABYAAAANAAAADQAAAA0AAAANAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAFgAAAA+AAAAPgAAAD4AAAA+AAAAWAAAAFgAAABYAAAAFQAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABYAAAAWAAAAFgAAABYAAAAWAAAABUAAAAVAAAAFQAAABUAAAAVAAAAFQAAAAAAAAAAAAAAAAAAAAAAAABXAAAAWAAAAFgAAABYAAAAVQAAAFgAAABYAAAAFQAAABUAAAAVAAAAFQAAABUAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAFgAAABYAAAAVQAAAFUAAABVAAAAWAAAAFgAAABYAAAAFQAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAWAAAAFgAAABYAAAAWAAAAFgAAAAVAAAAFQAAABUAAAAVAAAAFQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAVwAAAFcAAABYAAAAFQAAABUAAAAVAAAAFQAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAAAAAAAAAWAAAAFgAAAAVAAAAFQAAABUAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABYAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAFcAAABXAAAAVwAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAAAMAAAAXgAAAF4AAAAWAAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABEAAAAXgAAAEQAAABeAAAAFgAAABYAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAARAAAAF4AAABEAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAEQAAABeAAAARAAAAF4AAAAWAAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAARAAAAF4AAABeAAAAFgAAABYAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABEAAAARAAAAEQAAABEAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAWwAAAF4AAABeAAAAFgAAABYAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABbAAAAWwAAAFsAAABbAAAAXgAAAF4AAABeAAAAFgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAWwAAAFsAAABbAAAAWwAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAFsAAABbAAAAWwAAAFsAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAABYAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABdAAAAXQAAAF4AAABeAAAAFgAAABYAAAAWAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAAAAAAAAAVwAAAAAAAAAAAAAAAAAAAFcAAAAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFcAAAAAAAAAAAAAAFcAAABXAAAAAAAAAFcAAABXAAAAVwAAAFcAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAVwAAAFcAAABYAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAWAAAAAwAAABYAAAAWAAAAEgAAABIAAAASAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABVAAAAVQAAAFUAAAAMAAAAWAAAAFgAAABIAAAASAAAAEgAAABIAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABYAAAAVQAAAFUAAABVAAAADAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAWAAAAFUAAABVAAAAVQAAAAwAAAAMAAAAWAAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAFgAAABVAAAAVQAAAFUAAAAMAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAFcAAABYAAAADAAAAAwAAAAMAAAADAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAAAAAAF0AAABdAAAAAAAAAF0AAABdAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXQAAAF0AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAwAAABeAAAAXgAAAE4AAABOAAAATgAAAE4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABbAAAAWwAAAFsAAAAMAAAAXgAAAF4AAABOAAAATgAAAE4AAABOAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAAWwAAAFsAAABbAAAADAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAABdAAAAXgAAAFsAAABbAAAAWwAAAAwAAAAMAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF4AAABbAAAAWwAAAFsAAAAMAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAF0AAABeAAAADAAAAAwAAAAMAAAADAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAA== 0,0: ind: 0,0 - tiles: WAAAAFgAAAA+AAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABIAAAAPgAAAD4AAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAASAAAAD4AAAA+AAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAEgAAAA+AAAAPgAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAPgAAAFgAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAANgAAADYAAAA2AAAANgAAAFgAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQAAADYAAAA2AAAANgAAADYAAABYAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAA2AAAANgAAADYAAAA2AAAAWAAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAABIAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFcAAABYAAAASAAAAFgAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABXAAAAWAAAAFgAAABYAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAVwAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAAABYAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: XgAAAF4AAABEAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABOAAAAXgAAAEQAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAATgAAAF4AAABEAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAE4AAABeAAAARAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAARAAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAPAAAADwAAAA8AAAAPAAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAADwAAAA8AAAAPAAAADwAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAAA8AAAAPAAAADwAAAA8AAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABOAAAAXgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAF4AAABeAAAATgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAABdAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXQAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF0AAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAAAAAAAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVwAAAFcAAAAAAAAAAAAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAVwAAAFcAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAABYAAAAWAAAAFgAAABYAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIAAAAWAAAAEgAAABIAAAAWAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAWAAAAFgAAABYAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAABYAAAAWAAAAFgAAABYAAAAWAAAAFcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABYAAAAWAAAAFgAAABYAAAANAAAAFgAAABXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAFgAAABYAAAAWAAAADQAAABYAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAF0AAAAAAAAAAAAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXQAAAF0AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAE4AAABeAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAAAAXgAAAE4AAABOAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAOgAAAF4AAABdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAADoAAABeAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== type: MapGrid - type: Broadphase - angularDamping: 0.05 @@ -281,1098 +132,561 @@ entities: path: /Audio/Effects/alert.ogg type: Gravity - chunkCollection: - -1,0: - 0: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -7,1 - 1: + version: 2 + nodes: + - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium - coordinates: -7,2 - 2: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -9,3 - 3: + decals: + 0: -7,2 + 1: -9,3 + 9: 3,1 + 10: 2,2 + 44: -4,6 + 45: -5,7 + 46: -2,7 + 47: 2,5 + 48: 3,5 + 49: 3,7 + 50: 2,3 + 51: -9,5 + 52: -8,4 + 53: -8,5 + 54: -7,5 + 55: -7,8 + 56: -8,6 + 57: -8,7 + 58: -4,9 + 59: -3,9 + 60: -2,10 + 80: -5,0 + 81: -2,0 + 82: -3,0 + 83: -1,2 + 84: -1,2 + 127: -3,4 + 128: 2,6 + 129: 3,1 + 130: 3,1 + - node: cleanable: True color: '#FFFFFFFF' id: DirtLight - coordinates: -7,3 - 4: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: -7,3 - 5: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: -8,3 - 17: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: -9,3 - 18: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: -9,2 - 20: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: -8,4 - 28: + decals: + 2: -7,3 + 3: -7,3 + 4: -8,3 + 11: 1,2 + 12: 3,2 + 13: 3,2 + 14: 1,3 + 15: 2,1 + 16: -9,3 + 17: -9,2 + 18: 2,4 + 19: -8,4 + 61: -10,6 + 62: -9,6 + 63: -3,6 + 64: -4,7 + 65: -2,7 + 66: -3,4 + 67: 3,6 + 68: 4,5 + 69: 1,7 + 70: -3,10 + 71: -3,11 + 72: -2,9 + 73: 3,7 + 74: 4,6 + 75: 4,7 + 76: 3,6 + 122: -3,3 + 123: -2,2 + 124: -2,2 + 125: -2,2 + 126: -4,0 + 131: -9,1 + 132: -9,-1 + 133: -9,-1 + - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy - coordinates: -1,6 - 29: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -1,7 - 30: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -2,6 - 31: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -1,6 - 32: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -7,6 - 33: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -6,6 - 34: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -10,5 - 35: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -9,8 - 36: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -8,8 - 37: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -5,9 - 38: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -5,10 - 39: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -3,9 - 40: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -3,7 - 41: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -3,7 - 42: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -3,8 - 43: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -2,9 - 44: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -5,6 - 45: - cleanable: True + decals: + 5: 1,1 + 6: 1,1 + 7: 2,1 + 8: 3,3 + 20: 3,9 + 21: 3,9 + 22: 3,8 + 23: 1,5 + 24: 2,4 + 25: 1,6 + 26: 0,6 + 27: -1,6 + 28: -1,7 + 29: -2,6 + 30: -1,6 + 31: -7,6 + 32: -6,6 + 33: -10,5 + 34: -9,8 + 35: -8,8 + 36: -5,9 + 37: -5,10 + 38: -3,9 + 39: -3,7 + 40: -3,7 + 41: -3,8 + 42: -2,9 + 43: -5,6 + 77: -1,0 + 78: -1,1 + 79: -5,0 + - node: color: '#FFFFFFFF' id: DirtMedium - coordinates: -4,6 - 46: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -5,7 - 47: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -2,7 - 52: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -9,5 - 53: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -8,4 - 54: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -8,5 - 55: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -7,5 - 56: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -7,8 - 57: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -8,6 - 58: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -8,7 - 59: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -4,9 - 60: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -3,9 - 61: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -2,10 - 62: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: -10,6 - 63: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: -9,6 - 64: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: -3,6 - 65: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: -4,7 - 66: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: -2,7 - 67: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: -3,4 - 68: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: -4,3 - 72: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: -3,10 - 73: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: -3,11 - 74: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: -2,9 - 79: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -1,0 - 80: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -1,1 - 81: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -5,0 - 82: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -5,0 - 83: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -2,0 - 84: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -3,0 - 85: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -1,2 - 86: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -1,2 - 87: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -1,3 - 88: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: -5,2 - 89: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -9,1 - 90: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -8,1 - 99: + decals: + 85: -9,1 + 86: -8,1 + 87: -7,-2 + 88: -7,-1 + 104: -9,-4 + - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLine - coordinates: -9,1 - 100: - angle: -1.5707963267948966 rad + decals: + 95: -9,1 + 96: -9,2 + 97: -9,3 + - node: color: '#FFFFFFFF' - id: WarningLine - coordinates: -9,2 - 101: - angle: -1.5707963267948966 rad + id: QuarterTileOverlayGreyscale270 + decals: + 106: -2,3 + 107: -3,3 + 115: -2,2 + 116: -3,2 + 120: -4,1 + - node: color: '#FFFFFFFF' - id: WarningLine - coordinates: -9,3 - 0,0: - 6: - cleanable: True + id: QuarterTileOverlayGreyscale180 + decals: + 108: -4,3 + 109: -3,3 + 113: -4,2 + 114: -3,2 + 119: -2,1 + - node: color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 1,1 - 7: - cleanable: True + id: QuarterTileOverlayGreyscale + decals: + 110: -4,3 + 111: -2,2 + 112: -3,2 + - node: color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 1,1 - 8: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 2,1 - 9: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 3,3 - 10: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 3,1 - 11: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 2,2 - 12: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: 1,2 - 13: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: 3,2 - 14: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: 3,2 - 15: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: 1,3 - 16: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: 2,1 - 19: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: 2,4 - 21: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 3,9 - 22: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 3,9 - 23: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 3,8 - 24: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 1,5 - 25: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 2,4 - 26: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 1,6 - 27: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: 0,6 - 48: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 2,5 - 49: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 3,5 - 50: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 3,7 - 51: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - coordinates: 2,3 - 69: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: 3,6 - 70: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: 4,5 - 71: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: 1,7 - 75: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: 3,7 - 76: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: 4,6 - 77: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: 4,7 - 78: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - coordinates: 3,6 - 102: + id: QuarterTileOverlayGreyscale90 + decals: + 117: -2,3 + 118: -3,1 + 121: -4,1 + - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarningLine - coordinates: 3,1 - 103: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - coordinates: 3,2 - 104: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarningLine - coordinates: 3,3 - 105: + decals: + 98: 3,1 + 99: 3,2 + 100: 3,3 + - node: color: '#FFFFFFFF' id: DirtLight - coordinates: 1,7 - 106: - color: '#FFFFFFFF' - id: DirtLight - coordinates: 3,6 - -1,-1: - 91: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -7,-2 - 92: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -7,-1 - 93: + decals: + 92: -10,-1 + 93: -7,-3 + 94: -6,-3 + 101: 1,7 + 102: 3,6 + 105: -9,-3 + - node: color: '#FFFFFFFF' id: DirtHeavy - coordinates: -9,-1 - 94: + decals: + 89: -9,-1 + 90: -8,-1 + 91: -7,-6 + 103: -9,-5 + - node: + cleanable: True color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -8,-1 - 95: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -7,-6 - 96: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -10,-1 - 97: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -7,-3 - 98: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -6,-3 - 107: - color: '#FFFFFFFF' - id: DirtHeavy - coordinates: -9,-5 - 108: - color: '#FFFFFFFF' - id: DirtMedium - coordinates: -9,-4 - 109: - color: '#FFFFFFFF' - id: DirtLight - coordinates: -9,-3 + id: Dirt + decals: + 134: -4,-4 type: DecalGrid - - tiles: - -5,-2: 0 - -5,-1: 0 - -4,-10: 0 - -4,-4: 0 - -4,-3: 0 - -3,-11: 0 - -3,-8: 0 - -3,-7: 0 - -3,-6: 0 - -2,-11: 0 - -2,-9: 0 - -2,-8: 0 - -2,-7: 0 - -2,-6: 0 - -2,-5: 0 - -2,-4: 0 - -2,-3: 0 - -2,-1: 0 - -1,-11: 0 - -1,-9: 0 - -1,-8: 0 - -1,-7: 0 - -1,-6: 0 - -1,-5: 0 - -1,-4: 0 - -1,-3: 0 - -1,-1: 0 - -5,5: 0 - -5,6: 0 - -5,7: 0 - -4,1: 0 - -4,2: 0 - -4,3: 0 - -4,7: 0 - -4,8: 0 - -4,9: 0 - -3,12: 0 - -3,13: 0 - -3,14: 0 - -2,0: 0 - -2,1: 0 - -2,2: 0 - -2,3: 0 - -2,4: 0 - -2,5: 0 - -2,7: 0 - -2,8: 0 - -2,9: 0 - -2,10: 0 - -1,0: 0 - -1,1: 0 - -1,2: 0 - -1,3: 0 - -1,4: 0 - -1,5: 0 - -1,7: 0 - -1,8: 0 - -1,9: 0 - -1,10: 0 - -1,12: 0 - -1,13: 0 - -1,14: 0 - 0,-11: 0 - 0,-9: 0 - 0,-8: 0 - 0,-7: 0 - 0,-6: 0 - 0,-5: 0 - 0,-4: 0 - 0,-3: 0 - 1,-11: 0 - 1,-9: 0 - 1,-8: 0 - 1,-7: 0 - 1,-6: 0 - 1,-5: 0 - 1,-4: 0 - 1,-3: 0 - 1,-1: 0 - 2,-11: 0 - 2,-9: 0 - 2,-8: 0 - 2,-7: 0 - 2,-6: 0 - 2,-5: 0 - 2,-4: 0 - 2,-3: 0 - 2,-1: 0 - 3,-11: 0 - 3,-9: 0 - 3,-8: 0 - 3,-7: 0 - 3,-6: 0 - 3,-5: 0 - 3,-4: 0 - 3,-3: 0 - 3,-1: 0 - 4,-11: 0 - 4,-8: 0 - 4,-7: 0 - 4,-6: 0 - 5,-10: 0 - 5,-4: 0 - 5,-3: 0 - 6,-2: 0 - 6,-1: 0 - 0,7: 0 - 0,8: 0 - 0,9: 0 - 0,10: 0 - 0,12: 0 - 0,13: 0 - 0,14: 0 - 0,15: 0 - 1,0: 0 - 1,1: 0 - 1,2: 0 - 1,3: 0 - 1,4: 0 - 1,5: 0 - 1,7: 0 - 1,8: 0 - 1,9: 0 - 1,10: 0 - 1,12: 0 - 1,13: 0 - 1,14: 0 - 1,15: 0 - 2,0: 0 - 2,1: 0 - 2,2: 0 - 2,3: 0 - 2,4: 0 - 2,5: 0 - 2,7: 0 - 2,8: 0 - 2,9: 0 - 2,10: 0 - 2,12: 0 - 2,13: 0 - 2,14: 0 - 3,0: 0 - 3,1: 0 - 3,2: 0 - 3,3: 0 - 3,4: 0 - 3,5: 0 - 3,7: 0 - 3,8: 0 - 3,9: 0 - 3,10: 0 - 4,12: 0 - 4,13: 0 - 4,14: 0 - 5,1: 0 - 5,2: 0 - 5,3: 0 - 5,7: 0 - 5,8: 0 - 5,9: 0 - 6,1: 0 - 6,2: 0 - 6,3: 0 - 6,5: 0 - 6,6: 0 - 6,7: 0 - 0,17: 0 - 1,17: 0 - 2,17: 0 - 3,16: 0 - -2,16: 0 - -1,17: 0 - -4,-9: 0 - -4,-8: 0 - -4,-7: 0 - -4,-6: 0 - -4,-5: 0 - -3,-10: 0 - -3,-9: 0 - -3,-5: 0 - -3,-4: 0 - -3,-3: 0 - -3,-2: 0 - -3,-1: 0 - -2,-10: 0 - -2,-2: 0 - -1,-10: 0 - -1,-2: 0 - -5,0: 0 - -5,1: 0 - -5,2: 0 - -5,3: 0 - -5,4: 0 - -4,0: 0 - -4,4: 0 - -3,0: 0 - -3,1: 0 - -3,2: 0 - -3,3: 0 - -3,4: 0 - -3,5: 0 - -3,6: 0 - -3,7: 0 - -3,8: 0 - -3,9: 0 - -3,10: 0 - -3,11: 0 - -2,6: 0 - -2,11: 0 - -2,12: 0 - -2,13: 0 - -2,14: 0 - -2,15: 0 - -1,6: 0 - -1,11: 0 - -1,15: 0 - 0,-10: 0 - 0,-2: 0 - 0,-1: 0 - 1,-10: 0 - 1,-2: 0 - 2,-10: 0 - 2,-2: 0 - 3,-10: 0 - 3,-2: 0 - 4,-10: 0 - 4,-9: 0 - 4,-5: 0 - 4,-4: 0 - 4,-3: 0 - 4,-2: 0 - 4,-1: 0 - 5,-9: 0 - 5,-8: 0 - 5,-7: 0 - 5,-6: 0 - 5,-5: 0 - 0,0: 0 - 0,1: 0 - 0,2: 0 - 0,3: 0 - 0,4: 0 - 0,5: 0 - 0,6: 0 - 0,11: 0 - 1,6: 0 - 1,11: 0 - 2,6: 0 - 2,11: 0 - 2,15: 0 - 3,6: 0 - 3,11: 0 - 3,12: 0 - 3,13: 0 - 3,14: 0 - 3,15: 0 - 4,0: 0 - 4,1: 0 - 4,2: 0 - 4,3: 0 - 4,4: 0 - 4,5: 0 - 4,6: 0 - 4,7: 0 - 4,8: 0 - 4,9: 0 - 4,10: 0 - 4,11: 0 - 5,0: 0 - 5,4: 0 - 6,0: 0 - 6,4: 0 - 0,16: 0 - 1,16: 0 - 2,16: 0 - -1,16: 0 - -12,0: 0 - -12,1: 0 - -12,2: 0 - -12,3: 0 - -12,4: 0 - -12,5: 0 - -12,6: 0 - -11,0: 0 - -11,1: 0 - -11,2: 0 - -11,3: 0 - -11,4: 0 - -11,5: 0 - -11,6: 0 - -11,7: 0 - -11,8: 0 - -11,9: 0 - -10,0: 0 - -10,1: 0 - -10,2: 0 - -10,3: 0 - -10,4: 0 - -10,5: 0 - -10,6: 0 - -10,7: 0 - -10,8: 0 - -10,9: 0 - -9,0: 0 - -9,1: 0 - -9,2: 0 - -9,3: 0 - -9,4: 0 - -9,5: 0 - -9,6: 0 - -9,7: 0 - -9,8: 0 - -9,9: 0 - -9,10: 0 - -8,0: 0 - -8,1: 0 - -8,2: 0 - -8,3: 0 - -8,4: 0 - -8,5: 0 - -8,6: 0 - -8,7: 0 - -8,8: 0 - -8,9: 0 - -8,10: 0 - -7,0: 0 - -7,1: 0 - -7,2: 0 - -7,3: 0 - -7,4: 0 - -7,5: 0 - -7,6: 0 - -7,7: 0 - -7,8: 0 - -7,9: 0 - -7,10: 0 - -6,0: 0 - -6,1: 0 - -6,2: 0 - -6,3: 0 - -6,4: 0 - -6,5: 0 - -6,6: 0 - -6,7: 0 - -6,8: 0 - -6,9: 0 - -6,10: 0 - -6,11: 0 - -6,12: 0 - -5,8: 0 - -5,9: 0 - -5,10: 0 - -5,11: 0 - -5,12: 0 - -5,13: 0 - -4,5: 0 - -4,6: 0 - -4,10: 0 - -4,11: 0 - -4,12: 0 - -4,13: 0 - -12,-2: 0 - -12,-1: 0 - -11,-9: 0 - -11,-8: 0 - -11,-7: 0 - -11,-6: 0 - -11,-5: 0 - -11,-4: 0 - -11,-3: 0 - -11,-2: 0 - -11,-1: 0 - -10,-7: 0 - -10,-6: 0 - -10,-5: 0 - -10,-4: 0 - -10,-3: 0 - -10,-2: 0 - -10,-1: 0 - -9,-7: 0 - -9,-6: 0 - -9,-5: 0 - -9,-4: 0 - -9,-3: 0 - -9,-2: 0 - -9,-1: 0 - -8,-10: 0 - -8,-9: 0 - -8,-8: 0 - -8,-7: 0 - -8,-6: 0 - -8,-5: 0 - -8,-4: 0 - -8,-3: 0 - -8,-2: 0 - -8,-1: 0 - -7,-8: 0 - -7,-7: 0 - -7,-6: 0 - -7,-5: 0 - -7,-4: 0 - -7,-3: 0 - -7,-2: 0 - -7,-1: 0 - -6,-7: 0 - -6,-6: 0 - -6,-5: 0 - -6,-4: 0 - -6,-3: 0 - -6,-2: 0 - -6,-1: 0 - -5,-8: 0 - -5,-7: 0 - -5,-6: 0 - -5,-5: 0 - -5,-4: 0 - -5,-3: 0 - -4,-2: 0 - -4,-1: 0 - -3,-12: 0 - 5,5: 0 - 5,6: 0 - 5,10: 0 - 5,-2: 0 - 5,-1: 0 - -12,7: 0 - -12,8: 0 - -9,11: 0 - -12,-4: 0 - -12,-3: 0 - -8,-11: 0 - 6,-4: 0 - 6,-3: 0 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 + - version: 2 + data: + tiles: + -2,-1: + 0: 65535 + -1,-3: + 0: 65506 + -1,-1: + 0: 65535 + -1,-2: + 0: 65535 + -2,1: + 0: 65535 + -1,0: + 0: 65535 + -1,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 52991 + 0,-3: + 0: 65520 + 0,-2: + 0: 65535 + 0,-1: + 0: 65535 + 1,-3: + 0: 13072 + 1,-2: + 0: 13107 + 1,-1: + 0: 30583 + 0,1: + 0: 65535 + 0,2: + 0: 65535 + 0,3: + 0: 65535 + 0,0: + 0: 65535 + 1,3: + 0: 4369 + 1,0: + 0: 30583 + 1,1: + 0: 30583 + 1,2: + 0: 4919 + 0,4: + 0: 127 + -1,4: + 0: 140 + -2,0: + 0: 65535 + -3,0: + 0: 65535 + -3,1: + 0: 65535 + -3,2: + 0: 65535 + -2,2: + 0: 65535 + -2,3: + 0: 207 + -3,-1: + 0: 65535 + -3,-3: + 0: 8192 + -3,-2: + 0: 61154 + -2,-3: + 0: 4368 + -2,-2: + 0: 65531 + -3,3: + 0: 14 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 type: GridAtmosphere - type: OccluderTree - type: Shuttle - - nextUpdate: 4664.6776452 + - nextUpdate: 1678.8452663 type: GridPathfinding - type: RadiationGridResistance - - nextShake: 0 + - nextShake: -4201.5220081 shakeTimes: 10 type: GravityShake - type: GasTileOverlay +- uid: 1 + type: WallShuttle + components: + - rot: 1.5707963267948966 rad + pos: 0.5,9.5 + parent: 0 + type: Transform +- uid: 2 + type: ShuttleWindow + components: + - rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 0 + type: Transform +- uid: 3 + type: AirlockExternalGlass + components: + - pos: 4.5,2.5 + parent: 0 + type: Transform +- uid: 4 + type: WallShuttle + components: + - rot: 3.141592653589793 rad + pos: 4.5,4.5 + parent: 0 + type: Transform +- uid: 5 + type: WallShuttle + components: + - pos: 4.5,-5.5 + parent: 0 + type: Transform +- uid: 6 + type: WallShuttle + components: + - pos: 2.5,10.5 + parent: 0 + type: Transform +- uid: 7 + type: WallShuttle + components: + - pos: 5.5,-1.5 + parent: 0 + type: Transform +- uid: 8 + type: WallShuttle + components: + - pos: -9.5,1.5 + parent: 0 + type: Transform +- uid: 9 + type: WallShuttle + components: + - pos: -6.5,0.5 + parent: 0 + type: Transform +- uid: 10 + type: WallShuttle + components: + - pos: -7.5,-5.5 + parent: 0 + type: Transform +- uid: 11 + type: Grille + components: + - pos: -3.5,13.5 + parent: 0 + type: Transform +- uid: 12 + type: WallShuttle + components: + - rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 0 + type: Transform +- uid: 13 + type: WallReinforced + components: + - rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 0 + type: Transform +- uid: 14 + type: WallShuttle + components: + - rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 0 + type: Transform +- uid: 15 + type: ShuttleWindow + components: + - rot: 1.5707963267948966 rad + pos: -10.5,8.5 + parent: 0 + type: Transform +- uid: 16 + type: WallReinforced + components: + - rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 0 + type: Transform +- uid: 17 + type: ShuttleWindow + components: + - rot: 1.5707963267948966 rad + pos: 4.5,11.5 + parent: 0 + type: Transform +- uid: 18 + type: Grille + components: + - pos: -0.5,12.5 + parent: 0 + type: Transform +- uid: 19 + type: AirlockExternalGlass + components: + - pos: -9.5,2.5 + parent: 0 + type: Transform +- uid: 20 + type: ChairPilotSeat + components: + - pos: -2.5,11.5 + parent: 0 + type: Transform +- uid: 21 + type: ShuttleWindow + components: + - rot: 1.5707963267948966 rad + pos: 4.5,12.5 + parent: 0 + type: Transform +- uid: 22 + type: WallShuttle + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 0 + type: Transform +- uid: 23 + type: WallShuttle + components: + - pos: -10.5,-1.5 + parent: 0 + type: Transform +- uid: 24 + type: WallShuttle + components: + - pos: -10.5,-2.5 + parent: 0 + type: Transform +- uid: 25 + type: WallShuttle + components: + - pos: -10.5,-5.5 + parent: 0 + type: Transform - uid: 26 type: WallShuttle components: - pos: -8.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 27 type: Thruster components: - rot: 3.141592653589793 rad pos: -2.5,-7.5 - parent: 25 + parent: 0 type: Transform - uid: 28 - type: ComputerRadar + type: WeaponCapacitorRecharger components: - - pos: -3.5,11.5 - parent: 25 + - pos: -0.5,11.5 + parent: 0 type: Transform - uid: 29 - type: Grille + type: ShuttleWindow components: - - rot: 3.141592653589793 rad - pos: 4.5,13.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: -3.5,13.5 + parent: 0 type: Transform - uid: 30 type: WallShuttle components: - pos: 0.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 31 - type: Chair + type: Grille components: - - rot: 1.5707963267948966 rad - pos: -1.5,9.5 - parent: 25 + - rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 0 type: Transform - uid: 32 - type: WallShuttle + type: ShuttleWindow components: - - pos: -6.5,9.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 0 type: Transform - uid: 33 - type: AirlockExternalGlass - components: - - pos: 3.5,10.5 - parent: 25 - type: Transform -- uid: 34 - type: ReinforcedWindow + type: Catwalk components: - rot: 3.141592653589793 rad - pos: 2.5,13.5 - parent: 25 + pos: 3.5,10.5 + parent: 0 + type: Transform +- uid: 34 + type: WallShuttle + components: + - rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 0 type: Transform - uid: 35 type: WallShuttle components: - pos: 5.5,8.5 - parent: 25 + parent: 0 type: Transform - uid: 36 type: Grille components: - - pos: -4.5,11.5 - parent: 25 + - pos: -4.5,12.5 + parent: 0 type: Transform - uid: 37 type: WallShuttleDiagonal components: - rot: 1.5707963267948966 rad pos: -10.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 38 type: WallShuttle components: - pos: -9.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 39 type: AirlockShuttle components: - rot: -1.5707963267948966 rad pos: -11.5,2.5 - parent: 25 + parent: 0 type: Transform - fixtures: - - density: 100 - shape: !type:PolygonShape + - shape: !type:PolygonShape vertices: - 0.49,-0.49 - 0.49,0.49 @@ -1390,255 +704,260 @@ entities: - BulletImpassable - InteractImpassable - Opaque + density: 100 - shape: !type:PhysShapeCircle - position: 0,-0.5 radius: 0.2 + position: 0,-0.5 hard: False id: docking type: Fixtures - uid: 40 - type: Grille + type: Thruster components: - - pos: 0.5,9.5 - parent: 25 + - pos: -7.5,12.5 + parent: 0 type: Transform - uid: 41 type: WallShuttle components: - pos: -6.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 42 type: WallShuttle components: - - pos: -7.5,9.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: -10.5,11.5 + parent: 0 type: Transform - uid: 43 - type: Grille + type: ShuttleWindow components: - - rot: 3.141592653589793 rad - pos: 4.5,14.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: -4.5,13.5 + parent: 0 type: Transform - uid: 44 - type: ComputerShuttleSyndie + type: TableReinforced components: - - desc: Used to pilot a pirate shuttle. Arrgh. - name: pirate shuttle console - type: MetaData - - pos: -2.5,11.5 - parent: 25 + - pos: -0.5,10.5 + parent: 0 type: Transform - uid: 45 - type: ChairPilotSeat + type: Grille components: - - rot: 3.141592653589793 rad - pos: -2.5,10.5 - parent: 25 + - pos: -2.5,13.5 + parent: 0 type: Transform - uid: 46 - type: ReinforcedWindow + type: ShuttleWindow components: - - pos: -4.5,11.5 - parent: 25 + - pos: -5.5,12.5 + parent: 0 type: Transform - uid: 47 type: Grille components: - - pos: -5.5,11.5 - parent: 25 + - pos: 0.5,12.5 + parent: 0 type: Transform - uid: 48 type: WallReinforced components: - - pos: -4.5,5.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 0 type: Transform - uid: 49 type: WallShuttle components: - pos: 1.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 50 - type: ReinforcedWindow + type: Grille components: - - pos: -4.5,12.5 - parent: 25 + - pos: 0.5,11.5 + parent: 0 type: Transform - uid: 51 - type: ReinforcedWindow + type: WallShuttle components: - - rot: 3.141592653589793 rad - pos: 2.5,12.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 0 type: Transform - uid: 52 type: WallShuttle components: - rot: 1.5707963267948966 rad pos: -5.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 53 - type: WallShuttle + type: ShuttleWindow components: - - pos: 4.5,11.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 0 type: Transform - uid: 54 type: WallReinforced components: - - pos: -5.5,5.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 0 type: Transform - uid: 55 type: GeneratorUranium components: - pos: 0.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 56 type: WallShuttle components: - pos: 3.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 57 type: WallShuttle components: - pos: 2.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 58 - type: ReinforcedWindow + type: ShuttleWindow components: - - rot: 3.141592653589793 rad - pos: 4.5,14.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: -0.5,12.5 + parent: 0 type: Transform - uid: 59 type: WallReinforced components: - - pos: -5.5,3.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 0 type: Transform - uid: 60 - type: Grille + type: ComputerShuttleSyndie components: - pos: -2.5,12.5 - parent: 25 + parent: 0 type: Transform - uid: 61 type: WallShuttle components: - - pos: -9.5,9.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: -8.5,11.5 + parent: 0 type: Transform - uid: 62 type: WallShuttle components: - pos: 2.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 63 - type: WallShuttle + type: WallShuttleDiagonal components: - - rot: 3.141592653589793 rad - pos: 6.5,0.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 0 type: Transform - uid: 64 type: WallShuttle components: - - pos: -9.5,8.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 0 type: Transform - uid: 65 type: WallShuttle components: - pos: -10.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 66 type: WallShuttle components: - pos: -9.5,0.5 - parent: 25 + parent: 0 type: Transform - uid: 67 type: WallShuttle components: - rot: 3.141592653589793 rad pos: 1.5,0.5 - parent: 25 + parent: 0 type: Transform - uid: 68 type: WallReinforced components: - - pos: -5.5,2.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 0 type: Transform - uid: 69 type: WallShuttle components: - pos: -5.5,-4.5 - parent: 25 + parent: 0 type: Transform - uid: 70 type: WallShuttle components: - rot: 3.141592653589793 rad pos: 3.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 71 type: WallShuttle components: - pos: -5.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 72 type: WallShuttle components: - pos: -6.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 73 - type: Table + type: TableReinforced components: - - pos: -0.5,10.5 - parent: 25 + - pos: -0.5,11.5 + parent: 0 type: Transform - uid: 74 type: WallShuttle components: - pos: 0.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 75 - type: ReinforcedWindow + type: WallShuttleDiagonal components: - - pos: 0.5,9.5 - parent: 25 + - rot: -1.5707963267948966 rad + pos: -6.5,12.5 + parent: 0 type: Transform - uid: 76 type: WallShuttle components: - pos: -0.5,8.5 - parent: 25 + parent: 0 type: Transform - uid: 77 type: AirlockShuttle components: - rot: 1.5707963267948966 rad pos: 6.5,2.5 - parent: 25 + parent: 0 type: Transform - fixtures: - - density: 100 - shape: !type:PolygonShape + - shape: !type:PolygonShape vertices: - 0.49,-0.49 - 0.49,0.49 @@ -1656,9 +975,10 @@ entities: - BulletImpassable - InteractImpassable - Opaque + density: 100 - shape: !type:PhysShapeCircle - position: 0,-0.5 radius: 0.2 + position: 0,-0.5 hard: False id: docking type: Fixtures @@ -1666,443 +986,347 @@ entities: type: WallShuttle components: - pos: -2.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 79 type: WallShuttle components: - pos: 5.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 80 type: WallShuttle components: - pos: -5.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 81 type: WallShuttle components: - pos: -0.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 82 type: WallShuttle components: - pos: 2.5,9.5 - parent: 25 + parent: 0 type: Transform - uid: 83 type: WallShuttle components: - pos: 5.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 84 type: WallShuttle components: - pos: 5.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 85 type: WallShuttle components: - pos: -1.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 86 type: Catwalk components: - pos: 2.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 87 - type: ReinforcedWindow + type: WallShuttleDiagonal components: - - pos: 0.5,10.5 - parent: 25 + - pos: -8.5,12.5 + parent: 0 type: Transform - uid: 88 - type: ReinforcedWindow + type: ShuttleWindow components: - - pos: -0.5,11.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 0 type: Transform - uid: 89 - type: ReinforcedWindow + type: Grille components: - - rot: 3.141592653589793 rad - pos: 2.5,14.5 - parent: 25 + - pos: -5.5,12.5 + parent: 0 type: Transform - uid: 90 type: WallShuttle components: - pos: -5.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 91 type: Rack components: - pos: -0.5,1.5 - parent: 25 + parent: 0 type: Transform - uid: 92 type: Catwalk components: - pos: 2.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 93 - type: WallShuttle + type: WallShuttleDiagonal components: - - pos: -11.5,0.5 - parent: 25 + - rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 0 type: Transform - uid: 94 - type: WallShuttle + type: ShuttleWindow components: - - pos: -11.5,1.5 - parent: 25 + - rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 0 type: Transform - uid: 95 type: WallShuttle components: - pos: -8.5,0.5 - parent: 25 + parent: 0 type: Transform - uid: 96 - type: WallShuttle + type: WallShuttleDiagonal components: - - rot: 3.141592653589793 rad - pos: 6.5,4.5 - parent: 25 + - pos: -11.5,4.5 + parent: 0 type: Transform - uid: 97 type: WallShuttle components: - rot: 3.141592653589793 rad pos: 5.5,0.5 - parent: 25 + parent: 0 type: Transform - uid: 98 type: WallShuttleDiagonal components: - rot: 3.141592653589793 rad pos: 6.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 99 type: WallShuttle components: - pos: -3.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 100 type: WallReinforced components: - - pos: 0.5,-0.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 0 type: Transform - uid: 101 - type: ReinforcedWindow + type: AirlockEngineering components: - - pos: -5.5,11.5 - parent: 25 + - pos: 1.5,8.5 + parent: 0 type: Transform - uid: 102 - type: ReinforcedWindow + type: Chair components: - - pos: -5.5,10.5 - parent: 25 + - rot: -1.5707963267948966 rad + pos: -3.5,9.5 + parent: 0 type: Transform - uid: 103 type: WallShuttle components: - pos: -3.5,8.5 - parent: 25 + parent: 0 type: Transform - uid: 104 type: WallReinforced components: - - pos: -0.5,-0.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 0 type: Transform - uid: 105 - type: ReinforcedWindow + type: Grille components: - - pos: -5.5,9.5 - parent: 25 + - rot: -1.5707963267948966 rad + pos: -11.5,3.5 + parent: 0 type: Transform - uid: 106 type: WallReinforced components: - - pos: 0.5,0.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 0 type: Transform - uid: 107 type: WallShuttle components: - pos: -8.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 108 type: CableApcExtension components: - pos: -0.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 109 - type: WallReinforced + type: PosterContrabandRevolt components: - - pos: -1.5,-0.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 0 type: Transform - uid: 110 - type: WallReinforced + type: PosterContrabandSyndicateRecruitment components: - - pos: -3.5,-0.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 0 type: Transform - uid: 111 type: WallReinforced components: - - pos: -5.5,-0.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 0 type: Transform - uid: 112 type: WallReinforced components: - - pos: -5.5,0.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 0 type: Transform - uid: 113 type: WallShuttle components: - pos: 5.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 114 type: WallShuttle components: - pos: -10.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 115 type: GasPipeStraight components: - rot: 1.5707963267948966 rad pos: 3.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 116 type: WallShuttle components: - pos: -9.5,3.5 - parent: 25 + parent: 0 type: Transform - uid: 117 type: WallShuttle components: - pos: -10.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 118 type: WallShuttle components: - rot: 3.141592653589793 rad pos: 4.5,1.5 - parent: 25 + parent: 0 type: Transform - uid: 119 - type: Grille + type: ShuttleWindow components: - - rot: 3.141592653589793 rad - pos: 4.5,12.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: -2.5,13.5 + parent: 0 type: Transform - uid: 120 type: WallShuttle components: - pos: -10.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 121 - type: WallShuttle + type: ShuttleWindow components: - - pos: -11.5,3.5 - parent: 25 + - rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 0 type: Transform - uid: 122 type: WallShuttle components: - rot: 3.141592653589793 rad pos: 5.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 123 type: WallReinforced components: - - pos: 0.5,5.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 0 type: Transform - uid: 124 type: WallReinforced components: - - pos: -0.5,5.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 0 type: Transform - uid: 125 type: WallReinforced components: - - pos: -1.5,5.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 0 type: Transform - uid: 126 type: WallShuttle components: - pos: -1.5,8.5 - parent: 25 + parent: 0 type: Transform - uid: 127 type: WallShuttle components: - - pos: -8.5,9.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: -9.5,11.5 + parent: 0 type: Transform - uid: 128 type: WallShuttle components: - - pos: -10.5,8.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: -6.5,11.5 + parent: 0 type: Transform - uid: 129 type: WallShuttle components: - pos: 4.5,8.5 - parent: 25 + parent: 0 type: Transform - uid: 130 - type: WallShuttle - components: - - pos: 2.5,11.5 - parent: 25 - type: Transform -- uid: 131 - type: ReinforcedWindow - components: - - rot: 3.141592653589793 rad - pos: 4.5,13.5 - parent: 25 - type: Transform -- uid: 132 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 2.5,12.5 - parent: 25 - type: Transform -- uid: 133 - type: WallShuttle - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-6.5 - parent: 25 - type: Transform -- uid: 134 - type: WallShuttle - components: - - pos: 0.5,8.5 - parent: 25 - type: Transform -- uid: 135 - type: WallShuttle - components: - - rot: 3.141592653589793 rad - pos: 4.5,0.5 - parent: 25 - type: Transform -- uid: 136 - type: WallShuttle - components: - - pos: -10.5,0.5 - parent: 25 - type: Transform -- uid: 137 - type: WallShuttle - components: - - rot: 3.141592653589793 rad - pos: 1.5,4.5 - parent: 25 - type: Transform -- uid: 138 - type: WallShuttle - components: - - pos: 4.5,9.5 - parent: 25 - type: Transform -- uid: 139 - type: WallShuttle - components: - - pos: -9.5,4.5 - parent: 25 - type: Transform -- uid: 140 - type: WallShuttle - components: - - rot: 3.141592653589793 rad - pos: 6.5,3.5 - parent: 25 - type: Transform -- uid: 141 - type: WallShuttle - components: - - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 25 - type: Transform -- uid: 142 - type: WallShuttle - components: - - pos: 5.5,7.5 - parent: 25 - type: Transform -- uid: 143 - type: ComputerIFFSyndicate - components: - - rot: -1.5707963267948966 rad - pos: -0.5,9.5 - parent: 25 - type: Transform -- uid: 144 - type: WallShuttle - components: - - pos: -7.5,-6.5 - parent: 25 - type: Transform -- uid: 145 - type: Grille - components: - - rot: 3.141592653589793 rad - pos: 2.5,13.5 - parent: 25 - type: Transform -- uid: 146 - type: WallShuttle - components: - - pos: 2.5,8.5 - parent: 25 - type: Transform -- uid: 147 type: AirlockGlassShuttle components: - rot: 3.141592653589793 rad - pos: 3.5,14.5 - parent: 25 + pos: 3.5,15.5 + parent: 0 type: Transform - fixtures: - - density: 100 - shape: !type:PolygonShape + - shape: !type:PolygonShape vertices: - 0.49,-0.49 - 0.49,0.49 @@ -2120,284 +1344,408 @@ entities: - BulletImpassable - InteractImpassable - Opaque + density: 100 - shape: !type:PhysShapeCircle - position: 0,-0.5 radius: 0.2 + position: 0,-0.5 hard: False id: docking type: Fixtures -- uid: 148 - type: WallReinforced +- uid: 131 + type: ShuttleWindow components: - - pos: -4.5,-0.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 0 + type: Transform +- uid: 132 + type: ShuttleWindow + components: + - rot: 1.5707963267948966 rad + pos: 0.5,12.5 + parent: 0 + type: Transform +- uid: 133 + type: WallShuttle + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 0 + type: Transform +- uid: 134 + type: WallShuttle + components: + - pos: 0.5,8.5 + parent: 0 + type: Transform +- uid: 135 + type: WallShuttle + components: + - rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 0 + type: Transform +- uid: 136 + type: WallShuttle + components: + - pos: -10.5,0.5 + parent: 0 + type: Transform +- uid: 137 + type: WallShuttle + components: + - rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 0 + type: Transform +- uid: 138 + type: WallShuttle + components: + - pos: 4.5,9.5 + parent: 0 + type: Transform +- uid: 139 + type: WallShuttle + components: + - pos: -9.5,4.5 + parent: 0 + type: Transform +- uid: 140 + type: ShuttleWindow + components: + - rot: -1.5707963267948966 rad + pos: -11.5,1.5 + parent: 0 + type: Transform +- uid: 141 + type: WallShuttle + components: + - rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 0 + type: Transform +- uid: 142 + type: WallShuttle + components: + - pos: 5.5,7.5 + parent: 0 + type: Transform +- uid: 143 + type: TableReinforced + components: + - pos: -0.5,9.5 + parent: 0 + type: Transform +- uid: 144 + type: WallShuttle + components: + - pos: -7.5,-6.5 + parent: 0 + type: Transform +- uid: 145 + type: ShuttleWindow + components: + - rot: 1.5707963267948966 rad + pos: 0.5,11.5 + parent: 0 + type: Transform +- uid: 146 + type: WallShuttle + components: + - pos: 2.5,8.5 + parent: 0 + type: Transform +- uid: 147 + type: AtmosDeviceFanTiny + components: + - rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 0 + type: Transform +- uid: 148 + type: PosterContrabandRevolver + components: + - rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 0 type: Transform - uid: 149 type: WallShuttle components: - pos: -5.5,8.5 - parent: 25 + parent: 0 type: Transform - uid: 150 type: Grille components: - - pos: -5.5,9.5 - parent: 25 + - rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 0 type: Transform - uid: 151 - type: ReinforcedWindow + type: Grille components: - - pos: -3.5,12.5 - parent: 25 + - pos: -0.5,13.5 + parent: 0 type: Transform - uid: 152 - type: ReinforcedWindow + type: Grille components: - - pos: -2.5,12.5 - parent: 25 + - pos: -1.5,13.5 + parent: 0 type: Transform - uid: 153 - type: ReinforcedWindow + type: ChairPilotSeat components: - - pos: -1.5,12.5 - parent: 25 + - pos: -1.5,11.5 + parent: 0 type: Transform - uid: 154 type: WallReinforced components: - - pos: 0.5,4.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 0 type: Transform - uid: 155 type: WallReinforced components: - - pos: 0.5,3.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 0 type: Transform - uid: 156 type: WallReinforced components: - - pos: 0.5,2.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 0 type: Transform - uid: 157 type: WallShuttle components: - pos: -4.5,8.5 - parent: 25 + parent: 0 type: Transform - uid: 158 type: WallShuttle components: - pos: -8.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 159 - type: Grille + type: TableReinforced components: - - pos: -5.5,10.5 - parent: 25 + - pos: -4.5,9.5 + parent: 0 type: Transform - uid: 160 - type: Grille + type: ComputerRadar components: - - pos: -1.5,12.5 - parent: 25 + - pos: -3.5,12.5 + parent: 0 type: Transform - uid: 161 type: WallReinforced components: - - pos: -5.5,1.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 0 type: Transform - uid: 162 - type: ReinforcedWindow + type: ShuttleWindow components: - - pos: -0.5,12.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 0 type: Transform - uid: 163 type: WallReinforced components: - - pos: 0.5,1.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 0 type: Transform - uid: 164 type: WallShuttle components: - pos: 5.5,-4.5 - parent: 25 + parent: 0 type: Transform - uid: 165 - type: WallShuttle + type: SubstationBasic components: - - pos: 1.5,8.5 - parent: 25 + - pos: 1.5,9.5 + parent: 0 type: Transform - uid: 166 type: WallShuttle components: - pos: 4.5,10.5 - parent: 25 + parent: 0 type: Transform - uid: 167 type: WallShuttle components: - pos: -10.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 168 - type: WallShuttle + type: WallShuttleDiagonal components: - - pos: -11.5,4.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 0 type: Transform - uid: 169 - type: WallReinforced + type: PosterContrabandRise components: - - pos: -2.5,-0.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 0 type: Transform - uid: 170 type: WallShuttle components: - pos: -5.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 171 - type: Grille + type: ShuttleWindow components: - - pos: -0.5,12.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: -4.5,12.5 + parent: 0 type: Transform - uid: 172 type: WallShuttle components: - pos: -10.5,-4.5 - parent: 25 + parent: 0 type: Transform - uid: 173 type: Table components: - pos: -7.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 174 type: WallShuttle components: - pos: -10.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 175 type: Table components: - pos: -7.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 176 type: Table components: - pos: -7.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 177 type: Table components: - pos: -7.5,-4.5 - parent: 25 + parent: 0 type: Transform - uid: 178 type: WallShuttle components: - pos: 3.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 179 type: WallShuttle components: - pos: 4.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 180 type: Thruster components: - rot: 3.141592653589793 rad pos: 3.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 181 type: WallShuttleDiagonal components: - rot: -1.5707963267948966 rad pos: 6.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 182 type: Thruster components: - rot: 3.141592653589793 rad pos: -8.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 183 - type: WallShuttleDiagonal + type: ShuttleWindow components: - - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: 2.5,11.5 + parent: 0 type: Transform - uid: 184 type: WallShuttleDiagonal components: - pos: -11.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 185 type: WallShuttleDiagonal components: - rot: 3.141592653589793 rad pos: 6.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 186 type: WallShuttleDiagonal components: - rot: 1.5707963267948966 rad pos: -11.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 187 type: WallShuttleDiagonal components: - rot: 1.5707963267948966 rad pos: -11.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 188 - type: Thruster + type: Grille components: - - pos: 1.5,9.5 - parent: 25 + - pos: -10.5,8.5 + parent: 0 type: Transform - uid: 189 - type: Thruster + type: ShuttleWindow components: - - pos: -7.5,10.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: 4.5,13.5 + parent: 0 type: Transform - uid: 190 type: GasPipeBend components: - rot: -1.5707963267948966 rad pos: 2.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 191 type: GasMixerFlipped components: - rot: 1.5707963267948966 rad pos: 1.5,-3.5 - parent: 25 + parent: 0 type: Transform - inletTwoConcentration: 0.22000003 inletOneConcentration: 0.78 @@ -2406,515 +1754,511 @@ entities: type: WallShuttle components: - pos: 5.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 193 type: WallShuttleDiagonal components: - rot: 3.141592653589793 rad pos: 5.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 194 type: ReinforcedPlasmaWindow components: - rot: 1.5707963267948966 rad pos: 3.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 195 type: ReinforcedPlasmaWindow components: - rot: 1.5707963267948966 rad pos: 3.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 196 type: GasPipeTJunction components: - rot: 3.141592653589793 rad pos: 0.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 197 type: GasPipeBend components: - rot: 1.5707963267948966 rad pos: 2.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 198 type: GasPipeBend components: - rot: 1.5707963267948966 rad pos: 0.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 199 type: GasPipeStraight components: - rot: 1.5707963267948966 rad pos: 1.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 200 - type: WallShuttle + type: ShuttleWindow components: - - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 25 + - rot: -1.5707963267948966 rad + pos: -11.5,3.5 + parent: 0 type: Transform - uid: 201 type: GasPassiveVent components: - rot: -1.5707963267948966 rad pos: 4.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 202 type: GasPassiveVent components: - rot: -1.5707963267948966 rad pos: 4.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 203 type: GasPressurePump components: - rot: 3.141592653589793 rad pos: 1.5,-4.5 - parent: 25 + parent: 0 type: Transform - uid: 204 type: GasPressurePump components: - rot: -1.5707963267948966 rad pos: 2.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 205 type: GasPort components: - rot: -1.5707963267948966 rad pos: 3.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 206 type: GasPort components: - rot: 3.141592653589793 rad pos: 1.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 207 type: NitrogenCanister components: - pos: 3.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 208 type: OxygenCanister components: - pos: 1.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 209 type: WallShuttle components: - pos: 5.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 210 type: StorageCanister components: - pos: 4.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 211 type: GasPressurePump components: - rot: -1.5707963267948966 rad pos: -0.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 212 type: GasPipeStraight components: - rot: -1.5707963267948966 rad pos: -1.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 213 type: GasPipeTJunction components: - rot: 1.5707963267948966 rad pos: -2.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 214 type: GasPipeBend components: - pos: -2.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 215 type: GasPipeStraight components: - rot: -1.5707963267948966 rad pos: -3.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 216 type: GasPipeStraight components: - rot: -1.5707963267948966 rad pos: -4.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 217 type: GasPipeStraight components: - rot: -1.5707963267948966 rad pos: -5.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 218 type: GasPipeStraight components: - rot: -1.5707963267948966 rad pos: -6.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 219 type: GasPipeBend components: - rot: 3.141592653589793 rad pos: -7.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 220 type: GasPipeTJunction components: - rot: -1.5707963267948966 rad pos: -7.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 221 type: GasPipeStraight components: - rot: 3.141592653589793 rad pos: -7.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 222 type: GasPipeStraight components: - rot: 3.141592653589793 rad pos: -7.5,0.5 - parent: 25 + parent: 0 type: Transform - uid: 223 type: GasPipeStraight components: - rot: 3.141592653589793 rad pos: -7.5,1.5 - parent: 25 + parent: 0 type: Transform - uid: 224 type: GasPipeTJunction components: - rot: -1.5707963267948966 rad pos: -7.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 225 type: GasPipeStraight components: - pos: -7.5,3.5 - parent: 25 + parent: 0 type: Transform - uid: 226 type: GasPipeStraight components: - pos: -7.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 227 type: GasPipeStraight components: - pos: -7.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 228 - type: GasPipeTJunction + type: GasPipeFourway components: - pos: -7.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 229 type: GasPipeStraight components: - rot: -1.5707963267948966 rad pos: -6.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 230 - type: GasPipeStraight + type: CableHV components: - - rot: -1.5707963267948966 rad - pos: -5.5,6.5 - parent: 25 + - pos: 1.5,7.5 + parent: 0 type: Transform - uid: 231 type: GasPipeStraight components: - rot: -1.5707963267948966 rad pos: -4.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 232 type: GasPipeStraight components: - rot: -1.5707963267948966 rad pos: -3.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 233 type: GasPipeFourway components: - pos: -2.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 234 type: GasPipeTJunction components: - rot: -1.5707963267948966 rad pos: -2.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 235 type: GasPipeStraight components: - rot: 1.5707963267948966 rad pos: -1.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 236 type: GasPipeStraight components: - rot: 1.5707963267948966 rad pos: -0.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 237 type: GasPipeStraight components: - rot: 1.5707963267948966 rad pos: 0.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 238 type: GasPipeStraight components: - rot: 1.5707963267948966 rad pos: 1.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 239 - type: GasPipeTJunction + type: GasVentPump components: - - pos: 2.5,6.5 - parent: 25 + - pos: 2.5,7.5 + parent: 0 type: Transform - uid: 240 type: GasPipeStraight components: - pos: 2.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 241 type: GasPipeStraight components: - pos: 2.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 242 type: GasPipeStraight components: - pos: 2.5,3.5 - parent: 25 + parent: 0 type: Transform - uid: 243 type: GasVentPump components: - rot: -1.5707963267948966 rad pos: 3.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 244 type: GasPipeStraight components: - rot: 3.141592653589793 rad pos: 2.5,1.5 - parent: 25 + parent: 0 type: Transform - uid: 245 type: GasPipeStraight components: - rot: 3.141592653589793 rad pos: 2.5,0.5 - parent: 25 + parent: 0 type: Transform - uid: 246 type: GasPipeBend components: - rot: 3.141592653589793 rad pos: 2.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 247 type: GasPipeStraight components: - rot: 1.5707963267948966 rad pos: 3.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 248 type: GasPipeStraight components: - pos: -2.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 249 type: GasPipeStraight components: - pos: -2.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 250 type: GasPipeStraight components: - pos: -2.5,3.5 - parent: 25 + parent: 0 type: Transform - uid: 251 - type: GasVentPump + type: GasPipeStraight components: - rot: 3.141592653589793 rad pos: -2.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 252 type: GasVentPump components: - rot: 1.5707963267948966 rad pos: -3.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 253 type: GasVentPump components: - rot: 1.5707963267948966 rad pos: -8.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 254 - type: GasVentPump + type: GasPipeFourway components: - - rot: -1.5707963267948966 rad - pos: 3.5,6.5 - parent: 25 + - pos: 2.5,6.5 + parent: 0 type: Transform - uid: 255 type: GasVentPump components: - rot: 1.5707963267948966 rad pos: -8.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 256 type: Rack components: - pos: -6.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 257 type: GasVentPump components: - rot: 1.5707963267948966 rad pos: -8.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 258 type: GasVentPump components: - rot: 3.141592653589793 rad pos: -2.5,-4.5 - parent: 25 + parent: 0 type: Transform - uid: 259 type: GasPipeStraight components: - rot: 3.141592653589793 rad pos: -2.5,8.5 - parent: 25 + parent: 0 type: Transform - uid: 260 type: GasVentPump components: - pos: -2.5,9.5 - parent: 25 + parent: 0 type: Transform - uid: 261 type: APCBasic components: - pos: -0.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 262 type: APCBasic components: - pos: -9.5,0.5 - parent: 25 + parent: 0 type: Transform - uid: 263 type: APCBasic components: - pos: 4.5,8.5 - parent: 25 + parent: 0 type: Transform - uid: 264 type: GeneratorWallmountAPU components: - pos: 3.5,-2.5 - parent: 25 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 265 type: GeneratorUranium components: - pos: -0.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 266 type: GeneratorUranium components: - pos: -1.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 267 type: SMESBasic components: - pos: -3.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 268 type: CableTerminal components: - rot: -1.5707963267948966 rad pos: -2.5,-1.5 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -2924,1069 +2268,1072 @@ entities: type: CableHV components: - pos: -2.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 270 type: CableHV components: - pos: -1.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 271 type: CableHV components: - pos: -0.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 272 type: CableHV components: - pos: 0.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 273 type: CableHV components: - pos: 1.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 274 type: CableHV components: - pos: 1.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 275 type: CableHV components: - pos: 2.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 276 type: CableHV components: - pos: 3.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 277 type: SubstationBasic components: - pos: -4.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 278 - type: SubstationBasic + type: PersonalAI components: - - pos: -9.5,7.5 - parent: 25 + - flags: SessionSpecific + type: MetaData + - pos: -4.4466166,11.478956 + parent: 0 type: Transform - uid: 279 type: CableHV components: - pos: -3.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 280 type: CableHV components: - pos: -4.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 281 type: CableHV components: - pos: -4.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 282 type: CableHV components: - pos: -4.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 283 type: CableHV components: - pos: -4.5,-4.5 - parent: 25 + parent: 0 type: Transform - uid: 284 type: CableHV components: - pos: -4.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 285 type: CableHV components: - pos: -5.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 286 type: CableHV components: - pos: -6.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 287 type: CableHV components: - pos: -7.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 288 type: CableHV components: - pos: -7.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 289 type: CableHV components: - pos: -7.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 290 type: CableHV components: - pos: -7.5,0.5 - parent: 25 + parent: 0 type: Transform - uid: 291 type: CableHV components: - pos: -7.5,1.5 - parent: 25 + parent: 0 type: Transform - uid: 292 type: CableHV components: - pos: -7.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 293 type: CableHV components: - pos: -7.5,3.5 - parent: 25 + parent: 0 type: Transform - uid: 294 type: CableHV components: - pos: -7.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 295 type: CableHV components: - pos: -7.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 296 type: CableHV components: - - pos: -8.5,5.5 - parent: 25 + - pos: -7.5,6.5 + parent: 0 type: Transform - uid: 297 type: CableHV components: - - pos: -9.5,5.5 - parent: 25 + - pos: -3.5,6.5 + parent: 0 type: Transform - uid: 298 type: CableHV components: - - pos: -9.5,6.5 - parent: 25 + - pos: -2.5,6.5 + parent: 0 type: Transform - uid: 299 - type: CableHV + type: Grille components: - - pos: -9.5,7.5 - parent: 25 + - pos: 4.5,11.5 + parent: 0 type: Transform - uid: 300 type: CableMV components: - pos: -4.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 301 type: CableMV components: - pos: -4.5,-4.5 - parent: 25 + parent: 0 type: Transform - uid: 302 type: CableMV components: - pos: -4.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 303 type: CableMV components: - pos: -4.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 304 type: CableMV components: - pos: -5.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 305 type: CableMV components: - pos: -6.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 306 type: CableMV components: - pos: -7.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 307 type: CableMV components: - pos: -8.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 308 type: CableMV components: - pos: -9.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 309 type: CableMV components: - pos: -9.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 310 type: CableMV components: - pos: -9.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 311 type: CableMV components: - pos: -9.5,0.5 - parent: 25 + parent: 0 type: Transform - uid: 312 - type: CableMV + type: TableReinforced components: - - pos: -9.5,7.5 - parent: 25 + - pos: -4.5,11.5 + parent: 0 type: Transform - uid: 313 - type: CableMV + type: CableHV components: - - pos: -9.5,6.5 - parent: 25 + - pos: 1.5,6.5 + parent: 0 type: Transform - uid: 314 type: CableMV components: - pos: -8.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 315 - type: CableMV + type: CableHV components: - - pos: -7.5,6.5 - parent: 25 + - pos: 0.5,6.5 + parent: 0 type: Transform - uid: 316 - type: CableMV + type: CableHV components: - - pos: -6.5,6.5 - parent: 25 + - pos: 1.5,8.5 + parent: 0 type: Transform - uid: 317 - type: CableMV + type: GasPipeStraight components: - - pos: -5.5,6.5 - parent: 25 + - rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 0 type: Transform - uid: 318 - type: CableMV + type: CableHV components: - - pos: -4.5,6.5 - parent: 25 + - pos: -0.5,6.5 + parent: 0 type: Transform - uid: 319 type: CableMV components: - - pos: -3.5,6.5 - parent: 25 + - pos: 1.5,9.5 + parent: 0 type: Transform - uid: 320 type: CableMV components: - - pos: -2.5,6.5 - parent: 25 + - pos: 1.5,8.5 + parent: 0 type: Transform - uid: 321 type: CableMV components: - - pos: -1.5,6.5 - parent: 25 + - pos: 1.5,7.5 + parent: 0 type: Transform - uid: 322 type: CableMV components: - pos: -0.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 323 type: CableMV components: - pos: -0.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 324 type: CableMV components: - pos: 0.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 325 type: CableMV components: - pos: 1.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 326 - type: CableMV + type: CableHV components: - - pos: 2.5,6.5 - parent: 25 + - pos: -1.5,6.5 + parent: 0 type: Transform - uid: 327 type: CableMV components: - pos: 2.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 328 type: CableMV components: - pos: 3.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 329 type: CableMV components: - pos: 4.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 330 type: CableMV components: - pos: 4.5,8.5 - parent: 25 + parent: 0 type: Transform - uid: 331 type: APCBasic components: - pos: 0.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 332 type: CableMV components: - pos: -3.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 333 type: CableMV components: - pos: -2.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 334 type: CableMV components: - pos: -1.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 335 type: CableMV components: - pos: -0.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 336 type: CableMV components: - pos: 0.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 337 type: CableMV components: - pos: 0.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 338 type: CableMV components: - pos: 0.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 339 type: CableApcExtension components: - pos: -0.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 340 type: CableApcExtension components: - pos: -0.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 341 type: CableApcExtension components: - pos: -1.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 342 type: CableApcExtension components: - pos: -2.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 343 type: CableApcExtension components: - pos: -2.5,3.5 - parent: 25 + parent: 0 type: Transform - uid: 344 type: CableApcExtension components: - pos: -2.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 345 type: CableApcExtension components: - pos: -2.5,1.5 - parent: 25 + parent: 0 type: Transform - uid: 346 type: CableApcExtension components: - pos: -2.5,0.5 - parent: 25 + parent: 0 type: Transform - uid: 347 type: CableApcExtension components: - pos: -3.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 348 type: CableApcExtension components: - pos: -1.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 349 type: CableApcExtension components: - pos: -4.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 350 type: CableApcExtension components: - pos: -0.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 351 type: CableApcExtension components: - pos: 4.5,8.5 - parent: 25 + parent: 0 type: Transform - uid: 352 type: CableApcExtension components: - pos: 4.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 353 type: CableApcExtension components: - pos: 4.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 354 type: CableApcExtension components: - pos: 3.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 355 type: CableApcExtension components: - pos: 3.5,8.5 - parent: 25 + parent: 0 type: Transform - uid: 356 type: CableApcExtension components: - pos: 3.5,9.5 - parent: 25 + parent: 0 type: Transform - uid: 357 type: CableApcExtension components: - pos: 3.5,10.5 - parent: 25 + parent: 0 type: Transform - uid: 358 type: CableApcExtension components: - pos: 3.5,11.5 - parent: 25 + parent: 0 type: Transform - uid: 359 type: CableApcExtension components: - pos: 3.5,12.5 - parent: 25 + parent: 0 type: Transform - uid: 360 type: CableApcExtension components: - pos: 3.5,13.5 - parent: 25 + parent: 0 type: Transform - uid: 361 type: GravityGeneratorMini components: - pos: -1.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 362 type: CableApcExtension components: - pos: 2.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 363 type: CableApcExtension components: - pos: 2.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 364 type: CableApcExtension components: - pos: 2.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 365 type: CableApcExtension components: - pos: 2.5,3.5 - parent: 25 + parent: 0 type: Transform - uid: 366 type: CableApcExtension components: - pos: 2.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 367 type: CableApcExtension components: - pos: 3.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 368 type: CableApcExtension components: - pos: 5.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 369 type: CableApcExtension components: - pos: 4.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 370 type: CableApcExtension components: - pos: 2.5,1.5 - parent: 25 + parent: 0 type: Transform - uid: 371 type: CableApcExtension components: - pos: -1.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 372 type: CableApcExtension components: - pos: -2.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 373 type: CableApcExtension components: - pos: -3.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 374 type: CableApcExtension components: - pos: -4.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 375 type: CableApcExtension components: - pos: -2.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 376 type: CableApcExtension components: - pos: -2.5,8.5 - parent: 25 + parent: 0 type: Transform - uid: 377 type: CableApcExtension components: - pos: -2.5,9.5 - parent: 25 + parent: 0 type: Transform - uid: 378 type: CableApcExtension components: - pos: -2.5,10.5 - parent: 25 + parent: 0 type: Transform - uid: 379 type: CableApcExtension components: - pos: -2.5,11.5 - parent: 25 + parent: 0 type: Transform - uid: 380 type: CableApcExtension components: - pos: -3.5,9.5 - parent: 25 + parent: 0 type: Transform - uid: 381 type: CableApcExtension components: - pos: -4.5,9.5 - parent: 25 + parent: 0 type: Transform - uid: 382 type: CableApcExtension components: - pos: -1.5,9.5 - parent: 25 + parent: 0 type: Transform - uid: 383 type: CableApcExtension components: - pos: -0.5,9.5 - parent: 25 + parent: 0 type: Transform - uid: 384 type: CableApcExtension components: - pos: 0.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 385 type: CableApcExtension components: - pos: 0.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 386 type: CableApcExtension components: - pos: 0.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 387 type: CableApcExtension components: - pos: 1.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 388 type: CableApcExtension components: - pos: 2.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 389 type: CableApcExtension components: - pos: 2.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 390 type: CableApcExtension components: - pos: 2.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 391 type: CableApcExtension components: - pos: -0.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 392 type: CableApcExtension components: - pos: -1.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 393 type: CableApcExtension components: - pos: -2.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 394 type: CableApcExtension components: - pos: -3.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 395 type: CableApcExtension components: - pos: -4.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 396 type: CableApcExtension components: - pos: 0.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 397 type: CableApcExtension components: - pos: -9.5,0.5 - parent: 25 + parent: 0 type: Transform - uid: 398 type: CableApcExtension components: - pos: 0.5,-4.5 - parent: 25 + parent: 0 type: Transform - uid: 399 type: CableApcExtension components: - pos: 0.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 400 type: CableApcExtension components: - pos: -0.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 401 type: CableApcExtension components: - pos: -1.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 402 type: CableApcExtension components: - pos: -2.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 403 type: CableApcExtension components: - pos: -3.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 404 type: CableApcExtension components: - pos: -4.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 405 type: CableApcExtension components: - pos: 1.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 406 type: CableApcExtension components: - pos: -9.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 407 type: CableApcExtension components: - pos: -8.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 408 type: CableApcExtension components: - pos: -7.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 409 type: CableApcExtension components: - pos: -7.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 410 type: CableApcExtension components: - pos: -7.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 411 type: CableApcExtension components: - pos: -7.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 412 type: CableApcExtension components: - pos: -7.5,-4.5 - parent: 25 + parent: 0 type: Transform - uid: 413 type: CableApcExtension components: - pos: -6.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 414 type: CableApcExtension components: - pos: -7.5,0.5 - parent: 25 + parent: 0 type: Transform - uid: 415 type: CableApcExtension components: - pos: -7.5,1.5 - parent: 25 + parent: 0 type: Transform - uid: 416 type: CableApcExtension components: - pos: -7.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 417 type: CableApcExtension components: - pos: -7.5,3.5 - parent: 25 + parent: 0 type: Transform - uid: 418 type: CableApcExtension components: - pos: -8.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 419 type: CableApcExtension components: - pos: -9.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 420 type: CableApcExtension components: - pos: -10.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 421 type: CableApcExtension components: - pos: -7.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 422 type: CableApcExtension components: - pos: -7.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 423 type: CableApcExtension components: - pos: -7.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 424 type: CableApcExtension components: - pos: -6.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 425 type: CableApcExtension components: - pos: -7.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 426 type: CableApcExtension components: - pos: -7.5,8.5 - parent: 25 + parent: 0 type: Transform - uid: 427 type: CableApcExtension components: - pos: -8.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 428 type: CableApcExtension components: - pos: -9.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 429 type: CableApcExtension components: - pos: 1.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 430 type: CableApcExtension components: - pos: 1.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 431 type: CableApcExtension components: - pos: 1.5,8.5 - parent: 25 + parent: 0 type: Transform - uid: 432 type: CableApcExtension components: - pos: 4.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 433 type: CableApcExtension components: - pos: 5.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 434 type: CableApcExtension components: - pos: -7.5,9.5 - parent: 25 + parent: 0 type: Transform - uid: 435 type: CableApcExtension components: - pos: -10.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 436 type: CableApcExtension components: - pos: -10.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 437 type: CableApcExtension components: - pos: -7.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 438 type: CableApcExtension components: - pos: -8.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 439 type: CableApcExtension components: - pos: -9.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 440 type: CableApcExtension components: - pos: 2.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 441 type: CableApcExtension components: - pos: 3.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 442 type: CableApcExtension components: - pos: 4.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 443 type: CableApcExtension components: - pos: 3.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 444 type: CableApcExtension components: - pos: 4.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 445 type: CableApcExtension components: - pos: 5.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 446 type: PoweredSmallLight components: - pos: 0.5,-1.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -3994,7 +3341,7 @@ entities: type: PoweredSmallLight components: - pos: -2.5,-1.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4003,7 +3350,7 @@ entities: components: - rot: 1.5707963267948966 rad pos: -9.5,-0.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4012,7 +3359,7 @@ entities: components: - rot: 3.141592653589793 rad pos: -7.5,-4.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4020,7 +3367,7 @@ entities: type: PoweredSmallLight components: - pos: -10.5,3.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4028,7 +3375,7 @@ entities: type: PoweredSmallLight components: - pos: 5.5,3.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4037,7 +3384,7 @@ entities: components: - rot: -1.5707963267948966 rad pos: 3.5,3.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4046,7 +3393,7 @@ entities: components: - rot: 1.5707963267948966 rad pos: -8.5,3.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4055,7 +3402,7 @@ entities: components: - rot: 3.141592653589793 rad pos: -4.5,9.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4064,7 +3411,7 @@ entities: components: - rot: 3.141592653589793 rad pos: -0.5,9.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4073,7 +3420,7 @@ entities: components: - rot: 1.5707963267948966 rad pos: -4.5,2.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4082,7 +3429,7 @@ entities: components: - rot: -1.5707963267948966 rad pos: -0.5,2.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4091,7 +3438,7 @@ entities: components: - rot: 3.141592653589793 rad pos: -2.5,0.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4099,7 +3446,7 @@ entities: type: PoweredSmallLight components: - pos: 2.5,7.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4108,7 +3455,7 @@ entities: components: - rot: -1.5707963267948966 rad pos: 4.5,6.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4117,24 +3464,22 @@ entities: components: - rot: -1.5707963267948966 rad pos: 3.5,11.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver - uid: 462 - type: PoweredSmallLight + type: Grille components: - - pos: -7.5,8.5 - parent: 25 + - pos: 2.5,12.5 + parent: 0 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 463 type: PoweredSmallLight components: - rot: 1.5707963267948966 rad pos: -9.5,6.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4143,7 +3488,7 @@ entities: components: - rot: -1.5707963267948966 rad pos: -6.5,5.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4151,7 +3496,7 @@ entities: type: PoweredSmallLight components: - pos: -4.5,7.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4159,7 +3504,7 @@ entities: type: PoweredSmallLight components: - pos: -0.5,7.5 - parent: 25 + parent: 0 type: Transform - powerLoad: 0 type: ApcPowerReceiver @@ -4167,7 +3512,7 @@ entities: type: Gyroscope components: - pos: -2.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 468 type: VendingMachineYouTool @@ -4175,66 +3520,66 @@ entities: - flags: SessionSpecific type: MetaData - pos: -6.5,3.5 - parent: 25 + parent: 0 type: Transform - uid: 469 type: Gyroscope components: - pos: -3.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 470 type: Table components: - pos: -9.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 471 type: StoolBar components: - rot: -1.5707963267948966 rad pos: -6.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 472 type: StoolBar components: - rot: -1.5707963267948966 rad pos: -6.5,-4.5 - parent: 25 + parent: 0 type: Transform - uid: 473 type: StoolBar components: - rot: -1.5707963267948966 rad pos: -6.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 474 type: StoolBar components: - rot: -1.5707963267948966 rad pos: -6.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 475 type: Table components: - pos: -9.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 476 type: Table components: - pos: -9.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 477 type: soda_dispenser components: - rot: 1.5707963267948966 rad pos: -9.5,-2.5 - parent: 25 + parent: 0 type: Transform - containers: ReagentDispenser-beaker: !type:ContainerSlot {} @@ -4249,7 +3594,7 @@ entities: components: - rot: 1.5707963267948966 rad pos: -9.5,-3.5 - parent: 25 + parent: 0 type: Transform - containers: ReagentDispenser-beaker: !type:ContainerSlot {} @@ -4263,200 +3608,203 @@ entities: type: AirlockEngineering components: - pos: -5.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 480 type: AirlockEngineering components: - pos: 2.5,0.5 - parent: 25 + parent: 0 type: Transform - uid: 481 - type: AirlockCommand + type: AirlockCommandGlass components: - pos: -2.5,8.5 - parent: 25 + parent: 0 type: Transform - uid: 482 - type: AirlockCommand + type: AirlockSecurity components: - - pos: -2.5,5.5 - parent: 25 + - rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 0 type: Transform - uid: 483 - type: Airlock + type: AirlockCommandGlass components: - - pos: -7.5,7.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 0 type: Transform - uid: 484 type: AirlockGlass components: - pos: -7.5,0.5 - parent: 25 + parent: 0 type: Transform - uid: 485 type: AirlockMedicalGlass components: - pos: 0.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 486 type: AirlockMedicalGlass components: - pos: 2.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 487 type: AirlockGlass components: - pos: -7.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 488 - type: AirlockGlass + type: CableHV components: - - pos: -5.5,6.5 - parent: 25 + - pos: 1.5,9.5 + parent: 0 type: Transform - uid: 489 type: Grille components: - pos: 3.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 490 type: Grille components: - pos: 3.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 491 type: Catwalk components: - pos: 2.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 492 type: Catwalk components: - pos: 1.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 493 type: Catwalk components: - pos: 0.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 494 type: Catwalk components: - pos: -0.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 495 type: Catwalk components: - pos: -1.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 496 type: Catwalk components: - pos: -2.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 497 type: Catwalk components: - pos: -3.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 498 type: Catwalk components: - pos: -4.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 499 type: Catwalk components: - pos: 3.5,11.5 - parent: 25 + parent: 0 type: Transform - uid: 500 type: Catwalk components: - pos: 3.5,12.5 - parent: 25 + parent: 0 type: Transform - uid: 501 type: Catwalk components: - pos: 3.5,13.5 - parent: 25 + parent: 0 type: Transform - uid: 502 type: Catwalk components: - pos: 5.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 503 type: Catwalk components: - pos: -10.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 504 type: Catwalk components: - pos: -7.5,1.5 - parent: 25 + parent: 0 type: Transform - uid: 505 type: GasPipeTJunction components: - rot: 1.5707963267948966 rad pos: 2.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 506 type: Catwalk components: - pos: -7.5,3.5 - parent: 25 + parent: 0 type: Transform - uid: 507 - type: Catwalk + type: WallShuttle components: - - pos: -6.5,6.5 - parent: 25 + - rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 0 type: Transform - uid: 508 - type: Catwalk + type: Grille components: - - pos: -7.5,6.5 - parent: 25 + - pos: 2.5,11.5 + parent: 0 type: Transform - uid: 509 - type: Catwalk + type: Grille components: - - pos: -8.5,6.5 - parent: 25 + - pos: 4.5,13.5 + parent: 0 type: Transform - uid: 510 - type: Catwalk + type: Grille components: - - pos: -9.5,6.5 - parent: 25 + - pos: 4.5,12.5 + parent: 0 type: Transform - uid: 511 type: DrinkShaker components: - pos: -9.676509,-1.6372542 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -4464,7 +3812,7 @@ entities: type: DrinkWineBottleFull components: - pos: -9.720953,-1.2651272 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -4472,7 +3820,7 @@ entities: type: DrinkCognacBottleFull components: - pos: -9.455328,-1.4370022 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -4480,7 +3828,7 @@ entities: type: DrinkBottleAle components: - pos: -9.517828,-1.2026272 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -4488,7 +3836,7 @@ entities: type: Thruster components: - pos: 5.5,9.5 - parent: 25 + parent: 0 type: Transform - uid: 516 type: VendingMachineCigs @@ -4497,19 +3845,21 @@ entities: name: cigarette machine type: MetaData - pos: -6.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 517 - type: Sink + type: VendingMachineSovietSoda components: + - flags: SessionSpecific + type: MetaData - pos: -9.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 518 type: Lighter components: - pos: -7.3640995,-4.4362655 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -4517,282 +3867,242 @@ entities: type: ClosetEmergencyFilledRandom components: - pos: -10.5,3.5 - parent: 25 + parent: 0 type: Transform - uid: 520 - type: ClosetEmergencyFilledRandom + type: OxygenCanister components: - - pos: 5.5,3.5 - parent: 25 + - pos: 5.5,1.5 + parent: 0 type: Transform - uid: 521 type: OxygenCanister components: - pos: -10.5,1.5 - parent: 25 + parent: 0 type: Transform - uid: 522 - type: OxygenCanister + type: ClosetEmergencyFilledRandom components: - - pos: 5.5,1.5 - parent: 25 + - pos: 5.5,3.5 + parent: 0 type: Transform - uid: 523 type: Rack components: - pos: -4.5,1.5 - parent: 25 + parent: 0 type: Transform - uid: 524 type: Rack components: - pos: -4.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 525 type: Rack components: - pos: -0.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 526 - type: ClothingOuterHardsuitEVA + type: CarpetBlack components: - - pos: -4.5551305,1.5432775 - parent: 25 + - pos: -7.5,10.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 527 - type: ClothingOuterHardsuitEVA + type: CarpetBlack components: - - pos: -4.5238805,2.6057775 - parent: 25 + - pos: -7.5,8.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 528 - type: ClothingOuterHardsuitEVA + type: CarpetBlack components: - - pos: -0.49263048,1.5589025 - parent: 25 + - pos: -8.5,9.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 529 - type: ClothingOuterHardsuitEVA + type: Rack components: - - pos: -0.46138048,2.5589025 - parent: 25 + - pos: -4.5,0.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 530 - type: ClothingHeadHelmetEVA + type: CarpetBlack components: - - pos: -4.6801305,2.4964025 - parent: 25 + - pos: -7.5,9.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 531 - type: ClothingHeadHelmetEVA + type: CarpetBlack components: - - pos: -4.6488805,1.4807775 - parent: 25 + - pos: -8.5,8.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 532 - type: ClothingHeadHelmetEVA + type: CarpetBlack components: - - pos: -0.5707555,1.4339025 - parent: 25 + - pos: -8.5,10.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 533 - type: ClothingHeadHelmetEVA + type: FaxMachineSyndie components: - - pos: -0.5863805,2.4964025 - parent: 25 + - pos: -9.5,10.5 + parent: 0 type: Transform - - canCollide: False - type: Physics + - name: pirate fax + type: FaxMachine - uid: 534 type: Table components: - pos: -4.5,3.5 - parent: 25 + parent: 0 type: Transform - uid: 535 type: Table components: - pos: -4.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 536 type: Table components: - pos: -3.5,4.5 - parent: 25 + parent: 0 type: Transform - uid: 537 - type: SpaceCash + type: ClothingShoesBootsMag components: - - pos: -4.2487273,4.740372 - parent: 25 + - pos: -0.55260205,3.4916167 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 538 - type: SpaceCash + type: WeaponRevolverPirate components: - - pos: -4.3268523,4.521622 - parent: 25 + - pos: -4.573346,4.0735464 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 539 - type: WeaponCapacitorRecharger + type: BoxLethalshot components: - - pos: -3.5,4.5 - parent: 25 + - pos: -3.588971,4.6360464 + parent: 0 type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures - - containers: - charger-slot: !type:ContainerSlot {} - charger_slot: !type:ContainerSlot {} - type: ContainerContainer - uid: 540 type: Table components: - pos: -0.5,3.5 - parent: 25 + parent: 0 type: Transform - uid: 541 type: CableApcExtension components: - pos: -2.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 542 type: Thruster components: - rot: 3.141592653589793 rad pos: 4.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 543 type: Thruster components: - rot: 3.141592653589793 rad pos: -9.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 544 type: CratePrivateSecure components: - pos: -0.5,4.5 - parent: 25 + parent: 0 type: Transform - - locked: False - type: Lock - - containers: - - EntityStorageComponent - - entity_storage - type: Construction - uid: 545 - type: Table + type: ClothingOuterHardsuitPirateEVA components: - - pos: -4.5,0.5 - parent: 25 + - pos: -4.5863295,1.517483 + parent: 0 type: Transform - uid: 546 - type: Table + type: ClothingOuterHardsuitPirateEVA components: - - pos: -3.5,0.5 - parent: 25 + - pos: -4.5707045,2.517483 + parent: 0 type: Transform - uid: 547 - type: Table + type: ClothingHeadHatPirate components: - - pos: -0.5,0.5 - parent: 25 + - pos: -6.554,8.790821 + parent: 0 type: Transform - uid: 548 - type: Table + type: SpawnPointPirates components: - - pos: -1.5,0.5 - parent: 25 + - pos: 0.5,-3.5 + parent: 0 type: Transform - uid: 549 - type: Bed + type: PoweredSmallLight components: - - pos: -6.5,8.5 - parent: 25 + - rot: -1.5707963267948966 rad + pos: -6.5,9.5 + parent: 0 type: Transform + - powerLoad: 0 + type: ApcPowerReceiver - uid: 550 - type: BedsheetBrown + type: Grille components: - - pos: -6.5,8.5 - parent: 25 + - pos: -10.5,10.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 551 - type: TableWood + type: CableApcExtension components: - - pos: -8.5,8.5 - parent: 25 + - pos: -8.5,9.5 + parent: 0 type: Transform - uid: 552 - type: ChairWood + type: Grille components: - - pos: -7.5,8.5 - parent: 25 + - pos: -10.5,9.5 + parent: 0 type: Transform - uid: 553 type: CableApcExtension components: - pos: -2.5,-4.5 - parent: 25 + parent: 0 type: Transform - uid: 554 - type: ClothingOuterCoatPirate + type: CableApcExtension components: - - pos: -8.451058,8.571966 - parent: 25 + - pos: -5.5,6.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 555 - type: ClothingHeadHatPirate + type: CableApcExtension components: - - pos: -8.482308,8.775091 - parent: 25 + - pos: -2.5,12.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 556 - type: LockerSyndicatePersonal + type: ClothingOuterHardsuitPirateEVA components: - - desc: A hardy closet for any good pirate. - name: pirate closet - type: MetaData - - pos: -2.5,0.5 - parent: 25 + - pos: -0.57070446,2.579983 + parent: 0 type: Transform - - locked: False - type: Lock - uid: 557 type: DrinkWhiskeyBottleFull components: - pos: -7.6487703,-3.1932058 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -4800,7 +4110,7 @@ entities: type: DrinkGlass components: - pos: -7.3675203,-2.6619558 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -4808,7 +4118,7 @@ entities: type: DrinkGlass components: - pos: -7.4925203,-2.2557058 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -4816,7 +4126,7 @@ entities: type: DrinkGlass components: - pos: -7.2581453,-1.2869558 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -4824,83 +4134,68 @@ entities: type: WeldingFuelTankFull components: - pos: -6.5,1.5 - parent: 25 + parent: 0 type: Transform - uid: 562 type: WaterTankFull components: - pos: 1.5,1.5 - parent: 25 + parent: 0 type: Transform - uid: 563 type: CableApcExtension components: - pos: -2.5,-5.5 - parent: 25 + parent: 0 type: Transform - uid: 564 type: CableApcExtension components: - pos: -2.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 565 - type: SpaceCash + type: WeaponShotgunBlunderbuss components: - - pos: -4.3893523,4.255997 - parent: 25 + - pos: -4.4169397,4.4548354 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 566 - type: PosterContrabandRedRum + type: WallReinforced components: - - pos: -5.5,-0.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 0 type: Transform - uid: 567 - type: DrinkBottleRum + type: ClothingOuterHardsuitPirateEVA components: - - pos: -3.3236163,0.66330457 - parent: 25 + - pos: -0.58632946,1.595608 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 568 - type: DrinkBottleRum + type: ClothingOuterHardsuitPirateEVA components: - - pos: -3.6204913,0.72580457 - parent: 25 + - pos: -0.58632946,0.611233 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 569 - type: DrinkBottleRum + type: CratePirateChest components: - - pos: -3.4798663,0.83517957 - parent: 25 + - pos: -2.5,0.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 570 - type: WeaponCapacitorRecharger + type: ChairPilotSeat components: - - pos: -1.5,11.5 - parent: 25 + - pos: -3.5,11.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - - fixtures: [] - type: Fixtures - - containers: - charger-slot: !type:ContainerSlot {} - charger_slot: !type:ContainerSlot {} - type: ContainerContainer - uid: 571 type: RollerBed components: - pos: 4.360234,6.581131 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -4908,37 +4203,37 @@ entities: type: Table components: - pos: 4.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 573 type: Table components: - pos: 3.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 574 type: Table components: - pos: 4.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 575 type: Table components: - pos: -4.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 576 type: Table components: - pos: -0.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 577 type: FireExtinguisher components: - pos: -4.625556,7.7085676 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -4946,82 +4241,72 @@ entities: type: FireExtinguisher components: - pos: -4.391181,7.6616926 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics - uid: 579 - type: ToolboxEmergencyFilled + type: ClothingUniformJumpsuitPirate components: - - pos: -0.48493075,7.6148176 - parent: 25 + - pos: -0.477412,7.442489 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 580 - type: Pen + type: ComputerIFFSyndicate components: - - pos: -1.2349308,11.723301 - parent: 25 + - pos: -1.5,12.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 581 - type: CyberPen + type: WeaponShotgunBlunderbuss components: - - pos: -3.2974308,4.700146 - parent: 25 + - pos: -4.5263147,4.6892104 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 582 - type: Table + type: CableHV components: - - pos: -8.5,5.5 - parent: 25 + - pos: -4.5,6.5 + parent: 0 type: Transform - uid: 583 - type: ChairOfficeDark + type: VendingMachineTankDispenserEVA components: - - rot: 1.5707963267948966 rad - pos: -9.5,5.5 - parent: 25 + - flags: SessionSpecific + type: MetaData + - pos: -9.5,5.5 + parent: 0 type: Transform - uid: 584 - type: ChairOfficeLight + type: AirlockExternalGlass components: - - pos: -8.5,6.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 0 type: Transform - uid: 585 - type: FoodTinBeans + type: CableHV components: - - pos: -8.617796,5.8602495 - parent: 25 + - pos: -5.5,6.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 586 - type: FoodTinMRE + type: CableHV components: - - pos: -8.367796,5.6102495 - parent: 25 + - pos: -6.5,6.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 587 - type: FoodTinPeaches + type: SpawnPointPirates components: - - pos: -0.462291,10.781815 - parent: 25 + - pos: -8.5,9.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 588 type: WelderMini components: - pos: -6.391465,2.47309 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -5029,26 +4314,26 @@ entities: type: ClothingMaskBreath components: - pos: 1.4823287,2.5088873 - parent: 25 + parent: 0 type: Transform - uid: 590 type: Catwalk components: - rot: 1.5707963267948966 rad pos: -7.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 591 - type: ClothingBackpackDuffel + type: DrinkGrogGlass components: - - pos: -4.285943,0.7172203 - parent: 25 + - pos: -7.611698,-3.9578404 + parent: 0 type: Transform - uid: 592 type: ClothingHeadHatWelding components: - pos: -6.50084,2.62934 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -5056,13 +4341,13 @@ entities: type: MedkitFilled components: - pos: 4.3572884,5.694452 - parent: 25 + parent: 0 type: Transform - uid: 594 type: MedkitOxygenFilled components: - pos: 4.579829,7.5955043 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -5070,7 +4355,7 @@ entities: type: MedkitFilled components: - pos: 4.548579,5.6111293 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -5078,7 +4363,7 @@ entities: type: ClothingHandsGlovesLatex components: - pos: 3.8298292,5.5017543 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -5086,124 +4371,124 @@ entities: type: HandheldHealthAnalyzer components: - pos: 3.4609303,5.7205043 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics - uid: 598 - type: VendingMachineDiscount + type: SinkWide components: - - flags: SessionSpecific - type: MetaData - - pos: -9.5,-4.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 0 type: Transform - uid: 599 - type: ClothingShoesSlippers + type: PoweredSmallLight components: - - pos: -7.1776752,8.294594 - parent: 25 + - pos: -8.5,10.5 + parent: 0 type: Transform - - canCollide: False - type: Physics + - powerLoad: 0 + type: ApcPowerReceiver - uid: 600 - type: ChairPilotSeat + type: WallShuttle components: - - rot: 1.5707963267948966 rad - pos: -4.5,9.5 - parent: 25 + - pos: 1.5,10.5 + parent: 0 type: Transform - uid: 601 - type: ChairPilotSeat + type: Grille components: - - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 25 + - pos: -4.5,13.5 + parent: 0 type: Transform - uid: 602 - type: PosterContrabandRevolver + type: WallReinforced components: - - pos: 0.5,3.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 0 type: Transform - uid: 603 - type: Paper + type: Fireplace components: - - pos: -0.6685511,0.60811055 - parent: 25 + - pos: -7.5,10.5 + parent: 0 type: Transform - uid: 604 type: PosterContrabandSmoke components: - pos: -8.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 605 - type: PosterBroken + type: OxygenCanister components: - - pos: 2.5,8.5 - parent: 25 + - pos: -9.5,6.5 + parent: 0 type: Transform - uid: 606 - type: PosterBroken + type: OxygenCanister components: - - pos: -0.5,-0.5 - parent: 25 + - pos: -4.5,-1.5 + parent: 0 type: Transform - uid: 607 - type: PosterContrabandUnreadableAnnouncement + type: WallReinforced components: - - pos: -1.4882443,-0.31776285 - parent: 25 + - rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 0 type: Transform - uid: 608 type: WallShuttleDiagonal components: - rot: -1.5707963267948966 rad pos: 6.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 609 - type: PosterLegit12Gauge + type: WallReinforced components: - - pos: -4.5,5.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 0 type: Transform - uid: 610 type: PosterLegitUeNo components: - pos: -9.5,3.5 - parent: 25 + parent: 0 type: Transform - uid: 611 type: Chair components: - pos: -1.5,7.5 - parent: 25 + parent: 0 type: Transform - uid: 612 - type: Paper + type: CarpetBlack components: - - pos: -0.7310511,0.73311055 - parent: 25 + - pos: -9.5,9.5 + parent: 0 type: Transform - uid: 613 type: ClothingMaskBreath components: - pos: 1.6489947,2.6338873 - parent: 25 + parent: 0 type: Transform - uid: 614 type: ClothingMaskBreath components: - pos: 1.2739947,2.6963873 - parent: 25 + parent: 0 type: Transform - uid: 615 type: Rack components: - pos: 1.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 616 type: VendingMachineTankDispenserEVA @@ -5211,129 +4496,122 @@ entities: - flags: SessionSpecific type: MetaData - pos: 1.5,3.5 - parent: 25 + parent: 0 type: Transform - uid: 617 - type: FaxMachineSyndie + type: CarpetBlack components: - - name: long range fax machine - type: MetaData - - pos: -1.5,0.5 - parent: 25 + - pos: -9.5,8.5 + parent: 0 type: Transform - uid: 618 type: WallShuttleDiagonal components: - rot: 3.141592653589793 rad pos: -1.5,-7.5 - parent: 25 + parent: 0 type: Transform - uid: 619 - type: ClothingBackpackDuffel + type: ClothingOuterHardsuitPirateEVA components: - - pos: -1.347204,4.569339 - parent: 25 + - pos: -4.5550795,0.595608 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 620 - type: ClothingShoesBootsMag + type: DrinkGrogGlass components: - - pos: -1.4924707,1.4130888 - parent: 25 + - pos: -7.580448,-1.5984654 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 621 - type: ClothingHandsGlovesLeather + type: AppraisalTool components: - - pos: 1.513545,-0.51127124 - parent: 25 + - pos: -7.2760534,-3.5222044 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 622 - type: SpawnPointCaptain + type: Thruster components: - - pos: -3.5,9.5 - parent: 25 + - pos: 1.5,11.5 + parent: 0 type: Transform - uid: 623 type: WallShuttleDiagonal components: - pos: -11.5,-0.5 - parent: 25 + parent: 0 type: Transform - uid: 624 type: Thruster components: - rot: 1.5707963267948966 rad pos: -11.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 625 type: Thruster components: - rot: 1.5707963267948966 rad pos: -11.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 626 type: Thruster components: - rot: -1.5707963267948966 rad pos: 6.5,-1.5 - parent: 25 + parent: 0 type: Transform - uid: 627 type: Thruster components: - rot: -1.5707963267948966 rad pos: 6.5,6.5 - parent: 25 + parent: 0 type: Transform - uid: 628 type: WallShuttleDiagonal components: - rot: 1.5707963267948966 rad pos: -3.5,-7.5 - parent: 25 + parent: 0 type: Transform - uid: 629 type: AtmosDeviceFanTiny components: - pos: 6.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 630 - type: AtmosDeviceFanTiny + type: Catwalk components: - - pos: 3.5,14.5 - parent: 25 + - rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 0 type: Transform - uid: 631 type: CableApcExtension components: - pos: -1.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 632 type: CableApcExtension components: - pos: -2.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 633 type: CableApcExtension components: - pos: -3.5,-6.5 - parent: 25 + parent: 0 type: Transform - uid: 634 type: Wrench components: - pos: 2.4808617,-4.4780817 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics @@ -5341,260 +4619,624 @@ entities: type: CrowbarRed components: - pos: -8.437552,-4.4587874 - parent: 25 + parent: 0 type: Transform - canCollide: False type: Physics - uid: 636 - type: ClothingOuterCoatPirate + type: CableApcExtension components: - - pos: -8.520257,8.499649 - parent: 25 + - pos: -7.5,10.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 637 - type: ClothingOuterCoatPirate + type: Bed components: - - pos: -8.473382,8.499649 - parent: 25 + - pos: -9.5,9.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 638 - type: ClothingOuterCoatPirate + type: CarpetBlack components: - - pos: -8.442132,8.499649 - parent: 25 + - pos: -9.5,10.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 639 - type: ClothingHeadHatPirate + type: CratePirateChestCaptain components: - - pos: -8.520257,8.780899 - parent: 25 + - pos: -9.5,8.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 640 - type: ClothingHeadHatPirate + type: CableApcExtension components: - - pos: -8.520257,8.765274 - parent: 25 + - pos: -9.5,9.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 641 - type: ClothingHeadHatPirate + type: CableApcExtension components: - - pos: -8.520257,8.765274 - parent: 25 + - pos: -6.5,9.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 642 - type: WallShuttleDiagonal + type: ShuttleWindow components: - - pos: -8.5,10.5 - parent: 25 + - rot: 1.5707963267948966 rad + pos: 2.5,12.5 + parent: 0 type: Transform - uid: 643 - type: ClothingOuterCoatPirate + type: GasPipeStraight components: - - pos: -0.5223602,7.5450263 - parent: 25 + - rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 644 - type: ClothingOuterCoatPirate + type: GasPipeStraight components: - - pos: -0.4286102,7.5450263 - parent: 25 + - rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 645 - type: ClothingOuterCoatPirate + type: GasVentScrubber components: - - pos: -0.3036102,7.5450263 - parent: 25 + - pos: 2.5,-4.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 646 - type: ClothingHeadHatPirate + type: GasPipeBend components: - - pos: -0.5848602,7.7950263 - parent: 25 + - rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 647 - type: ClothingHeadHatPirate + type: ClothingUniformJumpsuitPirate components: - - pos: -0.3817352,7.7637763 - parent: 25 + - pos: -0.305537,7.583114 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 648 - type: ClothingHeadHatPirate + type: ClothingHeadHatPirateTricord components: - - pos: -0.2879852,7.7637763 - parent: 25 + - pos: -0.664912,7.833114 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 649 - type: ClothingShoesBootsMag + type: AirlockCommand components: - - pos: -3.5011463,9.362282 - parent: 25 + - rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 650 - type: ClothingShoesBootsMag + type: TableWood components: - - pos: -0.565886,6.24822 - parent: 25 + - rot: -1.5707963267948966 rad + pos: -9.5,10.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 651 - type: ClothingShoesBootsMag + type: TableWood components: - - pos: -1.253386,6.263845 - parent: 25 + - rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 652 - type: ClothingShoesBootsMag + type: WeaponLaserGun components: - - pos: -1.503386,1.9256558 - parent: 25 + - pos: -8.532435,10.5924015 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 653 - type: ClothingShoesBootsMag + type: Grille components: - - pos: -1.487761,2.4412808 - parent: 25 + - pos: 2.5,13.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 654 - type: ClothingShoesBootsMag + type: BedsheetBlack components: - - pos: -6.446637,5.335637 - parent: 25 + - rot: -1.5707963267948966 rad + pos: -9.5,9.5 + parent: 0 type: Transform - - canCollide: False - type: Physics - uid: 655 type: AtmosDeviceFanTiny components: - pos: -11.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 656 - type: SpawnPointPirates + type: Rack components: - - pos: -2.5,2.5 - parent: 25 + - pos: -0.5,0.5 + parent: 0 type: Transform - uid: 657 type: SpawnPointPirates components: - pos: -7.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 658 type: SpawnPointPirates components: - pos: -7.5,5.5 - parent: 25 + parent: 0 type: Transform - uid: 659 type: SpawnPointPirates components: - pos: -2.5,10.5 - parent: 25 + parent: 0 type: Transform - uid: 660 - type: SpawnPointPirates + type: GasVentPump components: - - pos: 2.5,6.5 - parent: 25 + - pos: 3.5,9.5 + parent: 0 type: Transform - uid: 661 type: SpawnPointPirates components: - pos: 2.5,2.5 - parent: 25 + parent: 0 type: Transform - uid: 662 type: SpawnPointPirates components: - pos: -1.5,-3.5 - parent: 25 + parent: 0 type: Transform - uid: 663 type: SpawnPointPirates components: - pos: -8.5,-2.5 - parent: 25 + parent: 0 type: Transform - uid: 664 - type: Paper - components: - - pos: -0.6060511,0.44144356 - parent: 25 - type: Transform -- uid: 665 type: Pen components: - - pos: -0.3768841,0.62894356 - parent: 25 + - pos: -8.966801,10.694164 + parent: 0 + type: Transform +- uid: 665 + type: TableWood + components: + - pos: -6.5,8.5 + parent: 0 type: Transform - uid: 666 - type: ClothingShoesBootsCombatFilled + type: Rack components: - - pos: 1.58918,7.5121317 - parent: 25 + - pos: -0.5,-5.5 + parent: 0 type: Transform - uid: 667 - type: RadioHandheld + type: ClothingOuterHardsuitPirateEVA components: - - pos: -0.6652957,3.7267854 - parent: 25 + - pos: -0.58839893,-5.449323 + parent: 0 type: Transform - uid: 668 - type: RadioHandheld + type: Rack components: - - pos: -0.56112874,3.497619 - parent: 25 + - pos: 0.5,-5.5 + parent: 0 type: Transform - uid: 669 - type: RadioHandheld + type: AirlockGlass components: - - pos: -0.33196175,3.7267854 - parent: 25 + - pos: -5.5,6.5 + parent: 0 type: Transform - uid: 670 type: WeaponRevolverPirate components: - pos: -4.498213,3.6620688 - parent: 25 + parent: 0 type: Transform - uid: 671 type: MagazineBoxMagnumHighVelocity components: - pos: -4.394046,3.4745688 - parent: 25 + parent: 0 + type: Transform +- uid: 672 + type: Grille + components: + - rot: -1.5707963267948966 rad + pos: -11.5,1.5 + parent: 0 + type: Transform +- uid: 673 + type: ClothingOuterHardsuitPirateEVA + components: + - pos: 0.47410107,-5.480573 + parent: 0 + type: Transform +- uid: 674 + type: SpawnPointPirates + components: + - pos: 2.5,6.5 + parent: 0 + type: Transform +- uid: 675 + type: ClothingHeadHatPirateTricord + components: + - pos: -0.5071249,9.853321 + parent: 0 + type: Transform +- uid: 676 + type: ClothingOuterCoatGentle + components: + - pos: -0.4289999,9.618946 + parent: 0 + type: Transform +- uid: 677 + type: ClothingShoesBootsMag + components: + - pos: -0.55260205,3.4916167 + parent: 0 + type: Transform +- uid: 678 + type: ClothingNeckCloakPirateCap + components: + - pos: -6.52275,8.478321 + parent: 0 + type: Transform +- uid: 679 + type: ClothingOuterCoatPirate + components: + - pos: -6.27275,8.540821 + parent: 0 + type: Transform +- uid: 680 + type: ClothingShoesBootsMag + components: + - pos: -0.55260205,3.4916167 + parent: 0 + type: Transform +- uid: 681 + type: ClothingShoesBootsMag + components: + - pos: -0.55260205,3.4916167 + parent: 0 + type: Transform +- uid: 682 + type: ClothingShoesBootsMag + components: + - pos: -0.55260205,3.4916167 + parent: 0 + type: Transform +- uid: 683 + type: ClothingShoesBootsMag + components: + - pos: -0.55260205,3.4916167 + parent: 0 + type: Transform +- uid: 684 + type: ClothingShoesBootsMag + components: + - pos: -0.55260205,3.4916167 + parent: 0 + type: Transform +- uid: 685 + type: ClothingShoesBootsMag + components: + - pos: -0.55260205,3.4916167 + parent: 0 + type: Transform +- uid: 686 + type: GasPipeStraight + components: + - pos: 2.5,-5.5 + parent: 0 + type: Transform +- uid: 687 + type: GasPipeStraight + components: + - pos: 2.5,-6.5 + parent: 0 + type: Transform +- uid: 688 + type: GasPassiveVent + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 0 + type: Transform +- uid: 689 + type: GasPassiveVent + components: + - rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 0 + type: Transform +- uid: 690 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 0 + type: Transform +- uid: 691 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 0 + type: Transform +- uid: 692 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -6.5,-4.5 + parent: 0 + type: Transform +- uid: 693 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 0 + type: Transform +- uid: 694 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 0 + type: Transform +- uid: 695 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 0 + type: Transform +- uid: 696 + type: GasVentScrubber + components: + - pos: -6.5,-0.5 + parent: 0 + type: Transform +- uid: 697 + type: GasVentScrubber + components: + - rot: -1.5707963267948966 rad + pos: -3.5,10.5 + parent: 0 + type: Transform +- uid: 698 + type: GasVentScrubber + components: + - rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 0 + type: Transform +- uid: 699 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 0 + type: Transform +- uid: 700 + type: GasVentPump + components: + - rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 0 + type: Transform +- uid: 701 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -7.5,10.5 + parent: 0 + type: Transform +- uid: 702 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 0 + type: Transform +- uid: 703 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -9.5,10.5 + parent: 0 + type: Transform +- uid: 704 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -10.5,10.5 + parent: 0 + type: Transform +- uid: 705 + type: GasPassiveVent + components: + - rot: 1.5707963267948966 rad + pos: -11.5,10.5 + parent: 0 + type: Transform +- uid: 706 + type: GasPipeBend + components: + - rot: 1.5707963267948966 rad + pos: -7.5,8.5 + parent: 0 + type: Transform +- uid: 707 + type: GasPipeTJunction + components: + - pos: -6.5,10.5 + parent: 0 + type: Transform +- uid: 708 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 0 + type: Transform +- uid: 709 + type: GasPipeStraight + components: + - rot: -1.5707963267948966 rad + pos: -5.5,10.5 + parent: 0 + type: Transform +- uid: 710 + type: AppraisalTool + components: + - pos: -0.67882204,3.741016 + parent: 0 + type: Transform +- uid: 711 + type: ShuttleWindow + components: + - rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 0 + type: Transform +- uid: 712 + type: WallShuttle + components: + - rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 0 + type: Transform +- uid: 713 + type: WallShuttle + components: + - rot: 3.141592653589793 rad + pos: 4.5,15.5 + parent: 0 + type: Transform +- uid: 714 + type: CableApcExtension + components: + - pos: 3.5,14.5 + parent: 0 + type: Transform +- uid: 715 + type: Grille + components: + - rot: 3.141592653589793 rad + pos: 2.5,14.5 + parent: 0 + type: Transform +- uid: 716 + type: Grille + components: + - rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 0 + type: Transform +- uid: 717 + type: GasPipeStraight + components: + - rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 0 + type: Transform +- uid: 718 + type: GasVentPump + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 0 + type: Transform +- uid: 719 + type: PowerCellRecharger + components: + - rot: 3.141592653589793 rad + pos: -4.5,9.5 + parent: 0 + type: Transform +- uid: 720 + type: Table + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 0 + type: Transform +- uid: 721 + type: Table + components: + - rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 0 + type: Transform +- uid: 722 + type: PowerCellRecharger + components: + - rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 0 + type: Transform +- uid: 723 + type: ClothingBeltUtilityFilled + components: + - pos: -2.4051805,-3.3849664 + parent: 0 + type: Transform +- uid: 724 + type: Catwalk + components: + - pos: -6.5,6.5 + parent: 0 + type: Transform +- uid: 725 + type: Catwalk + components: + - pos: -7.5,6.5 + parent: 0 + type: Transform +- uid: 726 + type: Catwalk + components: + - pos: -8.5,6.5 + parent: 0 + type: Transform +- uid: 727 + type: Catwalk + components: + - pos: -9.5,6.5 + parent: 0 + type: Transform +- uid: 728 + type: Catwalk + components: + - pos: 2.5,3.5 + parent: 0 + type: Transform +- uid: 729 + type: Catwalk + components: + - pos: 2.5,2.5 + parent: 0 + type: Transform +- uid: 730 + type: Catwalk + components: + - pos: 2.5,1.5 + parent: 0 + type: Transform +- uid: 731 + type: PaperBin5 + components: + - pos: -0.5,10.5 + parent: 0 type: Transform ... diff --git a/Resources/Prototypes/Accents/word_replacements.yml b/Resources/Prototypes/Accents/word_replacements.yml index 2626bb0da7..7d9089290f 100644 --- a/Resources/Prototypes/Accents/word_replacements.yml +++ b/Resources/Prototypes/Accents/word_replacements.yml @@ -61,3 +61,15 @@ accent-dwarf-words-33: accent-dwarf-words-replace-33 accent-dwarf-words-34: accent-dwarf-words-replace-34 accent-dwarf-words-35: accent-dwarf-words-replace-35 + +- type: accent + id: pirate + wordReplacements: + accent-pirate-replaced-1: accent-pirate-replacement-1 + accent-pirate-replaced-2: accent-pirate-replacement-2 + accent-pirate-replaced-3: accent-pirate-replacement-3 + accent-pirate-replaced-4: accent-pirate-replacement-4 + accent-pirate-replaced-5: accent-pirate-replacement-4 + accent-pirate-replaced-6: accent-pirate-replacement-3 + accent-pirate-replaced-7: accent-pirate-replacement-5 + accent-pirate-replaced-8: accent-pirate-replacement-6 diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml index c4d6dad84a..7c4fe64583 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_fun.yml @@ -127,3 +127,13 @@ cost: 1000 category: Fun group: market + +- type: cargoProduct + id: FunPirate + icon: + sprite: Structures/Storage/Crates/piratechest.rsi + state: crate_icon + product: CrateFunPirate + cost: 400 + category: Fun + group: market diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml index ecfa7fd503..1e70420413 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml @@ -286,3 +286,14 @@ contents: - id: BoxSurvival +- type: entity + parent: ClothingBackpackSatchelLeather + id: ClothingBackpackPirateFilled + suffix: Filled, Pirate + components: + - type: StorageFill + contents: + - id: BoxSurvival + - id: Cutlass + - id: WeaponRevolverPirate + - id: ClothingEyesEyepatch diff --git a/Resources/Prototypes/Catalog/Fills/Crates/antag.yml b/Resources/Prototypes/Catalog/Fills/Crates/antag.yml new file mode 100644 index 0000000000..429f594e2c --- /dev/null +++ b/Resources/Prototypes/Catalog/Fills/Crates/antag.yml @@ -0,0 +1,37 @@ +- type: entity + id: CratePirateChestCaptain + name: captains pirate chest + suffix: Filled + parent: CratePirate + components: + - type: StorageFill + contents: + - id: ClothingOuterHardsuitPirateCap + amount: 1 + - id: ClothingNeckCloakPirateCap + amount: 1 + - id: EnergyCutlass + amount: 1 + - id: MicroBombImplanter + amount: 1 + +- type: entity + id: CratePirateChest + name: crews pirate chest + suffix: Filled + parent: CratePirate + components: + - type: StorageFill + contents: + - id: WeaponLauncherPirateCannon + amount: 2 + - id: ClothingOuterCoatGentle + amount: 1 + - id: Cutlass + amount: 2 + - id: CannonBall + amount: 2 + - id: WeaponPistolFlintlock + amount: 4 + - id: WeaponShotgunBlunderbuss + amount: 2 diff --git a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml index 87a4ac8c85..289f79917c 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/fun.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/fun.yml @@ -193,4 +193,25 @@ - type: StorageFill contents: - id: VehicleSyndicateSegway + amount: 1 - id: VehicleKeySyndicateSegway + amount: 1 + +- type: entity + id: CrateFunPirate + parent: CratePirate + components: + - type: StorageFill + contents: + - id: ClothingUniformJumpsuitPirate + amount: 2 + - id: ClothingHeadHatPirate + amount: 1 + - id: ClothingOuterCoatPirate + amount: 1 + - id: ClothingShoesBootsLaceup + amount: 2 + - id: HatBandRed + amount: 1 + - id: FoamCutlass + amount: 2 diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index 0ca3d55967..dc7b3e56c7 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -455,6 +455,38 @@ Cold: 0.2 Radiation: 0.2 +- type: entity + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitPirateCap + noSpawn: true + name: ancient hardsuit helmet + suffix: Pirate + description: Special hardsuit helmet, made for the captain of a pirate ship. + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/piratecaptainhelm.rsi + - type: Clothing + sprite: Clothing/Head/Hardsuits/piratecaptainhelm.rsi + - type: PressureProtection + highPressureMultiplier: 0.3 + lowPressureMultiplier: 1000 + +- type: entity + parent: ClothingHeadHardsuitBase + id: ClothingHeadHelmetHardsuitPirateEVA + noSpawn: true + name: deep space EVA helmet + suffix: Pirate + description: A deep space EVA helmet, very heavy but provides good protection. + components: + - type: Sprite + sprite: Clothing/Head/Hardsuits/pirateeva.rsi + - type: Clothing + sprite: Clothing/Head/Hardsuits/pirateeva.rsi + - type: PressureProtection + highPressureMultiplier: 0.3 + lowPressureMultiplier: 1000 + #ERT - type: entity parent: ClothingHeadHardsuitWithLightBase diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml index 7dc1ed0e0f..f6b096b23c 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml @@ -539,6 +539,17 @@ - type: Clothing sprite: Clothing/Head/Hats/beret_cmo.rsi +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatPirateTricord + name: pirate hat + description: 'Yo ho ho and a bottle of rum!' + components: + - type: Sprite + sprite: Clothing/Head/Hats/piratetricord.rsi + - type: Clothing + sprite: Clothing/Head/Hats/piratetricord.rsi + - type: entity parent: ClothingHeadBase id: ClothingHeadClothingHeadHatWatermelon diff --git a/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml b/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml index 61b71afaa1..33ddda14f4 100644 --- a/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml +++ b/Resources/Prototypes/Entities/Clothing/Neck/cloaks.yml @@ -131,6 +131,15 @@ containers: toggleable-clothing: !type:ContainerSlot {} +- type: entity + parent: ClothingNeckBase + id: ClothingNeckCloakPirateCap + name: pirate captain cloak + description: A rather fetching black pirate cloak, complete with skull motif. + components: + - type: Sprite + sprite: Clothing/Neck/Cloaks/piratecap.rsi + - type: entity parent: ClothingNeckBase id: ClothingNeckCloakMoth @@ -147,3 +156,4 @@ containers: toggleable-clothing: !type:ContainerSlot {} + diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index 08fd95b278..8f9d34fad6 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -716,3 +716,60 @@ sprite: Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi - type: ToggleableClothing clothingPrototype: ClothingHeadHelmetHardsuitERTJanitor + +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitPirateCap + name: ancient armored hardsuit + suffix: Pirate + description: An ancient armored hardsuit. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/piratecaptain.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/piratecaptain.rsi + - type: PressureProtection + highPressureMultiplier: 0.02 + lowPressureMultiplier: 1000 + - type: ClothingSpeedModifier + walkModifier: 0.8 + sprintModifier: 0.8 + - type: Armor + modifiers: + coefficients: + Blunt: 0.7 + Slash: 0.8 + Piercing: 0.85 + Heat: 0.4 + Radiation: 0.2 + - type: ExplosionResistance + damageCoefficient: 0.6 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitPirateCap + +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitPirateEVA + name: deep space EVA suit + suffix: Pirate + description: A heavy space suit that provides some basic protection from the cold harsh realities of deep space. + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/pirateeva.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Hardsuits/pirateeva.rsi + - type: ClothingSpeedModifier + walkModifier: 0.6 + sprintModifier: 0.6 + - type: Armor + modifiers: + coefficients: + Blunt: 0.8 + Slash: 0.8 + Piercing: 0.9 + Heat: 0.4 + Radiation: 0.2 + - type: ExplosionResistance + damageCoefficient: 0.7 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitPirateEVA diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index 9e7fff73f8..56db9832ef 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -1039,3 +1039,16 @@ sprite: Clothing/Uniforms/Jumpsuit/damedaneoutfit.rsi - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/damedaneoutfit.rsi + +- type: entity + parent: ClothingUniformBase + id: ClothingUniformJumpsuitPirate + name: pirate slops + description: A pirate variation of a space sailor's jumpsuit. + components: + - type: Sprite + sprite: Clothing/Uniforms/Jumpsuit/pirate.rsi + - type: Clothing + sprite: Clothing/Uniforms/Jumpsuit/pirate.rsi + - type: AddAccentClothing + accent: PirateAccent diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index ca7504c063..fb8fa2f4aa 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -844,6 +844,27 @@ - enum.DamageStateVisualLayers.Base: base: Sixteen +- type: entity + parent: BaseItem + id: FoamCutlass + name: foam cutlass + description: Cosplay as a pirate and force your friends to walk the plank. + components: + - type: Sprite + sprite: Objects/Weapons/Melee/cutlass.rsi + state: foam_icon + - type: MeleeWeapon + attackRate: 1.5 + range: 2.0 + angle: 0 + animation: WeaponArcThrust + damage: + types: + Blunt: 0 + - type: Item + size: 15 + sprite: Objects/Weapons/Melee/cutlass.rsi + - type: entity parent: BaseItem id: ClownRecorder diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/explosives.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/explosives.yml index cca919abc5..7e6537f9b2 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/explosives.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Ammunition/explosives.yml @@ -124,3 +124,17 @@ - type: SpentAmmoVisuals state: frag suffix: false + +- type: entity + id: CannonBall + name: cannonball + suffix: Pirate + parent: BaseGrenade + components: + - type: CartridgeAmmo + proto: BulletCannonBall + deleteOnSpawn: true + - type: Sprite + netsync: false + sprite: Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi + state: ball diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml index 402fe253e2..ade1337c79 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Launchers/launchers.yml @@ -119,6 +119,38 @@ zeroVisible: true - type: Appearance +- type: entity + name: pirate cannon + parent: BaseWeaponLauncher + id: WeaponLauncherPirateCannon + description: Kaboom! + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Launchers/pirate_cannon.rsi + layers: + - state: icon + map: ["enum.GunVisualLayers.Base"] + - containers: + balistic-ammo: !type:Container + ents: [] + ballistic-ammo: !type:Container + ents: [] + type: ContainerContainer + - type: Clothing + sprite: Objects/Weapons/Guns/Launchers/pirate_cannon.rsi + - type: Gun + fireRate: 1 + soundGunshot: + path: /Audio/Weapons/Guns/Gunshots/mateba.ogg + - type: BallisticAmmoProvider + whitelist: + tags: + - Grenade + capacity: 1 + proto: CannonBall + soundInsert: + path: /Audio/Weapons/Guns/Gunshots/grenade_launcher.ogg + # Admeme - type: entity name: meteor launcher diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml index 794114533f..6b47913104 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Projectiles/projectiles.yml @@ -507,3 +507,25 @@ - state: xeno_toxic - type: Ammo muzzleFlash: null + +- type: entity + id: BulletCannonBall + name: cannonball + parent: BaseBulletTrigger + noSpawn: true + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Projectiles/projectiles2.rsi + layers: + - state: ball + - type: ExplodeOnTrigger + - type: Explosive + explosionType: DemolitionCharge + maxIntensity: 9 + intensitySlope: 6 + totalIntensity: 60 + maxTileBreak: 0 + - type: PointLight + radius: 1 + color: orange + energy: 0.5 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml index ffaf501452..2eedcaf733 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Shotguns/shotguns.yml @@ -184,3 +184,17 @@ graph: ShotgunSawn node: shotgunsawn deconstructionTarget: null + +- type: entity + name: blunderbuss + parent: BaseWeaponShotgun + id: WeaponShotgunBlunderbuss + suffix: Pirate + description: Deadly at close range. + components: + - type: Sprite + sprite: Objects/Weapons/Guns/Shotguns/blunderbuss.rsi + - type: Gun + fireRate: 2 + - type: BallisticAmmoProvider + capacity: 1 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index 0a18c6256f..5d35f7f0b0 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -121,3 +121,30 @@ - Write - type: DisarmMalus malus: 0 + +- type: entity + name: energy cutlass + parent: EnergySword + id: EnergyCutlass + description: An exotic energy weapon. + components: + - type: EnergySword + secret: true + litDamageBonus: + types: + Slash: 7.5 + Heat: 7.5 + Blunt: -1 + litDisarmMalus: 0.6 + - type: Sprite + sprite: Objects/Weapons/Melee/e_cutlass.rsi + layers: + - state: e_cutlass + - state: e_cutlass_blade + color: "#e95151" + visible: false + shader: unshaded + map: [ "blade" ] + - type: Item + size: 5 + sprite: Objects/Weapons/Melee/e_cutlass.rsi diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml index dd70ca9b63..c2e4adaf10 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sword.yml @@ -87,3 +87,25 @@ slots: - back - type: DisarmMalus + +- type: entity + name: cutlass + parent: BaseItem + id: Cutlass + description: A wickedly curved blade, often seen in the hands of space pirates. + components: + - type: Sharp + - type: Tag + tags: + - Machete + - type: Sprite + sprite: Objects/Weapons/Melee/cutlass.rsi + state: icon + - type: MeleeWeapon + damage: + types: + Slash: 16 + - type: Item + size: 15 + sprite: Objects/Weapons/Melee/cutlass.rsi + - type: DisarmMalus diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml index 381dbe962b..007d6a7a6b 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml @@ -335,3 +335,26 @@ - type: StaticPrice price: 60 +- type: entity + parent: CrateGeneric + id: CratePirate + name: pirate chest + description: A space pirate chest, not for station lubbers. + components: + - type: Sprite + sprite: Structures/Storage/Crates/piratechest.rsi + layers: + - state: crate + - state: crate_door + map: ["enum.StorageVisualLayers.Door"] + - state: welded + visible: false + map: ["enum.WeldableLayers.BaseWelded"] + - type: Icon + sprite: Structures/Storage/Crates/piratechest.rsi + state: crate_icon + - type: Appearance + visuals: + - type: StorageVisualizer + state_open: crate_open + state_closed: crate_door diff --git a/Resources/Prototypes/Roles/Antags/pirate.yml b/Resources/Prototypes/Roles/Antags/pirate.yml new file mode 100644 index 0000000000..e08e293f3a --- /dev/null +++ b/Resources/Prototypes/Roles/Antags/pirate.yml @@ -0,0 +1,44 @@ +- type: startingGear + id: PirateGear + equipment: + jumpsuit: ClothingUniformJumpsuitPirate + back: ClothingBackpackPirateFilled + head: HatBandBlack + shoes: ClothingShoesBootsLaceup + id: PassengerPDA + belt: ClothingBeltUtility + pocket1: AppraisalTool + innerclothingskirt: ClothingUniformJumpsuitPirate + satchel: ClothingBackpackPirateFilled + duffelbag: ClothingBackpackPirateFilled + +- type: startingGear + id: PirateCaptainGear + equipment: + jumpsuit: ClothingUniformJumpsuitPirate + back: ClothingBackpackPirateFilled + head: ClothingHeadHatPirate + shoes: ClothingShoesBootsLaceup + id: PassengerPDA + belt: ClothingBeltUtility + pocket1: AppraisalTool + pocket2: EnergyCutlass + outerClothing: ClothingOuterCoatPirate + innerclothingskirt: ClothingUniformJumpskirtColorLightBrown + satchel: ClothingBackpackPirateFilled + duffelbag: ClothingBackpackPirateFilled + +- type: startingGear + id: PirateFirstmateGear + equipment: + jumpsuit: ClothingUniformJumpsuitPirate + back: ClothingBackpackPirateFilled + head: ClothingHeadHatPirateTricord + shoes: ClothingShoesBootsLaceup + id: PassengerPDA + belt: ClothingBeltUtility + pocket1: AppraisalTool + outerClothing: ClothingOuterCoatGentle + innerclothingskirt: ClothingUniformJumpsuitPirate + satchel: ClothingBackpackPirateFilled + duffelbag: ClothingBackpackPirateFilled diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index b08d1f8a79..cd98a4f2cb 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -16,22 +16,6 @@ satchel: ClothingBackpackSatchelFilled duffelbag: ClothingBackpackDuffelFilled -#Pirate Outfit -- type: startingGear - id: PirateGear - equipment: - jumpsuit: ClothingUniformJumpsuitColorLightBrown - back: ClothingBackpackSatchelEngineering - head: ClothingHeadHatPirate - outerClothing: ClothingOuterCoatPirate - shoes: ClothingShoesBootsWork - id: PassengerPDA - belt: ClothingBeltUtility - pocket1: AppraisalTool - innerclothingskirt: ClothingUniformJumpskirtColorLightBrown - satchel: ClothingBackpackSatchelEngineering - duffelbag: ClothingBackpackSatchelEngineering - #Skeleton Biker - type: startingGear id: SkeletonBiker diff --git a/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..1e650afd17 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/icon.png new file mode 100644 index 0000000000..f56f852a1a Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/meta.json new file mode 100644 index 0000000000..2244815b78 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/piratecaptainhelm.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hardsuits/pirateeva.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hardsuits/pirateeva.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..d723ee6821 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/pirateeva.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/pirateeva.rsi/icon.png b/Resources/Textures/Clothing/Head/Hardsuits/pirateeva.rsi/icon.png new file mode 100644 index 0000000000..0a611f9c01 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hardsuits/pirateeva.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hardsuits/pirateeva.rsi/meta.json b/Resources/Textures/Clothing/Head/Hardsuits/pirateeva.rsi/meta.json new file mode 100644 index 0000000000..2244815b78 --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hardsuits/pirateeva.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Head/Hats/piratetricord.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/piratetricord.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..8492fac39b Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/piratetricord.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/piratetricord.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/piratetricord.rsi/icon.png new file mode 100644 index 0000000000..64f56ea1d2 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/piratetricord.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/piratetricord.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/piratetricord.rsi/inhand-left.png new file mode 100644 index 0000000000..e67baf4c68 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/piratetricord.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/piratetricord.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/piratetricord.rsi/inhand-right.png new file mode 100644 index 0000000000..38f9e55f91 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Hats/piratetricord.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/piratetricord.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/piratetricord.rsi/meta.json new file mode 100644 index 0000000000..8107a3becc --- /dev/null +++ b/Resources/Textures/Clothing/Head/Hats/piratetricord.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (Github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Neck/Cloaks/piratecap.rsi/equipped-NECK.png b/Resources/Textures/Clothing/Neck/Cloaks/piratecap.rsi/equipped-NECK.png new file mode 100644 index 0000000000..0659328176 Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Cloaks/piratecap.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/piratecap.rsi/icon.png b/Resources/Textures/Clothing/Neck/Cloaks/piratecap.rsi/icon.png new file mode 100644 index 0000000000..a02516258d Binary files /dev/null and b/Resources/Textures/Clothing/Neck/Cloaks/piratecap.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Neck/Cloaks/piratecap.rsi/meta.json b/Resources/Textures/Clothing/Neck/Cloaks/piratecap.rsi/meta.json new file mode 100644 index 0000000000..5cba41c1cb --- /dev/null +++ b/Resources/Textures/Clothing/Neck/Cloaks/piratecap.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "made by brainfood1183 (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-NECK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/icon.png index f42ae3430c..1ad384f197 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/inhand-left.png index b07e5e8d68..83e77f5dee 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/inhand-right.png index 005a40d6ed..f65865e5c2 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Coats/gentlecoat.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/icon.png index 7ecea2106b..3a8790941f 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-left.png index 9a76544f14..e65a2ea52c 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-right.png index cd74981c7e..fe2c9a55da 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Coats/insp_coat.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/icon.png index da5919d484..3cc676e7b8 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/inhand-left.png index 5c12b1d6cc..78795216af 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/inhand-right.png index 8832941461..9ccd33118a 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Coats/jensencoat.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/icon.png index 2dc7906289..2f6e9ad588 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/icon.png and b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/inhand-left.png index d1ed5ac98e..b0bd191877 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/inhand-left.png and b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/inhand-right.png index 7db7552514..e7c7c0db4c 100644 Binary files a/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/inhand-right.png and b/Resources/Textures/Clothing/OuterClothing/Coats/pirate.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..9da142bcba Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/icon.png new file mode 100644 index 0000000000..5b6631d783 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/inhand-left.png new file mode 100644 index 0000000000..7f06ed8e67 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/inhand-right.png new file mode 100644 index 0000000000..9059063f24 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/meta.json new file mode 100644 index 0000000000..8840689d9e --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/piratecaptain.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (Github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..1fc0ad4aa3 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/icon.png new file mode 100644 index 0000000000..9d6578e49a Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/inhand-left.png new file mode 100644 index 0000000000..64e8a4910e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/inhand-right.png new file mode 100644 index 0000000000..80584d28f0 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/meta.json new file mode 100644 index 0000000000..8840689d9e --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Hardsuits/pirateeva.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (Github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..3c1a4f9637 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/icon.png new file mode 100644 index 0000000000..65e4b8bb25 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/inhand-left.png new file mode 100644 index 0000000000..49ae783555 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/inhand-right.png new file mode 100644 index 0000000000..ee09620364 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/meta.json new file mode 100644 index 0000000000..0293f2a8ea --- /dev/null +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/pirate.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (Github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-INNERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi/ball.png b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi/ball.png new file mode 100644 index 0000000000..91fb9cff50 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi/ball.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi/meta.json index 3d2c237d6d..5a58b6b608 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Ammunition/Explosives/explosives.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/discordia-space/CEV-Eris/raw/e1d495c3faf4642b6ec1c4be8acc7cd5bc51d785/icons/obj/ammo.dmi", + "copyright": "https://github.com/discordia-space/CEV-Eris/raw/e1d495c3faf4642b6ec1c4be8acc7cd5bc51d785/icons/obj/ammo.dmi, ball Made by Alekshhh (Github) for ss14", "states": [ { "name": "baton" @@ -22,6 +22,9 @@ { "name": "rpg" }, + { + "name": "ball" + }, { "name": "spent" } diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/pirate_cannon.rsi/equipped-BACKPACK.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/pirate_cannon.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000..e02dc7e4e1 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Launchers/pirate_cannon.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/pirate_cannon.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/pirate_cannon.rsi/icon.png new file mode 100644 index 0000000000..2997ee3e8b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Launchers/pirate_cannon.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/pirate_cannon.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/pirate_cannon.rsi/inhand-left.png new file mode 100644 index 0000000000..f4df236994 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Launchers/pirate_cannon.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/pirate_cannon.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Launchers/pirate_cannon.rsi/inhand-right.png new file mode 100644 index 0000000000..a4287426fc Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Launchers/pirate_cannon.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Launchers/pirate_cannon.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Launchers/pirate_cannon.rsi/meta.json new file mode 100644 index 0000000000..63324dd23e --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Launchers/pirate_cannon.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "Made by Alekshhh (Github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/ball.png b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/ball.png new file mode 100644 index 0000000000..77a6ed060f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/ball.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/meta.json index d3c9408b68..f9825de1a4 100644 --- a/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Guns/Projectiles/projectiles2.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a", + "copyright": "Taken from cev-eris at https://github.com/discordia-space/CEV-Eris/raw/56cbafd6ad8c013ccd5472d6c4a0db790f7f872a, ball made by brainfood1183 (Github) for ss14", "size": { "x": 32, "y": 32 @@ -13,6 +13,9 @@ { "name": "buckshot-flare" }, + { + "name": "ball" + }, { "name": "bullet", "delays": [ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/icon.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/icon.png new file mode 100644 index 0000000000..d72fbdc24b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/inhand-left.png new file mode 100644 index 0000000000..ee449999fc Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/inhand-right.png new file mode 100644 index 0000000000..f958c46234 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/meta.json b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/meta.json new file mode 100644 index 0000000000..5c9dfff9ea --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Guns/Shotguns/blunderbuss.rsi/meta.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183(Github) inspired by an image created by rezierré#5003 (Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Melee/cutlass.rsi/foam_icon.png b/Resources/Textures/Objects/Weapons/Melee/cutlass.rsi/foam_icon.png new file mode 100644 index 0000000000..0e7988ffe6 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/cutlass.rsi/foam_icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/cutlass.rsi/icon.png b/Resources/Textures/Objects/Weapons/Melee/cutlass.rsi/icon.png new file mode 100644 index 0000000000..9f9f9de30c Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/cutlass.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/cutlass.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/cutlass.rsi/inhand-left.png new file mode 100644 index 0000000000..f1d3aa6979 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/cutlass.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/cutlass.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/cutlass.rsi/inhand-right.png new file mode 100644 index 0000000000..ef0ad7f00f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/cutlass.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/cutlass.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/cutlass.rsi/meta.json new file mode 100644 index 0000000000..fbe8c7afe0 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/cutlass.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-NC-SA-3.0", + "copyright": "Modified from https://github.com/space-wizards/space-station-14/tree/master/Resources/Textures/Objects/Weapons/Melee/captain_sabre.rsi by Taral#6480 (Discord) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "foam_icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/e_cutlass.png b/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/e_cutlass.png new file mode 100644 index 0000000000..a80f0ad087 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/e_cutlass.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/e_cutlass_blade.png b/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/e_cutlass_blade.png new file mode 100644 index 0000000000..35de91f682 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/e_cutlass_blade.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/inhand-left-blade.png b/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/inhand-left-blade.png new file mode 100644 index 0000000000..240fa8679a Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/inhand-left-blade.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/inhand-left.png new file mode 100644 index 0000000000..9193c95765 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/inhand-right-blade.png b/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/inhand-right-blade.png new file mode 100644 index 0000000000..8163f8a8ba Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/inhand-right-blade.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/inhand-right.png new file mode 100644 index 0000000000..e9e8892e5b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/meta.json new file mode 100644 index 0000000000..62bac1598d --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/e_cutlass.rsi/meta.json @@ -0,0 +1,75 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood1183 (Github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "e_cutlass" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "e_cutlass_blade", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-left-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "inhand-right-blade", + "directions": 4, + "delays": [ + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ], + [ + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/crate.png b/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/crate.png new file mode 100644 index 0000000000..31a17e6a08 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/crate.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/crate_door.png b/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/crate_door.png new file mode 100644 index 0000000000..7f92c43ee0 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/crate_door.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/crate_icon.png b/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/crate_icon.png new file mode 100644 index 0000000000..684d5f8959 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/crate_icon.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/crate_open.png b/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/crate_open.png new file mode 100644 index 0000000000..436367b783 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/crate_open.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/meta.json b/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/meta.json new file mode 100644 index 0000000000..082564ccfb --- /dev/null +++ b/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/meta.json @@ -0,0 +1,40 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by brainfood118 (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "crate" + }, + { + "name": "crate_door" + }, + { + "name": "welded" + }, + { + "name": "crate_icon" + }, + { + "name": "sparking", + "directions": 1, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "crate_open" + } + ] +} diff --git a/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/sparking.png b/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/sparking.png new file mode 100644 index 0000000000..87b78b9b46 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/sparking.png differ diff --git a/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/welded.png b/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/welded.png new file mode 100644 index 0000000000..c7b469bb46 Binary files /dev/null and b/Resources/Textures/Structures/Storage/Crates/piratechest.rsi/welded.png differ