Timers and other features for Heroes of the Storm
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

87 line
1.8 KiB

  1. /**
  2. * This file contains informations about all the battlegrounds of the game
  3. * It includes informations about all objectives and camps, and will define the layout of the battleground page
  4. *
  5. * The 'objectives' field is an array, each item being an array representing a line on the battleground page
  6. */
  7. import { CAMPS, MAP } from './objectives'
  8. export default {
  9. alteracPass: {
  10. name: 'Alterac Pass'
  11. },
  12. battlefieldOfEternity: {
  13. name: 'Battlefield of Eternity',
  14. objectives: [
  15. [
  16. MAP.immortals
  17. ],
  18. [
  19. {...CAMPS.impalers, position: 'top'}
  20. ],
  21. [
  22. {...CAMPS.shamans, position: 'blue side'},
  23. {...CAMPS.shamans, position: 'red side'}
  24. ],
  25. [
  26. {...CAMPS.impalers, position: 'bottom'}
  27. ]
  28. ]
  29. },
  30. blackheartSBay: {
  31. name: "Blackheart's Bay"
  32. },
  33. gardenOfTerror: {
  34. name: 'Garden of Terror'
  35. },
  36. hanamuraTemple: {
  37. name: 'Hanamura Temple'
  38. },
  39. volskayaFoundry: {
  40. name: 'Volskaya Foundry'
  41. },
  42. hauntedMines: {
  43. name: 'Haunted Mines'
  44. },
  45. towersOfDoom: {
  46. name: 'Towers of Doom'
  47. },
  48. infernalShrines: {
  49. name: 'Infernal Shrines',
  50. objectives: [
  51. [
  52. MAP.shrine
  53. ],
  54. [
  55. {...CAMPS.shamans, position: 'blue side'},
  56. {...CAMPS.shamans, position: 'red side'}
  57. ],
  58. [
  59. {...CAMPS.impalers, position: 'blue side'},
  60. {...CAMPS.impalers, position: 'red side'}
  61. ],
  62. [
  63. {...CAMPS.impalers, position: 'bottom'}
  64. ]
  65. ]
  66. },
  67. tombOfTheSpiderQueen: {
  68. name: 'Tomb of the Spider Queen'
  69. },
  70. skyTemple: {
  71. name: 'Sky Temple'
  72. },
  73. dragonShire: {
  74. name: 'Dragon Shire'
  75. },
  76. cursedHollow: {
  77. name: 'Cursed Hollow'
  78. },
  79. braxisHoldout: {
  80. name: 'Braxis Holdout'
  81. },
  82. warheadJunction: {
  83. name: 'Warhead Junction'
  84. }
  85. }