diff --git a/src/gameInfos/battlegrounds.js b/src/gameInfos/battlegrounds.js index e28effc..f07ae64 100644 --- a/src/gameInfos/battlegrounds.js +++ b/src/gameInfos/battlegrounds.js @@ -16,6 +16,7 @@ const BOT = 'bottom' export default { alteracPass: { name: 'Alterac Pass', + backgroundUrl: '/static/backgrounds/alterac-pass.jpg', objectives: [ [ MAP.cavalryPrison @@ -34,6 +35,7 @@ export default { }, battlefieldOfEternity: { name: 'Battlefield of Eternity', + backgroundUrl: '/static/backgrounds/battlefield-of-eternity.jpg', objectives: [ [ MAP.immortals @@ -52,6 +54,7 @@ export default { }, blackheartSBay: { name: "Blackheart's Bay", + backgroundUrl: '/static/backgrounds/blackhearts-bay.jpg', objectives: [ [ CAMPS.graveGolem @@ -75,6 +78,7 @@ export default { }, gardenOfTerror: { name: 'Garden of Terror', + backgroundUrl: '/static/backgrounds/garden-of-terror.jpg', objectives: [ [ {...CAMPS.giants, position: 'blue top'}, @@ -94,6 +98,7 @@ export default { }, hanamuraTemple: { name: 'Hanamura Temple', + backgroundUrl: '/static/backgrounds/hanamura.jpg', objectives: [ [ {...CAMPS.fortifiaction, position: TOP} @@ -113,6 +118,7 @@ export default { }, volskayaFoundry: { name: 'Volskaya Foundry', + backgroundUrl: '/static/backgrounds/volskaya.jpg', objectives: [ [ MAP.capturePoints @@ -141,6 +147,7 @@ export default { }, towersOfDoom: { name: 'Towers of Doom', + backgroundUrl: '/static/backgrounds/towers-of-doom.jpg', objectives: [ [ MAP.altars @@ -159,6 +166,7 @@ export default { }, infernalShrines: { name: 'Infernal Shrines', + backgroundUrl: '/static/backgrounds/infernal-shrines.jpg', objectives: [ [ MAP.shrine @@ -178,6 +186,7 @@ export default { }, tombOfTheSpiderQueen: { name: 'Tomb of the Spider Queen', + backgroundUrl: '/static/backgrounds/tomb-of-spider-queen.jpg', objectives: [ [ CAMPS.sandGolem @@ -193,6 +202,7 @@ export default { }, skyTemple: { name: 'Sky Temple', + backgroundUrl: '/static/backgrounds/sky-temple.jpg', objectives: [ [ MAP.temples @@ -212,6 +222,7 @@ export default { }, dragonShire: { name: 'Dragon Shire', + backgroundUrl: '/static/backgrounds/dragon-shire.jpg', objectives: [ [ MAP.dragon @@ -228,6 +239,7 @@ export default { }, cursedHollow: { name: 'Cursed Hollow', + backgroundUrl: '/static/backgrounds/cursed-hollow.jpg', objectives: [ [ {...CAMPS.graveGolem, position: RED} @@ -247,6 +259,7 @@ export default { }, braxisHoldout: { name: 'Braxis Holdout', + backgroundUrl: '/static/backgrounds/braxis-holdout.jpg', objectives: [ [ {...CAMPS.goliaths, position: BLUE}, @@ -263,6 +276,7 @@ export default { }, warheadJunction: { name: 'Warhead Junction', + backgroundUrl: '/static/backgrounds/warhead-junction.jpg', objectives: [ [ {...CAMPS.slime, position: TOP} diff --git a/static/backgrounds/alterac-pass.jpg b/static/backgrounds/alterac-pass.jpg index 06bd444..7486f89 100644 Binary files a/static/backgrounds/alterac-pass.jpg and b/static/backgrounds/alterac-pass.jpg differ diff --git a/static/backgrounds/battlefieldofeternity.jpg b/static/backgrounds/battlefield-of-eternity.jpg similarity index 100% rename from static/backgrounds/battlefieldofeternity.jpg rename to static/backgrounds/battlefield-of-eternity.jpg diff --git a/static/backgrounds/blackhearts-bay.jpg b/static/backgrounds/blackhearts-bay.jpg new file mode 100644 index 0000000..f960474 Binary files /dev/null and b/static/backgrounds/blackhearts-bay.jpg differ diff --git a/static/backgrounds/blackheartsbay.jpg b/static/backgrounds/blackheartsbay.jpg deleted file mode 100644 index 1253fc2..0000000 Binary files a/static/backgrounds/blackheartsbay.jpg and /dev/null differ diff --git a/static/backgrounds/braxis-holdout.jpg b/static/backgrounds/braxis-holdout.jpg new file mode 100644 index 0000000..42ca91c Binary files /dev/null and b/static/backgrounds/braxis-holdout.jpg differ diff --git a/static/backgrounds/cursed-hollow.jpg b/static/backgrounds/cursed-hollow.jpg new file mode 100644 index 0000000..1a0a56d Binary files /dev/null and b/static/backgrounds/cursed-hollow.jpg differ diff --git a/static/backgrounds/dragon-shire.jpg b/static/backgrounds/dragon-shire.jpg new file mode 100644 index 0000000..86583d4 Binary files /dev/null and b/static/backgrounds/dragon-shire.jpg differ diff --git a/static/backgrounds/garden-of-terror.jpg b/static/backgrounds/garden-of-terror.jpg new file mode 100644 index 0000000..5719d8e Binary files /dev/null and b/static/backgrounds/garden-of-terror.jpg differ diff --git a/static/backgrounds/hanamura.jpg b/static/backgrounds/hanamura.jpg new file mode 100644 index 0000000..7130323 Binary files /dev/null and b/static/backgrounds/hanamura.jpg differ diff --git a/static/backgrounds/infernal-shrines.jpg b/static/backgrounds/infernal-shrines.jpg new file mode 100644 index 0000000..0a635ee Binary files /dev/null and b/static/backgrounds/infernal-shrines.jpg differ diff --git a/static/backgrounds/sky-temple.jpg b/static/backgrounds/sky-temple.jpg new file mode 100644 index 0000000..7e83775 Binary files /dev/null and b/static/backgrounds/sky-temple.jpg differ diff --git a/static/backgrounds/tomb-of-spider-queen.jpg b/static/backgrounds/tomb-of-spider-queen.jpg new file mode 100644 index 0000000..c948af9 Binary files /dev/null and b/static/backgrounds/tomb-of-spider-queen.jpg differ diff --git a/static/backgrounds/towers-of-doom.jpg b/static/backgrounds/towers-of-doom.jpg new file mode 100644 index 0000000..d628296 Binary files /dev/null and b/static/backgrounds/towers-of-doom.jpg differ diff --git a/static/backgrounds/volskaya.jpg b/static/backgrounds/volskaya.jpg new file mode 100644 index 0000000..493dacc Binary files /dev/null and b/static/backgrounds/volskaya.jpg differ diff --git a/static/backgrounds/warhead-junction.jpg b/static/backgrounds/warhead-junction.jpg new file mode 100644 index 0000000..6f630cc Binary files /dev/null and b/static/backgrounds/warhead-junction.jpg differ