Advertisement
Guest User

Untitled

a guest
Sep 19th, 2016
2,107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.07 KB | None | 0 0
  1. public static readonly HashSet<string> MultilevelMaps = new HashSet<string>
  2.         {
  3.             "Vaal Pyramid Map",
  4.             "Tower Map",
  5.             "Racecourse Map",
  6.             "Arachnid Tomb Map",
  7.             "Tropical Island Map",
  8.             "Residence Map",
  9.             "Volcano Map",
  10.             "Crematorium Map",
  11.             "Overgrown Ruin Map",
  12.             "Colosseum Map"
  13.         };
  14.  
  15.         public static readonly HashSet<string> BossRoomMaps = new HashSet<string>
  16.         {
  17.             //1
  18.             "Jungle Valley Map",
  19.             "Crystal Ore Map",
  20.  
  21.             //2
  22.             "Beach Map",
  23.             "Factory Map",
  24.  
  25.             //3
  26.             "Arid Lake Map",
  27.             "Marshes Map",
  28.  
  29.             //4
  30.             "Academy Map",
  31.             "Acid Lakes Map",
  32.             "Dungeon Map",
  33.             "Graveyard Map",
  34.             "Phantasmagoria Map",
  35.             "Villa Map",
  36.  
  37.             //5
  38.             "Mesa Map",
  39.             "Peninsula Map",
  40.             "Primordial Pool Map",
  41.             "Spider Lair Map",
  42.  
  43.             //6
  44.             "Quarry Map",
  45.             "Spider Forest Map",
  46.             "Strand Map",
  47.             "Thicket Map",
  48.  
  49.             //7
  50.             "Castle Ruins Map",
  51.             "Arachnid Nest Map",
  52.             "Atoll Map",
  53.  
  54.             //8
  55.             "Bog Map",
  56.             "Cemetery Map",
  57.             //"Pier Map", //series of bossrooms, not supported
  58.  
  59.             //9
  60.             "Museum Map",
  61.             "Orchard Map",
  62.             "Reef Map",
  63.             //"Temple Map" //series of bossrooms, not supported
  64.  
  65.             //10
  66.             "Arsenal Map",
  67.             "Colonnade Map",
  68.             "Courtyard Map",
  69.             "Quay Map",
  70.             "Terrace Map",
  71.             "Underground River Map",
  72.         };
  73.  
  74.         public static readonly HashSet<string> InternallyBannedMaps = new HashSet<string>
  75.         {
  76.             "Burial Chambers Map",
  77.             "Ramparts Map",
  78.             "Arena Map",
  79.             "Barrows Map",
  80.             "Colosseum Map",
  81.             "Core Map"
  82.         };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement