From 177d69cb983a4257532e6c1e6a8bfe4647953e78 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Wed, 17 Apr 2024 19:10:53 +1000 Subject: [PATCH 001/179] Update submodule to 218.2.0 (#27041) --- RobustToolbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RobustToolbox b/RobustToolbox index a6e7224672..1901059755 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit a6e7224672402c36f0b61d7c082427b4ff31250e +Subproject commit 19010597553d15f5ca239497ac66eab876ecc720 From 2db374988c91c6ce5f932b9cee1ba251cbfb22e5 Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Wed, 17 Apr 2024 19:27:00 +1000 Subject: [PATCH 002/179] Added Jukebox (#26736) * Added Jukebox, along with music for jukebox * Fixed Jukebox meta.json copyright * Removed songs I couldn't find a license for. * Renamed files to solve check failures from spaces * Added missing attributions.yml * Fixed lack of description in Jukebox * Jukebox is now constructable. * Change Jukebox menu to FancyWindow * Moved Jukebox messages out of jukebox component * Removed Jukebox OnValueChanged. * JukeboxComp now uses AutoGenerateComponentState * Removed state code, since it's auto generated * Fixed various Jukebox code to match conventions. * Updated Standard.yml to match changed song list. * fixes * Jukebox workin * Fix * Polishing * Finalising * Revert * bad * jukey * Reviews * name * Update submodule to 218.2.0 --------- Co-authored-by: iNVERTED --- .../Jukebox/JukeboxBoundUserInterface.cs | 119 +++++++++++++ Content.Client/Audio/Jukebox/JukeboxMenu.xaml | 18 ++ .../Audio/Jukebox/JukeboxMenu.xaml.cs | 166 ++++++++++++++++++ Content.Client/Audio/Jukebox/JukeboxSystem.cs | 153 ++++++++++++++++ Content.Server/Audio/Jukebox/JukeboxSystem.cs | 152 ++++++++++++++++ .../Audio/Jukebox/JukeboxComponent.cs | 80 +++++++++ .../Audio/Jukebox/JukeboxPrototype.cs | 23 +++ Content.Shared/Audio/Jukebox/JukeboxUi.cs | 11 ++ .../Audio/Jukebox/SharedJukeboxSystem.cs | 8 + Resources/Audio/Jukebox/attributions.yml | 22 +++ Resources/Audio/Jukebox/constellations.ogg | Bin 0 -> 848147 bytes Resources/Audio/Jukebox/drifting.ogg | Bin 0 -> 915591 bytes Resources/Audio/Jukebox/flip-flap.ogg | Bin 0 -> 1522765 bytes Resources/Audio/Jukebox/sector11.ogg | Bin 0 -> 2118480 bytes Resources/Audio/Jukebox/starlight.ogg | Bin 0 -> 1575072 bytes Resources/Audio/Jukebox/title3.ogg | Bin 0 -> 2240764 bytes .../Locale/en-US/jukebox/jukebox-menu.ftl | 5 + .../Prototypes/Catalog/Jukebox/Standard.yml | 35 ++++ .../Circuitboards/Machine/production.yml | 16 +- .../Entities/Structures/Machines/jukebox.yml | 59 +++++++ .../Entities/Structures/Machines/lathe.yml | 1 + .../Prototypes/Recipes/Lathes/electronics.yml | 8 + .../Prototypes/Research/civilianservices.yml | 1 + .../Structures/Machines/jukebox.rsi/meta.json | 31 ++++ .../Structures/Machines/jukebox.rsi/off.png | Bin 0 -> 770 bytes .../Structures/Machines/jukebox.rsi/on.png | Bin 0 -> 673 bytes .../Machines/jukebox.rsi/select.png | Bin 0 -> 1339 bytes 27 files changed, 907 insertions(+), 1 deletion(-) create mode 100644 Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs create mode 100644 Content.Client/Audio/Jukebox/JukeboxMenu.xaml create mode 100644 Content.Client/Audio/Jukebox/JukeboxMenu.xaml.cs create mode 100644 Content.Client/Audio/Jukebox/JukeboxSystem.cs create mode 100644 Content.Server/Audio/Jukebox/JukeboxSystem.cs create mode 100644 Content.Shared/Audio/Jukebox/JukeboxComponent.cs create mode 100644 Content.Shared/Audio/Jukebox/JukeboxPrototype.cs create mode 100644 Content.Shared/Audio/Jukebox/JukeboxUi.cs create mode 100644 Content.Shared/Audio/Jukebox/SharedJukeboxSystem.cs create mode 100644 Resources/Audio/Jukebox/attributions.yml create mode 100644 Resources/Audio/Jukebox/constellations.ogg create mode 100644 Resources/Audio/Jukebox/drifting.ogg create mode 100644 Resources/Audio/Jukebox/flip-flap.ogg create mode 100644 Resources/Audio/Jukebox/sector11.ogg create mode 100644 Resources/Audio/Jukebox/starlight.ogg create mode 100644 Resources/Audio/Jukebox/title3.ogg create mode 100644 Resources/Locale/en-US/jukebox/jukebox-menu.ftl create mode 100644 Resources/Prototypes/Catalog/Jukebox/Standard.yml create mode 100644 Resources/Prototypes/Entities/Structures/Machines/jukebox.yml create mode 100644 Resources/Textures/Structures/Machines/jukebox.rsi/meta.json create mode 100644 Resources/Textures/Structures/Machines/jukebox.rsi/off.png create mode 100644 Resources/Textures/Structures/Machines/jukebox.rsi/on.png create mode 100644 Resources/Textures/Structures/Machines/jukebox.rsi/select.png diff --git a/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs b/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs new file mode 100644 index 0000000000..072730d65d --- /dev/null +++ b/Content.Client/Audio/Jukebox/JukeboxBoundUserInterface.cs @@ -0,0 +1,119 @@ +using Content.Shared.Audio.Jukebox; +using Robust.Client.Audio; +using Robust.Client.Player; +using Robust.Shared.Audio.Components; +using Robust.Shared.Player; +using Robust.Shared.Prototypes; + +namespace Content.Client.Audio.Jukebox; + +public sealed class JukeboxBoundUserInterface : BoundUserInterface +{ + [Dependency] private readonly IPlayerManager _player = default!; + [Dependency] private readonly IPrototypeManager _protoManager = default!; + + [ViewVariables] + private JukeboxMenu? _menu; + + public JukeboxBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + IoCManager.InjectDependencies(this); + } + + protected override void Open() + { + base.Open(); + + _menu = new JukeboxMenu(); + _menu.OnClose += Close; + _menu.OpenCentered(); + + _menu.OnPlayPressed += args => + { + if (args) + { + SendMessage(new JukeboxPlayingMessage()); + } + else + { + SendMessage(new JukeboxPauseMessage()); + } + }; + + _menu.OnStopPressed += () => + { + SendMessage(new JukeboxStopMessage()); + }; + + _menu.OnSongSelected += SelectSong; + + _menu.SetTime += SetTime; + PopulateMusic(); + Reload(); + } + + /// + /// Reloads the attached menu if it exists. + /// + public void Reload() + { + if (_menu == null || !EntMan.TryGetComponent(Owner, out JukeboxComponent? jukebox)) + return; + + _menu.SetAudioStream(jukebox.AudioStream); + + if (_protoManager.TryIndex(jukebox.SelectedSongId, out var songProto)) + { + var length = EntMan.System().GetAudioLength(songProto.Path.Path.ToString()); + _menu.SetSelectedSong(songProto.Name, (float) length.TotalSeconds); + } + else + { + _menu.SetSelectedSong(string.Empty, 0f); + } + } + + public void PopulateMusic() + { + _menu?.Populate(_protoManager.EnumeratePrototypes()); + } + + public void SelectSong(ProtoId songid) + { + SendMessage(new JukeboxSelectedMessage(songid)); + } + + public void SetTime(float time) + { + var sentTime = time; + + // You may be wondering, what the fuck is this + // Well we want to be able to predict the playback slider change, of which there are many ways to do it + // We can't just use SendPredictedMessage because it will reset every tick and audio updates every frame + // so it will go BRRRRT + // Using ping gets us close enough that it SHOULD, MOST OF THE TIME, fall within the 0.1 second tolerance + // that's still on engine so our playback position never gets corrected. + if (EntMan.TryGetComponent(Owner, out JukeboxComponent? jukebox) && + EntMan.TryGetComponent(jukebox.AudioStream, out AudioComponent? audioComp)) + { + audioComp.PlaybackPosition = time; + } + + SendMessage(new JukeboxSetTimeMessage(sentTime)); + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + if (!disposing) + return; + + if (_menu == null) + return; + + _menu.OnClose -= Close; + _menu.Dispose(); + _menu = null; + } +} + diff --git a/Content.Client/Audio/Jukebox/JukeboxMenu.xaml b/Content.Client/Audio/Jukebox/JukeboxMenu.xaml new file mode 100644 index 0000000000..e8d39a9b11 --- /dev/null +++ b/Content.Client/Audio/Jukebox/JukeboxMenu.xaml @@ -0,0 +1,18 @@ + + + + + + + + Text="{Loc 'analysis-console-server-list-button'}"> + + + + + @@ -36,13 +52,13 @@ - + - + diff --git a/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs b/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs index 90732f814f..2acf35da25 100644 --- a/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs +++ b/Content.Client/Xenoarchaeology/Ui/AnalysisConsoleMenu.xaml.cs @@ -3,6 +3,7 @@ using Content.Client.UserInterface.Controls; using Content.Shared.Xenoarchaeology.Equipment; using Robust.Client.AutoGenerated; using Robust.Client.GameObjects; +using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.XAML; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -19,6 +20,8 @@ public sealed partial class AnalysisConsoleMenu : FancyWindow public event Action? OnScanButtonPressed; public event Action? OnPrintButtonPressed; public event Action? OnExtractButtonPressed; + public event Action? OnUpBiasButtonPressed; + public event Action? OnDownBiasButtonPressed; // For rendering the progress bar, updated from BUI state private TimeSpan? _startTime; @@ -36,6 +39,12 @@ public sealed partial class AnalysisConsoleMenu : FancyWindow ScanButton.OnPressed += _ => OnScanButtonPressed?.Invoke(); PrintButton.OnPressed += _ => OnPrintButtonPressed?.Invoke(); ExtractButton.OnPressed += _ => OnExtractButtonPressed?.Invoke(); + UpBiasButton.OnPressed += _ => OnUpBiasButtonPressed?.Invoke(); + DownBiasButton.OnPressed += _ => OnDownBiasButtonPressed?.Invoke(); + + var buttonGroup = new ButtonGroup(false); + UpBiasButton.Group = buttonGroup; + DownBiasButton.Group = buttonGroup; } protected override void FrameUpdate(FrameEventArgs args) @@ -60,7 +69,7 @@ public sealed partial class AnalysisConsoleMenu : FancyWindow ProgressBar.Value = Math.Clamp(1.0f - (float) remaining.Divide(total), 0.0f, 1.0f); } - public void SetButtonsDisabled(AnalysisConsoleScanUpdateState state) + public void SetButtonsDisabled(AnalysisConsoleUpdateState state) { ScanButton.Disabled = !state.CanScan; PrintButton.Disabled = !state.CanPrint; @@ -78,7 +87,6 @@ public sealed partial class AnalysisConsoleMenu : FancyWindow ExtractButton.AddStyleClass("ButtonColorGreen"); } } - private void UpdateArtifactIcon(EntityUid? uid) { if (uid == null) @@ -91,7 +99,7 @@ public sealed partial class AnalysisConsoleMenu : FancyWindow ArtifactDisplay.SetEntity(uid); } - public void UpdateInformationDisplay(AnalysisConsoleScanUpdateState state) + public void UpdateInformationDisplay(AnalysisConsoleUpdateState state) { var message = new FormattedMessage(); @@ -129,7 +137,7 @@ public sealed partial class AnalysisConsoleMenu : FancyWindow Information.SetMessage(message); } - public void UpdateProgressBar(AnalysisConsoleScanUpdateState state) + public void UpdateProgressBar(AnalysisConsoleUpdateState state) { ProgressBar.Visible = state.Scanning; ProgressLabel.Visible = state.Scanning; diff --git a/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs b/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs index ec16083c53..fe95114f73 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Components/TraversalDistorterComponent.cs @@ -8,7 +8,7 @@ public sealed partial class TraversalDistorterComponent : Component { [ViewVariables(VVAccess.ReadWrite)] - public BiasDirection BiasDirection = BiasDirection.In; + public BiasDirection BiasDirection = BiasDirection.Up; public TimeSpan NextActivation = default!; public TimeSpan ActivationDelay = TimeSpan.FromSeconds(1); @@ -16,6 +16,6 @@ public sealed partial class TraversalDistorterComponent : Component public enum BiasDirection : byte { - In, //down the tree, towards depth 0 - Out //up the tree, away from depth 0 + Up, //Towards depth 0 + Down, //Away from depth 0 } diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs index 51906313a3..2e546dd200 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs @@ -40,6 +40,7 @@ public sealed class ArtifactAnalyzerSystem : EntitySystem [Dependency] private readonly PaperSystem _paper = default!; [Dependency] private readonly ResearchSystem _research = default!; [Dependency] private readonly MetaDataSystem _metaSystem = default!; + [Dependency] private readonly TraversalDistorterSystem _traversalDistorter = default!; /// public override void Initialize() @@ -61,6 +62,7 @@ public sealed class ArtifactAnalyzerSystem : EntitySystem SubscribeLocalEvent(OnScanButton); SubscribeLocalEvent(OnPrintButton); SubscribeLocalEvent(OnExtractButton); + SubscribeLocalEvent(OnBiasButton); SubscribeLocalEvent((e, c, _) => UpdateUserInterface(e, c), after: new[] { typeof(ResearchSystem) }); @@ -192,6 +194,7 @@ public sealed class ArtifactAnalyzerSystem : EntitySystem var canScan = false; var canPrint = false; var points = 0; + if (TryComp(component.AnalyzerEntity, out var analyzer)) { artifact = analyzer.LastAnalyzedArtifact; @@ -205,15 +208,20 @@ public sealed class ArtifactAnalyzerSystem : EntitySystem if (GetArtifactForAnalysis(component.AnalyzerEntity, placer) is { } current) points = _artifact.GetResearchPointValue(current); } + var analyzerConnected = component.AnalyzerEntity != null; var serverConnected = TryComp(uid, out var client) && client.ConnectedToServer; var scanning = TryComp(component.AnalyzerEntity, out var active); var paused = active != null ? active.AnalysisPaused : false; + var biasDirection = BiasDirection.Up; - var state = new AnalysisConsoleScanUpdateState(GetNetEntity(artifact), analyzerConnected, serverConnected, - canScan, canPrint, msg, scanning, paused, active?.StartTime, active?.AccumulatedRunTime, totalTime, points); + if (TryComp(component.AnalyzerEntity, out var trav)) + biasDirection = trav.BiasDirection; + + var state = new AnalysisConsoleUpdateState(GetNetEntity(artifact), analyzerConnected, serverConnected, + canScan, canPrint, msg, scanning, paused, active?.StartTime, active?.AccumulatedRunTime, totalTime, points, biasDirection == BiasDirection.Down); var bui = _ui.GetUi(uid, ArtifactAnalzyerUiKey.Key); _ui.SetUiState(bui, state); @@ -372,6 +380,20 @@ public sealed class ArtifactAnalyzerSystem : EntitySystem UpdateUserInterface(uid, component); } + private void OnBiasButton(EntityUid uid, AnalysisConsoleComponent component, AnalysisConsoleBiasButtonPressedMessage args) + { + if (component.AnalyzerEntity == null) + return; + + if (!TryComp(component.AnalyzerEntity, out var trav)) + return; + + if (!_traversalDistorter.SetState(component.AnalyzerEntity.Value, trav, args.IsDown)) + return; + + UpdateUserInterface(uid, component); + } + /// /// Cancels scans if the artifact changes nodes (is activated) during the scan. /// diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs index 230e639af4..2092f79f05 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/TraversalDistorterSystem.cs @@ -17,8 +17,6 @@ public sealed class TraversalDistorterSystem : EntitySystem public override void Initialize() { SubscribeLocalEvent(OnInit); - - SubscribeLocalEvent(OnInteract); SubscribeLocalEvent(OnExamine); SubscribeLocalEvent(OnItemPlaced); @@ -30,30 +28,25 @@ public sealed class TraversalDistorterSystem : EntitySystem component.NextActivation = _timing.CurTime; } - private void OnInteract(EntityUid uid, TraversalDistorterComponent component, ActivateInWorldEvent args) + /// + /// Switches the state of the traversal distorter between up and down. + /// + /// The distorter's entity + /// The component on the entity + /// If the distorter changed state + public bool SetState(EntityUid uid, TraversalDistorterComponent component, bool isDown) { - if (args.Handled || !this.IsPowered(uid, EntityManager)) - return; + if (!this.IsPowered(uid, EntityManager)) + return false; + if (_timing.CurTime < component.NextActivation) - return; - args.Handled = true; + return false; + component.NextActivation = _timing.CurTime + component.ActivationDelay; - component.BiasDirection = component.BiasDirection == BiasDirection.In - ? BiasDirection.Out - : BiasDirection.In; + component.BiasDirection = isDown ? BiasDirection.Down : BiasDirection.Up; - var toPopup = string.Empty; - switch (component.BiasDirection) - { - case BiasDirection.In: - toPopup = Loc.GetString("traversal-distorter-set-in"); - break; - case BiasDirection.Out: - toPopup = Loc.GetString("traversal-distorter-set-out"); - break; - } - _popup.PopupEntity(toPopup, uid); + return true; } private void OnExamine(EntityUid uid, TraversalDistorterComponent component, ExaminedEvent args) @@ -61,11 +54,11 @@ public sealed class TraversalDistorterSystem : EntitySystem string examine = string.Empty; switch (component.BiasDirection) { - case BiasDirection.In: - examine = Loc.GetString("traversal-distorter-desc-in"); + case BiasDirection.Up: + examine = Loc.GetString("traversal-distorter-desc-up"); break; - case BiasDirection.Out: - examine = Loc.GetString("traversal-distorter-desc-out"); + case BiasDirection.Down: + examine = Loc.GetString("traversal-distorter-desc-down"); break; } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs index 647f31a895..895bb0217b 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.Nodes.cs @@ -19,26 +19,46 @@ public sealed partial class ArtifactSystem /// /// /// - /// The amount of nodes it has. - private void GenerateArtifactNodeTree(EntityUid artifact, ref List allNodes, int nodeAmount) + /// The amount of nodes it has. + private void GenerateArtifactNodeTree(EntityUid artifact, List allNodes, int nodesToCreate) { - if (nodeAmount < 1) + if (nodesToCreate < 1) { - Log.Error($"nodeAmount {nodeAmount} is less than 1. Aborting artifact tree generation."); + Log.Error($"nodesToCreate {nodesToCreate} is less than 1. Aborting artifact tree generation."); return; } _usedNodeIds.Clear(); + var uninitializedNodes = new List { new(){ Id = GetValidNodeId() } }; + var createdNodes = 1; - var rootNode = new ArtifactNode + while (uninitializedNodes.Count > 0) { - Id = GetValidNodeId() - }; - var uninitializedNodes = new List { rootNode }; - while (uninitializedNodes.Any()) - { - GenerateNode(artifact, ref uninitializedNodes, ref allNodes, nodeAmount); + var node = uninitializedNodes[0]; + uninitializedNodes.Remove(node); + + node.Trigger = GetRandomTrigger(artifact, ref node); + node.Effect = GetRandomEffect(artifact, ref node); + + var maxChildren = _random.Next(1, MaxEdgesPerNode - 1); + + for (var i = 0; i < maxChildren; i++) + { + if (nodesToCreate <= createdNodes) + { + break; + } + + var child = new ArtifactNode {Id = GetValidNodeId(), Depth = node.Depth + 1}; + node.Edges.Add(child.Id); + child.Edges.Add(node.Id); + + uninitializedNodes.Add(child); + createdNodes++; + } + + allNodes.Add(node); } } @@ -51,46 +71,10 @@ public sealed partial class ArtifactSystem } _usedNodeIds.Add(id); + return id; } - /// - /// Generate an individual node on the tree. - /// - private void GenerateNode(EntityUid artifact, ref List uninitializedNodes, ref List allNodes, int targetNodeAmount) - { - if (!uninitializedNodes.Any()) - return; - - var node = uninitializedNodes.First(); - uninitializedNodes.Remove(node); - - //Generate the connected nodes - var maxEdges = Math.Max(1, targetNodeAmount - allNodes.Count - uninitializedNodes.Count - 1); - maxEdges = Math.Min(maxEdges, MaxEdgesPerNode); - var minEdges = Math.Clamp(targetNodeAmount - allNodes.Count - uninitializedNodes.Count - 1, 0, 1); - - var edgeAmount = _random.Next(minEdges, maxEdges); - - for (var i = 0; i < edgeAmount; i++) - { - var neighbor = new ArtifactNode - { - Depth = node.Depth + 1, - Id = GetValidNodeId() - }; - node.Edges.Add(neighbor.Id); - neighbor.Edges.Add(node.Id); - - uninitializedNodes.Add(neighbor); - } - - node.Trigger = GetRandomTrigger(artifact, ref node); - node.Effect = GetRandomEffect(artifact, ref node); - - allNodes.Add(node); - } - //yeah these two functions are near duplicates but i don't //want to implement an interface or abstract parent @@ -159,6 +143,7 @@ public sealed partial class ArtifactSystem return key; } } + return _random.Pick(weights.Keys); //shouldn't happen } diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs index 955fe827d7..a5469e93dc 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/ArtifactSystem.cs @@ -129,7 +129,7 @@ public sealed partial class ArtifactSystem : EntitySystem { var nodeAmount = _random.Next(component.NodesMin, component.NodesMax); - GenerateArtifactNodeTree(uid, ref component.NodeTree, nodeAmount); + GenerateArtifactNodeTree(uid, component.NodeTree, nodeAmount); var firstNode = GetRootNode(component.NodeTree); EnterNode(uid, ref firstNode, component); } @@ -184,13 +184,14 @@ public sealed partial class ArtifactSystem : EntitySystem var currentNode = GetNodeFromId(component.CurrentNodeId.Value, component); currentNode.Triggered = true; - if (currentNode.Edges.Any()) - { - var newNode = GetNewNode(uid, component); - if (newNode == null) - return; - EnterNode(uid, ref newNode, component); - } + if (currentNode.Edges.Count == 0) + return; + + var newNode = GetNewNode(uid, component); + if (newNode == null) + return; + + EnterNode(uid, ref newNode, component); } private ArtifactNode? GetNewNode(EntityUid uid, ArtifactComponent component) @@ -210,15 +211,15 @@ public sealed partial class ArtifactSystem : EntitySystem { switch (trav.BiasDirection) { - case BiasDirection.In: - var foo = allNodes.Where(x => GetNodeFromId(x, component).Depth < currentNode.Depth).ToHashSet(); - if (foo.Any()) - allNodes = foo; + case BiasDirection.Up: + var upNodes = allNodes.Where(x => GetNodeFromId(x, component).Depth < currentNode.Depth).ToHashSet(); + if (upNodes.Count != 0) + allNodes = upNodes; break; - case BiasDirection.Out: - var bar = allNodes.Where(x => GetNodeFromId(x, component).Depth > currentNode.Depth).ToHashSet(); - if (bar.Any()) - allNodes = bar; + case BiasDirection.Down: + var downNodes = allNodes.Where(x => GetNodeFromId(x, component).Depth > currentNode.Depth).ToHashSet(); + if (downNodes.Count != 0) + allNodes = downNodes; break; } } @@ -226,12 +227,14 @@ public sealed partial class ArtifactSystem : EntitySystem var undiscoveredNodes = allNodes.Where(x => !GetNodeFromId(x, component).Discovered).ToList(); Log.Debug($"Undiscovered nodes: {string.Join(", ", undiscoveredNodes)}"); var newNode = _random.Pick(allNodes); - if (undiscoveredNodes.Any() && _random.Prob(0.75f)) + + if (undiscoveredNodes.Count != 0 && _random.Prob(0.75f)) { newNode = _random.Pick(undiscoveredNodes); } Log.Debug($"Going to node {newNode}"); + return GetNodeFromId(newNode, component); } diff --git a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs index cecacceda9..07f2a60c84 100644 --- a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs +++ b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactAnalyzer.cs @@ -30,50 +30,40 @@ public sealed class AnalysisConsoleExtractButtonPressedMessage : BoundUserInterf } [Serializable, NetSerializable] -public sealed class AnalysisConsoleScanUpdateState : BoundUserInterfaceState +public sealed class AnalysisConsoleBiasButtonPressedMessage(bool isDown) : BoundUserInterfaceMessage { - public NetEntity? Artifact; - - public bool AnalyzerConnected; - - public bool ServerConnected; - - public bool CanScan; - - public bool CanPrint; - - public FormattedMessage? ScanReport; - - public bool Scanning; - - public bool Paused; - - public TimeSpan? StartTime; - - public TimeSpan? AccumulatedRunTime; - - public TimeSpan? TotalTime; - - public int PointAmount; - - public AnalysisConsoleScanUpdateState(NetEntity? artifact, bool analyzerConnected, bool serverConnected, bool canScan, bool canPrint, - FormattedMessage? scanReport, bool scanning, bool paused, TimeSpan? startTime, TimeSpan? accumulatedRunTime, TimeSpan? totalTime, int pointAmount) - { - Artifact = artifact; - AnalyzerConnected = analyzerConnected; - ServerConnected = serverConnected; - CanScan = canScan; - CanPrint = canPrint; - - ScanReport = scanReport; - - Scanning = scanning; - Paused = paused; - - StartTime = startTime; - AccumulatedRunTime = accumulatedRunTime; - TotalTime = totalTime; - - PointAmount = pointAmount; - } + public bool IsDown = isDown; +} + +[Serializable, NetSerializable] +public sealed class AnalysisConsoleUpdateState( + NetEntity? artifact, + bool analyzerConnected, + bool serverConnected, + bool canScan, + bool canPrint, + FormattedMessage? scanReport, + bool scanning, + bool paused, + TimeSpan? startTime, + TimeSpan? accumulatedRunTime, + TimeSpan? totalTime, + int pointAmount, + bool isTraversalDown +) + : BoundUserInterfaceState +{ + public NetEntity? Artifact = artifact; + public bool AnalyzerConnected = analyzerConnected; + public bool ServerConnected = serverConnected; + public bool CanScan = canScan; + public bool CanPrint = canPrint; + public FormattedMessage? ScanReport = scanReport; + public bool Scanning = scanning; + public bool Paused = paused; + public TimeSpan? StartTime = startTime; + public TimeSpan? AccumulatedRunTime = accumulatedRunTime; + public TimeSpan? TotalTime = totalTime; + public int PointAmount = pointAmount; + public bool IsTraversalDown = isTraversalDown; } diff --git a/Resources/Locale/en-US/research/technologies.ftl b/Resources/Locale/en-US/research/technologies.ftl index a68f9e80b4..70ca8d018a 100644 --- a/Resources/Locale/en-US/research/technologies.ftl +++ b/Resources/Locale/en-US/research/technologies.ftl @@ -44,7 +44,7 @@ research-technology-magnets-tech = Localized Magnetism research-technology-advanced-parts = Advanced Parts research-technology-anomaly-harnessing = Anomaly Core Harnessing research-technology-grappling = Grappling -research-technology-abnormal-artifact-manipulation = Abnormal Artifact Manipulation +research-technology-abnormal-artifact-manipulation = Artifact Recycling research-technology-gravity-manipulation = Gravity Manipulation research-technology-quantum-leaping = Quantum Leaping research-technology-advanced-anomaly-research = Advanced Anomaly Research diff --git a/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl b/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl index 599f36ec91..672d80ed31 100644 --- a/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl +++ b/Resources/Locale/en-US/xenoarchaeology/artifact-analyzer.ftl @@ -6,6 +6,10 @@ analysis-console-print-button = Print analysis-console-print-tooltip-info = Print out the current information about the artifact. analysis-console-extract-button = Extract analysis-console-extract-button-info = Extract points from an artifact based on the newly explored nodes. +analysis-console-bias-up = Up +analysis-console-bias-down = Down +analysis-console-bias-button-info-up = Toggles the bias an artifact has in moving between its nodes. Up heads toward zero depth. +analysis-console-bias-button-info-down = Toggles the bias an artifact has in moving between its nodes. Down heads toward ever-higher depths. analysis-console-info-no-scanner = No analyzer connected! Please connect one using a multitool. analysis-console-info-no-artifact = No artifact present! Place one on the pad then scan for information. diff --git a/Resources/Locale/en-US/xenoarchaeology/traversal-distorter.ftl b/Resources/Locale/en-US/xenoarchaeology/traversal-distorter.ftl index 5c9eac57a5..ef2931768b 100644 --- a/Resources/Locale/en-US/xenoarchaeology/traversal-distorter.ftl +++ b/Resources/Locale/en-US/xenoarchaeology/traversal-distorter.ftl @@ -1,5 +1,5 @@ -traversal-distorter-set-in = Traversal bias set to "in" -traversal-distorter-set-out = Traversal bias set to "out" +traversal-distorter-set-up = Traversal bias set to up, toward safer nodes +traversal-distorter-set-down = Traversal bias set to down, toward more dangerous nodes -traversal-distorter-desc-in = The affected artifact's traversal now favors moving inwards to the beginning. -traversal-distorter-desc-out = The affected artifact's traversal now favors moving outwards towards more dangerous nodes. +traversal-distorter-desc-up = The affected artifact's traversal now favors moving up the node tree toward safer nodes. +traversal-distorter-desc-down = The affected artifact's traversal now favors moving down the node tree towards more dangerous nodes. diff --git a/Resources/Maps/Dungeon/experiment.yml b/Resources/Maps/Dungeon/experiment.yml index 8449abf932..590692a6bb 100644 --- a/Resources/Maps/Dungeon/experiment.yml +++ b/Resources/Maps/Dungeon/experiment.yml @@ -7444,13 +7444,6 @@ entities: - type: Transform pos: 32.5,14.5 parent: 1653 -- proto: MachineTraversalDistorter - entities: - - uid: 1058 - components: - - type: Transform - pos: 34.5,22.5 - parent: 1653 - proto: MaintenanceFluffSpawner entities: - uid: 867 diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml index ebc8237cb2..63c7908432 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/Machine/production.yml @@ -253,23 +253,6 @@ materialRequirements: Glass: 5 -- type: entity - id: TraversalDistorterMachineCircuitboard - parent: BaseMachineCircuitboard - name: traversal distorter machine board - description: A machine printed circuit board for a traversal distorter. - components: - - type: Sprite - state: science - - type: MachineBoard - prototype: MachineTraversalDistorter - requirements: - Manipulator: 1 - Capacitor: 2 - materialRequirements: - Steel: 5 - Cable: 1 - - type: entity id: ArtifactCrusherMachineCircuitboard parent: BaseMachineCircuitboard diff --git a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml index b00d6d8986..8b0c578763 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/artifact_analyzer.yml @@ -43,6 +43,7 @@ powerLoad: 12000 needsPower: false #only turns on when scanning - type: ArtifactAnalyzer + - type: TraversalDistorter - type: ItemPlacer whitelist: components: @@ -72,62 +73,6 @@ True: { visible: true } False: { visible: false } -- type: entity - id: MachineTraversalDistorter - parent: [ BaseMachinePowered, ConstructibleMachine ] - name: traversal distorter - description: A machine capable of distorting the traversal of artifact nodes. - components: - - type: Sprite - noRot: true - sprite: Structures/Machines/traversal_distorter.rsi - drawdepth: FloorObjects - layers: - - state: icon - - state: unshaded - shader: unshaded - map: ["enum.PowerDeviceVisualLayers.Powered"] - - type: Physics - bodyType: Static - canCollide: true - - type: Fixtures - fixtures: - fix1: - shape: - !type:PhysShapeAabb - bounds: "-0.35,-0.35,0.35,0.35" - density: 190 - mask: - - MachineMask - layer: - - Impassable - - MidImpassable - - LowImpassable - hard: False - - type: Transform - noRot: false - - type: TraversalDistorter - - type: ItemPlacer - # don't limit the number of artifacts that can be biased - maxEntities: 0 - whitelist: - components: - - Artifact - - type: PlaceableSurface - placeCentered: true - - type: Machine - board: TraversalDistorterMachineCircuitboard - - type: Appearance - - type: GuideHelp - guides: - - TraversalDistorter - - type: GenericVisualizer - visuals: - enum.PowerDeviceVisuals.Powered: - enum.PowerDeviceVisualLayers.Powered: - True: { visible: true } - False: { visible: false } - - type: entity id: MachineArtifactCrusher parent: [ ConstructibleMachine, BaseMachinePowered ] diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index b1d2469af2..25c6545286 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -443,7 +443,6 @@ - AnomalySynchronizerCircuitboard - APECircuitboard - ArtifactAnalyzerMachineCircuitboard - - TraversalDistorterMachineCircuitboard - ArtifactCrusherMachineCircuitboard - TelecomServerCircuitboard - MassMediaCircuitboard diff --git a/Resources/Prototypes/Guidebook/science.yml b/Resources/Prototypes/Guidebook/science.yml index 4382696df8..2c3018dcee 100644 --- a/Resources/Prototypes/Guidebook/science.yml +++ b/Resources/Prototypes/Guidebook/science.yml @@ -38,7 +38,6 @@ text: "/ServerInfo/Guidebook/Science/Xenoarchaeology.xml" children: - ArtifactReports - - TraversalDistorter - type: guideEntry id: Robotics @@ -52,11 +51,6 @@ name: guide-entry-artifact-reports text: "/ServerInfo/Guidebook/Science/ArtifactReports.xml" -- type: guideEntry - id: TraversalDistorter - name: guide-entry-traversal-distorter - text: "/ServerInfo/Guidebook/Science/TraversalDistorter.xml" - - type: guideEntry id: Cyborgs name: guide-entry-cyborgs diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index 60c0fc1524..a6f3e6cece 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -328,16 +328,6 @@ Glass: 900 Gold: 100 -- type: latheRecipe - id: TraversalDistorterMachineCircuitboard - result: TraversalDistorterMachineCircuitboard - category: Circuitry - completetime: 4 - materials: - Steel: 100 - Glass: 900 - Gold: 100 - - type: latheRecipe id: ArtifactCrusherMachineCircuitboard result: ArtifactCrusherMachineCircuitboard @@ -921,7 +911,7 @@ materials: Steel: 100 Glass: 900 - + - type: latheRecipe id: ShuttleGunPerforatorCircuitboard result: ShuttleGunPerforatorCircuitboard @@ -930,7 +920,7 @@ Steel: 100 Glass: 900 Gold: 100 - + - type: latheRecipe id: ShuttleGunKineticCircuitboard result: ShuttleGunKineticCircuitboard @@ -938,7 +928,7 @@ materials: Steel: 100 Glass: 900 - + - type: latheRecipe id: ShuttleGunFriendshipCircuitboard result: ShuttleGunFriendshipCircuitboard @@ -947,7 +937,7 @@ Steel: 100 Glass: 900 Gold: 50 - + - type: latheRecipe id: ShuttleGunDusterCircuitboard result: ShuttleGunDusterCircuitboard diff --git a/Resources/Prototypes/Research/experimental.yml b/Resources/Prototypes/Research/experimental.yml index 1b1a738322..77adfcf5d5 100644 --- a/Resources/Prototypes/Research/experimental.yml +++ b/Resources/Prototypes/Research/experimental.yml @@ -87,13 +87,12 @@ id: AbnormalArtifactManipulation name: research-technology-abnormal-artifact-manipulation icon: - sprite: Structures/Machines/traversal_distorter.rsi - state: display + sprite: Structures/Machines/artifact_crusher.rsi + state: icon discipline: Experimental tier: 2 cost: 5000 recipeUnlocks: - - TraversalDistorterMachineCircuitboard - ArtifactCrusherMachineCircuitboard - type: technology diff --git a/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml b/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml index b7ba3d4c8b..b010e20abc 100644 --- a/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml +++ b/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml @@ -1,25 +1,24 @@ -# Artifact Reports -A large portion of Xenoarchaeology gameplay revolves around the interpretation of artifact reports, which are created at the [color=#a4885c]analysis console[/color] after an artifact is scanned. Reports contain the following information: + # Artifact Reports + A large portion of Xenoarchaeology gameplay revolves around the interpretation of artifact reports, which are created at the [color=#a4885c]analysis console[/color] after an artifact is scanned. Reports contain the following information: -- [color=#a4885c]Node ID:[/color] a unique numeric ID corresponding to this artifact's node. Useful in conjunction with a [color=#a4885c]node scanner[/color] for quickly identifying recurring nodes. + - [color=#a4885c]Node ID:[/color] a unique numeric ID corresponding to this artifact's node. Useful in conjunction with a [color=#a4885c]node scanner[/color] for quickly identifying recurring nodes. -- [color=#a4885c]Depth:[/color] a distance from the starting node (depth 0). This is a good shorthand for the value and danger of a node. + - [color=#a4885c]Depth:[/color] a distance from the starting node (depth 0). This is a good shorthand for the value and danger of a node. -- [color=#a4885c]Activation status:[/color] whether or not a node has been activated in the past. + - [color=#a4885c]Activation status:[/color] whether or not a node has been activated in the past. -- [color=#a4885c]Stimulus:[/color] the stimulus for that particular node. + - [color=#a4885c]Stimulus:[/color] the stimulus for that particular node. -- [color=#a4885c]Reaction:[/color] the reaction the stimulus induces. This is often vague, so caution is advised. + - [color=#a4885c]Reaction:[/color] the reaction the stimulus induces. This is often vague, so caution is advised. -- [color=#a4885c]Edges:[/color] the amount of nodes that are connected to the current node. Using this, you can calculate the total number of nodes as well as organize a map of their connections. + - [color=#a4885c]Edges:[/color] the amount of nodes that are connected to the current node. Using this, you can calculate the total number of nodes as well as organize a map of their connections. -- [color=#a4885c]Unextracted value:[/color] the amount of research points an artifact will give when extracted. Extracting sets this to zero and traversing new nodes increases it. - -Reports are a helpful tool in manipulating an artifact, especially in the later stages where you are traversing nodes that have already been activated. - - - -To help with this process, consider printing out reports, writing down details uncovered during activation, or storing them in a folder nearby. + - [color=#a4885c]Unextracted value:[/color] the amount of research points an artifact will give when extracted. Extracting sets this to zero and traversing new nodes increases it. + Reports are a helpful tool in manipulating an artifact, especially in the later stages where you are traversing nodes that have already been activated. + + + + To help with this process, consider printing out reports, writing down details uncovered during activation, or storing them in a folder nearby. diff --git a/Resources/ServerInfo/Guidebook/Science/TraversalDistorter.xml b/Resources/ServerInfo/Guidebook/Science/TraversalDistorter.xml deleted file mode 100644 index f46065c744..0000000000 --- a/Resources/ServerInfo/Guidebook/Science/TraversalDistorter.xml +++ /dev/null @@ -1,18 +0,0 @@ - -# Traversal Distorter - -The traversal distorter is a late-game artifact machine that can aid in moving through the nodes of an artifact. - - - -Artifacts placed on top of a powered traversal distorter are subjected to a bias which affects which node they will move to after being activated. The bias can be set by clicking on the distorter. - -There are two types of biases: -- [color=#a4885c]In:[/color] favors nodes closer to the origin. Results in a decrease of depth. -- [color=#a4885c]Out:[/color] favors nodes farther away from the origin. Results in an increase of depth. - -Setting it to bias inwards allows you to return to the beginning of an artifact graph, if you've reached a dead end. - -Likewise, if you find yourself stuck at low depths, setting it to bias outward will help you find new nodes. In certain circumstances, toggling between the two allows you to repeatedly activate the same node. - - diff --git a/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml b/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml index 3fedb678df..87177acbaf 100644 --- a/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml +++ b/Resources/ServerInfo/Guidebook/Science/Xenoarchaeology.xml @@ -2,18 +2,28 @@ # Xenoarchaeology Xenoarchaeology is a science subdepartment focused on researching and experimenting on alien artifacts. -## Artifacts +At the start of each shift, the Science department will usually have access to at least two artifacts to experiment on. You can buy more by talking to the Cargo department. + +By researching the unique things each artifact can do, you gain Research Points, increase the artifact's sale value, and potentially discover a useful ability or two that can help your department or the whole station! + +## Artifact Nodes -Artifacts consist of a randomly-generated graph structure. They consist of nodes connected to each other by edges, the traversal of which is the main goal of the scientists working on them. +Artifacts consist of a randomly-generated tree of nodes. These nodes have a "[color=#a4885c]depth[/color]", representing how dangerous the node is, and the number of other nodes connected to it, called "[color=#a4885c]edges[/color]", -Each node has two main components: a [color=#a4885c]stimulus[/color] and a [color=#a4885c]reaction[/color]. A stimulus is the external behavior that triggers the reaction. Some reactions are instantaneous effects while others are permanent changes. Triggering the reaction causes the artifact to move to one of the node's edges. +Artifacts always start at depth zero, the root of the tree. Travelling the tree to find as many nodes as possible is the main goal of the scientists working on them. Knowledge is extracted from nodes to gain Research Points and increase the artifact's sale value. -With these basic principles, you can begin to grasp how the different nodes of an artifact are interconnected, and how one can move between them by repeatedly activating nodes. +Each node has two components: its [color=#a4885c]stimulus[/color] and a [color=#a4885c]reaction[/color]. -While it might seem random to an untrained eye, a skilled scientist can learn to understand the internal structure of any artifact. +A stimulus is the external behavior that triggers the reaction. There's a variety of these, and higher depth nodes have more difficult to accomplish stimuli. Some stimuli will need improvisation to trigger, and you may need to talk to other departments to get everything you need. + +Some reactions are instantaneous effects while others are permanent changes. Once an artifact is triggered, the reaction causes the artifact to randomly move to another node it is linked to. + +With some experimental science, you can begin to grasp how the different nodes of an artifact are connected, and how to move between them by repeatedly activating nodes. + +All non-zero-depth nodes will have exactly one edge that leads up to its parent node. All other edges a node has lead down to the next depth. ## Artifact Analyzer and Analysis Console @@ -22,13 +32,26 @@ While it might seem random to an untrained eye, a skilled scientist can learn to The main equipment that you'll be using for Xenoarchaeology is the [color=#a4885c]artifact analyzer[/color] and the [color=#a4885c]analysis console[/color]. You can use these to create reports that contain valuable information about an artifact. -To set them up, simply link them with a network configurator, set an artifact on top of the analyzer, and press the [color=#a4885c]Scan[/color] button. +To set them up, simply link them with a network configurator and set an artifact on top of the analyzer. Every station has at least one of these machines already set up. -Using the console, you can extract points from the artifact using the [color=#a4885c]Extract[/color] button. The amount of points you extract is based on how many new nodes have been activated, since last extracting. You can extract multiple times, there is no reason not to!!! +Use the console's [color=#a4885c]scan[/color] button to discover what stimulus the artifact needs and what its reaction will do. Scanning takes thirty seconds. + +Use the [color=#a4885c]print[/color] button to save the scan result, so you can refer to it later. + +Once you've discovered a new node, you can extract points from the artifact using the [color=#a4885c]Extract[/color] button. ## Assembling Artifacts -It is possible to gather multiple artifact fragments and assemble them into a working artifact. You can ask for these from Salvage, they usually find these while mining asteroids or on Expeditions. +It is possible to gather multiple artifact fragments and assemble them into a working artifact. You can ask for these from Salvage, who usually find these while mining asteroids or on Expeditions. +## Traversal Bias + + + +Artifacts placed on top of a powered artifact analyzer are subjected to a bias which affects which node they will move to after being activated. The bias can be set in the artifact console. + +There are two types of biases: +- [color=#a4885c]Up:[/color] favors nodes closer to the origin. Results in a decrease of depth. +- [color=#a4885c]Down:[/color] favors nodes farther away from the origin. Results in an increase of depth. diff --git a/Resources/Textures/Structures/Machines/artifact_crusher.rsi/icon.png b/Resources/Textures/Structures/Machines/artifact_crusher.rsi/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..af5f78e3683cf95c6a7348cbcc839f3162d165e8 GIT binary patch literal 1570 zcmV+-2Hp9IP)em2#F?GO|jY#1BOMCwd^*P)B;Wson={8 zDAI??z1*3(Gdr_b?L)tW+`n_abMCok&R%A+mY0|DD&cyi*8g|lzu-XDY6(6#dctuQ zcV0Y4?Pg^{z#>>1gd`Q)mcQ0_T{F%hB$+^xiXqF>>R{>`b= z@Njq~2PCOD?M{e{lO3D!5ah56;n4`zO0RJZ$nrG8qY(sas`;$hMF4=hH}`T|Gvw$e zB&itT(TG7XSW}Hj`7bUBJq8_5IvK75vOLY*C6C~T@4LCA(bxcv9Xp|!yKvzgDl4`l z8XLgLlV9*12-Z|XmZwd<)jJlA4RGZE;Aa2NT*vg_9)TT5Qn6+yEY6(ylxvJ9Z*bs6 zz|1ioa)6ax%knfgbav3RYbUJ>EFarvZIRY80+SOXrfX~0ZQ;(FZH73ghl>d76K`^2 z1nbvtKq8qmw3{|nbDbkRW=YJh6Pc`fXv;?{5fDW`72NX95d(34 zz6;4@5_9wOc<N7gP?%oW6K){i)nVA{QxNLhn#5G=w{P-={r;d9BdStS5RYx#gClPl6_96fP9>JW@ zi41Eq?X|oVg|t7PN~I-cWmsJ^xB&A6EJY!NJbOFhLC6zKop5{v{y7mIL4bcwq+_$OM`TiT(%#L4Y6#aJ${yKS2--Ign0X(A|_) zorHjS4me4|jNg>9na@VUDJ-vK>9Cp{$mmwg!m19~fn^ff#S5(itP?M@4%q(Jj0g6& zz$q-Bf|pST2y8uu|3)2f%BvdCu(K7Z=N^Q% zwIH6#MtM~O6h(oeDD(*cfUiC)qx0oe4Tz_*5!%**)N>CScD7PITMo4BJA#&d>bspA z{e9TItC_ZBJu)^1pWlz;XUAz985^T|tj>-8J_B#s2mrv9-cA&WB?u3PX?vx&ldd;4 zHln?)4ef1hXliWK=nZyI4w>7qbbuHqeHOe35KP6M;P}~bbam8XD)xjcLrQ Date: Sun, 21 Apr 2024 16:10:32 +0000 Subject: [PATCH 170/179] Automatic changelog update --- Resources/Changelog/Changelog.yml | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 5630fd6f59..d623b48d44 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,11 +1,4 @@ Entries: -- author: Ubaser - changes: - - message: Grinding ectoplasm now gives Necrosol. - type: Tweak - id: 5915 - time: '2024-02-11T06:24:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25053 - author: Ubaser changes: - message: Food Service research is now roundstart. @@ -3839,3 +3832,17 @@ id: 6414 time: '2024-04-21T13:16:23.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/22986 +- author: FairlySadPanda + changes: + - message: Xenoarchaeology Traversal Distorters have been rolled into the Artifact + Analyzers to make artifact gameplay a bit more controlled. + type: Tweak + - message: The T2 Abnormal Artifact Manipulation tech has been made cheaper to compensate + for losing an unlock. + type: Tweak + - message: The Xenoarchaeology guidebook entry has been rewritten to be more useful + and comprehensive for newbies. + type: Tweak + id: 6415 + time: '2024-04-21T16:09:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/26545 From f947f978782d2303033db38fa130c21fd383cf5b Mon Sep 17 00:00:00 2001 From: Ed Date: Sun, 21 Apr 2024 21:08:56 +0300 Subject: [PATCH 171/179] remove oasis --- Resources/Prototypes/Maps/oasis.yml | 128 ++++++++++++++-------------- 1 file changed, 64 insertions(+), 64 deletions(-) diff --git a/Resources/Prototypes/Maps/oasis.yml b/Resources/Prototypes/Maps/oasis.yml index c79225823b..1320115937 100644 --- a/Resources/Prototypes/Maps/oasis.yml +++ b/Resources/Prototypes/Maps/oasis.yml @@ -1,64 +1,64 @@ -- type: gameMap - id: Oasis - mapName: 'Oasis' - mapPath: /Maps/oasis.yml - minPlayers: 70 - stations: - Oasis: - stationProto: StandardNanotrasenStation - components: - - type: StationNameSetup - mapNameTemplate: '{0} Oasis {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'B' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_delta.yml - - type: StationJobs - overflowJobs: - - Passenger - availableJobs: - #service - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - Bartender: [ 2, 2 ] - Botanist: [ 4, 4 ] - Chef: [ 2, 2 ] - Janitor: [ 3, 3 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 2, 2 ] - Zookeeper: [ 1, 1 ] - #engineering - ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 3, 3 ] - StationEngineer: [ 5, 5 ] - TechnicalAssistant: [ 4, 4 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] - Chemist: [ 3, 3 ] - MedicalDoctor: [ 6, 6 ] - Paramedic: [ 2, 2 ] - MedicalIntern: [ 4, 4 ] - Psychologist: [ 1, 1 ] - #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 5, 5 ] - ResearchAssistant: [ 6, 6 ] - Borg: [ 2, 2 ] - #security - HeadOfSecurity: [ 1, 1 ] - Warden: [ 1, 1 ] - SecurityOfficer: [ 8, 8 ] - Detective: [ 1, 1 ] - SecurityCadet: [ 4, 4 ] - Lawyer: [ 3, 3 ] - #supply - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - CargoTechnician: [ 4, 4 ] - #civilian - Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] \ No newline at end of file +#- type: gameMap +# id: Oasis +# mapName: 'Oasis' +# mapPath: /Maps/oasis.yml +# minPlayers: 70 +# stations: +# Oasis: +# stationProto: StandardNanotrasenStation +# components: +# - type: StationNameSetup +# mapNameTemplate: '{0} Oasis {1}' +# nameGenerator: +# !type:NanotrasenNameGenerator +# prefixCreator: 'B' +# - type: StationEmergencyShuttle +# emergencyShuttlePath: /Maps/Shuttles/emergency_delta.yml +# - type: StationJobs +# overflowJobs: +# - Passenger +# availableJobs: +# #service +# Captain: [ 1, 1 ] +# HeadOfPersonnel: [ 1, 1 ] +# Bartender: [ 2, 2 ] +# Botanist: [ 4, 4 ] +# Chef: [ 2, 2 ] +# Janitor: [ 3, 3 ] +# Chaplain: [ 1, 1 ] +# Librarian: [ 1, 1 ] +# ServiceWorker: [ 2, 2 ] +# Zookeeper: [ 1, 1 ] +# #engineering +# ChiefEngineer: [ 1, 1 ] +# AtmosphericTechnician: [ 3, 3 ] +# StationEngineer: [ 5, 5 ] +# TechnicalAssistant: [ 4, 4 ] +# #medical +# ChiefMedicalOfficer: [ 1, 1 ] +# Chemist: [ 3, 3 ] +# MedicalDoctor: [ 6, 6 ] +# Paramedic: [ 2, 2 ] +# MedicalIntern: [ 4, 4 ] +# Psychologist: [ 1, 1 ] +# #science +# ResearchDirector: [ 1, 1 ] +# Scientist: [ 5, 5 ] +# ResearchAssistant: [ 6, 6 ] +# Borg: [ 2, 2 ] +# #security +# HeadOfSecurity: [ 1, 1 ] +# Warden: [ 1, 1 ] +# SecurityOfficer: [ 8, 8 ] +# Detective: [ 1, 1 ] +# SecurityCadet: [ 4, 4 ] +# Lawyer: [ 3, 3 ] +# #supply +# Quartermaster: [ 1, 1 ] +# SalvageSpecialist: [ 3, 3 ] +# CargoTechnician: [ 4, 4 ] +# #civilian +# Passenger: [ -1, -1 ] +# Clown: [ 1, 1 ] +# Mime: [ 1, 1 ] +# Musician: [ 1, 1 ] \ No newline at end of file From f972f3129d35b4dc36c2c9c55bde18867371b4fa Mon Sep 17 00:00:00 2001 From: Ed Date: Mon, 22 Apr 2024 13:37:44 +0300 Subject: [PATCH 172/179] update debug walls --- .../Structures/Walls/TEMPLATE.rsi/brick0.png | Bin 493 -> 809 bytes .../Structures/Walls/TEMPLATE.rsi/brick1.png | Bin 388 -> 601 bytes .../Structures/Walls/TEMPLATE.rsi/brick2.png | Bin 493 -> 809 bytes .../Structures/Walls/TEMPLATE.rsi/brick3.png | Bin 388 -> 681 bytes .../Structures/Walls/TEMPLATE.rsi/brick4.png | Bin 386 -> 608 bytes .../Structures/Walls/TEMPLATE.rsi/brick5.png | Bin 446 -> 708 bytes .../Structures/Walls/TEMPLATE.rsi/brick6.png | Bin 386 -> 632 bytes .../Structures/Walls/TEMPLATE.rsi/brick7.png | Bin 368 -> 599 bytes .../Structures/Walls/TEMPLATE.rsi/full.png | Bin 236 -> 597 bytes 9 files changed, 0 insertions(+), 0 deletions(-) diff --git a/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/brick0.png b/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/brick0.png index ad17ab1c67a14a2bf8ee1bf50ddd48410e5e3983..f7f5c62f8be2ae29464df1e8a6d6226df86749d0 100644 GIT binary patch delta 773 zcmV+g1N!{!1E~g(FnfBN}==k~N$3qnVSAQsjRZyK^>HK^{%Xz2uVGlyN*rSg~#H%d^R13JN%%42rmxtYTrQKXuK&4VuF%LG#&*b0keChjKz|F|5+jr)ZBR{Bfpg>*$iR+2L zW38Wi-=W|pP|$ifI-UI7b-iD|r_)^^=ud@HH$3g>R{I$H$av6oEe)~&uU~HV*wz*e z0Kn6Y7Jq(s)*uYxD01z_I- z=EMZ6e|7;rl-{#;hwK7)kwK7Br@Go>!2$2G~@3zjoAg&WE?vC4C zpWChjaRLD0HbWw}K$r{!;GO_C>^b1LeuCrr37h{v&-tlx1o#H`00000NkvXXu0mjf DMu%=6 delta 455 zcmZ3<_Lg~qK|SMgPZ!6KiaBp*ZS-Px6lha_B+X&y$gR7!wMC?|ae`aYOXG~>#N@>E z>ZHWvRUtwhb6b~oR3zlCERd`IF0xT{cmR<8tD$G*ggX9PC+t#~#uX6c0yyV(hzjvNln7#$0lG596Zpm90 zy=Ppd>*Dg{$CEXm#I8wydzyY+KX&20V_RJ8nXlL`Fn{y=MB_p+hkqR(9lv-hR58Bd z`!i2`>;DrS9dB|=FT^_BWtMyQF1x>U-Gyo4!heMf7)uzWgdNxy7-D72dcj)1g5TxR zm$UACJX;$+ri4`M)M_d{dg$}vOPm<+R%OZ^Qrl= z{%!~Fs;p!+shs{_-sL{?hujz6wKrZ8on*H+Os;-v%&L9PUyKz_m^*3jwe%?2+9Z78 zi=N4c!mRm6+ENbkUlB Y=Do>IwQX$S#tcB<>FVdQ&MBb@0K^^1Q2+n{ diff --git a/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/brick1.png b/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/brick1.png index 6ed15428a88399ac3564f7ebeba39e6283d74268..26673f01042c3f716dffb82992a17ac06cf53ea2 100644 GIT binary patch delta 564 zcmV-40?Yk`1K9+SFnR)0Xf+#zp+{S8=K_kOyS zQVotS_MlR#O)aAW)c8?BF`xIH12+4+@U!?a_4Q>3>x%SUPaAO_4yF2lT2IghYVkSAG%_0a58ZfLR8O z03(1q0B(!`?f|%ny#SI_*eeAd|4dSzKq5d=2ZMou6(GIy0Dpu6tacjQ)ECw5l|d#T3Y`Zq z%OKs?;^X6gbeyAVZFa~6cn^UrRdX}L{u`mk=a<1`ZqRHrL)X757EpbN{TyHfa0kGR z5x^Zl7${R}@dBv#6QTv^*iVQSpaZc2bnPZZ3edTg7AZjIR$8P0ofrY!0dQjka0kGR z5x^Y)H!WiSGc>sg8b4Q=Cx{gg>r7B5MgVsJ-24GJeQ5=?=aabr0000~NVuv$;$x{l;AFmVYPWz+Y_plz`i&blf8DyR zNvWw!@4%^s*8$-RkFMSll=r~q$Gey6#TI8$oF?fUTvPVD-KfsuMf#~9n~ZjFWc6BE z)pO4ME8nobA#HWsy%!3`aA`cq{>$oi#bR8ZuY+>kSzQAO{ z=fHgdMc^Ux34NDOe}Y=r+hiWh_K%($_x-8vr@vL+v%dy~PT<(jD$^jgppYS|L9K@2 z%k3Jk`mp^c_saMFeEH{N#n=B$AG8lJW-v;zFJR4pDLjT(fK&bf=g%BP-qiUM-ZB7z Mr>mdKI;Vst0R9@5F#rGn diff --git a/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/brick2.png b/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/brick2.png index ad17ab1c67a14a2bf8ee1bf50ddd48410e5e3983..bbf065f8ce22c3be6720cd5be256c471ae6edcb5 100644 GIT binary patch delta 773 zcmV+g1N!{!1E~g(FnB~@r$P@6 z{Rc#Z6g&tbh)Ai$UQ3Bc(QBck=%G~bqO?i1H>tD<@jvK~-R*y%hqBA=W}8Oeyq&is z9|-KsWb@{IXXee@*^EFl?FYBYovG^f|K2}6_jH6}|0?BX6@PT5s@q07)m4ACu;g7| zd-t| zf#Eh7p8ygAAQ1BmkhnZz5kTtb1I*_Ee#a$_KENbE5`P?bVLuVNEFIPjivZG`?8Pt- z(A@#u3(GP8q&*ay>eC_+aK$y|H_wG+;Mt@NIK!H31($~{H+nxDE z@7j3vBG6|2-1`m%gFt~T1~~JJp7UYHB|$$G9={n`?*O>{t_A?;Jg!pBut65!{mN=| zL#}|v%6}?Khx-74My`O#Q|rZUEehCZ((A@#u47>o^gW%Ee3673WwAud)N=mpVwXl@400000NkvXXu0mjf DcBXzz delta 455 zcmZ3<_Lg~qK|SMgPZ!6KiaBp*ZS-Px6lha_B+X&y$gR7!wMC?|ae`aYOXG~>#N@>E z>ZHWvRUtwhb6b~oR3zlCERd`IF0xT{cmR<8tD$G*ggX9PC+t#~#uX6c0yyV(hzjvNln7#$0lG596Zpm90 zy=Ppd>*Dg{$CEXm#I8wydzyY+KX&20V_RJ8nXlL`Fn{y=MB_p+hkqR(9lv-hR58Bd z`!i2`>;DrS9dB|=FT^_BWtMyQF1x>U-Gyo4!heMf7)uzWgdNxy7-D72dcj)1g5TxR zm$UACJX;$+ri4`M)M_d{dg$}vOPm<+R%OZ^Qrl= z{%!~Fs;p!+shs{_-sL{?hujz6wKrZ8on*H+Os;-v%&L9PUyKz_m^*3jwe%?2+9Z78 zi=N4c!mRm6+ENbkUlB Y=Do>IwQX$S#tcB<>FVdQ&MBb@0K^^1Q2+n{ diff --git a/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/brick3.png b/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/brick3.png index 6ed15428a88399ac3564f7ebeba39e6283d74268..d3a5439eb75d7c096f03d4035cf453a42cbe8836 100644 GIT binary patch delta 644 zcmV-~0(Y5QZngXelwlk3J$vVJa=I@h2!^et}|T zCj{&TL9nwDZEX_7)5mR(QSKB ztJk1Z9vY6_X@J04g#8xI3W3mJy0HL4^$w#0p^RWs2Amutg>S ecL%shy#U`-6`7p(&?N={0000~NVuv$;$x{l;AFmVYPWz+Y_plz`i&blf8DyR zNvWw!@4%^s*8$-RkFMSll=r~q$Gey6#TI8$oF?fUTvPVD-KfsuMf#~9n~ZjFWc6BE z)pO4ME8nobA#HWsy%!3`aA`cq{>$oi#bR8ZuY+>kSzQAO{ z=fHgdMc^Ux34NDOe}Y=r+hiWh_K%($_x-8vr@vL+v%dy~PT<(jD$^jgppYS|L9K@2 z%k3Jk`mp^c_saMFeEH{N#n=B$AG8lJW-v;zFJR4pDLjT(fK&bf=g%BP-qiUM-ZB7z Mr>mdKI;Vst0KNv60ssI2 diff --git a/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/brick4.png b/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/brick4.png index 1af8eb74ad9b74c12a7464ad33be5a05985557d8..c0f41fee285e9f3ff0e4f6bcad63db4e5756b911 100644 GIT binary patch delta 571 zcmV-B0>u4-1Ky-oJ988#t3ZTRakWN4v zD?mB{X(AWEF?)*=whGWH#&!XYAX?8pz+3_M!xCq>P{h6qklYRjm3*q*gj;d}WTtlz zgzR|$*ZsUHk$(%Iymh6(&I34tXs(Lb&jVN*$hyFFe=TrX8^#sjtgHra=#Opd&uAx%v4HwT zEpYv!w~t0U`D;6Aj0L3AOTil+F8#$pdF$tP!o+?UIL*1kM#G|3jjb?{(w>eJ;x(I^CQ#=$UnFIGtMDFoq!SJA}CQSfD0=? zI)Pcl`ZOBAg?a(h7ee&{s8KDz4ucF>0n!ObBmO|7(|Hn&{|Uq3X}}{*#+3j7002ov JPDHLkV1g!12c-Z2 delta 347 zcmaFB(!@N$pq|mj)5S5QV$R!HhI|JDWZM6WnokhvZ1jHdL_lb<@dgPUw%JpSXSf`C z#-Qdqr+MBYGeMr*f4=)Z)ZJHm`TF;#rR!@iy0LA(EB`5N_t!sj@4lNhPrvne{CKE0P?hE(@4zjPP_P-#nvb67fUiteeQy=kt__gf0_(h=)^A=ow8~U*EA>W2M zx~o1MC}8h+>?SHFaqvF#h4Rm7PxtBnXtSGK{AeG0h34*wzY^X`_l2-8Fb_JY-}r#} zfp^0_&qs`YyOpi#KX^L;-7LkrfHgy;L2N-F)Dv(4PCJHw?H;q@F8-9C|3Gn$m-@p< P1|aZs^>bP0l+XkKKw6aT diff --git a/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/brick5.png b/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/brick5.png index 21b97dd6256b4d547d5a0c2fe9464a8f615149f5..2a60e211585b73a44fe9e2735a267933449eff44 100644 GIT binary patch delta 672 zcmV;R0$=^U1H=W8Fn_x4uoie*5MAf`5zsMVE_xU^{PPoHvg5 zvW zHqHaZ@VCc4p$lL;Y$JKsZRi42QBHVLf~XZBR0KHHPyl%L^vT5Kde=Jc3MB%P^@L$| zD!~Ov)|1NShkrrPPEeckfItLPwX30$+N_8?0%d1SAD`hy!kiO9a)1#eK{5H+Z7>V! zYVgPDDbqXv1lsn??Zk1lWkQ z!rDupO_0TqW@`TkGyXG5zx;D z=w|~QwhjU{tfL6e|H#3MjE)c@uIVCVVJ>HUJ;txYE% z=x>OmkAKtr`0VH`xP5vn9Jk~AV~Y_Ax&Sr|5mX7lp!NdLli=6jXTnSLS9AKA0sY;+)fDmO+bsqr8FNjn}Kp6;XFTfuNb*t91gf}7p0000+iL( z{a^X#>zk|z!T%M~KiGMw`!{fVSX$X}uCJ7c+vsfdvj4le?lbTD(5nV(?DQUddXx0r zuIN(`Bhw=FJ4;vCHYmL2n7HKS%b!;1HSY|kdA|>5*u>tW_W14D9*+&GF$Xe?j>Xpn zImtI(Qq!;G-@p*U@bTS!R?!c;q9#67{VBMCfqMb-g$M@OhGR@G7)-<**cWVMuwv+C zy}+2E)4=DD%$V{~XrDkkcfH0#>jbYC{S%MYtlX8`HAz5g!K$`hdv|v0{M3H9|JaMV z2ED!ZtQYD(3*C>u@LROuJIB(!O#d?{+!6o5wc>VK@mmu=mPT$5MHLa%h66yWzGNHf oHM|o%z>3%M5{6m#xPLHSc&I0+qc!vW8wMcoboFyt=akR{0Mk#kr~m)} diff --git a/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/brick6.png b/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/brick6.png index 1af8eb74ad9b74c12a7464ad33be5a05985557d8..92a3455b4ea749bf1806f794cc3ec435b8049f36 100644 GIT binary patch delta 595 zcmV-Z0<8Ul1Na1xFnJ>tQ!eJFUVp2y+fXe4fY6bTiZ#}| zuK?-=sMo5jp`cy>8v@Lz7l1nxka8#hoE;s`7j2v0%fp}Z_Zv-eA1J7w0o+&tq&pyu z6+pTJ(y%-W1f?$Sf@WDF7r=2|tHXX+LSR*#2O<{0#PfU9L_PynY4ib`1*`yUS-?Si zNJJ_?e=z>@4}Y%qw8$O;S{-*_5x^S;+EXK28uU7@c^0r%g4#zPV0-Pc0-5q!ParVqxlaieK!vPt@GZ(-xmbYIc}`>cY=jtLDasu0Mdn2>=(h<3m_f>(iNh(01tQfq30^) z5&+=p`j*YU+7K||JfKtnQ_cel1u*G6pilt7ob!NE0ZbyE1%hzGzz@gFP$huZalf-+ zqEJy40!)t6v0nqYMmq>~0+<|qK%oE*-dVsoBUB3D%z{d}#9kPw$^u?uT?v}R3LxD9 hX~frn$z&#K{~Kr~gZ|G;WrP3#002ovPDHLkV1mnA5uE@4 delta 347 zcmeyt(!@N$pq|mj)5S5QV$R!HhI|JDWZM6WnokhvZ1jHdL_lb<@dgPUw%JpSXSf`C z#-Qdqr+MBYGeMr*f4=)Z)ZJHm`TF;#rR!@iy0LA(EB`5N_t!sj@4lNhPrvne{CKE0P?hE(@4zjPP_P-#nvb67fUiteeQy=kt__gf0_(h=)^A=ow8~U*EA>W2M zx~o1MC}8h+>?SHFaqvF#h4Rm7PxtBnXtSGK{AeG0h34*wzY^X`_l2-8Fb_JY-}r#} zfp^0_&qs`YyOpi#KX^L;-7LkrfHgy;L2N-F)Dv(4PCJHw?H;q@F8-9C|3Gn$m-@p< P1|aZs^>bP0l+XkKVB(bp diff --git a/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/brick7.png b/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/brick7.png index 64e99c09a69ffb66d1c20227bca810f6b14c3f90..4415dbd6614e47117cea29e905c000ba55776889 100644 GIT binary patch delta 562 zcmV-20?qyK0@nnPFnxj}7*?Fou51h=`+%?jecuD%W*-n1AcXK2Jbx?ufUp1q>&q+Z^<|qN zz|H(X(HaWm*YUpZ5kiQ5U%HN$B3}Y*ngEs;8cV#YQY1|2-OilvGxbtd;pMd znl+#aFg4RtY=4CGdBCCDMFUo_$R<4?_9`pa{y?z+xq*k$>pn%X0I}`v60#2%l|bwb zP|rR<^Z`o<9%xRm2|yJ-6`fHy}fCg8ObedHiN`$GBY)6akI{jR~TF zi4&ZIV)g+eCzwJx`#_~-FqVCVRe~x&F8d1GVd^|UwSVr%xc)W|059(!MgJ3geR?d4 zp;=+?2k@o|;QavJGy%LHz#F;$3C^+3mi|IcfK+gdeZ}HRz}j6dMu4g8TWqElBLHxk zeT&VMy8v^t$eby-H^EdEj{_fnw(14$0;Cv%+;>~r*4n)Ua)0lXgo@co787tJ!4z*GO`ga7~l07*qoM6N<$g2?Xy A$N&HU delta 329 zcmcc4@_}iBK|Q0Er;B4q#hkaZ422FE@UX~w*^5QZbKveT$d-{PWk)#=MA@O@or-OnZz8}7fckr5aoT-J zebzUuiF@a|k2NisaU%b1?e9^mOQc)4ETm#1mDjRwXOL|;##FB)zpUnl?8G7tt;b>u zm@h;y?A&>1;Y%(B^Y9r`icBJ2JEtcyt~KrS-vp#zt>2yAvgJU0_<>guK;3Dp8btYy zuVf0dkh#lL!Z2&X><6b>?y!U(yU#vhwsr{ruiG`6fBtjZu)bh00l9P|gB3$B>jlPd zC-x|MaX|>DluSm!wVSpybc7vby|Dhs4u)S-CBz+)8A}+XxWVoLxe{oA5Yvg*AK2%) W+B@yII;D*P2s~Z=T-G@yGywp}riFq4 diff --git a/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/full.png b/Resources/Textures/_CP14/Structures/Walls/TEMPLATE.rsi/full.png index dfc0b23142d124f4a01103ed59aef48a37da5c79..8443c04b992fd9ac091a2dcc0c67c7c860115c41 100644 GIT binary patch delta 560 zcmV-00?+;I0o4SMFnQZVRzo4gW@a7d`#axW--zWTACps-V}GTJ1ecM+wEu>%-IeA| z6HNQBb+HSC4^@DFEP&wG2>{@^Z%MHSzfRyE3ut^l0^?NjVB_dF-npzfw-xXvRdIQG zh17}@se=Z9R$ywyiQ}|3(R=8gNV>J^1ORNN8vqU!n^ckD8}%6r006Id7(lK0RD-nj z6F$FwGU;x{qkpmK(MPp5v7W49Jy}!U&7wsLY=|{%i0oKq6Yga_gb3NjD?&yjN)b>G z$1te6mwH9QdwoDTZ>z63L?#$2KAILK2%m6QTO%(>ReA*?(Fj*kJ0Jw;yR;qDUt|S_ zP52k+x&X(+OZnSQ0(YKVL_Ba^WY4(oT@9h|U^!M|O@D!yC{P13w_#I>lkuYFoXt_@ zw+TXkOs*#r69tHgLR%3sxlEdj7YUmhnkHnCvurG=iL$wnVFidO;34V+x;}=zCxA5p zJkU=8mjJskYPhxnj2h5RWsEAqRRKE_!m12afc|Sc(HATbn=o@5R<@qr&I7ZJNc|Vs yT}C{O*eQE^;NJ;wy_U*&EtM@N7%Jv%3HSjRkf-@mWlzEY0000 Date: Mon, 22 Apr 2024 18:09:21 +0300 Subject: [PATCH 173/179] return maps prototypes --- Resources/Prototypes/Maps/atlas.yml | 118 ++++++++++----------- Resources/Prototypes/Maps/bagel.yml | 128 +++++++++++------------ Resources/Prototypes/Maps/box.yml | 126 +++++++++++------------ Resources/Prototypes/Maps/cluster.yml | 124 +++++++++++----------- Resources/Prototypes/Maps/core.yml | 134 ++++++++++++------------ Resources/Prototypes/Maps/debug.yml | 32 +++--- Resources/Prototypes/Maps/europa.yml | 136 ++++++++++++------------- Resources/Prototypes/Maps/fland.yml | 128 +++++++++++------------ Resources/Prototypes/Maps/marathon.yml | 128 +++++++++++------------ Resources/Prototypes/Maps/meta.yml | 124 +++++++++++----------- Resources/Prototypes/Maps/oasis.yml | 128 +++++++++++------------ Resources/Prototypes/Maps/omega.yml | 124 +++++++++++----------- Resources/Prototypes/Maps/origin.yml | 130 +++++++++++------------ Resources/Prototypes/Maps/packed.yml | 122 +++++++++++----------- Resources/Prototypes/Maps/reach.yml | 70 ++++++------- Resources/Prototypes/Maps/saltern.yml | 122 +++++++++++----------- Resources/Prototypes/Maps/train.yml | 128 +++++++++++------------ 17 files changed, 1001 insertions(+), 1001 deletions(-) diff --git a/Resources/Prototypes/Maps/atlas.yml b/Resources/Prototypes/Maps/atlas.yml index 588ede8085..5ff7f11eb0 100644 --- a/Resources/Prototypes/Maps/atlas.yml +++ b/Resources/Prototypes/Maps/atlas.yml @@ -1,59 +1,59 @@ -#- type: gameMap -# id: Atlas -# mapName: Atlas -# mapPath: /Maps/atlas.yml -# minPlayers: 5 -# maxPlayers: 20 -# stations: -# Atlas: -# stationProto: StandardNanotrasenStation -# components: -# - type: StationNameSetup -# mapNameTemplate: '{0} Atlas {1}' -# nameGenerator: -# !type:NanotrasenNameGenerator -# prefixCreator: 'R4' # R4407/Goon. GS isn't as cool sounding. -# - type: StationJobs -# overflowJobs: -# - Passenger -# availableJobs: -# #service -# Captain: [ 1, 1 ] -# HeadOfPersonnel: [ 1, 1 ] -# Bartender: [ 1, 1 ] -# Botanist: [ 2, 2 ] -# Chef: [ 1, 1 ] -# Janitor: [ 1, 1 ] -# Chaplain: [ 1, 1 ] -# Librarian: [ 1, 1 ] -# ServiceWorker: [ 1, 1 ] -# #engineering -# ChiefEngineer: [ 1, 1 ] -# AtmosphericTechnician: [ 2, 2 ] -# StationEngineer: [ 2, 2 ] -# TechnicalAssistant: [ 1, 3 ] -# #medical -# ChiefMedicalOfficer: [ 1, 1 ] -# Chemist: [ 1, 1 ] -# MedicalDoctor: [ 2, 2 ] -# MedicalIntern: [ 1, 3 ] -# #science -# ResearchDirector: [ 1, 1 ] -# Scientist: [ 2, 2 ] -# ResearchAssistant: [ 1, 3 ] -# Borg: [ 2, 2 ] -# #security -# HeadOfSecurity: [ 1, 1 ] -# Warden: [ 1, 1 ] -# SecurityOfficer: [ 3, 3 ] -# SecurityCadet: [ 1, 3 ] -# Detective: [ 1, 1 ] -# #supply -# Quartermaster: [ 1, 1 ] -# SalvageSpecialist: [ 2, 2 ] -# CargoTechnician: [ 2, 2 ] -# #civillian -# Passenger: [ -1, -1 ] -# Clown: [ 1, 1 ] -# Mime: [ 1, 1 ] -# Musician: [ 1, 1 ] +- type: gameMap + id: Atlas + mapName: Atlas + mapPath: /Maps/atlas.yml + minPlayers: 5 + maxPlayers: 20 + stations: + Atlas: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Atlas {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'R4' R4407/Goon. GS isn't as cool sounding. + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 1, 1 ] + Botanist: [ 2, 2 ] + Chef: [ 1, 1 ] + Janitor: [ 1, 1 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 1, 1 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 2, 2 ] + StationEngineer: [ 2, 2 ] + TechnicalAssistant: [ 1, 3 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 1, 1 ] + MedicalDoctor: [ 2, 2 ] + MedicalIntern: [ 1, 3 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 2, 2 ] + ResearchAssistant: [ 1, 3 ] + Borg: [ 2, 2 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 3, 3 ] + SecurityCadet: [ 1, 3 ] + Detective: [ 1, 1 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 2, 2 ] + CargoTechnician: [ 2, 2 ] + #civillian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/bagel.yml b/Resources/Prototypes/Maps/bagel.yml index ac7b1f99c2..24ca17339f 100644 --- a/Resources/Prototypes/Maps/bagel.yml +++ b/Resources/Prototypes/Maps/bagel.yml @@ -1,64 +1,64 @@ -#- type: gameMap -# id: Bagel -# mapName: 'Bagel Station' -# mapPath: /Maps/bagel.yml -# minPlayers: 40 -# maxPlayers: 76 -# stations: -# Bagel: -# stationProto: StandardNanotrasenStation -# components: -# - type: StationNameSetup -# mapNameTemplate: '{0} Bagel Station {1}' -# nameGenerator: -# !type:NanotrasenNameGenerator -# prefixCreator: '14' -# - type: StationEmergencyShuttle -# emergencyShuttlePath: /Maps/Shuttles/emergency_lox.yml -# - type: StationJobs -# overflowJobs: -# - Passenger -# availableJobs: -# #service -# Captain: [ 1, 1 ] -# HeadOfPersonnel: [ 1, 1 ] -# Bartender: [ 2, 2 ] -# Botanist: [ 3, 3 ] -# Chef: [ 2, 2 ] -# Janitor: [ 3, 3 ] -# Chaplain: [ 1, 1 ] -# Librarian: [ 1, 1 ] -# ServiceWorker: [ 2, 2 ] -# #engineering -# ChiefEngineer: [ 1, 1 ] -# AtmosphericTechnician: [ 3, 3 ] -# StationEngineer: [ 4, 4 ] -# TechnicalAssistant: [ 4, 4 ] -# #medical -# ChiefMedicalOfficer: [ 1, 1 ] -# Chemist: [ 2, 2 ] -# MedicalDoctor: [ 3, 3 ] -# Paramedic: [ 1, 1 ] -# MedicalIntern: [ 4, 4 ] -# #science -# ResearchDirector: [ 1, 1 ] -# Scientist: [ 5, 5 ] -# ResearchAssistant: [ 4, 4 ] -# Borg: [ 2, 2 ] -# #security -# HeadOfSecurity: [ 1, 1 ] -# Warden: [ 1, 1 ] -# SecurityOfficer: [ 4, 4 ] -# Detective: [ 1, 1 ] -# SecurityCadet: [ 4, 4 ] -# Lawyer: [ 2, 2 ] -# #supply -# Quartermaster: [ 1, 1 ] -# SalvageSpecialist: [ 3, 3 ] -# CargoTechnician: [ 3, 3 ] -# #civilian -# Passenger: [ -1, -1 ] -# Clown: [ 1, 1 ] -# Mime: [ 1, 1 ] -# Musician: [ 1, 1 ] -# Reporter: [ 2, 2 ] +- type: gameMap + id: Bagel + mapName: 'Bagel Station' + mapPath: /Maps/bagel.yml + minPlayers: 40 + maxPlayers: 76 + stations: + Bagel: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Bagel Station {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_lox.yml + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 2, 2 ] + Botanist: [ 3, 3 ] + Chef: [ 2, 2 ] + Janitor: [ 3, 3 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 3, 3 ] + StationEngineer: [ 4, 4 ] + TechnicalAssistant: [ 4, 4 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 2, 2 ] + MedicalDoctor: [ 3, 3 ] + Paramedic: [ 1, 1 ] + MedicalIntern: [ 4, 4 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 5, 5 ] + ResearchAssistant: [ 4, 4 ] + Borg: [ 2, 2 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 4, 4 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 4, 4 ] + Lawyer: [ 2, 2 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 3, 3 ] + CargoTechnician: [ 3, 3 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + Reporter: [ 2, 2 ] diff --git a/Resources/Prototypes/Maps/box.yml b/Resources/Prototypes/Maps/box.yml index d1af03dea8..50826fc5e0 100644 --- a/Resources/Prototypes/Maps/box.yml +++ b/Resources/Prototypes/Maps/box.yml @@ -1,64 +1,64 @@ -#- type: gameMap -# id: Box -# mapName: 'Box Station' -# mapPath: /Maps/box.yml -# minPlayers: 50 -# stations: -# Boxstation: -# stationProto: StandardNanotrasenStation -# components: -# - type: StationNameSetup -# mapNameTemplate: '{0} Box Station {1}' -# nameGenerator: -# !type:NanotrasenNameGenerator -# prefixCreator: 'TG' -# - type: StationEmergencyShuttle -# emergencyShuttlePath: /Maps/Shuttles/emergency_box.yml -# - type: StationJobs -# overflowJobs: -# - Passenger -# availableJobs: -# #service -# Captain: [ 1, 1 ] -# HeadOfPersonnel: [ 1, 1 ] -# Bartender: [ 2, 2 ] -# Botanist: [ 3, 3 ] -# Chef: [ 2, 2 ] -# Janitor: [ 2, 2 ] -# Chaplain: [ 1, 1 ] -# Librarian: [ 1, 1 ] -# ServiceWorker: [ 2, 2 ] -# #engineering -# ChiefEngineer: [ 1, 1 ] -# AtmosphericTechnician: [ 3, 3 ] -# StationEngineer: [ 5, 5 ] -# TechnicalAssistant: [ 4, 4 ] -# #medical -# ChiefMedicalOfficer: [ 1, 1 ] -# Chemist: [ 2, 3 ] -# MedicalDoctor: [ 4, 4 ] -# Paramedic: [ 1, 1 ] -# MedicalIntern: [ 4, 4 ] -# Psychologist: [ 1, 1 ] -# #science -# ResearchDirector: [ 1, 1 ] -# Scientist: [ 5, 5 ] -# ResearchAssistant: [ 4, 4 ] -# Borg: [ 2, 2 ] -# #security -# HeadOfSecurity: [ 1, 1 ] -# Warden: [ 1, 1 ] -# SecurityOfficer: [ 5, 5 ] -# Detective: [ 1, 1 ] -# SecurityCadet: [ 4, 4 ] -# Lawyer: [ 2, 2 ] -# #supply -# Quartermaster: [ 1, 1 ] -# SalvageSpecialist: [ 3, 3 ] -# CargoTechnician: [ 3, 3 ] -# #civilian -# Passenger: [ -1, -1 ] -# Clown: [ 1, 1 ] -# Mime: [ 1, 1 ] -# Musician: [ 1, 1 ] +- type: gameMap + id: Box + mapName: 'Box Station' + mapPath: /Maps/box.yml + minPlayers: 50 + stations: + Boxstation: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Box Station {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'TG' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_box.yml + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 2, 2 ] + Botanist: [ 3, 3 ] + Chef: [ 2, 2 ] + Janitor: [ 2, 2 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 3, 3 ] + StationEngineer: [ 5, 5 ] + TechnicalAssistant: [ 4, 4 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 2, 3 ] + MedicalDoctor: [ 4, 4 ] + Paramedic: [ 1, 1 ] + MedicalIntern: [ 4, 4 ] + Psychologist: [ 1, 1 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 5, 5 ] + ResearchAssistant: [ 4, 4 ] + Borg: [ 2, 2 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 5, 5 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 4, 4 ] + Lawyer: [ 2, 2 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 3, 3 ] + CargoTechnician: [ 3, 3 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/cluster.yml b/Resources/Prototypes/Maps/cluster.yml index 593dd870df..fe445b0081 100644 --- a/Resources/Prototypes/Maps/cluster.yml +++ b/Resources/Prototypes/Maps/cluster.yml @@ -1,63 +1,63 @@ -#- type: gameMap -# id: Cluster -# mapName: 'Cluster' -# mapPath: /Maps/cluster.yml -# minPlayers: 10 -# maxPlayers: 35 -# stations: -# Cluster: -# stationProto: StandardNanotrasenStation -# components: -# - type: StationEmergencyShuttle -# emergencyShuttlePath: /Maps/Shuttles/emergency_transit.yml -# - type: StationNameSetup -# mapNameTemplate: '{0} Cluster Station {1}' -# nameGenerator: -# !type:NanotrasenNameGenerator -# prefixCreator: '14' -# - type: StationJobs -# overflowJobs: -# - Passenger -# availableJobs: -# #service -# Captain: [ 1, 1 ] -# HeadOfPersonnel: [ 1, 1 ] -# Bartender: [ 1, 1 ] -# Botanist: [ 2, 2 ] -# Chef: [ 1, 1 ] -# Janitor: [ 1, 1 ] -# Chaplain: [ 1, 1 ] -# Librarian: [ 1, 1 ] -# Lawyer: [ 1, 1 ] -# ServiceWorker: [ 1, 1 ] -# #engineering -# ChiefEngineer: [ 1, 1 ] -# AtmosphericTechnician: [ 2, 2 ] -# StationEngineer: [ 3, 3 ] -# TechnicalAssistant: [ 2, 2 ] -# #medical -# ChiefMedicalOfficer: [ 1, 1 ] -# Chemist: [ 1, 1 ] -# MedicalDoctor: [ 2, 2 ] -# MedicalIntern: [ 2, 2 ] -# #science -# ResearchDirector: [ 1, 1 ] -# Scientist: [ 3, 3 ] -# ResearchAssistant: [ 2, 2 ] -# Borg: [ 1, 1 ] -# #security -# HeadOfSecurity: [ 1, 1 ] -# Warden: [ 1, 1 ] -# Detective: [ 1, 1 ] -# SecurityOfficer: [ 3, 3 ] -# SecurityCadet: [ 2, 2 ] -# #supply -# Quartermaster: [ 1, 1 ] -# SalvageSpecialist: [ 2, 2 ] -# CargoTechnician: [ 1, 1 ] -# #civillian -# Passenger: [ -1, -1 ] -# Clown: [ 1, 1 ] -# Mime: [ 1, 1 ] -# Musician: [ 1, 1 ] +- type: gameMap + id: Cluster + mapName: 'Cluster' + mapPath: /Maps/cluster.yml + minPlayers: 10 + maxPlayers: 35 + stations: + Cluster: + stationProto: StandardNanotrasenStation + components: + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_transit.yml + - type: StationNameSetup + mapNameTemplate: '{0} Cluster Station {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 1, 1 ] + Botanist: [ 2, 2 ] + Chef: [ 1, 1 ] + Janitor: [ 1, 1 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + Lawyer: [ 1, 1 ] + ServiceWorker: [ 1, 1 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 2, 2 ] + StationEngineer: [ 3, 3 ] + TechnicalAssistant: [ 2, 2 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 1, 1 ] + MedicalDoctor: [ 2, 2 ] + MedicalIntern: [ 2, 2 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 3, 3 ] + ResearchAssistant: [ 2, 2 ] + Borg: [ 1, 1 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + Detective: [ 1, 1 ] + SecurityOfficer: [ 3, 3 ] + SecurityCadet: [ 2, 2 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 2, 2 ] + CargoTechnician: [ 1, 1 ] + #civillian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/core.yml b/Resources/Prototypes/Maps/core.yml index 7e4992deca..6b85aca51d 100644 --- a/Resources/Prototypes/Maps/core.yml +++ b/Resources/Prototypes/Maps/core.yml @@ -1,67 +1,67 @@ -#- type: gameMap -# id: Core -# mapName: 'Core' -# mapPath: /Maps/core.yml -# minPlayers: 30 -# maxPlayers: 60 -# stations: -# Core: -# stationProto: StandardNanotrasenStation -# components: -# - type: StationNameSetup -# mapNameTemplate: '{0} Core {1}' -# nameGenerator: -# !type:NanotrasenNameGenerator -# prefixCreator: '14' -# - type: StationEmergencyShuttle -# emergencyShuttlePath: /Maps/Shuttles/emergency_rod.yml -# - type: StationCargoShuttle -# path: /Maps/Shuttles/cargo_core.yml -# - type: StationJobs -# overflowJobs: -# - Passenger -# availableJobs: -# #service -# Bartender: [ 2, 2 ] -# Botanist: [ 2, 2] -# Chef: [ 1, 1 ] -# Janitor: [ 2, 2 ] -# Captain: [ 1, 1 ] -# HeadOfPersonnel: [ 1, 1 ] -# Chaplain: [ 1, 1 ] -# Librarian: [ 1, 1 ] -# ServiceWorker: [ 3, 3 ] -# #engineering -# ChiefEngineer: [ 1, 1 ] -# StationEngineer: [ 4, 4 ] -# AtmosphericTechnician: [ 2, 2 ] -# TechnicalAssistant: [ 2, 2 ] -# #medical -# ChiefMedicalOfficer: [ 1, 1 ] -# MedicalDoctor: [ 3, 4 ] -# Chemist: [ 1, 2 ] -# MedicalIntern: [ 2, 2 ] -# Paramedic: [ 1, 2 ] -# #science -# ResearchDirector: [ 1, 1 ] -# Scientist: [ 3, 3 ] -# ResearchAssistant: [ 1, 1 ] -# Borg: [ 1, 2 ] -# #security -# HeadOfSecurity: [ 1, 1 ] -# SecurityOfficer: [ 4, 4 ] -# Warden: [ 1, 1 ] -# Lawyer: [ 1, 1 ] -# SecurityCadet: [ 1, 1 ] -# Detective: [ 1, 1 ] -# #supply -# CargoTechnician: [ 3, 3 ] -# Quartermaster: [ 1, 1 ] -# SalvageSpecialist: [ 2, 2 ] -# #civilian -# Passenger: [ -1, -1 ] -# Clown: [ 1, 1 ] -# Mime: [ 1, 1 ] -# Musician: [ 1, 1 ] -# Boxer: [ 2, 2 ] -# Reporter: [ 2, 2 ] +- type: gameMap + id: Core + mapName: 'Core' + mapPath: /Maps/core.yml + minPlayers: 30 + maxPlayers: 60 + stations: + Core: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Core {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_rod.yml + - type: StationCargoShuttle + path: /Maps/Shuttles/cargo_core.yml + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Bartender: [ 2, 2 ] + Botanist: [ 2, 2] + Chef: [ 1, 1 ] + Janitor: [ 2, 2 ] + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 3, 3 ] + #engineering + ChiefEngineer: [ 1, 1 ] + StationEngineer: [ 4, 4 ] + AtmosphericTechnician: [ 2, 2 ] + TechnicalAssistant: [ 2, 2 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + MedicalDoctor: [ 3, 4 ] + Chemist: [ 1, 2 ] + MedicalIntern: [ 2, 2 ] + Paramedic: [ 1, 2 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 3, 3 ] + ResearchAssistant: [ 1, 1 ] + Borg: [ 1, 2 ] + #security + HeadOfSecurity: [ 1, 1 ] + SecurityOfficer: [ 4, 4 ] + Warden: [ 1, 1 ] + Lawyer: [ 1, 1 ] + SecurityCadet: [ 1, 1 ] + Detective: [ 1, 1 ] + #supply + CargoTechnician: [ 3, 3 ] + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 2, 2 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + Boxer: [ 2, 2 ] + Reporter: [ 2, 2 ] diff --git a/Resources/Prototypes/Maps/debug.yml b/Resources/Prototypes/Maps/debug.yml index 94907d6e36..e006881a95 100644 --- a/Resources/Prototypes/Maps/debug.yml +++ b/Resources/Prototypes/Maps/debug.yml @@ -36,19 +36,19 @@ availableJobs: Adventurer: [ -1, -1 ] #CrystallPunk Dev replacement -#- type: gameMap -# id: TestTeg -# mapName: Test TEG -# mapPath: /Maps/Test/test_teg.yml -# minPlayers: 0 -# stations: -# TEG: -# stationProto: TestStation -# components: -# - type: StationNameSetup -# mapNameTemplate: "TEG" -# - type: StationJobs -# overflowJobs: -# - ChiefEngineer -# availableJobs: -# ChiefEngineer: [ -1, -1 ] +- type: gameMap + id: TestTeg + mapName: Test TEG + mapPath: /Maps/Test/test_teg.yml + minPlayers: 0 + stations: + TEG: + stationProto: TestStation + components: + - type: StationNameSetup + mapNameTemplate: "TEG" + - type: StationJobs + overflowJobs: + - ChiefEngineer + availableJobs: + ChiefEngineer: [ -1, -1 ] diff --git a/Resources/Prototypes/Maps/europa.yml b/Resources/Prototypes/Maps/europa.yml index 271fa7d0d3..3be93dbf0d 100644 --- a/Resources/Prototypes/Maps/europa.yml +++ b/Resources/Prototypes/Maps/europa.yml @@ -1,69 +1,69 @@ -#- type: gameMap -# id: Europa -# mapName: 'Europa' -# mapPath: /Maps/europa.yml -# minPlayers: 0 -# maxPlayers: 40 -# stations: -# Europa: -# stationProto: StandardNanotrasenStation -# components: -# - type: StationBiome -# biome: Snow -# - type: StationRandomTransform -# enableStationRotation: false -# maxStationOffset: null -# - type: StationNameSetup -# mapNameTemplate: '{0} Europa {1}' -# nameGenerator: -# !type:NanotrasenNameGenerator -# prefixCreator: '14' -# - type: StationEmergencyShuttle -# emergencyShuttlePath: /Maps/Shuttles/emergency_transit.yml -# - type: StationJobs -# overflowJobs: -# - Passenger -# availableJobs: -# #service -# Bartender: [ 1, 1 ] -# Botanist: [ 2, 2] -# Chef: [ 1, 1 ] -# Janitor: [ 2, 2 ] -# Captain: [ 1, 1 ] -# HeadOfPersonnel: [ 1, 1 ] -# Chaplain: [ 1, 1 ] -# Librarian: [ 1, 1 ] -# ServiceWorker: [ 3, 4 ] -# #engineering -# ChiefEngineer: [ 1, 1 ] -# StationEngineer: [ 3, 3 ] -# AtmosphericTechnician: [ 2, 2 ] -# TechnicalAssistant: [ 1, 1 ] -# #medical -# ChiefMedicalOfficer: [ 1, 1 ] -# MedicalDoctor: [ 2, 3 ] -# Chemist: [ 1, 2 ] -# MedicalIntern: [ 1, 1 ] -# Paramedic: [ 1, 2 ] -# #science -# ResearchDirector: [ 1, 1 ] -# Scientist: [ 2, 3 ] -# ResearchAssistant: [ 1, 1 ] -# #security -# HeadOfSecurity: [ 1, 1 ] -# SecurityOfficer: [ 3, 3 ] -# Warden: [ 1, 1 ] -# Lawyer: [ 1, 1 ] -# SecurityCadet: [ 3, 3 ] -# Detective: [ 1, 1 ] -# #supply -# CargoTechnician: [ 3, 3 ] -# Quartermaster: [ 1, 1 ] -# SalvageSpecialist: [ 3, 3 ] -# #civilian -# Passenger: [ -1, -1 ] -# Clown: [ 1, 1 ] -# Mime: [ 1, 1 ] -# Musician: [ 1, 1 ] -# Reporter: [ 1, 1 ] +- type: gameMap + id: Europa + mapName: 'Europa' + mapPath: /Maps/europa.yml + minPlayers: 0 + maxPlayers: 40 + stations: + Europa: + stationProto: StandardNanotrasenStation + components: + - type: StationBiome + biome: Snow + - type: StationRandomTransform + enableStationRotation: false + maxStationOffset: null + - type: StationNameSetup + mapNameTemplate: '{0} Europa {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_transit.yml + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Bartender: [ 1, 1 ] + Botanist: [ 2, 2] + Chef: [ 1, 1 ] + Janitor: [ 2, 2 ] + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 3, 4 ] + #engineering + ChiefEngineer: [ 1, 1 ] + StationEngineer: [ 3, 3 ] + AtmosphericTechnician: [ 2, 2 ] + TechnicalAssistant: [ 1, 1 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + MedicalDoctor: [ 2, 3 ] + Chemist: [ 1, 2 ] + MedicalIntern: [ 1, 1 ] + Paramedic: [ 1, 2 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 2, 3 ] + ResearchAssistant: [ 1, 1 ] + #security + HeadOfSecurity: [ 1, 1 ] + SecurityOfficer: [ 3, 3 ] + Warden: [ 1, 1 ] + Lawyer: [ 1, 1 ] + SecurityCadet: [ 3, 3 ] + Detective: [ 1, 1 ] + #supply + CargoTechnician: [ 3, 3 ] + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 3, 3 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + Reporter: [ 1, 1 ] # diff --git a/Resources/Prototypes/Maps/fland.yml b/Resources/Prototypes/Maps/fland.yml index 371673f9a0..f0c35f99e5 100644 --- a/Resources/Prototypes/Maps/fland.yml +++ b/Resources/Prototypes/Maps/fland.yml @@ -1,64 +1,64 @@ -#- type: gameMap -# id: Fland -# mapName: 'Fland Installation' -# mapPath: /Maps/fland.yml -# minPlayers: 70 -# stations: -# Fland: -# stationProto: StandardNanotrasenStation -# components: -# - type: StationNameSetup -# mapNameTemplate: '{0} Fland Installation {1}' -# nameGenerator: -# !type:NanotrasenNameGenerator -# prefixCreator: 'B' -# - type: StationEmergencyShuttle -# emergencyShuttlePath: /Maps/Shuttles/emergency_delta.yml -# - type: StationCargoShuttle -# path: /Maps/Shuttles/cargo_fland.yml -# - type: StationJobs -# overflowJobs: -# - Passenger -# availableJobs: -# #service -# Captain: [ 1, 1 ] -# HeadOfPersonnel: [ 1, 1 ] -# Bartender: [ 2, 2 ] -# Botanist: [ 4, 4 ] -# Chef: [ 2, 2 ] -# Janitor: [ 3, 3 ] -# Chaplain: [ 1, 1 ] -# Librarian: [ 1, 1 ] -# ServiceWorker: [ 2, 2 ] -# #engineering -# ChiefEngineer: [ 1, 1 ] -# AtmosphericTechnician: [ 3, 3 ] -# StationEngineer: [ 5, 5 ] -# TechnicalAssistant: [ 4, 4 ] -# #medical -# ChiefMedicalOfficer: [ 1, 1 ] -# Chemist: [ 3, 3 ] -# MedicalDoctor: [ 6, 6 ] -# Paramedic: [ 2, 2 ] -# MedicalIntern: [ 4, 4 ] -# #science -# ResearchDirector: [ 1, 1 ] -# Scientist: [ 5, 5 ] -# ResearchAssistant: [ 6, 6 ] -# Borg: [ 2, 2 ] -# #security -# HeadOfSecurity: [ 1, 1 ] -# Warden: [ 1, 1 ] -# SecurityOfficer: [ 8, 8 ] -# Detective: [ 1, 1 ] -# SecurityCadet: [ 4, 4 ] -# Lawyer: [ 2, 2 ] -# #supply -# Quartermaster: [ 1, 1 ] -# SalvageSpecialist: [ 3, 3 ] -# CargoTechnician: [ 4, 4 ] -# #civilian -# Passenger: [ -1, -1 ] -# Clown: [ 1, 1 ] -# Mime: [ 1, 1 ] -# Musician: [ 1, 1 ] +- type: gameMap + id: Fland + mapName: 'Fland Installation' + mapPath: /Maps/fland.yml + minPlayers: 70 + stations: + Fland: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Fland Installation {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'B' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_delta.yml + - type: StationCargoShuttle + path: /Maps/Shuttles/cargo_fland.yml + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 2, 2 ] + Botanist: [ 4, 4 ] + Chef: [ 2, 2 ] + Janitor: [ 3, 3 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 3, 3 ] + StationEngineer: [ 5, 5 ] + TechnicalAssistant: [ 4, 4 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 3, 3 ] + MedicalDoctor: [ 6, 6 ] + Paramedic: [ 2, 2 ] + MedicalIntern: [ 4, 4 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 5, 5 ] + ResearchAssistant: [ 6, 6 ] + Borg: [ 2, 2 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 8, 8 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 4, 4 ] + Lawyer: [ 2, 2 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 3, 3 ] + CargoTechnician: [ 4, 4 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/marathon.yml b/Resources/Prototypes/Maps/marathon.yml index e33e624f56..f82ee1d434 100644 --- a/Resources/Prototypes/Maps/marathon.yml +++ b/Resources/Prototypes/Maps/marathon.yml @@ -1,64 +1,64 @@ -#- type: gameMap -# id: Marathon -# mapName: 'Marathon Station' -# mapPath: /Maps/marathon.yml -# minPlayers: 35 -# maxPlayers: 70 -# stations: -# Marathon: -# stationProto: StandardNanotrasenStation -# components: -# - type: StationNameSetup -# mapNameTemplate: '{0} Marathon Station {1}' -# nameGenerator: -# !type:NanotrasenNameGenerator -# prefixCreator: '14' -# - type: StationEmergencyShuttle -# emergencyShuttlePath: /Maps/Shuttles/emergency_rod.yml -# - type: StationJobs -# overflowJobs: -# - Passenger -# availableJobs: -# #service -# Captain: [ 1, 1 ] -# HeadOfPersonnel: [ 1, 1 ] -# Bartender: [ 2, 2 ] -# Botanist: [ 2, 3 ] -# Chef: [ 2, 2 ] -# Janitor: [ 1, 2 ] -# Chaplain: [ 1, 1 ] -# Librarian: [ 1, 1 ] -# ServiceWorker: [ 2, 2 ] -# #engineering -# ChiefEngineer: [ 1, 1 ] -# AtmosphericTechnician: [ 3, 3 ] -# StationEngineer: [ 4, 4 ] -# TechnicalAssistant: [ 3, 3 ] -# #medical -# ChiefMedicalOfficer: [ 1, 1 ] -# Chemist: [ 2, 2 ] -# MedicalDoctor: [ 4, 4 ] -# MedicalIntern: [ 3, 3 ] -# Psychologist: [ 1, 1 ] -# Paramedic: [ 1, 1 ] -# #science -# ResearchDirector: [ 1, 1 ] -# Scientist: [ 4, 4 ] -# ResearchAssistant: [ 3, 3 ] -# Borg: [ 2, 2 ] -# #security -# HeadOfSecurity: [ 1, 1 ] -# Warden: [ 1, 1 ] -# SecurityOfficer: [ 4, 4 ] -# Detective: [ 1, 1 ] -# SecurityCadet: [ 4, 4 ] -# Lawyer: [ 2, 2 ] -# #supply -# Quartermaster: [ 1, 1 ] -# SalvageSpecialist: [ 3, 3 ] -# CargoTechnician: [ 3, 3 ] -# #civilian -# Passenger: [ -1, -1 ] -# Clown: [ 1, 1 ] -# Mime: [ 1, 1 ] -# Musician: [ 1, 1 ] +- type: gameMap + id: Marathon + mapName: 'Marathon Station' + mapPath: /Maps/marathon.yml + minPlayers: 35 + maxPlayers: 70 + stations: + Marathon: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Marathon Station {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_rod.yml + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 2, 2 ] + Botanist: [ 2, 3 ] + Chef: [ 2, 2 ] + Janitor: [ 1, 2 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 3, 3 ] + StationEngineer: [ 4, 4 ] + TechnicalAssistant: [ 3, 3 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 2, 2 ] + MedicalDoctor: [ 4, 4 ] + MedicalIntern: [ 3, 3 ] + Psychologist: [ 1, 1 ] + Paramedic: [ 1, 1 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 4, 4 ] + ResearchAssistant: [ 3, 3 ] + Borg: [ 2, 2 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 4, 4 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 4, 4 ] + Lawyer: [ 2, 2 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 3, 3 ] + CargoTechnician: [ 3, 3 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/meta.yml b/Resources/Prototypes/Maps/meta.yml index fa6f976f9e..2bee606e95 100644 --- a/Resources/Prototypes/Maps/meta.yml +++ b/Resources/Prototypes/Maps/meta.yml @@ -1,62 +1,62 @@ -#- type: gameMap -# id: Meta -# mapName: 'Meta Station' -# mapPath: /Maps/meta.yml -# minPlayers: 50 -# stations: -# Meta: -# stationProto: StandardNanotrasenStation -# components: -# - type: StationNameSetup -# mapNameTemplate: '{0} Meta Station {1}' -# nameGenerator: -# !type:NanotrasenNameGenerator -# prefixCreator: 'TG' -# - type: StationEmergencyShuttle -# emergencyShuttlePath: /Maps/Shuttles/emergency_meta.yml -# - type: StationJobs -# overflowJobs: -# - Passenger -# availableJobs: -# #service -# Captain: [ 1, 1 ] -# HeadOfPersonnel: [ 1, 1 ] -# Bartender: [ 2, 2 ] -# Botanist: [ 2, 3 ] -# Chef: [ 2, 2 ] -# Janitor: [ 1, 2 ] -# Chaplain: [ 1, 1 ] -# Librarian: [ 1, 1 ] -# ServiceWorker: [ 2, 2 ] -# #engineering -# ChiefEngineer: [ 1, 1 ] -# AtmosphericTechnician: [ 3, 3 ] -# StationEngineer: [ 5, 7 ] -# TechnicalAssistant: [ 3, 6 ] -# #medical -# ChiefMedicalOfficer: [ 1, 1 ] -# Chemist: [ 3, 3 ] -# MedicalDoctor: [ 5, 5 ] -# MedicalIntern: [ 3, 6 ] -# Paramedic: [ 1, 1 ] -# #science -# ResearchDirector: [ 1, 1 ] -# Scientist: [ 5, 7 ] -# ResearchAssistant: [ 3, 6 ] -# Borg: [ 2, 2 ] -# #security -# HeadOfSecurity: [ 1, 1 ] -# Warden: [ 1, 1 ] -# SecurityOfficer: [ 5, 7 ] -# Detective: [ 1, 1 ] -# SecurityCadet: [ 3, 6 ] -# Lawyer: [ 2, 2 ] -# #supply -# Quartermaster: [ 1, 1 ] -# SalvageSpecialist: [ 3, 3 ] -# CargoTechnician: [ 3, 3 ] -# #civilian -# Passenger: [ -1, -1 ] -# Clown: [ 1, 1 ] -# Mime: [ 1, 1 ] -# Musician: [ 1, 1 ] +- type: gameMap + id: Meta + mapName: 'Meta Station' + mapPath: /Maps/meta.yml + minPlayers: 50 + stations: + Meta: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Meta Station {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'TG' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_meta.yml + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 2, 2 ] + Botanist: [ 2, 3 ] + Chef: [ 2, 2 ] + Janitor: [ 1, 2 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 3, 3 ] + StationEngineer: [ 5, 7 ] + TechnicalAssistant: [ 3, 6 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 3, 3 ] + MedicalDoctor: [ 5, 5 ] + MedicalIntern: [ 3, 6 ] + Paramedic: [ 1, 1 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 5, 7 ] + ResearchAssistant: [ 3, 6 ] + Borg: [ 2, 2 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 5, 7 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 3, 6 ] + Lawyer: [ 2, 2 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 3, 3 ] + CargoTechnician: [ 3, 3 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/oasis.yml b/Resources/Prototypes/Maps/oasis.yml index 1320115937..c79225823b 100644 --- a/Resources/Prototypes/Maps/oasis.yml +++ b/Resources/Prototypes/Maps/oasis.yml @@ -1,64 +1,64 @@ -#- type: gameMap -# id: Oasis -# mapName: 'Oasis' -# mapPath: /Maps/oasis.yml -# minPlayers: 70 -# stations: -# Oasis: -# stationProto: StandardNanotrasenStation -# components: -# - type: StationNameSetup -# mapNameTemplate: '{0} Oasis {1}' -# nameGenerator: -# !type:NanotrasenNameGenerator -# prefixCreator: 'B' -# - type: StationEmergencyShuttle -# emergencyShuttlePath: /Maps/Shuttles/emergency_delta.yml -# - type: StationJobs -# overflowJobs: -# - Passenger -# availableJobs: -# #service -# Captain: [ 1, 1 ] -# HeadOfPersonnel: [ 1, 1 ] -# Bartender: [ 2, 2 ] -# Botanist: [ 4, 4 ] -# Chef: [ 2, 2 ] -# Janitor: [ 3, 3 ] -# Chaplain: [ 1, 1 ] -# Librarian: [ 1, 1 ] -# ServiceWorker: [ 2, 2 ] -# Zookeeper: [ 1, 1 ] -# #engineering -# ChiefEngineer: [ 1, 1 ] -# AtmosphericTechnician: [ 3, 3 ] -# StationEngineer: [ 5, 5 ] -# TechnicalAssistant: [ 4, 4 ] -# #medical -# ChiefMedicalOfficer: [ 1, 1 ] -# Chemist: [ 3, 3 ] -# MedicalDoctor: [ 6, 6 ] -# Paramedic: [ 2, 2 ] -# MedicalIntern: [ 4, 4 ] -# Psychologist: [ 1, 1 ] -# #science -# ResearchDirector: [ 1, 1 ] -# Scientist: [ 5, 5 ] -# ResearchAssistant: [ 6, 6 ] -# Borg: [ 2, 2 ] -# #security -# HeadOfSecurity: [ 1, 1 ] -# Warden: [ 1, 1 ] -# SecurityOfficer: [ 8, 8 ] -# Detective: [ 1, 1 ] -# SecurityCadet: [ 4, 4 ] -# Lawyer: [ 3, 3 ] -# #supply -# Quartermaster: [ 1, 1 ] -# SalvageSpecialist: [ 3, 3 ] -# CargoTechnician: [ 4, 4 ] -# #civilian -# Passenger: [ -1, -1 ] -# Clown: [ 1, 1 ] -# Mime: [ 1, 1 ] -# Musician: [ 1, 1 ] \ No newline at end of file +- type: gameMap + id: Oasis + mapName: 'Oasis' + mapPath: /Maps/oasis.yml + minPlayers: 70 + stations: + Oasis: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Oasis {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'B' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_delta.yml + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 2, 2 ] + Botanist: [ 4, 4 ] + Chef: [ 2, 2 ] + Janitor: [ 3, 3 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + Zookeeper: [ 1, 1 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 3, 3 ] + StationEngineer: [ 5, 5 ] + TechnicalAssistant: [ 4, 4 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 3, 3 ] + MedicalDoctor: [ 6, 6 ] + Paramedic: [ 2, 2 ] + MedicalIntern: [ 4, 4 ] + Psychologist: [ 1, 1 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 5, 5 ] + ResearchAssistant: [ 6, 6 ] + Borg: [ 2, 2 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 8, 8 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 4, 4 ] + Lawyer: [ 3, 3 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 3, 3 ] + CargoTechnician: [ 4, 4 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] \ No newline at end of file diff --git a/Resources/Prototypes/Maps/omega.yml b/Resources/Prototypes/Maps/omega.yml index be8d77dff4..f90c5f5b65 100644 --- a/Resources/Prototypes/Maps/omega.yml +++ b/Resources/Prototypes/Maps/omega.yml @@ -1,62 +1,62 @@ -#- type: gameMap -# id: Omega -# mapName: 'Omega' -# mapPath: /Maps/omega.yml -# minPlayers: 10 -# maxPlayers: 35 -# stations: -# Omega: -# stationProto: StandardNanotrasenStation -# components: -# - type: StationNameSetup -# mapNameTemplate: '{0} Omega Station {1}' -# nameGenerator: -# !type:NanotrasenNameGenerator -# prefixCreator: 'TG' -# - type: StationEmergencyShuttle -# emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml -# - type: StationJobs -# overflowJobs: -# - Passenger -# availableJobs: -# #service -# Captain: [ 1, 1 ] -# HeadOfPersonnel: [ 1, 1 ] -# Bartender: [ 1, 1 ] -# Botanist: [ 2, 2 ] -# Chef: [ 1, 1 ] -# Janitor: [ 1, 2 ] -# Chaplain: [ 1, 1 ] -# Librarian: [ 1, 1 ] -# ServiceWorker: [ 2, 2 ] -# #engineering -# ChiefEngineer: [ 1, 1 ] -# AtmosphericTechnician: [ 2, 2 ] -# StationEngineer: [ 3, 3 ] -# TechnicalAssistant: [ 2, 2 ] -# #medical -# ChiefMedicalOfficer: [ 1, 1 ] -# Chemist: [ 2, 2 ] -# MedicalDoctor: [ 3, 3 ] -# MedicalIntern: [ 2, 2 ] -# #science -# ResearchDirector: [ 1, 1 ] -# Scientist: [ 4, 4 ] -# ResearchAssistant: [ 2, 2 ] -# #security -# HeadOfSecurity: [ 1, 1 ] -# Warden: [ 1, 1 ] -# SecurityOfficer: [ 4, 4 ] -# Detective: [ 1, 1 ] -# SecurityCadet: [ 2, 2 ] -# Lawyer: [ 1, 1 ] -# #supply -# Quartermaster: [ 1, 1 ] -# SalvageSpecialist: [ 2, 2 ] -# CargoTechnician: [ 2, 2 ] -# #civilian -# Passenger: [ -1, -1 ] -# Clown: [ 1, 1 ] -# Mime: [ 1, 1 ] -# Musician: [ 1, 1 ] -# Borg: [ 2, 2 ] +- type: gameMap + id: Omega + mapName: 'Omega' + mapPath: /Maps/omega.yml + minPlayers: 10 + maxPlayers: 35 + stations: + Omega: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Omega Station {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'TG' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 1, 1 ] + Botanist: [ 2, 2 ] + Chef: [ 1, 1 ] + Janitor: [ 1, 2 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 2, 2 ] + StationEngineer: [ 3, 3 ] + TechnicalAssistant: [ 2, 2 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 2, 2 ] + MedicalDoctor: [ 3, 3 ] + MedicalIntern: [ 2, 2 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 4, 4 ] + ResearchAssistant: [ 2, 2 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 4, 4 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 2, 2 ] + Lawyer: [ 1, 1 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 2, 2 ] + CargoTechnician: [ 2, 2 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + Borg: [ 2, 2 ] diff --git a/Resources/Prototypes/Maps/origin.yml b/Resources/Prototypes/Maps/origin.yml index cf11052ef7..1281489891 100644 --- a/Resources/Prototypes/Maps/origin.yml +++ b/Resources/Prototypes/Maps/origin.yml @@ -1,66 +1,66 @@ -#- type: gameMap -# id: Origin -# mapName: 'Origin' -# mapPath: /Maps/origin.yml -# minPlayers: 50 -# stations: -# Origin: -# stationProto: StandardNanotrasenStation -# components: -# - type: StationNameSetup -# mapNameTemplate: '{0} Origin {1}' -# nameGenerator: -# !type:NanotrasenNameGenerator -# prefixCreator: '14' -# - type: StationEmergencyShuttle -# emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml -# - type: StationJobs -# overflowJobs: -# - Passenger -# availableJobs: -# #service -# Captain: [ 1, 1 ] -# HeadOfPersonnel: [ 1, 1 ] -# Bartender: [ 2, 2 ] -# Botanist: [ 3, 3 ] -# Chef: [ 3, 3 ] -# Janitor: [ 3, 3 ] -# Chaplain: [ 2, 2 ] -# Librarian: [ 2, 2 ] -# Lawyer: [ 2, 2 ] -# ServiceWorker: [ 3, 4 ] -# #engineering -# ChiefEngineer: [ 1, 1 ] -# AtmosphericTechnician: [ 3, 3 ] -# StationEngineer: [ 6, 6 ] -# TechnicalAssistant: [ 2, 3 ] -# #medical -# ChiefMedicalOfficer: [ 1, 1 ] -# Chemist: [ 2, 3 ] -# Paramedic: [ 1, 1 ] -# MedicalDoctor: [ 6, 6 ] -# Psychologist: [ 1, 1 ] -# MedicalIntern: [ 1, 2 ] -# #science -# ResearchDirector: [ 1, 1 ] -# Scientist: [ 6, 6 ] -# ResearchAssistant: [ 4, 4 ] -# Borg: [ 2, 2 ] -# #security -# HeadOfSecurity: [ 1, 1 ] -# Warden: [ 1, 1 ] -# Detective: [ 1, 1 ] -# SecurityOfficer: [ 7, 7 ] -# SecurityCadet: [ 2, 4 ] -# #supply -# Quartermaster: [ 1, 1 ] -# SalvageSpecialist: [ 3, 3 ] -# CargoTechnician: [ 5, 5 ] -# #civillian -# Passenger: [ -1, -1 ] -# Clown: [ 1, 1 ] -# Mime: [ 1, 1 ] -# Musician: [ 2, 2 ] -# Boxer: [ 1, 1 ] -# Reporter: [ 1, 1 ] +- type: gameMap + id: Origin + mapName: 'Origin' + mapPath: /Maps/origin.yml + minPlayers: 50 + stations: + Origin: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Origin {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 2, 2 ] + Botanist: [ 3, 3 ] + Chef: [ 3, 3 ] + Janitor: [ 3, 3 ] + Chaplain: [ 2, 2 ] + Librarian: [ 2, 2 ] + Lawyer: [ 2, 2 ] + ServiceWorker: [ 3, 4 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 3, 3 ] + StationEngineer: [ 6, 6 ] + TechnicalAssistant: [ 2, 3 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 2, 3 ] + Paramedic: [ 1, 1 ] + MedicalDoctor: [ 6, 6 ] + Psychologist: [ 1, 1 ] + MedicalIntern: [ 1, 2 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 6, 6 ] + ResearchAssistant: [ 4, 4 ] + Borg: [ 2, 2 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + Detective: [ 1, 1 ] + SecurityOfficer: [ 7, 7 ] + SecurityCadet: [ 2, 4 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 3, 3 ] + CargoTechnician: [ 5, 5 ] + #civillian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 2, 2 ] + Boxer: [ 1, 1 ] + Reporter: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/packed.yml b/Resources/Prototypes/Maps/packed.yml index 47a8e964f9..20d6c7a7bd 100644 --- a/Resources/Prototypes/Maps/packed.yml +++ b/Resources/Prototypes/Maps/packed.yml @@ -1,61 +1,61 @@ -#- type: gameMap -# id: Packed -# mapName: 'Packed' -# mapPath: /Maps/packed.yml -# minPlayers: 5 -# maxPlayers: 40 -# stations: -# Packed: -# stationProto: StandardNanotrasenStation -# components: -# - type: StationNameSetup -# mapNameTemplate: '{0} Packed {1}' -# nameGenerator: -# !type:NanotrasenNameGenerator -# prefixCreator: 'VG' -# - type: StationJobs -# overflowJobs: -# - Passenger -# availableJobs: -# #service -# Captain: [ 1, 1 ] -# HeadOfPersonnel: [ 1, 1 ] -# Bartender: [ 1, 1 ] -# Botanist: [ 2, 2 ] -# Chef: [ 1, 1 ] -# Janitor: [ 1, 2 ] -# Chaplain: [ 1, 1 ] -# Librarian: [ 1, 1 ] -# ServiceWorker: [ 2, 2 ] -# #engineering -# ChiefEngineer: [ 1, 1 ] -# AtmosphericTechnician: [ 2, 2 ] -# StationEngineer: [ 4, 4 ] -# TechnicalAssistant: [ 3, 3 ] -# #medical -# ChiefMedicalOfficer: [ 1, 1 ] -# Chemist: [ 2, 2 ] -# MedicalDoctor: [ 3, 3 ] -# MedicalIntern: [ 2, 2 ] -# Paramedic: [ 1, 1 ] -# #science -# ResearchDirector: [ 1, 1 ] -# Scientist: [ 4, 4 ] -# ResearchAssistant: [ 2, 2 ] -# #security -# HeadOfSecurity: [ 1, 1 ] -# Warden: [ 1, 1 ] -# SecurityOfficer: [ 4, 4 ] -# Detective: [ 1, 1 ] -# SecurityCadet: [ 2, 2 ] -# Lawyer: [ 1, 1 ] -# #supply -# Quartermaster: [ 1, 1 ] -# SalvageSpecialist: [ 2, 2 ] -# CargoTechnician: [ 2, 2 ] -# #civilian -# Passenger: [ -1, -1 ] -# Clown: [ 1, 1 ] -# Mime: [ 1, 1 ] -# Musician: [ 1, 1 ] -# Borg: [ 1 , 1 ] +- type: gameMap + id: Packed + mapName: 'Packed' + mapPath: /Maps/packed.yml + minPlayers: 5 + maxPlayers: 40 + stations: + Packed: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Packed {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'VG' + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 1, 1 ] + Botanist: [ 2, 2 ] + Chef: [ 1, 1 ] + Janitor: [ 1, 2 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 2, 2 ] + StationEngineer: [ 4, 4 ] + TechnicalAssistant: [ 3, 3 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 2, 2 ] + MedicalDoctor: [ 3, 3 ] + MedicalIntern: [ 2, 2 ] + Paramedic: [ 1, 1 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 4, 4 ] + ResearchAssistant: [ 2, 2 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 4, 4 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 2, 2 ] + Lawyer: [ 1, 1 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 2, 2 ] + CargoTechnician: [ 2, 2 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + Borg: [ 1 , 1 ] diff --git a/Resources/Prototypes/Maps/reach.yml b/Resources/Prototypes/Maps/reach.yml index 20f1b32f26..03a688cf23 100644 --- a/Resources/Prototypes/Maps/reach.yml +++ b/Resources/Prototypes/Maps/reach.yml @@ -1,36 +1,36 @@ -#- type: gameMap -# id: Reach -# mapName: 'Reach' -# mapPath: /Maps/reach.yml -# minPlayers: 0 -# maxPlayers: 7 -# stations: -# Reach: -# stationProto: StandardNanotrasenStation -# components: -# - type: StationNameSetup -# mapNameTemplate: '{0} Reach Transport {1}' -# nameGenerator: -# !type:NanotrasenNameGenerator -# prefixCreator: 'SC' -# - type: StationEmergencyShuttle -# emergencyShuttlePath: /Maps/Shuttles/emergency.yml -# - type: StationJobs -# overflowJobs: -# - Passenger -# availableJobs: -# Captain: [ 1, 1 ] -# HeadOfSecurity: [ 1, 1 ] -# SecurityOfficer: [ 1, 3 ] -# CargoTechnician: [ 1, 2 ] -# Bartender: [ 1, 1 ] -# Botanist: [ 1, 1 ] -# Chef: [ 1, 1 ] -# MedicalDoctor: [ 1, 2 ] -# Chemist: [ 1, 1 ] -# Janitor: [ 1, 1 ] -# Musician: [ 1, 1 ] -# AtmosphericTechnician: [ 1, 1 ] -# StationEngineer: [ 1, 2 ] -# Passenger: [ -1, -1 ] +- type: gameMap + id: Reach + mapName: 'Reach' + mapPath: /Maps/reach.yml + minPlayers: 0 + maxPlayers: 7 + stations: + Reach: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Reach Transport {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'SC' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency.yml + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + Captain: [ 1, 1 ] + HeadOfSecurity: [ 1, 1 ] + SecurityOfficer: [ 1, 3 ] + CargoTechnician: [ 1, 2 ] + Bartender: [ 1, 1 ] + Botanist: [ 1, 1 ] + Chef: [ 1, 1 ] + MedicalDoctor: [ 1, 2 ] + Chemist: [ 1, 1 ] + Janitor: [ 1, 1 ] + Musician: [ 1, 1 ] + AtmosphericTechnician: [ 1, 1 ] + StationEngineer: [ 1, 2 ] + Passenger: [ -1, -1 ] diff --git a/Resources/Prototypes/Maps/saltern.yml b/Resources/Prototypes/Maps/saltern.yml index ee0e62f838..bc12eca654 100644 --- a/Resources/Prototypes/Maps/saltern.yml +++ b/Resources/Prototypes/Maps/saltern.yml @@ -1,62 +1,62 @@ -#- type: gameMap -# id: Saltern -# mapName: 'Saltern' -# mapPath: /Maps/saltern.yml -# minPlayers: 0 -# maxPlayers: 35 -# fallback: true -# stations: -# Saltern: -# stationProto: StandardNanotrasenStation -# components: -# - type: StationNameSetup -# mapNameTemplate: '{0} Saltern {1}' -# nameGenerator: -# !type:NanotrasenNameGenerator -# prefixCreator: '14' -# - type: StationJobs -# overflowJobs: -# - Passenger -# availableJobs: -# #service -# Captain: [ 1, 1 ] -# HeadOfPersonnel: [ 1, 1 ] -# Bartender: [ 1, 1 ] -# Botanist: [ 2, 2 ] -# Chef: [ 1, 1 ] -# Janitor: [ 1, 1 ] -# Chaplain: [ 1, 1 ] -# Librarian: [ 1, 1 ] -# ServiceWorker: [ 2, 2 ] -# #engineering -# ChiefEngineer: [ 1, 1 ] -# AtmosphericTechnician: [ 2, 2 ] -# StationEngineer: [ 4, 4 ] -# TechnicalAssistant: [ 4, 4 ] -# #medical -# ChiefMedicalOfficer: [ 1, 1 ] -# Chemist: [ 2, 2 ] -# MedicalDoctor: [ 3, 3 ] -# MedicalIntern: [ 4, 4 ] -# Paramedic: [ 1, 1 ] -# #science -# ResearchDirector: [ 1, 1 ] -# Scientist: [ 4, 4 ] -# ResearchAssistant: [ 2, 2 ] -# Borg: [ 2, 2 ] -# #security -# HeadOfSecurity: [ 1, 1 ] -# Warden: [ 1, 1 ] -# Detective: [ 1, 1 ] -# SecurityOfficer: [ 4, 4 ] -# SecurityCadet: [ 4, 4 ] -# #supply -# Quartermaster: [ 1, 1 ] -# SalvageSpecialist: [ 1, 3 ] -# CargoTechnician: [ 2, 2 ] -# #civillian -# Passenger: [ -1, -1 ] -# Clown: [ 1, 1 ] -# Mime: [ 1, 1 ] -# Musician: [ 1, 1 ] +- type: gameMap + id: Saltern + mapName: 'Saltern' + mapPath: /Maps/saltern.yml + minPlayers: 0 + maxPlayers: 35 + fallback: true + stations: + Saltern: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Saltern {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 1, 1 ] + Botanist: [ 2, 2 ] + Chef: [ 1, 1 ] + Janitor: [ 1, 1 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 2, 2 ] + StationEngineer: [ 4, 4 ] + TechnicalAssistant: [ 4, 4 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 2, 2 ] + MedicalDoctor: [ 3, 3 ] + MedicalIntern: [ 4, 4 ] + Paramedic: [ 1, 1 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 4, 4 ] + ResearchAssistant: [ 2, 2 ] + Borg: [ 2, 2 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + Detective: [ 1, 1 ] + SecurityOfficer: [ 4, 4 ] + SecurityCadet: [ 4, 4 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 1, 3 ] + CargoTechnician: [ 2, 2 ] + #civillian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/train.yml b/Resources/Prototypes/Maps/train.yml index 244652e08b..48c1f2925a 100644 --- a/Resources/Prototypes/Maps/train.yml +++ b/Resources/Prototypes/Maps/train.yml @@ -1,64 +1,64 @@ -#- type: gameMap -# id: Train -# mapName: 'Train' -# mapPath: /Maps/train.yml -# minPlayers: 10 -# maxPlayers: 50 -# stations: -# Train: -# stationProto: StandardNanotrasenStation -# components: -# - type: StationRandomTransform -# enableStationRotation: false -# - type: StationNameSetup -# mapNameTemplate: 'Train "Sentipode" {0}-{1}' -# nameGenerator: -# !type:NanotrasenNameGenerator -# prefixCreator: 'ED' -# - type: StationEmergencyShuttle -# emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml # To do - add railway station -# - type: StationJobs -# overflowJobs: -# - Passenger -# availableJobs: -# #service -# Captain: [ 1, 1 ] -# HeadOfPersonnel: [ 1, 1 ] -# Bartender: [ 1, 1 ] -# Botanist: [ 2, 2 ] -# Chef: [ 1, 1 ] -# Janitor: [ 1, 2 ] -# Chaplain: [ 1, 1 ] -# Librarian: [ 1, 1 ] -# ServiceWorker: [ 2, 3 ] -# Detective: [ 1, 1 ] -# #engineering -# ChiefEngineer: [ 1, 1 ] -# AtmosphericTechnician: [ 3, 3 ] -# StationEngineer: [ 5, 5 ] -# TechnicalAssistant: [ 3, 3 ] -# #medical -# ChiefMedicalOfficer: [ 1, 1 ] -# Chemist: [ 2, 2 ] -# MedicalDoctor: [ 3, 3 ] -# MedicalIntern: [ 2, 2 ] -# #science -# ResearchDirector: [ 1, 1 ] -# Scientist: [ 4, 4 ] -# ResearchAssistant: [ 2, 2 ] -# #security -# HeadOfSecurity: [ 1, 1 ] -# Warden: [ 1, 1 ] -# SecurityOfficer: [ 4, 4 ] -# SecurityCadet: [ 2, 3 ] -# Lawyer: [ 1, 2 ] -# #supply -# Quartermaster: [ 1, 1 ] -# SalvageSpecialist: [ 2, 2 ] -# CargoTechnician: [ 2, 2 ] -# #civilian -# Passenger: [ -1, -1 ] -# Clown: [ 1, 1 ] -# Mime: [ 1, 1 ] -# Musician: [ 1, 1 ] -# Borg: [ 2, 2 ] +- type: gameMap + id: Train + mapName: 'Train' + mapPath: /Maps/train.yml + minPlayers: 10 + maxPlayers: 50 + stations: + Train: + stationProto: StandardNanotrasenStation + components: + - type: StationRandomTransform + enableStationRotation: false + - type: StationNameSetup + mapNameTemplate: 'Train "Sentipode" {0}-{1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'ED' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml To do - add railway station + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 1, 1 ] + Botanist: [ 2, 2 ] + Chef: [ 1, 1 ] + Janitor: [ 1, 2 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + ServiceWorker: [ 2, 3 ] + Detective: [ 1, 1 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 3, 3 ] + StationEngineer: [ 5, 5 ] + TechnicalAssistant: [ 3, 3 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 2, 2 ] + MedicalDoctor: [ 3, 3 ] + MedicalIntern: [ 2, 2 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 4, 4 ] + ResearchAssistant: [ 2, 2 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 4, 4 ] + SecurityCadet: [ 2, 3 ] + Lawyer: [ 1, 2 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 2, 2 ] + CargoTechnician: [ 2, 2 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + Borg: [ 2, 2 ] From 32bf32d2dcc22fb6e1cfc5f60e5768a11035a50a Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Mon, 22 Apr 2024 18:12:21 +0300 Subject: [PATCH 174/179] Update PostMapInitTest.cs --- .../Tests/PostMapInitTest.cs | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 9098c7cd79..6c86a23f40 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -44,27 +44,27 @@ namespace Content.IntegrationTests.Tests private static readonly string[] GameMaps = { - "Dev", //CrystallPunk Map replacement - //"TestTeg", - //"Fland", - //"Meta", - //"Packed", - //"Cluster", - //"Omega", - //"Bagel", - //"Origin", + "Dev", + "TestTeg", + "Fland", + "Meta", + "Packed", + "Cluster", + "Omega", + "Bagel", + "Origin", "CentComm", "NukieOutpost", - //"Box", - //"Europa", - //"Saltern", - //"Core", - //"Marathon", + "Box", + "Europa", + "Saltern", + "Core", + "Marathon", "MeteorArena", - //"Atlas", - //"Reach", - //"Train", - //"Oasis" + "Atlas", + "Reach", + "Train", + "Oasis", //CrystallPunk maps "CaveArena", From 132cc73fb7911e98827b22421b20c27adb390b2b Mon Sep 17 00:00:00 2001 From: Ed <96445749+TheShuEd@users.noreply.github.com> Date: Mon, 22 Apr 2024 18:32:26 +0300 Subject: [PATCH 175/179] fix --- Resources/Prototypes/Maps/atlas.yml | 2 +- Resources/Prototypes/Maps/train.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Maps/atlas.yml b/Resources/Prototypes/Maps/atlas.yml index 5ff7f11eb0..76f3fcbe74 100644 --- a/Resources/Prototypes/Maps/atlas.yml +++ b/Resources/Prototypes/Maps/atlas.yml @@ -12,7 +12,7 @@ mapNameTemplate: '{0} Atlas {1}' nameGenerator: !type:NanotrasenNameGenerator - prefixCreator: 'R4' R4407/Goon. GS isn't as cool sounding. + prefixCreator: 'R4' # R4407/Goon. GS isn't as cool sounding. - type: StationJobs overflowJobs: - Passenger diff --git a/Resources/Prototypes/Maps/train.yml b/Resources/Prototypes/Maps/train.yml index 48c1f2925a..a52bbe1032 100644 --- a/Resources/Prototypes/Maps/train.yml +++ b/Resources/Prototypes/Maps/train.yml @@ -16,7 +16,7 @@ !type:NanotrasenNameGenerator prefixCreator: 'ED' - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml To do - add railway station + emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml #To do - add railway station - type: StationJobs overflowJobs: - Passenger From 6185ddc64c706a1ba16b9f89b320d33d09b6afb3 Mon Sep 17 00:00:00 2001 From: Ed Date: Mon, 22 Apr 2024 20:05:01 +0300 Subject: [PATCH 176/179] Revert "fix" This reverts commit 132cc73fb7911e98827b22421b20c27adb390b2b. --- Resources/Prototypes/Maps/atlas.yml | 2 +- Resources/Prototypes/Maps/train.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Resources/Prototypes/Maps/atlas.yml b/Resources/Prototypes/Maps/atlas.yml index 76f3fcbe74..5ff7f11eb0 100644 --- a/Resources/Prototypes/Maps/atlas.yml +++ b/Resources/Prototypes/Maps/atlas.yml @@ -12,7 +12,7 @@ mapNameTemplate: '{0} Atlas {1}' nameGenerator: !type:NanotrasenNameGenerator - prefixCreator: 'R4' # R4407/Goon. GS isn't as cool sounding. + prefixCreator: 'R4' R4407/Goon. GS isn't as cool sounding. - type: StationJobs overflowJobs: - Passenger diff --git a/Resources/Prototypes/Maps/train.yml b/Resources/Prototypes/Maps/train.yml index a52bbe1032..48c1f2925a 100644 --- a/Resources/Prototypes/Maps/train.yml +++ b/Resources/Prototypes/Maps/train.yml @@ -16,7 +16,7 @@ !type:NanotrasenNameGenerator prefixCreator: 'ED' - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml #To do - add railway station + emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml To do - add railway station - type: StationJobs overflowJobs: - Passenger From f94997fe5f58cf4d946c8732e3564a95057cc29b Mon Sep 17 00:00:00 2001 From: Ed Date: Mon, 22 Apr 2024 20:05:05 +0300 Subject: [PATCH 177/179] Revert "Update PostMapInitTest.cs" This reverts commit 32bf32d2dcc22fb6e1cfc5f60e5768a11035a50a. --- .../Tests/PostMapInitTest.cs | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 6c86a23f40..9098c7cd79 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -44,27 +44,27 @@ namespace Content.IntegrationTests.Tests private static readonly string[] GameMaps = { - "Dev", - "TestTeg", - "Fland", - "Meta", - "Packed", - "Cluster", - "Omega", - "Bagel", - "Origin", + "Dev", //CrystallPunk Map replacement + //"TestTeg", + //"Fland", + //"Meta", + //"Packed", + //"Cluster", + //"Omega", + //"Bagel", + //"Origin", "CentComm", "NukieOutpost", - "Box", - "Europa", - "Saltern", - "Core", - "Marathon", + //"Box", + //"Europa", + //"Saltern", + //"Core", + //"Marathon", "MeteorArena", - "Atlas", - "Reach", - "Train", - "Oasis", + //"Atlas", + //"Reach", + //"Train", + //"Oasis" //CrystallPunk maps "CaveArena", From 1210e1da8679221ddb43ea075e4b276eb57e8825 Mon Sep 17 00:00:00 2001 From: Ed Date: Mon, 22 Apr 2024 20:05:14 +0300 Subject: [PATCH 178/179] Revert "return maps prototypes" This reverts commit 894c10c409ffc459ca0f6855be210beede75685d. --- Resources/Prototypes/Maps/atlas.yml | 118 ++++++++++----------- Resources/Prototypes/Maps/bagel.yml | 128 +++++++++++------------ Resources/Prototypes/Maps/box.yml | 126 +++++++++++------------ Resources/Prototypes/Maps/cluster.yml | 124 +++++++++++----------- Resources/Prototypes/Maps/core.yml | 134 ++++++++++++------------ Resources/Prototypes/Maps/debug.yml | 32 +++--- Resources/Prototypes/Maps/europa.yml | 136 ++++++++++++------------- Resources/Prototypes/Maps/fland.yml | 128 +++++++++++------------ Resources/Prototypes/Maps/marathon.yml | 128 +++++++++++------------ Resources/Prototypes/Maps/meta.yml | 124 +++++++++++----------- Resources/Prototypes/Maps/oasis.yml | 128 +++++++++++------------ Resources/Prototypes/Maps/omega.yml | 124 +++++++++++----------- Resources/Prototypes/Maps/origin.yml | 130 +++++++++++------------ Resources/Prototypes/Maps/packed.yml | 122 +++++++++++----------- Resources/Prototypes/Maps/reach.yml | 70 ++++++------- Resources/Prototypes/Maps/saltern.yml | 122 +++++++++++----------- Resources/Prototypes/Maps/train.yml | 128 +++++++++++------------ 17 files changed, 1001 insertions(+), 1001 deletions(-) diff --git a/Resources/Prototypes/Maps/atlas.yml b/Resources/Prototypes/Maps/atlas.yml index 5ff7f11eb0..588ede8085 100644 --- a/Resources/Prototypes/Maps/atlas.yml +++ b/Resources/Prototypes/Maps/atlas.yml @@ -1,59 +1,59 @@ -- type: gameMap - id: Atlas - mapName: Atlas - mapPath: /Maps/atlas.yml - minPlayers: 5 - maxPlayers: 20 - stations: - Atlas: - stationProto: StandardNanotrasenStation - components: - - type: StationNameSetup - mapNameTemplate: '{0} Atlas {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'R4' R4407/Goon. GS isn't as cool sounding. - - type: StationJobs - overflowJobs: - - Passenger - availableJobs: - #service - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - Bartender: [ 1, 1 ] - Botanist: [ 2, 2 ] - Chef: [ 1, 1 ] - Janitor: [ 1, 1 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 1, 1 ] - #engineering - ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 2, 2 ] - StationEngineer: [ 2, 2 ] - TechnicalAssistant: [ 1, 3 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] - Chemist: [ 1, 1 ] - MedicalDoctor: [ 2, 2 ] - MedicalIntern: [ 1, 3 ] - #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 2, 2 ] - ResearchAssistant: [ 1, 3 ] - Borg: [ 2, 2 ] - #security - HeadOfSecurity: [ 1, 1 ] - Warden: [ 1, 1 ] - SecurityOfficer: [ 3, 3 ] - SecurityCadet: [ 1, 3 ] - Detective: [ 1, 1 ] - #supply - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 2, 2 ] - CargoTechnician: [ 2, 2 ] - #civillian - Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] +#- type: gameMap +# id: Atlas +# mapName: Atlas +# mapPath: /Maps/atlas.yml +# minPlayers: 5 +# maxPlayers: 20 +# stations: +# Atlas: +# stationProto: StandardNanotrasenStation +# components: +# - type: StationNameSetup +# mapNameTemplate: '{0} Atlas {1}' +# nameGenerator: +# !type:NanotrasenNameGenerator +# prefixCreator: 'R4' # R4407/Goon. GS isn't as cool sounding. +# - type: StationJobs +# overflowJobs: +# - Passenger +# availableJobs: +# #service +# Captain: [ 1, 1 ] +# HeadOfPersonnel: [ 1, 1 ] +# Bartender: [ 1, 1 ] +# Botanist: [ 2, 2 ] +# Chef: [ 1, 1 ] +# Janitor: [ 1, 1 ] +# Chaplain: [ 1, 1 ] +# Librarian: [ 1, 1 ] +# ServiceWorker: [ 1, 1 ] +# #engineering +# ChiefEngineer: [ 1, 1 ] +# AtmosphericTechnician: [ 2, 2 ] +# StationEngineer: [ 2, 2 ] +# TechnicalAssistant: [ 1, 3 ] +# #medical +# ChiefMedicalOfficer: [ 1, 1 ] +# Chemist: [ 1, 1 ] +# MedicalDoctor: [ 2, 2 ] +# MedicalIntern: [ 1, 3 ] +# #science +# ResearchDirector: [ 1, 1 ] +# Scientist: [ 2, 2 ] +# ResearchAssistant: [ 1, 3 ] +# Borg: [ 2, 2 ] +# #security +# HeadOfSecurity: [ 1, 1 ] +# Warden: [ 1, 1 ] +# SecurityOfficer: [ 3, 3 ] +# SecurityCadet: [ 1, 3 ] +# Detective: [ 1, 1 ] +# #supply +# Quartermaster: [ 1, 1 ] +# SalvageSpecialist: [ 2, 2 ] +# CargoTechnician: [ 2, 2 ] +# #civillian +# Passenger: [ -1, -1 ] +# Clown: [ 1, 1 ] +# Mime: [ 1, 1 ] +# Musician: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/bagel.yml b/Resources/Prototypes/Maps/bagel.yml index 24ca17339f..ac7b1f99c2 100644 --- a/Resources/Prototypes/Maps/bagel.yml +++ b/Resources/Prototypes/Maps/bagel.yml @@ -1,64 +1,64 @@ -- type: gameMap - id: Bagel - mapName: 'Bagel Station' - mapPath: /Maps/bagel.yml - minPlayers: 40 - maxPlayers: 76 - stations: - Bagel: - stationProto: StandardNanotrasenStation - components: - - type: StationNameSetup - mapNameTemplate: '{0} Bagel Station {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_lox.yml - - type: StationJobs - overflowJobs: - - Passenger - availableJobs: - #service - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - Bartender: [ 2, 2 ] - Botanist: [ 3, 3 ] - Chef: [ 2, 2 ] - Janitor: [ 3, 3 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 2, 2 ] - #engineering - ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 3, 3 ] - StationEngineer: [ 4, 4 ] - TechnicalAssistant: [ 4, 4 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] - Chemist: [ 2, 2 ] - MedicalDoctor: [ 3, 3 ] - Paramedic: [ 1, 1 ] - MedicalIntern: [ 4, 4 ] - #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 5, 5 ] - ResearchAssistant: [ 4, 4 ] - Borg: [ 2, 2 ] - #security - HeadOfSecurity: [ 1, 1 ] - Warden: [ 1, 1 ] - SecurityOfficer: [ 4, 4 ] - Detective: [ 1, 1 ] - SecurityCadet: [ 4, 4 ] - Lawyer: [ 2, 2 ] - #supply - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - CargoTechnician: [ 3, 3 ] - #civilian - Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] - Reporter: [ 2, 2 ] +#- type: gameMap +# id: Bagel +# mapName: 'Bagel Station' +# mapPath: /Maps/bagel.yml +# minPlayers: 40 +# maxPlayers: 76 +# stations: +# Bagel: +# stationProto: StandardNanotrasenStation +# components: +# - type: StationNameSetup +# mapNameTemplate: '{0} Bagel Station {1}' +# nameGenerator: +# !type:NanotrasenNameGenerator +# prefixCreator: '14' +# - type: StationEmergencyShuttle +# emergencyShuttlePath: /Maps/Shuttles/emergency_lox.yml +# - type: StationJobs +# overflowJobs: +# - Passenger +# availableJobs: +# #service +# Captain: [ 1, 1 ] +# HeadOfPersonnel: [ 1, 1 ] +# Bartender: [ 2, 2 ] +# Botanist: [ 3, 3 ] +# Chef: [ 2, 2 ] +# Janitor: [ 3, 3 ] +# Chaplain: [ 1, 1 ] +# Librarian: [ 1, 1 ] +# ServiceWorker: [ 2, 2 ] +# #engineering +# ChiefEngineer: [ 1, 1 ] +# AtmosphericTechnician: [ 3, 3 ] +# StationEngineer: [ 4, 4 ] +# TechnicalAssistant: [ 4, 4 ] +# #medical +# ChiefMedicalOfficer: [ 1, 1 ] +# Chemist: [ 2, 2 ] +# MedicalDoctor: [ 3, 3 ] +# Paramedic: [ 1, 1 ] +# MedicalIntern: [ 4, 4 ] +# #science +# ResearchDirector: [ 1, 1 ] +# Scientist: [ 5, 5 ] +# ResearchAssistant: [ 4, 4 ] +# Borg: [ 2, 2 ] +# #security +# HeadOfSecurity: [ 1, 1 ] +# Warden: [ 1, 1 ] +# SecurityOfficer: [ 4, 4 ] +# Detective: [ 1, 1 ] +# SecurityCadet: [ 4, 4 ] +# Lawyer: [ 2, 2 ] +# #supply +# Quartermaster: [ 1, 1 ] +# SalvageSpecialist: [ 3, 3 ] +# CargoTechnician: [ 3, 3 ] +# #civilian +# Passenger: [ -1, -1 ] +# Clown: [ 1, 1 ] +# Mime: [ 1, 1 ] +# Musician: [ 1, 1 ] +# Reporter: [ 2, 2 ] diff --git a/Resources/Prototypes/Maps/box.yml b/Resources/Prototypes/Maps/box.yml index 50826fc5e0..d1af03dea8 100644 --- a/Resources/Prototypes/Maps/box.yml +++ b/Resources/Prototypes/Maps/box.yml @@ -1,64 +1,64 @@ -- type: gameMap - id: Box - mapName: 'Box Station' - mapPath: /Maps/box.yml - minPlayers: 50 - stations: - Boxstation: - stationProto: StandardNanotrasenStation - components: - - type: StationNameSetup - mapNameTemplate: '{0} Box Station {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'TG' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_box.yml - - type: StationJobs - overflowJobs: - - Passenger - availableJobs: - #service - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - Bartender: [ 2, 2 ] - Botanist: [ 3, 3 ] - Chef: [ 2, 2 ] - Janitor: [ 2, 2 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 2, 2 ] - #engineering - ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 3, 3 ] - StationEngineer: [ 5, 5 ] - TechnicalAssistant: [ 4, 4 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] - Chemist: [ 2, 3 ] - MedicalDoctor: [ 4, 4 ] - Paramedic: [ 1, 1 ] - MedicalIntern: [ 4, 4 ] - Psychologist: [ 1, 1 ] - #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 5, 5 ] - ResearchAssistant: [ 4, 4 ] - Borg: [ 2, 2 ] - #security - HeadOfSecurity: [ 1, 1 ] - Warden: [ 1, 1 ] - SecurityOfficer: [ 5, 5 ] - Detective: [ 1, 1 ] - SecurityCadet: [ 4, 4 ] - Lawyer: [ 2, 2 ] - #supply - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - CargoTechnician: [ 3, 3 ] - #civilian - Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] +#- type: gameMap +# id: Box +# mapName: 'Box Station' +# mapPath: /Maps/box.yml +# minPlayers: 50 +# stations: +# Boxstation: +# stationProto: StandardNanotrasenStation +# components: +# - type: StationNameSetup +# mapNameTemplate: '{0} Box Station {1}' +# nameGenerator: +# !type:NanotrasenNameGenerator +# prefixCreator: 'TG' +# - type: StationEmergencyShuttle +# emergencyShuttlePath: /Maps/Shuttles/emergency_box.yml +# - type: StationJobs +# overflowJobs: +# - Passenger +# availableJobs: +# #service +# Captain: [ 1, 1 ] +# HeadOfPersonnel: [ 1, 1 ] +# Bartender: [ 2, 2 ] +# Botanist: [ 3, 3 ] +# Chef: [ 2, 2 ] +# Janitor: [ 2, 2 ] +# Chaplain: [ 1, 1 ] +# Librarian: [ 1, 1 ] +# ServiceWorker: [ 2, 2 ] +# #engineering +# ChiefEngineer: [ 1, 1 ] +# AtmosphericTechnician: [ 3, 3 ] +# StationEngineer: [ 5, 5 ] +# TechnicalAssistant: [ 4, 4 ] +# #medical +# ChiefMedicalOfficer: [ 1, 1 ] +# Chemist: [ 2, 3 ] +# MedicalDoctor: [ 4, 4 ] +# Paramedic: [ 1, 1 ] +# MedicalIntern: [ 4, 4 ] +# Psychologist: [ 1, 1 ] +# #science +# ResearchDirector: [ 1, 1 ] +# Scientist: [ 5, 5 ] +# ResearchAssistant: [ 4, 4 ] +# Borg: [ 2, 2 ] +# #security +# HeadOfSecurity: [ 1, 1 ] +# Warden: [ 1, 1 ] +# SecurityOfficer: [ 5, 5 ] +# Detective: [ 1, 1 ] +# SecurityCadet: [ 4, 4 ] +# Lawyer: [ 2, 2 ] +# #supply +# Quartermaster: [ 1, 1 ] +# SalvageSpecialist: [ 3, 3 ] +# CargoTechnician: [ 3, 3 ] +# #civilian +# Passenger: [ -1, -1 ] +# Clown: [ 1, 1 ] +# Mime: [ 1, 1 ] +# Musician: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/cluster.yml b/Resources/Prototypes/Maps/cluster.yml index fe445b0081..593dd870df 100644 --- a/Resources/Prototypes/Maps/cluster.yml +++ b/Resources/Prototypes/Maps/cluster.yml @@ -1,63 +1,63 @@ -- type: gameMap - id: Cluster - mapName: 'Cluster' - mapPath: /Maps/cluster.yml - minPlayers: 10 - maxPlayers: 35 - stations: - Cluster: - stationProto: StandardNanotrasenStation - components: - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_transit.yml - - type: StationNameSetup - mapNameTemplate: '{0} Cluster Station {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationJobs - overflowJobs: - - Passenger - availableJobs: - #service - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - Bartender: [ 1, 1 ] - Botanist: [ 2, 2 ] - Chef: [ 1, 1 ] - Janitor: [ 1, 1 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - Lawyer: [ 1, 1 ] - ServiceWorker: [ 1, 1 ] - #engineering - ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 2, 2 ] - StationEngineer: [ 3, 3 ] - TechnicalAssistant: [ 2, 2 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] - Chemist: [ 1, 1 ] - MedicalDoctor: [ 2, 2 ] - MedicalIntern: [ 2, 2 ] - #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 3, 3 ] - ResearchAssistant: [ 2, 2 ] - Borg: [ 1, 1 ] - #security - HeadOfSecurity: [ 1, 1 ] - Warden: [ 1, 1 ] - Detective: [ 1, 1 ] - SecurityOfficer: [ 3, 3 ] - SecurityCadet: [ 2, 2 ] - #supply - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 2, 2 ] - CargoTechnician: [ 1, 1 ] - #civillian - Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] +#- type: gameMap +# id: Cluster +# mapName: 'Cluster' +# mapPath: /Maps/cluster.yml +# minPlayers: 10 +# maxPlayers: 35 +# stations: +# Cluster: +# stationProto: StandardNanotrasenStation +# components: +# - type: StationEmergencyShuttle +# emergencyShuttlePath: /Maps/Shuttles/emergency_transit.yml +# - type: StationNameSetup +# mapNameTemplate: '{0} Cluster Station {1}' +# nameGenerator: +# !type:NanotrasenNameGenerator +# prefixCreator: '14' +# - type: StationJobs +# overflowJobs: +# - Passenger +# availableJobs: +# #service +# Captain: [ 1, 1 ] +# HeadOfPersonnel: [ 1, 1 ] +# Bartender: [ 1, 1 ] +# Botanist: [ 2, 2 ] +# Chef: [ 1, 1 ] +# Janitor: [ 1, 1 ] +# Chaplain: [ 1, 1 ] +# Librarian: [ 1, 1 ] +# Lawyer: [ 1, 1 ] +# ServiceWorker: [ 1, 1 ] +# #engineering +# ChiefEngineer: [ 1, 1 ] +# AtmosphericTechnician: [ 2, 2 ] +# StationEngineer: [ 3, 3 ] +# TechnicalAssistant: [ 2, 2 ] +# #medical +# ChiefMedicalOfficer: [ 1, 1 ] +# Chemist: [ 1, 1 ] +# MedicalDoctor: [ 2, 2 ] +# MedicalIntern: [ 2, 2 ] +# #science +# ResearchDirector: [ 1, 1 ] +# Scientist: [ 3, 3 ] +# ResearchAssistant: [ 2, 2 ] +# Borg: [ 1, 1 ] +# #security +# HeadOfSecurity: [ 1, 1 ] +# Warden: [ 1, 1 ] +# Detective: [ 1, 1 ] +# SecurityOfficer: [ 3, 3 ] +# SecurityCadet: [ 2, 2 ] +# #supply +# Quartermaster: [ 1, 1 ] +# SalvageSpecialist: [ 2, 2 ] +# CargoTechnician: [ 1, 1 ] +# #civillian +# Passenger: [ -1, -1 ] +# Clown: [ 1, 1 ] +# Mime: [ 1, 1 ] +# Musician: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/core.yml b/Resources/Prototypes/Maps/core.yml index 6b85aca51d..7e4992deca 100644 --- a/Resources/Prototypes/Maps/core.yml +++ b/Resources/Prototypes/Maps/core.yml @@ -1,67 +1,67 @@ -- type: gameMap - id: Core - mapName: 'Core' - mapPath: /Maps/core.yml - minPlayers: 30 - maxPlayers: 60 - stations: - Core: - stationProto: StandardNanotrasenStation - components: - - type: StationNameSetup - mapNameTemplate: '{0} Core {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_rod.yml - - type: StationCargoShuttle - path: /Maps/Shuttles/cargo_core.yml - - type: StationJobs - overflowJobs: - - Passenger - availableJobs: - #service - Bartender: [ 2, 2 ] - Botanist: [ 2, 2] - Chef: [ 1, 1 ] - Janitor: [ 2, 2 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 3, 3 ] - #engineering - ChiefEngineer: [ 1, 1 ] - StationEngineer: [ 4, 4 ] - AtmosphericTechnician: [ 2, 2 ] - TechnicalAssistant: [ 2, 2 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 3, 4 ] - Chemist: [ 1, 2 ] - MedicalIntern: [ 2, 2 ] - Paramedic: [ 1, 2 ] - #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 3, 3 ] - ResearchAssistant: [ 1, 1 ] - Borg: [ 1, 2 ] - #security - HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 4, 4 ] - Warden: [ 1, 1 ] - Lawyer: [ 1, 1 ] - SecurityCadet: [ 1, 1 ] - Detective: [ 1, 1 ] - #supply - CargoTechnician: [ 3, 3 ] - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 2, 2 ] - #civilian - Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] - Boxer: [ 2, 2 ] - Reporter: [ 2, 2 ] +#- type: gameMap +# id: Core +# mapName: 'Core' +# mapPath: /Maps/core.yml +# minPlayers: 30 +# maxPlayers: 60 +# stations: +# Core: +# stationProto: StandardNanotrasenStation +# components: +# - type: StationNameSetup +# mapNameTemplate: '{0} Core {1}' +# nameGenerator: +# !type:NanotrasenNameGenerator +# prefixCreator: '14' +# - type: StationEmergencyShuttle +# emergencyShuttlePath: /Maps/Shuttles/emergency_rod.yml +# - type: StationCargoShuttle +# path: /Maps/Shuttles/cargo_core.yml +# - type: StationJobs +# overflowJobs: +# - Passenger +# availableJobs: +# #service +# Bartender: [ 2, 2 ] +# Botanist: [ 2, 2] +# Chef: [ 1, 1 ] +# Janitor: [ 2, 2 ] +# Captain: [ 1, 1 ] +# HeadOfPersonnel: [ 1, 1 ] +# Chaplain: [ 1, 1 ] +# Librarian: [ 1, 1 ] +# ServiceWorker: [ 3, 3 ] +# #engineering +# ChiefEngineer: [ 1, 1 ] +# StationEngineer: [ 4, 4 ] +# AtmosphericTechnician: [ 2, 2 ] +# TechnicalAssistant: [ 2, 2 ] +# #medical +# ChiefMedicalOfficer: [ 1, 1 ] +# MedicalDoctor: [ 3, 4 ] +# Chemist: [ 1, 2 ] +# MedicalIntern: [ 2, 2 ] +# Paramedic: [ 1, 2 ] +# #science +# ResearchDirector: [ 1, 1 ] +# Scientist: [ 3, 3 ] +# ResearchAssistant: [ 1, 1 ] +# Borg: [ 1, 2 ] +# #security +# HeadOfSecurity: [ 1, 1 ] +# SecurityOfficer: [ 4, 4 ] +# Warden: [ 1, 1 ] +# Lawyer: [ 1, 1 ] +# SecurityCadet: [ 1, 1 ] +# Detective: [ 1, 1 ] +# #supply +# CargoTechnician: [ 3, 3 ] +# Quartermaster: [ 1, 1 ] +# SalvageSpecialist: [ 2, 2 ] +# #civilian +# Passenger: [ -1, -1 ] +# Clown: [ 1, 1 ] +# Mime: [ 1, 1 ] +# Musician: [ 1, 1 ] +# Boxer: [ 2, 2 ] +# Reporter: [ 2, 2 ] diff --git a/Resources/Prototypes/Maps/debug.yml b/Resources/Prototypes/Maps/debug.yml index e006881a95..94907d6e36 100644 --- a/Resources/Prototypes/Maps/debug.yml +++ b/Resources/Prototypes/Maps/debug.yml @@ -36,19 +36,19 @@ availableJobs: Adventurer: [ -1, -1 ] #CrystallPunk Dev replacement -- type: gameMap - id: TestTeg - mapName: Test TEG - mapPath: /Maps/Test/test_teg.yml - minPlayers: 0 - stations: - TEG: - stationProto: TestStation - components: - - type: StationNameSetup - mapNameTemplate: "TEG" - - type: StationJobs - overflowJobs: - - ChiefEngineer - availableJobs: - ChiefEngineer: [ -1, -1 ] +#- type: gameMap +# id: TestTeg +# mapName: Test TEG +# mapPath: /Maps/Test/test_teg.yml +# minPlayers: 0 +# stations: +# TEG: +# stationProto: TestStation +# components: +# - type: StationNameSetup +# mapNameTemplate: "TEG" +# - type: StationJobs +# overflowJobs: +# - ChiefEngineer +# availableJobs: +# ChiefEngineer: [ -1, -1 ] diff --git a/Resources/Prototypes/Maps/europa.yml b/Resources/Prototypes/Maps/europa.yml index 3be93dbf0d..271fa7d0d3 100644 --- a/Resources/Prototypes/Maps/europa.yml +++ b/Resources/Prototypes/Maps/europa.yml @@ -1,69 +1,69 @@ -- type: gameMap - id: Europa - mapName: 'Europa' - mapPath: /Maps/europa.yml - minPlayers: 0 - maxPlayers: 40 - stations: - Europa: - stationProto: StandardNanotrasenStation - components: - - type: StationBiome - biome: Snow - - type: StationRandomTransform - enableStationRotation: false - maxStationOffset: null - - type: StationNameSetup - mapNameTemplate: '{0} Europa {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_transit.yml - - type: StationJobs - overflowJobs: - - Passenger - availableJobs: - #service - Bartender: [ 1, 1 ] - Botanist: [ 2, 2] - Chef: [ 1, 1 ] - Janitor: [ 2, 2 ] - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 3, 4 ] - #engineering - ChiefEngineer: [ 1, 1 ] - StationEngineer: [ 3, 3 ] - AtmosphericTechnician: [ 2, 2 ] - TechnicalAssistant: [ 1, 1 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] - MedicalDoctor: [ 2, 3 ] - Chemist: [ 1, 2 ] - MedicalIntern: [ 1, 1 ] - Paramedic: [ 1, 2 ] - #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 2, 3 ] - ResearchAssistant: [ 1, 1 ] - #security - HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 3, 3 ] - Warden: [ 1, 1 ] - Lawyer: [ 1, 1 ] - SecurityCadet: [ 3, 3 ] - Detective: [ 1, 1 ] - #supply - CargoTechnician: [ 3, 3 ] - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - #civilian - Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] - Reporter: [ 1, 1 ] +#- type: gameMap +# id: Europa +# mapName: 'Europa' +# mapPath: /Maps/europa.yml +# minPlayers: 0 +# maxPlayers: 40 +# stations: +# Europa: +# stationProto: StandardNanotrasenStation +# components: +# - type: StationBiome +# biome: Snow +# - type: StationRandomTransform +# enableStationRotation: false +# maxStationOffset: null +# - type: StationNameSetup +# mapNameTemplate: '{0} Europa {1}' +# nameGenerator: +# !type:NanotrasenNameGenerator +# prefixCreator: '14' +# - type: StationEmergencyShuttle +# emergencyShuttlePath: /Maps/Shuttles/emergency_transit.yml +# - type: StationJobs +# overflowJobs: +# - Passenger +# availableJobs: +# #service +# Bartender: [ 1, 1 ] +# Botanist: [ 2, 2] +# Chef: [ 1, 1 ] +# Janitor: [ 2, 2 ] +# Captain: [ 1, 1 ] +# HeadOfPersonnel: [ 1, 1 ] +# Chaplain: [ 1, 1 ] +# Librarian: [ 1, 1 ] +# ServiceWorker: [ 3, 4 ] +# #engineering +# ChiefEngineer: [ 1, 1 ] +# StationEngineer: [ 3, 3 ] +# AtmosphericTechnician: [ 2, 2 ] +# TechnicalAssistant: [ 1, 1 ] +# #medical +# ChiefMedicalOfficer: [ 1, 1 ] +# MedicalDoctor: [ 2, 3 ] +# Chemist: [ 1, 2 ] +# MedicalIntern: [ 1, 1 ] +# Paramedic: [ 1, 2 ] +# #science +# ResearchDirector: [ 1, 1 ] +# Scientist: [ 2, 3 ] +# ResearchAssistant: [ 1, 1 ] +# #security +# HeadOfSecurity: [ 1, 1 ] +# SecurityOfficer: [ 3, 3 ] +# Warden: [ 1, 1 ] +# Lawyer: [ 1, 1 ] +# SecurityCadet: [ 3, 3 ] +# Detective: [ 1, 1 ] +# #supply +# CargoTechnician: [ 3, 3 ] +# Quartermaster: [ 1, 1 ] +# SalvageSpecialist: [ 3, 3 ] +# #civilian +# Passenger: [ -1, -1 ] +# Clown: [ 1, 1 ] +# Mime: [ 1, 1 ] +# Musician: [ 1, 1 ] +# Reporter: [ 1, 1 ] # diff --git a/Resources/Prototypes/Maps/fland.yml b/Resources/Prototypes/Maps/fland.yml index f0c35f99e5..371673f9a0 100644 --- a/Resources/Prototypes/Maps/fland.yml +++ b/Resources/Prototypes/Maps/fland.yml @@ -1,64 +1,64 @@ -- type: gameMap - id: Fland - mapName: 'Fland Installation' - mapPath: /Maps/fland.yml - minPlayers: 70 - stations: - Fland: - stationProto: StandardNanotrasenStation - components: - - type: StationNameSetup - mapNameTemplate: '{0} Fland Installation {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'B' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_delta.yml - - type: StationCargoShuttle - path: /Maps/Shuttles/cargo_fland.yml - - type: StationJobs - overflowJobs: - - Passenger - availableJobs: - #service - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - Bartender: [ 2, 2 ] - Botanist: [ 4, 4 ] - Chef: [ 2, 2 ] - Janitor: [ 3, 3 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 2, 2 ] - #engineering - ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 3, 3 ] - StationEngineer: [ 5, 5 ] - TechnicalAssistant: [ 4, 4 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] - Chemist: [ 3, 3 ] - MedicalDoctor: [ 6, 6 ] - Paramedic: [ 2, 2 ] - MedicalIntern: [ 4, 4 ] - #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 5, 5 ] - ResearchAssistant: [ 6, 6 ] - Borg: [ 2, 2 ] - #security - HeadOfSecurity: [ 1, 1 ] - Warden: [ 1, 1 ] - SecurityOfficer: [ 8, 8 ] - Detective: [ 1, 1 ] - SecurityCadet: [ 4, 4 ] - Lawyer: [ 2, 2 ] - #supply - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - CargoTechnician: [ 4, 4 ] - #civilian - Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] +#- type: gameMap +# id: Fland +# mapName: 'Fland Installation' +# mapPath: /Maps/fland.yml +# minPlayers: 70 +# stations: +# Fland: +# stationProto: StandardNanotrasenStation +# components: +# - type: StationNameSetup +# mapNameTemplate: '{0} Fland Installation {1}' +# nameGenerator: +# !type:NanotrasenNameGenerator +# prefixCreator: 'B' +# - type: StationEmergencyShuttle +# emergencyShuttlePath: /Maps/Shuttles/emergency_delta.yml +# - type: StationCargoShuttle +# path: /Maps/Shuttles/cargo_fland.yml +# - type: StationJobs +# overflowJobs: +# - Passenger +# availableJobs: +# #service +# Captain: [ 1, 1 ] +# HeadOfPersonnel: [ 1, 1 ] +# Bartender: [ 2, 2 ] +# Botanist: [ 4, 4 ] +# Chef: [ 2, 2 ] +# Janitor: [ 3, 3 ] +# Chaplain: [ 1, 1 ] +# Librarian: [ 1, 1 ] +# ServiceWorker: [ 2, 2 ] +# #engineering +# ChiefEngineer: [ 1, 1 ] +# AtmosphericTechnician: [ 3, 3 ] +# StationEngineer: [ 5, 5 ] +# TechnicalAssistant: [ 4, 4 ] +# #medical +# ChiefMedicalOfficer: [ 1, 1 ] +# Chemist: [ 3, 3 ] +# MedicalDoctor: [ 6, 6 ] +# Paramedic: [ 2, 2 ] +# MedicalIntern: [ 4, 4 ] +# #science +# ResearchDirector: [ 1, 1 ] +# Scientist: [ 5, 5 ] +# ResearchAssistant: [ 6, 6 ] +# Borg: [ 2, 2 ] +# #security +# HeadOfSecurity: [ 1, 1 ] +# Warden: [ 1, 1 ] +# SecurityOfficer: [ 8, 8 ] +# Detective: [ 1, 1 ] +# SecurityCadet: [ 4, 4 ] +# Lawyer: [ 2, 2 ] +# #supply +# Quartermaster: [ 1, 1 ] +# SalvageSpecialist: [ 3, 3 ] +# CargoTechnician: [ 4, 4 ] +# #civilian +# Passenger: [ -1, -1 ] +# Clown: [ 1, 1 ] +# Mime: [ 1, 1 ] +# Musician: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/marathon.yml b/Resources/Prototypes/Maps/marathon.yml index f82ee1d434..e33e624f56 100644 --- a/Resources/Prototypes/Maps/marathon.yml +++ b/Resources/Prototypes/Maps/marathon.yml @@ -1,64 +1,64 @@ -- type: gameMap - id: Marathon - mapName: 'Marathon Station' - mapPath: /Maps/marathon.yml - minPlayers: 35 - maxPlayers: 70 - stations: - Marathon: - stationProto: StandardNanotrasenStation - components: - - type: StationNameSetup - mapNameTemplate: '{0} Marathon Station {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_rod.yml - - type: StationJobs - overflowJobs: - - Passenger - availableJobs: - #service - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - Bartender: [ 2, 2 ] - Botanist: [ 2, 3 ] - Chef: [ 2, 2 ] - Janitor: [ 1, 2 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 2, 2 ] - #engineering - ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 3, 3 ] - StationEngineer: [ 4, 4 ] - TechnicalAssistant: [ 3, 3 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] - Chemist: [ 2, 2 ] - MedicalDoctor: [ 4, 4 ] - MedicalIntern: [ 3, 3 ] - Psychologist: [ 1, 1 ] - Paramedic: [ 1, 1 ] - #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 4, 4 ] - ResearchAssistant: [ 3, 3 ] - Borg: [ 2, 2 ] - #security - HeadOfSecurity: [ 1, 1 ] - Warden: [ 1, 1 ] - SecurityOfficer: [ 4, 4 ] - Detective: [ 1, 1 ] - SecurityCadet: [ 4, 4 ] - Lawyer: [ 2, 2 ] - #supply - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - CargoTechnician: [ 3, 3 ] - #civilian - Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] +#- type: gameMap +# id: Marathon +# mapName: 'Marathon Station' +# mapPath: /Maps/marathon.yml +# minPlayers: 35 +# maxPlayers: 70 +# stations: +# Marathon: +# stationProto: StandardNanotrasenStation +# components: +# - type: StationNameSetup +# mapNameTemplate: '{0} Marathon Station {1}' +# nameGenerator: +# !type:NanotrasenNameGenerator +# prefixCreator: '14' +# - type: StationEmergencyShuttle +# emergencyShuttlePath: /Maps/Shuttles/emergency_rod.yml +# - type: StationJobs +# overflowJobs: +# - Passenger +# availableJobs: +# #service +# Captain: [ 1, 1 ] +# HeadOfPersonnel: [ 1, 1 ] +# Bartender: [ 2, 2 ] +# Botanist: [ 2, 3 ] +# Chef: [ 2, 2 ] +# Janitor: [ 1, 2 ] +# Chaplain: [ 1, 1 ] +# Librarian: [ 1, 1 ] +# ServiceWorker: [ 2, 2 ] +# #engineering +# ChiefEngineer: [ 1, 1 ] +# AtmosphericTechnician: [ 3, 3 ] +# StationEngineer: [ 4, 4 ] +# TechnicalAssistant: [ 3, 3 ] +# #medical +# ChiefMedicalOfficer: [ 1, 1 ] +# Chemist: [ 2, 2 ] +# MedicalDoctor: [ 4, 4 ] +# MedicalIntern: [ 3, 3 ] +# Psychologist: [ 1, 1 ] +# Paramedic: [ 1, 1 ] +# #science +# ResearchDirector: [ 1, 1 ] +# Scientist: [ 4, 4 ] +# ResearchAssistant: [ 3, 3 ] +# Borg: [ 2, 2 ] +# #security +# HeadOfSecurity: [ 1, 1 ] +# Warden: [ 1, 1 ] +# SecurityOfficer: [ 4, 4 ] +# Detective: [ 1, 1 ] +# SecurityCadet: [ 4, 4 ] +# Lawyer: [ 2, 2 ] +# #supply +# Quartermaster: [ 1, 1 ] +# SalvageSpecialist: [ 3, 3 ] +# CargoTechnician: [ 3, 3 ] +# #civilian +# Passenger: [ -1, -1 ] +# Clown: [ 1, 1 ] +# Mime: [ 1, 1 ] +# Musician: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/meta.yml b/Resources/Prototypes/Maps/meta.yml index 2bee606e95..fa6f976f9e 100644 --- a/Resources/Prototypes/Maps/meta.yml +++ b/Resources/Prototypes/Maps/meta.yml @@ -1,62 +1,62 @@ -- type: gameMap - id: Meta - mapName: 'Meta Station' - mapPath: /Maps/meta.yml - minPlayers: 50 - stations: - Meta: - stationProto: StandardNanotrasenStation - components: - - type: StationNameSetup - mapNameTemplate: '{0} Meta Station {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'TG' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_meta.yml - - type: StationJobs - overflowJobs: - - Passenger - availableJobs: - #service - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - Bartender: [ 2, 2 ] - Botanist: [ 2, 3 ] - Chef: [ 2, 2 ] - Janitor: [ 1, 2 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 2, 2 ] - #engineering - ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 3, 3 ] - StationEngineer: [ 5, 7 ] - TechnicalAssistant: [ 3, 6 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] - Chemist: [ 3, 3 ] - MedicalDoctor: [ 5, 5 ] - MedicalIntern: [ 3, 6 ] - Paramedic: [ 1, 1 ] - #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 5, 7 ] - ResearchAssistant: [ 3, 6 ] - Borg: [ 2, 2 ] - #security - HeadOfSecurity: [ 1, 1 ] - Warden: [ 1, 1 ] - SecurityOfficer: [ 5, 7 ] - Detective: [ 1, 1 ] - SecurityCadet: [ 3, 6 ] - Lawyer: [ 2, 2 ] - #supply - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - CargoTechnician: [ 3, 3 ] - #civilian - Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] +#- type: gameMap +# id: Meta +# mapName: 'Meta Station' +# mapPath: /Maps/meta.yml +# minPlayers: 50 +# stations: +# Meta: +# stationProto: StandardNanotrasenStation +# components: +# - type: StationNameSetup +# mapNameTemplate: '{0} Meta Station {1}' +# nameGenerator: +# !type:NanotrasenNameGenerator +# prefixCreator: 'TG' +# - type: StationEmergencyShuttle +# emergencyShuttlePath: /Maps/Shuttles/emergency_meta.yml +# - type: StationJobs +# overflowJobs: +# - Passenger +# availableJobs: +# #service +# Captain: [ 1, 1 ] +# HeadOfPersonnel: [ 1, 1 ] +# Bartender: [ 2, 2 ] +# Botanist: [ 2, 3 ] +# Chef: [ 2, 2 ] +# Janitor: [ 1, 2 ] +# Chaplain: [ 1, 1 ] +# Librarian: [ 1, 1 ] +# ServiceWorker: [ 2, 2 ] +# #engineering +# ChiefEngineer: [ 1, 1 ] +# AtmosphericTechnician: [ 3, 3 ] +# StationEngineer: [ 5, 7 ] +# TechnicalAssistant: [ 3, 6 ] +# #medical +# ChiefMedicalOfficer: [ 1, 1 ] +# Chemist: [ 3, 3 ] +# MedicalDoctor: [ 5, 5 ] +# MedicalIntern: [ 3, 6 ] +# Paramedic: [ 1, 1 ] +# #science +# ResearchDirector: [ 1, 1 ] +# Scientist: [ 5, 7 ] +# ResearchAssistant: [ 3, 6 ] +# Borg: [ 2, 2 ] +# #security +# HeadOfSecurity: [ 1, 1 ] +# Warden: [ 1, 1 ] +# SecurityOfficer: [ 5, 7 ] +# Detective: [ 1, 1 ] +# SecurityCadet: [ 3, 6 ] +# Lawyer: [ 2, 2 ] +# #supply +# Quartermaster: [ 1, 1 ] +# SalvageSpecialist: [ 3, 3 ] +# CargoTechnician: [ 3, 3 ] +# #civilian +# Passenger: [ -1, -1 ] +# Clown: [ 1, 1 ] +# Mime: [ 1, 1 ] +# Musician: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/oasis.yml b/Resources/Prototypes/Maps/oasis.yml index c79225823b..1320115937 100644 --- a/Resources/Prototypes/Maps/oasis.yml +++ b/Resources/Prototypes/Maps/oasis.yml @@ -1,64 +1,64 @@ -- type: gameMap - id: Oasis - mapName: 'Oasis' - mapPath: /Maps/oasis.yml - minPlayers: 70 - stations: - Oasis: - stationProto: StandardNanotrasenStation - components: - - type: StationNameSetup - mapNameTemplate: '{0} Oasis {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'B' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_delta.yml - - type: StationJobs - overflowJobs: - - Passenger - availableJobs: - #service - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - Bartender: [ 2, 2 ] - Botanist: [ 4, 4 ] - Chef: [ 2, 2 ] - Janitor: [ 3, 3 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 2, 2 ] - Zookeeper: [ 1, 1 ] - #engineering - ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 3, 3 ] - StationEngineer: [ 5, 5 ] - TechnicalAssistant: [ 4, 4 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] - Chemist: [ 3, 3 ] - MedicalDoctor: [ 6, 6 ] - Paramedic: [ 2, 2 ] - MedicalIntern: [ 4, 4 ] - Psychologist: [ 1, 1 ] - #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 5, 5 ] - ResearchAssistant: [ 6, 6 ] - Borg: [ 2, 2 ] - #security - HeadOfSecurity: [ 1, 1 ] - Warden: [ 1, 1 ] - SecurityOfficer: [ 8, 8 ] - Detective: [ 1, 1 ] - SecurityCadet: [ 4, 4 ] - Lawyer: [ 3, 3 ] - #supply - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - CargoTechnician: [ 4, 4 ] - #civilian - Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] \ No newline at end of file +#- type: gameMap +# id: Oasis +# mapName: 'Oasis' +# mapPath: /Maps/oasis.yml +# minPlayers: 70 +# stations: +# Oasis: +# stationProto: StandardNanotrasenStation +# components: +# - type: StationNameSetup +# mapNameTemplate: '{0} Oasis {1}' +# nameGenerator: +# !type:NanotrasenNameGenerator +# prefixCreator: 'B' +# - type: StationEmergencyShuttle +# emergencyShuttlePath: /Maps/Shuttles/emergency_delta.yml +# - type: StationJobs +# overflowJobs: +# - Passenger +# availableJobs: +# #service +# Captain: [ 1, 1 ] +# HeadOfPersonnel: [ 1, 1 ] +# Bartender: [ 2, 2 ] +# Botanist: [ 4, 4 ] +# Chef: [ 2, 2 ] +# Janitor: [ 3, 3 ] +# Chaplain: [ 1, 1 ] +# Librarian: [ 1, 1 ] +# ServiceWorker: [ 2, 2 ] +# Zookeeper: [ 1, 1 ] +# #engineering +# ChiefEngineer: [ 1, 1 ] +# AtmosphericTechnician: [ 3, 3 ] +# StationEngineer: [ 5, 5 ] +# TechnicalAssistant: [ 4, 4 ] +# #medical +# ChiefMedicalOfficer: [ 1, 1 ] +# Chemist: [ 3, 3 ] +# MedicalDoctor: [ 6, 6 ] +# Paramedic: [ 2, 2 ] +# MedicalIntern: [ 4, 4 ] +# Psychologist: [ 1, 1 ] +# #science +# ResearchDirector: [ 1, 1 ] +# Scientist: [ 5, 5 ] +# ResearchAssistant: [ 6, 6 ] +# Borg: [ 2, 2 ] +# #security +# HeadOfSecurity: [ 1, 1 ] +# Warden: [ 1, 1 ] +# SecurityOfficer: [ 8, 8 ] +# Detective: [ 1, 1 ] +# SecurityCadet: [ 4, 4 ] +# Lawyer: [ 3, 3 ] +# #supply +# Quartermaster: [ 1, 1 ] +# SalvageSpecialist: [ 3, 3 ] +# CargoTechnician: [ 4, 4 ] +# #civilian +# Passenger: [ -1, -1 ] +# Clown: [ 1, 1 ] +# Mime: [ 1, 1 ] +# Musician: [ 1, 1 ] \ No newline at end of file diff --git a/Resources/Prototypes/Maps/omega.yml b/Resources/Prototypes/Maps/omega.yml index f90c5f5b65..be8d77dff4 100644 --- a/Resources/Prototypes/Maps/omega.yml +++ b/Resources/Prototypes/Maps/omega.yml @@ -1,62 +1,62 @@ -- type: gameMap - id: Omega - mapName: 'Omega' - mapPath: /Maps/omega.yml - minPlayers: 10 - maxPlayers: 35 - stations: - Omega: - stationProto: StandardNanotrasenStation - components: - - type: StationNameSetup - mapNameTemplate: '{0} Omega Station {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'TG' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml - - type: StationJobs - overflowJobs: - - Passenger - availableJobs: - #service - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - Bartender: [ 1, 1 ] - Botanist: [ 2, 2 ] - Chef: [ 1, 1 ] - Janitor: [ 1, 2 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 2, 2 ] - #engineering - ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 2, 2 ] - StationEngineer: [ 3, 3 ] - TechnicalAssistant: [ 2, 2 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] - Chemist: [ 2, 2 ] - MedicalDoctor: [ 3, 3 ] - MedicalIntern: [ 2, 2 ] - #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 4, 4 ] - ResearchAssistant: [ 2, 2 ] - #security - HeadOfSecurity: [ 1, 1 ] - Warden: [ 1, 1 ] - SecurityOfficer: [ 4, 4 ] - Detective: [ 1, 1 ] - SecurityCadet: [ 2, 2 ] - Lawyer: [ 1, 1 ] - #supply - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 2, 2 ] - CargoTechnician: [ 2, 2 ] - #civilian - Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] - Borg: [ 2, 2 ] +#- type: gameMap +# id: Omega +# mapName: 'Omega' +# mapPath: /Maps/omega.yml +# minPlayers: 10 +# maxPlayers: 35 +# stations: +# Omega: +# stationProto: StandardNanotrasenStation +# components: +# - type: StationNameSetup +# mapNameTemplate: '{0} Omega Station {1}' +# nameGenerator: +# !type:NanotrasenNameGenerator +# prefixCreator: 'TG' +# - type: StationEmergencyShuttle +# emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml +# - type: StationJobs +# overflowJobs: +# - Passenger +# availableJobs: +# #service +# Captain: [ 1, 1 ] +# HeadOfPersonnel: [ 1, 1 ] +# Bartender: [ 1, 1 ] +# Botanist: [ 2, 2 ] +# Chef: [ 1, 1 ] +# Janitor: [ 1, 2 ] +# Chaplain: [ 1, 1 ] +# Librarian: [ 1, 1 ] +# ServiceWorker: [ 2, 2 ] +# #engineering +# ChiefEngineer: [ 1, 1 ] +# AtmosphericTechnician: [ 2, 2 ] +# StationEngineer: [ 3, 3 ] +# TechnicalAssistant: [ 2, 2 ] +# #medical +# ChiefMedicalOfficer: [ 1, 1 ] +# Chemist: [ 2, 2 ] +# MedicalDoctor: [ 3, 3 ] +# MedicalIntern: [ 2, 2 ] +# #science +# ResearchDirector: [ 1, 1 ] +# Scientist: [ 4, 4 ] +# ResearchAssistant: [ 2, 2 ] +# #security +# HeadOfSecurity: [ 1, 1 ] +# Warden: [ 1, 1 ] +# SecurityOfficer: [ 4, 4 ] +# Detective: [ 1, 1 ] +# SecurityCadet: [ 2, 2 ] +# Lawyer: [ 1, 1 ] +# #supply +# Quartermaster: [ 1, 1 ] +# SalvageSpecialist: [ 2, 2 ] +# CargoTechnician: [ 2, 2 ] +# #civilian +# Passenger: [ -1, -1 ] +# Clown: [ 1, 1 ] +# Mime: [ 1, 1 ] +# Musician: [ 1, 1 ] +# Borg: [ 2, 2 ] diff --git a/Resources/Prototypes/Maps/origin.yml b/Resources/Prototypes/Maps/origin.yml index 1281489891..cf11052ef7 100644 --- a/Resources/Prototypes/Maps/origin.yml +++ b/Resources/Prototypes/Maps/origin.yml @@ -1,66 +1,66 @@ -- type: gameMap - id: Origin - mapName: 'Origin' - mapPath: /Maps/origin.yml - minPlayers: 50 - stations: - Origin: - stationProto: StandardNanotrasenStation - components: - - type: StationNameSetup - mapNameTemplate: '{0} Origin {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml - - type: StationJobs - overflowJobs: - - Passenger - availableJobs: - #service - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - Bartender: [ 2, 2 ] - Botanist: [ 3, 3 ] - Chef: [ 3, 3 ] - Janitor: [ 3, 3 ] - Chaplain: [ 2, 2 ] - Librarian: [ 2, 2 ] - Lawyer: [ 2, 2 ] - ServiceWorker: [ 3, 4 ] - #engineering - ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 3, 3 ] - StationEngineer: [ 6, 6 ] - TechnicalAssistant: [ 2, 3 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] - Chemist: [ 2, 3 ] - Paramedic: [ 1, 1 ] - MedicalDoctor: [ 6, 6 ] - Psychologist: [ 1, 1 ] - MedicalIntern: [ 1, 2 ] - #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 6, 6 ] - ResearchAssistant: [ 4, 4 ] - Borg: [ 2, 2 ] - #security - HeadOfSecurity: [ 1, 1 ] - Warden: [ 1, 1 ] - Detective: [ 1, 1 ] - SecurityOfficer: [ 7, 7 ] - SecurityCadet: [ 2, 4 ] - #supply - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] - CargoTechnician: [ 5, 5 ] - #civillian - Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 2, 2 ] - Boxer: [ 1, 1 ] - Reporter: [ 1, 1 ] +#- type: gameMap +# id: Origin +# mapName: 'Origin' +# mapPath: /Maps/origin.yml +# minPlayers: 50 +# stations: +# Origin: +# stationProto: StandardNanotrasenStation +# components: +# - type: StationNameSetup +# mapNameTemplate: '{0} Origin {1}' +# nameGenerator: +# !type:NanotrasenNameGenerator +# prefixCreator: '14' +# - type: StationEmergencyShuttle +# emergencyShuttlePath: /Maps/Shuttles/emergency_courser.yml +# - type: StationJobs +# overflowJobs: +# - Passenger +# availableJobs: +# #service +# Captain: [ 1, 1 ] +# HeadOfPersonnel: [ 1, 1 ] +# Bartender: [ 2, 2 ] +# Botanist: [ 3, 3 ] +# Chef: [ 3, 3 ] +# Janitor: [ 3, 3 ] +# Chaplain: [ 2, 2 ] +# Librarian: [ 2, 2 ] +# Lawyer: [ 2, 2 ] +# ServiceWorker: [ 3, 4 ] +# #engineering +# ChiefEngineer: [ 1, 1 ] +# AtmosphericTechnician: [ 3, 3 ] +# StationEngineer: [ 6, 6 ] +# TechnicalAssistant: [ 2, 3 ] +# #medical +# ChiefMedicalOfficer: [ 1, 1 ] +# Chemist: [ 2, 3 ] +# Paramedic: [ 1, 1 ] +# MedicalDoctor: [ 6, 6 ] +# Psychologist: [ 1, 1 ] +# MedicalIntern: [ 1, 2 ] +# #science +# ResearchDirector: [ 1, 1 ] +# Scientist: [ 6, 6 ] +# ResearchAssistant: [ 4, 4 ] +# Borg: [ 2, 2 ] +# #security +# HeadOfSecurity: [ 1, 1 ] +# Warden: [ 1, 1 ] +# Detective: [ 1, 1 ] +# SecurityOfficer: [ 7, 7 ] +# SecurityCadet: [ 2, 4 ] +# #supply +# Quartermaster: [ 1, 1 ] +# SalvageSpecialist: [ 3, 3 ] +# CargoTechnician: [ 5, 5 ] +# #civillian +# Passenger: [ -1, -1 ] +# Clown: [ 1, 1 ] +# Mime: [ 1, 1 ] +# Musician: [ 2, 2 ] +# Boxer: [ 1, 1 ] +# Reporter: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/packed.yml b/Resources/Prototypes/Maps/packed.yml index 20d6c7a7bd..47a8e964f9 100644 --- a/Resources/Prototypes/Maps/packed.yml +++ b/Resources/Prototypes/Maps/packed.yml @@ -1,61 +1,61 @@ -- type: gameMap - id: Packed - mapName: 'Packed' - mapPath: /Maps/packed.yml - minPlayers: 5 - maxPlayers: 40 - stations: - Packed: - stationProto: StandardNanotrasenStation - components: - - type: StationNameSetup - mapNameTemplate: '{0} Packed {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'VG' - - type: StationJobs - overflowJobs: - - Passenger - availableJobs: - #service - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - Bartender: [ 1, 1 ] - Botanist: [ 2, 2 ] - Chef: [ 1, 1 ] - Janitor: [ 1, 2 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 2, 2 ] - #engineering - ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 2, 2 ] - StationEngineer: [ 4, 4 ] - TechnicalAssistant: [ 3, 3 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] - Chemist: [ 2, 2 ] - MedicalDoctor: [ 3, 3 ] - MedicalIntern: [ 2, 2 ] - Paramedic: [ 1, 1 ] - #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 4, 4 ] - ResearchAssistant: [ 2, 2 ] - #security - HeadOfSecurity: [ 1, 1 ] - Warden: [ 1, 1 ] - SecurityOfficer: [ 4, 4 ] - Detective: [ 1, 1 ] - SecurityCadet: [ 2, 2 ] - Lawyer: [ 1, 1 ] - #supply - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 2, 2 ] - CargoTechnician: [ 2, 2 ] - #civilian - Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] - Borg: [ 1 , 1 ] +#- type: gameMap +# id: Packed +# mapName: 'Packed' +# mapPath: /Maps/packed.yml +# minPlayers: 5 +# maxPlayers: 40 +# stations: +# Packed: +# stationProto: StandardNanotrasenStation +# components: +# - type: StationNameSetup +# mapNameTemplate: '{0} Packed {1}' +# nameGenerator: +# !type:NanotrasenNameGenerator +# prefixCreator: 'VG' +# - type: StationJobs +# overflowJobs: +# - Passenger +# availableJobs: +# #service +# Captain: [ 1, 1 ] +# HeadOfPersonnel: [ 1, 1 ] +# Bartender: [ 1, 1 ] +# Botanist: [ 2, 2 ] +# Chef: [ 1, 1 ] +# Janitor: [ 1, 2 ] +# Chaplain: [ 1, 1 ] +# Librarian: [ 1, 1 ] +# ServiceWorker: [ 2, 2 ] +# #engineering +# ChiefEngineer: [ 1, 1 ] +# AtmosphericTechnician: [ 2, 2 ] +# StationEngineer: [ 4, 4 ] +# TechnicalAssistant: [ 3, 3 ] +# #medical +# ChiefMedicalOfficer: [ 1, 1 ] +# Chemist: [ 2, 2 ] +# MedicalDoctor: [ 3, 3 ] +# MedicalIntern: [ 2, 2 ] +# Paramedic: [ 1, 1 ] +# #science +# ResearchDirector: [ 1, 1 ] +# Scientist: [ 4, 4 ] +# ResearchAssistant: [ 2, 2 ] +# #security +# HeadOfSecurity: [ 1, 1 ] +# Warden: [ 1, 1 ] +# SecurityOfficer: [ 4, 4 ] +# Detective: [ 1, 1 ] +# SecurityCadet: [ 2, 2 ] +# Lawyer: [ 1, 1 ] +# #supply +# Quartermaster: [ 1, 1 ] +# SalvageSpecialist: [ 2, 2 ] +# CargoTechnician: [ 2, 2 ] +# #civilian +# Passenger: [ -1, -1 ] +# Clown: [ 1, 1 ] +# Mime: [ 1, 1 ] +# Musician: [ 1, 1 ] +# Borg: [ 1 , 1 ] diff --git a/Resources/Prototypes/Maps/reach.yml b/Resources/Prototypes/Maps/reach.yml index 03a688cf23..20f1b32f26 100644 --- a/Resources/Prototypes/Maps/reach.yml +++ b/Resources/Prototypes/Maps/reach.yml @@ -1,36 +1,36 @@ -- type: gameMap - id: Reach - mapName: 'Reach' - mapPath: /Maps/reach.yml - minPlayers: 0 - maxPlayers: 7 - stations: - Reach: - stationProto: StandardNanotrasenStation - components: - - type: StationNameSetup - mapNameTemplate: '{0} Reach Transport {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'SC' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency.yml - - type: StationJobs - overflowJobs: - - Passenger - availableJobs: - Captain: [ 1, 1 ] - HeadOfSecurity: [ 1, 1 ] - SecurityOfficer: [ 1, 3 ] - CargoTechnician: [ 1, 2 ] - Bartender: [ 1, 1 ] - Botanist: [ 1, 1 ] - Chef: [ 1, 1 ] - MedicalDoctor: [ 1, 2 ] - Chemist: [ 1, 1 ] - Janitor: [ 1, 1 ] - Musician: [ 1, 1 ] - AtmosphericTechnician: [ 1, 1 ] - StationEngineer: [ 1, 2 ] - Passenger: [ -1, -1 ] +#- type: gameMap +# id: Reach +# mapName: 'Reach' +# mapPath: /Maps/reach.yml +# minPlayers: 0 +# maxPlayers: 7 +# stations: +# Reach: +# stationProto: StandardNanotrasenStation +# components: +# - type: StationNameSetup +# mapNameTemplate: '{0} Reach Transport {1}' +# nameGenerator: +# !type:NanotrasenNameGenerator +# prefixCreator: 'SC' +# - type: StationEmergencyShuttle +# emergencyShuttlePath: /Maps/Shuttles/emergency.yml +# - type: StationJobs +# overflowJobs: +# - Passenger +# availableJobs: +# Captain: [ 1, 1 ] +# HeadOfSecurity: [ 1, 1 ] +# SecurityOfficer: [ 1, 3 ] +# CargoTechnician: [ 1, 2 ] +# Bartender: [ 1, 1 ] +# Botanist: [ 1, 1 ] +# Chef: [ 1, 1 ] +# MedicalDoctor: [ 1, 2 ] +# Chemist: [ 1, 1 ] +# Janitor: [ 1, 1 ] +# Musician: [ 1, 1 ] +# AtmosphericTechnician: [ 1, 1 ] +# StationEngineer: [ 1, 2 ] +# Passenger: [ -1, -1 ] diff --git a/Resources/Prototypes/Maps/saltern.yml b/Resources/Prototypes/Maps/saltern.yml index bc12eca654..ee0e62f838 100644 --- a/Resources/Prototypes/Maps/saltern.yml +++ b/Resources/Prototypes/Maps/saltern.yml @@ -1,62 +1,62 @@ -- type: gameMap - id: Saltern - mapName: 'Saltern' - mapPath: /Maps/saltern.yml - minPlayers: 0 - maxPlayers: 35 - fallback: true - stations: - Saltern: - stationProto: StandardNanotrasenStation - components: - - type: StationNameSetup - mapNameTemplate: '{0} Saltern {1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: '14' - - type: StationJobs - overflowJobs: - - Passenger - availableJobs: - #service - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - Bartender: [ 1, 1 ] - Botanist: [ 2, 2 ] - Chef: [ 1, 1 ] - Janitor: [ 1, 1 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 2, 2 ] - #engineering - ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 2, 2 ] - StationEngineer: [ 4, 4 ] - TechnicalAssistant: [ 4, 4 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] - Chemist: [ 2, 2 ] - MedicalDoctor: [ 3, 3 ] - MedicalIntern: [ 4, 4 ] - Paramedic: [ 1, 1 ] - #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 4, 4 ] - ResearchAssistant: [ 2, 2 ] - Borg: [ 2, 2 ] - #security - HeadOfSecurity: [ 1, 1 ] - Warden: [ 1, 1 ] - Detective: [ 1, 1 ] - SecurityOfficer: [ 4, 4 ] - SecurityCadet: [ 4, 4 ] - #supply - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 1, 3 ] - CargoTechnician: [ 2, 2 ] - #civillian - Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] +#- type: gameMap +# id: Saltern +# mapName: 'Saltern' +# mapPath: /Maps/saltern.yml +# minPlayers: 0 +# maxPlayers: 35 +# fallback: true +# stations: +# Saltern: +# stationProto: StandardNanotrasenStation +# components: +# - type: StationNameSetup +# mapNameTemplate: '{0} Saltern {1}' +# nameGenerator: +# !type:NanotrasenNameGenerator +# prefixCreator: '14' +# - type: StationJobs +# overflowJobs: +# - Passenger +# availableJobs: +# #service +# Captain: [ 1, 1 ] +# HeadOfPersonnel: [ 1, 1 ] +# Bartender: [ 1, 1 ] +# Botanist: [ 2, 2 ] +# Chef: [ 1, 1 ] +# Janitor: [ 1, 1 ] +# Chaplain: [ 1, 1 ] +# Librarian: [ 1, 1 ] +# ServiceWorker: [ 2, 2 ] +# #engineering +# ChiefEngineer: [ 1, 1 ] +# AtmosphericTechnician: [ 2, 2 ] +# StationEngineer: [ 4, 4 ] +# TechnicalAssistant: [ 4, 4 ] +# #medical +# ChiefMedicalOfficer: [ 1, 1 ] +# Chemist: [ 2, 2 ] +# MedicalDoctor: [ 3, 3 ] +# MedicalIntern: [ 4, 4 ] +# Paramedic: [ 1, 1 ] +# #science +# ResearchDirector: [ 1, 1 ] +# Scientist: [ 4, 4 ] +# ResearchAssistant: [ 2, 2 ] +# Borg: [ 2, 2 ] +# #security +# HeadOfSecurity: [ 1, 1 ] +# Warden: [ 1, 1 ] +# Detective: [ 1, 1 ] +# SecurityOfficer: [ 4, 4 ] +# SecurityCadet: [ 4, 4 ] +# #supply +# Quartermaster: [ 1, 1 ] +# SalvageSpecialist: [ 1, 3 ] +# CargoTechnician: [ 2, 2 ] +# #civillian +# Passenger: [ -1, -1 ] +# Clown: [ 1, 1 ] +# Mime: [ 1, 1 ] +# Musician: [ 1, 1 ] diff --git a/Resources/Prototypes/Maps/train.yml b/Resources/Prototypes/Maps/train.yml index 48c1f2925a..244652e08b 100644 --- a/Resources/Prototypes/Maps/train.yml +++ b/Resources/Prototypes/Maps/train.yml @@ -1,64 +1,64 @@ -- type: gameMap - id: Train - mapName: 'Train' - mapPath: /Maps/train.yml - minPlayers: 10 - maxPlayers: 50 - stations: - Train: - stationProto: StandardNanotrasenStation - components: - - type: StationRandomTransform - enableStationRotation: false - - type: StationNameSetup - mapNameTemplate: 'Train "Sentipode" {0}-{1}' - nameGenerator: - !type:NanotrasenNameGenerator - prefixCreator: 'ED' - - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml To do - add railway station - - type: StationJobs - overflowJobs: - - Passenger - availableJobs: - #service - Captain: [ 1, 1 ] - HeadOfPersonnel: [ 1, 1 ] - Bartender: [ 1, 1 ] - Botanist: [ 2, 2 ] - Chef: [ 1, 1 ] - Janitor: [ 1, 2 ] - Chaplain: [ 1, 1 ] - Librarian: [ 1, 1 ] - ServiceWorker: [ 2, 3 ] - Detective: [ 1, 1 ] - #engineering - ChiefEngineer: [ 1, 1 ] - AtmosphericTechnician: [ 3, 3 ] - StationEngineer: [ 5, 5 ] - TechnicalAssistant: [ 3, 3 ] - #medical - ChiefMedicalOfficer: [ 1, 1 ] - Chemist: [ 2, 2 ] - MedicalDoctor: [ 3, 3 ] - MedicalIntern: [ 2, 2 ] - #science - ResearchDirector: [ 1, 1 ] - Scientist: [ 4, 4 ] - ResearchAssistant: [ 2, 2 ] - #security - HeadOfSecurity: [ 1, 1 ] - Warden: [ 1, 1 ] - SecurityOfficer: [ 4, 4 ] - SecurityCadet: [ 2, 3 ] - Lawyer: [ 1, 2 ] - #supply - Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 2, 2 ] - CargoTechnician: [ 2, 2 ] - #civilian - Passenger: [ -1, -1 ] - Clown: [ 1, 1 ] - Mime: [ 1, 1 ] - Musician: [ 1, 1 ] - Borg: [ 2, 2 ] +#- type: gameMap +# id: Train +# mapName: 'Train' +# mapPath: /Maps/train.yml +# minPlayers: 10 +# maxPlayers: 50 +# stations: +# Train: +# stationProto: StandardNanotrasenStation +# components: +# - type: StationRandomTransform +# enableStationRotation: false +# - type: StationNameSetup +# mapNameTemplate: 'Train "Sentipode" {0}-{1}' +# nameGenerator: +# !type:NanotrasenNameGenerator +# prefixCreator: 'ED' +# - type: StationEmergencyShuttle +# emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml # To do - add railway station +# - type: StationJobs +# overflowJobs: +# - Passenger +# availableJobs: +# #service +# Captain: [ 1, 1 ] +# HeadOfPersonnel: [ 1, 1 ] +# Bartender: [ 1, 1 ] +# Botanist: [ 2, 2 ] +# Chef: [ 1, 1 ] +# Janitor: [ 1, 2 ] +# Chaplain: [ 1, 1 ] +# Librarian: [ 1, 1 ] +# ServiceWorker: [ 2, 3 ] +# Detective: [ 1, 1 ] +# #engineering +# ChiefEngineer: [ 1, 1 ] +# AtmosphericTechnician: [ 3, 3 ] +# StationEngineer: [ 5, 5 ] +# TechnicalAssistant: [ 3, 3 ] +# #medical +# ChiefMedicalOfficer: [ 1, 1 ] +# Chemist: [ 2, 2 ] +# MedicalDoctor: [ 3, 3 ] +# MedicalIntern: [ 2, 2 ] +# #science +# ResearchDirector: [ 1, 1 ] +# Scientist: [ 4, 4 ] +# ResearchAssistant: [ 2, 2 ] +# #security +# HeadOfSecurity: [ 1, 1 ] +# Warden: [ 1, 1 ] +# SecurityOfficer: [ 4, 4 ] +# SecurityCadet: [ 2, 3 ] +# Lawyer: [ 1, 2 ] +# #supply +# Quartermaster: [ 1, 1 ] +# SalvageSpecialist: [ 2, 2 ] +# CargoTechnician: [ 2, 2 ] +# #civilian +# Passenger: [ -1, -1 ] +# Clown: [ 1, 1 ] +# Mime: [ 1, 1 ] +# Musician: [ 1, 1 ] +# Borg: [ 2, 2 ] From 23df20c0fe58d353d2fcd4fb768fcbbbfc648a9e Mon Sep 17 00:00:00 2001 From: Ed Date: Mon, 22 Apr 2024 20:10:01 +0300 Subject: [PATCH 179/179] Update EvacShuttleTest.cs --- Content.IntegrationTests/Tests/Station/EvacShuttleTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.IntegrationTests/Tests/Station/EvacShuttleTest.cs b/Content.IntegrationTests/Tests/Station/EvacShuttleTest.cs index 5750be09c2..d527a346b2 100644 --- a/Content.IntegrationTests/Tests/Station/EvacShuttleTest.cs +++ b/Content.IntegrationTests/Tests/Station/EvacShuttleTest.cs @@ -29,7 +29,7 @@ public sealed class EvacShuttleTest Assert.That(entMan.Count(), Is.Zero); var shuttleEnabled = pair.Server.CfgMan.GetCVar(CCVars.EmergencyShuttleEnabled); - pair.Server.CfgMan.SetCVar(CCVars.GameMap, "Saltern"); + pair.Server.CfgMan.SetCVar(CCVars.GameMap, "Dev"); //CrystallPunk dont have Saltern pair.Server.CfgMan.SetCVar(CCVars.GameDummyTicker, false); pair.Server.CfgMan.SetCVar(CCVars.EmergencyShuttleEnabled, true);