From b19ab577f26bdcbd62be3bd6f1667879b197284d Mon Sep 17 00:00:00 2001 From: ErhardSteinhauer <65374927+ErhardSteinhauer@users.noreply.github.com> Date: Mon, 15 Jul 2024 02:42:59 +0300 Subject: [PATCH 01/12] Goblin accent "improvement" (#1626) * Goblin accent improvement * small tweaks * less word stuff * sewf * more words * Update Resources/Locale/en-US/_NF/accent/goblin_accent.ftl Co-authored-by: Whatstone <166147148+whatston3@users.noreply.github.com> * numbers, mason * Fix goblin accent * Remove debug prints from GoblinAccentSystem * gob accent: fix "those", remove dupes, l/strength * one more regex * Goblin accent system: fixes for her, hers, per * Better address case sensitivity in goblin accent --------- Co-authored-by: Whatstone <166147148+whatston3@users.noreply.github.com> Co-authored-by: Whatstone --- .../EntitySystems/GoblinAccentSystem.cs | 52 ++++-- .../Locale/en-US/_NF/accent/goblin_accent.ftl | 170 +++++++++++++++--- .../_NF/Accents/word_replacements.yml | 63 +++++++ .../_NF/Entities/Mobs/Species/goblin.yml | 3 +- 4 files changed, 252 insertions(+), 36 deletions(-) diff --git a/Content.Server/_NF/Speech/EntitySystems/GoblinAccentSystem.cs b/Content.Server/_NF/Speech/EntitySystems/GoblinAccentSystem.cs index 0dd64246814..22dee8f1c2d 100644 --- a/Content.Server/_NF/Speech/EntitySystems/GoblinAccentSystem.cs +++ b/Content.Server/_NF/Speech/EntitySystems/GoblinAccentSystem.cs @@ -1,31 +1,59 @@ using Content.Server._NF.Speech.Components; using Content.Server.Speech; using Content.Server.Speech.EntitySystems; +using System.Text.RegularExpressions; namespace Content.Server._NF.Speech.EntitySystems; +// The whole code is a copy of SouthernAccentSystem by UBlueberry (https://github.com/UBlueberry) public sealed class GoblinAccentSystem : EntitySystem { + private static readonly Regex RegexIng = new(@"(in)g\b", RegexOptions.IgnoreCase); + private static readonly Regex RegexAnd = new(@"\b(an)d\b", RegexOptions.IgnoreCase); + private static readonly Regex RegexEr = new(@"([^\WpPfF])er\b"); // Keep "er", "per", "Per", "fer" and "Fer" + private static readonly Regex RegexErUpper = new(@"([^\WpPfF])ER\b"); // Keep "ER", "PER" and "FER" + private static readonly Regex RegexTwoLetterEr = new(@"(\w\w)er\b"); // Replace "..XXer", e.g. "super"->"supah" + private static readonly Regex RegexTwoLetterErUpper = new(@"(\w\w)ER\b"); // Replace "..XXER", e.g. "SUPER"->"SUPAH" + private static readonly Regex RegexErs = new(@"(\w)ers\b"); // Replace "..XXers", e.g. "fixers"->"fixas" + private static readonly Regex RegexErsUpper = new(@"(\w)ERS\b"); // Replace "..XXers", e.g. "fixers"->"fixas" + private static readonly Regex RegexTt = new(@"([aeiouy])tt", RegexOptions.IgnoreCase); + private static readonly Regex RegexOf = new(@"\b(o)f\b", RegexOptions.IgnoreCase); + private static readonly Regex RegexThe = new(@"\bthe\b"); + private static readonly Regex RegexTheUpper = new(@"\bTHE\b"); + private static readonly Regex RegexH = new(@"\bh", RegexOptions.IgnoreCase); + private static readonly Regex RegexSelf = new(@"self\b"); + private static readonly Regex RegexSelfUpper = new(@"SELF\b"); + [Dependency] private readonly ReplacementAccentSystem _replacement = default!; public override void Initialize() { base.Initialize(); - - SubscribeLocalEvent(OnAccentGet); + SubscribeLocalEvent(OnAccent); } - // converts left word when typed into the right word. For example typing you becomes ye. - public string Accentuate(string message, GoblinAccentComponent component) + private void OnAccent(EntityUid uid, GoblinAccentComponent component, AccentGetEvent args) { - var msg = message; + var message = args.Message; - msg = _replacement.ApplyReplacements(msg, "goblin"); - return msg; - } + message = _replacement.ApplyReplacements(message, "goblin_accent"); - private void OnAccentGet(EntityUid uid, GoblinAccentComponent component, AccentGetEvent args) - { - args.Message = Accentuate(args.Message, component); + message = RegexIng.Replace(message, "$1'"); //ing->in', ING->IN' + message = RegexAnd.Replace(message, "$1'"); //and->an', AND->AN' + message = RegexEr.Replace(message, "$1ah"); + message = RegexErUpper.Replace(message, "$1AH"); + message = RegexTwoLetterEr.Replace(message, "$1ah"); + message = RegexTwoLetterErUpper.Replace(message, "$1AH"); + message = RegexErs.Replace(message, "$1as"); + message = RegexErsUpper.Replace(message, "$1AS"); + message = RegexTt.Replace(message, "$1'"); + message = RegexH.Replace(message, "'"); + message = RegexSelf.Replace(message, "sewf"); + message = RegexSelfUpper.Replace(message, "SEWF"); + message = RegexOf.Replace(message, "$1'"); //of->o', OF->O' + message = RegexThe.Replace(message, "da"); + message = RegexTheUpper.Replace(message, "DA"); + + args.Message = message; } -} +}; diff --git a/Resources/Locale/en-US/_NF/accent/goblin_accent.ftl b/Resources/Locale/en-US/_NF/accent/goblin_accent.ftl index 1a7848827fb..8ea24875e9a 100644 --- a/Resources/Locale/en-US/_NF/accent/goblin_accent.ftl +++ b/Resources/Locale/en-US/_NF/accent/goblin_accent.ftl @@ -1,5 +1,5 @@ # a mix of cockney and cant (rogue/vagabond slang) -# cockney: https://www.eastlondonhistory.co.uk/history-east-end-cockney/ (th -> f/v, tt -> ', er -> ah, -ing -> -in') +# cockney: https://www.eastlondonhistory.co.uk/history-east-end-cockney/ | https://voiceovertip.com/how-to-do-a-cockney-accent/ | examples: th -> f/v, tt -> ', er -> ah, -ing -> -in' # cant: https://www.gutenberg.org/files/47018/47018-h/47018-h.htm accent-goblin-words-1 = a lot @@ -368,6 +368,69 @@ accent-goblin-words-363 = writes accent-goblin-words-364 = writing accent-goblin-words-365 = written accent-goblin-words-366 = wrote +accent-goblin-words-367 = this +accent-goblin-words-368 = that +accent-goblin-words-369 = then +accent-goblin-words-370 = them +accent-goblin-words-371 = they +accent-goblin-words-372 = those +accent-goblin-words-373 = you +accent-goblin-words-374 = there +accent-goblin-words-375 = of course +accent-goblin-words-376 = other +accent-goblin-words-377 = others +accent-goblin-words-378 = otherwise +accent-goblin-words-379 = you’re +accent-goblin-words-380 = you’ll +accent-goblin-words-381 = you’ve +accent-goblin-words-382 = your +accent-goblin-words-383 = what +accent-goblin-words-384 = how +accent-goblin-words-385 = themselves +accent-goblin-words-386 = themself +accent-goblin-words-387 = through +accent-goblin-words-388 = isn’t it? +accent-goblin-words-389 = just +accent-goblin-words-390 = knows +accent-goblin-words-391 = either +accent-goblin-words-392 = my +accent-goblin-words-393 = NFSD +accent-goblin-words-394 = rather +accent-goblin-words-395 = police +accent-goblin-words-396 = not edible +accent-goblin-words-397 = inedible +accent-goblin-words-398 = knock down +accent-goblin-words-399 = knocked down +accent-goblin-words-400 = knocking down +accent-goblin-words-401 = knocks down +accent-goblin-words-402 = story +accent-goblin-words-403 = stories +accent-goblin-words-404 = paramedic +accent-goblin-words-405 = doctors +accent-goblin-words-406 = medics +accent-goblin-words-407 = paramedics +accent-goblin-words-408 = quarters +accent-goblin-words-409 = these +accent-goblin-words-410 = length +accent-goblin-words-411 = sleeps +accent-goblin-words-412 = slept +accent-goblin-words-413 = bed +accent-goblin-words-414 = medical +accent-goblin-words-415 = room +accent-goblin-words-416 = rooms +accent-goblin-words-417 = knew +accent-goblin-words-418 = show +accent-goblin-words-419 = shows +accent-goblin-words-420 = showing +accent-goblin-words-421 = showed +accent-goblin-words-422 = shown +accent-goblin-words-423 = beds +accent-goblin-words-424 = who +accent-goblin-words-425 = whoever +accent-goblin-words-426 = whom +accent-goblin-words-427 = whomever +accent-goblin-words-428 = whatever +accent-goblin-words-429 = strength accent-goblin-words-replace-1 = swag accent-goblin-words-replace-2 = jiggah @@ -411,8 +474,8 @@ accent-goblin-words-replace-39 = bo’les accent-goblin-words-replace-40 = article accent-goblin-words-replace-41 = articles accent-goblin-words-replace-42 = quod -accent-goblin-words-replace-43 = brovah -accent-goblin-words-replace-44 = brovahs +accent-goblin-words-replace-43 = brovvah +accent-goblin-words-replace-44 = brovvas accent-goblin-words-replace-45 = fudge accent-goblin-words-replace-46 = fudgin’ accent-goblin-words-replace-47 = ra’lah @@ -454,7 +517,7 @@ accent-goblin-words-replace-82 = coopin’ accent-goblin-words-replace-83 = grubbin’-ken accent-goblin-words-replace-84 = jiggah accent-goblin-words-replace-85 = jiggahs -accent-goblin-words-replace-86 = crocus +accent-goblin-words-replace-86 = sawbone accent-goblin-words-replace-87 = jiggah accent-goblin-words-replace-88 = jiggahs accent-goblin-words-replace-89 = bub @@ -534,7 +597,7 @@ accent-goblin-words-replace-162 = 'er accent-goblin-words-replace-163 = 'eresy accent-goblin-words-replace-164 = 'eretical accent-goblin-words-replace-165 = 'ers -accent-goblin-words-replace-166 = 'erseuf +accent-goblin-words-replace-166 = 'ersewf accent-goblin-words-replace-167 = oi accent-goblin-words-replace-168 = oi accent-goblin-words-replace-169 = 'ide @@ -542,7 +605,7 @@ accent-goblin-words-replace-170 = 'ideous accent-goblin-words-replace-171 = 'igh accent-goblin-words-replace-172 = 'ighly accent-goblin-words-replace-173 = 'im -accent-goblin-words-replace-174 = 'imseuf +accent-goblin-words-replace-174 = 'imsewf accent-goblin-words-replace-175 = 'int accent-goblin-words-replace-176 = 'intin’ accent-goblin-words-replace-177 = 'ints @@ -563,13 +626,13 @@ accent-goblin-words-replace-191 = 'orror accent-goblin-words-replace-192 = 'orrors accent-goblin-words-replace-193 = 'ose accent-goblin-words-replace-194 = 'ospital -accent-goblin-words-replace-195 = 'ospitaller +accent-goblin-words-replace-195 = 'ospitallah accent-goblin-words-replace-196 = 'ot accent-goblin-words-replace-197 = 'ot'ead accent-goblin-words-replace-198 = 'ot'eaded accent-goblin-words-replace-199 = 'otshot accent-goblin-words-replace-200 = 'aw -accent-goblin-words-replace-201 = 'owever +accent-goblin-words-replace-201 = 'awevah accent-goblin-words-replace-202 = 'uman accent-goblin-words-replace-203 = 'umans accent-goblin-words-replace-204 = 'url @@ -627,18 +690,18 @@ accent-goblin-words-replace-255 = movin’ accent-goblin-words-replace-256 = burke accent-goblin-words-replace-257 = burked accent-goblin-words-replace-258 = burkin’ -accent-goblin-words-replace-259 = meseuf +accent-goblin-words-replace-259 = mesewf accent-goblin-words-replace-260 = dimbah accent-goblin-words-replace-261 = dimbah -accent-goblin-words-replace-262 = coppahs +accent-goblin-words-replace-262 = coppas accent-goblin-words-replace-263 = rootah accent-goblin-words-replace-264 = fudge accent-goblin-words-replace-265 = fudge accent-goblin-words-replace-266 = fudge -accent-goblin-words-replace-267 = coppahs +accent-goblin-words-replace-267 = coppas accent-goblin-words-replace-268 = coppah -accent-goblin-words-replace-269 = linendraper -accent-goblin-words-replace-270 = linendrapers +accent-goblin-words-replace-269 = linendrapah +accent-goblin-words-replace-270 = linendrapas accent-goblin-words-replace-271 = bit accent-goblin-words-replace-272 = bloke accent-goblin-words-replace-273 = jarvey @@ -648,8 +711,8 @@ accent-goblin-words-replace-276 = quisby accent-goblin-words-replace-277 = lock-up accent-goblin-words-replace-278 = prowlah accent-goblin-words-replace-279 = winkin’ -accent-goblin-words-replace-280 = penny-a-liner -accent-goblin-words-replace-281 = penny-a-liners +accent-goblin-words-replace-280 = penny-a-linah +accent-goblin-words-replace-281 = penny-a-linas accent-goblin-words-replace-282 = grubbin’-ken accent-goblin-words-replace-283 = flush accent-goblin-words-replace-284 = fylche @@ -694,12 +757,12 @@ accent-goblin-words-replace-322 = fylched accent-goblin-words-replace-323 = fylched accent-goblin-words-replace-324 = avast accent-goblin-words-replace-325 = duffah -accent-goblin-words-replace-326 = lobster -accent-goblin-words-replace-327 = lobster -accent-goblin-words-replace-328 = lobsters -accent-goblin-words-replace-329 = lobster -accent-goblin-words-replace-330 = lobsters -accent-goblin-words-replace-331 = lobsters +accent-goblin-words-replace-326 = lobstah +accent-goblin-words-replace-327 = lobstah +accent-goblin-words-replace-328 = lobstas +accent-goblin-words-replace-329 = lobstah +accent-goblin-words-replace-330 = lobstas +accent-goblin-words-replace-331 = lobstas accent-goblin-words-replace-332 = knap accent-goblin-words-replace-333 = knaps accent-goblin-words-replace-334 = knappin' @@ -727,7 +790,7 @@ accent-goblin-words-replace-355 = touted accent-goblin-words-replace-356 = touts accent-goblin-words-replace-357 = toutin’ accent-goblin-words-replace-358 = wo’ah -accent-goblin-words-replace-359 = wever +accent-goblin-words-replace-359 = wevah accent-goblin-words-replace-360 = wiv accent-goblin-words-replace-361 = wivout accent-goblin-words-replace-362 = screeve @@ -735,3 +798,66 @@ accent-goblin-words-replace-363 = screeves accent-goblin-words-replace-364 = screevin’ accent-goblin-words-replace-365 = screeved accent-goblin-words-replace-366 = screeved +accent-goblin-words-replace-367 = dis +accent-goblin-words-replace-368 = dat +accent-goblin-words-replace-369 = den +accent-goblin-words-replace-370 = 'em +accent-goblin-words-replace-371 = dey +accent-goblin-words-replace-372 = dose +accent-goblin-words-replace-373 = ya +accent-goblin-words-replace-374 = dere +accent-goblin-words-replace-375 = course +accent-goblin-words-replace-376 = uvver +accent-goblin-words-replace-377 = uvvers +accent-goblin-words-replace-378 = uvverwise +accent-goblin-words-replace-379 = yoo’re +accent-goblin-words-replace-380 = yoo’ll +accent-goblin-words-replace-381 = yoo’ve +accent-goblin-words-replace-382 = yer +accent-goblin-words-replace-383 = wot +accent-goblin-words-replace-384 = 'ow +accent-goblin-words-replace-385 = 'emselves +accent-goblin-words-replace-386 = 'emself +accent-goblin-words-replace-387 = froo +accent-goblin-words-replace-388 = innit? +accent-goblin-words-replace-389 = jus’ +accent-goblin-words-replace-390 = clocks +accent-goblin-words-replace-391 = eivvah +accent-goblin-words-replace-392 = me +accent-goblin-words-replace-393 = coppas +accent-goblin-words-replace-394 = ravvah +accent-goblin-words-replace-395 = coppas +accent-goblin-words-replace-396 = cag-mag +accent-goblin-words-replace-397 = cag-mag +accent-goblin-words-replace-398 = floor +accent-goblin-words-replace-399 = floored +accent-goblin-words-replace-400 = floorin’ +accent-goblin-words-replace-401 = floors +accent-goblin-words-replace-402 = flim flam +accent-goblin-words-replace-403 = flim flams +accent-goblin-words-replace-404 = gargle +accent-goblin-words-replace-405 = sawbones +accent-goblin-words-replace-406 = crocuses +accent-goblin-words-replace-407 = gargles +accent-goblin-words-replace-408 = crib +accent-goblin-words-replace-409 = dese +accent-goblin-words-replace-410 = lenf +accent-goblin-words-replace-411 = dosses +accent-goblin-words-replace-412 = dossed +accent-goblin-words-replace-413 = perch +accent-goblin-words-replace-414 = crocus +accent-goblin-words-replace-415 = crib +accent-goblin-words-replace-416 = cribs +accent-goblin-words-replace-417 = clocked +accent-goblin-words-replace-418 = flash +accent-goblin-words-replace-419 = flashes +accent-goblin-words-replace-420 = flashin’ +accent-goblin-words-replace-421 = flashed +accent-goblin-words-replace-422 = flashed +accent-goblin-words-replace-423 = perches +accent-goblin-words-replace-424 = 'oo +accent-goblin-words-replace-425 = 'ooevah +accent-goblin-words-replace-426 = 'oom +accent-goblin-words-replace-427 = 'oomevah +accent-goblin-words-replace-428 = wotevah +accent-goblin-words-replace-429 = strenf diff --git a/Resources/Prototypes/_NF/Accents/word_replacements.yml b/Resources/Prototypes/_NF/Accents/word_replacements.yml index 2094c96268d..0ec10d0f083 100644 --- a/Resources/Prototypes/_NF/Accents/word_replacements.yml +++ b/Resources/Prototypes/_NF/Accents/word_replacements.yml @@ -367,6 +367,69 @@ accent-goblin-words-364: accent-goblin-words-replace-364 accent-goblin-words-365: accent-goblin-words-replace-365 accent-goblin-words-366: accent-goblin-words-replace-366 + accent-goblin-words-367: accent-goblin-words-replace-367 + accent-goblin-words-368: accent-goblin-words-replace-368 + accent-goblin-words-369: accent-goblin-words-replace-369 + accent-goblin-words-370: accent-goblin-words-replace-370 + accent-goblin-words-371: accent-goblin-words-replace-371 + accent-goblin-words-372: accent-goblin-words-replace-372 + accent-goblin-words-373: accent-goblin-words-replace-373 + accent-goblin-words-374: accent-goblin-words-replace-374 + accent-goblin-words-375: accent-goblin-words-replace-375 + accent-goblin-words-376: accent-goblin-words-replace-376 + accent-goblin-words-377: accent-goblin-words-replace-377 + accent-goblin-words-378: accent-goblin-words-replace-378 + accent-goblin-words-379: accent-goblin-words-replace-379 + accent-goblin-words-380: accent-goblin-words-replace-380 + accent-goblin-words-381: accent-goblin-words-replace-381 + accent-goblin-words-382: accent-goblin-words-replace-382 + accent-goblin-words-383: accent-goblin-words-replace-383 + accent-goblin-words-384: accent-goblin-words-replace-384 + accent-goblin-words-385: accent-goblin-words-replace-385 + accent-goblin-words-386: accent-goblin-words-replace-386 + accent-goblin-words-387: accent-goblin-words-replace-387 + accent-goblin-words-388: accent-goblin-words-replace-388 + accent-goblin-words-389: accent-goblin-words-replace-389 + accent-goblin-words-390: accent-goblin-words-replace-390 + accent-goblin-words-391: accent-goblin-words-replace-391 + accent-goblin-words-392: accent-goblin-words-replace-392 + accent-goblin-words-393: accent-goblin-words-replace-393 + accent-goblin-words-394: accent-goblin-words-replace-394 + accent-goblin-words-395: accent-goblin-words-replace-395 + accent-goblin-words-396: accent-goblin-words-replace-396 + accent-goblin-words-397: accent-goblin-words-replace-397 + accent-goblin-words-398: accent-goblin-words-replace-398 + accent-goblin-words-399: accent-goblin-words-replace-399 + accent-goblin-words-400: accent-goblin-words-replace-400 + accent-goblin-words-401: accent-goblin-words-replace-401 + accent-goblin-words-402: accent-goblin-words-replace-402 + accent-goblin-words-403: accent-goblin-words-replace-403 + accent-goblin-words-404: accent-goblin-words-replace-404 + accent-goblin-words-405: accent-goblin-words-replace-405 + accent-goblin-words-406: accent-goblin-words-replace-406 + accent-goblin-words-407: accent-goblin-words-replace-407 + accent-goblin-words-408: accent-goblin-words-replace-408 + accent-goblin-words-409: accent-goblin-words-replace-409 + accent-goblin-words-410: accent-goblin-words-replace-410 + accent-goblin-words-411: accent-goblin-words-replace-411 + accent-goblin-words-412: accent-goblin-words-replace-412 + accent-goblin-words-413: accent-goblin-words-replace-413 + accent-goblin-words-414: accent-goblin-words-replace-414 + accent-goblin-words-415: accent-goblin-words-replace-415 + accent-goblin-words-416: accent-goblin-words-replace-416 + accent-goblin-words-417: accent-goblin-words-replace-417 + accent-goblin-words-418: accent-goblin-words-replace-418 + accent-goblin-words-419: accent-goblin-words-replace-419 + accent-goblin-words-420: accent-goblin-words-replace-420 + accent-goblin-words-421: accent-goblin-words-replace-421 + accent-goblin-words-422: accent-goblin-words-replace-422 + accent-goblin-words-423: accent-goblin-words-replace-423 + accent-goblin-words-424: accent-goblin-words-replace-424 + accent-goblin-words-425: accent-goblin-words-replace-425 + accent-goblin-words-426: accent-goblin-words-replace-426 + accent-goblin-words-427: accent-goblin-words-replace-427 + accent-goblin-words-428: accent-goblin-words-replace-428 + accent-goblin-words-429: accent-goblin-words-replace-429 - type: accent id: streetpunk diff --git a/Resources/Prototypes/_NF/Entities/Mobs/Species/goblin.yml b/Resources/Prototypes/_NF/Entities/Mobs/Species/goblin.yml index be4e1a1f25b..655040db370 100644 --- a/Resources/Prototypes/_NF/Entities/Mobs/Species/goblin.yml +++ b/Resources/Prototypes/_NF/Entities/Mobs/Species/goblin.yml @@ -64,8 +64,7 @@ # tall: true # tallscale: 1 # tallDensity: 185 - - type: ReplacementAccent - accent: goblin_accent + - type: GoblinAccent - type: TypingIndicator proto: goblin - type: SlowOnDamage From ee4932d24a86f9f812dba231e624fc7fe2414308 Mon Sep 17 00:00:00 2001 From: FrontierATC Date: Sun, 14 Jul 2024 23:43:23 +0000 Subject: [PATCH 02/12] Automatic Changelog (#1626) --- Resources/Changelog/Changelog.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 539d31c3ed7..eda718e7e4a 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -5663,3 +5663,13 @@ Entries: message: '@mrscratch added Novalite C1 rifle chambered in .20 round.' id: 5116 time: '2024-07-13T21:00:10.0000000+00:00' +- author: erhardsteinhauer + changes: + - type: Tweak + message: Made goblin accent a bit thicker. + - type: Fix + message: >- + Non-goblin characters with Goblin Cant now speak the same way as + goblins. + id: 5117 + time: '2024-07-14T23:42:59.0000000+00:00' From 533bb09c48121afecb8538f27295c7737eebd17f Mon Sep 17 00:00:00 2001 From: ErhardSteinhauer <65374927+ErhardSteinhauer@users.noreply.github.com> Date: Mon, 15 Jul 2024 03:00:53 +0300 Subject: [PATCH 03/12] Gourg (Update) (#1676) --- .../Locale/en-US/_NF/guidebook/guides.ftl | 1 + .../Maps/_NF/Shuttles/Expedition/gourd.yml | 4958 +++++++++-------- .../Prototypes/_NF/Guidebook/shipyard.yml | 6 + .../_NF/Shipyard/Expedition/gourd.yml | 16 +- .../_NF/Guidebook/Shipyard/Gourd.xml | 91 + 5 files changed, 2634 insertions(+), 2438 deletions(-) create mode 100644 Resources/ServerInfo/_NF/Guidebook/Shipyard/Gourd.xml diff --git a/Resources/Locale/en-US/_NF/guidebook/guides.ftl b/Resources/Locale/en-US/_NF/guidebook/guides.ftl index 6fe8952a4ba..cf31c535a43 100644 --- a/Resources/Locale/en-US/_NF/guidebook/guides.ftl +++ b/Resources/Locale/en-US/_NF/guidebook/guides.ftl @@ -35,6 +35,7 @@ guide-entry-shipyard-comet = Comet guide-entry-shipyard-construct = Construct guide-entry-shipyard-garden = Garden guide-entry-shipyard-gasbender = Gasbender +guide-entry-shipyard-gourd = Gourd guide-entry-shipyard-hammer = Hammer guide-entry-shipyard-harbormaster = Harbormaster guide-entry-shipyard-kestrel = Kestrel diff --git a/Resources/Maps/_NF/Shuttles/Expedition/gourd.yml b/Resources/Maps/_NF/Shuttles/Expedition/gourd.yml index ac1f3cad24b..bf0016448ec 100644 --- a/Resources/Maps/_NF/Shuttles/Expedition/gourd.yml +++ b/Resources/Maps/_NF/Shuttles/Expedition/gourd.yml @@ -8,10 +8,13 @@ tilemap: 35: FloorDarkMono 46: FloorGlass 61: FloorKitchen + 3: FloorMetalDiamond 101: FloorSteelMono + 2: FloorTechMaint 109: FloorWhite 114: FloorWhiteMono 119: FloorWood + 1: FloorWoodTile 121: Lattice 122: Plating entities: @@ -29,27 +32,27 @@ entities: chunks: 0,0: ind: 0,0 - tiles: HgAAAAADHgAAAAACHgAAAAAAeQAAAAAAHgAAAAABIwAAAAADZQAAAAAAZQAAAAACZQAAAAAAZQAAAAACZQAAAAABZQAAAAACZQAAAAACZQAAAAAAegAAAAAAeQAAAAAAHgAAAAADHgAAAAAAHgAAAAAAeQAAAAAAegAAAAAAIwAAAAABZQAAAAADZQAAAAABZQAAAAACZQAAAAADZQAAAAADZQAAAAACZQAAAAACZQAAAAADeQAAAAAAeQAAAAAAHgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAZQAAAAACZQAAAAADZQAAAAADZQAAAAABZQAAAAACZQAAAAACZQAAAAADZQAAAAADZQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAADZQAAAAADZQAAAAABZQAAAAABZQAAAAAAZQAAAAABZQAAAAABZQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAABbQAAAAADbQAAAAADIwAAAAABIwAAAAACIwAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAACegAAAAAAIwAAAAABIwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAABegAAAAAAHgAAAAADegAAAAAAHgAAAAAAegAAAAAAegAAAAAAIwAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAACegAAAAAAHgAAAAACegAAAAAAHgAAAAADegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAADdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAADdwAAAAADdwAAAAAAdwAAAAACdwAAAAADdwAAAAACegAAAAAAHgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAABdwAAAAABdwAAAAAAdwAAAAABegAAAAAAHgAAAAADHgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADLgAAAAAALgAAAAAAdwAAAAAAdwAAAAABdwAAAAAAdwAAAAACegAAAAAAHgAAAAADHgAAAAACHgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADLgAAAAADLgAAAAADdwAAAAACdwAAAAAAdwAAAAADdwAAAAABdwAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAABLgAAAAACdwAAAAACdwAAAAACdwAAAAAAdwAAAAAAdwAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HgAAAAADHgAAAAACHgAAAAAAeQAAAAAAAgAAAAAAIwAAAAADZQAAAAAAZQAAAAACZQAAAAAAZQAAAAACZQAAAAABZQAAAAACZQAAAAACZQAAAAAAegAAAAAAeQAAAAAAHgAAAAADHgAAAAAAHgAAAAAAeQAAAAAAegAAAAAAIwAAAAABZQAAAAADZQAAAAABZQAAAAACZQAAAAADZQAAAAADZQAAAAACZQAAAAACZQAAAAADeQAAAAAAeQAAAAAAHgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAZQAAAAACZQAAAAADZQAAAAADZQAAAAABZQAAAAACZQAAAAACZQAAAAADZQAAAAADZQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAADZQAAAAADZQAAAAABZQAAAAABZQAAAAAAZQAAAAABZQAAAAABZQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAgAAAAAAAgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAABbQAAAAADAgAAAAAAIwAAAAABIwAAAAACIwAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAACegAAAAAAIwAAAAABIwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAABegAAAAAAHgAAAAADegAAAAAAHgAAAAAAegAAAAAAegAAAAAAIwAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAACegAAAAAAHgAAAAACegAAAAAAHgAAAAADegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAADAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAADdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAADdwAAAAADdwAAAAAAdwAAAAACdwAAAAADdwAAAAACegAAAAAAHgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAABdwAAAAABdwAAAAAAdwAAAAABegAAAAAAHgAAAAADHgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADLgAAAAAALgAAAAAAdwAAAAAAdwAAAAABdwAAAAAAdwAAAAACegAAAAAAHgAAAAADHgAAAAACHgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADLgAAAAADLgAAAAADdwAAAAACdwAAAAAAdwAAAAADdwAAAAABAgAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAABAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAABLgAAAAACdwAAAAACdwAAAAACdwAAAAAAdwAAAAAAAgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: eQAAAAAAeQAAAAAAegAAAAAAcgAAAAACcgAAAAACcgAAAAACcgAAAAADcgAAAAACcgAAAAADcgAAAAAAcgAAAAAAIwAAAAACHgAAAAABeQAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAcgAAAAACcgAAAAADcgAAAAACcgAAAAAAcgAAAAAAcgAAAAADcgAAAAACcgAAAAADIwAAAAACegAAAAAAeQAAAAAAeQAAAAAAHgAAAAACAAAAAAAAAAAAAAAAeQAAAAAAcgAAAAAAcgAAAAAAcgAAAAACcgAAAAADcgAAAAACcgAAAAADcgAAAAAAcgAAAAAAcgAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAcgAAAAADcgAAAAACcgAAAAACcgAAAAACcgAAAAACcgAAAAABcgAAAAAAcgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIwAAAAABIwAAAAACIwAAAAABbQAAAAACbQAAAAADbQAAAAABbQAAAAADbQAAAAAAbQAAAAACbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIwAAAAADIwAAAAACIwAAAAABegAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIwAAAAACegAAAAAAegAAAAAAHgAAAAABegAAAAAAHgAAAAABegAAAAAAbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAHgAAAAACegAAAAAAHgAAAAADegAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAdwAAAAAAdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAABdwAAAAACdwAAAAACdwAAAAADdwAAAAADdwAAAAABdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAADegAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAABegAAAAAAdwAAAAACdwAAAAABdwAAAAADdwAAAAADdwAAAAAAdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHgAAAAACHgAAAAACHgAAAAACegAAAAAAdwAAAAAAdwAAAAACdwAAAAABdwAAAAACLgAAAAABLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAACdwAAAAAAdwAAAAADdwAAAAAAdwAAAAAAdwAAAAAALgAAAAACLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAABdwAAAAADdwAAAAABdwAAAAADdwAAAAABdwAAAAABLgAAAAACLgAAAAAC + tiles: eQAAAAAAeQAAAAAAAgAAAAAAcgAAAAACcgAAAAACcgAAAAACcgAAAAADcgAAAAACcgAAAAADcgAAAAAAcgAAAAAAIwAAAAACAgAAAAAAeQAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAcgAAAAACcgAAAAADcgAAAAACcgAAAAAAcgAAAAAAcgAAAAADcgAAAAACcgAAAAADIwAAAAACegAAAAAAeQAAAAAAeQAAAAAAHgAAAAACAAAAAAAAAAAAAAAAeQAAAAAAcgAAAAAAcgAAAAAAcgAAAAACcgAAAAADcgAAAAACcgAAAAADcgAAAAAAcgAAAAAAcgAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAcgAAAAADcgAAAAACcgAAAAACcgAAAAACcgAAAAACcgAAAAABcgAAAAAAcgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAgAAAAAAAgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIwAAAAABIwAAAAACIwAAAAABAgAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAAAbQAAAAACbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAIwAAAAADIwAAAAACIwAAAAABegAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIwAAAAACegAAAAAAegAAAAAAHgAAAAABegAAAAAAHgAAAAABegAAAAAAbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAHgAAAAACegAAAAAAHgAAAAADegAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAgAAAAAAdwAAAAAAdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAABdwAAAAACdwAAAAACdwAAAAADdwAAAAADdwAAAAABdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAADegAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAABegAAAAAAdwAAAAACdwAAAAABdwAAAAADdwAAAAADdwAAAAAAdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHgAAAAACHgAAAAACHgAAAAACegAAAAAAdwAAAAAAdwAAAAACdwAAAAABdwAAAAACLgAAAAABLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAACAgAAAAAAdwAAAAADdwAAAAAAdwAAAAAAdwAAAAAALgAAAAACLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAABAgAAAAAAdwAAAAABdwAAAAADdwAAAAABdwAAAAABLgAAAAACLgAAAAAC version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAABegAAAAAAHgAAAAABHgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAACZQAAAAACZQAAAAADHgAAAAAAHgAAAAACHgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZQAAAAADZQAAAAACZQAAAAACHgAAAAACHgAAAAAAHgAAAAADegAAAAAAHgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAACZQAAAAADZQAAAAABHgAAAAACHgAAAAACHgAAAAACegAAAAAAIwAAAAADIwAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAACZQAAAAABZQAAAAABHgAAAAAAHgAAAAAAHgAAAAACegAAAAAAIwAAAAABIwAAAAADIwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAACZQAAAAABZQAAAAABHgAAAAADHgAAAAADHgAAAAABHgAAAAADIwAAAAADIwAAAAAAIwAAAAAAIwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAACZQAAAAACZQAAAAACHgAAAAABHgAAAAACHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAADHgAAAAAAegAAAAAAZQAAAAADZQAAAAABZQAAAAADZQAAAAABZQAAAAACZQAAAAABHgAAAAADAAAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAACegAAAAAAZQAAAAADZQAAAAACZQAAAAACZQAAAAABZQAAAAADZQAAAAACHgAAAAACAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAABegAAAAAAZQAAAAACZQAAAAAAZQAAAAAAZQAAAAABZQAAAAADZQAAAAADHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAABZQAAAAAAegAAAAAAZQAAAAADZQAAAAACZQAAAAAAZQAAAAADZQAAAAAAZQAAAAABHgAAAAAAAAAAAAAAHgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAZQAAAAADZQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAZQAAAAAAHgAAAAACegAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAAAeQAAAAAAeQAAAAAAegAAAAAAIwAAAAAAZQAAAAABZQAAAAADZQAAAAADZQAAAAACZQAAAAAAZQAAAAAAZQAAAAADZQAAAAADeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAHgAAAAABegAAAAAAAwAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAACZQAAAAACZQAAAAADHgAAAAAAHgAAAAACHgAAAAAAAwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAADZQAAAAADZQAAAAACZQAAAAACHgAAAAACHgAAAAAAHgAAAAADegAAAAAAHgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAACZQAAAAADZQAAAAABHgAAAAACHgAAAAACIwAAAAAAegAAAAAAIwAAAAADIwAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAACZQAAAAABZQAAAAABHgAAAAAAHgAAAAAAIwAAAAAAegAAAAAAIwAAAAABIwAAAAADIwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAABZQAAAAACZQAAAAABZQAAAAABHgAAAAADHgAAAAADHgAAAAABAgAAAAAAIwAAAAADIwAAAAAAIwAAAAAAIwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAACZQAAAAACZQAAAAACHgAAAAABHgAAAAACHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAwAAAAAAeQAAAAAAAAAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAADHgAAAAAAegAAAAAAZQAAAAADZQAAAAABZQAAAAADZQAAAAABZQAAAAACZQAAAAABAwAAAAAAAAAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAACegAAAAAAZQAAAAADZQAAAAACZQAAAAACZQAAAAABZQAAAAADZQAAAAACAwAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAgAAAAAAAgAAAAAAegAAAAAAZQAAAAACZQAAAAAAZQAAAAAAZQAAAAABZQAAAAADZQAAAAADAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAZQAAAAABZQAAAAAAegAAAAAAZQAAAAADZQAAAAACZQAAAAAAZQAAAAADZQAAAAAAZQAAAAABAwAAAAAAAAAAAAAAHgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAZQAAAAADZQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAAgAAAAAAHgAAAAACegAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAAAeQAAAAAAeQAAAAAAegAAAAAAIwAAAAAAZQAAAAABZQAAAAADZQAAAAADZQAAAAACZQAAAAAAZQAAAAAAZQAAAAADZQAAAAADeQAAAAAAeQAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAADegAAAAAAegAAAAAAHgAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAAAZQAAAAAAZQAAAAAAZQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHgAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAACZQAAAAADZQAAAAADZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIwAAAAAAIwAAAAADegAAAAAAHgAAAAAAHgAAAAACHgAAAAACZQAAAAACZQAAAAABZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIwAAAAADIwAAAAABIwAAAAABegAAAAAAHgAAAAADHgAAAAACHgAAAAACZQAAAAADZQAAAAADZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIwAAAAABIwAAAAABIwAAAAADIwAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAACZQAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAADZQAAAAABZQAAAAADZQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcgAAAAADcgAAAAACcgAAAAADcgAAAAABcgAAAAADcgAAAAADegAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAeQAAAAAAcgAAAAACcgAAAAAAcgAAAAABcgAAAAABcgAAAAABcgAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcgAAAAABcgAAAAABcgAAAAABcgAAAAADcgAAAAACcgAAAAADegAAAAAAHgAAAAADHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcgAAAAAAcgAAAAACegAAAAAAcgAAAAAAegAAAAAAegAAAAAAegAAAAAAcgAAAAAAcgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAcgAAAAABcgAAAAABcgAAAAAAcgAAAAADcgAAAAAAcgAAAAACegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcgAAAAAAcgAAAAACcgAAAAADcgAAAAABcgAAAAADcgAAAAADcgAAAAACcgAAAAABIwAAAAACegAAAAAAeQAAAAAAeQAAAAAAHgAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAAwAAAAAAegAAAAAAegAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAHgAAAAABHgAAAAADHgAAAAAAZQAAAAAAZQAAAAAAZQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHgAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAACZQAAAAADZQAAAAADZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIwAAAAAAIwAAAAADegAAAAAAIwAAAAAAHgAAAAACHgAAAAACZQAAAAACZQAAAAABZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIwAAAAADIwAAAAABIwAAAAABegAAAAAAIwAAAAAAHgAAAAACHgAAAAACZQAAAAADZQAAAAADZQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAIwAAAAABIwAAAAABIwAAAAADIwAAAAABAgAAAAAAHgAAAAABHgAAAAABHgAAAAACZQAAAAAAZQAAAAAAZQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAADZQAAAAABZQAAAAADZQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAcgAAAAADcgAAAAACcgAAAAADcgAAAAABcgAAAAADcgAAAAADegAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAwAAAAAAcgAAAAACcgAAAAAAcgAAAAABcgAAAAABcgAAAAABcgAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAcgAAAAABcgAAAAABcgAAAAABcgAAAAADcgAAAAACcgAAAAADegAAAAAAAgAAAAAAAgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAcgAAAAAAcgAAAAACegAAAAAAAgAAAAAAegAAAAAAegAAAAAAegAAAAAAcgAAAAAAcgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAcgAAAAABcgAAAAABcgAAAAAAcgAAAAADcgAAAAAAcgAAAAACegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAcgAAAAAAcgAAAAACcgAAAAADcgAAAAABcgAAAAADcgAAAAADcgAAAAACcgAAAAABIwAAAAACegAAAAAAeQAAAAAAeQAAAAAAHgAAAAAD version: 6 0,1: ind: 0,1 - tiles: LgAAAAABLgAAAAADLgAAAAACdwAAAAADdwAAAAACdwAAAAACdwAAAAADdwAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAADHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAACdwAAAAABdwAAAAACdwAAAAACdwAAAAAAdwAAAAABegAAAAAAHgAAAAABHgAAAAADHgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAAAdwAAAAACdwAAAAACdwAAAAADegAAAAAAHgAAAAABHgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAACegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAegAAAAAAHgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAACegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAADPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAACegAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAABLgAAAAABLgAAAAABLgAAAAACLgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAADLgAAAAACLgAAAAADLgAAAAACLgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAACLgAAAAADLgAAAAADLgAAAAACLgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAADLgAAAAADLgAAAAABLgAAAAACLgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAACLgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACLgAAAAAALgAAAAAALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: LgAAAAABLgAAAAADLgAAAAACdwAAAAADdwAAAAACdwAAAAACdwAAAAADAgAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAADAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAACdwAAAAABdwAAAAACdwAAAAACdwAAAAAAdwAAAAABegAAAAAAHgAAAAABHgAAAAADHgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAAAdwAAAAACdwAAAAACdwAAAAADegAAAAAAHgAAAAABHgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAABdwAAAAACegAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAegAAAAAAHgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAACegAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAADdwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAegAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdwAAAAACdwAAAAACegAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAegAAAAAAPQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAABLgAAAAABLgAAAAABLgAAAAACLgAAAAABegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAADLgAAAAACLgAAAAADLgAAAAACLgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAACLgAAAAADLgAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAADLgAAAAADLgAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAADHgAAAAACdwAAAAABdwAAAAAAdwAAAAABdwAAAAADdwAAAAABLgAAAAADLgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAACHgAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAACdwAAAAACdwAAAAABdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAACHgAAAAAAegAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAACdwAAAAAAdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAAAegAAAAAADgAAAAADDgAAAAABDgAAAAADDgAAAAACegAAAAAAdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAACDgAAAAACegAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAADDgAAAAADDgAAAAABDgAAAAADDgAAAAADDgAAAAADDgAAAAABDgAAAAADdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAABDgAAAAACDgAAAAADdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAABDgAAAAABDgAAAAAAegAAAAAAdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALgAAAAACLgAAAAACLgAAAAAALgAAAAABLgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALgAAAAADLgAAAAABLgAAAAACLgAAAAADLgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAABLgAAAAAALgAAAAACLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAACLgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAABLgAAAAABLgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAALgAAAAADLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAACAgAAAAAAdwAAAAAAdwAAAAABdwAAAAADdwAAAAABLgAAAAADLgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAACHgAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAACdwAAAAACdwAAAAABdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAACHgAAAAAAegAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAACdwAAAAAAdwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHgAAAAAAegAAAAAADgAAAAADDgAAAAABDgAAAAADDgAAAAACegAAAAAAdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAACDgAAAAACegAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAADDgAAAAADDgAAAAABDgAAAAADDgAAAAADDgAAAAADDgAAAAABAgAAAAAAdwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAACDgAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAABDgAAAAACAgAAAAAAdwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAABDgAAAAABDgAAAAAAegAAAAAAdwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAALgAAAAACLgAAAAACLgAAAAAALgAAAAABLgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAALgAAAAADLgAAAAABLgAAAAACLgAAAAADLgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAALgAAAAABLgAAAAAALgAAAAACLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAALgAAAAAALgAAAAACLgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 @@ -86,10 +89,10 @@ entities: decals: 22: 0,1 23: 0,-1 - 357: -2,-8 - 358: -2,-11 - 359: 2,-11 - 360: 2,-8 + 337: -2,-8 + 338: -2,-11 + 339: 2,-11 + 340: 2,-8 - node: color: '#FFFFFFFF' id: Delivery @@ -100,34 +103,46 @@ entities: 29: 11,14 30: -11,16 31: -11,15 + - node: + color: '#96DAFFFF' + id: DeliveryGreyscale + decals: + 382: -6,-10 + 383: 6,-10 + - node: + color: '#FF5C5CFF' + id: DeliveryGreyscale + decals: + 381: -6,-9 + 384: 6,-9 - node: angle: 1.5707963267948966 rad color: '#AF9A00FF' id: StandClear decals: - 340: -13,-5 - 341: -13,-4 + 320: -13,-5 + 321: -13,-4 - node: angle: -1.5707963267948966 rad color: '#EFB341FF' id: StandClear decals: - 214: -3,-8 - 215: -3,-11 + 194: -3,-8 + 195: -3,-11 - node: angle: 1.5707963267948966 rad color: '#EFB341FF' id: StandClear decals: - 216: 3,-8 - 217: 3,-11 + 196: 3,-8 + 197: 3,-11 - node: angle: -1.5707963267948966 rad color: '#FFFF00DB' id: StandClear decals: - 355: 12,-4 - 356: 12,-5 + 335: 12,-4 + 336: 12,-5 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -157,36 +172,36 @@ entities: color: '#4172AEFF' id: WarnCornerGreyscaleNE decals: - 281: 5,26 - 282: 4,27 - 283: 3,28 - 284: 2,29 + 261: 5,26 + 262: 4,27 + 263: 3,28 + 264: 2,29 - node: color: '#4172AEFF' id: WarnCornerGreyscaleNW decals: - 285: -2,29 - 286: -3,28 - 287: -4,27 - 288: -5,26 + 265: -2,29 + 266: -3,28 + 267: -4,27 + 268: -5,26 - node: color: '#4172AEFF' id: WarnCornerGreyscaleSE decals: - 289: 5,25 + 269: 5,25 - node: color: '#4172AEFF' id: WarnCornerGreyscaleSW decals: - 298: -5,25 + 278: -5,25 - node: color: '#002BE5FF' id: WarnCornerNE decals: - 265: 2,29 - 266: 3,28 - 267: 4,27 - 268: 5,26 + 245: 2,29 + 246: 3,28 + 247: 4,27 + 248: 5,26 - node: color: '#791500FF' id: WarnCornerNE @@ -196,19 +211,13 @@ entities: color: '#8829F7FF' id: WarnCornerNE decals: - 315: -5,3 + 295: -5,3 - node: color: '#9333FFFF' id: WarnCornerNE decals: 39: -12,-3 51: -8,-4 - - node: - color: '#9FED58FF' - id: WarnCornerNE - decals: - 190: 9,22 - 191: 8,23 - node: color: '#CE41B3FF' id: WarnCornerNE @@ -219,8 +228,8 @@ entities: color: '#EFB341FF' id: WarnCornerNE decals: - 212: -1,-7 - 380: -8,-8 + 192: -1,-7 + 360: -8,-8 - node: color: '#FFA533FF' id: WarnCornerNE @@ -237,10 +246,10 @@ entities: color: '#002BE5FF' id: WarnCornerNW decals: - 261: -5,26 - 262: -4,27 - 263: -3,28 - 264: -2,29 + 241: -5,26 + 242: -4,27 + 243: -3,28 + 244: -2,29 - node: color: '#791500FF' id: WarnCornerNW @@ -251,18 +260,13 @@ entities: color: '#8829F7FF' id: WarnCornerNW decals: - 317: -12,3 - 318: -13,2 + 297: -12,3 + 298: -13,2 - node: color: '#9333FFFF' id: WarnCornerNW decals: 38: -13,-3 - - node: - color: '#9FED58FF' - id: WarnCornerNW - decals: - 192: 3,23 - node: color: '#CE41B3FF' id: WarnCornerNW @@ -273,8 +277,8 @@ entities: color: '#EFB341FF' id: WarnCornerNW decals: - 213: 1,-7 - 371: 8,-8 + 193: 1,-7 + 351: 8,-8 - node: color: '#FFA533FF' id: WarnCornerNW @@ -309,7 +313,7 @@ entities: color: '#002BE5FF' id: WarnCornerSE decals: - 269: 5,25 + 249: 5,25 - node: color: '#791500FF' id: WarnCornerSE @@ -319,18 +323,12 @@ entities: color: '#8829F7FF' id: WarnCornerSE decals: - 316: -5,-3 + 296: -5,-3 - node: color: '#9333FFFF' id: WarnCornerSE decals: 50: -8,-6 - - node: - color: '#9FED58FF' - id: WarnCornerSE - decals: - 188: 6,19 - 189: 9,21 - node: color: '#CE41B3FF' id: WarnCornerSE @@ -341,14 +339,14 @@ entities: color: '#EFB341FF' id: WarnCornerSE decals: - 367: 9,-10 - 368: 10,-9 - 379: -8,-10 + 347: 9,-10 + 348: 10,-9 + 359: -8,-10 - node: color: '#FFA000FF' id: WarnCornerSE decals: - 343: 6,-3 + 323: 6,-3 - node: color: '#FFA533FF' id: WarnCornerSE @@ -364,7 +362,7 @@ entities: color: '#002BE5FF' id: WarnCornerSW decals: - 260: -5,25 + 240: -5,25 - node: color: '#791500FF' id: WarnCornerSW @@ -375,19 +373,14 @@ entities: color: '#8829F7FF' id: WarnCornerSW decals: - 319: -13,-1 - 320: -10,-2 - 330: -6,-3 + 299: -13,-1 + 300: -10,-2 + 310: -6,-3 - node: color: '#9333FFFF' id: WarnCornerSW decals: 49: -13,-6 - - node: - color: '#9FED58FF' - id: WarnCornerSW - decals: - 193: 3,19 - node: color: '#CE41B3FF' id: WarnCornerSW @@ -398,14 +391,14 @@ entities: color: '#EFB341FF' id: WarnCornerSW decals: - 370: 8,-10 - 377: -10,-9 - 378: -9,-10 + 350: 8,-10 + 357: -10,-9 + 358: -9,-10 - node: color: '#FFA000FF' id: WarnCornerSW decals: - 344: 5,-3 + 324: 5,-3 - node: color: '#FFA533FF' id: WarnCornerSW @@ -420,42 +413,37 @@ entities: color: '#4172AEFF' id: WarnCornerSmallGreyscaleNE decals: - 290: 4,26 - 291: 2,28 + 270: 4,26 + 271: 2,28 - node: color: '#4172AEFF' id: WarnCornerSmallGreyscaleNW decals: - 295: -4,26 - 296: -3,27 - 297: -2,28 + 275: -4,26 + 276: -3,27 + 277: -2,28 - node: color: '#4172AEFF' id: WarnCornerSmallGreyscaleSE decals: - 299: 1,25 + 279: 1,25 - node: color: '#4172AEFF' id: WarnCornerSmallGreyscaleSW decals: - 312: -1,25 - 313: -1,25 + 292: -1,25 + 293: -1,25 - node: color: '#002BE5FF' id: WarnCornerSmallNE decals: - 270: 4,26 - 271: 2,28 + 250: 4,26 + 251: 2,28 - node: color: '#9333FFFF' id: WarnCornerSmallNE decals: 53: -12,-4 - - node: - color: '#9FED58FF' - id: WarnCornerSmallNE - decals: - 201: 8,22 - node: color: '#CE41B3FF' id: WarnCornerSmallNE @@ -471,9 +459,9 @@ entities: color: '#002BE5FF' id: WarnCornerSmallNW decals: - 272: -4,26 - 273: -3,27 - 274: -2,28 + 252: -4,26 + 253: -3,27 + 254: -2,28 - node: color: '#791500FF' id: WarnCornerSmallNW @@ -483,18 +471,13 @@ entities: color: '#8829F7FF' id: WarnCornerSmallNW decals: - 339: -12,2 + 319: -12,2 - node: color: '#CE41B3FF' id: WarnCornerSmallNW decals: 161: -9,17 162: -8,18 - - node: - color: '#9FED58FF' - id: WarnCornerSmallSE - decals: - 205: 6,21 - node: color: '#CE41B3FF' id: WarnCornerSmallSE @@ -505,8 +488,8 @@ entities: color: '#EFB341FF' id: WarnCornerSmallSE decals: - 375: 9,-9 - 376: 10,-8 + 355: 9,-9 + 356: 10,-8 - node: color: '#FFA533FF' id: WarnCornerSmallSE @@ -521,8 +504,8 @@ entities: color: '#8829F7FF' id: WarnCornerSmallSW decals: - 335: -10,-1 - 336: -6,-2 + 315: -10,-1 + 316: -6,-2 - node: color: '#CE41B3FF' id: WarnCornerSmallSW @@ -533,13 +516,13 @@ entities: color: '#EFB341FF' id: WarnCornerSmallSW decals: - 382: -10,-8 - 383: -9,-9 + 362: -10,-8 + 363: -9,-9 - node: color: '#EFB341FF' id: WarnEndE decals: - 369: 11,-8 + 349: 11,-8 - node: color: '#CE41B3FF' id: WarnEndN @@ -550,8 +533,8 @@ entities: color: '#EFB341FF' id: WarnEndN decals: - 239: -3,-7 - 240: 3,-7 + 219: -3,-7 + 220: 3,-7 - node: color: '#CE41B3FF' id: WarnEndS @@ -562,13 +545,13 @@ entities: color: '#EFB341FF' id: WarnEndS decals: - 241: -3,-12 - 242: 3,-12 + 221: -3,-12 + 222: 3,-12 - node: color: '#EFB341FF' id: WarnEndW decals: - 381: -11,-8 + 361: -11,-8 - node: color: '#791500FF' id: WarnFull @@ -578,7 +561,7 @@ entities: color: '#9FED58FF' id: WarnFull decals: - 202: 7,20 + 188: 7,20 - node: color: '#EFB34196' id: WarnFull @@ -600,28 +583,28 @@ entities: color: '#FFFF009C' id: WarnFull decals: - 347: 13,-3 - 348: 13,-4 - 349: 13,-5 - 350: 13,-6 + 327: 13,-3 + 328: 13,-4 + 329: 13,-5 + 330: 13,-6 - node: color: '#FFFF00DB' id: WarnFull decals: - 351: 13,-3 - 352: 13,-4 - 353: 13,-5 - 354: 13,-6 + 331: 13,-3 + 332: 13,-4 + 333: 13,-5 + 334: 13,-6 - node: color: '#002BE5FF' id: WarnLineE decals: - 243: 1,19 - 244: 1,20 - 245: 1,21 - 246: 1,22 - 247: 1,23 - 253: 1,23 + 223: 1,19 + 224: 1,20 + 225: 1,21 + 226: 1,22 + 227: 1,23 + 233: 1,23 - node: color: '#791500FF' id: WarnLineE @@ -633,18 +616,13 @@ entities: color: '#8829F7FF' id: WarnLineE decals: - 331: -5,-2 - 332: -5,2 + 311: -5,-2 + 312: -5,2 - node: color: '#9333FFFF' id: WarnLineE decals: 52: -8,-5 - - node: - color: '#9FED58FF' - id: WarnLineE - decals: - 204: 6,20 - node: color: '#CE41B3FF' id: WarnLineE @@ -664,26 +642,26 @@ entities: color: '#DEA842FF' id: WarnLineE decals: - 362: -3,-10 + 342: -3,-10 - node: color: '#EFB341FF' id: WarnLineE decals: - 221: 3,-8 - 222: 3,-9 - 223: 3,-10 - 224: 3,-11 - 225: 3,-11 - 232: -3,-8 - 233: -3,-9 - 234: -3,-11 - 386: -8,-9 + 201: 3,-8 + 202: 3,-9 + 203: 3,-10 + 204: 3,-11 + 205: 3,-11 + 212: -3,-8 + 213: -3,-9 + 214: -3,-11 + 366: -8,-9 - node: color: '#FFA000FF' id: WarnLineE decals: - 345: 12,-4 - 346: 12,-5 + 325: 12,-4 + 326: 12,-5 - node: color: '#FFA533FF' id: WarnLineE @@ -708,19 +686,19 @@ entities: color: '#4172AEFF' id: WarnLineGreyscaleE decals: - 300: 1,24 - 301: 1,23 - 302: 1,22 - 303: 1,21 - 304: 1,20 - 305: 1,19 + 280: 1,24 + 281: 1,23 + 282: 1,22 + 283: 1,21 + 284: 1,20 + 285: 1,19 - node: color: '#4172AEFF' id: WarnLineGreyscaleN decals: - 292: -1,29 - 293: 0,29 - 294: 1,29 + 272: -1,29 + 273: 0,29 + 274: 1,29 - node: color: '#FFB21CFF' id: WarnLineGreyscaleN @@ -730,32 +708,32 @@ entities: color: '#4172AEFF' id: WarnLineGreyscaleS decals: - 275: -2,25 - 276: -3,25 - 277: -4,25 - 278: 2,25 - 279: 3,25 - 280: 4,25 + 255: -2,25 + 256: -3,25 + 257: -4,25 + 258: 2,25 + 259: 3,25 + 260: 4,25 - node: color: '#4172AEFF' id: WarnLineGreyscaleW decals: - 306: -1,19 - 307: -1,20 - 308: -1,22 - 309: -1,21 - 310: -1,23 - 311: -1,24 + 286: -1,19 + 287: -1,20 + 288: -1,22 + 289: -1,21 + 290: -1,23 + 291: -1,24 - node: color: '#002BE5FF' id: WarnLineN decals: - 254: -2,25 - 255: -3,25 - 256: -4,25 - 257: 2,25 - 258: 3,25 - 259: 4,25 + 234: -2,25 + 235: -3,25 + 236: -4,25 + 237: 2,25 + 238: 3,25 + 239: 4,25 - node: color: '#791500FF' id: WarnLineN @@ -768,11 +746,11 @@ entities: color: '#8829F7FF' id: WarnLineN decals: - 327: -9,-2 - 328: -8,-2 - 329: -7,-2 - 337: -12,-1 - 338: -11,-1 + 307: -9,-2 + 308: -8,-2 + 309: -7,-2 + 317: -12,-1 + 318: -11,-1 - node: color: '#9333FFFF' id: WarnLineN @@ -781,14 +759,6 @@ entities: 44: -10,-6 45: -11,-6 46: -12,-6 - - node: - color: '#9FED58FF' - id: WarnLineN - decals: - 194: 4,19 - 195: 5,19 - 196: 8,21 - 203: 7,21 - node: color: '#C8A028FF' id: WarnLineN @@ -799,11 +769,11 @@ entities: color: '#EFB341FF' id: WarnLineN decals: - 209: -1,-12 - 210: 0,-12 - 211: 1,-12 - 230: -2,-12 - 231: 2,-12 + 189: -1,-12 + 190: 0,-12 + 191: 1,-12 + 210: -2,-12 + 211: 2,-12 - node: color: '#FFA533FF' id: WarnLineN @@ -821,8 +791,8 @@ entities: decals: 122: -5,-12 123: 5,-12 - 226: -4,-12 - 227: 4,-12 + 206: -4,-12 + 207: 4,-12 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -843,11 +813,11 @@ entities: color: '#002BE5FF' id: WarnLineS decals: - 248: -1,19 - 249: -1,20 - 250: -1,21 - 251: -1,22 - 252: -1,23 + 228: -1,19 + 229: -1,20 + 230: -1,21 + 231: -1,22 + 232: -1,23 - node: color: '#791500FF' id: WarnLineS @@ -857,21 +827,14 @@ entities: color: '#8829F7FF' id: WarnLineS decals: - 333: -13,0 - 334: -13,1 + 313: -13,0 + 314: -13,1 - node: color: '#9333FFFF' id: WarnLineS decals: 47: -13,-4 48: -13,-5 - - node: - color: '#9FED58FF' - id: WarnLineS - decals: - 206: 3,20 - 207: 3,21 - 208: 3,22 - node: color: '#CE41B3FF' id: WarnLineS @@ -890,19 +853,19 @@ entities: color: '#DEA842FF' id: WarnLineS decals: - 361: -3,-10 + 341: -3,-10 - node: color: '#EFB341FF' id: WarnLineS decals: - 218: -3,-8 - 219: -3,-9 - 220: -3,-11 - 235: 3,-11 - 236: 3,-10 - 237: 3,-9 - 238: 3,-8 - 372: 8,-9 + 198: -3,-8 + 199: -3,-9 + 200: -3,-11 + 215: 3,-11 + 216: 3,-10 + 217: 3,-9 + 218: 3,-8 + 352: 8,-9 - node: color: '#FFA533FF' id: WarnLineS @@ -936,12 +899,12 @@ entities: color: '#8829F7FF' id: WarnLineW decals: - 321: -11,3 - 322: -10,3 - 323: -9,3 - 324: -8,3 - 325: -7,3 - 326: -6,3 + 301: -11,3 + 302: -10,3 + 303: -9,3 + 304: -8,3 + 305: -7,3 + 306: -6,3 - node: color: '#9333FFFF' id: WarnLineW @@ -949,29 +912,21 @@ entities: 40: -11,-4 41: -10,-4 42: -9,-4 - - node: - color: '#9FED58FF' - id: WarnLineW - decals: - 197: 7,23 - 198: 6,23 - 199: 5,23 - 200: 4,23 - node: color: '#EFB341FF' id: WarnLineW decals: - 228: -2,-7 - 229: 2,-7 - 373: 9,-8 - 374: 10,-8 - 384: -10,-8 - 385: -9,-8 + 208: -2,-7 + 209: 2,-7 + 353: 9,-8 + 354: 10,-8 + 364: -10,-8 + 365: -9,-8 - node: color: '#FFA000FF' id: WarnLineW decals: - 342: 10,-3 + 322: 10,-3 - node: color: '#FFA533FF' id: WarnLineW @@ -998,7 +953,53 @@ entities: 105: -3,-5 106: -4,-5 107: -5,-5 - 314: 0,-5 + 294: 0,-5 + - node: + color: '#B3B3B3FF' + id: WoodTrimThinCornerNe + decals: + 372: 6,23 + - node: + color: '#B3B3B3FF' + id: WoodTrimThinCornerNw + decals: + 371: 3,23 + - node: + color: '#B3B3B3FF' + id: WoodTrimThinCornerSe + decals: + 367: 6,19 + - node: + color: '#B3B3B3FF' + id: WoodTrimThinCornerSw + decals: + 368: 3,19 + - node: + color: '#B3B3B3FF' + id: WoodTrimThinLineE + decals: + 373: 6,20 + 374: 6,21 + 375: 6,22 + - node: + color: '#B3B3B3FF' + id: WoodTrimThinLineN + decals: + 376: 4,23 + 377: 5,23 + - node: + color: '#B3B3B3FF' + id: WoodTrimThinLineS + decals: + 369: 4,19 + 370: 5,19 + - node: + color: '#B3B3B3FF' + id: WoodTrimThinLineW + decals: + 378: 3,20 + 379: 3,21 + 380: 3,22 - node: angle: -1.5707963267948966 rad color: '#A87CFFFF' @@ -1022,234 +1023,208 @@ entities: color: '#FFFF00FF' id: electricdanger decals: - 365: -2,-8 - 366: -2,-11 + 345: -2,-8 + 346: -2,-11 - node: angle: 1.5707963267948966 rad color: '#FFFF00FF' id: electricdanger decals: - 363: 2,-8 - 364: 2,-11 + 343: 2,-8 + 344: 2,-11 - type: GridAtmosphere version: 2 data: tiles: 0,0: - 0: 14199 - 1: 136 - -1,0: - 0: 40413 - 1: 34 + 0: 55 + 1: 1672 0,-1: - 0: 30527 - 1: 32768 - -1,-1: - 0: 56735 - 1: 8192 + 0: 12288 + 1: 50688 + -1,0: + 0: 141 + 1: 3170 0,1: - 0: 65535 - 0,-2: - 0: 65535 - -1,-2: - 0: 65535 + 0: 49136 -1,1: - 0: 65535 - 1,-2: - 0: 65535 - 1,0: - 0: 65535 - 1,1: - 0: 65535 - -2,1: - 0: 65535 - -2,0: - 0: 65535 - -2,-1: - 0: 65535 - -2,-2: - 0: 65535 - 1,-1: - 0: 65535 - -1,2: - 0: 65535 + 0: 45040 0,2: - 0: 65535 - 1,2: - 0: 65535 - -1,-3: - 0: 65535 - 0,-3: - 0: 65535 - 1,-3: - 0: 65535 - -1,3: - 0: 65535 + 0: 65323 + -1,2: + 0: 65418 0,3: 0: 65535 - -1,4: + -1,3: 0: 65535 0,4: - 0: 65535 + 0: 49151 + 1,0: + 0: 61167 + 1,1: + 0: 10230 + 1,2: + 0: 32706 1,3: - 0: 65535 + 0: 65399 1,4: - 0: 65535 - -2,4: - 0: 65535 - -2,3: - 0: 65535 - -3,0: - 0: 65535 - -3,-1: - 0: 65535 + 0: 30591 + 1,-1: + 0: 58982 2,0: 0: 65535 + 2,1: + 0: 4976 + 1: 27776 + 2,2: + 1: 59171 + 0: 4112 + 2,3: + 0: 65395 + 1: 140 2,-1: - 0: 65535 - -2,-3: - 1: 1 - 0: 65534 - -2,2: - 0: 65535 - 2,-2: - 0: 65535 + 0: 63743 + 2,4: + 0: 4991 + 1: 60544 3,0: - 0: 14199 - 1: 16520 + 0: 4919 + 1: 25800 + 3,1: + 1: 19 + 3,3: + 1: 17 + 0: 4352 + 3,-1: + 0: 12339 + 1: 52224 + 3,4: + 0: 1 + 1: 272 + 4,0: + 1: 1 -4,0: - 1: 16419 - 0: 36060 - 0,5: + 1: 50275 + 0: 2188 + -4,-1: + 1: 30208 + 0: 32904 + -3,0: 0: 65535 - -1,5: + -4,1: + 1: 8 + -3,1: + 1: 16945 + 0: 2240 + -3,-1: + 0: 64607 + -3,3: + 1: 55 + 0: 65480 + -3,4: + 0: 2255 + 1: 59184 + -3,2: + 1: 60552 + -2,0: 0: 65535 - -2,5: + -2,1: + 0: 40444 + -2,2: + 1: 257 + 0: 56952 + -2,3: + 0: 65501 + -2,-1: + 0: 65485 + -2,4: + 0: 56799 + -1,4: + 0: 49151 + -1,-1: + 1: 27648 + 0: 32768 + 0,-4: + 1: 3840 + -1,-4: + 1: 3840 + 0,-3: 0: 65535 - 1,5: + -1,-3: 0: 65535 - 0,6: + 0,-2: 0: 65535 - -1,6: + -1,-2: 0: 65535 - 1,6: - 0: 30719 - 1: 2048 - 0,7: - 0: 4095 - -1,7: - 0: 4095 - -2,6: - 0: 52463 - 1: 528 - -2,7: - 0: 140 - 1,7: - 0: 311 1,-4: - 1: 3840 - 0: 61440 - -1,-4: - 1: 3840 - 0: 61440 - 2,1: - 0: 47103 - 1: 18432 - -2,-4: - 0: 57600 - 1: 7680 - 0,-4: - 1: 3840 - 0: 61440 - -3,-2: - 0: 65535 - -4,-1: - 0: 52735 - 1: 12800 - 3,-1: + 1: 36608 + 1,-3: 0: 30583 - 1: 34816 - -3,-3: - 0: 60806 - 1: 4680 - -3,-4: - 0: 65280 - -3,2: - 0: 56132 - 1: 9352 - -3,3: - 1: 1 - 0: 65534 - -3,1: - 0: 36079 - 1: 16912 - 2,5: - 0: 16383 - 1: 16384 - 2,4: - 0: 32767 - 1: 32768 - 2,3: - 0: 65535 - 2,2: - 0: 31509 - 1: 33826 - 3,1: - 0: 257 - 1: 18 - -4,1: - 0: 4 - 1: 8 - -4,-2: - 0: 64640 - 1: 72 + 1,-2: + 0: 30591 2,-4: 1: 4096 - 0: 8192 2,-3: - 1: 2115 - 0: 63412 + 1: 35939 + 0: 29440 + 2,-2: + 0: 65295 3,-3: - 0: 8448 1: 4096 3,-2: - 0: 30645 - 1: 66 - 4,-2: - 0: 112 - -3,4: - 0: 52991 - 1: 8448 - -4,3: - 0: 2048 - -5,-1: - 0: 52428 - -5,0: - 0: 204 - -5,-2: - 0: 49152 - 3,2: - 0: 12544 - 3,3: + 1: 67 + 0: 13056 + 4,-1: + 1: 4096 + -4,-2: + 1: 72 + 0: 34816 + -3,-2: 1: 1 - 0: 13106 - 3,4: - 0: 12851 - 1: 256 - 3,5: - 0: 819 - -3,5: - 0: 36044 - 1: 16384 - -3,6: - 1: 8 + 0: 65294 + -3,-3: + 1: 14024 + 0: 51200 + -2,-3: + 1: 1 + 0: 56780 + -2,-2: + 0: 56783 + -2,-4: + 1: 15872 + 0,5: + 0: 49147 + -1,5: + 0: 49147 + 0,6: + 0: 65523 + -1,6: + 0: 65528 + 0,7: + 0: 127 + -1,7: + 0: 206 + 1,5: + 0: 30711 + 1,6: + 0: 4912 + 1: 2048 + 2,5: + 1: 17479 + 0: 4912 2,6: - 0: 1 1: 18 - 4,0: + -3,5: + 1: 50252 + 0: 2176 + -2,5: 1: 1 - 4,-1: - 1: 4096 + 0: 65532 + -3,6: + 1: 8 + -2,6: + 1: 528 + 0: 2176 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -1267,7 +1242,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -1293,6 +1268,13 @@ entities: - type: Transform pos: -1.3327365,15.452293 parent: 1 +- proto: Airlock + entities: + - uid: 1174 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1 - proto: AirlockAtmosphericsGlass entities: - uid: 2 @@ -1422,12 +1404,6 @@ entities: - type: Transform pos: 7.5,5.5 parent: 1 - - uid: 23 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,22.5 - parent: 1 - uid: 24 components: - type: Transform @@ -1465,7 +1441,12 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,9.5 parent: 1 -- proto: AirlockGlassShuttle + - uid: 372 + components: + - type: Transform + pos: 2.5,22.5 + parent: 1 +- proto: AirlockGlassShuttle entities: - uid: 31 components: @@ -1503,7 +1484,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,16.5 parent: 1 - - type: AutoDock - proto: AirlockScienceGlass entities: - uid: 37 @@ -2565,7 +2545,7 @@ entities: ignore: False - proto: AmeController entities: - - uid: 63 + - uid: 41 components: - type: Transform pos: 0.5,-6.5 @@ -2575,25 +2555,23 @@ entities: injecting: True - type: ContainerContainer containers: - AmeFuel: !type:ContainerSlot + fuelSlot: !type:ContainerSlot showEnts: False occludes: True - ent: 41 + ent: 63 - proto: AmeJar entities: - - uid: 41 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 63 - - type: Physics - canCollide: False - uid: 61 components: - type: Transform pos: -0.2596559,-6.4297347 parent: 1 + - uid: 63 + components: + - type: Transform + parent: 41 + - type: Physics + canCollide: False - proto: AmeShielding entities: - uid: 56 @@ -3418,34 +3396,28 @@ entities: - type: Transform pos: -4.5,8.5 parent: 1 -- proto: BedsheetBlue +- proto: BedsheetSpawner entities: + - uid: 91 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 - uid: 114 components: - type: Transform pos: -2.5,8.5 parent: 1 -- proto: BedsheetCaptain - entities: - uid: 115 components: - type: Transform - pos: 3.5,8.5 + pos: -4.5,8.5 parent: 1 -- proto: BedsheetCosmos - entities: - uid: 116 components: - type: Transform pos: 5.5,8.5 parent: 1 -- proto: BedsheetUSA - entities: - - uid: 117 - components: - - type: Transform - pos: -4.5,8.5 - parent: 1 - proto: BenchSofaMiddle entities: - uid: 118 @@ -3510,182 +3482,225 @@ entities: parent: 1 - type: Physics bodyType: Static -- proto: BlastDoorBridge +- proto: BlastDoorExterior3 entities: - - uid: 872 + - uid: 117 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: -13.5,-4.5 parent: 1 - - uid: 1408 + - type: DeviceLinkSink + links: + - 1297 + - uid: 126 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: -13.5,-5.5 parent: 1 - - uid: 1470 + - type: DeviceLinkSink + links: + - 1297 + - uid: 127 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: -13.5,-2.5 parent: 1 - - uid: 1628 + - type: DeviceLinkSink + links: + - 1297 + - uid: 128 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: -13.5,-3.5 parent: 1 - - uid: 2029 + - type: DeviceLinkSink + links: + - 1297 + - uid: 129 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,-6.5 parent: 1 -- proto: BlastDoorExterior1 - entities: - - uid: 126 + - type: DeviceLinkSink + links: + - 1297 + - uid: 132 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 0.5,2.5 + rot: 1.5707963267948966 rad + pos: 14.5,-4.5 parent: 1 - - uid: 127 + - type: DeviceLinkSink + links: + - 135 + - uid: 133 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 0.5,-1.5 + rot: 1.5707963267948966 rad + pos: 14.5,-3.5 parent: 1 -- proto: BlastDoorExterior2 - entities: - - uid: 128 + - type: DeviceLinkSink + links: + - 135 + - uid: 134 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: 14.5,-2.5 parent: 1 - - uid: 129 + - type: DeviceLinkSink + links: + - 135 + - uid: 137 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-3.5 + pos: -5.5,-12.5 parent: 1 - - uid: 130 + - type: DeviceLinkSink + links: + - 1227 + - 1226 + - uid: 138 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-4.5 + pos: -1.5,-12.5 parent: 1 - - uid: 131 + - type: DeviceLinkSink + links: + - 1227 + - 1226 + - uid: 139 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-5.5 + pos: -0.5,-12.5 parent: 1 - - uid: 2028 + - type: DeviceLinkSink + links: + - 1227 + - 1226 + - uid: 140 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 13.5,-6.5 + rot: 1.5707963267948966 rad + pos: 7.5,-11.5 parent: 1 -- proto: BlastDoorExterior3 - entities: - - uid: 132 + - type: DeviceLinkSink + links: + - 1226 + - 1227 + - uid: 162 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -5.5,-12.5 + pos: 5.5,-12.5 parent: 1 - - uid: 133 + - type: DeviceLinkSink + links: + - 1227 + - 1226 + - uid: 175 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -1.5,-12.5 + pos: -4.5,-12.5 parent: 1 - - uid: 134 + - type: DeviceLinkSink + links: + - 1227 + - 1226 + - uid: 181 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -0.5,-12.5 + pos: 2.5,-12.5 parent: 1 - - uid: 135 + - type: DeviceLinkSink + links: + - 1227 + - 1226 + - uid: 224 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 5.5,-12.5 + pos: 1.5,-12.5 parent: 1 - - uid: 136 + - type: DeviceLinkSink + links: + - 1227 + - 1226 + - uid: 273 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1227 + - 1226 + - uid: 275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 1 + - type: DeviceLinkSink + links: + - 1226 + - 1227 + - uid: 284 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,-12.5 parent: 1 - - uid: 137 + - type: DeviceLinkSink + links: + - 1227 + - 1226 + - uid: 1228 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -4.5,-12.5 + pos: 13.5,-6.5 parent: 1 - - uid: 138 + - type: DeviceLinkSink + links: + - 135 + - uid: 1231 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 2.5,-12.5 + rot: 3.141592653589793 rad + pos: 0.5,2.5 parent: 1 - - uid: 139 + - type: DeviceLinkSink + links: + - 130 + - uid: 1232 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 1.5,-12.5 + rot: 1.5707963267948966 rad + pos: 14.5,-5.5 parent: 1 - - uid: 140 + - type: DeviceLinkSink + links: + - 135 + - uid: 1298 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 0.5,-12.5 + pos: 0.5,-1.5 parent: 1 - - uid: 2026 + - type: DeviceLinkSink + links: + - 130 +- proto: BookshelfFilled + entities: + - uid: 1191 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -6.5,-11.5 + pos: 6.5,23.5 parent: 1 - - uid: 2027 + - uid: 1303 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 7.5,-11.5 + pos: 4.5,23.5 parent: 1 - proto: BookTemple entities: @@ -3694,12 +3709,35 @@ entities: - type: Transform pos: -1.8859248,28.547873 parent: 1 -- proto: BoozeDispenser +- proto: ButtonFrameCaution entities: - - uid: 141 + - uid: 131 components: - type: Transform - pos: -2.5,23.5 + rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - uid: 1230 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 1233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-12.5 + parent: 1 + - uid: 1234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-12.5 parent: 1 - proto: CableApcExtension entities: @@ -3988,11 +4026,6 @@ entities: - type: Transform pos: -1.5,-5.5 parent: 1 - - uid: 224 - components: - - type: Transform - pos: -10.5,-7.5 - parent: 1 - uid: 225 components: - type: Transform @@ -4158,11 +4191,6 @@ entities: - type: Transform pos: 5.5,26.5 parent: 1 - - uid: 264 - components: - - type: Transform - pos: -2.5,28.5 - parent: 1 - uid: 265 components: - type: Transform @@ -4283,11 +4311,6 @@ entities: - type: Transform pos: -0.5,5.5 parent: 1 - - uid: 306 - components: - - type: Transform - pos: 3.5,28.5 - parent: 1 - uid: 307 components: - type: Transform @@ -4323,11 +4346,6 @@ entities: - type: Transform pos: -2.5,27.5 parent: 1 - - uid: 314 - components: - - type: Transform - pos: 0.5,29.5 - parent: 1 - uid: 318 components: - type: Transform @@ -5195,30 +5213,30 @@ entities: parent: 1 - proto: CableHV entities: - - uid: 175 + - uid: 370 components: - type: Transform - pos: -3.5,-4.5 + pos: 0.5,-4.5 parent: 1 - - uid: 544 + - uid: 408 components: - type: Transform - pos: 0.5,-10.5 + pos: -0.5,-6.5 parent: 1 - - uid: 545 + - uid: 413 components: - type: Transform - pos: 0.5,-8.5 + pos: 1.5,-6.5 parent: 1 - - uid: 546 + - uid: 545 components: - type: Transform - pos: 0.5,-9.5 + pos: 2.5,-3.5 parent: 1 - - uid: 547 + - uid: 546 components: - type: Transform - pos: 0.5,-7.5 + pos: 1.5,-3.5 parent: 1 - uid: 548 components: @@ -5235,11 +5253,6 @@ entities: - type: Transform pos: 1.5,-4.5 parent: 1 - - uid: 551 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 1 - uid: 552 components: - type: Transform @@ -5270,6 +5283,16 @@ entities: - type: Transform pos: -1.5,-5.5 parent: 1 + - uid: 561 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 - uid: 575 components: - type: Transform @@ -5285,59 +5308,20 @@ entities: - type: Transform pos: 2.5,-5.5 parent: 1 - - uid: 1128 +- proto: CableHVStack1 + entities: + - uid: 579 components: - type: Transform - pos: 4.5,-4.5 - parent: 1 - - uid: 1390 + parent: 578 + - type: Stack + count: 5 + - type: Item + size: 5 + - type: Physics + canCollide: False + - uid: 585 components: - - type: Transform - pos: 2.5,-3.5 - parent: 1 - - uid: 1394 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 1 - - uid: 1401 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 1 - - uid: 1402 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 1 - - uid: 1403 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 1 - - uid: 1404 - components: - - type: Transform - pos: -2.5,-3.5 - parent: 1 -- proto: CableHVStack1 - entities: - - uid: 579 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 578 - - type: Stack - count: 5 - - type: Item - size: 5 - - type: Physics - canCollide: False - - uid: 585 - components: - - type: MetaData - flags: InContainer - type: Transform parent: 584 - type: Stack @@ -5538,11 +5522,6 @@ entities: - type: Transform pos: -0.5,9.5 parent: 1 - - uid: 499 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1 - uid: 500 components: - type: Transform @@ -5678,11 +5657,6 @@ entities: - type: Transform pos: -3.5,5.5 parent: 1 - - uid: 611 - components: - - type: Transform - pos: -4.5,5.5 - parent: 1 - uid: 612 components: - type: Transform @@ -5878,6 +5852,11 @@ entities: - type: Transform pos: 6.5,-4.5 parent: 1 + - uid: 872 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 - uid: 955 components: - type: Transform @@ -5942,8 +5921,6 @@ entities: entities: - uid: 580 components: - - type: MetaData - flags: InContainer - type: Transform parent: 578 - type: Stack @@ -5954,8 +5931,6 @@ entities: canCollide: False - uid: 586 components: - - type: MetaData - flags: InContainer - type: Transform parent: 584 - type: Stack @@ -5966,44 +5941,40 @@ entities: canCollide: False - proto: CableTerminal entities: - - uid: 724 + - uid: 428 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-5.5 + pos: -1.5,-5.5 parent: 1 - - uid: 725 + - uid: 499 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-5.5 + pos: 1.5,-5.5 parent: 1 - - uid: 726 + - uid: 547 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-5.5 + pos: 2.5,-5.5 parent: 1 - - uid: 727 + - uid: 1229 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-5.5 + pos: -0.5,-5.5 parent: 1 - proto: CapacitorStockPart entities: - uid: 581 components: - - type: MetaData - flags: InContainer - type: Transform parent: 578 - type: Physics canCollide: False - uid: 587 components: - - type: MetaData - flags: InContainer - type: Transform parent: 584 - type: Physics @@ -6324,21 +6295,6 @@ entities: - type: Transform pos: 3.5,8.5 parent: 1 - - uid: 781 - components: - - type: Transform - pos: 4.5,7.5 - parent: 1 - - uid: 782 - components: - - type: Transform - pos: -3.5,8.5 - parent: 1 - - uid: 783 - components: - - type: Transform - pos: -3.5,7.5 - parent: 1 - uid: 784 components: - type: Transform @@ -6409,11 +6365,6 @@ entities: - type: Transform pos: -2.5,6.5 parent: 1 - - uid: 798 - components: - - type: Transform - pos: 4.5,8.5 - parent: 1 - uid: 799 components: - type: Transform @@ -6576,6 +6527,18 @@ entities: rot: 3.141592653589793 rad pos: 3.5,27.5 parent: 1 + - uid: 724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.4361367,2.6951075 + parent: 1 + - uid: 852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.516135,1.7039237 + parent: 1 - uid: 1149 components: - type: Transform @@ -6590,6 +6553,20 @@ entities: rot: 3.141592653589793 rad pos: 0.5,28.5 parent: 1 +- proto: ChairWood + entities: + - uid: 1138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.516088,22.542488 + parent: 1 + - uid: 1190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5473385,22.604986 + parent: 1 - proto: CigaretteMilk entities: - uid: 1406 @@ -6607,6 +6584,13 @@ entities: - type: Transform pos: 2.4091663,29.148468 parent: 1 +- proto: CigarPlatinumCase + entities: + - uid: 314 + components: + - type: Transform + pos: 5.310059,22.685331 + parent: 1 - proto: CircuitImprinter entities: - uid: 42 @@ -6621,45 +6605,6 @@ entities: - type: Transform pos: -12.5,-0.5 parent: 1 -- proto: ClosetChefFilled - entities: - - uid: 819 - components: - - type: Transform - pos: 9.5,22.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 566 - - 567 - - 568 - - 569 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: ClosetL3ScienceFilled entities: - uid: 1689 @@ -6674,26 +6619,6 @@ entities: - type: Transform pos: -11.5,-0.5 parent: 1 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 822 - components: - - type: Transform - pos: 8.420334,-5.2576547 - parent: 1 - - uid: 823 - components: - - type: Transform - pos: 8.459396,-5.656091 - parent: 1 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 1976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.2857904,-10.277399 - parent: 1 - proto: ClothingUnderSocksCoder entities: - uid: 1948 @@ -6729,22 +6654,18 @@ entities: parent: 1 - proto: ComputerAnalysisConsole entities: - - uid: 181 + - uid: 1183 components: - type: Transform - pos: -2.5,1.5 + rot: -1.5707963267948966 rad + pos: -4.5,2.5 parent: 1 - proto: ComputerPowerMonitoring entities: - - uid: 162 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 1 - - uid: 670 + - uid: 1326 components: - type: Transform - pos: 4.5,-4.5 + pos: 0.5,-4.5 parent: 1 - proto: ComputerResearchAndDevelopment entities: @@ -6838,20 +6759,6 @@ entities: - type: Transform pos: 13.5,-0.5 parent: 1 -- proto: CrateFoodBarSupply - entities: - - uid: 838 - components: - - type: Transform - pos: -7.5,23.5 - parent: 1 -- proto: CrateHydroponicsTools - entities: - - uid: 839 - components: - - type: Transform - pos: 8.5,21.5 - parent: 1 - proto: CrateScienceSecure entities: - uid: 1539 @@ -6859,111 +6766,945 @@ entities: - type: Transform pos: -7.5,0.5 parent: 1 -- proto: CrateServiceJanitorialSupplies +- proto: CurtainsBlackOpen entities: - - uid: 1158 + - uid: 819 components: - type: Transform - pos: 9.5,6.5 + pos: -4.5,7.5 parent: 1 -- proto: DefibrillatorCabinetFilled +- proto: CurtainsBlueOpen entities: - - uid: 840 + - uid: 855 components: - type: Transform - pos: 2.5,7.5 + pos: 5.5,19.5 parent: 1 -- proto: DrinkBeerBottleFull - entities: - - uid: 841 + - uid: 1225 components: - type: Transform - pos: -3.5423102,15.721792 + pos: -2.5,7.5 parent: 1 -- proto: DrinkGlass - entities: - - uid: 842 + - uid: 1263 components: - type: Transform - pos: -4.859566,23.766893 + pos: 3.5,19.5 parent: 1 - - uid: 843 + - uid: 1276 components: - type: Transform - pos: -4.5236287,23.641891 + pos: 4.5,19.5 parent: 1 - - uid: 844 + - uid: 1314 components: - type: Transform - pos: -4.3048787,23.673143 + pos: 6.5,19.5 parent: 1 - - uid: 845 +- proto: CurtainsGreenOpen + entities: + - uid: 798 components: - type: Transform - pos: -4.890816,23.470016 + pos: 3.5,7.5 parent: 1 - - uid: 846 +- proto: CurtainsOrangeOpen + entities: + - uid: 823 components: - type: Transform - pos: -5.1860237,19.748672 + pos: 5.5,7.5 parent: 1 - - uid: 847 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 840 components: - type: Transform - pos: -2.4985235,19.592422 + pos: 2.5,7.5 parent: 1 -- proto: DrinkMargaritaGlass +- proto: DisposalBend entities: - - uid: 848 + - uid: 344 components: - type: Transform - pos: -3.365711,19.693985 + rot: 1.5707963267948966 rad + pos: 8.5,22.5 parent: 1 -- proto: DrinkMartiniGlass - entities: - - uid: 849 + - uid: 506 components: - type: Transform - pos: 4.5654745,14.607901 + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 parent: 1 -- proto: DrinkSakeBottleFull - entities: - - uid: 850 + - uid: 507 components: - type: Transform - pos: -2.6210735,10.875751 + rot: 3.141592653589793 rad + pos: -9.5,-3.5 parent: 1 -- proto: DrinkSakeCup - entities: - - uid: 851 + - uid: 1163 components: - type: Transform - pos: 6.360851,12.907906 + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 parent: 1 - - uid: 852 + - uid: 1442 components: - type: Transform - pos: 6.7514753,12.540718 - parent: 1 - - uid: 853 + rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 1 + - uid: 1444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,21.5 + parent: 1 + - uid: 1511 + components: + - type: Transform + pos: 0.5,25.5 + parent: 1 + - uid: 1546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,16.5 + parent: 1 + - uid: 1555 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 1558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 1 + - uid: 1563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 1 + - uid: 1765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,3.5 + parent: 1 + - uid: 1766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - uid: 1824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,5.5 + parent: 1 + - uid: 1898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 1 + - uid: 1899 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 +- proto: DisposalJunction + entities: + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,21.5 + parent: 1 + - uid: 1388 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 1892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + - uid: 1918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,0.5 + parent: 1 +- proto: DisposalJunctionFlipped + entities: + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,21.5 + parent: 1 + - uid: 504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 1467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,21.5 + parent: 1 + - uid: 1536 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1 + - uid: 1888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - uid: 1907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 +- proto: DisposalPipe + entities: + - uid: 68 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,21.5 + parent: 1 + - uid: 75 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,21.5 + parent: 1 + - uid: 502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 1 + - uid: 518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 1 + - uid: 680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 1 + - uid: 685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - uid: 781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + - uid: 850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + - uid: 854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,11.5 + parent: 1 + - uid: 947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,25.5 + parent: 1 + - uid: 1019 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 1187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + - uid: 1404 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1 + - uid: 1439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,22.5 + parent: 1 + - uid: 1445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,21.5 + parent: 1 + - uid: 1448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,21.5 + parent: 1 + - uid: 1455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,21.5 + parent: 1 + - uid: 1459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,21.5 + parent: 1 + - uid: 1461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,21.5 + parent: 1 + - uid: 1462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,21.5 + parent: 1 + - uid: 1464 + components: + - type: Transform + pos: -7.5,22.5 + parent: 1 + - uid: 1465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,21.5 + parent: 1 + - uid: 1470 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1 + - uid: 1495 + components: + - type: Transform + pos: 0.5,23.5 + parent: 1 + - uid: 1512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,25.5 + parent: 1 + - uid: 1513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,25.5 + parent: 1 + - uid: 1514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,25.5 + parent: 1 + - uid: 1515 + components: + - type: Transform + pos: 0.5,24.5 + parent: 1 + - uid: 1520 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 1525 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 1530 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + pos: 4.5,17.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1 + - uid: 1533 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1 + - uid: 1534 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1 + - uid: 1535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,16.5 + parent: 1 + - uid: 1538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 1 + - uid: 1541 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 1542 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 1543 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 1544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + - uid: 1545 + components: + - type: Transform + pos: 8.5,17.5 + parent: 1 + - uid: 1547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,16.5 + parent: 1 + - uid: 1548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,16.5 + parent: 1 + - uid: 1559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,14.5 + parent: 1 + - uid: 1565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,14.5 + parent: 1 + - uid: 1566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,14.5 + parent: 1 + - uid: 1567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,14.5 + parent: 1 + - uid: 1576 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 1 + - uid: 1579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 + - uid: 1580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 1 + - uid: 1581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1 + - uid: 1582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,21.5 + parent: 1 + - uid: 1583 + components: + - type: Transform + pos: -7.5,18.5 + parent: 1 + - uid: 1584 + components: + - type: Transform + pos: -7.5,17.5 + parent: 1 + - uid: 1628 + components: + - type: Transform + pos: -7.5,16.5 + parent: 1 + - uid: 1632 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - uid: 1636 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 1638 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 1640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1 + - uid: 1641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1 + - uid: 1683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 1 + - uid: 1708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1 + - uid: 1826 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 1829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + - uid: 1832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - uid: 1833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - uid: 1842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 1849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - uid: 1889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 1 + - uid: 1890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1 + - uid: 1891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1 + - uid: 1893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1 + - uid: 1894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 + - uid: 1895 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 1896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + - uid: 1897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + - uid: 1901 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 1902 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 1908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + - uid: 1915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + - uid: 1916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 1917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - uid: 1919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 1920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 1921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 1922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 1923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 1 + - uid: 1924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + - uid: 1925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + - uid: 1926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,22.5 + parent: 1 + - uid: 343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,21.5 + parent: 1 + - uid: 1109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 1 + - uid: 1128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + - uid: 1302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + - uid: 1311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 1 + - uid: 1313 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1 + - uid: 1376 + components: + - type: Transform + pos: -7.5,19.5 + parent: 1 + - uid: 1377 + components: + - type: Transform + pos: 3.5,23.5 + parent: 1 + - uid: 1390 + components: + - type: Transform + pos: -7.5,23.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,25.5 + parent: 1 + - uid: 1540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - uid: 1903 components: - type: Transform - pos: -2.1638489,10.775995 + rot: 1.5707963267948966 rad + pos: 4.5,-4.5 parent: 1 - - uid: 854 +- proto: DisposalUnit + entities: + - uid: 427 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 1180 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 1193 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 1300 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 1329 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 1391 + components: + - type: Transform + pos: -4.5,25.5 + parent: 1 + - uid: 1394 components: - type: Transform - pos: -2.7447486,10.490251 + pos: 8.5,19.5 + parent: 1 + - uid: 1395 + components: + - type: Transform + pos: -7.5,19.5 + parent: 1 + - uid: 1398 + components: + - type: Transform + pos: 3.5,23.5 + parent: 1 + - uid: 1402 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 1403 + components: + - type: Transform + pos: -7.5,23.5 parent: 1 -- proto: DrinkTokkuri +- proto: DisposalYJunction entities: - - uid: 855 + - uid: 346 + components: + - type: Transform + pos: 4.5,21.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 +- proto: DrinkBeerBottleFull + entities: + - uid: 841 + components: + - type: Transform + pos: -3.5423102,15.721792 + parent: 1 +- proto: DrinkGlass + entities: + - uid: 842 + components: + - type: Transform + pos: -4.859566,23.766893 + parent: 1 + - uid: 843 + components: + - type: Transform + pos: -4.5236287,23.641891 + parent: 1 + - uid: 844 + components: + - type: Transform + pos: -4.3048787,23.673143 + parent: 1 + - uid: 845 + components: + - type: Transform + pos: -4.890816,23.470016 + parent: 1 + - uid: 846 + components: + - type: Transform + pos: -5.1860237,19.748672 + parent: 1 + - uid: 847 + components: + - type: Transform + pos: -2.4985235,19.592422 + parent: 1 +- proto: DrinkMargaritaGlass + entities: + - uid: 848 + components: + - type: Transform + pos: -3.365711,19.693985 + parent: 1 +- proto: DrinkMartiniGlass + entities: + - uid: 849 components: - type: Transform - pos: 6.7514753,12.861031 + pos: 4.5654745,14.607901 parent: 1 - proto: EmergencyLight entities: + - uid: 851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,25.5 + parent: 1 - uid: 1332 components: - type: Transform @@ -6975,12 +7716,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-2.5 parent: 1 - - uid: 1337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,25.5 - parent: 1 - uid: 1346 components: - type: Transform @@ -7015,17 +7750,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,5.5 parent: 1 - - uid: 1370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,25.5 - parent: 1 - - uid: 1371 - components: - - type: Transform - pos: -1.5,18.5 - parent: 1 - uid: 1373 components: - type: Transform @@ -7048,6 +7772,18 @@ entities: - type: Transform pos: -8.5,-7.5 parent: 1 + - uid: 1392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + - uid: 1642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,19.5 + parent: 1 - proto: FaxMachineShip entities: - uid: 856 @@ -7067,8 +7803,6 @@ entities: address: FIR-713F-0CFC transmitFrequency: 1621 receiveFrequency: 1621 - - type: AtmosDevice - joinedGrid: 1 - type: ContainerContainer containers: board: !type:Container @@ -7080,8 +7814,6 @@ entities: entities: - uid: 858 components: - - type: MetaData - flags: InContainer - type: Transform parent: 857 - type: Physics @@ -7152,16 +7884,12 @@ entities: entities: - uid: 862 components: - - type: MetaData - flags: InContainer - type: Transform parent: 861 - type: Physics canCollide: False - uid: 864 components: - - type: MetaData - flags: InContainer - type: Transform parent: 863 - type: Physics @@ -7325,16 +8053,15 @@ entities: - type: Transform pos: 2.5,21.5 parent: 1 -- proto: FloorDrain +- proto: Fireplace entities: - - uid: 559 + - uid: 1330 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,21.5 + pos: 5.5,23.5 parent: 1 - - type: Fixtures - fixtures: {} +- proto: FloorDrain + entities: - uid: 912 components: - type: Transform @@ -7344,55 +8071,31 @@ entities: accumulator: 0.37493533 - type: Fixtures fixtures: {} -- proto: FoodMealEnchiladas - entities: - - uid: 646 - components: - - type: Transform - pos: 5.4285297,19.640747 - parent: 1 -- proto: FoodMealPotatoLoaded - entities: - - uid: 914 - components: - - type: Transform - pos: 4.1151094,19.773825 - parent: 1 -- proto: FoodMeatCooked - entities: - - uid: 915 - components: - - type: Transform - pos: 3.7088592,19.555075 - parent: 1 -- proto: FoodPlate - entities: - - uid: 916 - components: - - type: Transform - pos: 5.485395,19.77181 - parent: 1 -- proto: FoodPlateSmall +- proto: GasMixerOn entities: - - uid: 917 + - uid: 1938 components: - type: Transform - pos: 3.7238235,19.626287 + rot: 3.141592653589793 rad + pos: 5.5,-8.5 parent: 1 -- proto: GasMixerFlipped + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasMixerOnFlipped entities: - - uid: 945 + - uid: 569 components: - type: Transform - pos: -3.5,-8.5 + pos: -4.5,-8.5 parent: 1 - type: GasMixer - inletTwoConcentration: 0.78 - inletOneConcentration: 0.22 - - type: AtmosDevice - joinedGrid: 1 + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - proto: GasOutletInjector entities: - uid: 919 @@ -7401,8 +8104,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#34EBC6FF' - proto: GasPassiveVent @@ -7413,8 +8114,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#EBCF34FF' - uid: 922 @@ -7423,8 +8122,6 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,-11.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GasPipeBend @@ -7437,21 +8134,22 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 668 + - uid: 560 components: - type: Transform - pos: -3.5,-7.5 + rot: -1.5707963267948966 rad + pos: -4.5,-9.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 680 + - uid: 668 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-9.5 + pos: -6.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - uid: 832 components: - type: Transform @@ -7468,23 +8166,15 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 941 + - uid: 945 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-7.5 + rot: 1.5707963267948966 rad + pos: -7.5,0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 959 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1019 + - uid: 1016 components: - type: Transform rot: -1.5707963267948966 rad @@ -7492,14 +8182,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1022 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1046 components: - type: Transform @@ -7516,6 +8198,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 1133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 1135 components: - type: Transform @@ -7524,28 +8214,29 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasPipeStraight - entities: - - uid: 51 + - uid: 1928 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,10.5 + pos: -9.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 75 + - uid: 1939 components: - type: Transform - pos: -4.5,5.5 + rot: 3.141592653589793 rad + pos: 5.5,-9.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 76 + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 51 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,6.5 + rot: 1.5707963267948966 rad + pos: 3.5,10.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -7654,11 +8345,19 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 212 + - uid: 212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 264 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,5.5 + pos: -5.5,0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' @@ -7685,14 +8384,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 273 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 274 components: - type: Transform @@ -7701,14 +8392,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 275 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 276 components: - type: Transform @@ -7749,27 +8432,11 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 346 + - uid: 332 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,0.5 + pos: 3.5,7.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -7780,22 +8447,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 372 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 374 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 379 components: - type: Transform @@ -7828,14 +8479,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 399 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 405 components: - type: Transform @@ -7844,14 +8487,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 413 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 415 components: - type: Transform @@ -7994,14 +8629,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 505 components: - type: Transform @@ -8017,13 +8644,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 518 - components: - - type: Transform - pos: 6.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 523 components: - type: Transform @@ -8067,6 +8687,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 637 components: - type: Transform @@ -8128,26 +8756,32 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 684 + - uid: 678 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-0.5 + rot: 1.5707963267948966 rad + pos: 5.5,-11.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 685 + - uid: 684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-2.5 + pos: -4.5,4.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 687 components: - type: Transform - pos: 5.5,0.5 + pos: -4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 690 + components: + - type: Transform + pos: -4.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' @@ -8161,11 +8795,10 @@ entities: - uid: 692 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-4.5 + pos: -4.5,3.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 697 components: - type: Transform @@ -8188,18 +8821,17 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 709 + - uid: 710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,6.5 + pos: 6.5,16.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 710 + color: '#0055CCFF' + - uid: 725 components: - type: Transform - pos: 6.5,16.5 + pos: -4.5,2.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' @@ -8210,6 +8842,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 830 components: - type: Transform @@ -8217,6 +8857,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 838 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 868 components: - type: Transform @@ -8231,19 +8878,27 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 957 + - uid: 917 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-3.5 + pos: -2.5,7.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 960 + - uid: 946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-1.5 + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-10.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -8434,11 +9089,19 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1016 + - uid: 1013 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-10.5 + rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,6.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -8450,14 +9113,22 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1021 + - uid: 1018 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-8.5 + pos: -6.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 1022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1026 components: - type: Transform @@ -8721,8 +9392,8 @@ entities: - uid: 1096 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-7.5 + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -8742,205 +9413,258 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1100 + - uid: 1102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1105 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,21.5 + pos: 6.5,-9.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1102 + - uid: 1107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1113 + components: + - type: Transform + pos: -5.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,18.5 + rot: 1.5707963267948966 rad + pos: 5.5,11.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1103 + color: '#0055CCFF' + - uid: 1125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-11.5 + pos: 6.5,-6.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1104 + - uid: 1131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 + rot: 3.141592653589793 rad + pos: 5.5,20.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1105 + - uid: 1137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-9.5 + pos: 1.5,23.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1106 + - uid: 1152 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-11.5 + pos: 7.5,-5.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1107 + - uid: 1157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-11.5 + rot: 3.141592653589793 rad + pos: -5.5,3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1108 + - uid: 1159 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-11.5 + pos: -1.5,5.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1109 + color: '#0055CCFF' + - uid: 1162 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-7.5 + pos: 8.5,-7.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1113 + - uid: 1168 components: - type: Transform - pos: -5.5,21.5 + pos: 6.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1120 + - uid: 1169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-6.5 + pos: 6.5,0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1121 + - uid: 1170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,22.5 + pos: 6.5,1.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1123 + color: '#990000FF' + - uid: 1188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,11.5 + rot: 3.141592653589793 rad + pos: 6.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1125 + color: '#990000FF' + - uid: 1219 components: - type: Transform - pos: 6.5,-6.5 + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1131 + - uid: 1223 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,20.5 + rot: 1.5707963267948966 rad + pos: 7.5,21.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1133 + - uid: 1281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,18.5 + rot: 3.141592653589793 rad + pos: -6.5,1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1137 + - uid: 1299 components: - type: Transform - pos: 1.5,23.5 + rot: 3.141592653589793 rad + pos: -4.5,7.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1138 + - uid: 1306 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-7.5 + pos: 5.5,7.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1152 + - uid: 1316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-5.5 + rot: 3.141592653589793 rad + pos: 6.5,-7.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1159 + - uid: 1337 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,6.5 + pos: 7.5,-8.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1162 + - uid: 1557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-7.5 + rot: -1.5707963267948966 rad + pos: 1.5,18.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1163 + color: '#990000FF' + - uid: 1825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-9.5 + rot: 3.141592653589793 rad + pos: -5.5,5.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1164 + - uid: 1927 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-8.5 + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1168 + - uid: 1929 components: - type: Transform - pos: 6.5,-0.5 + pos: -9.5,-1.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1169 + - uid: 1933 components: - type: Transform - pos: 6.5,0.5 + pos: -9.5,-2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1170 + - uid: 1934 components: - type: Transform - pos: 6.5,1.5 + pos: -9.5,-3.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -8969,13 +9693,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 284 - components: - - type: Transform - pos: 2.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 317 components: - type: Transform @@ -8983,13 +9700,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 370 - components: - - type: Transform - pos: -4.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - uid: 407 components: - type: Transform @@ -8998,14 +9708,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 408 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 417 components: - type: Transform @@ -9022,13 +9724,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 506 + - uid: 551 components: - type: Transform - pos: -5.5,-1.5 + rot: 1.5707963267948966 rad + pos: -0.5,8.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 562 components: - type: Transform @@ -9053,6 +9756,29 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 682 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 695 components: - type: Transform @@ -9077,6 +9803,53 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 727 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - uid: 926 components: - type: Transform @@ -9085,11 +9858,11 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 947 + - uid: 941 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-2.5 + pos: 5.5,0.5 parent: 1 - type: AtmosPipeColor color: '#0055CCFF' @@ -9101,27 +9874,19 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1013 + - uid: 959 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-5.5 + pos: 6.5,-8.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1018 + - uid: 963 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1020 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-9.5 + pos: 5.5,6.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -9145,18 +9910,34 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,22.5 + pos: 5.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 parent: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 1088 + color: '#0055CCFF' + - uid: 1106 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-5.5 + rot: 3.141592653589793 rad + pos: -4.5,6.5 parent: 1 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 1122 components: - type: Transform @@ -9168,8 +9949,7 @@ entities: - uid: 1167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 + pos: -6.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -9213,22 +9993,34 @@ entities: color: '#990000FF' - proto: GasPort entities: + - uid: 958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 1196 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 1197 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#34EBC6FF' - uid: 1198 @@ -9237,52 +10029,18 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 1199 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - proto: GasPressurePump entities: - - uid: 678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-11.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 946 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-9.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 1200 components: - type: Transform @@ -9291,10 +10049,18 @@ entities: parent: 1 - type: GasPressurePump targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#EBCF34FF' +- proto: GasPressurePumpOnMax + entities: + - uid: 1120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasValve entities: - uid: 326 @@ -9303,8 +10069,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#34EBC6FF' - proto: GasVentPump @@ -9315,27 +10079,22 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 416 + - uid: 374 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,10.5 + pos: -7.5,-7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 428 + - uid: 416 components: - type: Transform - pos: -1.5,6.5 + rot: 1.5707963267948966 rad + pos: -5.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 485 @@ -9343,8 +10102,6 @@ entities: - type: Transform pos: -4.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 503 @@ -9353,8 +10110,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 536 @@ -9363,18 +10118,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 677 @@ -9383,17 +10126,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 686 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 867 @@ -9401,17 +10133,6 @@ entities: - type: Transform pos: -0.5,26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 963 - components: - - type: Transform - pos: 6.5,23.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 973 @@ -9420,8 +10141,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 997 @@ -9430,8 +10149,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1054 @@ -9440,8 +10157,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,14.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1160 @@ -9450,18 +10165,22 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1161 + - uid: 1185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-7.5 + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1210 @@ -9480,56 +10199,37 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasVentScrubber - entities: - - uid: 427 + - uid: 1301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,5.5 + pos: 6.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 440 + color: '#0055CCFF' + - uid: 1906 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,6.5 + pos: 7.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#990000FF' - - uid: 482 + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 440 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,10.5 + pos: 8.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 502 + - uid: 482 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-5.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 507 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-1.5 + pos: 6.5,10.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 673 @@ -9538,16 +10238,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 690 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-9.5 - parent: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 701 @@ -9555,27 +10245,20 @@ entities: - type: Transform pos: 1.5,26.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 927 + - uid: 916 components: - type: Transform - pos: -5.5,23.5 + pos: -2.5,8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 958 + - uid: 927 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-2.5 + pos: -5.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1001 @@ -9584,15 +10267,13 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - - uid: 1015 + - uid: 1021 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-9.5 + rot: 1.5707963267948966 rad + pos: -7.5,2.5 parent: 1 - type: AtmosPipeColor color: '#990000FF' @@ -9601,8 +10282,6 @@ entities: - type: Transform pos: 5.5,23.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1057 @@ -9611,8 +10290,6 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,16.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1068 @@ -9621,8 +10298,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,15.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1136 @@ -9631,8 +10306,43 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,17.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1158 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1164 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1184 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,21.5 + parent: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 1222 @@ -9649,6 +10359,30 @@ entities: parent: 1 - type: AtmosPipeColor color: '#990000FF' + - uid: 1352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' - proto: GravityGeneratorMini entities: - uid: 1148 @@ -10034,128 +10768,54 @@ entities: parent: 1 - uid: 2004 components: - - type: Transform - pos: 6.5,27.5 - parent: 1 -- proto: GunSafeShuttleT3Spawner - entities: - - uid: 560 - components: - - type: Transform - pos: -4.5,26.5 - parent: 1 -- proto: Gyroscope - entities: - - uid: 1139 - components: - - type: Transform - pos: -9.5,5.5 - parent: 1 - - uid: 1295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,7.5 - parent: 1 -- proto: HarpInstrument - entities: - - uid: 1296 - components: - - type: Transform - pos: 2.5,16.5 - parent: 1 -- proto: HolofanProjector - entities: - - uid: 1978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.3219557,-9.440136 - parent: 1 -- proto: Holoprojector - entities: - - uid: 561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.704551,-9.439793 - parent: 1 -- proto: hydroponicsTrayAnchored - entities: - - uid: 1297 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,21.5 + - type: Transform + pos: 6.5,27.5 parent: 1 -- proto: JanitorialTrolley +- proto: GunSafeShuttleCaptain entities: - - uid: 1908 + - uid: 1312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.58178,5.7260947 + pos: -4.5,26.5 parent: 1 -- proto: KitchenDeepFryer +- proto: Gyroscope entities: - - uid: 1298 + - uid: 1139 components: - type: Transform - pos: 5.5,23.5 + pos: -9.5,5.5 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 1300 + - uid: 1295 components: - type: Transform - pos: 3.5,23.5 + rot: 3.141592653589793 rad + pos: -7.5,7.5 parent: 1 -- proto: KitchenReagentGrinder +- proto: HarpInstrument entities: - - uid: 563 + - uid: 1296 components: - type: Transform - pos: 4.5,23.5 + pos: 2.5,16.5 parent: 1 - - uid: 1302 +- proto: HospitalCurtainsOpen + entities: + - uid: 783 components: - type: Transform - pos: -5.5,23.5 + pos: 9.5,22.5 parent: 1 - - type: ContainerContainer - containers: - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 859 - inputContainer: !type:Container - showEnts: False - occludes: True - ents: [] - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] -- proto: LargeBeaker - entities: - - uid: 859 + - uid: 1218 components: - - type: MetaData - flags: InContainer - type: Transform - parent: 1302 - - type: Physics - canCollide: False + pos: 9.5,21.5 + parent: 1 - proto: LockerAtmosphericsFilled entities: - - uid: 1303 + - uid: 336 components: - type: Transform - pos: -9.499999,-8.499998 + pos: -7.5,-8.5 parent: 1 - proto: LockerBoozeFilled entities: @@ -10191,17 +10851,17 @@ entities: - 0 - proto: LockerEngineerFilled entities: - - uid: 1306 + - uid: 726 components: - type: Transform - pos: 9.500001,-9.5 + pos: 8.5,-8.5 parent: 1 -- proto: LockerFreezerBase +- proto: LockerJanitorFilled entities: - - uid: 570 + - uid: 1176 components: - type: Transform - pos: 7.5,21.5 + pos: 9.5,6.5 parent: 1 - proto: LockerResearchDirectorFilled entities: @@ -10240,13 +10900,6 @@ entities: - type: Transform pos: 8.5,3.5 parent: 1 -- proto: LockerWallMedicalDoctorFilled - entities: - - uid: 1311 - components: - - type: Transform - pos: -1.5,7.5 - parent: 1 - proto: MachineArtifactAnalyzer entities: - uid: 4 @@ -10255,40 +10908,26 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,0.5 parent: 1 -- proto: MedkitBurnFilled - entities: - - uid: 2034 - components: - - type: Transform - pos: -0.10126734,5.462837 - parent: 1 -- proto: MedkitFilled - entities: - - uid: 2035 - components: - - type: Transform - pos: 0.42217013,5.462837 - parent: 1 -- proto: MedkitRadiationFilled +- proto: Matchbox entities: - - uid: 2037 + - uid: 1401 components: - type: Transform - pos: 1.4299827,5.462837 + pos: 5.685059,22.633247 parent: 1 -- proto: MedkitToxinFilled +- proto: MaterialReclaimer entities: - - uid: 2036 + - uid: 1319 components: - type: Transform - pos: 0.92998254,5.462837 + pos: 10.5,5.5 parent: 1 -- proto: Multitool +- proto: Mirror entities: - - uid: 68 + - uid: 1321 components: - type: Transform - pos: 6.3198195,-8.274525 + pos: 8.5,24.5 parent: 1 - proto: NitrogenCanister entities: @@ -10300,72 +10939,21 @@ entities: parent: 1 - type: Physics bodyType: Static - - type: AtmosDevice - joinedGrid: 1 -- proto: NodeScanner - entities: - - uid: 1974 + - uid: 1941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.7040954,-1.4464068 + anchored: True + pos: 6.5,-8.5 parent: 1 -- proto: OilJarCorn - entities: - - uid: 566 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 819 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 567 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 819 - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 568 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 819 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 569 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 819 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: OreBag - entities: - - uid: 1319 - components: - - type: Transform - pos: 8.623459,-4.390467 - parent: 1 - - uid: 1320 - components: - - type: Transform - pos: 8.365646,-4.3982797 - parent: 1 -- proto: OreProcessor + bodyType: Static +- proto: NodeScanner entities: - - uid: 1321 + - uid: 1974 components: - type: Transform - pos: 8.5,-2.5 + rot: -1.5707963267948966 rad + pos: -7.7040954,-1.4464068 parent: 1 - proto: OxygenCanister entities: @@ -10377,64 +10965,20 @@ entities: parent: 1 - type: Physics bodyType: Static - - type: AtmosDevice - joinedGrid: 1 -- proto: PackPaperRolling - entities: - - uid: 1323 - components: - - type: Transform - pos: -1.1468241,29.827557 - parent: 1 -- proto: PaintingMothBigCatch - entities: - - uid: 1935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,4.5 - parent: 1 -- proto: PaintingOldGuitarist - entities: - - uid: 403 - components: - - type: Transform - pos: -6.5,11.5 - parent: 1 -- proto: PaintingPersistenceOfMemory - entities: - - uid: 1925 - components: - - type: Transform - pos: 6.5,25.5 - parent: 1 -- proto: PaintingSleepingGypsy - entities: - - uid: 1927 - components: - - type: Transform - pos: 5.5,9.5 - parent: 1 -- proto: PaintingTheGreatWave - entities: - - uid: 1922 - components: - - type: Transform - pos: -2.5,9.5 - parent: 1 -- proto: PaintingTheKiss - entities: - - uid: 1923 + - uid: 1940 components: - type: Transform - pos: 3.5,9.5 + anchored: True + pos: 6.5,-9.5 parent: 1 -- proto: PaintingTheSonOfMan + - type: Physics + bodyType: Static +- proto: PackPaperRolling entities: - - uid: 1926 + - uid: 1323 components: - type: Transform - pos: -4.5,9.5 + pos: -1.1468241,29.827557 parent: 1 - proto: PaperBin10 entities: @@ -10485,312 +11029,204 @@ entities: - type: Transform pos: -7.587398,6.7485266 parent: 1 -- proto: PosterContrabandSpaceCola - entities: - - uid: 332 - components: - - type: Transform - pos: -6.5,19.5 - parent: 1 -- proto: PosterLegit50thAnniversaryVintageReprint - entities: - - uid: 1917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,26.5 - parent: 1 -- proto: PosterLegitAnatomyPoster - entities: - - uid: 1934 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-1.5 - parent: 1 -- proto: PosterLegitBlessThisSpess - entities: - - uid: 1936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 1 -- proto: PosterLegitBuild - entities: - - uid: 1937 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 1 -- proto: PosterLegitHighClassMartini - entities: - - uid: 336 - components: - - type: Transform - pos: -6.5,24.5 - parent: 1 -- proto: PosterLegitShoukou - entities: - - uid: 333 - components: - - type: Transform - pos: 7.5,11.5 - parent: 1 -- proto: PosterLegitThereIsNoGasGiant - entities: - - uid: 1928 - components: - - type: Transform - pos: 10.5,-6.5 - parent: 1 - proto: PowerCellSmall entities: - uid: 582 components: - - type: MetaData - flags: InContainer - type: Transform parent: 578 - type: Physics canCollide: False - uid: 588 components: - - type: MetaData - flags: InContainer - type: Transform parent: 584 - type: Physics canCollide: False - proto: Poweredlight entities: + - uid: 141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,19.5 + parent: 1 - uid: 572 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 1 - uid: 1181 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 parent: 1 - uid: 1335 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -1.5,25.5 parent: 1 - uid: 1336 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,-2.5 parent: 1 - uid: 1338 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,3.5 parent: 1 - uid: 1339 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-0.5 parent: 1 - uid: 1341 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,3.5 parent: 1 - uid: 1343 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,-0.5 parent: 1 - uid: 1344 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,25.5 parent: 1 - uid: 1345 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,17.5 parent: 1 - uid: 1347 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,-11.5 parent: 1 - uid: 1348 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -8.5,12.5 parent: 1 - uid: 1351 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-5.5 parent: 1 - uid: 1353 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-5.5 parent: 1 - uid: 1354 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-4.5 parent: 1 - uid: 1355 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,-11.5 parent: 1 - uid: 1358 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 11.5,-5.5 parent: 1 - uid: 1360 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,17.5 parent: 1 - uid: 1361 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,12.5 parent: 1 - uid: 1363 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -5.5,-10.5 parent: 1 - uid: 1364 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-10.5 parent: 1 - uid: 1372 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -7.5,6.5 parent: 1 - uid: 1378 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,-2.5 parent: 1 - uid: 1386 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 8.5,6.5 parent: 1 - uid: 1399 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,-7.5 parent: 1 - uid: 1400 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-7.5 parent: 1 - uid: 1405 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,8.5 parent: 1 -- proto: PoweredSmallLight +- proto: PoweredlightGreen entities: - - uid: 90 + - uid: 1946 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,19.5 + pos: 11.5,19.5 parent: 1 - - uid: 91 +- proto: PoweredlightRed + entities: + - uid: 1643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,19.5 + rot: -1.5707963267948966 rad + pos: -10.5,19.5 parent: 1 - - uid: 834 +- proto: PoweredSmallLight + entities: + - uid: 90 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,19.5 + rot: 1.5707963267948966 rad + pos: -5.5,19.5 parent: 1 - uid: 913 components: @@ -10804,12 +11240,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,10.5 parent: 1 - - uid: 1330 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,19.5 - parent: 1 - uid: 1331 components: - type: Transform @@ -10853,6 +11283,36 @@ entities: parent: 1 - proto: Rack entities: + - uid: 875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 1 + - uid: 877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 1 + - uid: 960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 1 + - uid: 1282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 1 + - uid: 1371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 1 - uid: 1409 components: - type: Transform @@ -10882,30 +11342,6 @@ entities: - type: Transform pos: 7.5,1.5 parent: 1 - - uid: 1896 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: -7.5,-9.5 - parent: 1 - - type: Physics - bodyType: Dynamic - - uid: 1897 - components: - - type: Transform - pos: 6.5,-8.5 - parent: 1 - - uid: 1898 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 1 - - uid: 1899 - components: - - type: Transform - pos: 6.5,-10.5 - parent: 1 - uid: 1955 components: - type: Transform @@ -11044,39 +11480,106 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-6.5 parent: 1 -- proto: RandomDrinkGlass +- proto: RandomPainting entities: - - uid: 1939 + - uid: 1195 components: - type: Transform - pos: -4.5,19.5 + pos: 11.5,4.5 parent: 1 - - uid: 1940 + - uid: 1201 components: - type: Transform - pos: -5.5,19.5 + pos: -6.5,11.5 parent: 1 - - uid: 1941 + - uid: 1202 components: - type: Transform - pos: 3.5,10.5 + pos: 6.5,25.5 + parent: 1 + - uid: 1203 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 1204 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 1205 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 1206 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 1208 + components: + - type: Transform + pos: -5.5,25.5 + parent: 1 + - uid: 1215 + components: + - type: Transform + pos: 7.5,11.5 parent: 1 -- proto: RandomFoodMeal +- proto: RandomPosterAny entities: - - uid: 1842 + - uid: 834 components: - type: Transform - pos: -5.5,12.5 + pos: -5.5,26.5 parent: 1 - - uid: 1849 + - uid: 839 components: - type: Transform - pos: -3.5,14.5 + pos: 7.5,19.5 parent: 1 - - uid: 1938 + - uid: 853 components: - type: Transform - pos: 4.5,15.5 + pos: 6.5,24.5 + parent: 1 + - uid: 1207 + components: + - type: Transform + pos: -6.5,19.5 + parent: 1 + - uid: 1209 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 1214 + components: + - type: Transform + pos: -6.5,24.5 + parent: 1 + - uid: 1216 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 1 + - uid: 1294 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 1 +- proto: RandomPosterLegit + entities: + - uid: 1212 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 1213 + components: + - type: Transform + pos: 7.5,-5.5 parent: 1 - proto: ReinforcedPlasmaWindow entities: @@ -11137,6 +11640,12 @@ entities: - type: Transform pos: 4.5,2.5 parent: 1 + - uid: 544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 - uid: 1140 components: - type: Transform @@ -11218,11 +11727,6 @@ entities: - type: Transform pos: -0.5,-3.5 parent: 1 - - uid: 1455 - components: - - type: Transform - pos: 2.5,-3.5 - parent: 1 - uid: 1456 components: - type: Transform @@ -11505,49 +12009,121 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,30.5 parent: 1 -- proto: SignalButtonBridge - entities: - - uid: 2005 - components: - - type: Transform - pos: -10.5,-2.5 - parent: 1 -- proto: SignalButtonExt1 +- proto: SignalButton entities: - - uid: 1511 + - uid: 130 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,1.5 parent: 1 -- proto: SignalButtonExt2 - entities: - - uid: 1512 + - type: DeviceLinkSource + linkedPorts: + 1231: + - Pressed: Toggle + 1298: + - Pressed: Toggle + - uid: 135 components: - type: Transform pos: 13.5,-1.5 parent: 1 -- proto: SignalButtonExt3 - entities: - - uid: 1513 + - type: DeviceLinkSource + linkedPorts: + 134: + - Pressed: Toggle + 133: + - Pressed: Toggle + 132: + - Pressed: Toggle + 1232: + - Pressed: Toggle + 1228: + - Pressed: Toggle + - uid: 1226 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-12.5 + pos: 3.5,-12.5 parent: 1 - - uid: 1514 + - type: DeviceLinkSource + linkedPorts: + 275: + - Pressed: Toggle + 284: + - Pressed: Toggle + 162: + - Pressed: Toggle + 181: + - Pressed: Toggle + 224: + - Pressed: Toggle + 273: + - Pressed: Toggle + 139: + - Pressed: Toggle + 138: + - Pressed: Toggle + 175: + - Pressed: Toggle + 137: + - Pressed: Toggle + 140: + - Pressed: Toggle + - uid: 1227 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-12.5 + pos: -2.5,-12.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 140: + - Pressed: Toggle + 137: + - Pressed: Toggle + 175: + - Pressed: Toggle + 138: + - Pressed: Toggle + 139: + - Pressed: Toggle + 273: + - Pressed: Toggle + 224: + - Pressed: Toggle + 181: + - Pressed: Toggle + 162: + - Pressed: Toggle + 284: + - Pressed: Toggle + 275: + - Pressed: Toggle + - uid: 1297 + components: + - type: Transform + pos: -10.5,-2.5 parent: 1 + - type: DeviceLinkSource + linkedPorts: + 127: + - Pressed: Toggle + 128: + - Pressed: Toggle + 117: + - Pressed: Toggle + 126: + - Pressed: Toggle + 129: + - Pressed: Toggle - proto: SignAtmosMinsky entities: - - uid: 1515 + - uid: 1936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-8.5 + rot: -1.5707963267948966 rad + pos: -6.5,-6.5 parent: 1 - proto: SignBar entities: @@ -11625,10 +12201,11 @@ entities: parent: 1 - proto: SignEngineering entities: - - uid: 1520 + - uid: 1937 components: - type: Transform - pos: 7.5,-8.5 + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 parent: 1 - proto: SignEVA entities: @@ -11663,30 +12240,26 @@ entities: - type: Transform pos: -10.5,18.5 parent: 1 -- proto: SignRadiation +- proto: SignRadiationMed entities: - - uid: 2007 + - uid: 1235 components: - type: Transform - rot: -1.5707963267948966 rad pos: -1.5,2.5 parent: 1 - - uid: 2008 + - uid: 1236 components: - type: Transform - rot: -1.5707963267948966 rad pos: -1.5,-1.5 parent: 1 - - uid: 2009 + - uid: 1237 components: - type: Transform - rot: -1.5707963267948966 rad pos: 2.5,-1.5 parent: 1 - - uid: 2010 + - uid: 1259 components: - type: Transform - rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 1 - proto: SignRND @@ -11710,134 +12283,76 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,13.5 parent: 1 - - uid: 1528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,17.5 - parent: 1 - - uid: 1529 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,13.5 - parent: 1 -- proto: SignToolStorage - entities: - - uid: 1904 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-10.5 - parent: 1 -- proto: Sink - entities: - - uid: 1530 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,20.5 - parent: 1 - - uid: 1531 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,20.5 - parent: 1 -- proto: SMESBasic - entities: - - uid: 1532 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 1 - - uid: 1533 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 1 - - uid: 1534 - components: - - type: Transform - pos: -1.5,-4.5 - parent: 1 - - uid: 1535 + - uid: 1528 components: - type: Transform - pos: 2.5,-4.5 + rot: 1.5707963267948966 rad + pos: 11.5,17.5 parent: 1 -- proto: soda_dispenser - entities: - - uid: 1536 + - uid: 1529 components: - type: Transform - pos: -3.5,23.5 + rot: 1.5707963267948966 rad + pos: 11.5,13.5 parent: 1 -- proto: SpawnPointBartender +- proto: SignToolStorage entities: - - uid: 1538 + - uid: 1904 components: - type: Transform - pos: -4.5,21.5 + rot: 1.5707963267948966 rad + pos: 7.5,-10.5 parent: 1 -- proto: SpawnPointChef +- proto: SinkEmpty entities: - - uid: 1540 + - uid: 1317 components: - type: Transform - pos: 5.5,21.5 + pos: 8.5,23.5 parent: 1 -- proto: SpawnPointJanitor +- proto: SMESBasic entities: - - uid: 1907 + - uid: 559 components: - type: Transform - pos: 8.5,5.5 + pos: -0.5,-4.5 parent: 1 -- proto: SpawnPointLatejoin - entities: - - uid: 1541 + - uid: 566 components: - type: Transform - pos: -3.5,11.5 + pos: -1.5,-4.5 parent: 1 - - uid: 1542 + - uid: 1277 components: - type: Transform - pos: 4.5,11.5 + pos: 2.5,-4.5 parent: 1 -- proto: SpawnPointMusician - entities: - - uid: 1543 + - uid: 1283 components: - type: Transform - pos: 0.5,15.5 + pos: 1.5,-4.5 parent: 1 -- proto: SpawnPointResearchDirector +- proto: SpawnPointLatejoin entities: - - uid: 1544 + - uid: 1011 components: - type: Transform - pos: -11.5,-4.5 + pos: 3.5,8.5 parent: 1 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 1545 + - uid: 1161 components: - type: Transform - pos: 9.5,0.5 + pos: -4.5,8.5 parent: 1 - - uid: 1546 + - uid: 1172 components: - type: Transform - pos: 9.5,2.5 + pos: -2.5,8.5 parent: 1 -- proto: SpawnPointScientist - entities: - - uid: 1547 + - uid: 1220 components: - type: Transform - pos: -8.5,-4.5 + pos: 5.5,8.5 parent: 1 - proto: StairStage entities: @@ -11876,36 +12391,12 @@ entities: parent: 1 - proto: StoolBar entities: - - uid: 1157 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,18.5 - parent: 1 - - uid: 1555 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,18.5 - parent: 1 - uid: 1556 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,18.5 parent: 1 - - uid: 1558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,18.5 - parent: 1 - - uid: 1559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,18.5 - parent: 1 - uid: 1560 components: - type: Transform @@ -11931,15 +12422,11 @@ entities: - type: Transform pos: -7.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 879 components: - type: Transform pos: 12.5,3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: SubstationBasic entities: - uid: 578 @@ -11986,30 +12473,23 @@ entities: entities: - uid: 583 components: - - type: MetaData - flags: InContainer - type: Transform parent: 578 - type: Physics canCollide: False - uid: 589 components: - - type: MetaData - flags: InContainer - type: Transform parent: 584 - type: Physics canCollide: False - proto: SuitStorageAtmos entities: - - uid: 1563 + - uid: 403 components: - type: Transform - anchored: False - pos: -8.499999,-9.5 + pos: -7.5,-9.5 parent: 1 - - type: Physics - bodyType: Dynamic - proto: SuitStorageBasic entities: - uid: 1564 @@ -12019,10 +12499,10 @@ entities: parent: 1 - proto: SuitStorageCaptain entities: - - uid: 1565 + - uid: 1408 components: - type: Transform - pos: -4.5,25.5 + pos: 5.5,26.5 parent: 1 - proto: SuitStorageEngi entities: @@ -12036,17 +12516,15 @@ entities: bodyType: Dynamic - proto: SuitStorageEVA entities: - - uid: 1566 + - uid: 333 components: - type: Transform - pos: -7.5,19.5 + pos: -8.5,18.5 parent: 1 - - type: Lock - locked: False - - uid: 1567 + - uid: 1315 components: - type: Transform - pos: 8.5,19.5 + pos: 9.5,18.5 parent: 1 - proto: SuitStorageRD entities: @@ -12069,12 +12547,6 @@ entities: parent: 1 - proto: TableCounterWood entities: - - uid: 1011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,23.5 - parent: 1 - uid: 1571 components: - type: Transform @@ -12105,12 +12577,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,23.5 parent: 1 - - uid: 1576 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,23.5 - parent: 1 - uid: 1577 components: - type: Transform @@ -12123,35 +12589,19 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,23.5 parent: 1 - - uid: 1581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,19.5 - parent: 1 - - uid: 1582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,19.5 - parent: 1 - - uid: 1583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,19.5 - parent: 1 - - uid: 1584 + - uid: 1585 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,19.5 + pos: -2.5,19.5 parent: 1 - - uid: 1585 +- proto: TableFancyGreen + entities: + - uid: 1189 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,19.5 + pos: 5.5,22.5 parent: 1 - proto: TableGlass entities: @@ -12460,6 +12910,20 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,-11.5 parent: 1 +- proto: ToiletDirtyWater + entities: + - uid: 1178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,22.5 + parent: 1 + - uid: 1182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,21.5 + parent: 1 - proto: ToyFigurineBartender entities: - uid: 1968 @@ -12481,14 +12945,6 @@ entities: - type: Transform pos: 2.863923,13.512384 parent: 1 -- proto: trayScanner - entities: - - uid: 1975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.76573,-10.310551 - parent: 1 - proto: TromboneInstrument entities: - uid: 1634 @@ -12504,20 +12960,6 @@ entities: - type: Transform pos: 2.4507494,15.01433 parent: 1 -- proto: VendingBarDrobe - entities: - - uid: 1392 - components: - - type: Transform - pos: -8.5,21.5 - parent: 1 -- proto: VendingMachineAtmosDrobe - entities: - - uid: 1636 - components: - - type: Transform - pos: -10.5,-7.5 - parent: 1 - proto: VendingMachineBooze entities: - uid: 1637 @@ -12525,20 +12967,6 @@ entities: - type: Transform pos: -6.5,23.5 parent: 1 -- proto: VendingMachineCargoDrobe - entities: - - uid: 875 - components: - - type: Transform - pos: 9.5,-0.5 - parent: 1 -- proto: VendingMachineChefvend - entities: - - uid: 1638 - components: - - type: Transform - pos: 7.5,23.5 - parent: 1 - proto: VendingMachineCigs entities: - uid: 1639 @@ -12546,34 +12974,6 @@ entities: - type: Transform pos: 2.5,12.5 parent: 1 -- proto: VendingMachineCondiments - entities: - - uid: 1640 - components: - - type: Transform - pos: 6.5,19.5 - parent: 1 -- proto: VendingMachineDinnerware - entities: - - uid: 1641 - components: - - type: Transform - pos: 8.5,23.5 - parent: 1 -- proto: VendingMachineEngiDrobe - entities: - - uid: 1642 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 1 -- proto: VendingMachineEngivend - entities: - - uid: 1643 - components: - - type: Transform - pos: 10.5,-8.5 - parent: 1 - proto: VendingMachineJaniDrobe entities: - uid: 1143 @@ -12581,27 +12981,6 @@ entities: - type: Transform pos: 8.5,7.5 parent: 1 -- proto: VendingMachineSalvage - entities: - - uid: 1958 - components: - - type: Transform - pos: 7.5,3.5 - parent: 1 -- proto: VendingMachineSciDrobe - entities: - - uid: 571 - components: - - type: Transform - pos: -11.5,-2.5 - parent: 1 -- proto: VendingMachineSeeds - entities: - - uid: 892 - components: - - type: Transform - pos: 6.5,23.5 - parent: 1 - proto: VendingMachineTankDispenserEngineering entities: - uid: 1645 @@ -12611,10 +12990,10 @@ entities: parent: 1 - proto: VendingMachineTankDispenserEVA entities: - - uid: 877 + - uid: 670 components: - type: Transform - pos: 10.5,-0.5 + pos: 9.5,-0.5 parent: 1 - uid: 1646 components: @@ -12635,29 +13014,21 @@ entities: entities: - uid: 1649 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,2.5 parent: 1 - uid: 1650 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-1.5 parent: 1 - uid: 1651 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-1.5 parent: 1 - uid: 1652 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,2.5 parent: 1 @@ -12665,1319 +13036,981 @@ entities: entities: - uid: 330 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,1.5 parent: 1 - uid: 331 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-0.5 parent: 1 - uid: 337 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,1.5 parent: 1 - uid: 397 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-0.5 parent: 1 + - uid: 567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + - uid: 570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 - uid: 574 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,3.5 parent: 1 + - uid: 709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,22.5 + parent: 1 - uid: 865 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 7.5,20.5 parent: 1 - uid: 866 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,20.5 + pos: -6.5,20.5 + parent: 1 + - uid: 1310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,23.5 + parent: 1 + - uid: 1325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + - uid: 1327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,8.5 parent: 1 - uid: 1653 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-1.5 parent: 1 - uid: 1654 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-10.5 parent: 1 - uid: 1655 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-10.5 parent: 1 - uid: 1656 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -6.5,24.5 parent: 1 - uid: 1657 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 13.5,-1.5 parent: 1 - uid: 1658 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-1.5 parent: 1 - uid: 1659 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,-1.5 parent: 1 - uid: 1660 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,-1.5 parent: 1 - uid: 1661 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-2.5 parent: 1 - uid: 1662 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-2.5 parent: 1 - uid: 1663 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,-1.5 parent: 1 - uid: 1664 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-2.5 parent: 1 - uid: 1665 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-2.5 parent: 1 - uid: 1666 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,-2.5 parent: 1 - uid: 1667 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,-1.5 parent: 1 - uid: 1668 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-1.5 parent: 1 - uid: 1669 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,-1.5 parent: 1 - uid: 1670 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 14.5,-0.5 parent: 1 - uid: 1672 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 14.5,-1.5 parent: 1 - uid: 1673 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,23.5 parent: 1 - uid: 1674 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,11.5 parent: 1 - uid: 1675 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,19.5 parent: 1 - uid: 1676 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,19.5 parent: 1 - uid: 1677 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -10.5,5.5 parent: 1 - uid: 1678 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,19.5 parent: 1 - uid: 1680 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 11.5,5.5 parent: 1 - uid: 1681 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 10.5,6.5 parent: 1 - uid: 1682 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -13.5,-0.5 parent: 1 - uid: 1684 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,23.5 parent: 1 - uid: 1685 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,8.5 parent: 1 - uid: 1686 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,10.5 parent: 1 - uid: 1687 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,20.5 parent: 1 - uid: 1688 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-4.5 parent: 1 - uid: 1691 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 10.5,19.5 parent: 1 - uid: 1692 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,11.5 parent: 1 - uid: 1693 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 12.5,17.5 parent: 1 - uid: 1694 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,-12.5 parent: 1 - uid: 1695 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 9.5,7.5 parent: 1 - uid: 1696 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 12.5,-7.5 parent: 1 - uid: 1697 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,26.5 parent: 1 - uid: 1698 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -13.5,-1.5 parent: 1 - uid: 1699 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 8.5,20.5 parent: 1 - uid: 1700 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,8.5 parent: 1 - uid: 1701 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-3.5 parent: 1 - uid: 1702 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,-6.5 parent: 1 - uid: 1703 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,7.5 parent: 1 - uid: 1704 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 8.5,24.5 parent: 1 - uid: 1705 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -12.5,3.5 parent: 1 - uid: 1706 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,4.5 parent: 1 - uid: 1707 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,4.5 parent: 1 - uid: 1709 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-10.5 parent: 1 - uid: 1710 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-4.5 parent: 1 - uid: 1711 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-3.5 parent: 1 - uid: 1712 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-8.5 parent: 1 - uid: 1714 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,8.5 parent: 1 - uid: 1715 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,7.5 parent: 1 - uid: 1716 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,4.5 parent: 1 - uid: 1717 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,6.5 parent: 1 - uid: 1718 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,6.5 parent: 1 - uid: 1719 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,4.5 parent: 1 - uid: 1720 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-5.5 parent: 1 - uid: 1721 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,4.5 parent: 1 - uid: 1722 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,4.5 parent: 1 - uid: 1723 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,4.5 parent: 1 - uid: 1724 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,18.5 parent: 1 - uid: 1725 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,-6.5 parent: 1 - uid: 1726 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-9.5 parent: 1 - uid: 1727 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,4.5 parent: 1 - uid: 1728 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,20.5 parent: 1 - uid: 1729 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,4.5 parent: 1 - uid: 1730 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,7.5 parent: 1 - uid: 1731 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 10.5,-6.5 parent: 1 - uid: 1732 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 12.5,-6.5 parent: 1 - uid: 1733 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-6.5 parent: 1 - uid: 1734 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -7.5,8.5 parent: 1 - uid: 1735 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -11.5,13.5 parent: 1 - uid: 1737 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,-9.5 parent: 1 - uid: 1738 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,-10.5 parent: 1 - uid: 1739 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,11.5 parent: 1 - uid: 1740 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,19.5 parent: 1 - uid: 1741 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-10.5 parent: 1 - uid: 1742 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 11.5,-8.5 parent: 1 - uid: 1743 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 3.5,-12.5 parent: 1 - uid: 1744 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,-6.5 parent: 1 - uid: 1745 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 12.5,13.5 parent: 1 - uid: 1746 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,19.5 parent: 1 - uid: 1747 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 11.5,12.5 parent: 1 - uid: 1748 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,20.5 parent: 1 - uid: 1749 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -9.5,12.5 parent: 1 - uid: 1750 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -8.5,19.5 parent: 1 - uid: 1751 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -11.5,17.5 parent: 1 - uid: 1752 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -8.5,10.5 parent: 1 - uid: 1753 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 11.5,4.5 parent: 1 - uid: 1754 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,4.5 parent: 1 - uid: 1755 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,-6.5 parent: 1 - uid: 1756 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,12.5 parent: 1 - uid: 1758 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 7.5,-12.5 parent: 1 - uid: 1759 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,6.5 parent: 1 - uid: 1760 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-8.5 parent: 1 - uid: 1761 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-7.5 parent: 1 - uid: 1762 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-10.5 parent: 1 - uid: 1763 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-6.5 parent: 1 - uid: 1764 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,-6.5 parent: 1 - uid: 1767 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-12.5 parent: 1 - uid: 1768 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-9.5 parent: 1 - uid: 1769 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,-8.5 parent: 1 - uid: 1770 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,-6.5 parent: 1 - uid: 1771 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,18.5 parent: 1 - uid: 1772 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -8.5,11.5 parent: 1 - uid: 1773 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -10.5,17.5 parent: 1 - uid: 1774 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -9.5,11.5 parent: 1 - uid: 1775 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -10.5,12.5 parent: 1 - uid: 1776 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -10.5,13.5 parent: 1 - uid: 1777 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 10.5,20.5 parent: 1 - uid: 1778 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 11.5,18.5 parent: 1 - uid: 1779 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,11.5 parent: 1 - uid: 1780 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 7.5,25.5 parent: 1 - uid: 1781 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,18.5 parent: 1 - uid: 1782 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,19.5 parent: 1 - uid: 1783 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 11.5,17.5 parent: 1 - uid: 1784 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,24.5 parent: 1 - uid: 1785 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,25.5 parent: 1 - uid: 1786 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,2.5 parent: 1 - uid: 1787 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 12.5,4.5 parent: 1 - uid: 1788 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -13.5,1.5 parent: 1 - uid: 1789 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-6.5 parent: 1 - uid: 1790 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,-12.5 parent: 1 - uid: 1791 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,-12.5 parent: 1 - uid: 1792 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -7.5,10.5 parent: 1 - uid: 1793 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,10.5 parent: 1 - uid: 1794 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -7.5,20.5 parent: 1 - uid: 1795 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -5.5,24.5 parent: 1 - uid: 1796 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 6.5,24.5 parent: 1 - uid: 1797 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -4.5,24.5 parent: 1 - uid: 1798 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,24.5 parent: 1 - uid: 1799 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,24.5 parent: 1 - uid: 1800 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -1.5,24.5 parent: 1 - uid: 1801 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 2.5,24.5 parent: 1 - uid: 1802 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 3.5,24.5 parent: 1 - uid: 1803 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,24.5 parent: 1 - uid: 1804 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 5.5,24.5 parent: 1 - uid: 1805 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 11.5,13.5 parent: 1 - uid: 1806 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,25.5 parent: 1 - uid: 1807 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,25.5 parent: 1 - uid: 1808 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-9.5 parent: 1 - uid: 1809 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-6.5 parent: 1 - uid: 1810 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-5.5 parent: 1 - uid: 1811 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 6.5,26.5 parent: 1 - uid: 1812 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -4.5,9.5 parent: 1 - uid: 1813 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -5.5,8.5 parent: 1 - uid: 1814 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 1 - uid: 1815 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -2.5,9.5 parent: 1 - uid: 1816 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -1.5,9.5 parent: 1 - uid: 1817 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 2.5,9.5 parent: 1 - uid: 1818 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,9.5 parent: 1 - uid: 1819 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,9.5 parent: 1 - uid: 1820 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 6.5,8.5 parent: 1 - uid: 1821 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 5.5,9.5 parent: 1 - uid: 1822 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 2.5,8.5 parent: 1 - uid: 1823 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -1.5,8.5 parent: 1 - - uid: 1824 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,8.5 - parent: 1 - - uid: 1825 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,8.5 - parent: 1 - - uid: 1826 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -3.5,7.5 - parent: 1 - uid: 1827 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,7.5 parent: 1 - uid: 1828 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,7.5 parent: 1 - - uid: 1829 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: 4.5,7.5 - parent: 1 - uid: 1830 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,7.5 parent: 1 - uid: 1831 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,7.5 parent: 1 - uid: 1834 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,24.5 parent: 1 @@ -14190,6 +14223,42 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,9.5 parent: 1 +- proto: WarningN2 + entities: + - uid: 1368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 1 + - uid: 1942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-8.5 + parent: 1 +- proto: WarningO2 + entities: + - uid: 1370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 1 + - uid: 1943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 1 +- proto: WarningWaste + entities: + - uid: 1944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 1 - proto: WarpPointShip entities: - uid: 1871 @@ -14197,20 +14266,19 @@ entities: - type: Transform pos: 0.5,6.5 parent: 1 -- proto: WaterTankFull +- proto: WaterCooler entities: - - uid: 878 + - uid: 571 components: - type: Transform - pos: -6.5,3.5 + pos: -8.5,21.5 parent: 1 -- proto: WelderIndustrial +- proto: WaterTankFull entities: - - uid: 1903 + - uid: 878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.421382,-9.297962 + pos: -6.5,3.5 parent: 1 - proto: Windoor entities: @@ -14234,6 +14302,26 @@ entities: - type: Transform pos: 5.5,7.5 parent: 1 +- proto: WindoorSecure + entities: + - uid: 568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1 + - uid: 646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,22.5 + parent: 1 + - uid: 1320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,21.5 + parent: 1 - proto: WindowDirectional entities: - uid: 1876 @@ -14306,12 +14394,12 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,13.5 parent: 1 -- proto: Wrench +- proto: WindowReinforcedDirectional entities: - - uid: 1902 + - uid: 1217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.577632,-8.524525 + rot: 3.141592653589793 rad + pos: 9.5,21.5 parent: 1 ... diff --git a/Resources/Prototypes/_NF/Guidebook/shipyard.yml b/Resources/Prototypes/_NF/Guidebook/shipyard.yml index 39632226d6d..24f913b2d67 100644 --- a/Resources/Prototypes/_NF/Guidebook/shipyard.yml +++ b/Resources/Prototypes/_NF/Guidebook/shipyard.yml @@ -18,6 +18,7 @@ - ShipyardComet - ShipyardConstruct - ShipyardGarden + - ShipyardGourd - ShipyardGasbender - ShipyardHammer - ShipyardHarbormaster @@ -104,6 +105,11 @@ name: guide-entry-shipyard-gasbender text: "/ServerInfo/_NF/Guidebook/Shipyard/Gasbender.xml" +- type: guideEntry + id: ShipyardGourd + name: guide-entry-shipyard-gourd + text: "/ServerInfo/_NF/Guidebook/Shipyard/Gourd.xml" + - type: guideEntry id: ShipyardHarbormaster name: guide-entry-shipyard-harbormaster diff --git a/Resources/Prototypes/_NF/Shipyard/Expedition/gourd.yml b/Resources/Prototypes/_NF/Shipyard/Expedition/gourd.yml index eb242a1d249..57b102a2b45 100644 --- a/Resources/Prototypes/_NF/Shipyard/Expedition/gourd.yml +++ b/Resources/Prototypes/_NF/Shipyard/Expedition/gourd.yml @@ -1,8 +1,18 @@ +# Author Info +# GitHub: YumiGumi (https://github.com/YumiGumi) +# Discord: ??? + +# Maintainer Info +# GitHub: ??? +# Discord: ??? + +# Shuttle Notes: +# - type: vessel id: Gourd name: SLI Gourd - description: The Gourd is a Science/Salvo-Expo vessel with a dedicated blast chamber, and a proper bar/grill. - price: 225000 + description: The Gourd is a Science/Expedition vessel with a dedicated blast chamber. + price: 135000 # ~115000$ on mapinit + ~17000$ from 15% markup category: Large group: Expedition shuttlePath: /Maps/_NF/Shuttles/Expedition/gourd.yml @@ -25,4 +35,4 @@ availableJobs: Contractor: [ 0, 0 ] Pilot: [ 0, 0 ] - Mercenary: [ 0, 0 ] \ No newline at end of file + Mercenary: [ 0, 0 ] diff --git a/Resources/ServerInfo/_NF/Guidebook/Shipyard/Gourd.xml b/Resources/ServerInfo/_NF/Guidebook/Shipyard/Gourd.xml new file mode 100644 index 00000000000..048d0310d17 --- /dev/null +++ b/Resources/ServerInfo/_NF/Guidebook/Shipyard/Gourd.xml @@ -0,0 +1,91 @@ + + # GOURD-CLASS ENGINEERING SHUTTLE + + + + + + + + + + + + + + [color=#a4885c]Ship Size:[/color] Medium + + [color=#a4885c]Recommended Crew:[/color] 5-8 + + [color=#a4885c]Power Gen Type:[/color] AME + + [color=#a4885c]Expeditions:[/color] Yes + + [color=#a4885c]IFF Console:[/color] None + + "The Gourd is a Science/Expedition vessel with a dedicated blast chamber." + + # PREFLIGHT CHECKLIST + + ## 1. Power supply + + ## 1.1. Battery units + + + + + + + - Check that the SMES unit is anchored to the floor. + - Check that the substation unit is anchored to the floor. + - Check that the APC unit's Main Breaker is toggled on. + - Check the APC unit's current Load* (W). + + ## 1.2. AME generator unit. + + + + + + - Check that the AME core is properly shielded. + - Check that the AME controller unit is anchored to the floor. + - Check the AME controller unit Fuel Status. + - Check the AME controller unit Injection Amount. + - Enable Injection. + + ## 2. Atmospherics + + ## 2.1. Distribution Loop + + + + + + + + + - Check that the O2 canister is anchored to connector port. + - Check that the N2 canister is anchored to connector port. + - Check that the gas mixer is set to the correct mixing ratio (21% Oxygen, 79% Nitrogen). + - Check that the gas mixer is set to 101kPa. + - Ensure that the gas mixer is enabled. + + ## 2.2. Waste Loop + + + + + - Ensure that the waste loop pump is enabled. + + ## 3. Other checks + + + + + + + - Check that the gyroscope is anchored, powered, and enabled. + - Check that the mini gravity generator is anchored, powered, and enabled. + - Check that the blast doors are closed. + + From f23985c6bb004671b99023576be2bb7804f18eba Mon Sep 17 00:00:00 2001 From: FrontierATC Date: Mon, 15 Jul 2024 00:01:18 +0000 Subject: [PATCH 04/12] Automatic Changelog (#1676) --- Resources/Changelog/Changelog.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index eda718e7e4a..c6d42829495 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -5673,3 +5673,9 @@ Entries: goblins. id: 5117 time: '2024-07-14T23:42:59.0000000+00:00' +- author: ErhardSteinhauer + changes: + - type: Tweak + message: 'Updated SLI Gourd: gutted kitchen, bar, salvage, added guidebook entry.' + id: 5118 + time: '2024-07-15T00:00:53.0000000+00:00' From fb7a6c8d9586ec06c6edf8d43875167a752f30d8 Mon Sep 17 00:00:00 2001 From: Dvir <39403717+dvir001@users.noreply.github.com> Date: Mon, 15 Jul 2024 03:02:07 +0300 Subject: [PATCH 05/12] Remove Some Ships (Waiting For Reworks) (#1677) * Yeet * Update computers_shipyard_mothership.yml --- .../_NF/Shuttles/Expedition/decadedove.yml | 252 ++++--- .../_NF/Shuttles/Expedition/pathfinder.yml | 652 +++++------------- Resources/Maps/_NF/Shuttles/loader.yml | 302 +++----- .../computers_shipyard_mothership.yml | 7 +- .../_NF/Shipyard/Expedition/anchor.yml | 54 +- .../_NF/Shipyard/Expedition/courserx.yml | 54 +- .../_NF/Shipyard/Expedition/rosebudmkii.yml | 54 +- Resources/Prototypes/_NF/Shipyard/condor.yml | 54 +- Resources/Prototypes/_NF/Shipyard/esquire.yml | 54 +- .../Prototypes/_NF/Shipyard/knuckleverse.yml | 54 +- .../Prototypes/_NF/Shipyard/metastable.yml | 54 +- Resources/Prototypes/_NF/Shipyard/mission.yml | 54 +- Resources/Prototypes/_NF/Shipyard/pulse.yml | 54 +- .../Prototypes/_NF/Shipyard/rosebudmki.yml | 54 +- Resources/Prototypes/_NF/Shipyard/stratos.yml | 54 +- .../Prototypes/_NF/Shipyard/waveshot.yml | 54 +- 16 files changed, 768 insertions(+), 1093 deletions(-) diff --git a/Resources/Maps/_NF/Shuttles/Expedition/decadedove.yml b/Resources/Maps/_NF/Shuttles/Expedition/decadedove.yml index b06f786e0ec..86d089ff5c7 100644 --- a/Resources/Maps/_NF/Shuttles/Expedition/decadedove.yml +++ b/Resources/Maps/_NF/Shuttles/Expedition/decadedove.yml @@ -920,11 +920,6 @@ entities: - type: DeviceNetwork deviceLists: - 804 - - uid: 107 - components: - - type: Transform - pos: -3.5,4.5 - parent: 1 - proto: AmeController entities: - uid: 822 @@ -1433,11 +1428,10 @@ entities: bodyType: Static - proto: BorgCharger entities: - - uid: 719 + - uid: 101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-3.5 + pos: 5.5,-4.5 parent: 1 - proto: BoxLighttube entities: @@ -2613,6 +2607,20 @@ entities: - type: Transform pos: -2.5,-0.5 parent: 1 +- proto: CrateFreezer + entities: + - uid: 693 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 +- proto: CratePrivateSecure + entities: + - uid: 241 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 - proto: CyborgEndoskeleton entities: - uid: 282 @@ -2636,6 +2644,115 @@ entities: - type: Transform pos: 4.456059,0.65753937 parent: 1 +- proto: DisposalBend + entities: + - uid: 715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - uid: 956 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 +- proto: DisposalPipe + entities: + - uid: 138 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 780 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 1 + - uid: 843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + - uid: 951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + - uid: 952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 1 + - uid: 953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + - uid: 955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 - proto: DrinkAleGlass entities: - uid: 868 @@ -2655,7 +2772,7 @@ entities: - uid: 338 components: - type: Transform - pos: 1.4947319,7.552256 + pos: 2.3059227,7.6452827 parent: 1 - proto: DrinkGinGlass entities: @@ -4546,9 +4663,9 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,10.5 parent: 1 -- proto: GunSafeShuttleT1Spawner +- proto: GunSafeShuttleCaptain entities: - - uid: 293 + - uid: 107 components: - type: Transform pos: 8.5,-0.5 @@ -4561,21 +4678,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,6.5 parent: 1 -- proto: HandheldGPSBasic - entities: - - uid: 752 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.546164,-5.340608 - parent: 1 -- proto: JetpackMiniFilled - entities: - - uid: 780 - components: - - type: Transform - pos: 3.5224488,-5.521045 - parent: 1 - proto: LockerBoozeFilled entities: - uid: 87 @@ -4628,22 +4730,29 @@ entities: - 0 - proto: LockerEngineerFilled entities: - - uid: 799 + - uid: 238 components: - type: Transform pos: -5.5,4.5 parent: 1 - proto: LockerSalvageSpecialistFilled entities: + - uid: 60 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 - uid: 211 components: - type: Transform pos: -4.5,4.5 parent: 1 - - uid: 715 +- proto: LockerWallMedicalDoctorFilled + entities: + - uid: 686 components: - type: Transform - pos: -3.5,4.5 + pos: 6.5,4.5 parent: 1 - proto: MaterialReclaimer entities: @@ -4743,13 +4852,6 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-1.5 parent: 1 -- proto: PersonalAI - entities: - - uid: 843 - components: - - type: Transform - pos: 5.4177475,0.5472 - parent: 1 - proto: PinpointerUniversal entities: - uid: 196 @@ -4928,19 +5030,6 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-4.5 parent: 1 -- proto: PottedPlant27 - entities: - - uid: 238 - components: - - type: Transform - pos: 5.5,-3.5 - parent: 1 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 241 - proto: PottedPlantRandomPlastic entities: - uid: 139 @@ -4953,6 +5042,11 @@ entities: - type: Transform pos: 13.5,3.5 parent: 1 + - uid: 752 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 - proto: PowerCellRecharger entities: - uid: 642 @@ -5788,10 +5882,10 @@ entities: parent: 1 - proto: SuitStorageEngi entities: - - uid: 693 + - uid: 764 components: - type: Transform - pos: 6.5,-5.5 + pos: 5.5,-5.5 parent: 1 - proto: SuitStorageSalv entities: @@ -5841,13 +5935,6 @@ entities: - type: Transform pos: -5.5,-4.5 parent: 1 -- proto: TableCounterWood - entities: - - uid: 60 - components: - - type: Transform - pos: -0.5,7.5 - parent: 1 - proto: TableReinforced entities: - uid: 176 @@ -6013,12 +6100,6 @@ entities: parent: 1 - proto: ToyAmongPequeno entities: - - uid: 241 - components: - - type: Transform - parent: 238 - - type: Physics - canCollide: False - uid: 534 components: - type: Transform @@ -6108,13 +6189,6 @@ entities: - Left: Forward - Right: Reverse - Middle: Off -- proto: VendingMachineCargoDrobe - entities: - - uid: 720 - components: - - type: Transform - pos: -6.5,4.5 - parent: 1 - proto: VendingMachineCigs entities: - uid: 649 @@ -6122,27 +6196,6 @@ entities: - type: Transform pos: 4.5,3.5 parent: 1 -- proto: VendingMachineEngiDrobe - entities: - - uid: 764 - components: - - type: Transform - pos: -6.5,-2.5 - parent: 1 -- proto: VendingMachineEngivend - entities: - - uid: 496 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 1 -- proto: VendingMachineSalvage - entities: - - uid: 101 - components: - - type: Transform - pos: -2.5,-4.5 - parent: 1 - proto: VendingMachineTankDispenserEVA entities: - uid: 145 @@ -6150,13 +6203,6 @@ entities: - type: Transform pos: -2.5,-3.5 parent: 1 -- proto: VendingMachineYouTool - entities: - - uid: 686 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 1 - proto: WallShuttle entities: - uid: 4 @@ -6838,10 +6884,10 @@ entities: - type: Transform pos: 11.5,1.5 parent: 1 - - uid: 809 + - uid: 496 components: - type: Transform - pos: -0.5,7.5 + pos: 1.5,7.5 parent: 1 - proto: WeaponGrapplingGun entities: @@ -6866,10 +6912,10 @@ entities: parent: 1 - proto: WeldingFuelTankFull entities: - - uid: 138 + - uid: 720 components: - type: Transform - pos: 5.5,-4.5 + pos: 7.5,-5.5 parent: 1 - proto: Windoor entities: diff --git a/Resources/Maps/_NF/Shuttles/Expedition/pathfinder.yml b/Resources/Maps/_NF/Shuttles/Expedition/pathfinder.yml index cc90682e4a7..43a63cba745 100644 --- a/Resources/Maps/_NF/Shuttles/Expedition/pathfinder.yml +++ b/Resources/Maps/_NF/Shuttles/Expedition/pathfinder.yml @@ -222,60 +222,53 @@ entities: data: tiles: 0,0: - 0: 32767 + 0: 1774 1: 32768 - 0,1: - 0: 1 + -1,0: + 0: 3311 0,-1: - 0: 65535 + 0: 61154 1,0: - 0: 19 + 0: 1 1: 292 + 1,-1: + 0: 4564 + 1: 32768 0,-3: - 0: 65392 + 0: 45872 + -1,-3: + 0: 43136 0,-2: - 0: 65535 - 1,-3: - 0: 62208 + 0: 61183 + -1,-2: + 0: 59903 + -1,-1: + 0: 63726 1,-2: - 0: 65535 - 1,-1: - 0: 32767 - 1: 32768 + 0: 30711 2,-3: 1: 45056 - 0: 16384 2,-2: - 0: 65535 + 0: 30576 2,-1: - 0: 319 + 0: 16 1: 4672 -2,0: 1: 132 - 0: 8 - -1,0: - 0: 61439 -3,-3: 1: 57344 -3,-2: - 0: 61166 + 0: 52416 -3,-1: - 0: 142 1: 2112 + 0: 8 -2,-3: 1: 4096 - 0: 59392 -2,-2: - 0: 65535 + 0: 65534 -2,-1: - 0: 53247 + 0: 1279 1: 12288 - -1,-3: - 0: 65472 - -1,-2: - 0: 65535 - -1,-1: - 0: 65535 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -293,7 +286,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -334,8 +327,6 @@ entities: - 104 - 273 - 151 - - type: AtmosDevice - joinedGrid: 1 - proto: Airlock entities: - uid: 2 @@ -376,6 +367,11 @@ entities: - type: Transform pos: 1.5,-8.5 parent: 1 + - uid: 187 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 - proto: AirlockGlassShuttle entities: - uid: 8 @@ -383,11 +379,16 @@ entities: - type: Transform pos: -0.5,-10.5 parent: 1 - - uid: 9 + - uid: 193 components: - type: Transform pos: 1.5,-10.5 parent: 1 + - uid: 226 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 - proto: AmeController entities: - uid: 10 @@ -403,6 +404,10 @@ entities: showEnts: False occludes: True ent: 11 + fuelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 118 - proto: AmeJar entities: - uid: 11 @@ -418,6 +423,19 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 118 + components: + - type: Transform + parent: 10 + - type: Physics + canCollide: False + - uid: 155 + components: + - type: Transform + parent: 12 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: AmeShielding entities: - uid: 14 @@ -482,6 +500,12 @@ entities: parent: 1 - proto: AtmosDeviceFanTiny entities: + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 1 - uid: 25 components: - type: Transform @@ -664,6 +688,19 @@ entities: - type: DeviceLinkSink links: - 225 +- proto: ButtonFrameGrey + entities: + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1 - proto: CableApcExtension entities: - uid: 41 @@ -1085,25 +1122,11 @@ entities: parent: 1 - proto: CargoPallet entities: - - uid: 155 - components: - - type: Transform - pos: -4.5,-2.5 - parent: 1 - - uid: 156 - components: - - type: Transform - pos: -5.5,-2.5 - parent: 1 - - uid: 157 - components: - - type: Transform - pos: -6.5,-2.5 - parent: 1 - uid: 158 components: - type: Transform - pos: -7.5,-2.5 + rot: 1.5707963267948966 rad + pos: -5.5,-1.5 parent: 1 - proto: CarpetBlack entities: @@ -1195,6 +1218,24 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-1.5 parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - type: ContainerContainer containers: entity_storage: !type:Container @@ -1202,6 +1243,7 @@ entities: occludes: True ents: - 13 + - 155 - proto: ComputerBroken entities: - uid: 173 @@ -1268,92 +1310,44 @@ entities: - type: Transform pos: 5.5,-3.5 parent: 1 -- proto: DrinkBeerBottleFull +- proto: DisposalBend entities: - - uid: 183 - components: - - type: Transform - parent: 182 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 184 components: - type: Transform - parent: 182 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 +- proto: DisposalPipe + entities: - uid: 185 components: - type: Transform - parent: 182 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 186 - components: - - type: Transform - parent: 182 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 187 - components: - - type: Transform - parent: 182 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 188 - components: - - type: Transform - parent: 182 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 - uid: 189 components: - type: Transform - parent: 182 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 190 - components: - - type: Transform - parent: 182 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 191 - components: - - type: Transform - parent: 182 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 192 - components: - - type: Transform - parent: 182 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 193 + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 +- proto: DisposalPipeBroken + entities: + - uid: 186 components: - type: Transform - parent: 182 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 194 + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 188 components: - type: Transform - parent: 182 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 - proto: DrinkMugMetal entities: - uid: 195 @@ -1368,13 +1362,24 @@ entities: parent: 1 - proto: DrinkWaterBottleFull entities: + - uid: 194 + components: + - type: Transform + pos: 9.952822,-6.318645 + parent: 1 - uid: 287 components: - type: Transform - pos: 10.148466,-6.316889 + pos: 10.208268,-6.318645 parent: 1 - proto: EmergencyLight entities: + - uid: 183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 - uid: 262 components: - type: Transform @@ -1503,7 +1508,7 @@ entities: fixtures: {} - proto: GasMixerFlipped entities: - - uid: 200 + - uid: 182 components: - type: Transform rot: 3.141592653589793 rad @@ -1512,10 +1517,8 @@ entities: - type: GasMixer inletTwoConcentration: 0.79 inletOneConcentration: 0.21 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - proto: GasPassiveVent entities: - uid: 201 @@ -1524,8 +1527,6 @@ entities: rot: 3.141592653589793 rad pos: -9.5,-8.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GasPipeBend @@ -1560,13 +1561,15 @@ entities: pos: -4.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 203 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,1.5 parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 206 components: - type: Transform @@ -1583,7 +1586,7 @@ entities: pos: 1.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - proto: GasPipeStraight entities: - uid: 119 @@ -1720,7 +1723,7 @@ entities: pos: 1.5,-0.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 170 components: - type: Transform @@ -1736,7 +1739,7 @@ entities: pos: -1.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 181 components: - type: Transform @@ -1744,7 +1747,7 @@ entities: pos: 0.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 199 components: - type: Transform @@ -1752,7 +1755,7 @@ entities: pos: -2.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 202 components: - type: Transform @@ -1760,7 +1763,7 @@ entities: pos: -3.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 207 components: - type: Transform @@ -1768,7 +1771,7 @@ entities: pos: -0.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 209 components: - type: Transform @@ -1776,7 +1779,7 @@ entities: pos: 2.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 210 components: - type: Transform @@ -1784,7 +1787,7 @@ entities: pos: 0.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 211 components: - type: Transform @@ -1792,14 +1795,14 @@ entities: pos: 0.5,-2.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 212 components: - type: Transform pos: 1.5,-1.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 213 components: - type: Transform @@ -1807,7 +1810,7 @@ entities: pos: 1.5,-4.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 214 components: - type: Transform @@ -1815,7 +1818,7 @@ entities: pos: 1.5,-5.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 216 components: - type: Transform @@ -1823,7 +1826,7 @@ entities: pos: 4.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 217 components: - type: Transform @@ -1831,7 +1834,7 @@ entities: pos: 5.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 218 components: - type: Transform @@ -1839,7 +1842,7 @@ entities: pos: 6.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 219 components: - type: Transform @@ -1847,7 +1850,7 @@ entities: pos: 7.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 220 components: - type: Transform @@ -1855,7 +1858,7 @@ entities: pos: 8.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 221 components: - type: Transform @@ -1863,7 +1866,7 @@ entities: pos: 9.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 224 components: - type: Transform @@ -1923,7 +1926,7 @@ entities: pos: 1.5,-3.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - proto: GasPipeTJunction entities: - uid: 120 @@ -1941,7 +1944,7 @@ entities: pos: 3.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 127 components: - type: Transform @@ -1981,7 +1984,7 @@ entities: pos: 1.5,0.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 261 components: - type: Transform @@ -1989,7 +1992,7 @@ entities: pos: 1.5,-6.5 parent: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 267 components: - type: Transform @@ -2005,15 +2008,15 @@ entities: - type: Transform pos: 2.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 269 components: - type: Transform pos: 1.5,2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPressurePump entities: - uid: 123 @@ -2022,8 +2025,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,-6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GasVentPump @@ -2033,59 +2034,47 @@ entities: - type: Transform pos: 3.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 151 components: - type: Transform pos: -4.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 204 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 271 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 272 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - uid: 273 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,-6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor - color: '#0000CCFF' + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 126 @@ -2093,8 +2082,6 @@ entities: - type: Transform pos: -0.5,1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 150 @@ -2102,8 +2089,6 @@ entities: - type: Transform pos: 4.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 153 @@ -2111,8 +2096,6 @@ entities: - type: Transform pos: -6.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 205 @@ -2121,8 +2104,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 276 @@ -2130,8 +2111,6 @@ entities: - type: Transform pos: 6.5,-2.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 278 @@ -2140,8 +2119,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 279 @@ -2150,8 +2127,6 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-1.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GravityGeneratorMini @@ -2244,24 +2219,12 @@ entities: - type: Transform pos: -3.5,2.5 parent: 1 - - uid: 493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-8.5 - parent: 1 - uid: 494 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-9.5 parent: 1 - - uid: 496 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-10.5 - parent: 1 - uid: 499 components: - type: Transform @@ -2315,53 +2278,6 @@ entities: - type: Transform pos: -3.5,1.5 parent: 1 -- proto: LockerBooze - entities: - - uid: 182 - components: - - type: Transform - pos: -5.5,-1.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 194 - - 193 - - 192 - - 183 - - 184 - - 185 - - 186 - - 187 - - 188 - - 189 - - 190 - - 191 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerFreezer entities: - uid: 288 @@ -2393,8 +2309,6 @@ entities: parent: 1 - type: Physics bodyType: Static - - type: AtmosDevice - joinedGrid: 1 - proto: OxygenCanister entities: - uid: 290 @@ -2405,8 +2319,6 @@ entities: parent: 1 - type: Physics bodyType: Static - - type: AtmosDevice - joinedGrid: 1 - proto: PaperBin5 entities: - uid: 291 @@ -2455,9 +2367,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-3.5 parent: 1 - - type: DeviceLinkSink - links: - - 522 - uid: 301 components: - type: Transform @@ -2476,10 +2385,11 @@ entities: rot: 3.141592653589793 rad pos: -1.5,-0.5 parent: 1 - - uid: 306 + - uid: 324 components: - type: Transform - pos: 0.5,-9.5 + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 parent: 1 - proto: Railing entities: @@ -2527,164 +2437,6 @@ entities: - type: Transform pos: 0.5,-3.5 parent: 1 -- proto: RandomSpawner - entities: - - uid: 324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-5.5 - parent: 1 - - uid: 325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-4.5 - parent: 1 - - uid: 326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-6.5 - parent: 1 - - uid: 327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-7.5 - parent: 1 - - uid: 328 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-6.5 - parent: 1 - - uid: 329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-5.5 - parent: 1 - - uid: 330 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-7.5 - parent: 1 - - uid: 331 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-3.5 - parent: 1 - - uid: 332 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-5.5 - parent: 1 - - uid: 333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-6.5 - parent: 1 - - uid: 334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-6.5 - parent: 1 - - uid: 335 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-5.5 - parent: 1 - - uid: 336 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,0.5 - parent: 1 - - uid: 337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,0.5 - parent: 1 - - uid: 338 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 1 - - uid: 339 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-4.5 - parent: 1 - - uid: 340 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-3.5 - parent: 1 - - uid: 341 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-2.5 - parent: 1 - - uid: 342 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-9.5 - parent: 1 - - uid: 343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-6.5 - parent: 1 - - uid: 344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-6.5 - parent: 1 - - uid: 345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-1.5 - parent: 1 - - uid: 346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,0.5 - parent: 1 - - uid: 347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,1.5 - parent: 1 - - uid: 348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-2.5 - parent: 1 - - uid: 349 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-2.5 - parent: 1 - proto: ReinforcedWindow entities: - uid: 281 @@ -2719,12 +2471,6 @@ entities: - type: Transform pos: -4.5,-8.5 parent: 1 - - uid: 419 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-8.5 - parent: 1 - uid: 421 components: - type: Transform @@ -2778,12 +2524,6 @@ entities: - type: Transform pos: 2.5,3.5 parent: 1 - - uid: 495 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-10.5 - parent: 1 - uid: 497 components: - type: Transform @@ -2805,22 +2545,19 @@ entities: parent: 1 - type: DeviceLinkSink links: - - 522 -- proto: SignalButton + - 156 +- proto: SignalButtonDirectional entities: - - uid: 522 + - uid: 156 components: - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,-2.5 parent: 1 - type: DeviceLinkSource linkedPorts: 520: - Pressed: Toggle - 293: - - Pressed: Toggle -- proto: SignalButtonDirectional - entities: - uid: 225 components: - type: Transform @@ -2841,9 +2578,9 @@ entities: - type: Transform pos: -1.5,-1.5 parent: 1 -- proto: Sink +- proto: SinkEmpty entities: - - uid: 355 + - uid: 192 components: - type: Transform pos: 7.5,-2.5 @@ -2867,20 +2604,6 @@ entities: - type: Transform pos: -2.5,-2.5 parent: 1 -- proto: SpawnPointPilot - entities: - - uid: 118 - components: - - type: Transform - pos: -1.5,1.5 - parent: 1 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 359 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 1 - proto: SubstationWallBasic entities: - uid: 360 @@ -2890,7 +2613,7 @@ entities: parent: 1 - proto: SuitStorageEVAAlternate entities: - - uid: 226 + - uid: 200 components: - type: Transform pos: 3.5,-8.5 @@ -3020,10 +2743,10 @@ entities: parent: 1 - proto: VendingMachineTankDispenserEVA entities: - - uid: 378 + - uid: 190 components: - type: Transform - pos: 0.5,-9.5 + pos: -8.5,-3.5 parent: 1 - proto: WallReinforced entities: @@ -3037,6 +2760,12 @@ entities: - type: Transform pos: 5.5,-0.5 parent: 1 + - uid: 306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 - uid: 380 components: - type: Transform @@ -3104,12 +2833,6 @@ entities: - type: Transform pos: 4.5,-9.5 parent: 1 - - uid: 401 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 1 - uid: 402 components: - type: Transform @@ -3494,11 +3217,4 @@ entities: - type: Transform pos: 6.5,-3.5 parent: 1 -- proto: WindowFrostedDirectional - entities: - - uid: 488 - components: - - type: Transform - pos: -9.5,-8.5 - parent: 1 ... diff --git a/Resources/Maps/_NF/Shuttles/loader.yml b/Resources/Maps/_NF/Shuttles/loader.yml index 52ba95c342f..3b7ce69b5e7 100644 --- a/Resources/Maps/_NF/Shuttles/loader.yml +++ b/Resources/Maps/_NF/Shuttles/loader.yml @@ -183,32 +183,28 @@ entities: tiles: 0,0: 0: 65535 - 1,0: - 0: 4369 -1,0: - 0: 65535 + 0: 61423 0,1: - 0: 14207 + 0: 818 1: 16512 - 1,1: - 1: 17 -1,1: + 0: 2176 1: 16433 - 0: 36046 + 0,-1: + 0: 12014 + 1,1: + 1: 17 + -1,-1: + 0: 58094 -1,-2: 1: 4864 - 0: 60416 - -1,-1: - 0: 65535 + 0: 49152 0,-2: - 0: 63232 + 0: 24576 1: 2048 - 0,-1: - 0: 65535 1,-2: 1: 4352 - 1,-1: - 0: 4369 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -226,7 +222,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -261,26 +257,10 @@ entities: - 122 - 215 - 163 - - type: AtmosDevice - joinedGrid: 1 -- proto: AirCanister - entities: - - uid: 173 - components: - - type: Transform - anchored: True - pos: -0.5,-0.5 - parent: 1 - - type: Physics - bodyType: Static - - type: AtmosDevice - joinedGrid: 1 - proto: Airlock entities: - uid: 138 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,-0.5 @@ -289,8 +269,6 @@ entities: entities: - uid: 139 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -2.5,-1.5 @@ -299,8 +277,6 @@ entities: entities: - uid: 137 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 1.5,4.5 @@ -423,8 +399,6 @@ entities: entities: - uid: 219 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -3.5,3.5 @@ -756,13 +730,24 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-4.5 parent: 1 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 222 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: ClosetWallEmergencyFilledRandom entities: - uid: 106 @@ -875,8 +860,6 @@ entities: - 190 - 189 - 191 - - type: AtmosDevice - joinedGrid: 1 - proto: FirelockGlass entities: - uid: 74 @@ -909,6 +892,19 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-0.5 parent: 1 +- proto: GasMixerOnFlipped + entities: + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: GasMixer + inletTwoConcentration: 0.20999998 + inletOneConcentration: 0.79 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPassiveVent entities: - uid: 147 @@ -917,8 +913,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GasPipeBend @@ -939,6 +933,13 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 186 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 225 components: - type: Transform @@ -978,6 +979,14 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 146 components: - type: Transform @@ -1095,14 +1104,6 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 170 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 171 components: - type: Transform @@ -1176,6 +1177,14 @@ entities: color: '#990000FF' - proto: GasPipeTJunction entities: + - uid: 113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 129 components: - type: Transform @@ -1215,46 +1224,32 @@ entities: parent: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 172 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - proto: GasPort entities: - - uid: 140 + - uid: 97 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: -0.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasPressurePump - entities: - uid: 141 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: -1.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 144 +- proto: GasPressurePumpOnMax + entities: + - uid: 170 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GasVentPump @@ -1268,8 +1263,6 @@ entities: - type: DeviceNetwork deviceLists: - 253 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 163 @@ -1280,8 +1273,6 @@ entities: - type: DeviceNetwork deviceLists: - 253 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 215 @@ -1293,8 +1284,6 @@ entities: - type: DeviceNetwork deviceLists: - 253 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - uid: 234 @@ -1306,8 +1295,6 @@ entities: - type: DeviceNetwork deviceLists: - 253 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentScrubber @@ -1320,8 +1307,6 @@ entities: - type: DeviceNetwork deviceLists: - 253 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 159 @@ -1333,8 +1318,6 @@ entities: - type: DeviceNetwork deviceLists: - 253 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 161 @@ -1346,8 +1329,6 @@ entities: - type: DeviceNetwork deviceLists: - 253 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - uid: 228 @@ -1359,8 +1340,6 @@ entities: - type: DeviceNetwork deviceLists: - 253 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#990000FF' - proto: GravityGeneratorMini @@ -1463,6 +1442,26 @@ entities: - type: Transform pos: -0.5,5.5 parent: 1 +- proto: NitrogenCanister + entities: + - uid: 222 + components: + - type: Transform + anchored: True + pos: -0.5,-0.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: OxygenCanister + entities: + - uid: 254 + components: + - type: Transform + anchored: True + pos: -1.5,-0.5 + parent: 1 + - type: Physics + bodyType: Static - proto: PaperBin10 entities: - uid: 224 @@ -1484,41 +1483,32 @@ entities: - type: Transform pos: -3.5,3.5 parent: 1 -- proto: PortableGeneratorPacman +- proto: PortableGeneratorPacmanShuttle entities: - - uid: 177 + - uid: 172 components: - type: Transform - anchored: True pos: -1.5,-2.5 parent: 1 - - type: MaterialStorage - storage: - Plasma: 3000 + - type: FuelGenerator + on: False - type: Physics bodyType: Static - - type: InsertingMaterialStorage - proto: Poweredlight entities: - uid: 126 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -2.5,1.5 parent: 1 - uid: 136 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,3.5 parent: 1 - uid: 187 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-2.5 @@ -1537,29 +1527,14 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-2.5 parent: 1 -- proto: RandomSnacks +- proto: SheetPlasma entities: - - uid: 186 + - uid: 177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 + rot: 3.141592653589793 rad + pos: -1.4592319,-2.5398252 parent: 1 -- proto: SheetPlasma1 - entities: - - uid: 222 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 221 - - type: Stack - count: 15 - - type: Item - size: 15 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ShuttleWindow entities: - uid: 15 @@ -1672,13 +1647,6 @@ entities: - type: Transform pos: -0.5,-4.5 parent: 1 -- proto: SpawnPointCargoTechnician - entities: - - uid: 97 - components: - - type: Transform - pos: 1.5,0.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 96 @@ -1785,208 +1753,145 @@ entities: - Left: Forward - Right: Reverse - Middle: Off -- proto: VendingMachineSovietSoda - entities: - - uid: 113 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 1 - proto: WallShuttle entities: - uid: 3 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,4.5 parent: 1 - uid: 4 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,4.5 parent: 1 - uid: 5 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,4.5 parent: 1 - uid: 6 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,4.5 parent: 1 - uid: 7 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,4.5 parent: 1 - uid: 8 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,4.5 parent: 1 - uid: 9 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,3.5 parent: 1 - uid: 10 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,0.5 parent: 1 - uid: 11 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-0.5 parent: 1 - uid: 13 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-0.5 parent: 1 - uid: 14 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-0.5 parent: 1 - uid: 16 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-0.5 parent: 1 - uid: 17 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-1.5 parent: 1 - uid: 18 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-1.5 parent: 1 - uid: 19 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-1.5 parent: 1 - uid: 20 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-1.5 parent: 1 - uid: 21 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-0.5 parent: 1 - uid: 22 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-2.5 parent: 1 - uid: 23 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-3.5 parent: 1 - uid: 25 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-4.5 parent: 1 - uid: 26 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-5.5 parent: 1 - uid: 27 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-4.5 parent: 1 - uid: 28 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-3.5 parent: 1 - uid: 29 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-2.5 parent: 1 - uid: 30 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-5.5 parent: 1 - uid: 31 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-5.5 parent: 1 - uid: 32 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-4.5 parent: 1 - uid: 130 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,1.5 @@ -2046,4 +1951,11 @@ entities: - type: Transform pos: 0.5,0.5 parent: 1 +- proto: WaterCooler + entities: + - uid: 173 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 ... diff --git a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_shipyard_mothership.yml b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_shipyard_mothership.yml index 51eb77cb97d..e2930b09df8 100644 --- a/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_shipyard_mothership.yml +++ b/Resources/Prototypes/_NF/Entities/Structures/Machines/Computers/computers_shipyard_mothership.yml @@ -76,8 +76,11 @@ state: telesci_key - type: ShipyardListing shuttles: - - Pulse + - Spirit - Searchlight + - Beaker + - Eagle + - Apothecary # The GASBENDA-A-A-AH (sick metal guitar riff) console - type: entity @@ -100,14 +103,12 @@ - type: ShipyardListing shuttles: - Bocadillo - - Pulse - PTS - Construct - Pioneer - Loader - Legman - Liquidator - - Mission - Honker # The mail console diff --git a/Resources/Prototypes/_NF/Shipyard/Expedition/anchor.yml b/Resources/Prototypes/_NF/Shipyard/Expedition/anchor.yml index f1a9b652497..8465828c963 100644 --- a/Resources/Prototypes/_NF/Shipyard/Expedition/anchor.yml +++ b/Resources/Prototypes/_NF/Shipyard/Expedition/anchor.yml @@ -1,28 +1,28 @@ -- type: vessel - id: Anchor - name: KC Anchor - description: A large luxury cruiser capable of long ranged travel acrossed the sector, expedition capable. - price: 135020 - category: Large - group: Expedition - shuttlePath: /Maps/_NF/Shuttles/Expedition/anchor.yml +# - type: vessel + # id: Anchor + # name: KC Anchor + # description: A large luxury cruiser capable of long ranged travel acrossed the sector, expedition capable. + # price: 135020 + # category: Large + # group: Expedition + # shuttlePath: /Maps/_NF/Shuttles/Expedition/anchor.yml -- type: gameMap - id: Anchor - mapName: 'KC Anchor' - mapPath: /Maps/_NF/Shuttles/Expedition/anchor.yml - minPlayers: 0 - stations: - Anchor: - stationProto: StandardFrontierExpeditionVessel - components: - - type: StationNameSetup - mapNameTemplate: 'Anchor {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationJobs - availableJobs: - Contractor: [ 0, 0 ] - Pilot: [ 0, 0 ] - Mercenary: [ 0, 0 ] +# - type: gameMap + # id: Anchor + # mapName: 'KC Anchor' + # mapPath: /Maps/_NF/Shuttles/Expedition/anchor.yml + # minPlayers: 0 + # stations: + # Anchor: + # stationProto: StandardFrontierExpeditionVessel + # components: + # - type: StationNameSetup + # mapNameTemplate: 'Anchor {1}' + # nameGenerator: + # !type:NanotrasenNameGenerator + # prefixCreator: '14' + # - type: StationJobs + # availableJobs: + # Contractor: [ 0, 0 ] + # Pilot: [ 0, 0 ] + # Mercenary: [ 0, 0 ] \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Shipyard/Expedition/courserx.yml b/Resources/Prototypes/_NF/Shipyard/Expedition/courserx.yml index f6d9fd17112..037d774bdd6 100644 --- a/Resources/Prototypes/_NF/Shipyard/Expedition/courserx.yml +++ b/Resources/Prototypes/_NF/Shipyard/Expedition/courserx.yml @@ -1,28 +1,28 @@ -- type: vessel - id: CourserX - name: NT Courser-X - description: A medium sized multi-role long haul conversion of the long time popular Courser model. - price: 68650 - category: Medium - group: Expedition - shuttlePath: /Maps/_NF/Shuttles/Expedition/courserx.yml +# - type: vessel + # id: CourserX + # name: NT Courser-X + # description: A medium sized multi-role long haul conversion of the long time popular Courser model. + # price: 68650 + # category: Medium + # group: Expedition + # shuttlePath: /Maps/_NF/Shuttles/Expedition/courserx.yml -- type: gameMap - id: CourserX - mapName: 'NT Courser-X' - mapPath: /Maps/_NF/Shuttles/Expedition/courserx.yml - minPlayers: 0 - stations: - CourserX: - stationProto: StandardFrontierExpeditionVessel - components: - - type: StationNameSetup - mapNameTemplate: 'Courser-X {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationJobs - availableJobs: - Contractor: [ 0, 0 ] - Pilot: [ 0, 0 ] - Mercenary: [ 0, 0 ] +# - type: gameMap + # id: CourserX + # mapName: 'NT Courser-X' + # mapPath: /Maps/_NF/Shuttles/Expedition/courserx.yml + # minPlayers: 0 + # stations: + # CourserX: + # stationProto: StandardFrontierExpeditionVessel + # components: + # - type: StationNameSetup + # mapNameTemplate: 'Courser-X {1}' + # nameGenerator: + # !type:NanotrasenNameGenerator + # prefixCreator: '14' + # - type: StationJobs + # availableJobs: + # Contractor: [ 0, 0 ] + # Pilot: [ 0, 0 ] + # Mercenary: [ 0, 0 ] \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Shipyard/Expedition/rosebudmkii.yml b/Resources/Prototypes/_NF/Shipyard/Expedition/rosebudmkii.yml index 5c7f3e1e227..73d5320ec6a 100644 --- a/Resources/Prototypes/_NF/Shipyard/Expedition/rosebudmkii.yml +++ b/Resources/Prototypes/_NF/Shipyard/Expedition/rosebudmkii.yml @@ -1,28 +1,28 @@ -- type: vessel - id: RosebudMKII - name: NT Rosebud MKII - description: The MKII trades her younger sister's solar-only charm for an AME, making her expedition-capable! Rejoice! - price: 138000 - category: Medium - group: Expedition - shuttlePath: /Maps/_NF/Shuttles/Expedition/rosebudmkii.yml +# - type: vessel + # id: RosebudMKII + # name: NT Rosebud MKII + # description: The MKII trades her younger sister's solar-only charm for an AME, making her expedition-capable! Rejoice! + # price: 138000 + # category: Medium + # group: Expedition + # shuttlePath: /Maps/_NF/Shuttles/Expedition/rosebudmkii.yml -- type: gameMap - id: RosebudMKII - mapName: 'NT Rosebud MKII' - mapPath: /Maps/_NF/Shuttles/Expedition/rosebudmkii.yml - minPlayers: 0 - stations: - RosebudMKII: - stationProto: StandardFrontierExpeditionVessel - components: - - type: StationNameSetup - mapNameTemplate: 'Rosebud MKII {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationJobs - availableJobs: - Contractor: [ 0, 0 ] - Pilot: [ 0, 0 ] - Mercenary: [ 0, 0 ] +# - type: gameMap + # id: RosebudMKII + # mapName: 'NT Rosebud MKII' + # mapPath: /Maps/_NF/Shuttles/Expedition/rosebudmkii.yml + # minPlayers: 0 + # stations: + # RosebudMKII: + # stationProto: StandardFrontierExpeditionVessel + # components: + # - type: StationNameSetup + # mapNameTemplate: 'Rosebud MKII {1}' + # nameGenerator: + # !type:NanotrasenNameGenerator + # prefixCreator: '14' + # - type: StationJobs + # availableJobs: + # Contractor: [ 0, 0 ] + # Pilot: [ 0, 0 ] + # Mercenary: [ 0, 0 ] \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Shipyard/condor.yml b/Resources/Prototypes/_NF/Shipyard/condor.yml index f84eb44a9d5..fd91175533b 100644 --- a/Resources/Prototypes/_NF/Shipyard/condor.yml +++ b/Resources/Prototypes/_NF/Shipyard/condor.yml @@ -1,28 +1,28 @@ -- type: vessel - id: Condor - name: NR Condor - description: A combined research and engineering vessel #suited for xeno-archeological expeditions. -soon - price: 72890 - category: Medium - group: Civilian - shuttlePath: /Maps/_NF/Shuttles/condor.yml +# - type: vessel + # id: Condor + # name: NR Condor + # description: A combined research and engineering vessel + # price: 72890 + # category: Medium + # group: Civilian + # shuttlePath: /Maps/_NF/Shuttles/condor.yml -- type: gameMap - id: Condor - mapName: 'NR Condor' - mapPath: /Maps/_NF/Shuttles/condor.yml - minPlayers: 0 - stations: - Condor: - stationProto: StandardFrontierVessel - components: - - type: StationNameSetup - mapNameTemplate: 'Condor {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationJobs - availableJobs: - Contractor: [ 0, 0 ] - Pilot: [ 0, 0 ] - Mercenary: [ 0, 0 ] +# - type: gameMap + # id: Condor + # mapName: 'NR Condor' + # mapPath: /Maps/_NF/Shuttles/condor.yml + # minPlayers: 0 + # stations: + # Condor: + # stationProto: StandardFrontierVessel + # components: + # - type: StationNameSetup + # mapNameTemplate: 'Condor {1}' + # nameGenerator: + # !type:NanotrasenNameGenerator + # prefixCreator: '14' + # - type: StationJobs + # availableJobs: + # Contractor: [ 0, 0 ] + # Pilot: [ 0, 0 ] + # Mercenary: [ 0, 0 ] \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Shipyard/esquire.yml b/Resources/Prototypes/_NF/Shipyard/esquire.yml index e716018053c..af58a6084d5 100644 --- a/Resources/Prototypes/_NF/Shipyard/esquire.yml +++ b/Resources/Prototypes/_NF/Shipyard/esquire.yml @@ -8,31 +8,31 @@ # Shuttle Notes: # -- type: vessel - id: Esquire - name: NT Esquire - description: A classy mid-sized vessel equipped with a lawyers office and prisoner handling area. - price: 38500 - category: Medium - group: Civilian - shuttlePath: /Maps/_NF/Shuttles/esquire.yml +# - type: vessel + # id: Esquire + # name: NT Esquire + # description: A classy mid-sized vessel equipped with a lawyers office and prisoner handling area. + # price: 38500 + # category: Medium + # group: Civilian + # shuttlePath: /Maps/_NF/Shuttles/esquire.yml -- type: gameMap - id: Esquire - mapName: 'NT Esquire' - mapPath: /Maps/_NF/Shuttles/esquire.yml - minPlayers: 0 - stations: - Esquire: - stationProto: StandardFrontierVessel - components: - - type: StationNameSetup - mapNameTemplate: 'Esquire {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationJobs - availableJobs: - Contractor: [ 0, 0 ] - Pilot: [ 0, 0 ] - Mercenary: [ 0, 0 ] +# - type: gameMap + # id: Esquire + # mapName: 'NT Esquire' + # mapPath: /Maps/_NF/Shuttles/esquire.yml + # minPlayers: 0 + # stations: + # Esquire: + # stationProto: StandardFrontierVessel + # components: + # - type: StationNameSetup + # mapNameTemplate: 'Esquire {1}' + # nameGenerator: + # !type:NanotrasenNameGenerator + # prefixCreator: '14' + # - type: StationJobs + # availableJobs: + # Contractor: [ 0, 0 ] + # Pilot: [ 0, 0 ] + # Mercenary: [ 0, 0 ] \ No newline at end of file diff --git a/Resources/Prototypes/_NF/Shipyard/knuckleverse.yml b/Resources/Prototypes/_NF/Shipyard/knuckleverse.yml index 206b3b43359..405b70610cc 100644 --- a/Resources/Prototypes/_NF/Shipyard/knuckleverse.yml +++ b/Resources/Prototypes/_NF/Shipyard/knuckleverse.yml @@ -1,28 +1,28 @@ -- type: vessel - id: KnuckleVerse - name: SSC KnuckleVerse - description: KnuckleVerse is a ship for organizing box matches. It has a boxing ring and a bar. It might need a bit of cleaning. - price: 36500 - category: Medium - group: Civilian - shuttlePath: /Maps/_NF/Shuttles/knuckleverse.yml +# - type: vessel + # id: KnuckleVerse + # name: SSC KnuckleVerse + # description: KnuckleVerse is a ship for organizing box matches. It has a boxing ring and a bar. It might need a bit of cleaning. + # price: 36500 + # category: Medium + # group: Civilian + # shuttlePath: /Maps/_NF/Shuttles/knuckleverse.yml -- type: gameMap - id: KnuckleVerse - mapName: 'KnuckleVerse' - mapPath: /Maps/_NF/Shuttles/knuckleverse.yml - minPlayers: 0 - stations: - KnuckleVerse: - stationProto: StandardFrontierVessel - components: - - type: StationNameSetup - mapNameTemplate: 'KnuckleVerse {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationJobs - availableJobs: - Contractor: [ 0, 0 ] - Pilot: [ 0, 0 ] - Mercenary: [ 0, 0 ] +# - type: gameMap + # id: KnuckleVerse + # mapName: 'KnuckleVerse' + # mapPath: /Maps/_NF/Shuttles/knuckleverse.yml + # minPlayers: 0 + # stations: + # KnuckleVerse: + # stationProto: StandardFrontierVessel + # components: + # - type: StationNameSetup + # mapNameTemplate: 'KnuckleVerse {1}' + # nameGenerator: + # !type:NanotrasenNameGenerator + # prefixCreator: '14' + # - type: StationJobs + # availableJobs: + # Contractor: [ 0, 0 ] + # Pilot: [ 0, 0 ] + # Mercenary: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/metastable.yml b/Resources/Prototypes/_NF/Shipyard/metastable.yml index 355bc47c298..81ec11005ed 100644 --- a/Resources/Prototypes/_NF/Shipyard/metastable.yml +++ b/Resources/Prototypes/_NF/Shipyard/metastable.yml @@ -1,28 +1,28 @@ -- type: vessel - id: Metastable - name: TC Metastable - description: An incredibly compressed variation of a standard Nanotransen station. Intended to service other ships with anything they might need. - price: 95000 - category: Medium - group: Civilian - shuttlePath: /Maps/_NF/Shuttles/metastable.yml +# - type: vessel + # id: Metastable + # name: TC Metastable + # description: An incredibly compressed variation of a standard Nanotransen station. Intended to service other ships with anything they might need. + # price: 95000 + # category: Medium + # group: Civilian + # shuttlePath: /Maps/_NF/Shuttles/metastable.yml -- type: gameMap - id: Metastable - mapName: 'TC Metastable' - mapPath: /Maps/_NF/Shuttles/metastable.yml - minPlayers: 0 - stations: - Metastable: - stationProto: StandardFrontierVessel - components: - - type: StationNameSetup - mapNameTemplate: 'Metastable {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationJobs - availableJobs: - Contractor: [ 0, 0 ] - Pilot: [ 0, 0 ] - Mercenary: [ 0, 0 ] +# - type: gameMap + # id: Metastable + # mapName: 'TC Metastable' + # mapPath: /Maps/_NF/Shuttles/metastable.yml + # minPlayers: 0 + # stations: + # Metastable: + # stationProto: StandardFrontierVessel + # components: + # - type: StationNameSetup + # mapNameTemplate: 'Metastable {1}' + # nameGenerator: + # !type:NanotrasenNameGenerator + # prefixCreator: '14' + # - type: StationJobs + # availableJobs: + # Contractor: [ 0, 0 ] + # Pilot: [ 0, 0 ] + # Mercenary: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/mission.yml b/Resources/Prototypes/_NF/Shipyard/mission.yml index da8338f7b6a..5eb4cfbb2ef 100644 --- a/Resources/Prototypes/_NF/Shipyard/mission.yml +++ b/Resources/Prototypes/_NF/Shipyard/mission.yml @@ -8,31 +8,31 @@ # Shuttle Notes: # -- type: vessel - id: Mission - name: NC Mission - description: A mobile religous chapel with crematorium and full janitorial services. - price: 19000 - category: Small - group: Civilian - shuttlePath: /Maps/_NF/Shuttles/mission.yml +# - type: vessel + # id: Mission + # name: NC Mission + # description: A mobile religous chapel with crematorium and full janitorial services. + # price: 19000 + # category: Small + # group: Civilian + # shuttlePath: /Maps/_NF/Shuttles/mission.yml -- type: gameMap - id: Mission - mapName: 'NC Mission' - mapPath: /Maps/_NF/Shuttles/mission.yml - minPlayers: 0 - stations: - Mission: - stationProto: StandardFrontierVessel - components: - - type: StationNameSetup - mapNameTemplate: 'Mission {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationJobs - availableJobs: - Contractor: [ 0, 0 ] - Pilot: [ 0, 0 ] - Mercenary: [ 0, 0 ] +# - type: gameMap + # id: Mission + # mapName: 'NC Mission' + # mapPath: /Maps/_NF/Shuttles/mission.yml + # minPlayers: 0 + # stations: + # Mission: + # stationProto: StandardFrontierVessel + # components: + # - type: StationNameSetup + # mapNameTemplate: 'Mission {1}' + # nameGenerator: + # !type:NanotrasenNameGenerator + # prefixCreator: '14' + # - type: StationJobs + # availableJobs: + # Contractor: [ 0, 0 ] + # Pilot: [ 0, 0 ] + # Mercenary: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/pulse.yml b/Resources/Prototypes/_NF/Shipyard/pulse.yml index 0f0561dd5e7..d44024ac699 100644 --- a/Resources/Prototypes/_NF/Shipyard/pulse.yml +++ b/Resources/Prototypes/_NF/Shipyard/pulse.yml @@ -8,31 +8,31 @@ # Shuttle Notes: # -- type: vessel - id: Pulse - name: NM Pulse - description: A small rapid response medical ship - price: 20500 - category: Small - group: Civilian - shuttlePath: /Maps/_NF/Shuttles/pulse.yml +# - type: vessel + # id: Pulse + # name: NM Pulse + # description: A small rapid response medical ship + # price: 20500 + # category: Small + # group: Civilian + # shuttlePath: /Maps/_NF/Shuttles/pulse.yml -- type: gameMap - id: Pulse - mapName: 'NM Pulse' - mapPath: /Maps/_NF/Shuttles/pulse.yml - minPlayers: 0 - stations: - Pulse: - stationProto: StandardFrontierVessel - components: - - type: StationNameSetup - mapNameTemplate: 'Pulse {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationJobs - availableJobs: - Contractor: [ 0, 0 ] - Pilot: [ 0, 0 ] - Mercenary: [ 0, 0 ] +# - type: gameMap + # id: Pulse + # mapName: 'NM Pulse' + # mapPath: /Maps/_NF/Shuttles/pulse.yml + # minPlayers: 0 + # stations: + # Pulse: + # stationProto: StandardFrontierVessel + # components: + # - type: StationNameSetup + # mapNameTemplate: 'Pulse {1}' + # nameGenerator: + # !type:NanotrasenNameGenerator + # prefixCreator: '14' + # - type: StationJobs + # availableJobs: + # Contractor: [ 0, 0 ] + # Pilot: [ 0, 0 ] + # Mercenary: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/rosebudmki.yml b/Resources/Prototypes/_NF/Shipyard/rosebudmki.yml index 8d71a4e89ca..82c6f09fa00 100644 --- a/Resources/Prototypes/_NF/Shipyard/rosebudmki.yml +++ b/Resources/Prototypes/_NF/Shipyard/rosebudmki.yml @@ -8,31 +8,31 @@ # Shuttle Notes: # -- type: vessel - id: RosebudMKI - name: NT Rosebud MKI - description: A medium-sized luxury salvaging and mining vessel perfectly suited for a small crew. - price: 92115 - category: Medium - group: Civilian - shuttlePath: /Maps/_NF/Shuttles/rosebudmki.yml +# - type: vessel + # id: RosebudMKI + # name: NT Rosebud MKI + # description: A medium-sized luxury salvaging and mining vessel perfectly suited for a small crew. + # price: 92115 + # category: Medium + # group: Civilian + # shuttlePath: /Maps/_NF/Shuttles/rosebudmki.yml -- type: gameMap - id: RosebudMKI - mapName: 'NT Rosebud MKI' - mapPath: /Maps/_NF/Shuttles/rosebudmki.yml - minPlayers: 0 - stations: - RosebudMKI: - stationProto: StandardFrontierVessel - components: - - type: StationNameSetup - mapNameTemplate: 'Rosebud MKI {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationJobs - availableJobs: - Contractor: [ 0, 0 ] - Pilot: [ 0, 0 ] - Mercenary: [ 0, 0 ] +# - type: gameMap + # id: RosebudMKI + # mapName: 'NT Rosebud MKI' + # mapPath: /Maps/_NF/Shuttles/rosebudmki.yml + # minPlayers: 0 + # stations: + # RosebudMKI: + # stationProto: StandardFrontierVessel + # components: + # - type: StationNameSetup + # mapNameTemplate: 'Rosebud MKI {1}' + # nameGenerator: + # !type:NanotrasenNameGenerator + # prefixCreator: '14' + # - type: StationJobs + # availableJobs: + # Contractor: [ 0, 0 ] + # Pilot: [ 0, 0 ] + # Mercenary: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/stratos.yml b/Resources/Prototypes/_NF/Shipyard/stratos.yml index eea70ce24a5..3288e628bb9 100644 --- a/Resources/Prototypes/_NF/Shipyard/stratos.yml +++ b/Resources/Prototypes/_NF/Shipyard/stratos.yml @@ -8,31 +8,31 @@ # Shuttle Notes: # -- type: vessel - id: Stratos - name: NR Stratos - description: A medium sized research operations ship with salvage area and a bar. - price: 90000 - category: Medium - group: Civilian - shuttlePath: /Maps/_NF/Shuttles/stratos.yml +# - type: vessel + # id: Stratos + # name: NR Stratos + # description: A medium sized research operations ship with salvage area and a bar. + # price: 90000 + # category: Medium + # group: Civilian + # shuttlePath: /Maps/_NF/Shuttles/stratos.yml -- type: gameMap - id: Stratos - mapName: 'NR Stratos' - mapPath: /Maps/_NF/Shuttles/stratos.yml - minPlayers: 0 - stations: - Stratos: - stationProto: StandardFrontierVessel - components: - - type: StationNameSetup - mapNameTemplate: 'Stratos {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationJobs - availableJobs: - Contractor: [ 0, 0 ] - Pilot: [ 0, 0 ] - Mercenary: [ 0, 0 ] +# - type: gameMap + # id: Stratos + # mapName: 'NR Stratos' + # mapPath: /Maps/_NF/Shuttles/stratos.yml + # minPlayers: 0 + # stations: + # Stratos: + # stationProto: StandardFrontierVessel + # components: + # - type: StationNameSetup + # mapNameTemplate: 'Stratos {1}' + # nameGenerator: + # !type:NanotrasenNameGenerator + # prefixCreator: '14' + # - type: StationJobs + # availableJobs: + # Contractor: [ 0, 0 ] + # Pilot: [ 0, 0 ] + # Mercenary: [ 0, 0 ] diff --git a/Resources/Prototypes/_NF/Shipyard/waveshot.yml b/Resources/Prototypes/_NF/Shipyard/waveshot.yml index 422f6a3293e..3f5b33cb527 100644 --- a/Resources/Prototypes/_NF/Shipyard/waveshot.yml +++ b/Resources/Prototypes/_NF/Shipyard/waveshot.yml @@ -8,31 +8,31 @@ # Shuttle Notes: # -- type: vessel - id: WaveShot - name: NC WaveShot - description: A mobile reporting studio fit for broadcasting the news. - price: 37500 # 15% markup +4890 - category: Small - group: Civilian - shuttlePath: /Maps/_NF/Shuttles/waveshot.yml +# - type: vessel + # id: WaveShot + # name: NC WaveShot + # description: A mobile reporting studio fit for broadcasting the news. + # price: 37500 # 15% markup +4890 + # category: Small + # group: Civilian + # shuttlePath: /Maps/_NF/Shuttles/waveshot.yml -- type: gameMap - id: WaveShot - mapName: 'NC WaveShot' - mapPath: /Maps/_NF/Shuttles/waveshot.yml - minPlayers: 0 - stations: - WaveShot: - stationProto: StandardFrontierVessel - components: - - type: StationNameSetup - mapNameTemplate: 'WaveShot {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationJobs - availableJobs: - Contractor: [ 0, 0 ] - Pilot: [ 0, 0 ] - Mercenary: [ 0, 0 ] +# - type: gameMap + # id: WaveShot + # mapName: 'NC WaveShot' + # mapPath: /Maps/_NF/Shuttles/waveshot.yml + # minPlayers: 0 + # stations: + # WaveShot: + # stationProto: StandardFrontierVessel + # components: + # - type: StationNameSetup + # mapNameTemplate: 'WaveShot {1}' + # nameGenerator: + # !type:NanotrasenNameGenerator + # prefixCreator: '14' + # - type: StationJobs + # availableJobs: + # Contractor: [ 0, 0 ] + # Pilot: [ 0, 0 ] + # Mercenary: [ 0, 0 ] \ No newline at end of file From fbfc77ed128aed6005633e044cc58ffa17017c23 Mon Sep 17 00:00:00 2001 From: FrontierATC Date: Mon, 15 Jul 2024 00:02:32 +0000 Subject: [PATCH 06/12] Automatic Changelog (#1677) --- Resources/Changelog/Changelog.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c6d42829495..402b2f21d02 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -5679,3 +5679,12 @@ Entries: message: 'Updated SLI Gourd: gutted kitchen, bar, salvage, added guidebook entry.' id: 5118 time: '2024-07-15T00:00:53.0000000+00:00' +- author: dvir01 + changes: + - type: Remove + message: >- + Removed older ships waiting for reworks (Anchor, CourserX, Rosebud, + Condor, Esquire, Knuckleverse, Metastable, Mission, Pulse, Stratos, + WaveShot) + id: 5119 + time: '2024-07-15T00:02:07.0000000+00:00' From d2a406052128b6ff0bfc3246c5c0ba1065fc77d5 Mon Sep 17 00:00:00 2001 From: "Alice \"Arimah\" Heurlin" <30327355+arimah@users.noreply.github.com> Date: Mon, 15 Jul 2024 22:51:46 +0200 Subject: [PATCH 07/12] Add 'Client/Server (Release)' build for VSCode (#1678) --- .vscode/launch.json | 12 +++++++++++- .vscode/tasks.json | 20 ++++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 5390b914093..ef75c5b0f9e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -50,6 +50,16 @@ "Client" ], "preLaunchTask": "build" + }, + // Frontier begin + { + "name": "Server/Client (Release)", + "configurations": [ + "Server", + "Client" + ], + "preLaunchTask": "build-release" } + // Frontier end ] -} \ No newline at end of file +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 9c9cb42cd0d..081a765b321 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -21,6 +21,26 @@ }, "problemMatcher": "$msCompile" }, + // Frontier begin + { + "label": "build-release", + "command": "dotnet", + "type": "shell", + "args": [ + "build", + "--configuration=Release", // Build in release mode. Note: --, not /. /configuration doesn't work, because Microsoft. + "/property:GenerateFullPaths=true", // Ask dotnet build to generate full paths for file names. + "/consoleloggerparameters:NoSummary" // Do not generate summary otherwise it leads to duplicate errors in Problems panel + ], + "group": { + "kind": "build" + }, + "presentation": { + "reveal": "silent" + }, + "problemMatcher": "$msCompile" + }, + // Frontier end { "label": "build-yaml-linter", "command": "dotnet", From c1e2b0f5b119549efe0b668dfb402c955a7f2bf4 Mon Sep 17 00:00:00 2001 From: "Alice \"Arimah\" Heurlin" <30327355+arimah@users.noreply.github.com> Date: Wed, 17 Jul 2024 10:49:59 +0200 Subject: [PATCH 08/12] Remove Mayflower (#1687) --- .../_NF/Shuttles/Expedition/mayflower.yml | 5406 ----------------- .../_NF/Shipyard/Expedition/mayflower.yml | 28 - 2 files changed, 5434 deletions(-) delete mode 100644 Resources/Maps/_NF/Shuttles/Expedition/mayflower.yml delete mode 100644 Resources/Prototypes/_NF/Shipyard/Expedition/mayflower.yml diff --git a/Resources/Maps/_NF/Shuttles/Expedition/mayflower.yml b/Resources/Maps/_NF/Shuttles/Expedition/mayflower.yml deleted file mode 100644 index e1618dbac16..00000000000 --- a/Resources/Maps/_NF/Shuttles/Expedition/mayflower.yml +++ /dev/null @@ -1,5406 +0,0 @@ -meta: - format: 6 - postmapinit: false -tilemap: - 0: Space - 34: FloorDarkOffset - 63: FloorMetalDiamond - 72: FloorRGlass - 94: FloorSteelOffset - 97: FloorTechMaint - 100: FloorWebTile - 103: FloorWhiteDiagonalMini - 107: FloorWhiteOffset - 111: FloorWood - 113: Lattice - 114: Plating -entities: -- proto: "" - entities: - - uid: 1 - components: - - name: grid - type: MetaData - - pos: 0.2982388,12.765411 - parent: invalid - type: Transform - - chunks: - 0,0: - ind: 0,0 - tiles: IgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXgAAAAAAZAAAAAAAXgAAAAAAZAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAIgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAawAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAXgAAAAAAXgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: cgAAAAAAYQAAAAAAXgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAXgAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAcgAAAAAASAAAAAAASAAAAAAASAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAcgAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAawAAAAAASAAAAAAAcgAAAAAAcgAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAIgAAAAAAZAAAAAAAZAAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAcgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAZAAAAAAAIgAAAAAAZAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcgAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-2: - ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAAAXgAAAAAAcgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAYQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-2: - ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAZAAAAAAAZAAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAYQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA - version: 6 - type: MapGrid - - type: Broadphase - - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - type: OccluderTree - - updateAccumulator: 0.10273647 - type: SpreaderGrid - - type: Shuttle - - type: GridPathfinding - - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: - version: 2 - nodes: - - node: - cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 0: -5.9438343,-5.045738 - 1: -7,-5 - 2: -8,-5 - 3: -8,-6 - 4: -9,-6 - 5: -9,-7 - 6: -9,-8 - 7: -10,-7 - 8: -10,-6 - 9: -8,-6 - 10: -8,-7 - 11: -8,-8 - 12: -6,-8 - 13: -6,-7 - 14: -5,-7 - 15: -5,-8 - 16: -5,-9 - 17: -4,-9 - 18: -4,-8 - 19: -4,-7 - 20: -4,-6 - 21: -3,-6 - 22: -3,-7 - 23: -3,-8 - 24: -2,-9 - 25: -1,-9 - 26: 0,-9 - 27: 1,-9 - 28: 2,-9 - 29: 2,-8 - 30: 3,-8 - 31: 3,-7 - 32: 2,-7 - 33: 0,-7 - 34: 0,-8 - 35: 1,-8 - 36: -1,-6 - 37: -2,-6 - 38: -2,-7 - 39: -1,-7 - 40: -1,-8 - 41: -2,-8 - 42: -2,-5 - 43: -1,-5 - 44: -1,-4 - 45: -2,-4 - 46: -4,-4 - 47: -4,-4 - 48: -5,-4 - 49: -4,-4 - 50: -4,-4 - 51: -4,-4 - 52: -4,-4 - 53: -4,-4 - 54: -2,-2 - 55: -2,-3 - 56: -1,-2 - 57: -1,-3 - 58: -1,-2 - 59: -1,-1 - 60: -2,-1 - 61: -2,0 - 62: -1,0 - 63: 0,0 - 64: -1,1 - 65: -2,1 - 66: -3,1 - 67: -3,0 - 68: 0,1 - 69: 1,-4 - 70: 2,-4 - 71: 2,-5 - 72: 3,-4 - 73: 3,-5 - 74: 4,-5 - 75: 5,-5 - 76: 5,-6 - 77: 6,-6 - 78: 6,-7 - 79: 5,-7 - 80: 5,-8 - 81: 6,-8 - 82: 7,-8 - 83: 7,-7 - 84: 7,-6 - 85: -5,-3 - 86: -1,-11 - 87: -2,-10 - 88: -1,-10 - 89: -3,-12 - 90: -3,-13 - 91: -2,-13 - 92: 0,-13 - 93: -1,-13 - 94: 0,-14 - 95: -3,-14 - 96: -4,-15 - 97: -3,-15 - 98: -2,-15 - 99: 0,-15 - 100: 0,-15 - 101: 1,-15 - 102: 1,-14 - 103: 1,-15 - 104: 1,-16 - 105: 1,-17 - 106: 1,-18 - 107: 2,-18 - 108: 3,-18 - 109: 4,-18 - 110: 5,-18 - 111: 5,-17 - 112: 4,-17 - 113: 3,-17 - 114: 2,-17 - 115: 2,-16 - 116: 3,-16 - 117: 3,-15 - 118: 2,-15 - 119: 4,-16 - 120: 5,-16 - 121: 5,-15 - 122: 4,-15 - 123: -5,-15 - 124: -6,-15 - 125: -7,-15 - 126: -8,-15 - 127: -8,-16 - 128: -7,-16 - 129: -5,-16 - 130: -6,-16 - 131: -5,-17 - 132: -6,-17 - 133: -7,-17 - 134: -8,-17 - 135: -8,-18 - 136: -7,-18 - 137: -6,-18 - 138: -5,-18 - 139: -5,-19 - 140: -4,-18 - 141: -4,-17 - 142: -4,-19 - 143: -4,-20 - 144: -4,-20 - 145: -3,-20 - 146: -5,-20 - 147: -4,-20 - 148: -4,-20 - 149: -4,-20 - 150: -2,-20 - 151: -2,-20 - 152: -2,-20 - 153: -2,-20 - 154: -2,-20 - 155: -1,-20 - 156: -1,-20 - 157: 0,-20 - 158: 1,-20 - 159: 1,-19 - 160: 0,-19 - 161: 1,-20 - 162: 2,-20 - 163: 2,-19 - 164: 2,-18 - 165: 1,-18 - 166: -1,-22 - 167: -2,-22 - 168: -1,-21 - 169: -2,-21 - 170: -1,-9 - 171: -1,-9 - 172: -2,-7 - 173: -2,-7 - 174: -2,-7 - 175: -2,1 - 176: -2,1 - 177: -2,1 - 178: -2,1 - 179: -2,1 - 180: -2,-4 - 181: -2,-4 - 182: -2,-4 - 183: -2,-4 - 184: -2,-4 - 185: -2,-4 - 186: 5,-5 - 187: 5,-5 - 188: 5,-5 - 189: 5,-5 - 190: -5,-11 - 191: -4,-11 - 192: -5,-12 - 193: -6,-12 - 194: -6,-13 - 195: -7,-13 - 196: -6,-13 - 197: -5,-13 - 198: 2,-13 - 199: 2,-12 - 200: 2,-11 - 201: 3,-12 - 202: 4,-13 - 203: 4,-13 - 204: 4,-13 - 205: 3,-12 - 206: 2,-12 - 207: 2,-13 - 208: 1,-12 - 209: 2,-2 - 210: 1,-2 - 211: -5,-2 - 212: -6,-2 - 213: -4,-2 - 214: 4,-12 - 215: 4,-12 - 216: 4,-12 - 217: 4,-12 - 218: -1,-12 - 219: -2,-12 - 220: 3,-13 - 221: -2,-14 - 222: -1,-15 - - node: - cleanable: True - color: '#4D0000FF' - id: a - decals: - 224: -7.104003,-13.216866 - 225: -3.1560862,-11.048694 - - node: - cleanable: True - color: '#4D0000FF' - id: m - decals: - 226: 3.9688463,-13.17517 - - node: - cleanable: True - color: '#4D0000FF' - id: s - decals: - 223: 1.9992087,-9.260017 - type: DecalGrid - - version: 2 - data: - tiles: - 0,0: - 0: 819 - -1,0: - 0: 4095 - -1,-1: - 0: 65535 - 0,-1: - 0: 65535 - -1,-2: - 0: 65535 - -2,-1: - 0: 61183 - -3,-2: - 0: 65535 - -2,-2: - 0: 65535 - 0,-2: - 0: 65535 - 1,-2: - 0: 65535 - 2,-3: - 0: 28691 - -4,-3: - 0: 49152 - 1,-1: - 0: 5631 - -3,-1: - 0: 2252 - 2,-2: - 0: 14199 - -2,-3: - 0: 65279 - -1,-3: - 0: 65535 - 0,-3: - 0: 65535 - -4,-2: - 0: 2184 - 0,-4: - 0: 65535 - -2,-4: - 0: 65535 - 1,-4: - 0: 14199 - -1,-4: - 0: 65535 - -3,-3: - 0: 63727 - 1,-3: - 0: 62975 - 1,-5: - 0: 30583 - -3,-4: - 0: 2184 - 0,-6: - 0: 63280 - 0,-5: - 0: 65535 - 1,-6: - 0: 12288 - -3,-5: - 0: 34952 - -2,-6: - 0: 63488 - -2,-5: - 0: 65535 - -1,-6: - 0: 65520 - -1,-5: - 0: 65535 - 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: GasTileOverlay - - type: RadiationGridResistance - - id: Mayflower - type: BecomesStation -- proto: Airlock - entities: - - uid: 3 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 1 - type: Transform - - uid: 4 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1 - type: Transform -- proto: AirlockExternalGlass - entities: - - uid: 11 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 1 - type: Transform - - uid: 46 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-4.5 - parent: 1 - type: Transform -- proto: AirlockGlass - entities: - - uid: 6 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - type: Transform - - uid: 7 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 1 - type: Transform - - uid: 9 - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform - - uid: 10 - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform -- proto: AirlockGlassShuttle - entities: - - uid: 13 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-5.5 - parent: 1 - type: Transform - - uid: 16 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-6.5 - parent: 1 - type: Transform - - uid: 135 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 1 - type: Transform - - uid: 136 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 1 - type: Transform - - uid: 582 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 1 - type: Transform -- proto: AirlockMaint - entities: - - uid: 19 - components: - - pos: -1.5,-20.5 - parent: 1 - type: Transform - - uid: 21 - components: - - pos: -0.5,-20.5 - parent: 1 - type: Transform -- proto: AirlockMercenaryGlassLocked - entities: - - uid: 5 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-12.5 - parent: 1 - type: Transform - - links: - - 285 - type: DeviceLinkSink -- proto: AirlockMercenaryLocked - entities: - - uid: 2 - components: - - pos: -3.5,-12.5 - parent: 1 - type: Transform -- proto: AirlockShuttle - entities: - - uid: 53 - components: - - rot: -1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 1 - type: Transform -- proto: AmeController - entities: - - uid: 208 - components: - - pos: 0.5,-17.5 - parent: 1 - type: Transform - - injecting: True - type: AmeController - - containers: - AmeFuel: !type:ContainerSlot - showEnts: False - occludes: True - ent: 210 - type: ContainerContainer -- proto: AmeJar - entities: - - uid: 210 - components: - - flags: InContainer - type: MetaData - - parent: 208 - type: Transform - - canCollide: False - type: Physics - - uid: 283 - components: - - pos: 0.48323703,-16.528206 - parent: 1 - type: Transform - - uid: 422 - components: - - pos: 0.19157034,-16.507359 - parent: 1 - type: Transform -- proto: AmeShielding - entities: - - uid: 17 - components: - - pos: -2.5,-17.5 - parent: 1 - type: Transform - - uid: 18 - components: - - pos: -1.5,-17.5 - parent: 1 - type: Transform - - uid: 20 - components: - - pos: -1.5,-16.5 - parent: 1 - type: Transform - - radius: 2 - enabled: True - type: PointLight - - uid: 22 - components: - - pos: -0.5,-17.5 - parent: 1 - type: Transform - - uid: 24 - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform - - uid: 25 - components: - - pos: -1.5,-15.5 - parent: 1 - type: Transform - - uid: 27 - components: - - pos: -0.5,-16.5 - parent: 1 - type: Transform - - uid: 28 - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform - - uid: 443 - components: - - pos: -2.5,-16.5 - parent: 1 - type: Transform -- proto: APCBasic - entities: - - uid: 39 - components: - - pos: -2.5,-2.5 - parent: 1 - type: Transform - - hasAccess: True - lastExternalState: Good - lastChargeState: Full - type: Apc - - uid: 40 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-9.5 - parent: 1 - type: Transform - - uid: 154 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-18.5 - parent: 1 - type: Transform -- proto: AtmosDeviceFanTiny - entities: - - uid: 41 - components: - - pos: -0.5,-22.5 - parent: 1 - type: Transform - - uid: 42 - components: - - pos: -1.5,-22.5 - parent: 1 - type: Transform - - uid: 44 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-20.5 - parent: 1 - type: Transform - - uid: 45 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-20.5 - parent: 1 - type: Transform - - uid: 48 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-7.5 - parent: 1 - type: Transform - - uid: 49 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-6.5 - parent: 1 - type: Transform - - uid: 50 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-5.5 - parent: 1 - type: Transform - - uid: 51 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-5.5 - parent: 1 - type: Transform - - uid: 52 - components: - - rot: 3.141592653589793 rad - pos: -9.5,-6.5 - parent: 1 - type: Transform - - uid: 107 - components: - - pos: -9.5,-7.5 - parent: 1 - type: Transform -- proto: Bed - entities: - - uid: 60 - components: - - pos: 4.5,-12.5 - parent: 1 - type: Transform - - uid: 61 - components: - - pos: -6.5,-12.5 - parent: 1 - type: Transform -- proto: BedsheetUSA - entities: - - uid: 62 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-8.5 - parent: 1 - type: Transform - - uid: 63 - components: - - pos: 4.5,-12.5 - parent: 1 - type: Transform - - uid: 64 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 1 - type: Transform -- proto: BenchSofaLeft - entities: - - uid: 65 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- proto: BenchSofaMiddle - entities: - - uid: 66 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- proto: BenchSofaRight - entities: - - uid: 67 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-8.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics -- proto: BlastDoor - entities: - - uid: 68 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-22.5 - parent: 1 - type: Transform - - invokeCounter: 2 - links: - - 682 - type: DeviceLinkSink - - uid: 69 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-22.5 - parent: 1 - type: Transform - - invokeCounter: 2 - links: - - 682 - type: DeviceLinkSink -- proto: BoozeDispenser - entities: - - uid: 70 - components: - - pos: -2.5,-5.5 - parent: 1 - type: Transform -- proto: BoxZiptie - entities: - - uid: 76 - components: - - pos: 1.2497222,-1.586154 - parent: 1 - type: Transform -- proto: CableApcExtension - entities: - - uid: 15 - components: - - pos: -2.5,-12.5 - parent: 1 - type: Transform - - uid: 54 - components: - - pos: 1.5,-7.5 - parent: 1 - type: Transform - - uid: 56 - components: - - pos: -1.5,-19.5 - parent: 1 - type: Transform - - uid: 77 - components: - - pos: -5.5,-16.5 - parent: 1 - type: Transform - - uid: 78 - components: - - pos: 1.5,-19.5 - parent: 1 - type: Transform - - uid: 79 - components: - - pos: -3.5,-19.5 - parent: 1 - type: Transform - - uid: 80 - components: - - pos: 2.5,-9.5 - parent: 1 - type: Transform - - uid: 82 - components: - - pos: -8.5,-8.5 - parent: 1 - type: Transform - - uid: 83 - components: - - pos: -0.5,-3.5 - parent: 1 - type: Transform - - uid: 85 - components: - - pos: -0.5,-2.5 - parent: 1 - type: Transform - - uid: 87 - components: - - pos: -0.5,0.5 - parent: 1 - type: Transform - - uid: 89 - components: - - pos: -6.5,-16.5 - parent: 1 - type: Transform - - uid: 92 - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform - - uid: 93 - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform - - uid: 95 - components: - - pos: 4.5,-16.5 - parent: 1 - type: Transform - - uid: 96 - components: - - pos: 2.5,-13.5 - parent: 1 - type: Transform - - uid: 104 - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform - - uid: 105 - components: - - pos: 4.5,-17.5 - parent: 1 - type: Transform - - uid: 109 - components: - - pos: -0.5,-19.5 - parent: 1 - type: Transform - - uid: 110 - components: - - pos: 2.5,-18.5 - parent: 1 - type: Transform - - uid: 111 - components: - - pos: 2.5,-17.5 - parent: 1 - type: Transform - - uid: 112 - components: - - pos: 1.5,-12.5 - parent: 1 - type: Transform - - uid: 113 - components: - - pos: 2.5,-12.5 - parent: 1 - type: Transform - - uid: 114 - components: - - pos: -2.5,-19.5 - parent: 1 - type: Transform - - uid: 115 - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform - - uid: 117 - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform - - uid: 118 - components: - - pos: -0.5,-0.5 - parent: 1 - type: Transform - - uid: 120 - components: - - pos: -4.5,-12.5 - parent: 1 - type: Transform - - uid: 121 - components: - - pos: -1.5,0.5 - parent: 1 - type: Transform - - uid: 124 - components: - - pos: 2.5,-13.5 - parent: 1 - type: Transform - - uid: 125 - components: - - pos: -4.5,-13.5 - parent: 1 - type: Transform - - uid: 126 - components: - - pos: -4.5,-14.5 - parent: 1 - type: Transform - - uid: 127 - components: - - pos: 2.5,-14.5 - parent: 1 - type: Transform - - uid: 129 - components: - - pos: 4.5,-18.5 - parent: 1 - type: Transform - - uid: 138 - components: - - pos: -4.5,-18.5 - parent: 1 - type: Transform - - uid: 140 - components: - - pos: 6.5,-5.5 - parent: 1 - type: Transform - - uid: 141 - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform - - uid: 142 - components: - - pos: -2.5,-2.5 - parent: 1 - type: Transform - - uid: 147 - components: - - pos: 2.5,-11.5 - parent: 1 - type: Transform - - uid: 149 - components: - - pos: -4.5,-7.5 - parent: 1 - type: Transform - - uid: 155 - components: - - pos: 6.5,-8.5 - parent: 1 - type: Transform - - uid: 156 - components: - - pos: -8.5,-6.5 - parent: 1 - type: Transform - - uid: 157 - components: - - pos: -8.5,-5.5 - parent: 1 - type: Transform - - uid: 161 - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform - - uid: 162 - components: - - pos: -3.5,-3.5 - parent: 1 - type: Transform - - uid: 163 - components: - - pos: -0.5,-7.5 - parent: 1 - type: Transform - - uid: 170 - components: - - pos: -6.5,-4.5 - parent: 1 - type: Transform - - uid: 176 - components: - - pos: -8.5,-8.5 - parent: 1 - type: Transform - - uid: 185 - components: - - pos: 1.5,-16.5 - parent: 1 - type: Transform - - uid: 186 - components: - - pos: -3.5,-7.5 - parent: 1 - type: Transform - - uid: 189 - components: - - pos: 0.5,-7.5 - parent: 1 - type: Transform - - uid: 191 - components: - - pos: -4.5,-17.5 - parent: 1 - type: Transform - - uid: 197 - components: - - pos: -4.5,-16.5 - parent: 1 - type: Transform - - uid: 198 - components: - - pos: -4.5,-15.5 - parent: 1 - type: Transform - - uid: 200 - components: - - pos: 2.5,-18.5 - parent: 1 - type: Transform - - uid: 201 - components: - - pos: 6.5,-8.5 - parent: 1 - type: Transform - - uid: 202 - components: - - pos: 6.5,-9.5 - parent: 1 - type: Transform - - uid: 207 - components: - - pos: 2.5,-19.5 - parent: 1 - type: Transform - - uid: 211 - components: - - pos: 6.5,-3.5 - parent: 1 - type: Transform - - uid: 214 - components: - - pos: -4.5,-19.5 - parent: 1 - type: Transform - - uid: 228 - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform - - uid: 232 - components: - - pos: -2.5,-7.5 - parent: 1 - type: Transform - - uid: 239 - components: - - pos: -3.5,-16.5 - parent: 1 - type: Transform - - uid: 243 - components: - - pos: -3.5,-16.5 - parent: 1 - type: Transform - - uid: 249 - components: - - pos: 6.5,-7.5 - parent: 1 - type: Transform - - uid: 251 - components: - - pos: 6.5,-8.5 - parent: 1 - type: Transform - - uid: 252 - components: - - pos: -8.5,-7.5 - parent: 1 - type: Transform - - uid: 258 - components: - - pos: 0.5,-12.5 - parent: 1 - type: Transform - - uid: 270 - components: - - pos: -1.5,-20.5 - parent: 1 - type: Transform - - uid: 303 - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform - - uid: 314 - components: - - pos: -5.5,-19.5 - parent: 1 - type: Transform - - uid: 315 - components: - - pos: -6.5,-19.5 - parent: 1 - type: Transform - - uid: 316 - components: - - pos: 3.5,-19.5 - parent: 1 - type: Transform - - uid: 317 - components: - - pos: 4.5,-19.5 - parent: 1 - type: Transform - - uid: 347 - components: - - pos: 2.5,-15.5 - parent: 1 - type: Transform - - uid: 352 - components: - - pos: -3.5,-12.5 - parent: 1 - type: Transform - - uid: 357 - components: - - pos: 2.5,-14.5 - parent: 1 - type: Transform - - uid: 358 - components: - - pos: -5.5,-4.5 - parent: 1 - type: Transform - - uid: 359 - components: - - pos: -5.5,-3.5 - parent: 1 - type: Transform - - uid: 364 - components: - - pos: -8.5,-3.5 - parent: 1 - type: Transform - - uid: 366 - components: - - pos: -8.5,-9.5 - parent: 1 - type: Transform - - uid: 374 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform - - uid: 383 - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform - - uid: 502 - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform - - uid: 505 - components: - - pos: -8.5,-7.5 - parent: 1 - type: Transform - - uid: 655 - components: - - pos: 2.5,-3.5 - parent: 1 - type: Transform - - uid: 670 - components: - - pos: 2.5,-16.5 - parent: 1 - type: Transform - - uid: 677 - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform - - uid: 679 - components: - - pos: 0.5,-3.5 - parent: 1 - type: Transform - - uid: 680 - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform - - uid: 689 - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform - - uid: 691 - components: - - pos: 6.5,-4.5 - parent: 1 - type: Transform - - uid: 712 - components: - - pos: -4.5,-11.5 - parent: 1 - type: Transform - - uid: 735 - components: - - pos: -1.5,-12.5 - parent: 1 - type: Transform - - uid: 736 - components: - - pos: -0.5,-12.5 - parent: 1 - type: Transform - - uid: 768 - components: - - pos: -4.5,-17.5 - parent: 1 - type: Transform - - uid: 771 - components: - - pos: 5.5,-4.5 - parent: 1 - type: Transform - - uid: 772 - components: - - pos: 4.5,-4.5 - parent: 1 - type: Transform - - uid: 773 - components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform - - uid: 774 - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform -- proto: CableHV - entities: - - uid: 30 - components: - - pos: 1.5,-14.5 - parent: 1 - type: Transform - - uid: 31 - components: - - pos: 2.5,-14.5 - parent: 1 - type: Transform - - uid: 32 - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform - - uid: 34 - components: - - pos: 0.5,-14.5 - parent: 1 - type: Transform - - uid: 43 - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform - - uid: 58 - components: - - pos: 0.5,-17.5 - parent: 1 - type: Transform - - uid: 227 - components: - - pos: -4.5,-13.5 - parent: 1 - type: Transform - - uid: 286 - components: - - pos: -0.5,-14.5 - parent: 1 - type: Transform - - uid: 294 - components: - - pos: 2.5,-13.5 - parent: 1 - type: Transform - - uid: 324 - components: - - pos: -1.5,-14.5 - parent: 1 - type: Transform - - uid: 326 - components: - - pos: -2.5,-14.5 - parent: 1 - type: Transform - - uid: 328 - components: - - pos: -3.5,-14.5 - parent: 1 - type: Transform - - uid: 329 - components: - - pos: -4.5,-14.5 - parent: 1 - type: Transform -- proto: CableMV - entities: - - uid: 36 - components: - - pos: -7.5,-11.5 - parent: 1 - type: Transform - - uid: 90 - components: - - pos: 4.5,-18.5 - parent: 1 - type: Transform - - uid: 91 - components: - - pos: 5.5,-11.5 - parent: 1 - type: Transform - - uid: 94 - components: - - pos: -4.5,-11.5 - parent: 1 - type: Transform - - uid: 108 - components: - - pos: -3.5,-6.5 - parent: 1 - type: Transform - - uid: 116 - components: - - pos: -2.5,-6.5 - parent: 1 - type: Transform - - uid: 132 - components: - - pos: 5.5,-16.5 - parent: 1 - type: Transform - - uid: 143 - components: - - pos: 4.5,-16.5 - parent: 1 - type: Transform - - uid: 152 - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform - - uid: 166 - components: - - pos: -1.5,-5.5 - parent: 1 - type: Transform - - uid: 173 - components: - - pos: -1.5,-4.5 - parent: 1 - type: Transform - - uid: 174 - components: - - pos: 4.5,-17.5 - parent: 1 - type: Transform - - uid: 177 - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform - - uid: 180 - components: - - pos: -4.5,-13.5 - parent: 1 - type: Transform - - uid: 190 - components: - - pos: 2.5,-14.5 - parent: 1 - type: Transform - - uid: 225 - components: - - pos: 4.5,-14.5 - parent: 1 - type: Transform - - uid: 256 - components: - - pos: 5.5,-14.5 - parent: 1 - type: Transform - - uid: 257 - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform - - uid: 262 - components: - - pos: -7.5,-14.5 - parent: 1 - type: Transform - - uid: 305 - components: - - pos: -4.5,-10.5 - parent: 1 - type: Transform - - uid: 306 - components: - - pos: -4.5,-9.5 - parent: 1 - type: Transform - - uid: 307 - components: - - pos: -4.5,-8.5 - parent: 1 - type: Transform - - uid: 308 - components: - - pos: -4.5,-7.5 - parent: 1 - type: Transform - - uid: 309 - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform - - uid: 318 - components: - - pos: 4.5,-10.5 - parent: 1 - type: Transform - - uid: 319 - components: - - pos: 5.5,-10.5 - parent: 1 - type: Transform - - uid: 325 - components: - - pos: 2.5,-13.5 - parent: 1 - type: Transform - - uid: 327 - components: - - pos: 3.5,-10.5 - parent: 1 - type: Transform - - uid: 330 - components: - - pos: 2.5,-9.5 - parent: 1 - type: Transform - - uid: 331 - components: - - pos: 2.5,-10.5 - parent: 1 - type: Transform - - uid: 332 - components: - - pos: 2.5,-11.5 - parent: 1 - type: Transform - - uid: 333 - components: - - pos: 2.5,-12.5 - parent: 1 - type: Transform - - uid: 338 - components: - - pos: 6.5,-14.5 - parent: 1 - type: Transform - - uid: 339 - components: - - pos: 6.5,-15.5 - parent: 1 - type: Transform - - uid: 340 - components: - - pos: 6.5,-16.5 - parent: 1 - type: Transform - - uid: 344 - components: - - pos: -4.5,-12.5 - parent: 1 - type: Transform - - uid: 353 - components: - - pos: -7.5,-10.5 - parent: 1 - type: Transform - - uid: 367 - components: - - pos: -5.5,-10.5 - parent: 1 - type: Transform - - uid: 368 - components: - - pos: -6.5,-10.5 - parent: 1 - type: Transform - - uid: 376 - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform - - uid: 377 - components: - - pos: -2.5,-2.5 - parent: 1 - type: Transform - - uid: 570 - components: - - pos: -8.5,-14.5 - parent: 1 - type: Transform - - uid: 571 - components: - - pos: -8.5,-15.5 - parent: 1 - type: Transform - - uid: 579 - components: - - pos: -6.5,-14.5 - parent: 1 - type: Transform - - uid: 633 - components: - - pos: -8.5,-16.5 - parent: 1 - type: Transform - - uid: 668 - components: - - pos: -4.5,-14.5 - parent: 1 - type: Transform - - uid: 740 - components: - - pos: -5.5,-14.5 - parent: 1 - type: Transform -- proto: CableTerminal - entities: - - uid: 35 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-16.5 - parent: 1 - type: Transform -- proto: CargoPallet - entities: - - uid: 385 - components: - - pos: -5.5,-14.5 - parent: 1 - type: Transform - - uid: 386 - components: - - pos: -7.5,-17.5 - parent: 1 - type: Transform - - uid: 387 - components: - - pos: -7.5,-14.5 - parent: 1 - type: Transform - - uid: 388 - components: - - pos: -5.5,-17.5 - parent: 1 - type: Transform -- proto: ChairPilotSeat - entities: - - uid: 389 - components: - - rot: 3.141592653589793 rad - pos: -0.5,0.5 - parent: 1 - type: Transform - - uid: 390 - components: - - rot: 3.141592653589793 rad - pos: -1.5,0.5 - parent: 1 - type: Transform -- proto: chem_master - entities: - - uid: 391 - components: - - pos: 3.5,-7.5 - parent: 1 - type: Transform -- proto: ClothingHeadHatBH - entities: - - uid: 446 - components: - - pos: -2.521595,1.6588583 - parent: 1 - type: Transform -- proto: ClothingOuterCoatBHTrench - entities: - - uid: 588 - components: - - pos: -2.5111785,1.7005539 - parent: 1 - type: Transform -- proto: Cobweb1 - entities: - - uid: 406 - components: - - pos: -4.5,-10.5 - parent: 1 - type: Transform - - uid: 407 - components: - - pos: -6.5,-12.5 - parent: 1 - type: Transform - - uid: 408 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 1 - type: Transform - - uid: 409 - components: - - pos: -3.5,-12.5 - parent: 1 - type: Transform - - uid: 410 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 1 - type: Transform - - uid: 411 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-12.5 - parent: 1 - type: Transform - - uid: 412 - components: - - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 413 - components: - - pos: -7.5,-14.5 - parent: 1 - type: Transform -- proto: Cobweb2 - entities: - - uid: 414 - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform - - uid: 415 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-5.5 - parent: 1 - type: Transform - - uid: 416 - components: - - pos: -3.5,-10.5 - parent: 1 - type: Transform - - uid: 417 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 1 - type: Transform - - uid: 418 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 1 - type: Transform - - uid: 419 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-7.5 - parent: 1 - type: Transform - - uid: 420 - components: - - pos: 5.5,-14.5 - parent: 1 - type: Transform - - uid: 784 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-6.5 - parent: 1 - type: Transform - - uid: 785 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-7.5 - parent: 1 - type: Transform - - uid: 786 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1 - type: Transform - - uid: 787 - components: - - pos: 0.5,-5.5 - parent: 1 - type: Transform - - uid: 788 - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform - - uid: 789 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 1 - type: Transform -- proto: ComputerSalvageExpedition - entities: - - uid: 398 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 1 - type: Transform -- proto: ComputerShuttle - entities: - - uid: 423 - components: - - pos: -0.5,1.5 - parent: 1 - type: Transform -- proto: ComputerStationRecords - entities: - - uid: 424 - components: - - pos: -1.5,1.5 - parent: 1 - type: Transform -- proto: CrateChemistryD - entities: - - uid: 378 - components: - - pos: -5.5,-17.5 - parent: 1 - type: Transform -- proto: CrateChemistryP - entities: - - uid: 379 - components: - - pos: -5.5,-14.5 - parent: 1 - type: Transform -- proto: CrateChemistryS - entities: - - uid: 380 - components: - - pos: -7.5,-14.5 - parent: 1 - type: Transform -- proto: CrowbarRed - entities: - - uid: 425 - components: - - pos: -2.5558772,1.1215649 - parent: 1 - type: Transform -- proto: DefibrillatorCabinetFilled - entities: - - uid: 426 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-9.5 - parent: 1 - type: Transform -- proto: DonkpocketBoxSpawner - entities: - - uid: 75 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-6.5 - parent: 1 - type: Transform -- proto: DoorElectronics - entities: - - uid: 428 - components: - - flags: InContainer - type: MetaData - - parent: 427 - type: Transform - - canCollide: False - type: Physics - - uid: 430 - components: - - flags: InContainer - type: MetaData - - parent: 429 - type: Transform - - canCollide: False - type: Physics - - uid: 432 - components: - - flags: InContainer - type: MetaData - - parent: 431 - type: Transform - - canCollide: False - type: Physics - - uid: 434 - components: - - flags: InContainer - type: MetaData - - parent: 433 - type: Transform - - canCollide: False - type: Physics - - uid: 436 - components: - - flags: InContainer - type: MetaData - - parent: 435 - type: Transform - - canCollide: False - type: Physics - - uid: 438 - components: - - flags: InContainer - type: MetaData - - parent: 437 - type: Transform - - canCollide: False - type: Physics - - uid: 440 - components: - - flags: InContainer - type: MetaData - - parent: 439 - type: Transform - - canCollide: False - type: Physics - - uid: 442 - components: - - flags: InContainer - type: MetaData - - parent: 441 - type: Transform - - canCollide: False - type: Physics -- proto: DrinkGlass - entities: - - uid: 454 - components: - - rot: -1.5707963267948966 rad - pos: -3.6303406,-7.296933 - parent: 1 - type: Transform - - uid: 455 - components: - - pos: -3.2449188,-7.255266 - parent: 1 - type: Transform -- proto: DrinkMugDog - entities: - - uid: 456 - components: - - pos: -2.6394038,1.270113 - parent: 1 - type: Transform -- proto: Eggshells - entities: - - uid: 341 - components: - - pos: 1.239249,-15.080102 - parent: 1 - type: Transform - - uid: 351 - components: - - pos: 2.30122,-15.863964 - parent: 1 - type: Transform - - uid: 354 - components: - - pos: 2.715496,-18.09944 - parent: 1 - type: Transform - - uid: 355 - components: - - pos: 0.040803254,-18.866049 - parent: 1 - type: Transform - - uid: 363 - components: - - pos: 1.0616367,-19.105799 - parent: 1 - type: Transform - - uid: 370 - components: - - pos: 1.2866013,-18.318907 - parent: 1 - type: Transform - - uid: 451 - components: - - pos: 3.7988815,-15.246962 - parent: 1 - type: Transform - - uid: 496 - components: - - pos: 2.621189,-16.868666 - parent: 1 - type: Transform - - uid: 513 - components: - - pos: -0.4859361,-14.443678 - parent: 1 - type: Transform -- proto: EmergencyLight - entities: - - uid: 301 - components: - - pos: -3.5,-10.5 - parent: 1 - type: Transform - - uid: 302 - components: - - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 310 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-7.5 - parent: 1 - type: Transform - - uid: 311 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 1 - type: Transform - - uid: 312 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 1 - type: Transform - - uid: 313 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-6.5 - parent: 1 - type: Transform - - uid: 458 - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform - - uid: 459 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 1 - type: Transform - - uid: 460 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-19.5 - parent: 1 - type: Transform -- proto: ExtinguisherCabinetFilled - entities: - - uid: 461 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 1 - type: Transform - - uid: 462 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 1 - type: Transform -- proto: FaxMachineShip - entities: - - uid: 463 - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform -- proto: FireAlarm - entities: - - uid: 464 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 477 - - 478 - type: DeviceNetwork - - devices: - - 478 - - 477 - type: DeviceList - - uid: 465 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-9.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 470 - - 471 - type: DeviceNetwork - - devices: - - 470 - - 471 - type: DeviceList - - uid: 466 - components: - - pos: -3.5,-2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 469 - - 482 - - 481 - - 468 - - 480 - - 479 - type: DeviceNetwork - - devices: - - 480 - - 468 - - 481 - - 482 - - 469 - - 479 - type: DeviceList -- proto: FireAxeCabinetFilled - entities: - - uid: 467 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 1 - type: Transform - - locked: False - type: Lock -- proto: Firelock - entities: - - uid: 183 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-12.5 - parent: 1 - type: Transform - - uid: 194 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 1 - type: Transform - - uid: 468 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 466 - type: DeviceNetwork - - uid: 469 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 466 - type: DeviceNetwork - - uid: 470 - components: - - pos: -1.5,-9.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 465 - type: DeviceNetwork - - uid: 471 - components: - - pos: -0.5,-9.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 465 - type: DeviceNetwork -- proto: FirelockEdge - entities: - - uid: 181 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-7.5 - parent: 1 - type: Transform -- proto: FirelockGlass - entities: - - uid: 192 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 1 - type: Transform - - uid: 193 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 1 - type: Transform - - uid: 477 - components: - - pos: -1.5,-20.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 464 - type: DeviceNetwork - - uid: 478 - components: - - pos: -0.5,-20.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 464 - type: DeviceNetwork - - uid: 479 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 466 - type: DeviceNetwork - - uid: 480 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-4.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 466 - type: DeviceNetwork - - uid: 481 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 466 - type: DeviceNetwork - - uid: 482 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - type: Transform - - ShutdownSubscribers: - - 466 - type: DeviceNetwork -- proto: FoodEgg - entities: - - uid: 47 - components: - - name: Spider egg - type: MetaData - - pos: 3.9900136,-16.748203 - parent: 1 - type: Transform - - uid: 360 - components: - - name: Spider egg - type: MetaData - - pos: 4.104988,-16.852442 - parent: 1 - type: Transform - - uid: 375 - components: - - name: Spider egg - type: MetaData - - pos: 4.2191806,-16.748203 - parent: 1 - type: Transform - - uid: 444 - components: - - name: Spider egg - type: MetaData - - pos: 3.9691806,-16.92541 - parent: 1 - type: Transform - - uid: 514 - components: - - name: Spider egg - type: MetaData - - pos: 4.1926556,-17.002691 - parent: 1 - type: Transform -- proto: FoodPlateSmallTrash - entities: - - uid: 486 - components: - - pos: -3.6462908,-7.458515 - parent: 1 - type: Transform - - uid: 487 - components: - - pos: -2.3754575,-6.4480987 - parent: 1 - type: Transform -- proto: GasPassiveVent - entities: - - uid: 101 - components: - - pos: -7.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 150 - components: - - pos: 5.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 488 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 489 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasPipeBend - entities: - - uid: 268 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasPipeFourway - entities: - - uid: 221 - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 275 - components: - - pos: -1.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasPipeStraight - entities: - - uid: 88 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 151 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 168 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 171 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 195 - components: - - pos: -1.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 199 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 203 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 204 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 205 - components: - - pos: -1.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 229 - components: - - pos: -1.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 264 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 266 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 267 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 269 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 272 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 273 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 276 - components: - - pos: -1.5,-2.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 277 - components: - - pos: -1.5,-1.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 278 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 281 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 287 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 293 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 298 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 335 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-15.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 500 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-12.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 501 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 503 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-14.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 504 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-11.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 506 - components: - - pos: -4.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 508 - components: - - pos: -4.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 509 - components: - - pos: 2.5,-5.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 511 - components: - - pos: 2.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 512 - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 521 - components: - - pos: -4.5,-13.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 523 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 524 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 525 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 526 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasPipeTJunction - entities: - - uid: 169 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 196 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 265 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 527 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 529 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 530 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 531 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 533 - components: - - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 534 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 536 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GasVentScrubber - entities: - - uid: 106 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 122 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-7.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 187 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 215 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 274 - components: - - pos: -1.5,-0.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 537 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 538 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 539 - components: - - pos: -4.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 540 - components: - - pos: 2.5,-3.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 544 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor - - uid: 545 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-16.5 - parent: 1 - type: Transform - - color: '#990000FF' - type: AtmosPipeColor -- proto: GravityGeneratorMini - entities: - - uid: 546 - components: - - pos: 1.5,-20.5 - parent: 1 - type: Transform -- proto: Grille - entities: - - uid: 99 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 1 - type: Transform - - uid: 100 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-16.5 - parent: 1 - type: Transform - - uid: 102 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-15.5 - parent: 1 - type: Transform - - uid: 160 - components: - - pos: -8.5,-8.5 - parent: 1 - type: Transform - - uid: 289 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 1 - type: Transform - - uid: 295 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-16.5 - parent: 1 - type: Transform - - uid: 322 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 1 - type: Transform - - uid: 348 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-14.5 - parent: 1 - type: Transform - - uid: 369 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-10.5 - parent: 1 - type: Transform - - uid: 392 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-10.5 - parent: 1 - type: Transform - - uid: 402 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-11.5 - parent: 1 - type: Transform - - uid: 403 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 1 - type: Transform - - uid: 453 - components: - - pos: -2.5,-11.5 - parent: 1 - type: Transform - - uid: 551 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 1 - type: Transform - - uid: 552 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,2.5 - parent: 1 - type: Transform - - uid: 553 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 554 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,2.5 - parent: 1 - type: Transform - - uid: 555 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,1.5 - parent: 1 - type: Transform - - uid: 556 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 557 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1 - type: Transform - - uid: 558 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 1 - type: Transform - - uid: 559 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 1 - type: Transform - - uid: 560 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 1 - type: Transform - - uid: 561 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 1 - type: Transform - - uid: 562 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 1 - type: Transform - - uid: 563 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 1 - type: Transform - - uid: 564 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 569 - components: - - pos: 6.5,-8.5 - parent: 1 - type: Transform - - uid: 572 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 1 - type: Transform - - uid: 573 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-10.5 - parent: 1 - type: Transform - - uid: 574 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-10.5 - parent: 1 - type: Transform - - uid: 577 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-10.5 - parent: 1 - type: Transform - - uid: 578 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-10.5 - parent: 1 - type: Transform - - uid: 601 - components: - - pos: 0.5,-11.5 - parent: 1 - type: Transform -- proto: GunSafeShuttleT2Spawner - entities: - - uid: 607 - components: - - pos: -5.5,-1.5 - parent: 1 - type: Transform -- proto: Gyroscope - entities: - - uid: 581 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-20.5 - parent: 1 - type: Transform -- proto: HighSecCaptainLocked - entities: - - uid: 219 - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform - - uid: 583 - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform -- proto: HospitalCurtainsOpen - entities: - - uid: 584 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 1 - type: Transform - - uid: 585 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 1 - type: Transform -- proto: IntercomCommon - entities: - - uid: 586 - components: - - pos: 0.5,1.5 - parent: 1 - type: Transform -- proto: KitchenMicrowave - entities: - - uid: 587 - components: - - pos: -3.5,-5.5 - parent: 1 - type: Transform -- proto: LightTubeBroken - entities: - - uid: 291 - components: - - flags: InContainer - type: MetaData - - parent: 12 - type: Transform - - canCollide: False - type: Physics - - uid: 334 - components: - - flags: InContainer - type: MetaData - - parent: 349 - type: Transform - - canCollide: False - type: Physics - - uid: 345 - components: - - rot: 3.141592653589793 rad - pos: -5.2790174,-3.3795156 - parent: 1 - type: Transform - - uid: 445 - components: - - flags: InContainer - type: MetaData - - parent: 297 - type: Transform - - canCollide: False - type: Physics - - uid: 617 - components: - - flags: InContainer - type: MetaData - - parent: 260 - type: Transform - - canCollide: False - type: Physics - - uid: 619 - components: - - flags: InContainer - type: MetaData - - parent: 290 - type: Transform - - canCollide: False - type: Physics - - uid: 623 - components: - - flags: InContainer - type: MetaData - - parent: 613 - type: Transform - - canCollide: False - type: Physics - - uid: 685 - components: - - flags: InContainer - type: MetaData - - parent: 615 - type: Transform - - canCollide: False - type: Physics -- proto: LockerMercenaryFilled - entities: - - uid: 603 - components: - - anchored: True - pos: -5.5,-11.5 - parent: 1 - type: Transform - - bodyType: Static - type: Physics - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerParamedicFilledHardsuit - entities: - - uid: 589 - components: - - pos: 0.5,-5.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerSalvageSpecialistFilledHardsuit - entities: - - uid: 394 - components: - - pos: 2.5,-19.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: LockerWallMedicalFilled - entities: - - uid: 591 - components: - - pos: 1.5,-5.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: MachineFrameDestroyed - entities: - - uid: 593 - components: - - pos: 5.5,-17.5 - parent: 1 - type: Transform - - uid: 594 - components: - - pos: 3.5,-14.5 - parent: 1 - type: Transform -- proto: MedicalBed - entities: - - uid: 596 - components: - - pos: 2.5,-8.5 - parent: 1 - type: Transform -- proto: PaperBin10 - entities: - - uid: 485 - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform -- proto: PlushieSpaceLizard - entities: - - uid: 598 - components: - - name: space lizard plushie (Ash) - type: MetaData - - pos: -2.4632607,1.6259737 - parent: 1 - type: Transform - - originalName: space lizard plushie - currentLabel: Ash - type: Label -- proto: PosterContrabandBountyHunters - entities: - - uid: 599 - components: - - pos: -4.5,-5.5 - parent: 1 - type: Transform -- proto: PosterContrabandLustyExomorph - entities: - - uid: 130 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-9.5 - parent: 1 - type: Transform -- proto: PosterLegitJustAWeekAway - entities: - - uid: 602 - components: - - pos: 2.5,-5.5 - parent: 1 - type: Transform -- proto: PowerCellRecharger - entities: - - uid: 26 - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform -- proto: Poweredlight - entities: - - uid: 605 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 1 - type: Transform - - uid: 608 - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform - - uid: 722 - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform - - uid: 733 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-6.5 - parent: 1 - type: Transform -- proto: PoweredlightEmpty - entities: - - uid: 12 - components: - - pos: 4.5,-14.5 - parent: 1 - type: Transform - - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 291 - type: ContainerContainer - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 29 - components: - - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 1 - type: Transform - - uid: 260 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-6.5 - parent: 1 - type: Transform - - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 617 - type: ContainerContainer - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 290 - components: - - pos: -5.5,-3.5 - parent: 1 - type: Transform - - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 619 - type: ContainerContainer - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 297 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-8.5 - parent: 1 - type: Transform - - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 445 - type: ContainerContainer - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 321 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-18.5 - parent: 1 - type: Transform - - uid: 349 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-12.5 - parent: 1 - type: Transform - - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 334 - type: ContainerContainer - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 452 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-18.5 - parent: 1 - type: Transform - - uid: 484 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-12.5 - parent: 1 - type: Transform -- proto: PoweredlightSodium - entities: - - uid: 84 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 1 - type: Transform - - softness: 0.5 - energy: 4 - color: '#FFAF38FF' - type: PointLight - - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 280 - type: ContainerContainer - - powerLoad: 100 - type: ApcPowerReceiver - - uid: 613 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: PointLight - - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 623 - type: ContainerContainer - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 615 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 1 - type: Transform - - enabled: False - type: PointLight - - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 685 - type: ContainerContainer - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 622 - components: - - pos: -6.5,-14.5 - parent: 1 - type: Transform -- proto: PoweredSmallLight - entities: - - uid: 734 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-21.5 - parent: 1 - type: Transform -- proto: Rack - entities: - - uid: 72 - components: - - pos: 3.5,-1.5 - parent: 1 - type: Transform - - uid: 226 - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform - - uid: 625 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 1 - type: Transform -- proto: RadioHandheld - entities: - - uid: 74 - components: - - pos: 3.8222036,-1.2021818 - parent: 1 - type: Transform - - uid: 618 - components: - - pos: 3.4472036,-1.1917572 - parent: 1 - type: Transform - - uid: 620 - components: - - pos: 3.5826201,-1.5565939 - parent: 1 - type: Transform - - uid: 626 - components: - - pos: 3.2805371,-1.6191378 - parent: 1 - type: Transform -- proto: Railing - entities: - - uid: 172 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-9.5 - parent: 1 - type: Transform - - uid: 365 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 1 - type: Transform - - uid: 631 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-2.5 - parent: 1 - type: Transform - - uid: 632 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-2.5 - parent: 1 - type: Transform -- proto: RandomSpawner - entities: - - uid: 635 - components: - - pos: -8.5,-7.5 - parent: 1 - type: Transform - - uid: 636 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform - - uid: 637 - components: - - pos: 2.5,-12.5 - parent: 1 - type: Transform - - uid: 642 - components: - - pos: -3.5,-15.5 - parent: 1 - type: Transform - - uid: 643 - components: - - pos: 5.5,-14.5 - parent: 1 - type: Transform - - uid: 644 - components: - - pos: -6.5,-16.5 - parent: 1 - type: Transform -- proto: RandomSpawner100 - entities: - - uid: 604 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-12.5 - parent: 1 - type: Transform - - uid: 645 - components: - - pos: -2.5,-7.5 - parent: 1 - type: Transform - - uid: 646 - components: - - pos: -4.5,-6.5 - parent: 1 - type: Transform - - uid: 648 - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform - - uid: 649 - components: - - pos: 5.5,-5.5 - parent: 1 - type: Transform - - uid: 650 - components: - - pos: -5.5,-3.5 - parent: 1 - type: Transform - - uid: 651 - components: - - pos: -0.5,-12.5 - parent: 1 - type: Transform - - uid: 652 - components: - - pos: -1.5,-0.5 - parent: 1 - type: Transform - - uid: 653 - components: - - pos: 6.5,-6.5 - parent: 1 - type: Transform - - uid: 654 - components: - - pos: -0.5,-1.5 - parent: 1 - type: Transform -- proto: ReinforcedWindow - entities: - - uid: 103 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-15.5 - parent: 1 - type: Transform - - uid: 213 - components: - - pos: -8.5,-8.5 - parent: 1 - type: Transform - - uid: 250 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-16.5 - parent: 1 - type: Transform - - uid: 300 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-16.5 - parent: 1 - type: Transform - - uid: 304 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 1 - type: Transform - - uid: 395 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-10.5 - parent: 1 - type: Transform - - uid: 396 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-10.5 - parent: 1 - type: Transform - - uid: 404 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-11.5 - parent: 1 - type: Transform - - uid: 566 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-14.5 - parent: 1 - type: Transform - - uid: 567 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-14.5 - parent: 1 - type: Transform - - uid: 595 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-11.5 - parent: 1 - type: Transform - - uid: 657 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1 - type: Transform - - uid: 658 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 1 - type: Transform - - uid: 659 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 1 - type: Transform - - uid: 660 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,2.5 - parent: 1 - type: Transform - - uid: 661 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,2.5 - parent: 1 - type: Transform - - uid: 662 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,2.5 - parent: 1 - type: Transform - - uid: 663 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,1.5 - parent: 1 - type: Transform - - uid: 664 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 669 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 1 - type: Transform - - uid: 671 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-10.5 - parent: 1 - type: Transform - - uid: 672 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-10.5 - parent: 1 - type: Transform - - uid: 675 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-10.5 - parent: 1 - type: Transform - - uid: 676 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-10.5 - parent: 1 - type: Transform -- proto: ShuttersWindowOpen - entities: - - uid: 427 - components: - - pos: -2.5,2.5 - parent: 1 - type: Transform - - containers: - board: !type:Container - showEnts: False - occludes: True - ents: - - 428 - type: ContainerContainer - - address: 7AD6-CAD9 - receiveFrequency: 1280 - type: DeviceNetwork - - links: - - 400 - type: DeviceLinkSink - - uid: 429 - components: - - pos: -1.5,2.5 - parent: 1 - type: Transform - - containers: - board: !type:Container - showEnts: False - occludes: True - ents: - - 430 - type: ContainerContainer - - address: 3166-CC55 - receiveFrequency: 1280 - type: DeviceNetwork - - links: - - 400 - type: DeviceLinkSink - - uid: 431 - components: - - pos: -0.5,2.5 - parent: 1 - type: Transform - - containers: - board: !type:Container - showEnts: False - occludes: True - ents: - - 432 - type: ContainerContainer - - address: 3B80-A1A0 - receiveFrequency: 1280 - type: DeviceNetwork - - links: - - 400 - type: DeviceLinkSink - - uid: 433 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform - - containers: - board: !type:Container - showEnts: False - occludes: True - ents: - - 434 - type: ContainerContainer - - address: 2F85-2492 - receiveFrequency: 1280 - type: DeviceNetwork - - links: - - 400 - type: DeviceLinkSink - - uid: 435 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,1.5 - parent: 1 - type: Transform - - containers: - board: !type:Container - showEnts: False - occludes: True - ents: - - 436 - type: ContainerContainer - - address: 04F7-DBDF - receiveFrequency: 1280 - type: DeviceNetwork - - links: - - 400 - type: DeviceLinkSink - - uid: 437 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,0.5 - parent: 1 - type: Transform - - containers: - board: !type:Container - showEnts: False - occludes: True - ents: - - 438 - type: ContainerContainer - - address: 782C-670A - receiveFrequency: 1280 - type: DeviceNetwork - - links: - - 400 - type: DeviceLinkSink - - uid: 439 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,0.5 - parent: 1 - type: Transform - - containers: - board: !type:Container - showEnts: False - occludes: True - ents: - - 440 - type: ContainerContainer - - address: 5183-70B3 - receiveFrequency: 1280 - type: DeviceNetwork - - links: - - 400 - type: DeviceLinkSink - - uid: 441 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,1.5 - parent: 1 - type: Transform - - containers: - board: !type:Container - showEnts: False - occludes: True - ents: - - 442 - type: ContainerContainer - - address: 4560-6F49 - receiveFrequency: 1280 - type: DeviceNetwork - - links: - - 400 - type: DeviceLinkSink -- proto: SignalButton - entities: - - uid: 285 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-13.5 - parent: 1 - type: Transform - - linkedPorts: - 5: - - Pressed: DoorBolt - type: DeviceLinkSource - - uid: 400 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 1 - type: Transform - - linkedPorts: - 439: - - Pressed: Toggle - 441: - - Pressed: Toggle - 427: - - Pressed: Toggle - 429: - - Pressed: Toggle - 431: - - Pressed: Toggle - 433: - - Pressed: Toggle - 435: - - Pressed: Toggle - 437: - - Pressed: Toggle - type: DeviceLinkSource - - uid: 682 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 1 - type: Transform - - linkedPorts: - 69: - - Pressed: Toggle - 68: - - Pressed: Toggle - type: DeviceLinkSource - - type: ItemCooldown -- proto: SignArmory - entities: - - uid: 686 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 1 - type: Transform -- proto: SignGravity - entities: - - uid: 688 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-20.5 - parent: 1 - type: Transform -- proto: SignPrison - entities: - - uid: 218 - components: - - pos: 0.5,-10.5 - parent: 1 - type: Transform -- proto: SignSecureSmallRed - entities: - - uid: 206 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-2.5 - parent: 1 - type: Transform -- proto: SinkWide - entities: - - uid: 690 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-8.5 - parent: 1 - type: Transform -- proto: SMESBasic - entities: - - uid: 71 - components: - - pos: 0.5,-15.5 - parent: 1 - type: Transform -- proto: SodiumLightTube - entities: - - uid: 280 - components: - - flags: InContainer - type: MetaData - - parent: 84 - type: Transform - - canCollide: False - type: Physics -- proto: SpawnPointLatejoin - entities: - - uid: 627 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-7.5 - parent: 1 - type: Transform -- proto: SpawnPointMedicalDoctor - entities: - - uid: 693 - components: - - pos: 1.5,-7.5 - parent: 1 - type: Transform -- proto: SpawnPointMercenary - entities: - - uid: 694 - components: - - pos: -4.5,-11.5 - parent: 1 - type: Transform -- proto: SpiderWeb - entities: - - uid: 14 - components: - - pos: -2.5,-18.5 - parent: 1 - type: Transform - - uid: 33 - components: - - pos: -8.5,-7.5 - parent: 1 - type: Transform - - uid: 59 - components: - - pos: -2.5,-15.5 - parent: 1 - type: Transform - - uid: 131 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-4.5 - parent: 1 - type: Transform - - uid: 133 - components: - - pos: 0.5,-13.5 - parent: 1 - type: Transform - - uid: 144 - components: - - pos: -4.5,-2.5 - parent: 1 - type: Transform - - uid: 212 - components: - - pos: 4.5,-17.5 - parent: 1 - type: Transform - - uid: 279 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 1 - type: Transform - - uid: 299 - components: - - pos: -1.5,-7.5 - parent: 1 - type: Transform - - uid: 337 - components: - - pos: -6.5,-16.5 - parent: 1 - type: Transform - - uid: 342 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-16.5 - parent: 1 - type: Transform - - uid: 381 - components: - - pos: 0.5,-17.5 - parent: 1 - type: Transform - - uid: 382 - components: - - pos: -5.5,-17.5 - parent: 1 - type: Transform - - uid: 384 - components: - - pos: -7.5,-17.5 - parent: 1 - type: Transform - - uid: 401 - components: - - pos: -2.5,-17.5 - parent: 1 - type: Transform - - uid: 447 - components: - - pos: -1.5,-10.5 - parent: 1 - type: Transform - - uid: 449 - components: - - pos: -3.5,-19.5 - parent: 1 - type: Transform - - uid: 457 - components: - - pos: -4.5,-19.5 - parent: 1 - type: Transform - - uid: 472 - components: - - pos: 0.5,-16.5 - parent: 1 - type: Transform - - uid: 473 - components: - - pos: -2.5,-6.5 - parent: 1 - type: Transform - - uid: 474 - components: - - pos: -7.5,-4.5 - parent: 1 - type: Transform - - uid: 475 - components: - - pos: -0.5,-5.5 - parent: 1 - type: Transform - - uid: 476 - components: - - pos: -2.5,-3.5 - parent: 1 - type: Transform - - uid: 490 - components: - - pos: 3.5,-4.5 - parent: 1 - type: Transform - - uid: 491 - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform - - uid: 492 - components: - - pos: 3.5,-17.5 - parent: 1 - type: Transform - - uid: 493 - components: - - pos: 2.5,-17.5 - parent: 1 - type: Transform - - uid: 494 - components: - - pos: -5.5,-4.5 - parent: 1 - type: Transform - - uid: 495 - components: - - pos: 4.5,-16.5 - parent: 1 - type: Transform - - uid: 497 - components: - - pos: -4.5,-18.5 - parent: 1 - type: Transform - - uid: 498 - components: - - pos: -2.5,0.5 - parent: 1 - type: Transform - - uid: 499 - components: - - pos: -0.5,-15.5 - parent: 1 - type: Transform - - uid: 507 - components: - - pos: -5.5,-15.5 - parent: 1 - type: Transform - - uid: 510 - components: - - pos: -5.5,-16.5 - parent: 1 - type: Transform - - uid: 515 - components: - - pos: 0.5,-19.5 - parent: 1 - type: Transform - - uid: 516 - components: - - pos: -7.5,-5.5 - parent: 1 - type: Transform - - uid: 517 - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform - - uid: 518 - components: - - pos: 4.5,-4.5 - parent: 1 - type: Transform - - uid: 519 - components: - - pos: 4.5,-15.5 - parent: 1 - type: Transform - - uid: 520 - components: - - pos: 5.5,-16.5 - parent: 1 - type: Transform - - uid: 610 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-7.5 - parent: 1 - type: Transform - - uid: 611 - components: - - pos: -1.5,-20.5 - parent: 1 - type: Transform - - uid: 681 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 1 - type: Transform - - uid: 700 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-9.5 - parent: 1 - type: Transform - - uid: 877 - components: - - pos: 2.5,-2.5 - parent: 1 - type: Transform -- proto: Stairs - entities: - - uid: 716 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 1 - type: Transform - - uid: 717 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 1 - type: Transform -- proto: SubstationWallBasic - entities: - - uid: 718 - components: - - pos: -4.5,-13.5 - parent: 1 - type: Transform - - uid: 719 - components: - - pos: 2.5,-13.5 - parent: 1 - type: Transform -- proto: SuitStorageEVA - entities: - - uid: 720 - components: - - pos: 5.5,-7.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 721 - components: - - pos: -7.5,-7.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: SuitStorageEVAPrisoner - entities: - - uid: 57 - components: - - pos: 4.5,-11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: SuitStorageMercenary - entities: - - uid: 73 - components: - - pos: -6.5,-11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: Table - entities: - - uid: 723 - components: - - pos: -3.5,-5.5 - parent: 1 - type: Transform - - uid: 724 - components: - - pos: -2.5,-5.5 - parent: 1 - type: Transform -- proto: TableCarpet - entities: - - uid: 725 - components: - - pos: -3.5,-7.5 - parent: 1 - type: Transform -- proto: TableCounterMetal - entities: - - uid: 284 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-7.5 - parent: 1 - type: Transform - - uid: 448 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-6.5 - parent: 1 - type: Transform - - uid: 726 - components: - - pos: 5.5,-14.5 - parent: 1 - type: Transform - - uid: 727 - components: - - pos: 4.5,-14.5 - parent: 1 - type: Transform - - uid: 728 - components: - - pos: 5.5,-15.5 - parent: 1 - type: Transform - - uid: 729 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,1.5 - parent: 1 - type: Transform - - uid: 730 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,0.5 - parent: 1 - type: Transform - - uid: 731 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 1 - type: Transform -- proto: TableGlass - entities: - - uid: 86 - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform - - uid: 606 - components: - - pos: 2.5,-6.5 - parent: 1 - type: Transform -- proto: Thruster - entities: - - uid: 216 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-10.5 - parent: 1 - type: Transform - - uid: 222 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-11.5 - parent: 1 - type: Transform - - uid: 230 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-10.5 - parent: 1 - type: Transform - - uid: 231 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 1 - type: Transform - - uid: 233 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-2.5 - parent: 1 - type: Transform - - uid: 234 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-9.5 - parent: 1 - type: Transform - - uid: 235 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-11.5 - parent: 1 - type: Transform - - uid: 238 - components: - - pos: -8.5,-1.5 - parent: 1 - type: Transform - - uid: 240 - components: - - pos: 6.5,-1.5 - parent: 1 - type: Transform - - uid: 241 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-19.5 - parent: 1 - type: Transform - - uid: 245 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-20.5 - parent: 1 - type: Transform - - uid: 246 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-20.5 - parent: 1 - type: Transform - - uid: 253 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-19.5 - parent: 1 - type: Transform - - uid: 259 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-2.5 - parent: 1 - type: Transform - - uid: 263 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-20.5 - parent: 1 - type: Transform - - uid: 271 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-20.5 - parent: 1 - type: Transform -- proto: TintedWindow - entities: - - uid: 750 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 1 - type: Transform - - uid: 751 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 1 - type: Transform - - uid: 752 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 1 - type: Transform - - uid: 753 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 1 - type: Transform - - uid: 754 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 1 - type: Transform - - uid: 755 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 1 - type: Transform -- proto: ToiletEmpty - entities: - - uid: 756 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-10.5 - parent: 1 - type: Transform - - uid: 757 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 1 - type: Transform -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 760 - components: - - pos: 6.5,-4.5 - parent: 1 - type: Transform - - uid: 761 - components: - - pos: -8.5,-4.5 - parent: 1 - type: Transform -- proto: WallReinforced - entities: - - uid: 37 - components: - - pos: 4.5,-8.5 - parent: 1 - type: Transform - - uid: 55 - components: - - pos: 4.5,-1.5 - parent: 1 - type: Transform - - uid: 97 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 1 - type: Transform - - uid: 98 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 1 - type: Transform - - uid: 128 - components: - - pos: 5.5,-3.5 - parent: 1 - type: Transform - - uid: 134 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-18.5 - parent: 1 - type: Transform - - uid: 137 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-3.5 - parent: 1 - type: Transform - - uid: 139 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-2.5 - parent: 1 - type: Transform - - uid: 145 - components: - - pos: 7.5,-4.5 - parent: 1 - type: Transform - - uid: 146 - components: - - pos: -5.5,-2.5 - parent: 1 - type: Transform - - uid: 148 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-3.5 - parent: 1 - type: Transform - - uid: 153 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-8.5 - parent: 1 - type: Transform - - uid: 158 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-4.5 - parent: 1 - type: Transform - - uid: 159 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-3.5 - parent: 1 - type: Transform - - uid: 164 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-2.5 - parent: 1 - type: Transform - - uid: 165 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 1 - type: Transform - - uid: 179 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-19.5 - parent: 1 - type: Transform - - uid: 184 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 1 - type: Transform - - uid: 188 - components: - - pos: 6.5,-3.5 - parent: 1 - type: Transform - - uid: 224 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-17.5 - parent: 1 - type: Transform - - uid: 255 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 1 - type: Transform - - uid: 296 - components: - - rot: 3.141592653589793 rad - pos: -8.5,-13.5 - parent: 1 - type: Transform - - uid: 336 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 1 - type: Transform - - uid: 346 - components: - - pos: 4.5,-2.5 - parent: 1 - type: Transform - - uid: 356 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-9.5 - parent: 1 - type: Transform - - uid: 399 - components: - - pos: 4.5,-3.5 - parent: 1 - type: Transform - - uid: 405 - components: - - pos: 3.5,-2.5 - parent: 1 - type: Transform - - uid: 547 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-8.5 - parent: 1 - type: Transform - - uid: 549 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 1 - type: Transform - - uid: 550 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 1 - type: Transform - - uid: 568 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-17.5 - parent: 1 - type: Transform - - uid: 667 - components: - - pos: 5.5,-8.5 - parent: 1 - type: Transform - - uid: 764 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-20.5 - parent: 1 - type: Transform - - uid: 765 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-20.5 - parent: 1 - type: Transform - - uid: 766 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-20.5 - parent: 1 - type: Transform - - uid: 767 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-21.5 - parent: 1 - type: Transform - - uid: 776 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 1 - type: Transform - - uid: 779 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-1.5 - parent: 1 - type: Transform - - uid: 797 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-19.5 - parent: 1 - type: Transform - - uid: 801 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 1 - type: Transform - - uid: 803 - components: - - rot: 1.5707963267948966 rad - pos: 2.5,-20.5 - parent: 1 - type: Transform - - uid: 804 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-22.5 - parent: 1 - type: Transform - - uid: 805 - components: - - pos: -2.5,-22.5 - parent: 1 - type: Transform -- proto: WallSolid - entities: - - uid: 38 - components: - - pos: 3.5,-8.5 - parent: 1 - type: Transform - - uid: 81 - components: - - pos: 4.5,-5.5 - parent: 1 - type: Transform - - uid: 119 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 1 - type: Transform - - uid: 123 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 1 - type: Transform - - uid: 167 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 1 - type: Transform - - uid: 175 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-18.5 - parent: 1 - type: Transform - - uid: 182 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 1 - type: Transform - - uid: 220 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 1 - type: Transform - - uid: 223 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-13.5 - parent: 1 - type: Transform - - uid: 236 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-5.5 - parent: 1 - type: Transform - - uid: 237 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-5.5 - parent: 1 - type: Transform - - uid: 242 - components: - - pos: -4.5,-13.5 - parent: 1 - type: Transform - - uid: 244 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-13.5 - parent: 1 - type: Transform - - uid: 247 - components: - - pos: 1.5,-9.5 - parent: 1 - type: Transform - - uid: 248 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-13.5 - parent: 1 - type: Transform - - uid: 254 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 - parent: 1 - type: Transform - - uid: 261 - components: - - pos: 1.5,-13.5 - parent: 1 - type: Transform - - uid: 282 - components: - - pos: -3.5,-13.5 - parent: 1 - type: Transform - - uid: 288 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-13.5 - parent: 1 - type: Transform - - uid: 292 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-13.5 - parent: 1 - type: Transform - - uid: 320 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-18.5 - parent: 1 - type: Transform - - uid: 323 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-13.5 - parent: 1 - type: Transform - - uid: 371 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 1 - type: Transform - - uid: 372 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 1 - type: Transform - - uid: 373 - components: - - pos: 4.5,-7.5 - parent: 1 - type: Transform - - uid: 397 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-21.5 - parent: 1 - type: Transform - - uid: 483 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-21.5 - parent: 1 - type: Transform - - uid: 580 - components: - - pos: 4.5,-6.5 - parent: 1 - type: Transform - - uid: 597 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 1 - type: Transform - - uid: 600 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 - parent: 1 - type: Transform - - uid: 634 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 1 - type: Transform - - uid: 638 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 1 - type: Transform - - uid: 641 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 1 - type: Transform - - uid: 647 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-9.5 - parent: 1 - type: Transform - - uid: 656 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-8.5 - parent: 1 - type: Transform - - uid: 665 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 1 - type: Transform - - uid: 666 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 1 - type: Transform - - uid: 678 - components: - - pos: -4.5,-9.5 - parent: 1 - type: Transform - - uid: 814 - components: - - pos: 1.5,-5.5 - parent: 1 - type: Transform - - uid: 821 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-9.5 - parent: 1 - type: Transform - - uid: 822 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-9.5 - parent: 1 - type: Transform - - uid: 823 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 1 - type: Transform - - uid: 828 - components: - - pos: 2.5,-5.5 - parent: 1 - type: Transform - - uid: 831 - components: - - pos: -4.5,-5.5 - parent: 1 - type: Transform - - uid: 834 - components: - - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 1 - type: Transform - - uid: 835 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-10.5 - parent: 1 - type: Transform -- proto: WallSolidDiagonal - entities: - - uid: 8 - components: - - pos: -4.5,-4.5 - parent: 1 - type: Transform - - uid: 178 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-18.5 - parent: 1 - type: Transform - - uid: 217 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-3.5 - parent: 1 - type: Transform - - uid: 548 - components: - - pos: -9.5,-3.5 - parent: 1 - type: Transform - - uid: 565 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-19.5 - parent: 1 - type: Transform - - uid: 590 - components: - - rot: 1.5707963267948966 rad - pos: -9.5,-8.5 - parent: 1 - type: Transform - - uid: 692 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 1 - type: Transform - - uid: 707 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1 - type: Transform - - uid: 838 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-21.5 - parent: 1 - type: Transform - - uid: 839 - components: - - pos: -3.5,2.5 - parent: 1 - type: Transform - - uid: 840 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 1 - type: Transform - - uid: 841 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-21.5 - parent: 1 - type: Transform - - uid: 842 - components: - - rot: 3.141592653589793 rad - pos: 1.5,-22.5 - parent: 1 - type: Transform - - uid: 843 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-20.5 - parent: 1 - type: Transform - - uid: 845 - components: - - rot: 3.141592653589793 rad - pos: 7.5,-8.5 - parent: 1 - type: Transform - - uid: 846 - components: - - rot: 3.141592653589793 rad - pos: 3.5,-20.5 - parent: 1 - type: Transform - - uid: 853 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-19.5 - parent: 1 - type: Transform - - uid: 855 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-22.5 - parent: 1 - type: Transform -- proto: WallWeaponCapacitorRecharger - entities: - - uid: 858 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 1 - type: Transform -- proto: WardrobePrisonFilled - entities: - - uid: 393 - components: - - pos: 3.5,-11.5 - parent: 1 - type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: WarpPointShip - entities: - - uid: 859 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 1 - type: Transform - - id: Mayflower - type: BecomesStation -- proto: WebNest - entities: - - uid: 343 - components: - - pos: 4.5,-16.5 - parent: 1 - type: Transform - - uid: 350 - components: - - pos: 4.5,-17.5 - parent: 1 - type: Transform - - uid: 361 - components: - - pos: 3.5,-16.5 - parent: 1 - type: Transform - - uid: 362 - components: - - pos: 3.5,-17.5 - parent: 1 - type: Transform -- proto: WindoorSecure - entities: - - uid: 863 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 1 - type: Transform -- proto: Window - entities: - - uid: 23 - components: - - pos: 0.5,-11.5 - parent: 1 - type: Transform - - uid: 209 - components: - - pos: 1.5,-11.5 - parent: 1 - type: Transform - - uid: 421 - components: - - pos: -2.5,-11.5 - parent: 1 - type: Transform - - uid: 450 - components: - - pos: -3.5,-11.5 - parent: 1 - type: Transform -- proto: WindowDirectional - entities: - - uid: 866 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 1 - type: Transform - - uid: 867 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 1 - type: Transform - - uid: 868 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 1 - type: Transform -... diff --git a/Resources/Prototypes/_NF/Shipyard/Expedition/mayflower.yml b/Resources/Prototypes/_NF/Shipyard/Expedition/mayflower.yml deleted file mode 100644 index 969f2679472..00000000000 --- a/Resources/Prototypes/_NF/Shipyard/Expedition/mayflower.yml +++ /dev/null @@ -1,28 +0,0 @@ -- type: vessel - id: Mayflower - name: USS Mayflower - description: An oldership from an older world found cover in web, seems like an old bounty huntership with an expedition console - price: 50000 - category: Medium - group: Expedition - shuttlePath: /Maps/_NF/Shuttles/Expedition/mayflower.yml - -- type: gameMap - id: Mayflower - mapName: 'USS Mayflower' - mapPath: /Maps/_NF/Shuttles/Expedition/mayflower.yml - minPlayers: 0 - stations: - Mayflower: - stationProto: StandardFrontierExpeditionVessel - components: - - type: StationNameSetup - mapNameTemplate: 'Mayflower {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationJobs - availableJobs: - Contractor: [ 0, 0 ] - Pilot: [ 0, 0 ] - Mercenary: [ 0, 0 ] From 5498dc4d1f046e6845b3e10a8af0e4131274d8b0 Mon Sep 17 00:00:00 2001 From: "Alice \"Arimah\" Heurlin" <30327355+arimah@users.noreply.github.com> Date: Fri, 19 Jul 2024 00:06:20 +0200 Subject: [PATCH 09/12] Update Ceres for vox + stuff (#1693) --- Resources/Maps/_NF/Shuttles/ceres.yml | 479 +++++++++--------- .../Catalog/Fills/Paper/Shipyard/manuals.yml | 24 +- .../_NF/Guidebook/Shipyard/Ceres.xml | 32 +- 3 files changed, 278 insertions(+), 257 deletions(-) diff --git a/Resources/Maps/_NF/Shuttles/ceres.yml b/Resources/Maps/_NF/Shuttles/ceres.yml index 695e02d5b38..5af1b8115e2 100644 --- a/Resources/Maps/_NF/Shuttles/ceres.yml +++ b/Resources/Maps/_NF/Shuttles/ceres.yml @@ -51,7 +51,7 @@ entities: version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADfQAAAAAAIwAAAAAAIwAAAAABIwAAAAADIgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAADHgAAAAABHgAAAAADHgAAAAACIgAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAABHgAAAAABfQAAAAAAZwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAAAHgAAAAACZwAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACfQAAAAAAfQAAAAAAXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADfQAAAAAAIwAAAAAAIwAAAAABIwAAAAADIgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAADHgAAAAABHgAAAAADHgAAAAACIgAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAABHgAAAAABfQAAAAAAZwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAAAHgAAAAACZwAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAADXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAAC version: 6 0,-2: ind: 0,-2 @@ -83,15 +83,19 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 152: 8,-10 - 153: 8,-11 + 151: 8,-11 + 158: -4,-12 + 170: -2,-12 - node: - color: '#FFFFFFFF' - id: Box + color: '#0096FFFF' + id: BoxGreyscale + decals: + 154: 7,-11 + - node: + color: '#FF0000FF' + id: BoxGreyscale decals: - 151: 7,-11 - 154: -3,-12 - 155: -2,-12 + 153: 8,-10 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe @@ -330,6 +334,12 @@ entities: decals: 135: -7,-23 136: -9,-21 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 173: -2,-11 - node: cleanable: True color: '#474F52B7' @@ -349,6 +359,13 @@ entities: id: DirtHeavyMonotile decals: 138: -6,-23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 174: -3,-12 + 176: -3,-11 - node: cleanable: True color: '#474F527F' @@ -371,6 +388,7 @@ entities: 131: 0,-10 132: 2,-11 144: -6,-20 + 175: 3,-12 - node: cleanable: True color: '#474F529E' @@ -443,6 +461,18 @@ entities: 147: -2,-17 148: -1,-17 149: 0,-17 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 171: -3,-11 + 172: -3,-12 + - node: + color: '#FFFF0033' + id: WarnFullGreyscale + decals: + 166: -3,-12 + 167: -3,-11 - node: color: '#FFFFFFFF' id: WarnLineN @@ -450,6 +480,12 @@ entities: 54: 2,-13 55: 3,-13 120: -6,-12 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 168: -2,-12 + 169: -2,-11 - node: color: '#FFFFFFFF' id: WarnLineW @@ -649,7 +685,6 @@ entities: - 727 - 300 - 638 - - 775 - 419 - 382 - 685 @@ -658,14 +693,11 @@ entities: - 418 - 344 - 633 - - 767 - - 768 - 301 - 465 - 591 - 590 - 299 - - 774 - uid: 494 components: - type: Transform @@ -673,9 +705,7 @@ entities: parent: 2 - type: DeviceList devices: - - 241 - 301 - - 459 - uid: 495 components: - type: Transform @@ -686,7 +716,6 @@ entities: - 465 - 646 - 698 - - 771 - uid: 585 components: - type: Transform @@ -697,7 +726,6 @@ entities: - 284 - 265 - 299 - - 769 - uid: 588 components: - type: Transform @@ -711,24 +739,11 @@ entities: - 416 - 415 - 419 - - 772 - 323 - 322 - - 773 - 529 - 496 - - 396 - 685 -- proto: AirCanister - entities: - - uid: 803 - components: - - type: Transform - anchored: True - pos: 7.5,-10.5 - parent: 2 - - type: Physics - bodyType: Static - proto: AirlockCommand entities: - uid: 130 @@ -803,69 +818,6 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-19.5 parent: 2 -- proto: AirSensor - entities: - - uid: 396 - components: - - type: Transform - pos: -7.5,-21.5 - parent: 2 - - uid: 767 - components: - - type: Transform - pos: 6.5,-19.5 - parent: 2 - - uid: 768 - components: - - type: Transform - pos: 3.5,-13.5 - parent: 2 - - uid: 769 - components: - - type: Transform - pos: 8.5,-9.5 - parent: 2 - - uid: 771 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 2 - - uid: 772 - components: - - type: Transform - pos: -6.5,-15.5 - parent: 2 - - uid: 773 - components: - - type: Transform - pos: -6.5,-7.5 - parent: 2 - - uid: 774 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 2 - - uid: 775 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 2 -- proto: AlwaysPoweredlightGreen - entities: - - uid: 818 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-6.5 - parent: 2 -- proto: AlwaysPoweredlightRed - entities: - - uid: 389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-6.5 - parent: 2 - proto: APCBasic entities: - uid: 457 @@ -978,11 +930,6 @@ entities: - type: Transform pos: 4.5,-23.5 parent: 2 - - uid: 581 - components: - - type: Transform - pos: 5.5,-23.5 - parent: 2 - uid: 583 components: - type: Transform @@ -1078,11 +1025,6 @@ entities: - type: Transform pos: -5.5,-6.5 parent: 2 - - uid: 780 - components: - - type: Transform - pos: -4.5,-7.5 - parent: 2 - uid: 781 components: - type: Transform @@ -1103,11 +1045,6 @@ entities: - type: Transform pos: 4.5,-8.5 parent: 2 - - uid: 785 - components: - - type: Transform - pos: 5.5,-7.5 - parent: 2 - uid: 786 components: - type: Transform @@ -1179,6 +1116,11 @@ entities: parent: 2 - proto: ButtonFrameCaution entities: + - uid: 513 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 - uid: 578 components: - type: Transform @@ -1678,11 +1620,6 @@ entities: - type: Transform pos: 8.5,-20.5 parent: 2 - - uid: 666 - components: - - type: Transform - pos: 7.5,-17.5 - parent: 2 - uid: 667 components: - type: Transform @@ -1710,31 +1647,21 @@ entities: parent: 2 - proto: CableHV entities: - - uid: 127 - components: - - type: Transform - pos: -3.5,-11.5 - parent: 2 - - uid: 234 + - uid: 1 components: - type: Transform - pos: -1.5,-11.5 + pos: -3.5,-9.5 parent: 2 - - uid: 237 + - uid: 127 components: - type: Transform - pos: -1.5,-11.5 + pos: -3.5,-11.5 parent: 2 - uid: 545 components: - type: Transform pos: -3.5,-10.5 parent: 2 - - uid: 770 - components: - - type: Transform - pos: -2.5,-11.5 - parent: 2 - proto: CableMV entities: - uid: 176 @@ -1832,6 +1759,11 @@ entities: - type: Transform pos: 2.5,-16.5 parent: 2 + - uid: 769 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 - uid: 795 components: - type: Transform @@ -1859,11 +1791,11 @@ entities: parent: 2 - proto: CableTerminal entities: - - uid: 182 + - uid: 709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-11.5 + rot: 3.141592653589793 rad + pos: -3.5,-11.5 parent: 2 - proto: CarpetGreen entities: @@ -2485,15 +2417,19 @@ entities: - type: Transform pos: 3.297952,-16.33848 parent: 2 -- proto: GasPassiveVent +- proto: GasMixerOn entities: - - uid: 243 + - uid: 235 components: - type: Transform - pos: -1.5,-8.5 + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 parent: 2 + - type: GasMixer + inletTwoConcentration: 0.79 + inletOneConcentration: 0.21 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - proto: GasPipeBend entities: - uid: 177 @@ -2519,6 +2455,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 287 components: - type: Transform @@ -2550,14 +2494,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 454 components: - type: Transform @@ -2632,6 +2568,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 181 components: - type: Transform @@ -2646,34 +2590,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 242 + - uid: 205 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-11.5 + pos: -2.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 244 + color: '#990000FF' + - uid: 241 components: - type: Transform - pos: -1.5,-9.5 + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 248 + - uid: 242 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-9.5 + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 249 + color: '#0055CCFF' + - uid: 248 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-8.5 + pos: -0.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -3163,11 +3108,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 245 + - uid: 243 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-10.5 + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -3257,18 +3202,26 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,-10.5 parent: 2 -- proto: GasPressurePump - entities: - - uid: 273 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 581 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-10.5 + pos: 8.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - proto: GasVentPump entities: + - uid: 237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 284 components: - type: Transform @@ -3294,16 +3247,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 459 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 494 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 496 components: - type: Transform @@ -3344,11 +3287,19 @@ entities: color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 241 + - uid: 234 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-10.5 + pos: -1.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -3419,10 +3370,10 @@ entities: color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 174 + - uid: 767 components: - type: Transform - pos: 8.5,-10.5 + pos: -1.5,-11.5 parent: 2 - proto: Grille entities: @@ -3531,11 +3482,6 @@ entities: - type: Transform pos: 9.5,-8.5 parent: 2 - - uid: 63 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 2 - uid: 82 components: - type: Transform @@ -3648,13 +3594,11 @@ entities: parent: 2 - proto: Gyroscope entities: - - uid: 267 + - uid: 634 components: - type: Transform - pos: 8.5,-9.5 + pos: 8.5,-10.5 parent: 2 - - type: Thruster - originalPowerLoad: 1500 - proto: HospitalCurtainsOpen entities: - uid: 490 @@ -3799,6 +3743,16 @@ entities: - type: Transform pos: 9.458187,-21.50558 parent: 2 +- proto: NitrogenCanister + entities: + - uid: 666 + components: + - type: Transform + anchored: True + pos: 8.5,-9.5 + parent: 2 + - type: Physics + bodyType: Static - proto: NoticeBoardNF entities: - uid: 728 @@ -3827,31 +3781,32 @@ entities: - type: Transform pos: 2.6987016,-18.387365 parent: 2 -- proto: PaperBin10 +- proto: OxygenCanister entities: - - uid: 404 + - uid: 174 components: - type: Transform - pos: 8.5,-8.5 + anchored: True + pos: 7.5,-10.5 parent: 2 -- proto: PortableGeneratorPacmanShuttle + - type: Physics + bodyType: Static +- proto: PaperBin10 entities: - - uid: 179 + - uid: 404 components: - type: Transform - pos: -2.5,-11.5 + pos: 8.5,-8.5 parent: 2 - - type: FuelGenerator - on: False - - type: Physics - bodyType: Static - - uid: 235 +- proto: PortableGeneratorSuperPacmanShuttle + entities: + - uid: 772 components: - type: Transform - pos: -1.5,-11.5 + pos: -3.5,-11.5 parent: 2 - type: FuelGenerator - on: False + targetPower: 24000 - type: Physics bodyType: Static - proto: PottedPlantRandom @@ -3912,15 +3867,16 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-5.5 parent: 2 - - uid: 393 + - uid: 395 components: - type: Transform - pos: 6.5,-8.5 + pos: 4.5,-13.5 parent: 2 - - uid: 395 + - uid: 396 components: - type: Transform - pos: 4.5,-13.5 + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 parent: 2 - uid: 400 components: @@ -3950,6 +3906,22 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-18.5 parent: 2 +- proto: PoweredlightGreen + entities: + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 2 +- proto: PoweredlightRed + entities: + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 2 - proto: PoweredSmallLight entities: - uid: 101 @@ -4089,13 +4061,6 @@ entities: - type: Transform pos: 7.63264,-13.474377 parent: 2 -- proto: SheetPlasma - entities: - - uid: 709 - components: - - type: Transform - pos: -2,-10.5 - parent: 2 - proto: SheetPlastic entities: - uid: 817 @@ -4110,6 +4075,20 @@ entities: - type: Transform pos: 7.38264,-13.422256 parent: 2 +- proto: SheetUranium + entities: + - uid: 182 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 +- proto: ShipyardCeresInfo + entities: + - uid: 245 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 - proto: ShuttersNormalOpen entities: - uid: 293 @@ -4382,6 +4361,24 @@ entities: - type: DeviceLinkSink links: - 816 +- proto: ShuttersRadiationOpen + entities: + - uid: 459 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - type: DeviceLinkSink + links: + - 244 + - uid: 460 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - type: DeviceLinkSink + links: + - 244 - proto: ShuttersWindowOpen entities: - uid: 313 @@ -4505,11 +4502,6 @@ entities: - type: Transform pos: -0.5,-8.5 parent: 2 - - uid: 205 - components: - - type: Transform - pos: -1.5,-9.5 - parent: 2 - uid: 207 components: - type: Transform @@ -4657,6 +4649,17 @@ entities: - Pressed: Toggle - proto: SignalButtonDirectional entities: + - uid: 244 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 460: + - Pressed: Toggle + 459: + - Pressed: Toggle - uid: 655 components: - type: MetaData @@ -4835,6 +4838,13 @@ entities: - type: Transform pos: -0.5,-11.5 parent: 2 +- proto: SignRadiationMed + entities: + - uid: 393 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 - proto: SinkWide entities: - uid: 221 @@ -4845,12 +4855,12 @@ entities: parent: 2 - proto: SMESBasic entities: - - uid: 460 + - uid: 770 components: - type: Transform - pos: -3.5,-11.5 + pos: -3.5,-10.5 parent: 2 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 236 components: @@ -4885,12 +4895,12 @@ entities: - type: Transform pos: 9.812354,-21.703634 parent: 2 -- proto: SubstationBasic +- proto: SubstationWallBasic entities: - - uid: 513 + - uid: 63 components: - type: Transform - pos: -3.5,-10.5 + pos: -3.5,-9.5 parent: 2 - proto: SuitStorageWallmountEVA entities: @@ -5065,62 +5075,46 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,-17.5 parent: 2 - - type: Thruster - originalPowerLoad: 1500 - uid: 224 components: - type: Transform pos: -6.5,-5.5 parent: 2 - - type: Thruster - originalPowerLoad: 1500 - uid: 225 components: - type: Transform pos: 7.5,-5.5 parent: 2 - - type: Thruster - originalPowerLoad: 1500 - uid: 259 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-17.5 parent: 2 - - type: Thruster - originalPowerLoad: 1500 - uid: 486 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-5.5 parent: 2 - - type: Thruster - originalPowerLoad: 1500 - uid: 544 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-5.5 parent: 2 - - type: Thruster - originalPowerLoad: 1500 - uid: 756 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-21.5 parent: 2 - - type: Thruster - originalPowerLoad: 1500 - uid: 757 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-21.5 parent: 2 - - type: Thruster - originalPowerLoad: 1500 - proto: VariantCubeBox entities: - uid: 233 @@ -5490,6 +5484,11 @@ entities: - type: Transform pos: 5.5,-7.5 parent: 2 + - uid: 412 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 - uid: 489 components: - type: Transform @@ -5580,6 +5579,11 @@ entities: - type: Transform pos: 5.5,-23.5 parent: 2 + - uid: 771 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 2 - uid: 807 components: - type: Transform @@ -5701,12 +5705,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,-18.5 parent: 2 - - uid: 634 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 2 - uid: 662 components: - type: Transform @@ -5772,9 +5770,10 @@ entities: parent: 2 - proto: Wrench entities: - - uid: 805 + - uid: 768 components: - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,-10.5 parent: 2 ... diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Paper/Shipyard/manuals.yml b/Resources/Prototypes/_NF/Catalog/Fills/Paper/Shipyard/manuals.yml index 79bc16662f9..aeeed238106 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Paper/Shipyard/manuals.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Paper/Shipyard/manuals.yml @@ -63,7 +63,29 @@ openOnActivation: true guides: - ShipyardCamper - + +- type: entity + parent: BaseItem + id: ShipyardCeresInfo + name: ceres user manual + description: preflight checklist + components: + - type: Sprite + sprite: Objects/Misc/books.rsi + layers: + - state: paper + - state: cover_base + color: "#6c4718" + - state: decor_wingette + color: "#b5913c" + - state: icon_bar + - state: icon_corner + color: gold + - type: GuideHelp + openOnActivation: true + guides: + - ShipyardCeres + - type: entity parent: BaseItem id: ShipyardGasbenderInfo diff --git a/Resources/ServerInfo/_NF/Guidebook/Shipyard/Ceres.xml b/Resources/ServerInfo/_NF/Guidebook/Shipyard/Ceres.xml index 2b702210c6c..6a23709ea15 100644 --- a/Resources/ServerInfo/_NF/Guidebook/Shipyard/Ceres.xml +++ b/Resources/ServerInfo/_NF/Guidebook/Shipyard/Ceres.xml @@ -12,7 +12,7 @@ [color=#a4885c]Recommended Crew:[/color] 2-4 - [color=#a4885c]Power Gen Type:[/color] Plasma + [color=#a4885c]Power Gen Type:[/color] Uranium [color=#a4885c]Expeditions:[/color] None @@ -29,39 +29,39 @@ ## 1.1. Battery units - + - Check that the SMES unit is anchored to the floor. - - Check that the substation unit is anchored to the floor. - - Check that the APC unit's Main Breaker is toggled on. - - Check the APC unit's current Load (W). + - Check that the APC units' Main Breakers are toggled on. + - Check the APC units' current Load (W). - ## 1.2. P.A.C.M.A.N. generator unit + ## 1.2. S.U.P.E.R.P.A.C.M.A.N. generator unit - + - - Check that P.A.C.M.A.N. generator units are anchored to the floor. - - Check that P.A.C.M.A.N. generator units are fueled. For extended flights make sure that you have enough fuel stockpiled to sustain prolonged power generation. - - Check that P.A.C.M.A.N. generator units are set to HV output. - - Set Target Power to 12 [bold]kW[/bold] on each generator unit. - - Start P.A.C.M.A.N. generator units. + - Check that S.U.P.E.R.P.A.C.M.A.N. generator unit is anchored to the floor. + - Check that S.U.P.E.R.P.A.C.M.A.N. generator unit is fueled. For extended flights make sure that you have enough fuel stockpiled to sustain prolonged power generation. + - Check that S.U.P.E.R.P.A.C.M.A.N. generator unit is set to HV output. + - Set Target Power to 24 [bold]kW[/bold] on the generator unit. + - Start S.U.P.E.R.P.A.C.M.A.N. generator unit. ## 2. Atmospherics ## 2.1. Distribution Loop - + + - - Check that the air canister is anchored to connector port. - - Check that the distribution pump is set to 101kPa. - - Enable the distribution pump. + - Check that the oxygen and nitrogen canisters are anchored to the connector port. + - Check that the distribution mixer is set to 101kPa. + - Enable the distribution mixer. ## 2.2. Waste Loop From 57feb8dd2d3f05bc670324a6dfec5232bfd0e767 Mon Sep 17 00:00:00 2001 From: FrontierATC Date: Thu, 18 Jul 2024 22:06:45 +0000 Subject: [PATCH 10/12] Automatic Changelog (#1693) --- Resources/Changelog/Changelog.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 402b2f21d02..88a38cc562f 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -5688,3 +5688,9 @@ Entries: WaveShot) id: 5119 time: '2024-07-15T00:02:07.0000000+00:00' +- author: arimah + changes: + - type: Tweak + message: The SBB Ceres now runs on uranium instead of plasma. + id: 5120 + time: '2024-07-18T22:06:20.0000000+00:00' From 2984fd57edfb773613de7fd46c8663672e4b9652 Mon Sep 17 00:00:00 2001 From: Dvir <39403717+dvir001@users.noreply.github.com> Date: Fri, 19 Jul 2024 01:45:12 +0300 Subject: [PATCH 11/12] Update manuals.yml (YML) (#1697) * Update manuals.yml * Update manuals.yml * Update Resources/Prototypes/_NF/Catalog/Fills/Paper/Shipyard/manuals.yml Co-authored-by: Whatstone <166147148+whatston3@users.noreply.github.com> * Update Resources/Prototypes/_NF/Catalog/Fills/Paper/Shipyard/manuals.yml Co-authored-by: Whatstone <166147148+whatston3@users.noreply.github.com> * Update manuals.yml --------- Co-authored-by: Whatstone <166147148+whatston3@users.noreply.github.com> --- .../Catalog/Fills/Paper/Shipyard/manuals.yml | 219 +++--------------- 1 file changed, 35 insertions(+), 184 deletions(-) diff --git a/Resources/Prototypes/_NF/Catalog/Fills/Paper/Shipyard/manuals.yml b/Resources/Prototypes/_NF/Catalog/Fills/Paper/Shipyard/manuals.yml index aeeed238106..a62b9db29a4 100644 --- a/Resources/Prototypes/_NF/Catalog/Fills/Paper/Shipyard/manuals.yml +++ b/Resources/Prototypes/_NF/Catalog/Fills/Paper/Shipyard/manuals.yml @@ -1,8 +1,9 @@ - type: entity parent: BaseItem - id: ShipyardBookwormInfo - name: bookworm user manual - description: preflight checklist + id: ShipyardInfoBase + name: shuttle user manual + description: The preflight checklist for a shuttle. Check it for power settings! + abstract: true components: - type: Sprite sprite: Objects/Misc/books.rsi @@ -17,270 +18,120 @@ color: gold - type: GuideHelp openOnActivation: true + +- type: entity + parent: ShipyardInfoBase + id: ShipyardBookwormInfo + name: Bookworm user manual + components: + - type: GuideHelp guides: - ShipyardBookworm - type: entity - parent: BaseItem + parent: ShipyardInfoBase id: ShipyardBrigandInfo - name: brigand user manual - description: preflight checklist + name: Brigand user manual components: - - type: Sprite - sprite: Objects/Misc/books.rsi - layers: - - state: paper - - state: cover_base - color: "#6c4718" - - state: decor_wingette - color: "#b5913c" - - state: icon_wrench - - state: icon_corner - color: gold - type: GuideHelp - openOnActivation: true guides: - ShipyardBrigand - type: entity - parent: BaseItem + parent: ShipyardInfoBase id: ShipyardCamperInfo - name: camper user manual - description: preflight checklist + name: Camper user manual components: - - type: Sprite - sprite: Objects/Misc/books.rsi - layers: - - state: paper - - state: cover_base - color: "#6c4718" - - state: decor_wingette - color: "#b5913c" - - state: icon_wrench - - state: icon_corner - color: gold - type: GuideHelp - openOnActivation: true guides: - ShipyardCamper - type: entity - parent: BaseItem + parent: ShipyardInfoBase id: ShipyardCeresInfo - name: ceres user manual - description: preflight checklist + name: Ceres user manual components: - - type: Sprite - sprite: Objects/Misc/books.rsi - layers: - - state: paper - - state: cover_base - color: "#6c4718" - - state: decor_wingette - color: "#b5913c" - - state: icon_bar - - state: icon_corner - color: gold - type: GuideHelp - openOnActivation: true guides: - ShipyardCeres - type: entity - parent: BaseItem + parent: ShipyardInfoBase id: ShipyardGasbenderInfo - name: gasbender user manual - description: preflight checklist + name: Gasbender user manual components: - - type: Sprite - sprite: Objects/Misc/books.rsi - layers: - - state: paper - - state: cover_base - color: "#6c4718" - - state: decor_wingette - color: "#b5913c" - - state: icon_wrench - - state: icon_corner - color: gold - type: GuideHelp - openOnActivation: true guides: - ShipyardGasbender - type: entity - parent: BaseItem + parent: ShipyardInfoBase id: ShipyardHammerInfo - name: hammer user manual - description: preflight checklist + name: Hammer user manual components: - - type: Sprite - sprite: Objects/Misc/books.rsi - layers: - - state: paper - - state: cover_base - color: "#6c4718" - - state: decor_wingette - color: "#b5913c" - - state: icon_wrench - - state: icon_corner - color: gold - type: GuideHelp - openOnActivation: true guides: - ShipyardHammer - type: entity - parent: BaseItem + parent: ShipyardInfoBase id: ShipyardHarbormasterInfo - name: harbormaster user manual - description: preflight checklist + name: Harbormaster user manual components: - - type: Sprite - sprite: Objects/Misc/books.rsi - layers: - - state: paper - - state: cover_base - color: "#6c4718" - - state: decor_wingette - color: "#b5913c" - - state: icon_wrench - - state: icon_corner - color: gold - type: GuideHelp - openOnActivation: true guides: - ShipyardHarbormaster - type: entity - parent: BaseItem + parent: ShipyardInfoBase id: ShipyardKilderkinInfo - name: kilderkin user manual - description: preflight checklist + name: Kilderkin user manual components: - - type: Sprite - sprite: Objects/Misc/books.rsi - layers: - - state: paper - - state: cover_base - color: "#6c4718" - - state: decor_wingette - color: "#b5913c" - - state: icon_wrench - - state: icon_corner - color: gold - type: GuideHelp - openOnActivation: true guides: - ShipyardKilderkin - type: entity - parent: BaseItem + parent: ShipyardInfoBase id: ShipyardLanternInfo - name: lantern user manual - description: preflight checklist + name: Lantern user manual components: - - type: Sprite - sprite: Objects/Misc/books.rsi - layers: - - state: paper - - state: cover_strong - color: "#606060" - - state: icon_temple - color: gold - - state: decor_spine - color: gold - - sprite: Objects/Misc/bureaucracy.rsi - state: paper_stamp-chaplain - type: GuideHelp - openOnActivation: true guides: - ShipyardLantern - type: entity - parent: BaseItem + parent: ShipyardInfoBase id: ShipyardLegmanInfo - name: legman user manual - description: preflight checklist + name: Legman user manual components: - - type: Sprite - sprite: Objects/Misc/books.rsi - layers: - - state: paper - - state: cover_base - color: "#6c4718" - - state: decor_wingette - color: "#b5913c" - - state: icon_wrench - - state: icon_corner - color: gold - type: GuideHelp - openOnActivation: true guides: - ShipyardLegman - type: entity - parent: BaseItem + parent: ShipyardInfoBase id: ShipyardLiquidatorInfo - name: liquidator user manual - description: preflight checklist + name: Liquidator user manual components: - - type: Sprite - sprite: Objects/Misc/books.rsi - layers: - - state: paper - - state: cover_base - color: "#6c4718" - - state: decor_wingette - color: "#b5913c" - - state: icon_wrench - - state: icon_corner - color: gold - type: GuideHelp - openOnActivation: true guides: - ShipyardLiquidator - type: entity - parent: BaseItem + parent: ShipyardInfoBase id: ShipyardPioneerInfo - name: pioneer user manual - description: preflight checklist + name: Pioneer user manual components: - - type: Sprite - sprite: Objects/Misc/books.rsi - layers: - - state: paper - - state: cover_base - color: "#6c4718" - - state: decor_wingette - color: "#b5913c" - - state: icon_wrench - - state: icon_corner - color: gold - type: GuideHelp - openOnActivation: true guides: - ShipyardPioneer - type: entity - parent: BaseItem + parent: ShipyardInfoBase id: ShipyardSearchlightInfo - name: searchlight user manual - description: preflight checklist + name: Searchlight user manual components: - - type: Sprite - sprite: Objects/Misc/books.rsi - layers: - - state: paper - - state: cover_base - color: "#6c4718" - - state: decor_wingette - color: "#b5913c" - - state: icon_wrench - - state: icon_corner - color: gold - type: GuideHelp - openOnActivation: true guides: - ShipyardSearchlight From a53c1071999bc7277deb57f28a944acee79dc3bc Mon Sep 17 00:00:00 2001 From: ErhardSteinhauer <65374927+ErhardSteinhauer@users.noreply.github.com> Date: Fri, 19 Jul 2024 02:18:05 +0300 Subject: [PATCH 12/12] Shuttle clean up follow up (#1684) * entities removal * revert changes * remove RandonSpawner and RandomSpawner100 * removed job spawners (except nfsd and pirates) * replased filled gun safes with empty ones * removed food items * removed kitchen machines * removed medkits, replaced filled medlockers with empty, replaced medbeds with beds * no chemistry * no kitchen machines for nfsd * removed smile the slime from wasp * fixed ambition erroring out --- .../Maps/_NF/Shuttles/BlackMarket/falcon.yml | 14 - .../_NF/Shuttles/BlackMarket/schooner.yml | 7 - .../Maps/_NF/Shuttles/Expedition/ambition.yml | 143 +--- .../Maps/_NF/Shuttles/Expedition/anchor.yml | 143 +--- .../Maps/_NF/Shuttles/Expedition/brigand.yml | 2 +- .../Maps/_NF/Shuttles/Expedition/courserx.yml | 80 +- .../Maps/_NF/Shuttles/Expedition/dartx.yml | 110 +-- .../_NF/Shuttles/Expedition/decadedove.yml | 2 +- .../_NF/Shuttles/Expedition/dragonfly.yml | 194 +---- .../_NF/Shuttles/Expedition/gasbender.yml | 12 - .../Maps/_NF/Shuttles/Expedition/praeda.yml | 119 +-- .../_NF/Shuttles/Expedition/rosebudmkii.yml | 85 +-- .../Maps/_NF/Shuttles/Expedition/sprinter.yml | 162 +--- Resources/Maps/_NF/Shuttles/Nfsd/empress.yml | 14 +- Resources/Maps/_NF/Shuttles/Nfsd/marauder.yml | 14 - .../Maps/_NF/Shuttles/Nfsd/opportunity.yml | 30 - Resources/Maps/_NF/Shuttles/Nfsd/prowler.yml | 7 - Resources/Maps/_NF/Shuttles/Nfsd/wasp.yml | 38 - Resources/Maps/_NF/Shuttles/Nfsd/whiskey.yml | 43 -- Resources/Maps/_NF/Shuttles/Scrap/bison.yml | 715 +----------------- .../Maps/_NF/Shuttles/Scrap/canister.yml | 7 - .../Maps/_NF/Shuttles/Scrap/disciple.yml | 31 - Resources/Maps/_NF/Shuttles/Scrap/nugget.yml | 78 -- Resources/Maps/_NF/Shuttles/Scrap/orange.yml | 36 - Resources/Maps/_NF/Shuttles/Scrap/point.yml | 25 - Resources/Maps/_NF/Shuttles/Scrap/tide.yml | 32 - .../_NF/Shuttles/Syndicate/infiltrator.yml | 29 - Resources/Maps/_NF/Shuttles/barge.yml | 35 - Resources/Maps/_NF/Shuttles/bocadillo.yml | 14 - Resources/Maps/_NF/Shuttles/caduceus.yml | 53 -- Resources/Maps/_NF/Shuttles/camper.yml | 7 - Resources/Maps/_NF/Shuttles/chisel.yml | 22 - Resources/Maps/_NF/Shuttles/cleithro.yml | 55 -- Resources/Maps/_NF/Shuttles/comet.yml | 28 - Resources/Maps/_NF/Shuttles/condor.yml | 35 - Resources/Maps/_NF/Shuttles/crescent.yml | 147 +--- Resources/Maps/_NF/Shuttles/esquire.yml | 83 -- Resources/Maps/_NF/Shuttles/garden.yml | 21 - Resources/Maps/_NF/Shuttles/hauler.yml | 97 +-- Resources/Maps/_NF/Shuttles/honker.yml | 7 - Resources/Maps/_NF/Shuttles/investigator.yml | 40 - Resources/Maps/_NF/Shuttles/knuckleverse.yml | 79 +- Resources/Maps/_NF/Shuttles/lantern.yml | 29 - Resources/Maps/_NF/Shuttles/mccargo.yml | 70 -- Resources/Maps/_NF/Shuttles/metastable.yml | 85 +-- Resources/Maps/_NF/Shuttles/mission.yml | 28 - Resources/Maps/_NF/Shuttles/phoenix.yml | 77 -- Resources/Maps/_NF/Shuttles/piecrust.yml | 14 - Resources/Maps/_NF/Shuttles/placebo.yml | 7 - Resources/Maps/_NF/Shuttles/prospector.yml | 7 - Resources/Maps/_NF/Shuttles/pts.yml | 14 - Resources/Maps/_NF/Shuttles/pulse.yml | 14 - Resources/Maps/_NF/Shuttles/rosebudmki.yml | 76 +- Resources/Maps/_NF/Shuttles/skipper.yml | 14 - Resources/Maps/_NF/Shuttles/sparrow.yml | 14 - Resources/Maps/_NF/Shuttles/spectre.yml | 138 ---- Resources/Maps/_NF/Shuttles/stellaris.yml | 35 - Resources/Maps/_NF/Shuttles/stratos.yml | 49 -- Resources/Maps/_NF/Shuttles/vagabond.yml | 52 +- Resources/Maps/_NF/Shuttles/waveshot.yml | 21 - 60 files changed, 59 insertions(+), 3580 deletions(-) diff --git a/Resources/Maps/_NF/Shuttles/BlackMarket/falcon.yml b/Resources/Maps/_NF/Shuttles/BlackMarket/falcon.yml index 2c8dc1ade76..9c1ef38deb5 100644 --- a/Resources/Maps/_NF/Shuttles/BlackMarket/falcon.yml +++ b/Resources/Maps/_NF/Shuttles/BlackMarket/falcon.yml @@ -1817,13 +1817,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,-13.5 parent: 3 -- proto: DonkpocketBoxSpawner - entities: - - uid: 226 - components: - - type: Transform - pos: 6.5,-7.5 - parent: 3 - proto: DresserFilled entities: - uid: 234 @@ -1954,13 +1947,6 @@ entities: - type: Transform pos: 5.5,-13.5 parent: 3 -- proto: FoodBurgerCarp - entities: - - uid: 189 - components: - - type: Transform - pos: 3.4787748,-7.3710117 - parent: 3 - proto: GasPassiveVent entities: - uid: 448 diff --git a/Resources/Maps/_NF/Shuttles/BlackMarket/schooner.yml b/Resources/Maps/_NF/Shuttles/BlackMarket/schooner.yml index e8c142d918a..441b5408fad 100644 --- a/Resources/Maps/_NF/Shuttles/BlackMarket/schooner.yml +++ b/Resources/Maps/_NF/Shuttles/BlackMarket/schooner.yml @@ -2618,13 +2618,6 @@ entities: - type: Transform pos: -1.5,-5.5 parent: 1 -- proto: RandomSpawner - entities: - - uid: 336 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 1 - proto: RemoteSignaller entities: - uid: 505 diff --git a/Resources/Maps/_NF/Shuttles/Expedition/ambition.yml b/Resources/Maps/_NF/Shuttles/Expedition/ambition.yml index 65251c301bc..a684ea6b773 100644 --- a/Resources/Maps/_NF/Shuttles/Expedition/ambition.yml +++ b/Resources/Maps/_NF/Shuttles/Expedition/ambition.yml @@ -27,7 +27,7 @@ entities: name: grid - type: Transform pos: -0.48525238,-0.53687286 - parent: 76 + parent: invalid - type: MapGrid chunks: 0,0: @@ -1403,19 +1403,6 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - - uid: 76 - components: - - type: MetaData - name: map 22 - - type: Transform - - type: Map - mapPaused: True - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - proto: AirAlarm entities: - uid: 26 @@ -7142,8 +7129,8 @@ entities: immutable: False temperature: 293.14923 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -8536,29 +8523,6 @@ entities: - type: Transform pos: -5.7878275,-6.035136 parent: 1 -- proto: FoodBoxDonkpocketStonk - entities: - - uid: 2104 - components: - - type: Transform - pos: 4.5,-9.5 - parent: 1 -- proto: FoodBurgerMcguffin - entities: - - uid: 1393 - components: - - type: Transform - parent: 1392 - - type: Physics - canCollide: False -- proto: FoodMealFries - entities: - - uid: 1401 - components: - - type: Transform - parent: 1392 - - type: Physics - canCollide: False - proto: FoodTinBeansTrash entities: - uid: 2402 @@ -12315,45 +12279,16 @@ entities: - type: Transform pos: -7.5,-20.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 898 components: - type: Transform pos: -7.5,-21.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 899 components: - type: Transform pos: 8.5,-20.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 -- proto: HappyHonk - entities: - - uid: 1392 - components: - - type: Transform - pos: 5.2539597,-11.388922 - parent: 1 - - type: Storage - storedItems: - 1393: - position: 0,0 - _rotation: South - 1401: - position: 1,0 - _rotation: East - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 1393 - - 1401 - proto: HolofanProjector entities: - uid: 2445 @@ -12373,13 +12308,6 @@ entities: - type: Transform pos: 6.3805237,5.4662657 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 2089 - components: - - type: Transform - pos: 3.5,-9.5 - parent: 1 - proto: LightReplacer entities: - uid: 2235 @@ -14541,13 +14469,6 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,24.5 parent: 1 -- proto: SpoonPlastic - entities: - - uid: 2470 - components: - - type: Transform - pos: 4.0995703,-9.465618 - parent: 1 - proto: StairDark entities: - uid: 949 @@ -14957,229 +14878,171 @@ entities: - type: Transform pos: -6.5,-17.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 340 components: - type: Transform pos: -5.5,-17.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 341 components: - type: Transform pos: 6.5,-17.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 342 components: - type: Transform pos: 7.5,-17.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 343 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,-23.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 344 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,-23.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 345 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-24.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 346 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-24.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 348 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-24.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 349 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-24.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 350 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-22.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 351 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-21.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 352 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-21.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 353 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-22.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 354 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-23.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 355 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-23.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 356 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-13.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 357 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-12.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 358 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-10.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 359 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-9.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 360 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,-7.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 361 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,-7.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 362 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-7.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 363 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-7.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 364 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-9.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 365 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-10.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 366 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-12.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 367 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-13.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - uid: 2467 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,-24.5 parent: 1 - - type: Thruster - originalPowerLoad: 1500 - proto: TintedWindow entities: - uid: 2279 diff --git a/Resources/Maps/_NF/Shuttles/Expedition/anchor.yml b/Resources/Maps/_NF/Shuttles/Expedition/anchor.yml index 1633bf44778..4c3473a861a 100644 --- a/Resources/Maps/_NF/Shuttles/Expedition/anchor.yml +++ b/Resources/Maps/_NF/Shuttles/Expedition/anchor.yml @@ -1367,7 +1367,7 @@ entities: - type: Transform pos: -4.5,-22.5 parent: 1 -- proto: BedsheetMedical +- proto: BedsheetSpawner entities: - uid: 68 components: @@ -4250,7 +4250,7 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-20.5 parent: 1 -- proto: chem_master +- proto: MachineFrame entities: - uid: 620 components: @@ -7291,7 +7291,7 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-12.5 parent: 1 -- proto: GunSafeShuttleT3Spawner +- proto: GunSafeShuttleCaptain entities: - uid: 639 components: @@ -7396,20 +7396,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,-15.5 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 1088 - components: - - type: Transform - pos: 2.5,-5.5 - parent: 1 -- proto: KitchenReagentGrinder - entities: - - uid: 1089 - components: - - type: Transform - pos: 2.5,-6.5 - parent: 1 - proto: LampGold entities: - uid: 1090 @@ -7549,7 +7535,7 @@ entities: - 0 - 0 - 0 -- proto: LockerWallMedicalDoctorFilled +- proto: LockerWallMedical entities: - uid: 1096 components: @@ -7557,7 +7543,7 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-16.5 parent: 1 -- proto: MedicalBed +- proto: Bed entities: - uid: 1097 components: @@ -7569,48 +7555,6 @@ entities: - type: Transform pos: 17.5,-17.5 parent: 1 -- proto: MedkitBruteFilled - entities: - - uid: 1100 - components: - - type: Transform - pos: 15.407753,-21.300247 - parent: 1 -- proto: MedkitBurnFilled - entities: - - uid: 1101 - components: - - type: Transform - pos: 15.610878,-21.518997 - parent: 1 -- proto: MedkitFilled - entities: - - uid: 1102 - components: - - type: Transform - pos: 16.407753,-21.300247 - parent: 1 -- proto: MedkitOxygenFilled - entities: - - uid: 1103 - components: - - type: Transform - pos: 16.110878,-21.534622 - parent: 1 -- proto: MedkitRadiationFilled - entities: - - uid: 1104 - components: - - type: Transform - pos: 15.903946,-21.28169 - parent: 1 -- proto: MedkitToxinFilled - entities: - - uid: 1105 - components: - - type: Transform - pos: 16.610878,-21.550247 - parent: 1 - proto: Mirror entities: - uid: 1106 @@ -8180,18 +8124,6 @@ entities: - type: Transform pos: -3.5,-13.5 parent: 1 -- proto: RandomFoodSingle - entities: - - uid: 1184 - components: - - type: Transform - pos: 0.5,-17.5 - parent: 1 - - uid: 1185 - components: - - type: Transform - pos: 2.5,-12.5 - parent: 1 - proto: RandomInstruments entities: - uid: 1186 @@ -8688,41 +8620,6 @@ entities: - type: Transform pos: -5.5,-5.5 parent: 1 -- proto: SpawnPointAtmos - entities: - - uid: 1727 - components: - - type: Transform - pos: 7.5,-25.5 - parent: 1 -- proto: SpawnPointBartender - entities: - - uid: 1724 - components: - - type: Transform - pos: -3.5,-18.5 - parent: 1 -- proto: SpawnPointChaplain - entities: - - uid: 1271 - components: - - type: Transform - pos: 2.5,-22.5 - parent: 1 -- proto: SpawnPointChef - entities: - - uid: 1725 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 1 -- proto: SpawnPointChiefEngineer - entities: - - uid: 1272 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 1273 @@ -8740,34 +8637,6 @@ entities: - type: Transform pos: 3.5,-27.5 parent: 1 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 1276 - components: - - type: Transform - pos: 2.5,-26.5 - parent: 1 -- proto: SpawnPointMercenary - entities: - - uid: 1277 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 1 -- proto: SpawnPointServiceWorker - entities: - - uid: 1278 - components: - - type: Transform - pos: -4.5,-6.5 - parent: 1 -- proto: SpawnPointStationEngineer - entities: - - uid: 1726 - components: - - type: Transform - pos: -6.5,-23.5 - parent: 1 - proto: SteelBench entities: - uid: 632 @@ -9485,7 +9354,7 @@ entities: - type: Transform pos: 18.5,-12.5 parent: 1 -- proto: VendingMachineWallMedical +- proto: LockerWallMedical entities: - uid: 1390 components: diff --git a/Resources/Maps/_NF/Shuttles/Expedition/brigand.yml b/Resources/Maps/_NF/Shuttles/Expedition/brigand.yml index b8cb97d9eb2..13c2cd14e2e 100644 --- a/Resources/Maps/_NF/Shuttles/Expedition/brigand.yml +++ b/Resources/Maps/_NF/Shuttles/Expedition/brigand.yml @@ -3572,7 +3572,7 @@ entities: - type: Transform pos: 3.5,7.5 parent: 1 -- proto: GunSafeShuttleT2Spawner +- proto: GunSafeShuttleCaptain entities: - uid: 238 components: diff --git a/Resources/Maps/_NF/Shuttles/Expedition/courserx.yml b/Resources/Maps/_NF/Shuttles/Expedition/courserx.yml index 7d159f39286..33583079c12 100644 --- a/Resources/Maps/_NF/Shuttles/Expedition/courserx.yml +++ b/Resources/Maps/_NF/Shuttles/Expedition/courserx.yml @@ -866,7 +866,7 @@ entities: - type: Transform pos: 4.5,-10.5 parent: 1 -- proto: BedsheetMedical +- proto: BedsheetSpawner entities: - uid: 45 components: @@ -3618,7 +3618,7 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-4.5 parent: 1 -- proto: GunSafeShuttleT2Spawner +- proto: GunSafeShuttleCaptain entities: - uid: 330 components: @@ -3715,7 +3715,7 @@ entities: - 0 - 0 - 0 -- proto: LockerMedicalFilled +- proto: LockerMedical entities: - uid: 466 components: @@ -3804,41 +3804,13 @@ entities: - type: Transform pos: 1.5,-17.5 parent: 1 -- proto: MedicalBed +- proto: Bed entities: - uid: 469 components: - type: Transform pos: 1.5,-6.5 parent: 1 -- proto: MedkitAdvancedFilled - entities: - - uid: 470 - components: - - type: Transform - pos: 0.6290281,-4.389641 - parent: 1 -- proto: MedkitOxygenFilled - entities: - - uid: 471 - components: - - type: Transform - pos: 0.36398113,-4.595904 - parent: 1 -- proto: MedkitRadiationFilled - entities: - - uid: 472 - components: - - type: Transform - pos: -0.08593774,-4.5585074 - parent: 1 -- proto: MedkitToxinFilled - entities: - - uid: 473 - components: - - type: Transform - pos: 0.08593726,-4.3553824 - parent: 1 - proto: NitrogenCanister entities: - uid: 337 @@ -4090,27 +4062,6 @@ entities: - type: Transform pos: -4.5,7.5 parent: 1 -- proto: RandomFoodBakedSingle - entities: - - uid: 515 - components: - - type: Transform - pos: 3.5,4.5 - parent: 1 -- proto: RandomFoodMeal - entities: - - uid: 516 - components: - - type: Transform - pos: -3.5,-4.5 - parent: 1 -- proto: RandomFoodSingle - entities: - - uid: 517 - components: - - type: Transform - pos: -5.5,-1.5 - parent: 1 - proto: RandomInstruments entities: - uid: 518 @@ -4425,13 +4376,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-2.5 parent: 1 -- proto: SpawnPointBartender - entities: - - uid: 576 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 579 @@ -4439,20 +4383,6 @@ entities: - type: Transform pos: -0.5,1.5 parent: 1 -- proto: SpawnPointMercenary - entities: - - uid: 582 - components: - - type: Transform - pos: -0.5,5.5 - parent: 1 -- proto: SpawnPointParamedic - entities: - - uid: 583 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 1 - proto: StoolBar entities: - uid: 584 @@ -4797,7 +4727,7 @@ entities: - type: Transform pos: 3.5,-12.5 parent: 1 -- proto: VendingMachineMedical +- proto: MachineFrame entities: - uid: 637 components: diff --git a/Resources/Maps/_NF/Shuttles/Expedition/dartx.yml b/Resources/Maps/_NF/Shuttles/Expedition/dartx.yml index c48c2817df3..600f7f56ad0 100644 --- a/Resources/Maps/_NF/Shuttles/Expedition/dartx.yml +++ b/Resources/Maps/_NF/Shuttles/Expedition/dartx.yml @@ -1334,7 +1334,7 @@ entities: - type: Transform pos: -1.5,2.5 parent: 1 -- proto: BedsheetMedical +- proto: BedsheetSpawner entities: - uid: 764 components: @@ -2492,7 +2492,7 @@ entities: - type: Transform pos: 0.5,-16.5 parent: 1 -- proto: chem_master +- proto: MachineFrame entities: - uid: 261 components: @@ -3117,27 +3117,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} -- proto: FoodBoxDonkpocketHonk - entities: - - uid: 633 - components: - - type: Transform - pos: -3.7600162,-15.218529 - parent: 1 -- proto: FoodCakeBirthday - entities: - - uid: 838 - components: - - type: Transform - pos: -2.512187,-12.508124 - parent: 1 -- proto: FoodPieBananaCream - entities: - - uid: 923 - components: - - type: Transform - pos: -2.630557,-9.925222 - parent: 1 - proto: GasAnalyzer entities: - uid: 761 @@ -4803,7 +4782,7 @@ entities: - type: Transform pos: 0.5,-18.5 parent: 1 -- proto: GunSafeShuttleT1Spawner +- proto: GunSafeShuttleCaptain entities: - uid: 170 components: @@ -4886,20 +4865,6 @@ entities: - type: Transform pos: 3.5,5.5 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 632 - components: - - type: Transform - pos: -4.5,-15.5 - parent: 1 -- proto: KitchenReagentGrinder - entities: - - uid: 238 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 1 - proto: KnifePlastic entities: - uid: 837 @@ -5130,34 +5095,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: MedicalBed +- proto: Bed entities: - uid: 71 components: - type: Transform pos: -4.5,2.5 parent: 1 -- proto: MedkitAdvancedFilled - entities: - - uid: 634 - components: - - type: Transform - pos: -3.27885,2.696093 - parent: 1 -- proto: MedkitRadiationFilled - entities: - - uid: 773 - components: - - type: Transform - pos: -3.5835376,2.3914056 - parent: 1 -- proto: MedkitToxinFilled - entities: - - uid: 635 - components: - - type: Transform - pos: -3.3726,2.1570306 - parent: 1 - proto: Mirror entities: - uid: 233 @@ -5709,27 +5653,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-4.5 parent: 1 -- proto: SpawnPointBartender - entities: - - uid: 802 - components: - - type: Transform - pos: -3.5,-11.5 - parent: 1 -- proto: SpawnPointCaptain - entities: - - uid: 803 - components: - - type: Transform - pos: -0.5,6.5 - parent: 1 -- proto: SpawnPointClown - entities: - - uid: 806 - components: - - type: Transform - pos: -0.5,-5.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 137 @@ -5738,27 +5661,6 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,2.5 parent: 1 -- proto: SpawnPointMercenary - entities: - - uid: 952 - components: - - type: Transform - pos: 2.5,-13.5 - parent: 1 -- proto: SpawnPointParamedic - entities: - - uid: 823 - components: - - type: Transform - pos: -4.5,1.5 - parent: 1 -- proto: SpawnPointStationEngineer - entities: - - uid: 807 - components: - - type: Transform - pos: -5.5,-18.5 - parent: 1 - proto: StoolBar entities: - uid: 849 @@ -6190,7 +6092,7 @@ entities: - type: Transform pos: -4.5,-10.5 parent: 1 -- proto: VendingMachineChemicals +- proto: MachineFrame entities: - uid: 638 components: @@ -6237,7 +6139,7 @@ entities: - type: Transform pos: 0.5,-5.5 parent: 1 -- proto: VendingMachineWallMedical +- proto: LockerWallMedical entities: - uid: 138 components: diff --git a/Resources/Maps/_NF/Shuttles/Expedition/decadedove.yml b/Resources/Maps/_NF/Shuttles/Expedition/decadedove.yml index 86d089ff5c7..7eed7134d4e 100644 --- a/Resources/Maps/_NF/Shuttles/Expedition/decadedove.yml +++ b/Resources/Maps/_NF/Shuttles/Expedition/decadedove.yml @@ -4747,7 +4747,7 @@ entities: - type: Transform pos: -4.5,4.5 parent: 1 -- proto: LockerWallMedicalDoctorFilled +- proto: LockerWallMedical entities: - uid: 686 components: diff --git a/Resources/Maps/_NF/Shuttles/Expedition/dragonfly.yml b/Resources/Maps/_NF/Shuttles/Expedition/dragonfly.yml index c7b98be2214..9253f7e33f2 100644 --- a/Resources/Maps/_NF/Shuttles/Expedition/dragonfly.yml +++ b/Resources/Maps/_NF/Shuttles/Expedition/dragonfly.yml @@ -2289,7 +2289,7 @@ entities: rot: 3.141592653589793 rad pos: 8.5,8.5 parent: 1 -- proto: chem_master +- proto: MachineFrame entities: - uid: 143 components: @@ -2512,27 +2512,6 @@ entities: - type: DeviceLinkSink links: - 787 -- proto: CrateChemistryD - entities: - - uid: 480 - components: - - type: Transform - pos: -7.5,-9.5 - parent: 1 -- proto: CrateChemistryP - entities: - - uid: 481 - components: - - type: Transform - pos: -7.5,-10.5 - parent: 1 -- proto: CrateChemistryS - entities: - - uid: 448 - components: - - type: Transform - pos: -7.5,-8.5 - parent: 1 - proto: CrateEmptySpawner entities: - uid: 669 @@ -2596,13 +2575,6 @@ entities: - type: Transform pos: 2.1275525,-6.444022 parent: 1 -- proto: DonkpocketBoxSpawner - entities: - - uid: 829 - components: - - type: Transform - pos: 3.5,2.5 - parent: 1 - proto: DrinkDoctorsDelightGlass entities: - uid: 531 @@ -2868,13 +2840,6 @@ entities: - type: Transform pos: 2.5,-12.5 parent: 1 -- proto: FoodBoxPizzaFilled - entities: - - uid: 857 - components: - - type: Transform - pos: -0.43316364,-0.30815744 - parent: 1 - proto: GasCanisterBrokenBase entities: - uid: 841 @@ -3883,7 +3848,7 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-10.5 parent: 1 -- proto: GunSafeShuttleT1Spawner +- proto: GunSafeShuttleCaptain entities: - uid: 244 components: @@ -3967,20 +3932,6 @@ entities: - type: Transform pos: -9.347732,-10.388437 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 828 - components: - - type: Transform - pos: 3.5,1.5 - parent: 1 -- proto: KitchenReagentGrinder - entities: - - uid: 484 - components: - - type: Transform - pos: -9.5,-11.5 - parent: 1 - proto: KnifePlastic entities: - uid: 860 @@ -4628,110 +4579,6 @@ entities: - type: Transform pos: -0.5,3.5 parent: 1 -- proto: RandomSpawner - entities: - - uid: 716 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-10.5 - parent: 1 - - uid: 718 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 1 - - uid: 719 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 - parent: 1 - - uid: 720 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,8.5 - parent: 1 - - uid: 721 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,5.5 - parent: 1 - - uid: 722 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,7.5 - parent: 1 - - uid: 723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,8.5 - parent: 1 - - uid: 724 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,7.5 - parent: 1 - - uid: 862 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 1 - - uid: 863 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 1 - - uid: 876 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,1.5 - parent: 1 - - uid: 877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,0.5 - parent: 1 - - uid: 878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 1 - - uid: 879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-5.5 - parent: 1 - - uid: 880 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 1 - - uid: 881 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 1 - - uid: 882 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 1 - proto: RemoteSignaller entities: - uid: 790 @@ -5323,20 +5170,6 @@ entities: rot: 1.5707963267948966 rad pos: -2.5,3.5 parent: 1 -- proto: SpawnPointCargoTechnician - entities: - - uid: 662 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 1 -- proto: SpawnPointChemist - entities: - - uid: 352 - components: - - type: Transform - pos: -8.5,-7.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 663 @@ -5344,27 +5177,6 @@ entities: - type: Transform pos: 0.5,0.5 parent: 1 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 703 - components: - - type: Transform - pos: 0.5,7.5 - parent: 1 -- proto: SpawnPointServiceWorker - entities: - - uid: 702 - components: - - type: Transform - pos: 0.5,0.5 - parent: 1 -- proto: SpawnPointStationEngineer - entities: - - uid: 664 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 1 - proto: StoolBar entities: - uid: 466 @@ -5808,7 +5620,7 @@ entities: - type: Transform pos: -6.5,6.5 parent: 1 -- proto: VendingMachineChemicals +- proto: MachineFrame entities: - uid: 236 components: diff --git a/Resources/Maps/_NF/Shuttles/Expedition/gasbender.yml b/Resources/Maps/_NF/Shuttles/Expedition/gasbender.yml index 761eb298033..76102a7605a 100644 --- a/Resources/Maps/_NF/Shuttles/Expedition/gasbender.yml +++ b/Resources/Maps/_NF/Shuttles/Expedition/gasbender.yml @@ -5872,18 +5872,6 @@ entities: - type: Transform pos: -0.5,-4.5 parent: 1 -- proto: RandomFoodMeal - entities: - - uid: 848 - components: - - type: Transform - pos: 2.5,9.5 - parent: 1 - - uid: 849 - components: - - type: Transform - pos: 0.5,9.5 - parent: 1 - proto: RandomPainting entities: - uid: 555 diff --git a/Resources/Maps/_NF/Shuttles/Expedition/praeda.yml b/Resources/Maps/_NF/Shuttles/Expedition/praeda.yml index 1fdfdd4a91a..20292800fb8 100644 --- a/Resources/Maps/_NF/Shuttles/Expedition/praeda.yml +++ b/Resources/Maps/_NF/Shuttles/Expedition/praeda.yml @@ -2274,7 +2274,7 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: BedsheetMedical +- proto: BedsheetSpawner entities: - uid: 175 components: @@ -6456,7 +6456,7 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-22.5 parent: 1 -- proto: chem_master +- proto: MachineFrame entities: - uid: 1018 components: @@ -8662,29 +8662,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} -- proto: FoodBoxDonkpocketHonk - entities: - - uid: 1349 - components: - - type: Transform - pos: 1.5919714,-14.375789 - parent: 1 -- proto: FoodBurgerBacon - entities: - - uid: 1350 - components: - - type: MetaData - name: Steve's Burger Fort (1/2) - - type: Transform - pos: 2.2029314,-21.799337 - parent: 1 - - uid: 1351 - components: - - type: MetaData - name: Steve's Burger Fort (2/2) - - type: Transform - pos: 2.713731,-21.771542 - parent: 1 - proto: GasMixer entities: - uid: 1352 @@ -11517,20 +11494,6 @@ entities: - type: Transform pos: 2.6105907,-21.391254 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 220 - components: - - type: Transform - pos: 1.5,-12.5 - parent: 1 -- proto: KitchenReagentGrinder - entities: - - uid: 1726 - components: - - type: Transform - pos: 7.5,-13.5 - parent: 1 - proto: LampGold entities: - uid: 211 @@ -11760,7 +11723,7 @@ entities: - 0 - 0 - 0 -- proto: LockerWallMedicalDoctorFilled +- proto: LockerWallMedical entities: - uid: 222 components: @@ -11768,7 +11731,7 @@ entities: rot: 1.5707963267948966 rad pos: -6.5,-14.5 parent: 1 -- proto: LockerWallMedicalFilled +- proto: LockerWallMedical entities: - uid: 1741 components: @@ -11832,7 +11795,7 @@ entities: - type: Transform pos: -9.5,-32.5 parent: 1 -- proto: MedicalBed +- proto: Bed entities: - uid: 1747 components: @@ -11844,13 +11807,6 @@ entities: - type: Transform pos: -5.5,-16.5 parent: 1 -- proto: MedkitFilled - entities: - - uid: 1749 - components: - - type: Transform - pos: -6.6608167,-13.206823 - parent: 1 - proto: MopBucketFull entities: - uid: 1750 @@ -13723,34 +13679,6 @@ entities: - type: Transform pos: 1.5183704,-17.432232 parent: 1 -- proto: SpawnPointBartender - entities: - - uid: 2029 - components: - - type: Transform - pos: -3.5,-28.5 - parent: 1 -- proto: SpawnPointCargoTechnician - entities: - - uid: 2030 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 1 -- proto: SpawnPointChiefEngineer - entities: - - uid: 2031 - components: - - type: Transform - pos: -0.5,-27.5 - parent: 1 -- proto: SpawnPointJanitor - entities: - - uid: 508 - components: - - type: Transform - pos: -8.5,-31.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 2033 @@ -13768,39 +13696,6 @@ entities: - type: Transform pos: -3.5,-30.5 parent: 1 -- proto: SpawnPointMercenary - entities: - - uid: 216 - components: - - type: Transform - pos: -3.5,-27.5 - parent: 1 -- proto: SpawnPointQuartermaster - entities: - - uid: 2037 - components: - - type: Transform - pos: 2.5,1.5 - parent: 1 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 2039 - components: - - type: Transform - pos: -3.5,-27.5 - parent: 1 -- proto: SpawnPointStationEngineer - entities: - - uid: 2041 - components: - - type: Transform - pos: -3.5,-31.5 - parent: 1 - - uid: 2042 - components: - - type: Transform - pos: -3.5,-30.5 - parent: 1 - proto: StoolBar entities: - uid: 2044 @@ -14755,7 +14650,7 @@ entities: - type: Transform pos: -1.5,-2.5 parent: 1 -- proto: VendingMachineChemicals +- proto: MachineFrame entities: - uid: 2147 components: @@ -14778,7 +14673,7 @@ entities: - type: Transform pos: 4.5,-34.5 parent: 1 -- proto: VendingMachineMedical +- proto: MachineFrame entities: - uid: 2151 components: diff --git a/Resources/Maps/_NF/Shuttles/Expedition/rosebudmkii.yml b/Resources/Maps/_NF/Shuttles/Expedition/rosebudmkii.yml index a727d29e234..a8ed5f2dc1a 100644 --- a/Resources/Maps/_NF/Shuttles/Expedition/rosebudmkii.yml +++ b/Resources/Maps/_NF/Shuttles/Expedition/rosebudmkii.yml @@ -2272,7 +2272,7 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,2.5 parent: 1 -- proto: BedsheetMedical +- proto: BedsheetSpawner entities: - uid: 190 components: @@ -4767,7 +4767,7 @@ entities: rot: 1.5707963267948966 rad pos: 6.483588,2.141698 parent: 1 -- proto: chem_master +- proto: MachineFrame entities: - uid: 26 components: @@ -5419,13 +5419,6 @@ entities: - type: DeviceLinkSink links: - 154 -- proto: CrateChemistrySupplies - entities: - - uid: 436 - components: - - type: Transform - pos: -8.5,7.5 - parent: 1 - proto: DefibrillatorCabinetFilled entities: - uid: 793 @@ -6055,23 +6048,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} -- proto: FoodBakedCookie - entities: - - uid: 161 - components: - - type: Transform - pos: 6.3913617,2.0044975 - parent: 1 - - uid: 609 - components: - - type: Transform - pos: 6.6257367,1.934185 - parent: 1 - - uid: 808 - components: - - type: Transform - pos: 6.4499555,1.88731 - parent: 1 - proto: FoodPlate entities: - uid: 608 @@ -7477,7 +7453,7 @@ entities: - 0 - 0 - 0 -- proto: LockerMedicalFilled +- proto: LockerMedical entities: - uid: 239 components: @@ -7541,7 +7517,7 @@ entities: - type: Transform pos: 12.5,-13.5 parent: 1 -- proto: MedicalBed +- proto: Bed entities: - uid: 206 components: @@ -7553,20 +7529,6 @@ entities: - type: Transform pos: -5.5,0.5 parent: 1 -- proto: MedkitFilled - entities: - - uid: 435 - components: - - type: Transform - pos: -8.446656,3.6739035 - parent: 1 -- proto: MedkitToxinFilled - entities: - - uid: 976 - components: - - type: Transform - pos: -8.642134,3.4433465 - parent: 1 - proto: Morgue entities: - uid: 541 @@ -9813,20 +9775,6 @@ entities: - type: Transform pos: 4.5,-1.5 parent: 1 -- proto: SpawnPointChemist - entities: - - uid: 586 - components: - - type: Transform - pos: -6.5,9.5 - parent: 1 -- proto: SpawnPointChiefEngineer - entities: - - uid: 629 - components: - - type: Transform - pos: 12.5,7.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 1731 @@ -9834,27 +9782,6 @@ entities: - type: Transform pos: 2.5,3.5 parent: 1 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 1216 - components: - - type: Transform - pos: -6.5,2.5 - parent: 1 -- proto: SpawnPointParamedic - entities: - - uid: 478 - components: - - type: Transform - pos: -7.5,2.5 - parent: 1 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 645 - components: - - type: Transform - pos: 12.5,3.5 - parent: 1 - proto: SubstationBasic entities: - uid: 160 @@ -10458,7 +10385,7 @@ entities: - type: Transform pos: -5.5,7.5 parent: 1 -- proto: VendingMachineChemicals +- proto: MachineFrame entities: - uid: 1716 components: @@ -10493,7 +10420,7 @@ entities: - type: Transform pos: 13.5,8.5 parent: 1 -- proto: VendingMachineWallMedical +- proto: LockerWallMedical entities: - uid: 461 components: diff --git a/Resources/Maps/_NF/Shuttles/Expedition/sprinter.yml b/Resources/Maps/_NF/Shuttles/Expedition/sprinter.yml index 9745d4c0fc0..d48962bc840 100644 --- a/Resources/Maps/_NF/Shuttles/Expedition/sprinter.yml +++ b/Resources/Maps/_NF/Shuttles/Expedition/sprinter.yml @@ -3841,7 +3841,7 @@ entities: pos: 5.5,-9.5 parent: 1 type: Transform -- proto: GunSafeShuttleT1Spawner +- proto: GunSafeShuttleCaptain entities: - uid: 70 components: @@ -3931,13 +3931,6 @@ entities: - pos: -2.6460953,2.7065454 parent: 1 type: Transform -- proto: KitchenMicrowave - entities: - - uid: 593 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform - proto: LockerBoozeFilled entities: - uid: 594 @@ -3991,7 +3984,7 @@ entities: - pos: -3.5,-6.5 parent: 1 type: Transform -- proto: LockerWallMedicalFilled +- proto: LockerWallMedical entities: - uid: 597 components: @@ -4016,7 +4009,7 @@ entities: - 0 - 0 type: EntityStorage -- proto: MedicalBed +- proto: Bed entities: - uid: 598 components: @@ -4250,125 +4243,6 @@ entities: - pos: -3.5,2.5 parent: 1 type: Transform -- proto: RandomSpawner - entities: - - uid: 256 - components: - - pos: 0.5,-11.5 - parent: 1 - type: Transform - - uid: 451 - components: - - pos: -1.5,9.5 - parent: 1 - type: Transform - - uid: 477 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-4.5 - parent: 1 - type: Transform - - uid: 478 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 1 - type: Transform - - uid: 641 - components: - - pos: -4.5,-1.5 - parent: 1 - type: Transform - - uid: 642 - components: - - pos: 4.5,-7.5 - parent: 1 - type: Transform - - uid: 643 - components: - - pos: 3.5,-6.5 - parent: 1 - type: Transform - - uid: 644 - components: - - pos: 0.5,-1.5 - parent: 1 - type: Transform - - uid: 645 - components: - - pos: -9.5,-5.5 - parent: 1 - type: Transform - - uid: 646 - components: - - pos: 9.5,-5.5 - parent: 1 - type: Transform - - uid: 647 - components: - - pos: 9.5,-2.5 - parent: 1 - type: Transform - - uid: 648 - components: - - pos: -11.5,-5.5 - parent: 1 - type: Transform - - uid: 649 - components: - - pos: -4.5,-7.5 - parent: 1 - type: Transform - - uid: 650 - components: - - pos: -2.5,-8.5 - parent: 1 - type: Transform - - uid: 652 - components: - - pos: 11.5,-2.5 - parent: 1 - type: Transform - - uid: 653 - components: - - pos: 0.5,0.5 - parent: 1 - type: Transform - - uid: 654 - components: - - pos: 0.5,4.5 - parent: 1 - type: Transform - - uid: 655 - components: - - pos: -11.5,-2.5 - parent: 1 - type: Transform - - uid: 657 - components: - - pos: 1.5,-3.5 - parent: 1 - type: Transform - - uid: 659 - components: - - pos: -1.5,-10.5 - parent: 1 - type: Transform - - uid: 661 - components: - - pos: 0.5,-8.5 - parent: 1 - type: Transform - - uid: 662 - components: - - pos: 0.5,10.5 - parent: 1 - type: Transform - - uid: 663 - components: - - pos: -0.5,11.5 - parent: 1 - type: Transform - proto: ReinforcedWindow entities: - uid: 666 @@ -4657,13 +4531,6 @@ entities: - pos: 2.6583714,-10.571913 parent: 1 type: Transform -- proto: SpawnPointBartender - entities: - - uid: 716 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform - proto: SpawnPointLatejoin entities: - uid: 717 @@ -4676,27 +4543,6 @@ entities: - pos: -1.5,-11.5 parent: 1 type: Transform -- proto: SpawnPointMercenary - entities: - - uid: 398 - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform -- proto: SpawnPointParamedic - entities: - - uid: 720 - components: - - pos: 3.5,-7.5 - parent: 1 - type: Transform -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 415 - components: - - pos: -2.5,-7.5 - parent: 1 - type: Transform - proto: Stairs entities: - uid: 473 @@ -5084,7 +4930,7 @@ entities: - pos: -7.5,-2.5 parent: 1 type: Transform -- proto: VendingMachineWallMedical +- proto: LockerWallMedical entities: - uid: 767 components: diff --git a/Resources/Maps/_NF/Shuttles/Nfsd/empress.yml b/Resources/Maps/_NF/Shuttles/Nfsd/empress.yml index 486e4dd4672..1624a68be8c 100644 --- a/Resources/Maps/_NF/Shuttles/Nfsd/empress.yml +++ b/Resources/Maps/_NF/Shuttles/Nfsd/empress.yml @@ -11442,25 +11442,13 @@ entities: - type: Transform pos: -2.7208433,-4.620925 parent: 1 -- proto: KitchenDeepFryer +- proto: MachineFrame entities: - uid: 1161 components: - type: Transform pos: 15.5,8.5 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 925 - components: - - type: Transform - pos: -14.5,8.5 - parent: 1 - - uid: 1162 - components: - - type: Transform - pos: 14.5,8.5 - parent: 1 - proto: KitchenReagentGrinder entities: - uid: 598 diff --git a/Resources/Maps/_NF/Shuttles/Nfsd/marauder.yml b/Resources/Maps/_NF/Shuttles/Nfsd/marauder.yml index 3175a733c2c..03241c587c4 100644 --- a/Resources/Maps/_NF/Shuttles/Nfsd/marauder.yml +++ b/Resources/Maps/_NF/Shuttles/Nfsd/marauder.yml @@ -7520,20 +7520,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-5.5 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 1237 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 1 -- proto: KitchenReagentGrinder - entities: - - uid: 1238 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 1 - proto: LampGold entities: - uid: 2 diff --git a/Resources/Maps/_NF/Shuttles/Nfsd/opportunity.yml b/Resources/Maps/_NF/Shuttles/Nfsd/opportunity.yml index 6d49052832e..a35b7687439 100644 --- a/Resources/Maps/_NF/Shuttles/Nfsd/opportunity.yml +++ b/Resources/Maps/_NF/Shuttles/Nfsd/opportunity.yml @@ -2891,17 +2891,6 @@ entities: - type: Transform pos: 0.5,-3.5 parent: 2 -- proto: FoodBoxDonkpocket - entities: - - uid: 635 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 634 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: GasPassiveVent entities: - uid: 653 @@ -4365,25 +4354,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,10.5 parent: 2 -- proto: KitchenMicrowave - entities: - - uid: 320 - components: - - type: Transform - pos: 3.5,8.5 - parent: 2 - - uid: 633 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 2 -- proto: KitchenReagentGrinder - entities: - - uid: 321 - components: - - type: Transform - pos: 4.5,8.5 - parent: 2 - proto: KnifePlastic entities: - uid: 940 diff --git a/Resources/Maps/_NF/Shuttles/Nfsd/prowler.yml b/Resources/Maps/_NF/Shuttles/Nfsd/prowler.yml index 0323969371a..e992cd34392 100644 --- a/Resources/Maps/_NF/Shuttles/Nfsd/prowler.yml +++ b/Resources/Maps/_NF/Shuttles/Nfsd/prowler.yml @@ -2700,13 +2700,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,1.5 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 344 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 1 - proto: LockerNfsdBailiff entities: - uid: 345 diff --git a/Resources/Maps/_NF/Shuttles/Nfsd/wasp.yml b/Resources/Maps/_NF/Shuttles/Nfsd/wasp.yml index 355577bb8bd..5ea8430e01b 100644 --- a/Resources/Maps/_NF/Shuttles/Nfsd/wasp.yml +++ b/Resources/Maps/_NF/Shuttles/Nfsd/wasp.yml @@ -5049,13 +5049,6 @@ entities: - type: Transform pos: 4.5,7.5 parent: 1 -- proto: DonkpocketBoxSpawner - entities: - - uid: 732 - components: - - type: Transform - pos: 5.5,-15.5 - parent: 1 - proto: DresserFilled entities: - uid: 116 @@ -8349,30 +8342,6 @@ entities: - type: Transform pos: 5.1434035,11.657407 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 1186 - components: - - type: Transform - pos: 4.5,11.5 - parent: 1 - - uid: 1187 - components: - - type: Transform - pos: 4.5,-14.5 - parent: 1 -- proto: KitchenReagentGrinder - entities: - - uid: 1188 - components: - - type: Transform - pos: 5.5,11.5 - parent: 1 - - uid: 1189 - components: - - type: Transform - pos: -5.5,-4.5 - parent: 1 - proto: Lamp entities: - uid: 1190 @@ -9927,13 +9896,6 @@ entities: - type: Transform pos: 0.5,15.5 parent: 1 -- proto: SpawnMobSmile - entities: - - uid: 1429 - components: - - type: Transform - pos: 4.5,7.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 1793 diff --git a/Resources/Maps/_NF/Shuttles/Nfsd/whiskey.yml b/Resources/Maps/_NF/Shuttles/Nfsd/whiskey.yml index e157fa9d7d7..87b1e92dcf2 100644 --- a/Resources/Maps/_NF/Shuttles/Nfsd/whiskey.yml +++ b/Resources/Maps/_NF/Shuttles/Nfsd/whiskey.yml @@ -1644,42 +1644,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,12.5 parent: 1 -- proto: FoodBoxDonut - entities: - - uid: 199 - components: - - type: Transform - pos: 0.5319689,1.4083452 - parent: 1 -- proto: FoodGumball - entities: - - uid: 200 - components: - - type: Transform - pos: -0.7008517,7.4746523 - parent: 1 - - uid: 201 - components: - - type: Transform - pos: -0.33974057,7.4468746 - parent: 1 -- proto: FoodLollipop - entities: - - uid: 202 - components: - - type: Transform - pos: -0.72862947,7.669097 - parent: 1 - - uid: 203 - components: - - type: Transform - pos: -0.50640726,7.669097 - parent: 1 - - uid: 204 - components: - - type: Transform - pos: -0.31196284,7.6413193 - parent: 1 - proto: GasAnalyzer entities: - uid: 205 @@ -2601,13 +2565,6 @@ entities: - type: Transform pos: 1.5,-6.5 parent: 1 -- proto: KitchenReagentGrinder - entities: - - uid: 325 - components: - - type: Transform - pos: -1.5,9.5 - parent: 1 - proto: LargeBeaker entities: - uid: 326 diff --git a/Resources/Maps/_NF/Shuttles/Scrap/bison.yml b/Resources/Maps/_NF/Shuttles/Scrap/bison.yml index 839699c0d9f..22e9c4b0082 100644 --- a/Resources/Maps/_NF/Shuttles/Scrap/bison.yml +++ b/Resources/Maps/_NF/Shuttles/Scrap/bison.yml @@ -2209,7 +2209,7 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-25.5 parent: 1 -- proto: BedsheetMedical +- proto: BedsheetSpawner entities: - uid: 744 components: @@ -7948,13 +7948,6 @@ entities: ents: [] bank-ATM-cashSlot: !type:ContainerSlot {} - type: ItemSlots -- proto: CrateChemistrySupplies - entities: - - uid: 2699 - components: - - type: Transform - pos: 1.5,-6.5 - parent: 1 - proto: CrateEmergencyO2Kit entities: - uid: 2636 @@ -9371,423 +9364,6 @@ entities: - type: Transform pos: -1.5351219,-19.403667 parent: 1 -- proto: FoodBakedMuffin - entities: - - uid: 2185 - components: - - type: Transform - pos: -6.288831,-18.906513 - parent: 1 -- proto: FoodBreadGarlicSlice - entities: - - uid: 2160 - components: - - type: Transform - pos: -4.6953106,-4.282234 - parent: 1 -- proto: FoodBurgerBig - entities: - - uid: 2165 - components: - - type: Transform - pos: -3.6736631,-1.0484629 - parent: 1 -- proto: FoodBurgerCheese - entities: - - uid: 598 - components: - - type: Transform - pos: 6.726831,-21.285185 - parent: 1 -- proto: FoodBurgerSuper - entities: - - uid: 904 - components: - - type: Transform - pos: 4.0329285,-22.415806 - parent: 1 -- proto: FoodCheese - entities: - - uid: 2378 - components: - - type: Transform - pos: 7.659148,-16.509655 - parent: 1 - - uid: 2379 - components: - - type: Transform - pos: 7.659148,-16.509655 - parent: 1 - - uid: 2380 - components: - - type: Transform - pos: 7.659148,-16.509655 - parent: 1 - - uid: 2381 - components: - - type: Transform - pos: 7.659148,-16.509655 - parent: 1 - - uid: 2382 - components: - - type: Transform - pos: 7.659148,-16.509655 - parent: 1 - - uid: 2383 - components: - - type: Transform - pos: 7.659148,-16.509655 - parent: 1 - - uid: 2384 - components: - - type: Transform - pos: 7.659148,-16.509655 - parent: 1 - - uid: 2385 - components: - - type: Transform - pos: 7.659148,-16.509655 - parent: 1 -- proto: FoodEgg - entities: - - uid: 2297 - components: - - type: Transform - pos: 8.659148,-17.134655 - parent: 1 - - uid: 2298 - components: - - type: Transform - pos: 8.659148,-17.134655 - parent: 1 - - uid: 2299 - components: - - type: Transform - pos: 8.659148,-17.134655 - parent: 1 - - uid: 2300 - components: - - type: Transform - pos: 8.659148,-17.134655 - parent: 1 - - uid: 2301 - components: - - type: Transform - pos: 8.659148,-17.134655 - parent: 1 - - uid: 2302 - components: - - type: Transform - pos: 8.659148,-17.134655 - parent: 1 - - uid: 2303 - components: - - type: Transform - pos: 8.659148,-17.134655 - parent: 1 - - uid: 2304 - components: - - type: Transform - pos: 8.659148,-17.134655 - parent: 1 - - uid: 2305 - components: - - type: Transform - pos: 8.659148,-17.134655 - parent: 1 - - uid: 2306 - components: - - type: Transform - pos: 8.659148,-17.134655 - parent: 1 - - uid: 2307 - components: - - type: Transform - pos: 8.659148,-17.134655 - parent: 1 - - uid: 2308 - components: - - type: Transform - pos: 8.315398,-17.24403 - parent: 1 - - uid: 2309 - components: - - type: Transform - pos: 8.315398,-17.24403 - parent: 1 - - uid: 2310 - components: - - type: Transform - pos: 8.315398,-17.24403 - parent: 1 - - uid: 2311 - components: - - type: Transform - pos: 8.315398,-17.24403 - parent: 1 - - uid: 2312 - components: - - type: Transform - pos: 8.315398,-17.24403 - parent: 1 - - uid: 2313 - components: - - type: Transform - pos: 8.315398,-17.24403 - parent: 1 - - uid: 2314 - components: - - type: Transform - pos: 8.315398,-17.24403 - parent: 1 - - uid: 2315 - components: - - type: Transform - pos: 8.534148,-17.290905 - parent: 1 - - uid: 2316 - components: - - type: Transform - pos: 8.534148,-17.290905 - parent: 1 - - uid: 2317 - components: - - type: Transform - pos: 8.534148,-17.290905 - parent: 1 - - uid: 2318 - components: - - type: Transform - pos: 8.534148,-17.290905 - parent: 1 - - uid: 2319 - components: - - type: Transform - pos: 8.534148,-17.290905 - parent: 1 - - uid: 2320 - components: - - type: Transform - pos: 8.534148,-17.290905 - parent: 1 - - uid: 2321 - components: - - type: Transform - pos: 8.534148,-17.290905 - parent: 1 - - uid: 2322 - components: - - type: Transform - pos: 8.534148,-17.290905 - parent: 1 - - uid: 2323 - components: - - type: Transform - pos: 8.534148,-17.290905 - parent: 1 - - uid: 2324 - components: - - type: Transform - pos: 8.534148,-17.290905 - parent: 1 - - uid: 2325 - components: - - type: Transform - pos: 8.534148,-17.290905 - parent: 1 -- proto: FoodKebabSkewer - entities: - - uid: 2174 - components: - - type: Transform - pos: 8.720428,-20.80643 - parent: 1 - - uid: 2175 - components: - - type: Transform - pos: 8.579803,-20.71268 - parent: 1 -- proto: FoodMealFries - entities: - - uid: 2173 - components: - - type: Transform - pos: 4.3141785,-22.353306 - parent: 1 - - uid: 2180 - components: - - type: Transform - pos: 6.773706,-20.941435 - parent: 1 - - uid: 2181 - components: - - type: Transform - pos: 6.273706,-21.23831 - parent: 1 - - uid: 2182 - components: - - type: Transform - pos: 6.273706,-20.941435 - parent: 1 -- proto: FoodMealFriesCheesy - entities: - - uid: 2169 - components: - - type: Transform - pos: -3.3299131,-1.0082154 - parent: 1 - - uid: 2170 - components: - - type: Transform - pos: 3.4235535,-22.478306 - parent: 1 -- proto: FoodMealRibs - entities: - - uid: 2164 - components: - - type: Transform - pos: -3.4705381,-1.2515879 - parent: 1 -- proto: FoodMeat - entities: - - uid: 2339 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2340 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2341 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2342 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2343 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2344 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2345 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2346 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2347 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2348 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2349 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2350 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2351 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2352 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2353 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2354 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2355 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2356 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2357 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 - - uid: 2358 - components: - - type: Transform - pos: 7.768523,-17.11903 - parent: 1 -- proto: FoodMeatChickenFried - entities: - - uid: 2161 - components: - - type: Transform - pos: -4.2890606,-4.125984 - parent: 1 - - uid: 2172 - components: - - type: Transform - pos: 4.5016785,-22.572056 - parent: 1 -- proto: FoodPieMeat - entities: - - uid: 2159 - components: - - type: Transform - pos: -4.6640606,-4.063484 - parent: 1 -- proto: FoodPizzaMeat - entities: - - uid: 2158 - components: - - type: Transform - pos: -4.5078106,-4.313484 - parent: 1 -- proto: FoodPlate - entities: - - uid: 2162 - components: - - type: Transform - pos: -4.5703106,-4.172859 - parent: 1 - - uid: 2167 - components: - - type: Transform - pos: -3.4705381,-1.1957154 - parent: 1 - proto: FoodPlatePlastic entities: - uid: 2171 @@ -9817,256 +9393,6 @@ entities: - type: Transform pos: -3.6580381,-1.0082154 parent: 1 -- proto: FoodSnackChocolate - entities: - - uid: 2087 - components: - - type: Transform - pos: -5.8013124,-14.3419285 - parent: 1 -- proto: FoodSnackChowMein - entities: - - uid: 1980 - components: - - type: Transform - pos: 3.5069973,-18.346783 - parent: 1 -- proto: FoodSnackDanDanNoodles - entities: - - uid: 690 - components: - - type: Transform - pos: 4.407483,-18.206772 - parent: 1 - - uid: 2013 - components: - - type: Transform - pos: 4.735608,-18.456772 - parent: 1 -- proto: FoodSnackMREBrownieOpen - entities: - - uid: 2973 - components: - - type: Transform - pos: -5.790093,-25.563456 - parent: 1 - - uid: 2977 - components: - - type: Transform - pos: -5.7874713,-28.574776 - parent: 1 -- proto: FoodSnackNutribrick - entities: - - uid: 2088 - components: - - type: Transform - pos: -8.833028,-23.304966 - parent: 1 - - uid: 2703 - components: - - type: Transform - pos: 5.578805,-6.029376 - parent: 1 -- proto: FoodSnackNutribrickOpen - entities: - - uid: 2701 - components: - - type: Transform - pos: 4.391305,-6.732501 - parent: 1 - - uid: 2702 - components: - - type: Transform - pos: 4.391305,-6.357501 - parent: 1 -- proto: FoodSnackRaisins - entities: - - uid: 2704 - components: - - type: Transform - pos: 3.6162286,-8.302732 - parent: 1 -- proto: FoodTinMRETrash - entities: - - uid: 2193 - components: - - type: Transform - pos: -6.684969,-16.647165 - parent: 1 -- proto: FoodTomato - entities: - - uid: 2750 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2753 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2754 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2755 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2761 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2762 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2763 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2764 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2765 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2766 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2767 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2768 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2769 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2770 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2771 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2772 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2773 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2774 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2775 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2776 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 - - uid: 2777 - components: - - type: Transform - pos: 7.7270474,-16.762527 - parent: 1 -- proto: FoodWatermelon - entities: - - uid: 2405 - components: - - type: Transform - pos: 7.315398,-17.36903 - parent: 1 - - uid: 2406 - components: - - type: Transform - pos: 7.315398,-17.36903 - parent: 1 - - uid: 2407 - components: - - type: Transform - pos: 7.315398,-17.36903 - parent: 1 - - uid: 2408 - components: - - type: Transform - pos: 7.315398,-17.36903 - parent: 1 - - uid: 2409 - components: - - type: Transform - pos: 7.315398,-17.36903 - parent: 1 - - uid: 2410 - components: - - type: Transform - pos: 7.315398,-17.36903 - parent: 1 - - uid: 2411 - components: - - type: Transform - pos: 7.315398,-17.36903 - parent: 1 - - uid: 2412 - components: - - type: Transform - pos: 7.315398,-17.36903 - parent: 1 - - uid: 2413 - components: - - type: Transform - pos: 7.315398,-17.36903 - parent: 1 - - uid: 2414 - components: - - type: Transform - pos: 7.315398,-17.36903 - parent: 1 - - uid: 2415 - components: - - type: Transform - pos: 7.315398,-17.36903 - parent: 1 - - uid: 2416 - components: - - type: Transform - pos: 7.315398,-17.36903 - parent: 1 - - uid: 2417 - components: - - type: Transform - pos: 7.315398,-17.36903 - parent: 1 - proto: Football entities: - uid: 2192 @@ -14466,25 +13792,6 @@ entities: rot: 3.141592653589793 rad pos: 8.6603775,-20.618158 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 683 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 1 - - uid: 2075 - components: - - type: Transform - pos: -6.5,-5.5 - parent: 1 -- proto: KitchenReagentGrinder - entities: - - uid: 2787 - components: - - type: Transform - pos: 8.5,-22.5 - parent: 1 - proto: KitchenSpike entities: - uid: 1917 @@ -14541,7 +13848,7 @@ entities: - type: Transform pos: 13.5,-30.5 parent: 1 -- proto: LockerMedicalFilled +- proto: LockerMedical entities: - uid: 749 components: @@ -14570,7 +13877,7 @@ entities: - type: Transform pos: 2.5,-4.5 parent: 1 -- proto: LockerWallMedicalDoctorFilled +- proto: LockerWallMedical entities: - uid: 677 components: @@ -14578,27 +13885,13 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,-34.5 parent: 1 -- proto: MedicalBed +- proto: Bed entities: - uid: 743 components: - type: Transform pos: -10.5,-36.5 parent: 1 -- proto: MedkitFilled - entities: - - uid: 741 - components: - - type: Transform - pos: -11.536187,-34.399456 - parent: 1 -- proto: MedkitOxygenFilled - entities: - - uid: 754 - components: - - type: Transform - pos: -11.541139,-34.77665 - parent: 1 - proto: MiningDrill entities: - uid: 2110 diff --git a/Resources/Maps/_NF/Shuttles/Scrap/canister.yml b/Resources/Maps/_NF/Shuttles/Scrap/canister.yml index 2e3e49b7a55..0238cacd87c 100644 --- a/Resources/Maps/_NF/Shuttles/Scrap/canister.yml +++ b/Resources/Maps/_NF/Shuttles/Scrap/canister.yml @@ -571,13 +571,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,2.5 parent: 1 -- proto: RandomSpawner - entities: - - uid: 13 - components: - - type: Transform - pos: -0.5,0.5 - parent: 1 - proto: SheetPlasma1 entities: - uid: 83 diff --git a/Resources/Maps/_NF/Shuttles/Scrap/disciple.yml b/Resources/Maps/_NF/Shuttles/Scrap/disciple.yml index 7504c286eb5..5a0de5b0b05 100644 --- a/Resources/Maps/_NF/Shuttles/Scrap/disciple.yml +++ b/Resources/Maps/_NF/Shuttles/Scrap/disciple.yml @@ -754,13 +754,6 @@ entities: - type: Transform pos: -2.7624044,5.4494452 parent: 1 -- proto: FoodMeatRatdoubleKebab - entities: - - uid: 154 - components: - - type: Transform - pos: -1.434973,-0.4808603 - parent: 1 - proto: FoodTinPeachesMaint entities: - uid: 135 @@ -1090,30 +1083,6 @@ entities: - type: Transform pos: -0.5,1.5 parent: 1 -- proto: RandomSpawner - entities: - - uid: 102 - components: - - type: Transform - pos: 3.5,2.5 - parent: 1 - - uid: 103 - components: - - type: Transform - pos: 0.5,4.5 - parent: 1 - - uid: 104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 1 - - uid: 105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 1 - proto: ReinforcedGirder entities: - uid: 49 diff --git a/Resources/Maps/_NF/Shuttles/Scrap/nugget.yml b/Resources/Maps/_NF/Shuttles/Scrap/nugget.yml index 1d758d70cb8..db50446e59c 100644 --- a/Resources/Maps/_NF/Shuttles/Scrap/nugget.yml +++ b/Resources/Maps/_NF/Shuttles/Scrap/nugget.yml @@ -1144,13 +1144,6 @@ entities: - pos: 6.592401,-7.4767485 parent: 1 type: Transform -- proto: DonkpocketBoxSpawner - entities: - - uid: 79 - components: - - pos: 12.5,-2.5 - parent: 1 - type: Transform - proto: DrinkGlass entities: - uid: 80 @@ -1726,70 +1719,6 @@ entities: - pos: 10.5,-4.5 parent: 1 type: Transform -- proto: RandomSpawner - entities: - - uid: 170 - components: - - pos: 5.5,-7.5 - parent: 1 - type: Transform - - uid: 171 - components: - - pos: 9.5,-4.5 - parent: 1 - type: Transform - - uid: 172 - components: - - pos: 7.5,-3.5 - parent: 1 - type: Transform - - uid: 173 - components: - - pos: 8.5,-6.5 - parent: 1 - type: Transform - - uid: 174 - components: - - pos: 11.5,-4.5 - parent: 1 - type: Transform - - uid: 175 - components: - - pos: 8.5,0.5 - parent: 1 - type: Transform - - uid: 176 - components: - - pos: 3.5,-3.5 - parent: 1 - type: Transform - - uid: 177 - components: - - pos: 3.5,-0.5 - parent: 1 - type: Transform - - uid: 339 - components: - - pos: 2.5,-3.5 - parent: 1 - type: Transform - - uid: 340 - components: - - pos: 4.5,0.5 - parent: 1 - type: Transform -- proto: RandomSpawner100 - entities: - - uid: 336 - components: - - pos: 7.5,-0.5 - parent: 1 - type: Transform - - uid: 337 - components: - - pos: 9.5,-6.5 - parent: 1 - type: Transform - proto: ReagentContainerFlourSmall entities: - uid: 178 @@ -2014,13 +1943,6 @@ entities: - pos: 3.5,-7.5 parent: 1 type: Transform -- proto: SpawnPointAssistant - entities: - - uid: 212 - components: - - pos: 6.5,-5.5 - parent: 1 - type: Transform - proto: SpawnPointLatejoin entities: - uid: 213 diff --git a/Resources/Maps/_NF/Shuttles/Scrap/orange.yml b/Resources/Maps/_NF/Shuttles/Scrap/orange.yml index f7dd1f7790c..f462b4af815 100644 --- a/Resources/Maps/_NF/Shuttles/Scrap/orange.yml +++ b/Resources/Maps/_NF/Shuttles/Scrap/orange.yml @@ -1305,13 +1305,6 @@ entities: type: EntityStorage - isPlaceable: True type: PlaceableSurface -- proto: DonkpocketBoxSpawner - entities: - - uid: 117 - components: - - pos: 14.5,3.5 - parent: 1 - type: Transform - proto: DrinkWaterCup entities: - uid: 118 @@ -1738,28 +1731,6 @@ entities: pos: 6.5,10.5 parent: 1 type: Transform -- proto: RandomSpawner - entities: - - uid: 189 - components: - - pos: 4.5,3.5 - parent: 1 - type: Transform - - uid: 190 - components: - - pos: 12.5,4.5 - parent: 1 - type: Transform - - uid: 191 - components: - - pos: 12.5,7.5 - parent: 1 - type: Transform - - uid: 192 - components: - - pos: -1.5,4.5 - parent: 1 - type: Transform - proto: ShardGlass entities: - uid: 193 @@ -1952,13 +1923,6 @@ entities: - pos: 2.5,4.5 parent: 1 type: Transform -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 223 - components: - - pos: 2.5,4.5 - parent: 1 - type: Transform - proto: SubstationBasic entities: - uid: 224 diff --git a/Resources/Maps/_NF/Shuttles/Scrap/point.yml b/Resources/Maps/_NF/Shuttles/Scrap/point.yml index 0a89f62071b..5542492605d 100644 --- a/Resources/Maps/_NF/Shuttles/Scrap/point.yml +++ b/Resources/Maps/_NF/Shuttles/Scrap/point.yml @@ -1753,13 +1753,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,6.5 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 106 - components: - - type: Transform - pos: 5.5,0.5 - parent: 1 - proto: MachineArtifactAnalyzer entities: - uid: 231 @@ -1937,24 +1930,6 @@ entities: - type: Transform pos: 5.5,0.5 parent: 1 -- proto: RandomSpawner - entities: - - uid: 85 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,9.5 - parent: 1 - - uid: 233 - components: - - type: Transform - pos: 2.5,1.5 - parent: 1 - - uid: 234 - components: - - type: Transform - pos: 1.5,8.5 - parent: 1 - proto: ResearchAndDevelopmentServer entities: - uid: 110 diff --git a/Resources/Maps/_NF/Shuttles/Scrap/tide.yml b/Resources/Maps/_NF/Shuttles/Scrap/tide.yml index 294500a0a4b..7ec702afd13 100644 --- a/Resources/Maps/_NF/Shuttles/Scrap/tide.yml +++ b/Resources/Maps/_NF/Shuttles/Scrap/tide.yml @@ -1532,38 +1532,6 @@ entities: - pos: 7.5,6.5 parent: 1 type: Transform -- proto: RandomSpawner - entities: - - uid: 156 - components: - - pos: -0.5,9.5 - parent: 1 - type: Transform - - uid: 157 - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform - - uid: 158 - components: - - pos: 0.5,3.5 - parent: 1 - type: Transform - - uid: 159 - components: - - pos: 1.5,0.5 - parent: 1 - type: Transform - - uid: 160 - components: - - pos: 2.5,1.5 - parent: 1 - type: Transform - - uid: 161 - components: - - pos: 5.5,5.5 - parent: 1 - type: Transform - proto: ShardGlass entities: - uid: 162 diff --git a/Resources/Maps/_NF/Shuttles/Syndicate/infiltrator.yml b/Resources/Maps/_NF/Shuttles/Syndicate/infiltrator.yml index 56c159a36ec..0dc9b9ced2d 100644 --- a/Resources/Maps/_NF/Shuttles/Syndicate/infiltrator.yml +++ b/Resources/Maps/_NF/Shuttles/Syndicate/infiltrator.yml @@ -2897,27 +2897,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-6.5 parent: 1 -- proto: FoodBoxDonkpocketPizza - entities: - - uid: 364 - components: - - type: Transform - pos: 2.7185502,-19.320925 - parent: 1 -- proto: FoodBoxDonut - entities: - - uid: 365 - components: - - type: Transform - pos: 5.5401826,-21.187487 - parent: 1 -- proto: FoodSnackSyndi - entities: - - uid: 298 - components: - - type: Transform - pos: 1.5133759,-21.37676 - parent: 1 - proto: GasMixer entities: - uid: 370 @@ -4046,14 +4025,6 @@ entities: - type: Transform pos: 2.5,-6.5 parent: 1 -- proto: PosterContrabandDonk - entities: - - uid: 527 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-18.5 - parent: 1 - proto: PosterContrabandDonutCorp entities: - uid: 528 diff --git a/Resources/Maps/_NF/Shuttles/barge.yml b/Resources/Maps/_NF/Shuttles/barge.yml index 083dc881152..cfd868474c1 100644 --- a/Resources/Maps/_NF/Shuttles/barge.yml +++ b/Resources/Maps/_NF/Shuttles/barge.yml @@ -4440,20 +4440,6 @@ entities: - type: Transform pos: 4.5,-23.5 parent: 70 -- proto: SpawnPointBartender - entities: - - uid: 600 - components: - - type: Transform - pos: -4.5,-5.5 - parent: 70 -- proto: SpawnPointCargoTechnician - entities: - - uid: 601 - components: - - type: Transform - pos: 3.5,4.5 - parent: 70 - proto: SpawnPointLatejoin entities: - uid: 592 @@ -4461,27 +4447,6 @@ entities: - type: Transform pos: -2.5,-5.5 parent: 70 -- proto: SpawnPointPilot - entities: - - uid: 739 - components: - - type: Transform - pos: -0.5,-12.5 - parent: 70 -- proto: SpawnPointQuartermaster - entities: - - uid: 602 - components: - - type: Transform - pos: -3.5,5.5 - parent: 70 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 603 - components: - - type: Transform - pos: -2.5,5.5 - parent: 70 - proto: StoolBar entities: - uid: 138 diff --git a/Resources/Maps/_NF/Shuttles/bocadillo.yml b/Resources/Maps/_NF/Shuttles/bocadillo.yml index 9df476e8c4a..8d9aae4d1ee 100644 --- a/Resources/Maps/_NF/Shuttles/bocadillo.yml +++ b/Resources/Maps/_NF/Shuttles/bocadillo.yml @@ -1502,13 +1502,6 @@ entities: - pos: -9.5,4.5 parent: 2 type: Transform -- proto: SpawnPointChef - entities: - - uid: 254 - components: - - pos: -3.5,4.5 - parent: 2 - type: Transform - proto: SpawnPointLatejoin entities: - uid: 178 @@ -1516,13 +1509,6 @@ entities: - pos: -5.5,4.5 parent: 2 type: Transform -- proto: SpawnPointPilot - entities: - - uid: 253 - components: - - pos: -8.5,4.5 - parent: 2 - type: Transform - proto: Stool entities: - uid: 18 diff --git a/Resources/Maps/_NF/Shuttles/caduceus.yml b/Resources/Maps/_NF/Shuttles/caduceus.yml index 54742991365..c96085d8905 100644 --- a/Resources/Maps/_NF/Shuttles/caduceus.yml +++ b/Resources/Maps/_NF/Shuttles/caduceus.yml @@ -4651,14 +4651,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} -- proto: FoodBoxDonkpocketPizza - entities: - - uid: 454 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5405283,9.778789 - parent: 1 - proto: GasFilter entities: - uid: 769 @@ -8269,20 +8261,6 @@ entities: - type: Transform pos: 16.5,-14.5 parent: 1 -- proto: SpawnPointBorg - entities: - - uid: 1122 - components: - - type: Transform - pos: 13.5,-15.5 - parent: 1 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 1202 - components: - - type: Transform - pos: -4.5,-4.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 1380 @@ -8290,37 +8268,6 @@ entities: - type: Transform pos: 0.5,0.5 parent: 1 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 1204 - components: - - type: Transform - pos: 2.5,-4.5 - parent: 1 - - uid: 1205 - components: - - type: Transform - pos: 3.5,-4.5 - parent: 1 -- proto: SpawnPointMedicalIntern - entities: - - uid: 1206 - components: - - type: Transform - pos: 2.5,4.5 - parent: 1 - - uid: 1207 - components: - - type: Transform - pos: -1.5,4.5 - parent: 1 -- proto: SpawnPointStationEngineer - entities: - - uid: 1201 - components: - - type: Transform - pos: 14.5,-12.5 - parent: 1 - proto: StasisBed entities: - uid: 1123 diff --git a/Resources/Maps/_NF/Shuttles/camper.yml b/Resources/Maps/_NF/Shuttles/camper.yml index 271696446fd..a35206de700 100644 --- a/Resources/Maps/_NF/Shuttles/camper.yml +++ b/Resources/Maps/_NF/Shuttles/camper.yml @@ -950,13 +950,6 @@ entities: - type: Transform pos: -3.4543009,-0.5313598 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 116 - components: - - type: Transform - pos: -3.5,-1.5 - parent: 1 - proto: LockerWoodenGeneric entities: - uid: 117 diff --git a/Resources/Maps/_NF/Shuttles/chisel.yml b/Resources/Maps/_NF/Shuttles/chisel.yml index 26d7c0f0c5d..a095100c879 100644 --- a/Resources/Maps/_NF/Shuttles/chisel.yml +++ b/Resources/Maps/_NF/Shuttles/chisel.yml @@ -1422,14 +1422,6 @@ entities: - type: Transform pos: 0.5,-3.5 parent: 1 -- proto: FoodBoxPizzaFilled - entities: - - uid: 216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.3678956,2.7947533 - parent: 1 - proto: GasPassiveVent entities: - uid: 66 @@ -2235,20 +2227,6 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,1.5 parent: 1 -- proto: SpawnPointPilot - entities: - - uid: 207 - components: - - type: Transform - pos: -4.5,3.5 - parent: 1 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 346 - components: - - type: Transform - pos: 4.5,0.5 - parent: 1 - proto: SubstationWallBasic entities: - uid: 166 diff --git a/Resources/Maps/_NF/Shuttles/cleithro.yml b/Resources/Maps/_NF/Shuttles/cleithro.yml index 31391f5341a..56c5f3cd478 100644 --- a/Resources/Maps/_NF/Shuttles/cleithro.yml +++ b/Resources/Maps/_NF/Shuttles/cleithro.yml @@ -2084,18 +2084,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} -- proto: FoodBoxPizza - entities: - - uid: 334 - components: - - type: Transform - pos: 0.50623906,-8.462236 - parent: 2 - - uid: 623 - components: - - type: Transform - pos: 0.50623906,-8.305986 - parent: 2 - proto: FoodCondimentSqueezeBottleKetchup entities: - uid: 597 @@ -2105,18 +2093,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FoodKebabSkewer - entities: - - uid: 361 - components: - - type: Transform - pos: 8.517926,7.7147355 - parent: 2 - - uid: 625 - components: - - type: Transform - pos: 8.78876,7.67722 - parent: 2 - proto: FoodPizzaMoldySlice entities: - uid: 647 @@ -2124,23 +2100,6 @@ entities: - type: Transform pos: 0.49173152,-7.2009816 parent: 2 -- proto: FoodTinBeansTrash - entities: - - uid: 50 - components: - - type: Transform - pos: 9.788311,-6.519189 - parent: 2 - - uid: 53 - components: - - type: Transform - pos: 9.579978,-6.3421054 - parent: 2 - - uid: 79 - components: - - type: Transform - pos: 9.329978,-6.508772 - parent: 2 - proto: GasPassiveVent entities: - uid: 308 @@ -3747,20 +3706,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 2 -- proto: SpawnPointPsychologist - entities: - - uid: 649 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 2 -- proto: SpawnPointServiceWorker - entities: - - uid: 650 - components: - - type: Transform - pos: -3.5,3.5 - parent: 2 - proto: SubstationBasic entities: - uid: 235 diff --git a/Resources/Maps/_NF/Shuttles/comet.yml b/Resources/Maps/_NF/Shuttles/comet.yml index bd6af2928ef..f959c2f420b 100644 --- a/Resources/Maps/_NF/Shuttles/comet.yml +++ b/Resources/Maps/_NF/Shuttles/comet.yml @@ -3548,13 +3548,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-13.5 parent: 1 -- proto: SpawnPointChiefEngineer - entities: - - uid: 438 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 325 @@ -3563,27 +3556,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,5.5 parent: 1 -- proto: SpawnPointPilot - entities: - - uid: 382 - components: - - type: Transform - pos: 0.5,1.5 - parent: 1 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 425 - components: - - type: Transform - pos: -1.5,7.5 - parent: 1 -- proto: SpawnPointStationEngineer - entities: - - uid: 435 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 1 - proto: SubstationBasic entities: - uid: 171 diff --git a/Resources/Maps/_NF/Shuttles/condor.yml b/Resources/Maps/_NF/Shuttles/condor.yml index 92d492d1f95..b0221c7ef06 100644 --- a/Resources/Maps/_NF/Shuttles/condor.yml +++ b/Resources/Maps/_NF/Shuttles/condor.yml @@ -4729,20 +4729,6 @@ entities: - type: Transform pos: 4.5,19.5 parent: 281 -- proto: SpawnPointAtmos - entities: - - uid: 867 - components: - - type: Transform - pos: 4.5,3.5 - parent: 281 -- proto: SpawnPointChiefEngineer - entities: - - uid: 874 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 281 - proto: SpawnPointLatejoin entities: - uid: 678 @@ -4760,27 +4746,6 @@ entities: - type: Transform pos: 5.5,-0.5 parent: 281 -- proto: SpawnPointResearchDirector - entities: - - uid: 866 - components: - - type: Transform - pos: 7.5,-0.5 - parent: 281 -- proto: SpawnPointScientist - entities: - - uid: 875 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 281 -- proto: SpawnPointStationEngineer - entities: - - uid: 876 - components: - - type: Transform - pos: 4.5,2.5 - parent: 281 - proto: SubstationBasic entities: - uid: 543 diff --git a/Resources/Maps/_NF/Shuttles/crescent.yml b/Resources/Maps/_NF/Shuttles/crescent.yml index a9ec6154b75..b6fc47d050e 100644 --- a/Resources/Maps/_NF/Shuttles/crescent.yml +++ b/Resources/Maps/_NF/Shuttles/crescent.yml @@ -16255,7 +16255,7 @@ entities: - type: Transform pos: 29.5,19.5 parent: 1 -- proto: GunSafeShuttleT2Spawner +- proto: GunSafeShuttleCaptain entities: - uid: 2514 components: @@ -18088,32 +18088,6 @@ entities: - type: Transform pos: -3.5,3.5 parent: 1 -- proto: RandomFoodBakedSingle - entities: - - uid: 1178 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 1 - - uid: 1185 - components: - - type: Transform - pos: 4.5,0.5 - parent: 1 -- proto: RandomFoodMeal - entities: - - uid: 1192 - components: - - type: Transform - pos: 0.5,4.5 - parent: 1 -- proto: RandomFoodSingle - entities: - - uid: 1200 - components: - - type: Transform - pos: -4.5,0.5 - parent: 1 - proto: RandomPosterAny entities: - uid: 2408 @@ -19467,62 +19441,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,16.5 parent: 1 -- proto: SpawnPointAtmos - entities: - - uid: 2643 - components: - - type: Transform - pos: 18.5,7.5 - parent: 1 -- proto: SpawnPointBartender - entities: - - uid: 2644 - components: - - type: Transform - pos: -4.5,3.5 - parent: 1 -- proto: SpawnPointBotanist - entities: - - uid: 2645 - components: - - type: Transform - pos: 9.5,4.5 - parent: 1 -- proto: SpawnPointChef - entities: - - uid: 2646 - components: - - type: Transform - pos: 2.5,4.5 - parent: 1 -- proto: SpawnPointChemist - entities: - - uid: 2647 - components: - - type: Transform - pos: -18.5,11.5 - parent: 1 -- proto: SpawnPointChiefEngineer - entities: - - uid: 2648 - components: - - type: Transform - pos: 20.5,3.5 - parent: 1 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 2649 - components: - - type: Transform - pos: -21.5,7.5 - parent: 1 -- proto: SpawnPointJanitor - entities: - - uid: 1229 - components: - - type: Transform - pos: -9.5,25.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 2651 @@ -19565,69 +19483,6 @@ entities: - type: Transform pos: 10.5,10.5 parent: 1 -- proto: SpawnPointLawyer - entities: - - uid: 2659 - components: - - type: Transform - pos: 0.5,28.5 - parent: 1 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 2660 - components: - - type: Transform - pos: -27.5,22.5 - parent: 1 -- proto: SpawnPointMercenary - entities: - - uid: 2661 - components: - - type: Transform - pos: -11.5,5.5 - parent: 1 -- proto: SpawnPointMusician - entities: - - uid: 2662 - components: - - type: Transform - pos: -4.5,12.5 - parent: 1 -- proto: SpawnPointPilot - entities: - - uid: 1226 - components: - - type: Transform - pos: 6.5,30.5 - parent: 1 -- proto: SpawnPointQuartermaster - entities: - - uid: 2663 - components: - - type: Transform - pos: -2.5,28.5 - parent: 1 -- proto: SpawnPointResearchDirector - entities: - - uid: 2664 - components: - - type: Transform - pos: 5.5,25.5 - parent: 1 -- proto: SpawnPointScientist - entities: - - uid: 1184 - components: - - type: Transform - pos: 27.5,18.5 - parent: 1 -- proto: SpawnPointStationEngineer - entities: - - uid: 2666 - components: - - type: Transform - pos: 21.5,3.5 - parent: 1 - proto: SprayBottleWater entities: - uid: 2667 diff --git a/Resources/Maps/_NF/Shuttles/esquire.yml b/Resources/Maps/_NF/Shuttles/esquire.yml index a2854a17c2f..ef6bfe196e7 100644 --- a/Resources/Maps/_NF/Shuttles/esquire.yml +++ b/Resources/Maps/_NF/Shuttles/esquire.yml @@ -1585,20 +1585,6 @@ entities: - pos: -0.5,8.5 parent: 1 type: Transform -- proto: DonkpocketBoxSpawner - entities: - - uid: 68 - components: - - pos: 3.5,0.5 - parent: 1 - type: Transform -- proto: DrinkSodaWaterCan - entities: - - uid: 22 - components: - - pos: 4.729821,2.6469872 - parent: 1 - type: Transform - proto: DrinkWaterCup entities: - uid: 276 @@ -1725,34 +1711,6 @@ entities: - pos: -1.5,3.5 parent: 1 type: Transform -- proto: FoodBoxDonut - entities: - - uid: 294 - components: - - pos: 3.4641967,2.6282372 - parent: 1 - type: Transform -- proto: FoodDonutChocolate - entities: - - uid: 292 - components: - - pos: 4.1766963,2.496987 - parent: 1 - type: Transform -- proto: FoodDonutHomer - entities: - - uid: 293 - components: - - pos: 3.9610715,2.7876122 - parent: 1 - type: Transform -- proto: FoodDonutPlain - entities: - - uid: 8 - components: - - pos: 4.307946,2.778237 - parent: 1 - type: Transform - proto: GasMixer entities: - uid: 314 @@ -2725,13 +2683,6 @@ entities: - pos: 1.6126454,3.5893645 parent: 1 type: Transform -- proto: KitchenMicrowave - entities: - - uid: 280 - components: - - pos: 3.5,-0.5 - parent: 1 - type: Transform - proto: LampGold entities: - uid: 206 @@ -3094,19 +3045,6 @@ entities: - pos: 2.5,-1.5 parent: 1 type: Transform -- proto: RandomSpawner - entities: - - uid: 20 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,3.5 - parent: 1 - type: Transform - - uid: 621 - components: - - pos: 6.5,1.5 - parent: 1 - type: Transform - proto: ReinforcedWindow entities: - uid: 258 @@ -3262,27 +3200,6 @@ entities: - pos: 0.5,-2.5 parent: 1 type: Transform -- proto: SpawnPointLawyer - entities: - - uid: 607 - components: - - pos: 1.5,4.5 - parent: 1 - type: Transform -- proto: SpawnPointMercenary - entities: - - uid: 483 - components: - - pos: 9.5,-3.5 - parent: 1 - type: Transform -- proto: SpawnPointPilot - entities: - - uid: 590 - components: - - pos: -0.5,7.5 - parent: 1 - type: Transform - proto: SubstationBasic entities: - uid: 178 diff --git a/Resources/Maps/_NF/Shuttles/garden.yml b/Resources/Maps/_NF/Shuttles/garden.yml index f61e5a48d75..4dcc259b511 100644 --- a/Resources/Maps/_NF/Shuttles/garden.yml +++ b/Resources/Maps/_NF/Shuttles/garden.yml @@ -823,13 +823,6 @@ entities: - type: Transform pos: 1.5,7.5 parent: 1 -- proto: FoodSaladFruit - entities: - - uid: 293 - components: - - type: Transform - pos: 0.3030392,4.8030844 - parent: 1 - proto: GasPassiveVent entities: - uid: 110 @@ -1761,13 +1754,6 @@ entities: rot: 3.141592653589793 rad pos: 4.5,-3.5 parent: 1 -- proto: SpawnPointBotanist - entities: - - uid: 261 - components: - - type: Transform - pos: -1.5,5.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 262 @@ -1775,13 +1761,6 @@ entities: - type: Transform pos: 2.5,5.5 parent: 1 -- proto: SpawnPointPilot - entities: - - uid: 264 - components: - - type: Transform - pos: 0.5,5.5 - parent: 1 - proto: SubstationWallBasic entities: - uid: 190 diff --git a/Resources/Maps/_NF/Shuttles/hauler.yml b/Resources/Maps/_NF/Shuttles/hauler.yml index 97c1ceef3fd..52d66d5f930 100644 --- a/Resources/Maps/_NF/Shuttles/hauler.yml +++ b/Resources/Maps/_NF/Shuttles/hauler.yml @@ -923,7 +923,7 @@ entities: - type: Transform pos: -1.5,0.5 parent: 1 -- proto: BedsheetMedical +- proto: BedsheetSpawner entities: - uid: 169 components: @@ -3074,50 +3074,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FoodSnackChips - entities: - - uid: 662 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 64 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodSnackChocolate - entities: - - uid: 789 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 64 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodSnackRaisins - entities: - - uid: 889 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 64 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodSnackSus - entities: - - uid: 884 - components: - - type: MetaData - flags: InContainer - - type: Transform - parent: 64 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: GasPassiveVent entities: - uid: 934 @@ -4198,13 +4154,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,21.5 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 91 - components: - - type: Transform - pos: -3.5,4.5 - parent: 1 - proto: Lighter entities: - uid: 892 @@ -4281,27 +4230,13 @@ entities: - type: Transform pos: -0.5,12.5 parent: 1 -- proto: MedicalBed +- proto: Bed entities: - uid: 487 components: - type: Transform pos: -2.5,24.5 parent: 1 -- proto: MedkitAdvancedFilled - entities: - - uid: 520 - components: - - type: Transform - pos: -4.5700297,24.630707 - parent: 1 -- proto: MedkitFilled - entities: - - uid: 773 - components: - - type: Transform - pos: -4.6656375,25.021152 - parent: 1 - proto: OreBox entities: - uid: 159 @@ -5578,20 +5513,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,7.5 parent: 1 -- proto: SpawnPointBartender - entities: - - uid: 786 - components: - - type: Transform - pos: -2.5,8.5 - parent: 1 -- proto: SpawnPointCargoTechnician - entities: - - uid: 657 - components: - - type: Transform - pos: 4.5,7.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 496 @@ -5599,20 +5520,6 @@ entities: - type: Transform pos: -2.5,1.5 parent: 1 -- proto: SpawnPointQuartermaster - entities: - - uid: 810 - components: - - type: Transform - pos: 4.5,8.5 - parent: 1 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 845 - components: - - type: Transform - pos: 0.5,14.5 - parent: 1 - proto: StoolBar entities: - uid: 178 diff --git a/Resources/Maps/_NF/Shuttles/honker.yml b/Resources/Maps/_NF/Shuttles/honker.yml index efa684463e0..b6a137d0d93 100644 --- a/Resources/Maps/_NF/Shuttles/honker.yml +++ b/Resources/Maps/_NF/Shuttles/honker.yml @@ -1385,13 +1385,6 @@ entities: - type: Transform pos: -0.5,12.5 parent: 2 -- proto: SpawnPointClown - entities: - - uid: 116 - components: - - type: Transform - pos: 2.5,4.5 - parent: 2 - proto: SpawnPointLatejoin entities: - uid: 211 diff --git a/Resources/Maps/_NF/Shuttles/investigator.yml b/Resources/Maps/_NF/Shuttles/investigator.yml index 79aff7fc29b..08cdeffc14d 100644 --- a/Resources/Maps/_NF/Shuttles/investigator.yml +++ b/Resources/Maps/_NF/Shuttles/investigator.yml @@ -2853,13 +2853,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-1.5 parent: 2 -- proto: DonkpocketBoxSpawner - entities: - - uid: 282 - components: - - type: Transform - pos: 7.5,-2.5 - parent: 2 - proto: DrinkGlass entities: - uid: 107 @@ -3597,13 +3590,6 @@ entities: rot: -1.5707963267948966 rad pos: 6.5,0.5 parent: 2 -- proto: KitchenMicrowave - entities: - - uid: 222 - components: - - type: Transform - pos: 9.5,2.5 - parent: 2 - proto: Lamp entities: - uid: 105 @@ -4522,13 +4508,6 @@ entities: - type: Transform pos: 0.5,-8.5 parent: 2 -- proto: SpawnPointBartender - entities: - - uid: 109 - components: - - type: Transform - pos: -3.5,1.5 - parent: 2 - proto: SpawnPointLatejoin entities: - uid: 694 @@ -4536,25 +4515,6 @@ entities: - type: Transform pos: 3.5,-2.5 parent: 2 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 194 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 2 - - uid: 195 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 2 -- proto: SpawnPointScientist - entities: - - uid: 332 - components: - - type: Transform - pos: 8.5,0.5 - parent: 2 - proto: StoolBar entities: - uid: 100 diff --git a/Resources/Maps/_NF/Shuttles/knuckleverse.yml b/Resources/Maps/_NF/Shuttles/knuckleverse.yml index a1102448c6d..96400378afe 100644 --- a/Resources/Maps/_NF/Shuttles/knuckleverse.yml +++ b/Resources/Maps/_NF/Shuttles/knuckleverse.yml @@ -650,7 +650,7 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,5.5 parent: 1 -- proto: BedsheetMedical +- proto: BedsheetSpawner entities: - uid: 45 components: @@ -1856,32 +1856,6 @@ entities: - type: DeviceNetwork deviceLists: - 3 -- proto: FoodSnackEnergy - entities: - - uid: 273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.728836,2.6801424 - parent: 1 - - uid: 274 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.744461,2.3207674 - parent: 1 - - uid: 275 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.367756,2.6951714 - parent: 1 - - uid: 276 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.352131,2.1951714 - parent: 1 - proto: GasPassiveVent entities: - uid: 277 @@ -2801,7 +2775,7 @@ entities: rot: -1.5707963267948966 rad pos: -3.6449776,-1.0814991 parent: 1 -- proto: MedicalBed +- proto: Bed entities: - uid: 398 components: @@ -2813,20 +2787,6 @@ entities: - type: Transform pos: -12.5,0.5 parent: 1 -- proto: MedkitBruteFilled - entities: - - uid: 143 - components: - - type: Transform - pos: -12.270641,1.615612 - parent: 1 -- proto: MedkitFilled - entities: - - uid: 401 - components: - - type: Transform - pos: -12.80164,1.6445293 - parent: 1 - proto: Mirror entities: - uid: 402 @@ -3249,27 +3209,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,3.5 parent: 1 -- proto: SpawnPointBartender - entities: - - uid: 470 - components: - - type: Transform - pos: 0.5,4.5 - parent: 1 -- proto: SpawnPointBoxer - entities: - - uid: 471 - components: - - type: Transform - pos: -16.5,6.5 - parent: 1 -- proto: SpawnPointJanitor - entities: - - uid: 472 - components: - - type: Transform - pos: -4.5,12.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 400 @@ -3277,20 +3216,6 @@ entities: - type: Transform pos: -13.5,5.5 parent: 1 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 473 - components: - - type: Transform - pos: -13.5,1.5 - parent: 1 -- proto: SpawnPointPilot - entities: - - uid: 474 - components: - - type: Transform - pos: -5.5,15.5 - parent: 1 - proto: SprayBottleWater entities: - uid: 475 diff --git a/Resources/Maps/_NF/Shuttles/lantern.yml b/Resources/Maps/_NF/Shuttles/lantern.yml index 4fe5e8aa690..8c67ba52d6f 100644 --- a/Resources/Maps/_NF/Shuttles/lantern.yml +++ b/Resources/Maps/_NF/Shuttles/lantern.yml @@ -3466,35 +3466,6 @@ entities: rot: 3.141592653589793 rad pos: 1.5,-15.5 parent: 1 -- proto: FoodBreadPlain - entities: - - uid: 728 - components: - - type: Transform - pos: 2.720112,-11.290295 - parent: 1 -- proto: FoodBreadPlainSlice - entities: - - uid: 729 - components: - - type: Transform - pos: 2.2826123,-11.33717 - parent: 1 - - uid: 730 - components: - - type: Transform - pos: 2.345112,-11.43092 - parent: 1 - - uid: 731 - components: - - type: Transform - pos: 2.376362,-11.46217 - parent: 1 - - uid: 732 - components: - - type: Transform - pos: 2.485737,-11.477795 - parent: 1 - proto: FoodPlate entities: - uid: 727 diff --git a/Resources/Maps/_NF/Shuttles/mccargo.yml b/Resources/Maps/_NF/Shuttles/mccargo.yml index 986f61d7899..c09e0d6ab1b 100644 --- a/Resources/Maps/_NF/Shuttles/mccargo.yml +++ b/Resources/Maps/_NF/Shuttles/mccargo.yml @@ -3766,14 +3766,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} -- proto: FoodBurgerPlain - entities: - - uid: 706 - components: - - type: Transform - parent: 1081 - - type: Physics - canCollide: False - proto: FoodCartCold entities: - uid: 1013 @@ -3873,14 +3865,6 @@ entities: - type: Transform pos: -0.10305256,2.6391692 parent: 1 -- proto: FoodMealFries - entities: - - uid: 902 - components: - - type: Transform - parent: 1081 - - type: Physics - canCollide: False - proto: FoodPlatePlastic entities: - uid: 89 @@ -6240,46 +6224,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,10.5 parent: 1 -- proto: SpawnPointBorg - entities: - - uid: 803 - components: - - type: Transform - pos: -4.5,11.5 - parent: 1 -- proto: SpawnPointBotanist - entities: - - uid: 181 - components: - - type: Transform - pos: -5.5,4.5 - parent: 1 - - uid: 298 - components: - - type: Transform - pos: -6.5,4.5 - parent: 1 -- proto: SpawnPointCargoTechnician - entities: - - uid: 793 - components: - - type: Transform - pos: -5.5,8.5 - parent: 1 -- proto: SpawnPointChef - entities: - - uid: 1071 - components: - - type: Transform - pos: 2.5,6.5 - parent: 1 -- proto: SpawnPointJanitor - entities: - - uid: 602 - components: - - type: Transform - pos: 6.5,14.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 81 @@ -6287,20 +6231,6 @@ entities: - type: Transform pos: 0.5,6.5 parent: 1 -- proto: SpawnPointPilot - entities: - - uid: 997 - components: - - type: Transform - pos: -3.5,14.5 - parent: 1 -- proto: SpawnPointQuartermaster - entities: - - uid: 177 - components: - - type: Transform - pos: -6.5,8.5 - parent: 1 - proto: StoolBar entities: - uid: 59 diff --git a/Resources/Maps/_NF/Shuttles/metastable.yml b/Resources/Maps/_NF/Shuttles/metastable.yml index 9eae8c6f81b..b30c35e2e4b 100644 --- a/Resources/Maps/_NF/Shuttles/metastable.yml +++ b/Resources/Maps/_NF/Shuttles/metastable.yml @@ -6210,7 +6210,7 @@ entities: - type: Transform pos: -0.5,2.5 parent: 2 -- proto: GunSafeShuttleT2Spawner +- proto: GunSafeShuttleCaptain entities: - uid: 523 components: @@ -7368,33 +7368,6 @@ entities: - type: Transform pos: 6.5,9.5 parent: 2 -- proto: RandomSpawner - entities: - - uid: 1220 - components: - - type: Transform - pos: -5.5,-6.5 - parent: 2 - - uid: 1307 - components: - - type: Transform - pos: 7.5,-0.5 - parent: 2 - - uid: 1308 - components: - - type: Transform - pos: -12.5,0.5 - parent: 2 - - uid: 1327 - components: - - type: Transform - pos: -12.5,-1.5 - parent: 2 - - uid: 1353 - components: - - type: Transform - pos: 12.5,-3.5 - parent: 2 - proto: ReinforcedPlasmaWindow entities: - uid: 243 @@ -7922,27 +7895,6 @@ entities: - type: Transform pos: 8.5,-7.5 parent: 2 -- proto: SpawnPointBorg - entities: - - uid: 1454 - components: - - type: Transform - pos: -6.5,-3.5 - parent: 2 -- proto: SpawnPointChef - entities: - - uid: 1452 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 2 -- proto: SpawnPointChemist - entities: - - uid: 1453 - components: - - type: Transform - pos: 0.5,-9.5 - parent: 2 - proto: SpawnPointLatejoin entities: - uid: 1509 @@ -7951,41 +7903,6 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-4.5 parent: 2 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 1455 - components: - - type: Transform - pos: -2.5,-9.5 - parent: 2 -- proto: SpawnPointMercenary - entities: - - uid: 522 - components: - - type: Transform - pos: -3.5,8.5 - parent: 2 -- proto: SpawnPointPilot - entities: - - uid: 526 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 2 -- proto: SpawnPointScientist - entities: - - uid: 1457 - components: - - type: Transform - pos: -8.5,-1.5 - parent: 2 -- proto: SpawnPointStationEngineer - entities: - - uid: 1458 - components: - - type: Transform - pos: 7.5,2.5 - parent: 2 - proto: SprayBottle entities: - uid: 527 diff --git a/Resources/Maps/_NF/Shuttles/mission.yml b/Resources/Maps/_NF/Shuttles/mission.yml index cdaa8c4fc45..81a385ad684 100644 --- a/Resources/Maps/_NF/Shuttles/mission.yml +++ b/Resources/Maps/_NF/Shuttles/mission.yml @@ -958,13 +958,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} -- proto: FoodBreadPlain - entities: - - uid: 167 - components: - - type: Transform - pos: 2.527503,3.6734552 - parent: 1 - proto: GasPassiveVent entities: - uid: 225 @@ -1981,20 +1974,6 @@ entities: - type: Transform pos: -4.5,5.5 parent: 1 -- proto: SpawnPointChaplain - entities: - - uid: 268 - components: - - type: Transform - pos: -5.5,-0.5 - parent: 1 -- proto: SpawnPointJanitor - entities: - - uid: 267 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 334 @@ -2002,13 +1981,6 @@ entities: - type: Transform pos: 0.5,1.5 parent: 1 -- proto: SpawnPointPilot - entities: - - uid: 144 - components: - - type: Transform - pos: -6.5,5.5 - parent: 1 - proto: SubstationWallBasic entities: - uid: 161 diff --git a/Resources/Maps/_NF/Shuttles/phoenix.yml b/Resources/Maps/_NF/Shuttles/phoenix.yml index 073d9a14330..7a6fbc38777 100644 --- a/Resources/Maps/_NF/Shuttles/phoenix.yml +++ b/Resources/Maps/_NF/Shuttles/phoenix.yml @@ -3093,13 +3093,6 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,6.5 parent: 1 -- proto: DonkpocketBoxSpawner - entities: - - uid: 319 - components: - - type: Transform - pos: 7.5,12.5 - parent: 1 - proto: Drill entities: - uid: 660 @@ -3190,22 +3183,6 @@ entities: - type: Transform pos: 0.5,0.5 parent: 1 -- proto: FoodFrozenSnowconeTrash - entities: - - uid: 655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.3389263,11.280289 - parent: 1 -- proto: FoodTinPeachesMaintTrash - entities: - - uid: 654 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.666124,9.632858 - parent: 1 - proto: GasCanisterBrokenBase entities: - uid: 649 @@ -4592,13 +4569,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-1.5 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 317 - components: - - type: Transform - pos: 8.5,12.5 - parent: 1 - proto: KitchenReagentGrinder entities: - uid: 643 @@ -5009,18 +4979,6 @@ entities: - type: Transform pos: 12.5,9.5 parent: 1 -- proto: RandomSpawner - entities: - - uid: 656 - components: - - type: Transform - pos: -5.5,10.5 - parent: 1 - - uid: 657 - components: - - type: Transform - pos: -4.5,7.5 - parent: 1 - proto: ReinforcedPlasmaWindow entities: - uid: 52 @@ -5635,13 +5593,6 @@ entities: - type: Transform pos: 14.5,14.5 parent: 1 -- proto: SpawnPointCaptain - entities: - - uid: 680 - components: - - type: Transform - pos: 11.5,11.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 705 @@ -5654,34 +5605,6 @@ entities: - type: Transform pos: 8.5,11.5 parent: 1 -- proto: SpawnPointPilot - entities: - - uid: 878 - components: - - type: Transform - pos: 10.5,11.5 - parent: 1 -- proto: SpawnPointResearchDirector - entities: - - uid: 703 - components: - - type: Transform - pos: 7.5,11.5 - parent: 1 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 704 - components: - - type: Transform - pos: -3.5,7.5 - parent: 1 -- proto: SpawnPointScientist - entities: - - uid: 697 - components: - - type: Transform - pos: 4.5,4.5 - parent: 1 - proto: StorageCanister entities: - uid: 702 diff --git a/Resources/Maps/_NF/Shuttles/piecrust.yml b/Resources/Maps/_NF/Shuttles/piecrust.yml index 5d48045a024..d45f3a1f0c5 100644 --- a/Resources/Maps/_NF/Shuttles/piecrust.yml +++ b/Resources/Maps/_NF/Shuttles/piecrust.yml @@ -1983,13 +1983,6 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 8756 -- proto: SpawnPointChef - entities: - - uid: 303 - components: - - type: Transform - pos: 0.5,3.5 - parent: 8756 - proto: SpawnPointLatejoin entities: - uid: 306 @@ -1997,13 +1990,6 @@ entities: - type: Transform pos: 5.5,1.5 parent: 8756 -- proto: SpawnPointPilot - entities: - - uid: 304 - components: - - type: Transform - pos: 3.5,6.5 - parent: 8756 - proto: StoolBar entities: - uid: 98 diff --git a/Resources/Maps/_NF/Shuttles/placebo.yml b/Resources/Maps/_NF/Shuttles/placebo.yml index 80a4fdd6f02..a8653b7c80d 100644 --- a/Resources/Maps/_NF/Shuttles/placebo.yml +++ b/Resources/Maps/_NF/Shuttles/placebo.yml @@ -1734,13 +1734,6 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,3.5 parent: 1 -- proto: SpawnPointPsychologist - entities: - - uid: 122 - components: - - type: Transform - pos: -3.5,8.5 - parent: 1 - proto: SubstationBasic entities: - uid: 25 diff --git a/Resources/Maps/_NF/Shuttles/prospector.yml b/Resources/Maps/_NF/Shuttles/prospector.yml index 4f2810b8449..357fb3144c3 100644 --- a/Resources/Maps/_NF/Shuttles/prospector.yml +++ b/Resources/Maps/_NF/Shuttles/prospector.yml @@ -1504,13 +1504,6 @@ entities: - pos: 0.5,-5.5 parent: 201 type: Transform -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 173 - components: - - pos: -1.5,-4.5 - parent: 201 - type: Transform - proto: SubstationBasic entities: - uid: 85 diff --git a/Resources/Maps/_NF/Shuttles/pts.yml b/Resources/Maps/_NF/Shuttles/pts.yml index 7f5b2bf14e7..0085cb314a6 100644 --- a/Resources/Maps/_NF/Shuttles/pts.yml +++ b/Resources/Maps/_NF/Shuttles/pts.yml @@ -1123,13 +1123,6 @@ entities: - pos: -1.5,-5.5 parent: 8756 type: Transform -- proto: SpawnPointAssistant - entities: - - uid: 7 - components: - - pos: -0.5,0.5 - parent: 8756 - type: Transform - proto: SpawnPointLatejoin entities: - uid: 6 @@ -1137,13 +1130,6 @@ entities: - pos: -0.5,-1.5 parent: 8756 type: Transform -- proto: SpawnPointPilot - entities: - - uid: 67 - components: - - pos: -0.5,2.5 - parent: 8756 - type: Transform - proto: SubstationWallBasic entities: - uid: 8818 diff --git a/Resources/Maps/_NF/Shuttles/pulse.yml b/Resources/Maps/_NF/Shuttles/pulse.yml index 6402eff268a..fb8ce022459 100644 --- a/Resources/Maps/_NF/Shuttles/pulse.yml +++ b/Resources/Maps/_NF/Shuttles/pulse.yml @@ -1378,20 +1378,6 @@ entities: - pos: -0.5,2.5 parent: 1 type: Transform -- proto: SpawnPointParamedic - entities: - - uid: 203 - components: - - pos: 0.5,-0.5 - parent: 1 - type: Transform -- proto: SpawnPointPilot - entities: - - uid: 111 - components: - - pos: 2.5,0.5 - parent: 1 - type: Transform - proto: SubstationWallBasic entities: - uid: 141 diff --git a/Resources/Maps/_NF/Shuttles/rosebudmki.yml b/Resources/Maps/_NF/Shuttles/rosebudmki.yml index 01909d0f733..bb47a7fbc5f 100644 --- a/Resources/Maps/_NF/Shuttles/rosebudmki.yml +++ b/Resources/Maps/_NF/Shuttles/rosebudmki.yml @@ -1706,7 +1706,7 @@ entities: pos: -10.5,2.5 parent: 1 type: Transform -- proto: BedsheetMedical +- proto: BedsheetSpawner entities: - uid: 190 components: @@ -3635,7 +3635,7 @@ entities: pos: 6.483588,2.141698 parent: 1 type: Transform -- proto: chem_master +- proto: MachineFrame entities: - uid: 26 components: @@ -4436,23 +4436,6 @@ entities: type: Transform - fixtures: {} type: Fixtures -- proto: FoodBakedCookie - entities: - - uid: 60 - components: - - pos: 6.3913617,2.0044975 - parent: 1 - type: Transform - - uid: 65 - components: - - pos: 6.6257367,1.934185 - parent: 1 - type: Transform - - uid: 75 - components: - - pos: 6.4499555,1.88731 - parent: 1 - type: Transform - proto: FoodPlate entities: - uid: 61 @@ -5591,7 +5574,7 @@ entities: - pos: 11.5,8.5 parent: 1 type: Transform -- proto: LockerMedicalFilled +- proto: LockerMedical entities: - uid: 130 components: @@ -5623,7 +5606,7 @@ entities: - 0 - 0 type: EntityStorage -- proto: MedicalBed +- proto: Bed entities: - uid: 206 components: @@ -5635,20 +5618,6 @@ entities: - pos: -5.5,0.5 parent: 1 type: Transform -- proto: MedkitAdvancedFilled - entities: - - uid: 1351 - components: - - pos: -8.571821,3.8535028 - parent: 1 - type: Transform -- proto: MedkitToxinFilled - entities: - - uid: 976 - components: - - pos: -8.642134,3.4433465 - parent: 1 - type: Transform - proto: Morgue entities: - uid: 175 @@ -7473,13 +7442,6 @@ entities: - pos: 4.5,-1.5 parent: 1 type: Transform -- proto: SpawnPointChemist - entities: - - uid: 586 - components: - - pos: -6.5,9.5 - parent: 1 - type: Transform - proto: SpawnPointLatejoin entities: - uid: 737 @@ -7488,34 +7450,6 @@ entities: pos: 0.5,8.5 parent: 1 type: Transform -- proto: SpawnPointMedicalDoctor - entities: - - uid: 1216 - components: - - pos: -6.5,2.5 - parent: 1 - type: Transform -- proto: SpawnPointPilot - entities: - - uid: 729 - components: - - pos: 0.5,2.5 - parent: 1 - type: Transform -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 645 - components: - - pos: 12.5,3.5 - parent: 1 - type: Transform -- proto: SpawnPointStationEngineer - entities: - - uid: 115 - components: - - pos: 12.5,7.5 - parent: 1 - type: Transform - proto: SubstationBasic entities: - uid: 88 @@ -7914,7 +7848,7 @@ entities: - Right: Reverse - Middle: Off type: DeviceLinkSource -- proto: VendingMachineChemicals +- proto: MachineFrame entities: - uid: 1354 components: diff --git a/Resources/Maps/_NF/Shuttles/skipper.yml b/Resources/Maps/_NF/Shuttles/skipper.yml index 6ade944be97..2533ef3c633 100644 --- a/Resources/Maps/_NF/Shuttles/skipper.yml +++ b/Resources/Maps/_NF/Shuttles/skipper.yml @@ -2819,20 +2819,6 @@ entities: rot: 3.141592653589793 rad pos: 0.5,5.5 parent: 1 -- proto: SpawnPointBotanist - entities: - - uid: 39 - components: - - type: Transform - pos: 0.5,6.5 - parent: 1 -- proto: SpawnPointChef - entities: - - uid: 296 - components: - - type: Transform - pos: -1.5,1.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 298 diff --git a/Resources/Maps/_NF/Shuttles/sparrow.yml b/Resources/Maps/_NF/Shuttles/sparrow.yml index ec44f2a3fc2..33fd261235b 100644 --- a/Resources/Maps/_NF/Shuttles/sparrow.yml +++ b/Resources/Maps/_NF/Shuttles/sparrow.yml @@ -2147,20 +2147,6 @@ entities: - type: Transform pos: 0.5,2.5 parent: 174 -- proto: SpawnPointScientist - entities: - - uid: 323 - components: - - type: Transform - pos: -3.5,1.5 - parent: 174 -- proto: SpawnPointStationEngineer - entities: - - uid: 249 - components: - - type: Transform - pos: 4.5,1.5 - parent: 174 - proto: StorageCanister entities: - uid: 203 diff --git a/Resources/Maps/_NF/Shuttles/spectre.yml b/Resources/Maps/_NF/Shuttles/spectre.yml index 76364c0eaac..8f8a55bdd20 100644 --- a/Resources/Maps/_NF/Shuttles/spectre.yml +++ b/Resources/Maps/_NF/Shuttles/spectre.yml @@ -4331,13 +4331,6 @@ entities: - type: Transform pos: -4.5,-0.5 parent: 3 -- proto: FoodBurgerRobot - entities: - - uid: 642 - components: - - type: Transform - pos: -4.5,0.5 - parent: 3 - proto: GasMixer entities: - uid: 455 @@ -6085,13 +6078,6 @@ entities: - type: Transform pos: -0.5,20.5 parent: 3 -- proto: KitchenMicrowave - entities: - - uid: 557 - components: - - type: Transform - pos: 2.5,13.5 - parent: 3 - proto: LockerCaptainFilled entities: - uid: 1252 @@ -6527,20 +6513,6 @@ entities: - type: Transform pos: -0.5,12.5 parent: 3 -- proto: RandomFoodMeal - entities: - - uid: 1002 - components: - - type: Transform - pos: 2.5,12.5 - parent: 3 -- proto: RandomFoodSingle - entities: - - uid: 1078 - components: - - type: Transform - pos: 2.5,11.5 - parent: 3 - proto: RandomPosterContraband entities: - uid: 1228 @@ -6600,90 +6572,6 @@ entities: - type: Transform pos: 3.5,15.5 parent: 3 -- proto: RandomSpawner - entities: - - uid: 1016 - components: - - type: Transform - pos: 1.5,16.5 - parent: 3 - - uid: 1212 - components: - - type: Transform - pos: -10.5,0.5 - parent: 3 - - uid: 1217 - components: - - type: Transform - pos: 5.5,5.5 - parent: 3 - - uid: 1218 - components: - - type: Transform - pos: 5.5,4.5 - parent: 3 - - uid: 1219 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 3 - - uid: 1220 - components: - - type: Transform - pos: 12.5,3.5 - parent: 3 - - uid: 1221 - components: - - type: Transform - pos: -0.5,15.5 - parent: 3 -- proto: RandomSpawner100 - entities: - - uid: 650 - components: - - type: Transform - pos: 12.5,5.5 - parent: 3 - - uid: 651 - components: - - type: Transform - pos: 1.5,11.5 - parent: 3 - - uid: 1185 - components: - - type: Transform - pos: -4.5,5.5 - parent: 3 - - uid: 1186 - components: - - type: Transform - pos: 12.5,-2.5 - parent: 3 - - uid: 1187 - components: - - type: Transform - pos: 10.5,-1.5 - parent: 3 - - uid: 1188 - components: - - type: Transform - pos: 6.5,9.5 - parent: 3 - - uid: 1189 - components: - - type: Transform - pos: -9.5,-1.5 - parent: 3 - - uid: 1190 - components: - - type: Transform - pos: -0.5,13.5 - parent: 3 - - uid: 1202 - components: - - type: Transform - pos: 2.5,17.5 - parent: 3 - proto: ReinforcedPlasmaWindow entities: - uid: 199 @@ -7239,13 +7127,6 @@ entities: - type: Transform pos: 0.5,14.5 parent: 3 -- proto: SpawnPointBartender - entities: - - uid: 528 - components: - - type: Transform - pos: -1.5,11.5 - parent: 3 - proto: SpawnPointLatejoin entities: - uid: 1339 @@ -7253,25 +7134,6 @@ entities: - type: Transform pos: -11.5,4.5 parent: 3 -- proto: SpawnPointScientist - entities: - - uid: 546 - components: - - type: Transform - pos: 7.5,-0.5 - parent: 3 - - uid: 1088 - components: - - type: Transform - pos: -6.5,-0.5 - parent: 3 -- proto: SpawnPointStationEngineer - entities: - - uid: 415 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 3 - proto: StoolBar entities: - uid: 543 diff --git a/Resources/Maps/_NF/Shuttles/stellaris.yml b/Resources/Maps/_NF/Shuttles/stellaris.yml index 2edfd4b9552..c12ed5dc3f0 100644 --- a/Resources/Maps/_NF/Shuttles/stellaris.yml +++ b/Resources/Maps/_NF/Shuttles/stellaris.yml @@ -1966,13 +1966,6 @@ entities: - type: Transform pos: 3.648841,4.382324 parent: 1 -- proto: FoodBoxDonut - entities: - - uid: 612 - components: - - type: Transform - pos: 1.7737156,7.8469253 - parent: 1 - proto: FoodPlateTin entities: - uid: 607 @@ -3648,20 +3641,6 @@ entities: - type: Transform pos: 0.5,11.5 parent: 1 -- proto: SpawnPointChef - entities: - - uid: 415 - components: - - type: Transform - pos: 0.5,-7.5 - parent: 1 -- proto: SpawnPointClown - entities: - - uid: 412 - components: - - type: Transform - pos: 0.5,6.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 440 @@ -3684,20 +3663,6 @@ entities: - type: Transform pos: 0.5,5.5 parent: 1 -- proto: SpawnPointMime - entities: - - uid: 413 - components: - - type: Transform - pos: 1.5,6.5 - parent: 1 -- proto: SpawnPointMusician - entities: - - uid: 414 - components: - - type: Transform - pos: -0.5,6.5 - parent: 1 - proto: StairStage entities: - uid: 115 diff --git a/Resources/Maps/_NF/Shuttles/stratos.yml b/Resources/Maps/_NF/Shuttles/stratos.yml index 8c855ceca82..5524afe83fd 100644 --- a/Resources/Maps/_NF/Shuttles/stratos.yml +++ b/Resources/Maps/_NF/Shuttles/stratos.yml @@ -3326,13 +3326,6 @@ entities: deviceLists: - 838 - 1051 - - proto: FoodBoxDonkpocketPizza - entities: - - uid: 11 - components: - - type: Transform - pos: 6.6362467,11.607235 - parent: 1 - proto: GasPassiveVent entities: - uid: 351 @@ -5366,13 +5359,6 @@ entities: - type: Transform pos: 4.5,12.5 parent: 1 - - proto: RandomFoodSingle - entities: - - uid: 4 - components: - - type: Transform - pos: 4.5,13.5 - parent: 1 - proto: RandomPainting entities: - uid: 909 @@ -5848,20 +5834,6 @@ entities: - type: Transform pos: 0.50327635,8.438866 parent: 1 - - proto: SpawnPointBartender - entities: - - uid: 1022 - components: - - type: Transform - pos: 5.5,11.5 - parent: 1 - - proto: SpawnPointCaptain - entities: - - uid: 408 - components: - - type: Transform - pos: 0.5,19.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 588 @@ -5869,27 +5841,6 @@ entities: - type: Transform pos: 3.5,9.5 parent: 1 - - proto: SpawnPointSalvageSpecialist - entities: - - uid: 1023 - components: - - type: Transform - pos: -7.5,23.5 - parent: 1 - - proto: SpawnPointScientist - entities: - - uid: 1033 - components: - - type: Transform - pos: -4.5,6.5 - parent: 1 - - proto: SpawnPointStationEngineer - entities: - - uid: 1025 - components: - - type: Transform - pos: 8.5,8.5 - parent: 1 - proto: StoolBar entities: - uid: 547 diff --git a/Resources/Maps/_NF/Shuttles/vagabond.yml b/Resources/Maps/_NF/Shuttles/vagabond.yml index 724cb6142b2..0fc18de832d 100644 --- a/Resources/Maps/_NF/Shuttles/vagabond.yml +++ b/Resources/Maps/_NF/Shuttles/vagabond.yml @@ -2995,14 +2995,6 @@ entities: parent: 1 - type: Fixtures fixtures: {} -- proto: FoodBoxDonkpocket - entities: - - uid: 596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,0.5 - parent: 1 - proto: FoodPlateSmall entities: - uid: 252 @@ -4082,13 +4074,6 @@ entities: - type: Transform pos: -4.5,13.5 parent: 1 -- proto: KitchenMicrowave - entities: - - uid: 259 - components: - - type: Transform - pos: -8.5,2.5 - parent: 1 - proto: LockerCaptainFilled entities: - uid: 72 @@ -4171,7 +4156,7 @@ entities: - type: Transform pos: 0.5,2.5 parent: 1 -- proto: LockerWallMedicalFilled +- proto: LockerWallMedical entities: - uid: 682 components: @@ -4591,13 +4576,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,1.5 parent: 1 -- proto: RandomSpawner100 - entities: - - uid: 260 - components: - - type: Transform - pos: -7.5,1.5 - parent: 1 - proto: ReinforcedWindow entities: - uid: 21 @@ -4829,13 +4807,6 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,17.5 parent: 1 -- proto: SpawnPointCargoTechnician - entities: - - uid: 717 - components: - - type: Transform - pos: -8.5,-2.5 - parent: 1 - proto: SpawnPointLatejoin entities: - uid: 719 @@ -4843,27 +4814,6 @@ entities: - type: Transform pos: -9.5,0.5 parent: 1 -- proto: SpawnPointQuartermaster - entities: - - uid: 716 - components: - - type: Transform - pos: -8.5,3.5 - parent: 1 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 715 - components: - - type: Transform - pos: 1.5,1.5 - parent: 1 -- proto: SpawnPointStationEngineer - entities: - - uid: 718 - components: - - type: Transform - pos: -1.5,9.5 - parent: 1 - proto: SubstationBasic entities: - uid: 435 diff --git a/Resources/Maps/_NF/Shuttles/waveshot.yml b/Resources/Maps/_NF/Shuttles/waveshot.yml index c9d358a62a2..b601bb22c2a 100644 --- a/Resources/Maps/_NF/Shuttles/waveshot.yml +++ b/Resources/Maps/_NF/Shuttles/waveshot.yml @@ -1499,13 +1499,6 @@ entities: - ShutdownSubscribers: - 259 type: DeviceNetwork -- proto: FoodBoxDonut - entities: - - uid: 406 - components: - - pos: 2.493779,14.6571 - parent: 1 - type: Transform - proto: FoodPlateTin entities: - uid: 274 @@ -2925,20 +2918,6 @@ entities: pos: -1.5,6.5 parent: 1 type: Transform -- proto: SpawnPointPilot - entities: - - uid: 201 - components: - - pos: 0.5,15.5 - parent: 1 - type: Transform -- proto: SpawnPointReporter - entities: - - uid: 186 - components: - - pos: 2.5,6.5 - parent: 1 - type: Transform - proto: SubstationWallBasic entities: - uid: 183