// ==UserScript==
// @name Restored Neopia World Map
// @namespace https://greasyfork.org/en/scripts/454990
// @version 0.1
// @description A new Neopian world map for the Explore page.
// @author Naud, Jeran
// @license MIT
// @match *://www.neopets.com/explore.phtml
// ==/UserScript==
var map = `<!-- Image Map Generated by http://www.image-map.net/ -->
<img src="https://images.neopets.com/altador/altadorcup/2014/bg/map.jpg" usemap="#image-map">
<map name="image-map">
<area target="" alt="Altador" title="Altador" href="https://www.neopets.com/altador/index.phtml" coords="324,239,316,190,287,172,245,197,234,229,279,278" shape="poly">
<area target="" alt="Faerieland" title="Faerieland" href="https://www.neopets.com/faerieland/index.phtml" coords="475,174,521,220,485,246,445,230,458,212,441,187" shape="poly">
<area target="" alt="Kiko Lake" title="Kiko Lake" href="https://www.neopets.com/worlds/index_kikolake.phtml" coords="434,137,426,157,442,180,483,162,484,146,468,144,458,131,443,129" shape="poly">
<area target="" alt="Kreludor" title="Kreludor" href="https://www.neopets.com/moon/index.phtml" coords="129,37,35" shape="circle">
<area target="" alt="Maraqua" title="Maraqua" href="https://www.neopets.com/water/index.phtml" coords="627,139,613,213,656,175,687,164,700,179,704,126,686,95,661,108" shape="poly">
<area target="" alt="Moltara" title="Moltara" href="https://www.neopets.com/magma/index.phtml" coords="129,131,164,201,124,274,89,211,102,149" shape="poly">
<area target="" alt="Neopian Central" title="Neopian Central" href="https://www.neopets.com/objects.phtml" coords="479,101,446,118,469,146,512,145" shape="poly">
<area target="" alt="Shenkuu" title="Shenkuu" href="https://www.neopets.com/shenkuu/index.phtml" coords="354,100,323,187,241,154,296,96" shape="poly">
<area target="" alt="The Lost Desert" title="The Lost Desert" href="https://www.neopets.com/desert/index.phtml" coords="436,238,375,229,286,279,424,302,495,314,491,267" shape="poly">
<area target="" alt="Brightvale" title="Brightvale" href="https://www.neopets.com/medieval/brightvale.phtml" coords="485,147,485,173,520,211,555,178,502,150" shape="poly">
<area target="" alt="Haunted Woods" title="Haunted Woods" href="https://www.neopets.com/halloween/index.phtml" coords="422,160,450,215,434,233,368,217,405,163" shape="poly">
<area target="" alt="Krawk Island" title="Krawk Island" href="https://www.neopets.com/pirates/index.phtml" coords="620,269,594,295,594,340,626,346,643,333,640,288" shape="poly">
<area target="" alt="Lutari Island" title="Lutari Island" href="https://www.neopets.com/tropical/index.phtml" coords="182,95,145,115,162,153,213,197,225,112" shape="poly">
<area target="" alt="Meridell" title="Meridell" href="https://www.neopets.com/medieval/index.phtml" coords="537,119,516,147,569,179,603,149" shape="poly">
<area target="" alt="Roo Island" title="Roo Island" href="https://www.neopets.com/worlds/index_roo.phtml" coords="519,88,483,101,512,142,542,115" shape="poly">
<area target="" alt="Terror Mountain" title="Terror Mountain" href="https://www.neopets.com/winter/index.phtml" coords="280,48,419,89,500,86,479,48,556,23,424,9,266,15" shape="poly">
<area target="" alt="Tyrannia" title="Tyrannia" href="https://www.neopets.com/prehistoric/index.phtml" coords="486,48,502,85,525,84,540,97,601,73,558,27" shape="poly">
<area target="" alt="Virtupets Space Station" title="Virtupets Space Station" href="https://www.neopets.com/space/index.phtml" coords="637,19,651,61,692,85,739,63,702,10" shape="poly">
<area target="" alt="Darigan Citadel" title="Darigan Citadel" href="https://www.neopets.com/medieval/index_evil.phtml" coords="570,90,541,114,610,146,624,112" shape="poly">
<area target="" alt="Mystery Island" title="Mystery Island" href="https://www.neopets.com/island/index.phtml" coords="652,209,604,223,640,274,698,277,700,219" shape="poly">
<area target="" alt="Jelly World!!" title="Jelly World!!" href="https://www.neopets.com/jellyworld.html" coords="671,330,14" shape="circle">
</map>`
document.querySelector("#container__2020 > div:nth-child(8)").innerHTML = map;