fix the fact I sent a bunch of maps to detroit. (#8087)

This commit is contained in:
Moony
2022-05-10 15:21:55 -05:00
committed by GitHub
parent 1d05eea7c1
commit cdc474c7f2
5 changed files with 94 additions and 86 deletions

View File

@@ -31,7 +31,7 @@ public sealed partial class GameMapPrototype : IPrototype
[DataField("mapPath", required: true)]
public ResourcePath MapPath { get; } = default!;
[DataField("stations")]
[DataField("stations", required: true)]
private Dictionary<string, StationConfig> _stations = new();
/// <summary>

View File

@@ -1,13 +1,15 @@
- type: gameMap
id: atlas
mapName: 'Atlas'
mapPath: /Maps/atlas.yml
minPlayers: 0
maxPlayers: 25
stations:
Station: #TODO: Mapper, add a BecomesStation component to the primary grid of the map.
mapNameTemplate: '{0} Atlas {1}'
nameGenerator:
!type:NanotrasenNameGenerator
prefixCreator: 'R4' # R4407/Goon. GS isn't as cool sounding.
mapPath: /Maps/atlas.yml
minPlayers: 0
maxPlayers: 25
overflowJobs:
- Passenger
availableJobs:

View File

@@ -1,12 +1,14 @@
- type: gameMap
id: barratry
mapName: 'Barratry'
mapPath: /Maps/barratry.yml
minPlayers: 40
stations:
Station: #TODO: Mapper, add a BecomesStation component to the primary grid of the map.
mapNameTemplate: '{0} Barratry {1}'
nameGenerator:
!type:NanotrasenNameGenerator
prefixCreator: '14'
mapPath: /Maps/barratry.yml
minPlayers: 40
overflowJobs:
- Passenger
availableJobs:

View File

@@ -1,13 +1,15 @@
- type: gameMap
id: infiltrator
mapName: 'Syndicate Infiltrator'
mapPath: /Maps/infiltrator.yml
minPlayers: 0
votable: false
stations:
Station: #TODO: Mapper, add a BecomesStation component to the primary grid of the map.
mapNameTemplate: '{0} Infiltrator {1}'
nameGenerator:
!type:NanotrasenNameGenerator
prefixCreator: '14'
mapPath: /Maps/infiltrator.yml
minPlayers: 0
votable: false
overflowJobs: []
availableJobs:
Captain: [ 1, 1 ]

View File

@@ -1,13 +1,15 @@
- type: gameMap
id: pirate
mapName: 'Pirate Ship'
mapPath: /Maps/pirate.yml
minPlayers: 0
votable: false
stations:
Station: #TODO: Mapper, add a BecomesStation component to the primary grid of the map.
mapNameTemplate: '{0} Pirate {1}'
nameGenerator:
!type:NanotrasenNameGenerator
prefixCreator: '14'
mapPath: /Maps/pirate.yml
minPlayers: 0
votable: false
overflowJobs: []
availableJobs:
Captain: [ 1, 1 ]