Skip to content

Commit 6e67026

Browse files
committed
Adds some new codebases
1 parent 1763448 commit 6e67026

File tree

1 file changed

+59
-44
lines changed

1 file changed

+59
-44
lines changed

SS13WebMap/CodebaseData.cs

Lines changed: 59 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,49 @@ public class CodebaseData {
266266
}
267267
} },
268268

269+
270+
// BubberStation
271+
{ "bubber", new Codebase {
272+
CodebaseId = "bubber",
273+
CodebaseName = "BubberStation",
274+
FancySupport = false,
275+
IsAdult = true,
276+
GameMaps = new List<GameMap>() {
277+
new GameMap { MapId = "biodome", MapName = "Biodome", Layers = new List<string[]> {
278+
new string[] { "Main Layer", "biodome", "2" },
279+
new string[] { "Sublayer", "biodome", "1" },
280+
}
281+
},
282+
new GameMap { MapId = "blueshift", MapName = "Blueshift", Layers = new List<string[]> {
283+
new string[] { "Main Layer", "Blueshift", "2" },
284+
new string[] { "Sublayer", "Blueshift", "1" },
285+
}
286+
},
287+
new GameMap { MapId = "boxstation", MapName = "BoxStation", Layers = new List<string[]> {
288+
new string[] { "Base Map", "BoxStation", "1" },
289+
}
290+
},
291+
new GameMap { MapId = "kilostation", MapName = "KiloStation", Layers = new List<string[]> {
292+
new string[] { "Base Map", "KiloStation", "1" },
293+
}
294+
},
295+
new GameMap { MapId = "moonstation", MapName = "MoonStation", Layers = new List<string[]> {
296+
new string[] { "Main Layer", "moonstation", "3" },
297+
new string[] { "Sublayer", "moonstation", "2" },
298+
new string[] { "Lavaland", "moonstation", "1" },
299+
}
300+
},
301+
new GameMap { MapId = "persistencestation", MapName = "Persistence Station", MapHeight = 67, MapWidth = 56, Layers = new List<string[]> {
302+
new string[] { "Main Layer", "lavaland_persistence", "1" },
303+
}
304+
},
305+
new GameMap { MapId = "voidraptor", MapName = "Void Raptor", Layers = new List<string[]> {
306+
new string[] { "Main Layer", "VoidRaptor", "1" },
307+
}
308+
},
309+
}
310+
} },
311+
269312
// BurgerStation
270313
{ "burger", new Codebase {
271314
CodebaseId = "burger",
@@ -508,7 +551,7 @@ public class CodebaseData {
508551
CodebaseName = "Effigy",
509552
TextColour = "#69f0ae",
510553
FancySupport = true,
511-
IsAdult = true,
554+
IsAdult = false,
512555
LogoPath = "img/logos/effigy.png",
513556
GameMaps = new List<GameMap>() {
514557
new GameMap { MapId = "foxholestation", MapName = "FoxHoleStation", Layers = new List<string[]> {
@@ -659,6 +702,21 @@ public class CodebaseData {
659702
}
660703
} },
661704

705+
706+
// Hippie
707+
{ "hippie", new Codebase {
708+
CodebaseId = "hippie",
709+
CodebaseName = "HippieStation",
710+
FancySupport = false,
711+
IsAdult = false,
712+
GameMaps = new List<GameMap>() {
713+
new GameMap { MapId = "hippiestation", MapName = "HippieStation", Layers = new List<string[]> {
714+
new string[] { "Base Map", "hippiestation", "1" },
715+
}
716+
},
717+
}
718+
} },
719+
662720
// Lumos
663721
{ "lumos", new Codebase {
664722
CodebaseId = "lumos",
@@ -704,49 +762,6 @@ public class CodebaseData {
704762
},
705763
}
706764
} },
707-
708-
// Massmeta
709-
{ "massmeta", new Codebase {
710-
CodebaseId = "massmeta",
711-
CodebaseName = "MassMeta",
712-
FancySupport = false,
713-
IsAdult = false,
714-
GameMaps = new List<GameMap>() {
715-
new GameMap { MapId = "bearcat", MapName = "Bearcat", Layers = new List<string[]> {
716-
new string[] { "Top Layer", "bearcat", "1" },
717-
new string[] { "Main Layer", "bearcat", "2" },
718-
new string[] { "Bottom Layer", "bearcat", "3" },
719-
}
720-
},
721-
new GameMap { MapId = "icebox", MapName = "IceBoxStation", Layers = new List<string[]> {
722-
new string[] { "Main Station", "IceBoxStation", "1" },
723-
new string[] { "Top Caves", "IceBoxStation", "2" },
724-
new string[] { "Bottom Caves", "IceBoxStation", "3" },
725-
}
726-
},
727-
new GameMap { MapId = "kilostation", MapName = "KiloStation", Layers = new List<string[]> {
728-
new string[] { "Base Map", "KiloStation", "1" },
729-
}
730-
},
731-
new GameMap { MapId = "metastation", MapName = "MetaStation", Layers = new List<string[]> {
732-
new string[] { "Base Map", "MetaStation", "1" },
733-
}
734-
},
735-
new GameMap { MapId = "protobox", MapName = "ProtoBox", Layers = new List<string[]> {
736-
new string[] { "Base Map", "ProtoBoxStation", "1" },
737-
}
738-
},
739-
new GameMap { MapId = "protos", MapName = "Protos", Layers = new List<string[]> {
740-
new string[] { "Base Map", "protos", "1" },
741-
}
742-
},
743-
new GameMap { MapId = "tramstation", MapName = "TramStation", Layers = new List<string[]> {
744-
new string[] { "Main Layer", "tramstation", "1" },
745-
new string[] { "Bottom Layer", "tramstation", "2" },
746-
}
747-
},
748-
}
749-
} },
750765

751766
// Monkestation
752767
{ "monkestation", new Codebase {

0 commit comments

Comments
 (0)