diff --git a/atlas.js b/atlas.js index 005a059..34dc4a4 100644 --- a/atlas.js +++ b/atlas.js @@ -34,8 +34,25 @@ function atlasClick() { atlas_img.src = "favicon.png"; atlas_img.style.width = "100%"; atlas_img.style.height = "100%"; + atlas_img.style.maxWidth = "48px"; + atlas_img.style.maxHeight = "48px"; atlas_img.style.zIndex = 1; atlas.classList.add("atlas"); + let roll = Math.random(); + let rollchance = 0.03; + if (roll < rollchance) { + atlas_img.src = "/media/memes/lmoa.png"; + } else if (roll < 2*rollchance) { + atlas_img.src = "/media/memes/doom.png"; + } else if (roll < 3*rollchance) { + atlas_img.src = "/media/memes/agony.png"; + } else if (roll < 4*rollchance) { + atlas_img.src = "/media/memes/enraged.png"; + } else if (roll < 5*rollchance) { + atlas_img.src = "/media/memes/sunglaso.png"; + } else if (roll < 6*rollchance) { + atlas_img.src = "/media/memes/thonk.png"; + } atlas.appendChild(atlas_img); atlas.style = "background-image: radial-gradient(closest-side, #" + Math.round(255*Math.random()).toString(16)+Math.round(255*Math.random()).toString(16)+Math.round(255*Math.random()).toString(16) + " 0%," + "#121516 120%);"; diff --git a/items.js b/items.js index 61edcc1..943d21f 100644 --- a/items.js +++ b/items.js @@ -115,7 +115,6 @@ for (let x in special_mappings) { itemFilters.appendChild(el); } -let itemTypes = [ "helmet", "chestplate", "leggings", "boots", "ring", "bracelet", "necklace", "wand", "spear", "bow", "dagger", "relik" ]; let itemCategories = [ "armor", "accessory", "weapon" ]; function applyQuery(items, query) { diff --git a/load.js b/load.js index d2e7a81..c5d2d5b 100644 --- a/load.js +++ b/load.js @@ -8,7 +8,6 @@ let sets; let itemMap; let idMap; let redirectMap; -let itemTypes = armorTypes.concat(accessoryTypes).concat(weaponTypes); let itemLists = new Map(); /* * Load item set from local DB. Calls init() on success. diff --git a/load_ing.js b/load_ing.js index 5ef2dc9..35abeda 100644 --- a/load_ing.js +++ b/load_ing.js @@ -61,7 +61,7 @@ async function load_ings(init_func) { let getUrl = window.location; let baseUrl = getUrl.protocol + "//" + getUrl.host + "/" + getUrl.pathname.split('/')[1]; let url = baseUrl + "/ingreds_compress.json"; - url = url.replace("/crafter.html", ""); //JANK + url = url.replace(/\w+.html/, "") ; let result = await (await fetch(url)).json(); result = await (await fetch(url)).json(); diff --git a/load_map.js b/load_map.js new file mode 100644 index 0000000..cc87bf0 --- /dev/null +++ b/load_map.js @@ -0,0 +1,123 @@ +const MAP_DB_VERSION = 1; + +// @See https://github.com/mdn/learning-area/blob/master/javascript/apis/client-side-storage/indexeddb/video-store/index.js + +let mdb; +let mreload = false; +var terrs = new Map(); //terr name : location: rectangle def {startX, startY, endX, endY +var claims = new Map(); //terr name: guild name +var neighbors = new Map(); //terr name: [neighbor names] +var resources = new Map(); //terr name: Map({emeralds: bool, doubleemeralds: bool, doubleresource: bool, resources: [], storage: []}) +var terrdata; + +/* + * Load item set from local DB. Calls init() on success. + */ +async function map_load_local(init_func) { + let get_tx = mdb.transaction(['map_db'], 'readonly'); + let map_store = get_tx.objectStore('map_db'); + let request5 = map_store.getAll(); + request5.onerror = function(event) { + console.log("Could not read local map db..."); + } + request5.onsuccess = function(event) { + console.log("Successfully read local map db."); + terrdata = request5.result; + init_map_maps(); + init_func(); + } + await get_tx.complete; + mdb.close(); +} + + +/* + * Load item set from remote DB (aka a big json file). Calls init() on success. + */ +async function load_map(init_func) { + + let getUrl = window.location; + let baseUrl = getUrl.protocol + "//" + getUrl.host + "/" + getUrl.pathname.split('/')[1]; + let url = baseUrl + "/terrs_compress.json"; + url = url.replace(/\w+.html/, "") ; + let result = await (await fetch(url)).json(); + + result = await (await fetch(url)).json(); + terrdata = result; + console.log(terrdata); + + + // https://developer.mozilla.org/en-US/docs/Web/API/IDBObjectStore/clear + /*let clear_tx2 = db.transaction(['ing_db'], 'readwrite'); + let clear_ings = clear_tx2.objectStore('ing_db'); + let clear_tx3 = db.transaction(['recipe_db'], 'readwrite'); + let clear_recipes = clear_tx3.objectStore('recipe_db'); + await clear_ings.clear(); + await clear_recipes.clear(); + await clear_tx2.complete; + await clear_tx3.complete;*/ + let add_promises = []; + let add_tx2 = mdb.transaction(['map_db'], 'readwrite'); + let map_store = add_tx2.objectStore('map_db'); + console.log(map_store); + for (const terr of Object.entries(terrdata)) { + add_promises.push(map_store.add(terr[1],terr[0])); //WHY? WHY WOULD YOU STORE AS VALUE, KEY? WHY NOT KEEP THE NORMAL KEY, VALUE CONVENTION? + } + add_promises.push(add_tx2.complete); + + Promise.all(add_promises).then((values) => { + mdb.close(); + init_map_maps(); + init_func(); + }); +} + +function load_map_init(init_func) { + //uncomment below line to force reload + //window.indexedDB.deleteDatabase("map_db", MAP_DB_VERSION) + let request = window.indexedDB.open("map_db", MAP_DB_VERSION) + request.onerror = function() { + console.log("DB failed to open..."); + } + + request.onsuccess = function() { + mdb = request.result; + if (!mreload) { + console.log("Using stored data...") + map_load_local(init_func); + } + else { + console.log("Using new data...") + load_map(init_func); + } + } + + request.onupgradeneeded = function(e) { + mreload = true; + + let mdb = e.target.result; + + try { + mdb.deleteObjectStore('map_db'); + } + catch (error) { + console.log("Could not delete map DB. This is probably fine"); + } + + mdb.createObjectStore('map_db'); + + console.log("DB setup complete..."); + } +} + +function init_map_maps() { + for (const [terr,data] of Object.entries(terrdata)) { + terrs.set(data.territory,data.location); + claims.set(data.territory,data.guild); + if (!guilds.includes(data.guild)) { + guilds.push(data.guild); + } + neighbors.set(data.territory,data.neighbors); + resources.set(data.territory,{"resources":data.resources,"storage":data.storage,"emeralds":data.emeralds,"doubleemeralds":data.doubleemeralds,"doubleresource":data.doubleresource}); + } +} \ No newline at end of file diff --git a/map-narrow.css b/map-narrow.css index b0ef0cc..05b42e5 100644 --- a/map-narrow.css +++ b/map-narrow.css @@ -1,6 +1,10 @@ .mapdiv{ - height: 100vh; + height: 99vh; background: #121516; + width: 90vw; +} +.overall-container{ + margin-bottom: 10px; } .container{ width: 95%; @@ -12,5 +16,59 @@ display: grid; grid-template-columns: 1fr 1fr 1fr; grid-column-gap: 5px; - grid-auto-rows: minmax(60px, auto); + grid-auto-rows: minmax(32px, auto); +} +.leaflet-tooltip.labelp { + font-family: 'Nunito', sans-serif; + white-space: nowrap; + border: 0; + margin: 0; + padding: 0; + border-radius: 0; + border: rgba(0,0,0,0); + background-color: rgba(0,0,0,0); + display: block; + box-sizing: border-box; + box-shadow: none; + text-align: center; + text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, 0 0 1px #000; +} +.labelp { + position: relative; + word-break: break-word; + overflow-wrap: break-word; +} +.leaflet-tooltip-left { + border-left-color: transparent; +} +.leaflet-tooltip-right{ + border-right-color: transparent; +} +.Emeralds{ + border:2px solid #4ae024; +} +.Ore{ + border:2px solid #7d7b74; +} +.Wood{ + border:2px solid #855E42; +} +.Crops{ + border:2px solid #e3cea6; +} +.Fish{ + border:2px solid #a6d8e3; +} + + +.resourceimg { + border-radius: 2px; + z-index: 20000000; +} +.marker { + z-index: 200000000; +} +.nomargin{ + margin-top: 2px; + margin-bottom: 2px; } \ No newline at end of file diff --git a/map-wide.css b/map-wide.css index 283d2b1..68b6326 100644 --- a/map-wide.css +++ b/map-wide.css @@ -1,5 +1,5 @@ .mapdiv{ - height: 100vh; + height: 99vh; background: #121516; } .overall-container { @@ -7,16 +7,70 @@ grid-template-columns: 80% 20%; grid-column-gap: 5px; grid-auto-rows: minmax(60px, auto); + margin-bottom: 10px; } .coord-container { display: grid; grid-template-columns: 30% 30% 30%; grid-column-gap: 5px; - grid-auto-rows: minmax(60px, auto); + grid-auto-rows: minmax(32px, auto); } .container{ width: 95%; border: 3px solid #BCBCBC; - border-radius: 3px; - + border-radius: 3px; +} +.leaflet-tooltip.labelp { + font-family: 'Nunito', sans-serif; + font-size: 1.1em; + white-space: nowrap; + border: 0; + margin: 0; + padding: 0; + border-radius: 0; + border: rgba(0,0,0,0); + background-color: rgba(0,0,0,0); + box-sizing: border-box; + box-shadow: none; + text-align: center; + text-shadow: 1px 1px 0 #000, -1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, 0 0 1px #000; +} +.labelp { + position: relative; + overflow-wrap: break-word; +} +.leaflet-tooltip-left { + border-left-color: transparent; +} +.leaflet-tooltip-right{ + border-right-color: transparent; +} +.Emeralds{ + border:2px solid #4ae024; +} +.Ore{ + border:2px solid #7d7b74; +} +.Wood{ + border:2px solid #855E42; +} +.Crops{ + border:2px solid #e3cea6; +} +.Fish{ + border:2px solid #a6d8e3; +} + + +.resourceimg { + border-radius: 2px; + z-index: 20000000; +} + +.marker{ + z-index: 200000000; +} +.nomargin{ + margin-top: 2px; + margin-bottom: 2px; } \ No newline at end of file diff --git a/map.html b/map.html index ef070e8..d2ed4b1 100644 --- a/map.html +++ b/map.html @@ -11,9 +11,9 @@ - - - + + + @@ -74,27 +74,75 @@
-
-

Options

-
-
X
-
-
Z
-
-
+

+

Options

+

+

X

+

+

Z

+

+

-

-
-
-
+

+

+

+

-

-
+

+

+
+
+ + + + + + +

Do NOT refresh too often.

+
+
+
+
+
+

All Keys

+
+ + + + + +
+ + + +
+ + + +
+ + + diff --git a/map.js b/map.js index 4df8378..e02e5fa 100644 --- a/map.js +++ b/map.js @@ -27,18 +27,39 @@ setTitle(); var map; var image; -let terrs = []; -let claims = []; + + var marker; -let markers = []; +var guilds = []; +var guildTags = new Map(); //guild name : guild tag. Ex: Atlas Inc : AIn +var guildColors = new Map(); + +let terrObjs = []; +let claimObjs = []; +//let guildObjs = []; +let routeObjs = []; +let resourceObjs = []; + +let drawterrs = false; +let drawclaims = false; +let drawroutes = false; +let drawresources = false; +let drawmerchants = false; //latitude, longitude is y, x!!!! const bounds = [[0,0], [6484, 4090]]; +const resourceColors = new Map([ + ["Emeralds","#4ae024"], + ["Ore","#7d7b74"], + ["Wood","#855E42"], + ["Crops","#e3cea6"], + ["Fish","#a6d8e3"] +]); /** Thanks to kristofbolyai's github page for showing me how to do all of this. * */ -function init(){ +function init(){ //async just in case we need async stuff map_elem = document.getElementById("mapdiv"); let coordx_elem = document.getElementById("coord-x"); let coordz_elem = document.getElementById("coord-z"); @@ -85,9 +106,25 @@ function init(){ } }); - - map_elem.style.background = "#121516"; + + try { + pullguilds(); + } catch (error) { + console.log(error); + let header = document.getElementsById("header"); + let warning = document.createElement("p"); + warning.classList.add("center"); + warning.style.color = "red"; + warning.textContent = ""; + header.append(warning); + } + console.log("Territory locations:", terrs); + console.log("Claims:", claims); + console.log("Territory Neighbors:", neighbors); + console.log("Territory Resources", resources); + console.log("List of guilds on the map:", guilds); + console.log("Guilds and their guild tags:", guildTags); } /** Places the marker at x, y. @@ -108,17 +145,18 @@ function placeMarker(lat, lng) { shadowUrl: '/media/icons/shadow.png', shadowSize: [1,1], shadowAnchor: [16, 32], + className: "marker" })}); let mcdx = document.getElementById("marker-coord-x"); mcdx.textContent = coords[0]; mcdx.style.display = "grid-item-7"; let mcdi = document.getElementById("marker-coord-img"); - mcdx.style.display = "grid-item-8"; + mcdi.style.display = "grid-item-8"; let mcdz = document.getElementById("marker-coord-z"); mcdz.textContent = coords[1]; - mcdx.style.display = "grid-item-9"; - location.hash = coords[0] + "," + coords[1] + mcdz.style.display = "grid-item-9"; + location.hash = coords[0] + "," + coords[1]; marker.addTo(map); } @@ -134,4 +172,352 @@ function latlngtoxy(lat, lng) { return [lng-2392, -lat-123]; //x, y } -init(); \ No newline at end of file +/** Toggles a button on and off + * + * @param {String} elemID - element ID of button + */ +function toggleButton(elemID) { + let elem = document.getElementById(elemID); + if (elem.classList.contains("toggleOn")) { + elem.classList.remove("toggleOn"); + elem.textContent = elem.textContent.replace("Hide","Show"); + } else { + elem.classList.add("toggleOn"); + elem.textContent = elem.textContent.replace("Show","Hide"); + } + +} + + + +/** Pulls data from the API and overrides all of the current stuff with it. Do NOT call this too often. Called once, upon initialization. + * + */ +async function refreshData() { //async just in case we need async stuff + terrs = new Map(); + claims = new Map(); + guilds = []; + + + const url='https://api.wynncraft.com/public_api.php?action=territoryList'; + fetch(url) + .then(data => {return data.json()}) + .then(res => { //success + terrdata = Object.entries(res['territories']); + console.log(terrdata); + for (const terr of terrdata) { + //terrs.set(terr[0], terr[1].location) //bounds shouldnt change + claims.set(terr[0], terr[1].guild) + if (!guilds.includes(terr[1].guild)) { + guilds.push(terr[1].guild); + } + } + pullguilds(); + console.log("Succesfully pulled and loaded territory data.") + }) + .catch(error => { //failure + console.log(error) + console.log("Something went wrong pulling and loading territory data. Attempting to load from file...") + /* @hpp could we eventually get something that writes to local cache on success and attempts to pull from local cache if fails + */ + }) +} + + +function pullguilds() { + let guild_url_base = "https://api.wynncraft.com/public_api.php?action=guildStats&command="; + for (const guild of guilds) { + fetch(guild_url_base + guild.replaceAll(" ", "%20")) + .then(data => {return data.json()}) + .then(res => { + guildTags.set(guild, res.prefix); + guildColors.set(guild, randomColorHSL([0,1],[0,1],[0.4,1])); + console.log("Succesfully pulled guild data for " + guild + "."); + }) + .catch(error => { + console.log(error); + console.log("Something went wrong pulling guild data for " + guild + "."); + }) + } +} + + + +/** These functions toggle drawing of their related objects + * + */ + +function toggleTerritories() { + function drawTerritories() { + for (const [terr,terrbounds] of terrs) { + let coords = [xytolatlng(terrbounds.startX,terrbounds.startY), xytolatlng(terrbounds.startX,terrbounds.endY), xytolatlng(terrbounds.endX,terrbounds.endY), xytolatlng(terrbounds.endX,terrbounds.startY)]; + let terrObj = L.polygon(coords, {color: '#f6c328'}).on('mouseover',function(e){displayTerritoryStats(terr)}).on('mouseoff',function(e){eraseTerritoryStats()}).addTo(map); + terrObj.bindTooltip(`

${terr}

`, {sticky: true, className:"labelp", interactive: false, permanent: true, direction: 'center'}); + terrObjs.push(terrObj); + } + console.log("Drew all territories"); + } + function deleteTerritories() { + for (const terr of terrObjs) { + map.removeLayer(terr); + } + terrObjs = []; + console.log("Erased all territories"); + } + + drawterrs = !drawterrs; + + if (drawterrs) {drawTerritories()} + else {deleteTerritories()} +} + +function toggleClaims() { + if(drawterrs) {toggleTerritories(); toggleButton("territories-button")} + let guildkey = document.getElementById("guild-key"); + let guildkeylist = document.getElementById("guildkeylist"); + + function drawClaims() { + for (const [terr,terrbounds] of terrs) { + let guild = claims.get(terr); + let coords = [xytolatlng(terrbounds.startX,terrbounds.startY), xytolatlng(terrbounds.startX,terrbounds.endY), xytolatlng(terrbounds.endX,terrbounds.endY), xytolatlng(terrbounds.endX,terrbounds.startY)]; + let claimObj = L.polygon(coords, {color: `${guildColors.get(guild)}`}).on('mouseover',function(e){displayTerritoryStats(terr)}).on('mouseoff',function(e){eraseTerritoryStats()}).addTo(map); + claimObj.bindTooltip(`

${terr}
${guildTags.get(guild)}

`, {sticky: true, className:"labelp", interactive: false, permanent: true, direction: 'center'}); + + claimObjs.push(claimObj); + } + guildkey.style.display = ""; + for (const guild of guilds) { + let guildLI = document.createElement("li"); + guildLI.style.color = guildColors.get(guild); + guildLI.textContent = guildTags.get(guild) + " | " + guild; + guildkeylist.appendChild(guildLI); + } + console.log("Drew all claims") + } + function deleteClaims() { + for (const claim of claimObjs) { + map.removeLayer(claim); + } + claimObjs = []; + guildkeylist.innerHTML = ""; + guildkey.style.display = "none"; + console.log("Erased all claims"); + } + + drawclaims = !drawclaims; + if (drawclaims) {drawClaims()} + else {deleteClaims()} +} + +function toggleRoutes() { + function drawRoutes() { + let drawnRoutes = []; + for (const [terr,terrbounds] of terrs) { + for (const neighbor of neighbors.get(terr)) { + if (!drawnRoutes.includes([neighbor,terr])) { + let coords = [xytolatlng( (terrbounds.startX + terrbounds.endX)/2,(terrbounds.startY + terrbounds.endY)/2 ),xytolatlng( (terrs.get(neighbor).startX + terrs.get(neighbor).endX)/2, (terrs.get(neighbor).startY + terrs.get(neighbor).endY)/2)]; + let routeObj = L.polyline(coords, {color: '#990000'}).addTo(map); + drawnRoutes.push([terr,neighbor]); + routeObjs.push(routeObj); + } + } + } + console.log("Drew all territories"); + } + function deleteRoutes() { + for (const route of routeObjs) { + map.removeLayer(route); + } + routeObjs = []; + console.log("Erased all routes"); + } + + drawroutes = !drawroutes; + if (!drawterrs && !drawclaims && drawroutes) { + toggleTerritories(); + toggleButton("territories-button"); + } else if (drawterrs && drawclaims && drawroutes) { //this shouldn't happen + toggleClaims(); + toggleButton("claims-button"); + } + + if (drawroutes) {drawRoutes()} + else {deleteRoutes()} +} + +function toggleResources() { + let resourcekeyelem = document.getElementById("resources-key"); + function drawResources() { + + for (const terr of terrs.keys()) { + //get resources of territory, dupe if doubleresources + let terr_resources = resources.get(terr).resources.slice(); + let terr_storage = resources.get(terr).storage.slice(); + if (resources.get(terr).doubleresource) { + let temp = []; + for (const resource of terr_resources) { + temp.push(resource); + temp.push(resource); + } + terr_resources = temp.slice(); + } + if (resources.get(terr).emeralds) { + terr_resources.push("Emeralds"); + if (resources.get(terr).doubleemeralds) { + terr_resources.push("Emeralds"); + } + } + + //territory bounds from bottom left to top right + let bounds = [ [terrs.get(terr).startX, terrs.get(terr).startY], [terrs.get(terr).endX, terrs.get(terr).endY] ]; + if (bounds[0][0] > bounds[1][0]) { + let temp = bounds[1][0]; + bounds[1][0] = bounds[0][0]; + bounds[0][0] = temp; + } + if (bounds[0][1] < bounds[1][1]) { + let temp = bounds[1][1]; + bounds[1][1] = bounds[0][1]; + bounds[0][1] = temp; + } + let TRcorner = bounds[1]; + let DRcorner = [bounds[1][0],bounds[0][1]]; + let gap = 3; + + //draw resource generation + for (const n in terr_resources) { + let resource = terr_resources[n]; + + let imgBounds = [ [ TRcorner[0]-(16*n)-20-gap*n,TRcorner[1]+4], [ TRcorner[0]-(16*n)-4-gap*n,TRcorner[1]+20] ]; + imgBounds = [xytolatlng(imgBounds[0][0],imgBounds[0][1]), xytolatlng(imgBounds[1][0],imgBounds[1][1])]; + + let resourceObj = L.imageOverlay("/media/icons/"+resource+".png", imgBounds, {className: `${resource} resourceimg`}).addTo(map); + resourceObjs.push(resourceObj); + } + let gearObj = L.imageOverlay("/media/icons/Gears.png", [xytolatlng(TRcorner[0]-(16*terr_resources.length)-20-gap*terr_resources.length,TRcorner[1]+4), xytolatlng(TRcorner[0]-(16*terr_resources.length)-4-gap*terr_resources.length,TRcorner[1]+20)], {className: `Ore resourceimg`}).addTo(map); + resourceObjs.push(gearObj); + //draw resource storage + for (const n in terr_storage) { + let storage = terr_storage[n]; + + let imgBounds = [ [ DRcorner[0]-(16*n)-20-gap*n,DRcorner[1]-20], [ DRcorner[0]-(16*n)-4-gap*n,DRcorner[1]-4] ]; + imgBounds = [xytolatlng(imgBounds[0][0],imgBounds[0][1]), xytolatlng(imgBounds[1][0],imgBounds[1][1])]; + + let resourceObj = L.imageOverlay("/media/icons/"+storage+".png", imgBounds, {alt: `${storage}`, className: `${storage} resourceimg`}).addTo(map); + resourceObjs.push(resourceObj); + } + let chestObj = L.imageOverlay("/media/icons/Chest.png", [xytolatlng(DRcorner[0]-(16*terr_storage.length)-20-gap*terr_storage.length,DRcorner[1]-20), xytolatlng(DRcorner[0]-(16*terr_storage.length)-4-gap*terr_storage.length,DRcorner[1]-4)], {className: `Wood resourceimg`}).addTo(map); + resourceObjs.push(chestObj); + } + + resourcekeyelem.style.display = ""; + console.log("Drew all resources"); + } + function deleteResources() { + for (const resourceObj of resourceObjs) { + console.log(resourceObj); + map.removeLayer(resourceObj); + } + resourceObjs = []; + resourcekeyelem.style.display = "none"; + console.log("Erased all resources") + } + + drawresources = !drawresources; + if (!drawterrs && !drawclaims && drawresources) { + toggleTerritories(); + toggleButton("territories-button"); + } else if (drawterrs && drawclaims && drawresources) { //this shouldn't happen + toggleClaims(); + toggleButton("claims-button"); + } + + if (drawresources) {drawResources()} + else {deleteResources()} +} + +/** Displays the territory stats in the territory stats div. + * + * @param {String} terr - the territory name + */ +function displayTerritoryStats(terr) { + let terr_stats_elem = document.getElementById("territory-stats"); + terr_stats_elem.innerHTML = ""; //jank + + let terr_resource_stats = resources.get(terr); + let terr_resources = terr_resource_stats.resources.slice(); + let terr_storage = terr_resource_stats.storage.slice(); + let doubleemeralds = terr_resource_stats.doubleemeralds; + let emeralds = terr_resource_stats.emeralds; + let doubleresource = terr_resource_stats.doubleresource; + + if (drawterrs || drawclaims || drawresources) { + let stats_title = document.createElement("p"); + stats_title.classList.add("smalltitle"); + stats_title.style.maxWidth = "95%"; + stats_title.style.wordBreak = "break-word"; + stats_title.textContent = terr; + terr_stats_elem.appendChild(stats_title); + + let bounds = terrs.get(terr); + let p = document.createElement("p"); + p.classList.add("left"); + p.textContent = "(" + bounds.startX + ", " + bounds.startY + ") \u279C (" + bounds.endX + ", " + bounds.endY + ")"; + terr_stats_elem.appendChild(p); + + p = document.createElement("p"); + p.classList.add("left"); + p.textContent = claims.get(terr) + " (" + guildTags.get(claims.get(terr)) + ")"; + terr_stats_elem.appendChild(p); + + let neighbors_elem = document.createElement("p"); + neighbors_elem.classList.add("left"); + neighbors_elem.style.maxWidth = "95%"; + neighbors_elem.style.wordBreak = "break-word"; + neighbors_elem.textContent = "Neighbors: " + for (const neighbor of neighbors.get(terr)) { + neighbors_elem.textContent += neighbor + ", " + } + neighbors_elem.textContent = neighbors_elem.textContent.slice(0,-2); + terr_stats_elem.appendChild(neighbors_elem); + + let produce_elem = document.createElement("p"); + produce_elem.classList.add("left"); + produce_elem.style.maxWidth = "95%"; + produce_elem.style.wordBreak = "break-word"; + produce_elem.textContent = "Produces: " + for (const resource of terr_resources) { + produce_elem.textContent += resource + (doubleresource ? " x2" : "") + ", "; + } + if (emeralds) { + produce_elem.textContent += "Emeralds" + (doubleemeralds ? " x2" : "") + ", "; + } + produce_elem.textContent = produce_elem.textContent.slice(0,-2); + terr_stats_elem.appendChild(produce_elem); + + let storage_elem = document.createElement("p"); + storage_elem.classList.add("left"); + storage_elem.style.maxWidth = "95%"; + storage_elem.style.wordBreak = "break-word"; + storage_elem.textContent = "Stores: " + for (const resource of terr_storage) { + storage_elem.textContent += resource + ", "; + } + storage_elem.textContent = storage_elem.textContent.slice(0,-2); + terr_stats_elem.appendChild(storage_elem); + + } +} +function eraseTerritoryStats() { + let terr_stats_elem = document.getElementById("territory-stats"); + terr_stats_elem.innerHTML = ""; //jank +} + +/** Toggles all merchant icons/markers on the map. TODO. + * + */ +function toggleMerchants() { + +} + +load_map_init(init); \ No newline at end of file diff --git a/media/icons/Chest.png b/media/icons/Chest.png new file mode 100644 index 0000000..846faa9 Binary files /dev/null and b/media/icons/Chest.png differ diff --git a/media/icons/Crops.png b/media/icons/Crops.png new file mode 100644 index 0000000..d978b29 Binary files /dev/null and b/media/icons/Crops.png differ diff --git a/media/icons/Emeralds.png b/media/icons/Emeralds.png new file mode 100644 index 0000000..8ba6534 Binary files /dev/null and b/media/icons/Emeralds.png differ diff --git a/media/icons/Fish.png b/media/icons/Fish.png new file mode 100644 index 0000000..1a797a9 Binary files /dev/null and b/media/icons/Fish.png differ diff --git a/media/icons/Gears.png b/media/icons/Gears.png new file mode 100644 index 0000000..74a9944 Binary files /dev/null and b/media/icons/Gears.png differ diff --git a/media/icons/Ore.png b/media/icons/Ore.png new file mode 100644 index 0000000..d96b00d Binary files /dev/null and b/media/icons/Ore.png differ diff --git a/media/icons/Wood.png b/media/icons/Wood.png new file mode 100644 index 0000000..7ec4e60 Binary files /dev/null and b/media/icons/Wood.png differ diff --git a/media/memes/agony.png b/media/memes/agony.png new file mode 100644 index 0000000..aa91fd0 Binary files /dev/null and b/media/memes/agony.png differ diff --git a/media/memes/doom.png b/media/memes/doom.png new file mode 100644 index 0000000..42ec579 Binary files /dev/null and b/media/memes/doom.png differ diff --git a/media/memes/enraged.png b/media/memes/enraged.png new file mode 100644 index 0000000..8478ea3 Binary files /dev/null and b/media/memes/enraged.png differ diff --git a/media/memes/lmoa.png b/media/memes/lmoa.png new file mode 100644 index 0000000..71ea2c7 Binary files /dev/null and b/media/memes/lmoa.png differ diff --git a/media/memes/sunglaso.png b/media/memes/sunglaso.png new file mode 100644 index 0000000..521c09c Binary files /dev/null and b/media/memes/sunglaso.png differ diff --git a/media/memes/thonk.png b/media/memes/thonk.png new file mode 100644 index 0000000..b943a5b Binary files /dev/null and b/media/memes/thonk.png differ diff --git a/terrs.json b/terrs.json new file mode 100644 index 0000000..19aefdb --- /dev/null +++ b/terrs.json @@ -0,0 +1 @@ +{"territories": {"Ragni": {"territory": "Ragni", "guild": "ShadowFall", "acquired": "2021-02-20 16:17:55", "attacker": null, "location": {"startX": -955, "startY": -1415, "endX": -756, "endY": -1748}}, "Emerald Trail": {"territory": "Emerald Trail", "guild": "ShadowFall", "acquired": "2021-03-14 18:15:58", "attacker": null, "location": {"startX": -615, "startY": -1530, "endX": -436, "endY": -1652}}, "Ragni North Entrance": {"territory": "Ragni North Entrance", "guild": "ShadowFall", "acquired": "2021-03-03 04:31:17", "attacker": null, "location": {"startX": -944, "startY": -1761, "endX": -818, "endY": -1859}}, "Ragni North Suburbs": {"territory": "Ragni North Suburbs", "guild": "ShadowFall", "acquired": "2021-03-14 01:12:52", "attacker": null, "location": {"startX": -817, "startY": -1859, "endX": -762, "endY": -1761}}, "Ragni Plains": {"territory": "Ragni Plains", "guild": "ShadowFall", "acquired": "2021-03-14 18:05:40", "attacker": null, "location": {"startX": -747, "startY": -1776, "endX": -605, "endY": -1945}}, "Maltic Coast": {"territory": "Maltic Coast", "guild": "Nerfuria", "acquired": "2021-03-13 22:02:59", "attacker": null, "location": {"startX": -564, "startY": -2059, "endX": -400, "endY": -1946}}, "Maltic Plains": {"territory": "Maltic Plains", "guild": "HackForums", "acquired": "2021-03-14 18:35:32", "attacker": null, "location": {"startX": -564, "startY": -1883, "endX": -436, "endY": -1653}}, "Pigmen Ravines Entrance": {"territory": "Pigmen Ravines Entrance", "guild": "ShadowFall", "acquired": "2021-03-13 21:44:05", "attacker": null, "location": {"startX": -924, "startY": -1398, "endX": -784, "endY": -1307}}, "South Pigmen Ravines": {"territory": "South Pigmen Ravines", "guild": "ShadowFall", "acquired": "2021-03-13 21:54:05", "attacker": null, "location": {"startX": -898, "startY": -1298, "endX": -678, "endY": -1221}}, "Time Valley": {"territory": "Time Valley", "guild": "ShadowFall", "acquired": "2021-03-13 21:15:42", "attacker": null, "location": {"startX": -563, "startY": -1261, "endX": -406, "endY": -1006}}, "Sanctuary Bridge": {"territory": "Sanctuary Bridge", "guild": "The Aquarium", "acquired": "2021-03-14 18:19:25", "attacker": null, "location": {"startX": -324, "startY": -1130, "endX": -192, "endY": -993}}, "Elkurn Fields": {"territory": "Elkurn Fields", "guild": "ShadowFall", "acquired": "2021-03-14 18:20:35", "attacker": null, "location": {"startX": -357, "startY": -1325, "endX": -99, "endY": -1141}}, "Nivla Woods": {"territory": "Nivla Woods", "guild": "ShadowFall", "acquired": "2021-03-11 20:28:56", "attacker": null, "location": {"startX": -325, "startY": -1624, "endX": -196, "endY": -1460}}, "South Nivla Woods": {"territory": "South Nivla Woods", "guild": "The Aquarium", "acquired": "2021-03-14 18:27:53", "attacker": null, "location": {"startX": -350, "startY": -1440, "endX": -99, "endY": -1330}}, "Elkurn": {"territory": "Elkurn", "guild": "ShadowFall", "acquired": "2021-03-14 18:33:45", "attacker": null, "location": {"startX": -98, "startY": -1250, "endX": 62, "endY": -1080}}, "Corrupted Road": {"territory": "Corrupted Road", "guild": "The Dark Phoenix", "acquired": "2021-03-10 18:10:54", "attacker": null, "location": {"startX": 22, "startY": -1479, "endX": 96, "endY": -1261}}, "Detlas Far Suburbs": {"territory": "Detlas Far Suburbs", "guild": "The Dark Phoenix", "acquired": "2021-03-10 17:57:00", "attacker": null, "location": {"startX": 29, "startY": -1657, "endX": 188, "endY": -1500}}, "Detlas Close Suburbs": {"territory": "Detlas Close Suburbs", "guild": "The Dark Phoenix", "acquired": "2021-03-10 17:21:57", "attacker": null, "location": {"startX": 300, "startY": -1657, "endX": 389, "endY": -1500}}, "South Farmers Valley": {"territory": "South Farmers Valley", "guild": "Nerfuria", "acquired": "2021-03-13 21:45:39", "attacker": null, "location": {"startX": -472, "startY": -1944, "endX": -255, "endY": -1887}}, "Arachnid Route": {"territory": "Arachnid Route", "guild": "Nerfuria", "acquired": "2021-02-26 21:47:00", "attacker": null, "location": {"startX": -261, "startY": -1881, "endX": -109, "endY": -1808}}, "Tower of Ascension": {"territory": "Tower of Ascension", "guild": "Fuzzy Spiders", "acquired": "2021-03-11 00:40:05", "attacker": null, "location": {"startX": -400, "startY": -450, "endX": -315, "endY": -330}}, "Mage Island": {"territory": "Mage Island", "guild": "The Mage Legacy", "acquired": "2021-03-07 00:09:15", "attacker": null, "location": {"startX": 805, "startY": -2960, "endX": 983, "endY": -2787}}, "Twain Mansion": {"territory": "Twain Mansion", "guild": "GlowOfDust", "acquired": "2021-03-14 18:26:07", "attacker": null, "location": {"startX": 95, "startY": -407, "endX": 140, "endY": -310}}, "Nesaak Plains South East": {"territory": "Nesaak Plains South East", "guild": "Fuzzy Spiders", "acquired": "2021-03-06 16:05:27", "attacker": null, "location": {"startX": 76, "startY": -757, "endX": 230, "endY": -660}}, "Nesaak Plains North East": {"territory": "Nesaak Plains North East", "guild": "Fuzzy Spiders", "acquired": "2021-03-06 03:48:35", "attacker": null, "location": {"startX": 110, "startY": -873, "endX": 240, "endY": -1035}}, "Nesaak Plains Upper North West": {"territory": "Nesaak Plains Upper North West", "guild": "Fuzzy Spiders", "acquired": "2021-03-13 21:02:06", "attacker": null, "location": {"startX": 70, "startY": -950, "endX": -140, "endY": -1060}}, "Nesaak Bridge Transition": {"territory": "Nesaak Bridge Transition", "guild": "Fuzzy Spiders", "acquired": "2021-03-06 16:43:50", "attacker": null, "location": {"startX": -115, "startY": -630, "endX": -240, "endY": -780}}, "Great Bridge Nesaak": {"territory": "Great Bridge Nesaak", "guild": "Fuzzy Spiders", "acquired": "2021-03-06 16:49:08", "attacker": null, "location": {"startX": -275, "startY": -620, "endX": -390, "endY": -790}}, "Jungle Lower": {"territory": "Jungle Lower", "guild": "ShadowFall", "acquired": "2021-03-13 23:26:43", "attacker": null, "location": {"startX": -515, "startY": -610, "endX": -600, "endY": -790}}, "Jungle Upper": {"territory": "Jungle Upper", "guild": "ShadowFall", "acquired": "2021-03-13 22:36:35", "attacker": null, "location": {"startX": -671, "startY": -779, "endX": -810, "endY": -630}}, "Temple of Legends": {"territory": "Temple of Legends", "guild": "ShadowFall", "acquired": "2021-03-13 22:00:41", "attacker": null, "location": {"startX": -631, "startY": -973, "endX": -745, "endY": -1093}}, "Rymek East Lower": {"territory": "Rymek East Lower", "guild": "WrathOfTheFallen", "acquired": "2021-03-14 17:58:12", "attacker": null, "location": {"startX": 1210, "startY": -1270, "endX": 1400, "endY": -1390}}, "Rymek East Upper": {"territory": "Rymek East Upper", "guild": "WrathOfTheFallen", "acquired": "2021-03-14 18:18:50", "attacker": null, "location": {"startX": 1479, "startY": -1579, "endX": 1210, "endY": -1780}}, "Rymek West Mid": {"territory": "Rymek West Mid", "guild": "WrathOfTheFallen", "acquired": "2021-03-14 18:15:21", "attacker": null, "location": {"startX": 1211, "startY": -1410, "endX": 1000, "endY": -1530}}, "Desert East Upper": {"territory": "Desert East Upper", "guild": "WrathOfTheFallen", "acquired": "2021-03-14 18:29:08", "attacker": null, "location": {"startX": 1260, "startY": -2170, "endX": 1450, "endY": -2370}}, "Desert East Lower": {"territory": "Desert East Lower", "guild": "Paladins United", "acquired": "2021-03-14 18:24:22", "attacker": null, "location": {"startX": 1450, "startY": -2020, "endX": 1270, "endY": -1785}}, "Desert Mid-Upper": {"territory": "Desert Mid-Upper", "guild": "Aequitas", "acquired": "2021-03-14 18:21:32", "attacker": null, "location": {"startX": 1195, "startY": -2120, "endX": 1060, "endY": -1935}}, "Desert Lower": {"territory": "Desert Lower", "guild": "Titans Valor", "acquired": "2021-03-14 18:31:58", "attacker": null, "location": {"startX": 1210, "startY": -1810, "endX": 1040, "endY": -1680}}, "Mummy's Tomb": {"territory": "Mummy's Tomb", "guild": "Paladins United", "acquired": "2021-03-14 18:15:14", "attacker": null, "location": {"startX": 990, "startY": -2270, "endX": 1120, "endY": -2400}}, "Desert West Lower": {"territory": "Desert West Lower", "guild": "Ultra Violet", "acquired": "2021-03-14 18:20:00", "attacker": null, "location": {"startX": 1040, "startY": -1681, "endX": 900, "endY": -1870}}, "Savannah East Upper": {"territory": "Savannah East Upper", "guild": "Emorians", "acquired": "2021-03-14 18:29:11", "attacker": null, "location": {"startX": 750, "startY": -2060, "endX": 820, "endY": -1895}}, "Savannah West Upper": {"territory": "Savannah West Upper", "guild": "Emorians", "acquired": "2021-03-14 15:13:58", "attacker": null, "location": {"startX": 750, "startY": -2060, "endX": 570, "endY": -1870}}, "Lion Lair": {"territory": "Lion Lair", "guild": "Emorians", "acquired": "2021-03-14 16:47:44", "attacker": null, "location": {"startX": 890, "startY": -2140, "endX": 790, "endY": -2320}}, "Plains Coast": {"territory": "Plains Coast", "guild": "Nerfuria", "acquired": "2021-03-10 18:16:38", "attacker": null, "location": {"startX": 5, "startY": -2270, "endX": -320, "endY": -2090}}, "Nemract Plains West": {"territory": "Nemract Plains West", "guild": "Nerfuria", "acquired": "2021-03-10 18:05:36", "attacker": null, "location": {"startX": 5, "startY": -1960, "endX": -100, "endY": -1810}}, "Ancient Nemract": {"territory": "Ancient Nemract", "guild": "Nerfuria", "acquired": "2021-03-12 06:57:57", "attacker": null, "location": {"startX": 152, "startY": -1832, "endX": 290, "endY": -1999}}, "Cathedral Harbour": {"territory": "Cathedral Harbour", "guild": "Nerfuria", "acquired": "2021-03-12 06:48:41", "attacker": null, "location": {"startX": 385, "startY": -2180, "endX": 570, "endY": -1950}}, "Rooster Island": {"territory": "Rooster Island", "guild": "The Mage Legacy", "acquired": "2021-03-08 04:31:34", "attacker": null, "location": {"startX": -128, "startY": -2448, "endX": -30, "endY": -2538}}, "Selchar": {"territory": "Selchar", "guild": "The Mage Legacy", "acquired": "2021-03-07 00:52:28", "attacker": null, "location": {"startX": -100, "startY": -3070, "endX": 210, "endY": -3270}}, "Durum Isles Upper": {"territory": "Durum Isles Upper", "guild": "The Mage Legacy", "acquired": "2021-03-07 00:52:04", "attacker": null, "location": {"startX": 537, "startY": -2994, "endX": 595, "endY": -2924}}, "Durum Isles Lower": {"territory": "Durum Isles Lower", "guild": "The Mage Legacy", "acquired": "2021-03-07 00:41:11", "attacker": null, "location": {"startX": 390, "startY": -2851, "endX": 347, "endY": -2791}}, "Skiens Island": {"territory": "Skiens Island", "guild": "The Mage Legacy", "acquired": "2021-03-06 23:59:56", "attacker": null, "location": {"startX": 527, "startY": -3386, "endX": 297, "endY": -3644}}, "Nodguj Nation": {"territory": "Nodguj Nation", "guild": "The Mage Legacy", "acquired": "2021-03-07 00:07:11", "attacker": null, "location": {"startX": 695, "startY": -3210, "endX": 880, "endY": -3440}}, "Dead Island South East": {"territory": "Dead Island South East", "guild": "The Mage Legacy", "acquired": "2021-03-07 00:20:13", "attacker": null, "location": {"startX": 870, "startY": -3920, "endX": 1000, "endY": -3810}}, "Dead Island South West": {"territory": "Dead Island South West", "guild": "The Mage Legacy", "acquired": "2021-03-07 00:27:07", "attacker": null, "location": {"startX": 870, "startY": -3920, "endX": 745, "endY": -3810}}, "Volcano Upper": {"territory": "Volcano Upper", "guild": "The Mage Legacy", "acquired": "2021-03-07 01:18:29", "attacker": null, "location": {"startX": -929, "startY": -3831, "endX": -722, "endY": -3530}}, "Tree Island": {"territory": "Tree Island", "guild": "The Mage Legacy", "acquired": "2021-03-07 01:24:09", "attacker": null, "location": {"startX": -454, "startY": -3905, "endX": -323, "endY": -3766}}, "Ternaves Plains Upper": {"territory": "Ternaves Plains Upper", "guild": "The Dark Phoenix", "acquired": "2021-03-13 19:47:50", "attacker": null, "location": {"startX": 770, "startY": -1675, "endX": 655, "endY": -1430}}, "Mining Base Upper": {"territory": "Mining Base Upper", "guild": "The Dark Phoenix", "acquired": "2021-03-13 06:35:33", "attacker": null, "location": {"startX": 880, "startY": -1330, "endX": 670, "endY": -1225}}, "Nesaak Transition": {"territory": "Nesaak Transition", "guild": "Fuzzy Spiders", "acquired": "2021-03-13 21:16:15", "attacker": null, "location": {"startX": 330, "startY": -1040, "endX": 75, "endY": -1145}}, "Nether Plains Lower": {"territory": "Nether Plains Lower", "guild": "The Dark Phoenix", "acquired": "2021-02-16 13:53:49", "attacker": null, "location": {"startX": 75, "startY": -1145, "endX": 325, "endY": -1210}}, "Mine Base Plains": {"territory": "Mine Base Plains", "guild": "The Dark Phoenix", "acquired": "2021-03-13 06:46:42", "attacker": null, "location": {"startX": 550, "startY": -1190, "endX": 650, "endY": -1430}}, "Nether Plains Upper": {"territory": "Nether Plains Upper", "guild": "The Dark Phoenix", "acquired": "2021-03-10 17:14:40", "attacker": null, "location": {"startX": 115, "startY": -1360, "endX": 390, "endY": -1495}}, "Detlas Trail West Plains": {"territory": "Detlas Trail West Plains", "guild": "The Dark Phoenix", "acquired": "2021-03-10 17:46:27", "attacker": null, "location": {"startX": 25, "startY": -1660, "endX": 200, "endY": -1800}}, "Llevigar Gate East": {"territory": "Llevigar Gate East", "guild": "Eden", "acquired": "2021-03-07 16:42:02", "attacker": null, "location": {"startX": -1932, "startY": -4648, "endX": -2059, "endY": -4746}}, "Llevigar Farm Plains East": {"territory": "Llevigar Farm Plains East", "guild": "Eden", "acquired": "2021-03-07 16:55:50", "attacker": null, "location": {"startX": -2059, "startY": -4747, "endX": -1931, "endY": -4828}}, "Hive": {"territory": "Hive", "guild": "IceBlue Team", "acquired": "2021-03-09 07:55:33", "attacker": null, "location": {"startX": 381, "startY": -5413, "endX": 286, "endY": -5593}}, "Llevigar Plains East Lower": {"territory": "Llevigar Plains East Lower", "guild": "Eden", "acquired": "2021-03-07 17:26:36", "attacker": null, "location": {"startX": -2059, "startY": -4831, "endX": -1937, "endY": -4909}}, "Llevigar Plains West Upper": {"territory": "Llevigar Plains West Upper", "guild": "Eden", "acquired": "2021-03-07 17:29:15", "attacker": null, "location": {"startX": -2060, "startY": -4912, "endX": -2171, "endY": -5000}}, "Swamp West Lower": {"territory": "Swamp West Lower", "guild": "Eden", "acquired": "2021-03-07 17:36:39", "attacker": null, "location": {"startX": -2060, "startY": -5003, "endX": -2171, "endY": -5075}}, "Swamp East Mid": {"territory": "Swamp East Mid", "guild": "Eden", "acquired": "2021-03-07 17:49:36", "attacker": null, "location": {"startX": -1955, "startY": -5081, "endX": -2059, "endY": -5186}}, "Swamp West Mid-Upper": {"territory": "Swamp West Mid-Upper", "guild": "Eden", "acquired": "2021-03-07 18:13:05", "attacker": null, "location": {"startX": -2171, "startY": -5190, "endX": -2060, "endY": -5309}}, "Swamp West Upper": {"territory": "Swamp West Upper", "guild": "Eden", "acquired": "2021-03-07 15:08:04", "attacker": null, "location": {"startX": -2171, "startY": -5312, "endX": -2060, "endY": -5419}}, "Swamp Dark Forest Transition Lower": {"territory": "Swamp Dark Forest Transition Lower", "guild": "Eden", "acquired": "2021-03-07 14:03:48", "attacker": null, "location": {"startX": -1519, "startY": -5134, "endX": -1631, "endY": -5288}}, "Swamp Dark Forest Transition Upper": {"territory": "Swamp Dark Forest Transition Upper", "guild": "Eden", "acquired": "2021-03-07 14:19:43", "attacker": null, "location": {"startX": -1519, "startY": -5492, "endX": -1626, "endY": -5607}}, "Entrance to Olux": {"territory": "Entrance to Olux", "guild": "Eden", "acquired": "2021-03-07 14:53:05", "attacker": null, "location": {"startX": -1649, "startY": -5246, "endX": -1764, "endY": -5396}}, "Swamp Mountain Base": {"territory": "Swamp Mountain Base", "guild": "BRIS", "acquired": "2021-03-11 23:57:07", "attacker": null, "location": {"startX": -1776, "startY": -5134, "endX": -1898, "endY": -5240}}, "Swamp Mountain Transition Lower": {"territory": "Swamp Mountain Transition Lower", "guild": "Eden", "acquired": "2021-03-07 15:01:54", "attacker": null, "location": {"startX": -2173, "startY": -5466, "endX": -2128, "endY": -5603}}, "Swamp Mountain Transition Mid-Upper": {"territory": "Swamp Mountain Transition Mid-Upper", "guild": "Eden", "acquired": "2021-03-07 15:00:17", "attacker": null, "location": {"startX": -2065, "startY": -5466, "endX": -1982, "endY": -5603}}, "Quartz Mines South West": {"territory": "Quartz Mines South West", "guild": "Eden", "acquired": "2021-03-07 16:44:35", "attacker": null, "location": {"startX": -1776, "startY": -4352, "endX": -1609, "endY": -4524}}, "Quartz Mines North West": {"territory": "Quartz Mines North West", "guild": "Eden", "acquired": "2021-03-07 16:38:59", "attacker": null, "location": {"startX": -1776, "startY": -4664, "endX": -1609, "endY": -4526}}, "Sunspark Camp": {"territory": "Sunspark Camp", "guild": "BRIS", "acquired": "2021-03-11 23:51:54", "attacker": null, "location": {"startX": -1930, "startY": -5099, "endX": -1816, "endY": -4968}}, "Orc Road": {"territory": "Orc Road", "guild": "Eden", "acquired": "2021-03-07 16:35:37", "attacker": null, "location": {"startX": -1927, "startY": -4852, "endX": -1815, "endY": -4700}}, "Sablestone Camp": {"territory": "Sablestone Camp", "guild": "BRIS", "acquired": "2021-03-11 23:31:33", "attacker": null, "location": {"startX": -1800, "startY": -4962, "endX": -1695, "endY": -4854}}, "Iron Road": {"territory": "Iron Road", "guild": "BRIS", "acquired": "2021-03-11 23:43:58", "attacker": null, "location": {"startX": -1688, "startY": -5099, "endX": -1608, "endY": -4969}}, "Llevigar Farm": {"territory": "Llevigar Farm", "guild": "Eden", "acquired": "2021-03-07 15:45:11", "attacker": null, "location": {"startX": -1663, "startY": -4849, "endX": -1556, "endY": -4714}}, "Goblin Plains East": {"territory": "Goblin Plains East", "guild": "Eden", "acquired": "2021-03-07 15:22:50", "attacker": null, "location": {"startX": -1603, "startY": -4963, "endX": -1527, "endY": -4853}}, "Leadin Fortress": {"territory": "Leadin Fortress", "guild": "Eden", "acquired": "2021-03-07 16:05:10", "attacker": null, "location": {"startX": -1403, "startY": -4869, "endX": -1284, "endY": -4748}}, "Efilim Village": {"territory": "Efilim Village", "guild": "Wheres The Finish", "acquired": "2021-03-07 11:54:38", "attacker": null, "location": {"startX": -1020, "startY": -4943, "endX": -1134, "endY": -5078}}, "Efilim East Plains": {"territory": "Efilim East Plains", "guild": "Wheres The Finish", "acquired": "2021-03-07 12:01:07", "attacker": null, "location": {"startX": -1014, "startY": -4944, "endX": -949, "endY": -5079}}, "Light Forest North Entrance": {"territory": "Light Forest North Entrance", "guild": "Wheres The Finish", "acquired": "2021-03-07 15:12:50", "attacker": null, "location": {"startX": -1134, "startY": -4708, "endX": -1030, "endY": -4845}}, "Light Forest South Entrance": {"territory": "Light Forest South Entrance", "guild": "The Mage Legacy", "acquired": "2021-03-07 14:46:03", "attacker": null, "location": {"startX": -1134, "startY": -4548, "endX": -1038, "endY": -4426}}, "Light Forest South Exit": {"territory": "Light Forest South Exit", "guild": "The Mage Legacy", "acquired": "2021-03-07 15:01:53", "attacker": null, "location": {"startX": -646, "startY": -4699, "endX": -733, "endY": -4559}}, "Light Forest West Lower": {"territory": "Light Forest West Lower", "guild": "The Mage Legacy", "acquired": "2021-03-07 15:13:14", "attacker": null, "location": {"startX": -1014, "startY": -4428, "endX": -929, "endY": -4549}}, "Light Forest West Upper": {"territory": "Light Forest West Upper", "guild": "Wheres The Finish", "acquired": "2021-03-07 14:33:39", "attacker": null, "location": {"startX": -1014, "startY": -4708, "endX": -935, "endY": -4845}}, "Light Forest East Mid": {"territory": "Light Forest East Mid", "guild": "Wheres The Finish", "acquired": "2021-03-09 08:03:35", "attacker": null, "location": {"startX": -834, "startY": -4839, "endX": -926, "endY": -4708}}, "Hobbit River": {"territory": "Hobbit River", "guild": "The Mage Legacy", "acquired": "2021-03-07 14:24:20", "attacker": null, "location": {"startX": -926, "startY": -4550, "endX": -806, "endY": -4428}}, "Light Forest Canyon": {"territory": "Light Forest Canyon", "guild": "The Mage Legacy", "acquired": "2021-03-07 15:12:38", "attacker": null, "location": {"startX": -738, "startY": -4708, "endX": -818, "endY": -4840}}, "Lone Farmstead": {"territory": "Lone Farmstead", "guild": "Wheres The Finish", "acquired": "2021-03-07 15:10:01", "attacker": null, "location": {"startX": -942, "startY": -5227, "endX": -1050, "endY": -5116}}, "Gelibord Corrupted Farm": {"territory": "Gelibord Corrupted Farm", "guild": "Eden", "acquired": "2021-03-10 19:41:28", "attacker": null, "location": {"startX": -1056, "startY": -5355, "endX": -1179, "endY": -5448}}, "Taproot Descent": {"territory": "Taproot Descent", "guild": "Eden", "acquired": "2021-03-07 15:04:36", "attacker": null, "location": {"startX": -1425, "startY": -5407, "endX": -1194, "endY": -5589}}, "Fortress South": {"territory": "Fortress South", "guild": "Eden", "acquired": "2021-03-07 14:22:05", "attacker": null, "location": {"startX": -1460, "startY": -5025, "endX": -1272, "endY": -5210}}, "Twisted Housing": {"territory": "Twisted Housing", "guild": "Eden", "acquired": "2021-03-07 15:18:30", "attacker": null, "location": {"startX": -1133, "startY": -5116, "endX": -1053, "endY": -5272}}, "Viscera Pits West": {"territory": "Viscera Pits West", "guild": "Wheres The Finish", "acquired": "2021-03-07 01:57:56", "attacker": null, "location": {"startX": -771, "startY": -5504, "endX": -899, "endY": -5412}}, "Abandoned Manor": {"territory": "Abandoned Manor", "guild": "Wheres The Finish", "acquired": "2021-03-07 11:05:40", "attacker": null, "location": {"startX": -896, "startY": -5232, "endX": -802, "endY": -5102}}, "Kander Mines": {"territory": "Kander Mines", "guild": "Wheres The Finish", "acquired": "2021-03-07 12:23:29", "attacker": null, "location": {"startX": -785, "startY": -5229, "endX": -725, "endY": -5102}}, "Viscera Pits East": {"territory": "Viscera Pits East", "guild": "Wheres The Finish", "acquired": "2021-03-07 01:00:52", "attacker": null, "location": {"startX": -659, "startY": -5424, "endX": -766, "endY": -5508}}, "Old Crossroads South": {"territory": "Old Crossroads South", "guild": "Wheres The Finish", "acquired": "2021-03-07 00:28:23", "attacker": null, "location": {"startX": -648, "startY": -5311, "endX": -567, "endY": -5234}}, "Lexdale": {"territory": "Lexdale", "guild": "Wheres The Finish", "acquired": "2021-03-07 10:46:20", "attacker": null, "location": {"startX": -650, "startY": -5511, "endX": -562, "endY": -5406}}, "Decayed Basin": {"territory": "Decayed Basin", "guild": "Wheres The Finish", "acquired": "2021-03-07 13:27:13", "attacker": null, "location": {"startX": -471, "startY": -5405, "endX": -549, "endY": -5512}}, "Cinfras Entrance": {"territory": "Cinfras Entrance", "guild": "Aequitas", "acquired": "2021-03-07 18:20:53", "attacker": null, "location": {"startX": -555, "startY": -4996, "endX": -717, "endY": -4868}}, "Fallen Village": {"territory": "Fallen Village", "guild": "ChinaNumberOne", "acquired": "2021-03-13 01:02:28", "attacker": null, "location": {"startX": -288, "startY": -5409, "endX": -392, "endY": -5294}}, "Guild Hall": {"territory": "Guild Hall", "guild": "Aequitas", "acquired": "2021-03-07 18:19:48", "attacker": null, "location": {"startX": -349, "startY": -5093, "endX": -137, "endY": -4814}}, "Cinfras's Small Farm": {"territory": "Cinfras's Small Farm", "guild": "Aequitas", "acquired": "2021-03-07 19:18:44", "attacker": null, "location": {"startX": -224, "startY": -4793, "endX": -130, "endY": -4643}}, "Cinfras County Mid-Lower": {"territory": "Cinfras County Mid-Lower", "guild": "Aequitas", "acquired": "2021-03-07 19:51:00", "attacker": null, "location": {"startX": -127, "startY": -4761, "endX": 3, "endY": -4895}}, "Cinfras County Upper": {"territory": "Cinfras County Upper", "guild": "Aequitas", "acquired": "2021-03-07 18:43:37", "attacker": null, "location": {"startX": -127, "startY": -5155, "endX": 3, "endY": -5051}}, "Gylia Lake South West": {"territory": "Gylia Lake South West", "guild": "Aequitas", "acquired": "2021-03-13 05:51:11", "attacker": null, "location": {"startX": -130, "startY": -5173, "endX": -241, "endY": -5271}}, "Gylia Lake North East": {"territory": "Gylia Lake North East", "guild": "ChinaNumberOne", "acquired": "2021-03-12 06:42:36", "attacker": null, "location": {"startX": -128, "startY": -5416, "endX": 21, "endY": -5273}}, "Jitak's Farm": {"territory": "Jitak's Farm", "guild": "ChinaNumberOne", "acquired": "2021-03-12 23:03:44", "attacker": null, "location": {"startX": -122, "startY": -5430, "endX": -218, "endY": -5567}}, "Aldorei Valley Mid": {"territory": "Aldorei Valley Mid", "guild": "Aequitas", "acquired": "2021-03-07 18:31:38", "attacker": null, "location": {"startX": -322, "startY": -4499, "endX": -557, "endY": -4395}}, "Aldorei's River": {"territory": "Aldorei's River", "guild": "Aequitas", "acquired": "2021-03-13 05:51:01", "attacker": null, "location": {"startX": -437, "startY": -4656, "endX": -338, "endY": -4756}}, "Aldorei's North Exit": {"territory": "Aldorei's North Exit", "guild": "Aequitas", "acquired": "2021-03-14 01:43:59", "attacker": null, "location": {"startX": -127, "startY": -4639, "endX": 3, "endY": -4509}}, "Path To The Arch": {"territory": "Path To The Arch", "guild": "Aequitas", "acquired": "2021-03-07 18:22:06", "attacker": null, "location": {"startX": 35, "startY": -4521, "endX": 107, "endY": -4641}}, "Burning Farm": {"territory": "Burning Farm", "guild": "Aequitas", "acquired": "2021-03-07 18:31:24", "attacker": null, "location": {"startX": 107, "startY": -4755, "endX": 35, "endY": -4857}}, "Cinfras Thanos Transition": {"territory": "Cinfras Thanos Transition", "guild": "Aequitas", "acquired": "2021-03-07 20:29:16", "attacker": null, "location": {"startX": 98, "startY": -4957, "endX": 35, "endY": -5046}}, "Path To Thanos": {"territory": "Path To Thanos", "guild": "Aequitas", "acquired": "2021-03-12 02:13:36", "attacker": null, "location": {"startX": 98, "startY": -5049, "endX": 35, "endY": -5149}}, "Military Base": {"territory": "Military Base", "guild": "ChinaNumberOne", "acquired": "2021-03-12 02:29:30", "attacker": null, "location": {"startX": 104, "startY": -5393, "endX": 166, "endY": -5518}}, "Military Base Lower": {"territory": "Military Base Lower", "guild": "ChinaNumberOne", "acquired": "2021-03-12 07:12:49", "attacker": null, "location": {"startX": 244, "startY": -5407, "endX": 168, "endY": -5315}}, "Path To Ozoth's Spire Mid": {"territory": "Path To Ozoth's Spire Mid", "guild": "IceBlue Team", "acquired": "2021-03-10 23:19:25", "attacker": null, "location": {"startX": 199, "startY": -5164, "endX": 260, "endY": -5042}}, "Bandit Cave Lower": {"territory": "Bandit Cave Lower", "guild": "IceBlue Team", "acquired": "2021-03-10 23:19:52", "attacker": null, "location": {"startX": 111, "startY": -5043, "endX": 194, "endY": -4958}}, "Canyon Entrance Waterfall": {"territory": "Canyon Entrance Waterfall", "guild": "IceBlue Team", "acquired": "2021-03-14 16:56:03", "attacker": null, "location": {"startX": 110, "startY": -4869, "endX": 194, "endY": -4741}}, "Canyon Path South East": {"territory": "Canyon Path South East", "guild": "TheNoLifes", "acquired": "2021-03-09 05:32:40", "attacker": null, "location": {"startX": 194, "startY": -4649, "endX": 115, "endY": -4521}}, "Canyon Upper North West": {"territory": "Canyon Upper North West", "guild": "TheNoLifes", "acquired": "2021-03-07 14:13:12", "attacker": null, "location": {"startX": 200, "startY": -4380, "endX": 265, "endY": -4518}}, "Canyon Path South West": {"territory": "Canyon Path South West", "guild": "IceBlue Team", "acquired": "2021-03-14 17:00:16", "attacker": null, "location": {"startX": 265, "startY": -4652, "endX": 200, "endY": -4741}}, "Bandit Camp Exit": {"territory": "Bandit Camp Exit", "guild": "TheNoLifes", "acquired": "2021-03-13 20:16:13", "attacker": null, "location": {"startX": 264, "startY": -4877, "endX": 203, "endY": -4971}}, "Thanos Valley West": {"territory": "Thanos Valley West", "guild": "ChinaNumberOne", "acquired": "2021-03-12 07:05:13", "attacker": null, "location": {"startX": 250, "startY": -5401, "endX": 311, "endY": -5315}}, "Canyon Walk Way": {"territory": "Canyon Walk Way", "guild": "IceBlue Team", "acquired": "2021-03-10 23:18:19", "attacker": null, "location": {"startX": 271, "startY": -5165, "endX": 338, "endY": -5041}}, "Canyon Mountain South": {"territory": "Canyon Mountain South", "guild": "TheNoLifes", "acquired": "2021-03-13 20:16:24", "attacker": null, "location": {"startX": 271, "startY": -4946, "endX": 337, "endY": -4857}}, "Canyon Fortress": {"territory": "Canyon Fortress", "guild": "TheNoLifes", "acquired": "2021-03-11 19:30:17", "attacker": null, "location": {"startX": 271, "startY": -4739, "endX": 338, "endY": -4630}}, "Canyon Dropoff": {"territory": "Canyon Dropoff", "guild": "TheNoLifes", "acquired": "2021-03-11 18:39:46", "attacker": null, "location": {"startX": 334, "startY": -4518, "endX": 269, "endY": -4395}}, "Bandits Toll": {"territory": "Bandits Toll", "guild": "IceBlue Team", "acquired": "2021-03-10 20:47:48", "attacker": null, "location": {"startX": 439, "startY": -5038, "endX": 345, "endY": -5181}}, "Mountain Path": {"territory": "Mountain Path", "guild": "TheNoLifes", "acquired": "2021-03-11 19:57:10", "attacker": null, "location": {"startX": 334, "startY": -4393, "endX": 276, "endY": -4314}}, "Cliff Side of the Lost": {"territory": "Cliff Side of the Lost", "guild": "TheNoLifes", "acquired": "2021-02-23 21:48:54", "attacker": null, "location": {"startX": 340, "startY": -4395, "endX": 437, "endY": -4508}}, "Temple of the Lost East": {"territory": "Temple of the Lost East", "guild": "TheNoLifes", "acquired": "2021-03-13 18:43:00", "attacker": null, "location": {"startX": 440, "startY": -4672, "endX": 341, "endY": -4838}}, "Hive South": {"territory": "Hive South", "guild": "IceBlue Team", "acquired": "2021-03-10 21:04:06", "attacker": null, "location": {"startX": 440, "startY": -5315, "endX": 560, "endY": -5449}}, "Cliffside Waterfall": {"territory": "Cliffside Waterfall", "guild": "IceBlue Team", "acquired": "2021-03-09 06:26:56", "attacker": null, "location": {"startX": 440, "startY": -5183, "endX": 563, "endY": -5080}}, "Air Temple Lower": {"territory": "Air Temple Lower", "guild": "IceBlue Team", "acquired": "2021-03-09 06:27:34", "attacker": null, "location": {"startX": 445, "startY": -4972, "endX": 563, "endY": -4835}}, "Cliffside Lake": {"territory": "Cliffside Lake", "guild": "TheNoLifes", "acquired": "2021-03-11 20:04:03", "attacker": null, "location": {"startX": 445, "startY": -4689, "endX": 570, "endY": -4568}}, "Kandon-Beda": {"territory": "Kandon-Beda", "guild": "TheNoLifes", "acquired": "2021-02-27 00:19:10", "attacker": null, "location": {"startX": 607, "startY": -4579, "endX": 760, "endY": -4372}}, "Cliffside Passage": {"territory": "Cliffside Passage", "guild": "TheNoLifes", "acquired": "2021-03-11 20:09:19", "attacker": null, "location": {"startX": 699, "startY": -4817, "endX": 572, "endY": -4691}}, "Entrance to Thesead North": {"territory": "Entrance to Thesead North", "guild": "TheNoLifes", "acquired": "2021-03-11 18:36:03", "attacker": null, "location": {"startX": 572, "startY": -4935, "endX": 700, "endY": -5028}}, "Chained House": {"territory": "Chained House", "guild": "IceBlue Team", "acquired": "2021-03-09 04:40:10", "attacker": null, "location": {"startX": 574, "startY": -5375, "endX": 699, "endY": -5242}}, "Ranol's Farm": {"territory": "Ranol's Farm", "guild": "IceBlue Team", "acquired": "2021-03-09 06:26:23", "attacker": null, "location": {"startX": 810, "startY": -5551, "endX": 701, "endY": -5377}}, "Thesead": {"territory": "Thesead", "guild": "IceBlue Team", "acquired": "2021-03-09 06:27:15", "attacker": null, "location": {"startX": 747, "startY": -5104, "endX": 872, "endY": -4964}}, "Eltom": {"territory": "Eltom", "guild": "Avicia", "acquired": "2021-03-12 18:56:33", "attacker": null, "location": {"startX": 1029, "startY": -5581, "endX": 828, "endY": -5376}}, "Lava Lake": {"territory": "Lava Lake", "guild": "Avicia", "acquired": "2021-03-12 19:15:19", "attacker": null, "location": {"startX": 1531, "startY": -5553, "endX": 1387, "endY": -5369}}, "Crater Descent": {"territory": "Crater Descent", "guild": "Avicia", "acquired": "2021-03-08 22:25:04", "attacker": null, "location": {"startX": 1383, "startY": -5238, "endX": 1230, "endY": -5067}}, "Volcanic Slope": {"territory": "Volcanic Slope", "guild": "Avicia", "acquired": "2021-03-14 03:53:00", "attacker": null, "location": {"startX": 1531, "startY": -5637, "endX": 1221, "endY": -5555}}, "Temple Island": {"territory": "Temple Island", "guild": "Avicia", "acquired": "2021-02-15 02:26:56", "attacker": null, "location": {"startX": 991, "startY": -4643, "endX": 1124, "endY": -4750}}, "Dernel Jungle Lower": {"territory": "Dernel Jungle Lower", "guild": "ShadowFall", "acquired": "2021-03-13 23:36:09", "attacker": null, "location": {"startX": -737, "startY": -317, "endX": -502, "endY": -530}}, "Dernel Jungle Upper": {"territory": "Dernel Jungle Upper", "guild": "ShadowFall", "acquired": "2021-03-14 05:29:46", "attacker": null, "location": {"startX": -970, "startY": -795, "endX": -900, "endY": -547}}, "Corkus Castle": {"territory": "Corkus Castle", "guild": "Guardian of Wynn", "acquired": "2021-03-06 17:10:44", "attacker": null, "location": {"startX": -1555, "startY": -2968, "endX": -1452, "endY": -2835}}, "Fallen Factory": {"territory": "Fallen Factory", "guild": "Guardian of Wynn", "acquired": "2021-03-06 19:09:13", "attacker": null, "location": {"startX": -1579, "startY": -2662, "endX": -1681, "endY": -2518}}, "Corkus City Mine": {"territory": "Corkus City Mine", "guild": "Guardian of Wynn", "acquired": "2021-03-06 19:11:21", "attacker": null, "location": {"startX": -1394, "startY": -2750, "endX": -1466, "endY": -2831}}, "Factory Entrance": {"territory": "Factory Entrance", "guild": "Guardian of Wynn", "acquired": "2021-03-06 19:16:10", "attacker": null, "location": {"startX": -1683, "startY": -2571, "endX": -1798, "endY": -2730}}, "Corkus Forest North": {"territory": "Corkus Forest North", "guild": "Guardian of Wynn", "acquired": "2021-03-06 17:02:50", "attacker": null, "location": {"startX": -1888, "startY": -2862, "endX": -1682, "endY": -2995}}, "Avos Workshop": {"territory": "Avos Workshop", "guild": "Guardian of Wynn", "acquired": "2021-03-06 22:19:59", "attacker": null, "location": {"startX": -1681, "startY": -3178, "endX": -1888, "endY": -3375}}, "Corkus Countryside": {"territory": "Corkus Countryside", "guild": "Guardian of Wynn", "acquired": "2021-03-06 17:39:43", "attacker": null, "location": {"startX": -1503, "startY": -3191, "endX": -1680, "endY": -3012}}, "Ruined Houses": {"territory": "Ruined Houses", "guild": "Guardian of Wynn", "acquired": "2021-03-06 19:31:43", "attacker": null, "location": {"startX": -1684, "startY": -2569, "endX": -1793, "endY": -2453}}, "Avos Temple": {"territory": "Avos Temple", "guild": "Guardian of Wynn", "acquired": "2021-03-07 01:20:03", "attacker": null, "location": {"startX": -1526, "startY": -3225, "endX": -1378, "endY": -3426}}, "Corkus Outskirts": {"territory": "Corkus Outskirts", "guild": "Guardian of Wynn", "acquired": "2021-03-06 17:27:28", "attacker": null, "location": {"startX": -1502, "startY": -2976, "endX": -1230, "endY": -3224}}, "Sky Castle": {"territory": "Sky Castle", "guild": "Avicia", "acquired": "2021-03-13 04:51:33", "attacker": null, "location": {"startX": 954, "startY": -4425, "endX": 854, "endY": -4340}}, "Path to Ahmsord Upper": {"territory": "Path to Ahmsord Upper", "guild": "Avicia", "acquired": "2021-03-13 05:00:37", "attacker": null, "location": {"startX": 885, "startY": -4571, "endX": 779, "endY": -4639}}, "Old Coal Mine": {"territory": "Old Coal Mine", "guild": "Avicia", "acquired": "2021-03-08 21:03:52", "attacker": null, "location": {"startX": 719, "startY": -4778, "endX": 885, "endY": -4900}}, "Astraulus' Tower": {"territory": "Astraulus' Tower", "guild": "Avicia", "acquired": "2021-03-08 20:04:05", "attacker": null, "location": {"startX": 1102, "startY": -5016, "endX": 1250, "endY": -4916}}, "Ahmsord Outskirts": {"territory": "Ahmsord Outskirts", "guild": "Avicia", "acquired": "2021-03-06 23:29:51", "attacker": null, "location": {"startX": 1336, "startY": -4893, "endX": 1179, "endY": -4730}}, "Angel Refuge": {"territory": "Angel Refuge", "guild": "Avicia", "acquired": "2021-03-08 20:57:10", "attacker": null, "location": {"startX": 1354, "startY": -4727, "endX": 1484, "endY": -4877}}, "Central Islands": {"territory": "Central Islands", "guild": "Avicia", "acquired": "2021-03-07 00:12:15", "attacker": null, "location": {"startX": 1250, "startY": -4718, "endX": 1183, "endY": -4535}}, "Sky Falls": {"territory": "Sky Falls", "guild": "Avicia", "acquired": "2021-03-13 04:17:42", "attacker": null, "location": {"startX": 1380, "startY": -4458, "endX": 1466, "endY": -4653}}, "Raider's Base Lower": {"territory": "Raider's Base Lower", "guild": "Avicia", "acquired": "2021-03-13 04:37:42", "attacker": null, "location": {"startX": 1558, "startY": -4316, "endX": 1305, "endY": -4253}}, "Jofash Docks": {"territory": "Jofash Docks", "guild": "Avicia", "acquired": "2021-03-08 23:02:18", "attacker": null, "location": {"startX": 1178, "startY": -4175, "endX": 1445, "endY": -4012}}, "Lusuco": {"territory": "Lusuco", "guild": "Fuzzy Spiders", "acquired": "2021-03-10 23:06:41", "attacker": null, "location": {"startX": -267, "startY": -348, "endX": -91, "endY": -250}}, "Phinas Farm": {"territory": "Phinas Farm", "guild": "Guardian of Wynn", "acquired": "2021-03-07 01:03:44", "attacker": null, "location": {"startX": -1633, "startY": -2162, "endX": -1842, "endY": -2058}}, "Cinfras Outskirts": {"territory": "Cinfras Outskirts", "guild": "Aequitas", "acquired": "2021-03-07 19:05:53", "attacker": null, "location": {"startX": -392, "startY": -5116, "endX": -534, "endY": -5278}}, "Llevigar": {"territory": "Llevigar", "guild": "Eden", "acquired": "2021-03-07 16:07:12", "attacker": null, "location": {"startX": -1800, "startY": -4643, "endX": -2171, "endY": -4405}}, "Herb Cave": {"territory": "Herb Cave", "guild": "ShadowFall", "acquired": "2021-03-13 23:33:34", "attacker": null, "location": {"startX": -448, "startY": -813, "endX": -557, "endY": -876}}, "Icy Island": {"territory": "Icy Island", "guild": "The Mage Legacy", "acquired": "2021-03-07 00:16:52", "attacker": null, "location": {"startX": 1001, "startY": -3274, "endX": 1172, "endY": -3430}}, "Fleris Trail": {"territory": "Fleris Trail", "guild": "Eden", "acquired": "2021-03-07 16:13:51", "attacker": null, "location": {"startX": -1390, "startY": -4594, "endX": -1254, "endY": -4351}}, "Abandoned Pass": {"territory": "Abandoned Pass", "guild": "The Dark Phoenix", "acquired": "2021-03-13 06:55:17", "attacker": null, "location": {"startX": 881, "startY": -1225, "endX": 1019, "endY": -1380}}, "Southern Outpost": {"territory": "Southern Outpost", "guild": "Guardian of Wynn", "acquired": "2021-03-07 00:43:18", "attacker": null, "location": {"startX": -1258, "startY": -2204, "endX": -1444, "endY": -2306}}, "Corkus Sea Cove": {"territory": "Corkus Sea Cove", "guild": "Guardian of Wynn", "acquired": "2021-03-06 19:22:34", "attacker": null, "location": {"startX": -1578, "startY": -2662, "endX": -1330, "endY": -2513}}, "The Broken Road": {"territory": "The Broken Road", "guild": "Profession Heaven", "acquired": "2021-02-23 21:13:31", "attacker": null, "location": {"startX": 686, "startY": -923, "endX": 493, "endY": -783}}, "Grey Ruins": {"territory": "Grey Ruins", "guild": "Profession Heaven", "acquired": "2021-03-10 19:21:06", "attacker": null, "location": {"startX": 683, "startY": -619, "endX": 477, "endY": -515}}, "Forest of Eyes": {"territory": "Forest of Eyes", "guild": "Profession Heaven", "acquired": "2021-02-13 07:26:27", "attacker": null, "location": {"startX": 813, "startY": -333, "endX": 1043, "endY": -504}}, "Lutho": {"territory": "Lutho", "guild": "Profession Heaven", "acquired": "2021-02-21 06:32:24", "attacker": null, "location": {"startX": 936, "startY": -654, "endX": 1027, "endY": -754}}, "Toxic Drip": {"territory": "Toxic Drip", "guild": "Profession Heaven", "acquired": "2021-02-21 05:08:24", "attacker": null, "location": {"startX": 893, "startY": -876, "endX": 1086, "endY": -992}}, "Gateway to Nothing": {"territory": "Gateway to Nothing", "guild": "Profession Heaven", "acquired": "2021-03-07 20:09:58", "attacker": null, "location": {"startX": 1120, "startY": -882, "endX": 1244, "endY": -1058}}, "Final Step": {"territory": "Final Step", "guild": "Profession Heaven", "acquired": "2021-02-21 05:25:33", "attacker": null, "location": {"startX": 1388, "startY": -869, "endX": 1254, "endY": -932}}, "The Gate": {"territory": "The Gate", "guild": "Profession Heaven", "acquired": "2021-02-21 05:30:17", "attacker": null, "location": {"startX": 1350, "startY": -520, "endX": 1265, "endY": -410}}, "Luminous Plateau": {"territory": "Luminous Plateau", "guild": "Idiot Co", "acquired": "2021-03-12 19:29:25", "attacker": null, "location": {"startX": -894, "startY": -5957, "endX": -962, "endY": -6066}}, "Primal Fen": {"territory": "Primal Fen", "guild": "Idiot Co", "acquired": "2021-03-12 19:23:52", "attacker": null, "location": {"startX": -894, "startY": -6244, "endX": -1026, "endY": -6066}}, "Otherwordly Monolith": {"territory": "Otherwordly Monolith", "guild": "Idiot Co", "acquired": "2021-03-12 19:22:35", "attacker": null, "location": {"startX": -775, "startY": -6164, "endX": -662, "endY": -6003}}, "Nexus of Light": {"territory": "Nexus of Light", "guild": "Idiot Co", "acquired": "2021-03-12 19:10:16", "attacker": null, "location": {"startX": -645, "startY": -6384, "endX": -855, "endY": -6561}}, "Nivla Woods Entrance": {"territory": "Nivla Woods Entrance", "guild": "HackForums", "acquired": "2021-03-14 18:27:46", "attacker": null, "location": {"startX": -435, "startY": -1530, "endX": -372, "endY": -1652}}, "Ragni East Suburbs": {"territory": "Ragni East Suburbs", "guild": "ShadowFall", "acquired": "2021-03-14 17:59:10", "attacker": null, "location": {"startX": -747, "startY": -1653, "endX": -616, "endY": -1776}}, "Maltic": {"territory": "Maltic", "guild": "ShadowFall", "acquired": "2021-03-14 18:28:15", "attacker": null, "location": {"startX": -604, "startY": -1945, "endX": -475, "endY": -1884}}, "Pigmen Ravines": {"territory": "Pigmen Ravines", "guild": "ShadowFall", "acquired": "2021-03-13 21:38:09", "attacker": null, "location": {"startX": -784, "startY": -1398, "endX": -617, "endY": -1317}}, "Abandoned Farm": {"territory": "Abandoned Farm", "guild": "ShadowFall", "acquired": "2021-03-13 21:25:39", "attacker": null, "location": {"startX": -577, "startY": -1395, "endX": -478, "endY": -1335}}, "Nemract Quarry": {"territory": "Nemract Quarry", "guild": "Nerfuria", "acquired": "2021-02-26 22:01:27", "attacker": null, "location": {"startX": -105, "startY": -2069, "endX": 20, "endY": -1960}}, "North Nivla Woods": {"territory": "North Nivla Woods", "guild": "Nerfuria", "acquired": "2021-03-06 02:42:54", "attacker": null, "location": {"startX": -194, "startY": -1632, "endX": -86, "endY": -1800}}, "Nether Gate": {"territory": "Nether Gate", "guild": "The Dark Phoenix", "acquired": "2021-01-31 05:32:09", "attacker": null, "location": {"startX": 106, "startY": -1341, "endX": 342, "endY": -1222}}, "Detlas": {"territory": "Detlas", "guild": "The Dark Phoenix", "acquired": "2021-01-31 05:09:13", "attacker": null, "location": {"startX": 402, "startY": -1657, "endX": 536, "endY": -1518}}, "Nivla Woods Edge": {"territory": "Nivla Woods Edge", "guild": "The Dark Phoenix", "acquired": "2021-03-10 18:03:05", "attacker": null, "location": {"startX": -74, "startY": -1777, "endX": -3, "endY": -1485}}, "Twain Lake": {"territory": "Twain Lake", "guild": "GlowOfDust", "acquired": "2021-03-14 18:17:59", "attacker": null, "location": {"startX": 0, "startY": -330, "endX": 80, "endY": -530}}, "Nesaak Plains South West": {"territory": "Nesaak Plains South West", "guild": "Fuzzy Spiders", "acquired": "2021-02-17 20:40:21", "attacker": null, "location": {"startX": 70, "startY": -820, "endX": -110, "endY": -625}}, "Nesaak Village": {"territory": "Nesaak Village", "guild": "Fuzzy Spiders", "acquired": "2021-03-06 04:36:07", "attacker": null, "location": {"startX": 75, "startY": -850, "endX": 160, "endY": -760}}, "Great Bridge Jungle": {"territory": "Great Bridge Jungle", "guild": "ShadowFall", "acquired": "2021-03-13 23:32:08", "attacker": null, "location": {"startX": -395, "startY": -790, "endX": -515, "endY": -610}}, "Jungle Lake": {"territory": "Jungle Lake", "guild": "ShadowFall", "acquired": "2021-03-13 23:18:29", "attacker": null, "location": {"startX": -601, "startY": -791, "endX": -680, "endY": -940}}, "Rymek East Mid": {"territory": "Rymek East Mid", "guild": "WrathOfTheFallen", "acquired": "2021-03-14 18:23:13", "attacker": null, "location": {"startX": 1211, "startY": -1410, "endX": 1480, "endY": -1578}}, "Rymek West Upper": {"territory": "Rymek West Upper", "guild": "WrathOfTheFallen", "acquired": "2021-03-14 17:46:19", "attacker": null, "location": {"startX": 1190, "startY": -1665, "endX": 975, "endY": -1540}}, "Desert Upper": {"territory": "Desert Upper", "guild": "Ultra Violet", "acquired": "2021-03-14 18:31:24", "attacker": null, "location": {"startX": 990, "startY": -2270, "endX": 1195, "endY": -2120}}, "Almuj City": {"territory": "Almuj City", "guild": "Ultra Violet", "acquired": "2021-03-14 17:41:13", "attacker": null, "location": {"startX": 1050, "startY": -1900, "endX": 840, "endY": -2060}}, "Savannah East Lower": {"territory": "Savannah East Lower", "guild": "Emorians", "acquired": "2021-03-14 18:34:27", "attacker": null, "location": {"startX": 775, "startY": -1675, "endX": 890, "endY": -1860}}, "Bremminglar": {"territory": "Bremminglar", "guild": "Emorians", "acquired": "2021-03-14 18:09:20", "attacker": null, "location": {"startX": 760, "startY": -2070, "endX": 615, "endY": -2120}}, "Nemract Road": {"territory": "Nemract Road", "guild": "Nerfuria", "acquired": "2021-02-21 14:56:17", "attacker": null, "location": {"startX": 20, "startY": -2065, "endX": 151, "endY": -1871}}, "Nemract Cathedral": {"territory": "Nemract Cathedral", "guild": "Nerfuria", "acquired": "2021-03-10 17:31:52", "attacker": null, "location": {"startX": 385, "startY": -2180, "endX": 270, "endY": -2030}}, "Zhight Island": {"territory": "Zhight Island", "guild": "The Mage Legacy", "acquired": "2021-03-07 00:59:16", "attacker": null, "location": {"startX": -727, "startY": -2846, "endX": -440, "endY": -2629}}, "Durum Isles East": {"territory": "Durum Isles East", "guild": "The Mage Legacy", "acquired": "2021-03-07 01:03:51", "attacker": null, "location": {"startX": 482, "startY": -2841, "endX": 548, "endY": -2785}}, "Dujgon Nation": {"territory": "Dujgon Nation", "guild": "The Mage Legacy", "acquired": "2021-03-07 00:23:44", "attacker": null, "location": {"startX": 1000, "startY": -3550, "endX": 925, "endY": -3380}}, "Dead Island North West": {"territory": "Dead Island North West", "guild": "The Mage Legacy", "acquired": "2021-03-07 00:19:40", "attacker": null, "location": {"startX": 870, "startY": -3920, "endX": 745, "endY": -4040}}, "Volcano Lower": {"territory": "Volcano Lower", "guild": "Guardian of Wynn", "acquired": "2021-03-07 00:14:10", "attacker": null, "location": {"startX": -1164, "startY": -3831, "endX": -930, "endY": -3530}}, "Ternaves Plains Lower": {"territory": "Ternaves Plains Lower", "guild": "The Dark Phoenix", "acquired": "2021-03-13 06:44:58", "attacker": null, "location": {"startX": 655, "startY": -1430, "endX": 880, "endY": -1330}}, "Desolate Valley": {"territory": "Desolate Valley", "guild": "Fuzzy Spiders", "acquired": "2021-03-13 21:12:47", "attacker": null, "location": {"startX": 330, "startY": -1040, "endX": 450, "endY": -1170}}, "Detlas Savannah Transition": {"territory": "Detlas Savannah Transition", "guild": "The Dark Phoenix", "acquired": "2021-03-12 08:09:33", "attacker": null, "location": {"startX": 545, "startY": -1520, "endX": 650, "endY": -1670}}, "Llevigar Entrance": {"territory": "Llevigar Entrance", "guild": "Guardian of Wynn", "acquired": "2021-03-07 14:13:19", "attacker": null, "location": {"startX": -2048, "startY": -4250, "endX": -1932, "endY": -4403}}, "Llevigar Farm Plains West": {"territory": "Llevigar Farm Plains West", "guild": "Eden", "acquired": "2021-03-07 16:54:36", "attacker": null, "location": {"startX": -2060, "startY": -4746, "endX": -2171, "endY": -4828}}, "Llevigar Plains West Lower": {"territory": "Llevigar Plains West Lower", "guild": "Eden", "acquired": "2021-03-07 17:02:55", "attacker": null, "location": {"startX": -2060, "startY": -4831, "endX": -2171, "endY": -4909}}, "Swamp East Lower": {"territory": "Swamp East Lower", "guild": "Eden", "acquired": "2021-03-07 15:19:11", "attacker": null, "location": {"startX": -2059, "startY": -5003, "endX": -1956, "endY": -5074}}, "Swamp East Mid-Upper": {"territory": "Swamp East Mid-Upper", "guild": "Eden", "acquired": "2021-03-07 17:50:42", "attacker": null, "location": {"startX": -2059, "startY": -5188, "endX": -1955, "endY": -5309}}, "Swamp Dark Forest Transition Mid": {"territory": "Swamp Dark Forest Transition Mid", "guild": "Eden", "acquired": "2021-03-07 14:29:38", "attacker": null, "location": {"startX": -1519, "startY": -5291, "endX": -1626, "endY": -5492}}, "Olux": {"territory": "Olux", "guild": "Eden", "acquired": "2021-03-07 14:09:03", "attacker": null, "location": {"startX": -1810, "startY": -5397, "endX": -1668, "endY": -5597}}, "Swamp Mountain Transition Mid": {"territory": "Swamp Mountain Transition Mid", "guild": "Eden", "acquired": "2021-03-07 15:52:21", "attacker": null, "location": {"startX": -2127, "startY": -5466, "endX": -2066, "endY": -5603}}, "Quartz Mines South East": {"territory": "Quartz Mines South East", "guild": "Eden", "acquired": "2021-03-07 15:55:34", "attacker": null, "location": {"startX": -1391, "startY": -4352, "endX": -1607, "endY": -4524}}, "Orc Lake": {"territory": "Orc Lake", "guild": "BRIS", "acquired": "2021-03-11 23:26:50", "attacker": null, "location": {"startX": -1933, "startY": -4962, "endX": -1816, "endY": -4854}}, "Loamsprout Camp": {"territory": "Loamsprout Camp", "guild": "Eden", "acquired": "2021-03-07 16:24:55", "attacker": null, "location": {"startX": -1800, "startY": -4852, "endX": -1670, "endY": -4684}}, "Forgotten Path": {"territory": "Forgotten Path", "guild": "Eden", "acquired": "2021-03-07 15:14:20", "attacker": null, "location": {"startX": -1603, "startY": -4969, "endX": -1529, "endY": -5100}}, "Road To Light Forest": {"territory": "Road To Light Forest", "guild": "Eden", "acquired": "2021-03-07 15:58:20", "attacker": null, "location": {"startX": -1387, "startY": -4595, "endX": -1252, "endY": -4713}}, "Efilim South East Plains": {"territory": "Efilim South East Plains", "guild": "Wheres The Finish", "acquired": "2021-03-07 12:06:29", "attacker": null, "location": {"startX": -949, "startY": -4942, "endX": -1014, "endY": -4847}}, "Aldorei Valley West Entrance": {"territory": "Aldorei Valley West Entrance", "guild": "The Mage Legacy", "acquired": "2021-03-07 14:34:21", "attacker": null, "location": {"startX": -736, "startY": -4428, "endX": -802, "endY": -4553}}, "Light Forest West Mid": {"territory": "Light Forest West Mid", "guild": "The Mage Legacy", "acquired": "2021-03-07 15:00:12", "attacker": null, "location": {"startX": -929, "startY": -4552, "endX": -1014, "endY": -4706}}, "Light Forest East Lower": {"territory": "Light Forest East Lower", "guild": "The Mage Legacy", "acquired": "2021-03-07 15:00:23", "attacker": null, "location": {"startX": -926, "startY": -4700, "endX": -805, "endY": -4552}}, "Path to Cinfras": {"territory": "Path to Cinfras", "guild": "Wheres The Finish", "acquired": "2021-03-07 12:19:12", "attacker": null, "location": {"startX": -734, "startY": -4842, "endX": -818, "endY": -4953}}, "Gelibord Castle": {"territory": "Gelibord Castle", "guild": "Eden", "acquired": "2021-03-10 19:47:26", "attacker": null, "location": {"startX": -1027, "startY": -5470, "endX": -1180, "endY": -5600}}, "Mansion of Insanity": {"territory": "Mansion of Insanity", "guild": "Eden", "acquired": "2021-03-07 14:19:57", "attacker": null, "location": {"startX": -1237, "startY": -5116, "endX": -1144, "endY": -5268}}, "Entrance to Kander": {"territory": "Entrance to Kander", "guild": "Wheres The Finish", "acquired": "2021-03-07 11:18:13", "attacker": null, "location": {"startX": -896, "startY": -5408, "endX": -792, "endY": -5233}}, "Path to Talor": {"territory": "Path to Talor", "guild": "Wheres The Finish", "acquired": "2021-02-14 12:01:45", "attacker": null, "location": {"startX": -653, "startY": -5231, "endX": -785, "endY": -5401}}, "Old Crossroads North": {"territory": "Old Crossroads North", "guild": "Wheres The Finish", "acquired": "2021-02-22 07:39:51", "attacker": null, "location": {"startX": -648, "startY": -5314, "endX": -567, "endY": -5400}}, "Heart of Decay": {"territory": "Heart of Decay", "guild": "Wheres The Finish", "acquired": "2021-03-07 12:16:12", "attacker": null, "location": {"startX": -598, "startY": -5580, "endX": -454, "endY": -5518}}, "Dark Forest Cinfras Transition": {"territory": "Dark Forest Cinfras Transition", "guild": "Aequitas", "acquired": "2021-03-07 18:23:40", "attacker": null, "location": {"startX": -290, "startY": -5292, "endX": -392, "endY": -5116}}, "Cinfras County Lower": {"territory": "Cinfras County Lower", "guild": "Aequitas", "acquired": "2021-03-13 05:50:41", "attacker": null, "location": {"startX": 3, "startY": -4760, "endX": -127, "endY": -4640}}, "Gylia Lake South East": {"territory": "Gylia Lake South East", "guild": "Aequitas", "acquired": "2021-03-07 18:09:20", "attacker": null, "location": {"startX": 30, "startY": -5157, "endX": -127, "endY": -5271}}, "Gert Camp": {"territory": "Gert Camp", "guild": "ChinaNumberOne", "acquired": "2021-03-12 05:13:27", "attacker": null, "location": {"startX": 30, "startY": -5447, "endX": -83, "endY": -5605}}, "Aldorei Valley Upper": {"territory": "Aldorei Valley Upper", "guild": "Aequitas", "acquired": "2021-03-09 07:39:00", "attacker": null, "location": {"startX": -557, "startY": -4501, "endX": -322, "endY": -4656}}, "Aldorei's Arch": {"territory": "Aldorei's Arch", "guild": "Aequitas", "acquired": "2021-03-07 18:22:21", "attacker": null, "location": {"startX": 33, "startY": -4367, "endX": 107, "endY": -4519}}, "Burning Airship": {"territory": "Burning Airship", "guild": "Aequitas", "acquired": "2021-03-07 18:30:51", "attacker": null, "location": {"startX": 35, "startY": -4859, "endX": 107, "endY": -4955}}, "Path To Military Base": {"territory": "Path To Military Base", "guild": "ChinaNumberOne", "acquired": "2021-03-12 06:35:53", "attacker": null, "location": {"startX": 51, "startY": -5297, "endX": 166, "endY": -5391}}, "Path To Ozoth's Spire Lower": {"territory": "Path To Ozoth's Spire Lower", "guild": "ChinaNumberOne", "acquired": "2021-03-12 06:59:26", "attacker": null, "location": {"startX": 260, "startY": -5298, "endX": 199, "endY": -5169}}, "Bandit Cave Upper": {"territory": "Bandit Cave Upper", "guild": "IceBlue Team", "acquired": "2021-03-09 03:33:13", "attacker": null, "location": {"startX": 194, "startY": -4956, "endX": 111, "endY": -4872}}, "Canyon Waterfall North": {"territory": "Canyon Waterfall North", "guild": "TheNoLifes", "acquired": "2021-03-11 19:59:49", "attacker": null, "location": {"startX": 115, "startY": -4380, "endX": 194, "endY": -4518}}, "Canyon Path North Mid": {"territory": "Canyon Path North Mid", "guild": "TheNoLifes", "acquired": "2021-03-11 19:44:59", "attacker": null, "location": {"startX": 200, "startY": -4743, "endX": 264, "endY": -4875}}, "Thanos Exit": {"territory": "Thanos Exit", "guild": "IceBlue Team", "acquired": "2021-03-10 18:59:04", "attacker": null, "location": {"startX": 338, "startY": -5310, "endX": 262, "endY": -5168}}, "Canyon Waterfall Mid North": {"territory": "Canyon Waterfall Mid North", "guild": "TheNoLifes", "acquired": "2021-03-11 19:36:44", "attacker": null, "location": {"startX": 337, "startY": -4855, "endX": 271, "endY": -4741}}, "Thanos Exit Upper": {"territory": "Thanos Exit Upper", "guild": "IceBlue Team", "acquired": "2021-03-09 06:32:12", "attacker": null, "location": {"startX": 347, "startY": -5313, "endX": 438, "endY": -5183}}, "Mountain Edge": {"territory": "Mountain Edge", "guild": "TheNoLifes", "acquired": "2021-02-23 21:44:01", "attacker": null, "location": {"startX": 437, "startY": -4314, "endX": 336, "endY": -4392}}, "Krolton's Cave": {"territory": "Krolton's Cave", "guild": "IceBlue Team", "acquired": "2021-03-09 07:07:42", "attacker": null, "location": {"startX": 341, "startY": -4841, "endX": 438, "endY": -4962}}, "Cliffside Valley": {"territory": "Cliffside Valley", "guild": "IceBlue Team", "acquired": "2021-03-10 20:05:08", "attacker": null, "location": {"startX": 563, "startY": -5079, "endX": 440, "endY": -4975}}, "Canyon Of The Lost": {"territory": "Canyon Of The Lost", "guild": "TheNoLifes", "acquired": "2021-02-23 21:46:20", "attacker": null, "location": {"startX": 443, "startY": -4566, "endX": 570, "endY": -4392}}, "Cliffside Passage North": {"territory": "Cliffside Passage North", "guild": "TheNoLifes", "acquired": "2021-03-11 18:30:31", "attacker": null, "location": {"startX": 572, "startY": -4818, "endX": 700, "endY": -4933}}, "Cherry Blossom Forest": {"territory": "Cherry Blossom Forest", "guild": "IceBlue Team", "acquired": "2021-03-09 06:27:19", "attacker": null, "location": {"startX": 699, "startY": -5378, "endX": 575, "endY": -5551}}, "Entrance to Rodoroc": {"territory": "Entrance to Rodoroc", "guild": "Avicia", "acquired": "2021-03-12 18:48:08", "attacker": null, "location": {"startX": 854, "startY": -5257, "endX": 1113, "endY": -5367}}, "Lava Lake Bridge": {"territory": "Lava Lake Bridge", "guild": "Avicia", "acquired": "2021-03-12 19:13:41", "attacker": null, "location": {"startX": 1230, "startY": -5240, "endX": 1379, "endY": -5366}}, "Ahmsord": {"territory": "Ahmsord", "guild": "Avicia", "acquired": "2021-03-04 23:13:57", "attacker": null, "location": {"startX": 1163, "startY": -4462, "endX": 942, "endY": -4604}}, "Dernel Jungle Mid": {"territory": "Dernel Jungle Mid", "guild": "ShadowFall", "acquired": "2021-03-14 05:12:17", "attacker": null, "location": {"startX": -744, "startY": -528, "endX": -965, "endY": -264}}, "Corkus City South": {"territory": "Corkus City South", "guild": "Guardian of Wynn", "acquired": "2021-02-23 23:23:07", "attacker": null, "location": {"startX": -1559, "startY": -2662, "endX": -1679, "endY": -2833}}, "Legendary Island": {"territory": "Legendary Island", "guild": "Guardian of Wynn", "acquired": "2021-03-06 22:11:58", "attacker": null, "location": {"startX": -1212, "startY": -2576, "endX": -1001, "endY": -2342}}, "Corkus Mountain": {"territory": "Corkus Mountain", "guild": "Guardian of Wynn", "acquired": "2021-03-06 17:13:35", "attacker": null, "location": {"startX": -1888, "startY": -2997, "endX": -1683, "endY": -3175}}, "Corkus Sea Port": {"territory": "Corkus Sea Port", "guild": "Guardian of Wynn", "acquired": "2021-03-06 19:27:01", "attacker": null, "location": {"startX": -1680, "startY": -2512, "endX": -1437, "endY": -2307}}, "Bloody Beach": {"territory": "Bloody Beach", "guild": "Guardian of Wynn", "acquired": "2021-03-06 21:58:23", "attacker": null, "location": {"startX": -1376, "startY": -3225, "endX": -1097, "endY": -3426}}, "Path to Ahmsord Lower": {"territory": "Path to Ahmsord Lower", "guild": "Avicia", "acquired": "2021-03-13 04:57:47", "attacker": null, "location": {"startX": 779, "startY": -4480, "endX": 885, "endY": -4570}}, "Dragonling Nests": {"territory": "Dragonling Nests", "guild": "Avicia", "acquired": "2021-03-08 20:52:42", "attacker": null, "location": {"startX": 925, "startY": -4916, "endX": 1101, "endY": -5016}}, "Swamp Island": {"territory": "Swamp Island", "guild": "Avicia", "acquired": "2021-03-06 23:45:32", "attacker": null, "location": {"startX": 1178, "startY": -4754, "endX": 1101, "endY": -4915}}, "Sky Island Ascent": {"territory": "Sky Island Ascent", "guild": "Avicia", "acquired": "2021-03-06 22:55:29", "attacker": null, "location": {"startX": 1180, "startY": -4524, "endX": 1379, "endY": -4355}}, "Jofash Tunnel": {"territory": "Jofash Tunnel", "guild": "Avicia", "acquired": "2021-03-08 22:48:57", "attacker": null, "location": {"startX": 1304, "startY": -4354, "endX": 1126, "endY": -4176}}, "Icy Descent": {"territory": "Icy Descent", "guild": "Fuzzy Spiders", "acquired": "2021-03-06 15:59:15", "attacker": null, "location": {"startX": -311, "startY": -358, "endX": -104, "endY": -496}}, "Rodoroc": {"territory": "Rodoroc", "guild": "Avicia", "acquired": "2021-03-08 23:32:04", "attacker": null, "location": {"startX": 1200, "startY": -5067, "endX": 965, "endY": -5238}}, "Twisted Ridge": {"territory": "Twisted Ridge", "guild": "Wheres The Finish", "acquired": "2021-03-07 00:32:33", "attacker": null, "location": {"startX": -1020, "startY": -5603, "endX": -910, "endY": -5343}}, "Orc Battlegrounds": {"territory": "Orc Battlegrounds", "guild": "Eden", "acquired": "2021-03-07 15:19:37", "attacker": null, "location": {"startX": -1460, "startY": -5024, "endX": -1282, "endY": -4870}}, "Lighthouse Plateau": {"territory": "Lighthouse Plateau", "guild": "Guardian of Wynn", "acquired": "2021-03-07 00:43:44", "attacker": null, "location": {"startX": -1633, "startY": -2162, "endX": -1445, "endY": -2306}}, "Worm Tunnel": {"territory": "Worm Tunnel", "guild": "Profession Heaven", "acquired": "2021-03-09 01:34:22", "attacker": null, "location": {"startX": 641, "startY": -767, "endX": 543, "endY": -640}}, "Sinister Forest": {"territory": "Sinister Forest", "guild": "Profession Heaven", "acquired": "2021-02-21 05:56:51", "attacker": null, "location": {"startX": 815, "startY": -506, "endX": 1059, "endY": -629}}, "Toxic Caves": {"territory": "Toxic Caves", "guild": "Profession Heaven", "acquired": "2021-02-21 05:34:02", "attacker": null, "location": {"startX": 1017, "startY": -1146, "endX": 844, "endY": -993}}, "Bizarre Passage": {"territory": "Bizarre Passage", "guild": "Profession Heaven", "acquired": "2021-02-21 05:05:00", "attacker": null, "location": {"startX": 1187, "startY": -680, "endX": 1388, "endY": -530}}, "Field of Life": {"territory": "Field of Life", "guild": "Idiot Co", "acquired": "2021-03-12 19:19:09", "attacker": null, "location": {"startX": -894, "startY": -6010, "endX": -827, "endY": -6164}}, "Path to Light": {"territory": "Path to Light", "guild": "Idiot Co", "acquired": "2021-03-12 19:33:47", "attacker": null, "location": {"startX": -775, "startY": -6164, "endX": -827, "endY": -6010}}, "Katoa Ranch": {"territory": "Katoa Ranch", "guild": "ShadowFall", "acquired": "2021-02-20 21:09:33", "attacker": null, "location": {"startX": -914, "startY": -1860, "endX": -748, "endY": -1955}}, "Plains": {"territory": "Plains", "guild": "ShadowFall", "acquired": "2021-03-14 18:35:11", "attacker": null, "location": {"startX": -435, "startY": -1883, "endX": -270, "endY": -1653}}, "Road to Time Valley": {"territory": "Road to Time Valley", "guild": "ShadowFall", "acquired": "2021-03-14 09:59:40", "attacker": null, "location": {"startX": -461, "startY": -1525, "endX": -359, "endY": -1412}}, "Road to Elkurn": {"territory": "Road to Elkurn", "guild": "ShadowFall", "acquired": "2021-03-14 18:22:27", "attacker": null, "location": {"startX": -89, "startY": -1481, "endX": 2, "endY": -1267}}, "North Farmers Valley": {"territory": "North Farmers Valley", "guild": "Nerfuria", "acquired": "2021-03-06 15:57:27", "attacker": null, "location": {"startX": -348, "startY": -2060, "endX": -254, "endY": -1954}}, "Bob's Tomb": {"territory": "Bob's Tomb", "guild": "Fuzzy Spiders", "acquired": "2021-03-13 23:43:17", "attacker": null, "location": {"startX": 246, "startY": -747, "endX": 380, "endY": -867}}, "Nesaak Plains Mid North West": {"territory": "Nesaak Plains Mid North West", "guild": "Fuzzy Spiders", "acquired": "2021-03-03 22:57:16", "attacker": null, "location": {"startX": -140, "startY": -860, "endX": -180, "endY": -980}}, "City of Troms": {"territory": "City of Troms", "guild": "ShadowFall", "acquired": "2021-03-13 21:52:43", "attacker": null, "location": {"startX": -726, "startY": -970, "endX": -899, "endY": -826}}, "Desert East Mid": {"territory": "Desert East Mid", "guild": "WrathOfTheFallen", "acquired": "2021-03-14 18:26:10", "attacker": null, "location": {"startX": 1260, "startY": -2170, "endX": 1450, "endY": -2020}}, "Desert West Upper": {"territory": "Desert West Upper", "guild": "Ultra Violet", "acquired": "2021-03-14 18:32:40", "attacker": null, "location": {"startX": 990, "startY": -2270, "endX": 895, "endY": -2140}}, "Nemract Town": {"territory": "Nemract Town", "guild": "Nerfuria", "acquired": "2021-03-10 02:45:46", "attacker": null, "location": {"startX": 10, "startY": -2070, "endX": 210, "endY": -2270}}, "The Bear Zoo": {"territory": "The Bear Zoo", "guild": "The Mage Legacy", "acquired": "2021-03-07 01:00:46", "attacker": null, "location": {"startX": -409, "startY": -2539, "endX": -283, "endY": -2414}}, "Pirate Town": {"territory": "Pirate Town", "guild": "The Mage Legacy", "acquired": "2021-03-07 01:10:36", "attacker": null, "location": {"startX": -750, "startY": -3251, "endX": -580, "endY": -3006}}, "Maro Peaks": {"territory": "Maro Peaks", "guild": "The Mage Legacy", "acquired": "2021-03-06 23:51:08", "attacker": null, "location": {"startX": -41, "startY": -4174, "endX": 453, "endY": -3793}}, "Mining Base Lower": {"territory": "Mining Base Lower", "guild": "The Dark Phoenix", "acquired": "2021-03-13 07:01:07", "attacker": null, "location": {"startX": 870, "startY": -1130, "endX": 670, "endY": -1225}}, "Detlas Trail East Plains": {"territory": "Detlas Trail East Plains", "guild": "The Dark Phoenix", "acquired": "2021-03-10 17:41:16", "attacker": null, "location": {"startX": 200, "startY": -1820, "endX": 510, "endY": -1675}}, "Cinfras": {"territory": "Cinfras", "guild": "Aequitas", "acquired": "2021-03-07 18:16:00", "attacker": null, "location": {"startX": -534, "startY": -4807, "endX": -375, "endY": -5088}}, "Swamp West Mid": {"territory": "Swamp West Mid", "guild": "Eden", "acquired": "2021-03-07 18:38:37", "attacker": null, "location": {"startX": -2060, "startY": -5082, "endX": -2171, "endY": -5186}}, "Swamp Lower": {"territory": "Swamp Lower", "guild": "BRIS", "acquired": "2021-03-13 18:07:56", "attacker": null, "location": {"startX": -1649, "startY": -5134, "endX": -1763, "endY": -5241}}, "Swamp Mountain Transition Upper": {"territory": "Swamp Mountain Transition Upper", "guild": "Eden", "acquired": "2021-03-07 14:56:10", "attacker": null, "location": {"startX": -1981, "startY": -5466, "endX": -1889, "endY": -5603}}, "Meteor Crater": {"territory": "Meteor Crater", "guild": "BRIS", "acquired": "2021-03-11 23:36:28", "attacker": null, "location": {"startX": -1800, "startY": -5099, "endX": -1690, "endY": -4969}}, "Pre-Light Forest Transition": {"territory": "Pre-Light Forest Transition", "guild": "Eden", "acquired": "2021-03-07 15:24:23", "attacker": null, "location": {"startX": -1553, "startY": -4850, "endX": -1476, "endY": -4719}}, "Light Forest Entrance": {"territory": "Light Forest Entrance", "guild": "The Mage Legacy", "acquired": "2021-03-07 15:27:25", "attacker": null, "location": {"startX": -1040, "startY": -4706, "endX": -1134, "endY": -4552}}, "Light Forest East Upper": {"territory": "Light Forest East Upper", "guild": "Wheres The Finish", "acquired": "2021-03-07 12:33:22", "attacker": null, "location": {"startX": -926, "startY": -4842, "endX": -831, "endY": -4945}}, "Gelibord": {"territory": "Gelibord", "guild": "Wheres The Finish", "acquired": "2021-03-07 15:13:58", "attacker": null, "location": {"startX": -1050, "startY": -5244, "endX": -958, "endY": -5342}}, "Lexdales Prison": {"territory": "Lexdales Prison", "guild": "Wheres The Finish", "acquired": "2021-03-07 01:27:54", "attacker": null, "location": {"startX": -873, "startY": -5518, "endX": -772, "endY": -5585}}, "Dark Forest Village": {"territory": "Dark Forest Village", "guild": "Wheres The Finish", "acquired": "2021-03-07 12:28:07", "attacker": null, "location": {"startX": -723, "startY": -5229, "endX": -574, "endY": -5147}}, "Mushroom Hill": {"territory": "Mushroom Hill", "guild": "ChinaNumberOne", "acquired": "2021-03-13 00:56:15", "attacker": null, "location": {"startX": -288, "startY": -5411, "endX": -392, "endY": -5601}}, "Cinfras County Mid-Upper": {"territory": "Cinfras County Mid-Upper", "guild": "Aequitas", "acquired": "2021-03-07 20:14:27", "attacker": null, "location": {"startX": -127, "startY": -4896, "endX": 3, "endY": -5050}}, "Aldorei Valley Lower": {"territory": "Aldorei Valley Lower", "guild": "Aequitas", "acquired": "2021-03-07 18:18:55", "attacker": null, "location": {"startX": -714, "startY": -4395, "endX": -559, "endY": -4499}}, "Ghostly Path": {"territory": "Ghostly Path", "guild": "Aequitas", "acquired": "2021-03-07 18:21:49", "attacker": null, "location": {"startX": 35, "startY": -4643, "endX": 107, "endY": -4753}}, "Military Base Upper": {"territory": "Military Base Upper", "guild": "ChinaNumberOne", "acquired": "2021-03-12 06:11:03", "attacker": null, "location": {"startX": 168, "startY": -5408, "endX": 250, "endY": -5518}}, "Canyon Path North West": {"territory": "Canyon Path North West", "guild": "TheNoLifes", "acquired": "2021-03-09 05:58:43", "attacker": null, "location": {"startX": 110, "startY": -4736, "endX": 194, "endY": -4651}}, "Canyon Valley South": {"territory": "Canyon Valley South", "guild": "IceBlue Team", "acquired": "2021-03-10 22:06:54", "attacker": null, "location": {"startX": 263, "startY": -4973, "endX": 199, "endY": -5035}}, "Canyon Survivor": {"territory": "Canyon Survivor", "guild": "TheNoLifes", "acquired": "2021-02-23 21:45:20", "attacker": null, "location": {"startX": 338, "startY": -4628, "endX": 269, "endY": -4522}}, "Valley of the Lost": {"territory": "Valley of the Lost", "guild": "TheNoLifes", "acquired": "2021-03-11 20:12:12", "attacker": null, "location": {"startX": 435, "startY": -4511, "endX": 341, "endY": -4670}}, "Air Temple Upper": {"territory": "Air Temple Upper", "guild": "IceBlue Team", "acquired": "2021-03-13 17:22:30", "attacker": null, "location": {"startX": 570, "startY": -4833, "endX": 445, "endY": -4692}}, "Entrance to Thesead South": {"territory": "Entrance to Thesead South", "guild": "IceBlue Team", "acquired": "2021-03-10 19:57:56", "attacker": null, "location": {"startX": 700, "startY": -5030, "endX": 574, "endY": -5181}}, "Molten Heights Portal": {"territory": "Molten Heights Portal", "guild": "Avicia", "acquired": "2021-03-08 22:18:59", "attacker": null, "location": {"startX": 1535, "startY": -5067, "endX": 1387, "endY": -5366}}, "Snail Island": {"territory": "Snail Island", "guild": "Avicia", "acquired": "2021-03-08 22:39:53", "attacker": null, "location": {"startX": 949, "startY": -4885, "endX": 1057, "endY": -4804}}, "Road To Mine": {"territory": "Road To Mine", "guild": "Guardian of Wynn", "acquired": "2021-03-06 19:37:27", "attacker": null, "location": {"startX": -1467, "startY": -2834, "endX": -1557, "endY": -2691}}, "Corkus Docks": {"territory": "Corkus Docks", "guild": "Guardian of Wynn", "acquired": "2021-03-06 17:19:03", "attacker": null, "location": {"startX": -1891, "startY": -2997, "endX": -2022, "endY": -3274}}, "Frozen Fort": {"territory": "Frozen Fort", "guild": "The Mage Legacy", "acquired": "2021-03-14 17:43:18", "attacker": null, "location": {"startX": 1501, "startY": -4513, "endX": 1586, "endY": -4789}}, "Molten Reach": {"territory": "Molten Reach", "guild": "Avicia", "acquired": "2021-03-08 22:11:33", "attacker": null, "location": {"startX": 1251, "startY": -4894, "endX": 1500, "endY": -4964}}, "Raider's Base Upper": {"territory": "Raider's Base Upper", "guild": "Avicia", "acquired": "2021-03-13 04:23:53", "attacker": null, "location": {"startX": 1380, "startY": -4457, "endX": 1551, "endY": -4316}}, "Aldorei Lowlands": {"territory": "Aldorei Lowlands", "guild": "Aequitas", "acquired": "2021-03-13 05:50:31", "attacker": null, "location": {"startX": -337, "startY": -4756, "endX": -225, "endY": -4657}}, "Royal Gate": {"territory": "Royal Gate", "guild": "Guardian of Wynn", "acquired": "2021-03-08 14:29:49", "attacker": null, "location": {"startX": -1822, "startY": -1995, "endX": -2015, "endY": -1725}}, "The Silent Road": {"territory": "The Silent Road", "guild": "Profession Heaven", "acquired": "2021-02-23 21:02:28", "attacker": null, "location": {"startX": 540, "startY": -1088, "endX": 704, "endY": -961}}, "Paths of Sludge": {"territory": "Paths of Sludge", "guild": "Profession Heaven", "acquired": "2021-02-21 06:28:05", "attacker": null, "location": {"startX": 1040, "startY": -767, "endX": 892, "endY": -870}}, "Heavenly Ingress": {"territory": "Heavenly Ingress", "guild": "Idiot Co", "acquired": "2021-03-12 19:16:32", "attacker": null, "location": {"startX": -814, "startY": -6015, "endX": -894, "endY": -5928}}, "Light Peninsula": {"territory": "Light Peninsula", "guild": "The Mage Legacy", "acquired": "2021-03-07 14:20:49", "attacker": null, "location": {"startX": -951, "startY": -4421, "endX": -802, "endY": -4108}}, "Ragni Main Entrance": {"territory": "Ragni Main Entrance", "guild": "ShadowFall", "acquired": "2021-03-03 04:37:46", "attacker": null, "location": {"startX": -747, "startY": -1530, "endX": -616, "endY": -1652}}, "Little Wood": {"territory": "Little Wood", "guild": "ShadowFall", "acquired": "2021-03-02 22:52:30", "attacker": null, "location": {"startX": -812, "startY": -1177, "endX": -636, "endY": -1094}}, "Detlas Suburbs": {"territory": "Detlas Suburbs", "guild": "The Dark Phoenix", "acquired": "2021-03-10 17:35:05", "attacker": null, "location": {"startX": 188, "startY": -1657, "endX": 300, "endY": -1500}}, "Nesaak Plains Lower North West": {"territory": "Nesaak Plains Lower North West", "guild": "Fuzzy Spiders", "acquired": "2021-03-03 03:29:29", "attacker": null, "location": {"startX": 70, "startY": -834, "endX": -120, "endY": -910}}, "Rymek West Lower": {"territory": "Rymek West Lower", "guild": "WrathOfTheFallen", "acquired": "2021-03-14 18:00:33", "attacker": null, "location": {"startX": 1209, "startY": -1269, "endX": 1020, "endY": -1380}}, "Savannah West Lower": {"territory": "Savannah West Lower", "guild": "The Dark Phoenix", "acquired": "2021-03-14 17:52:06", "attacker": null, "location": {"startX": 775, "startY": -1675, "endX": 630, "endY": -1830}}, "Durum Isles Center": {"territory": "Durum Isles Center", "guild": "The Mage Legacy", "acquired": "2021-03-07 00:37:08", "attacker": null, "location": {"startX": 405, "startY": -2846, "endX": 504, "endY": -2972}}, "Ternaves": {"territory": "Ternaves", "guild": "The Dark Phoenix", "acquired": "2021-03-14 17:48:44", "attacker": null, "location": {"startX": 770, "startY": -1675, "endX": 880, "endY": -1540}}, "Llevigar Gate West": {"territory": "Llevigar Gate West", "guild": "Eden", "acquired": "2021-03-07 16:08:52", "attacker": null, "location": {"startX": -2060, "startY": -4746, "endX": -2171, "endY": -4644}}, "Swamp East Upper": {"territory": "Swamp East Upper", "guild": "Eden", "acquired": "2021-03-07 14:39:15", "attacker": null, "location": {"startX": -1955, "startY": -5311, "endX": -2059, "endY": -5419}}, "Quartz Mines North East": {"territory": "Quartz Mines North East", "guild": "Eden", "acquired": "2021-03-07 15:45:49", "attacker": null, "location": {"startX": -1391, "startY": -4664, "endX": -1607, "endY": -4526}}, "Efilim South Plains": {"territory": "Efilim South Plains", "guild": "Wheres The Finish", "acquired": "2021-03-07 12:03:49", "attacker": null, "location": {"startX": -1030, "startY": -4940, "endX": -1134, "endY": -4847}}, "Mantis Nest": {"territory": "Mantis Nest", "guild": "The Mage Legacy", "acquired": "2021-03-07 15:00:15", "attacker": null, "location": {"startX": -736, "startY": -4559, "endX": -802, "endY": -4698}}, "Mesquis Tower": {"territory": "Mesquis Tower", "guild": "Wheres The Finish", "acquired": "2021-03-07 12:13:15", "attacker": null, "location": {"startX": -834, "startY": -5078, "endX": -727, "endY": -4999}}, "Aldorei Valley South Entrance": {"territory": "Aldorei Valley South Entrance", "guild": "Aequitas", "acquired": "2021-03-13 05:50:52", "attacker": null, "location": {"startX": -130, "startY": -4641, "endX": -222, "endY": -4509}}, "Aldorei's Waterfall": {"territory": "Aldorei's Waterfall", "guild": "Aequitas", "acquired": "2021-03-07 18:17:29", "attacker": null, "location": {"startX": -237, "startY": -4514, "endX": -321, "endY": -4648}}, "Path To Ozoth's Spire Upper": {"territory": "Path To Ozoth's Spire Upper", "guild": "IceBlue Team", "acquired": "2021-03-10 23:20:14", "attacker": null, "location": {"startX": 194, "startY": -5165, "endX": 111, "endY": -5045}}, "Canyon Mountain East": {"territory": "Canyon Mountain East", "guild": "IceBlue Team", "acquired": "2021-03-10 21:59:41", "attacker": null, "location": {"startX": 271, "startY": -5039, "endX": 337, "endY": -4948}}, "Canyon High Path": {"territory": "Canyon High Path", "guild": "IceBlue Team", "acquired": "2021-03-09 06:26:39", "attacker": null, "location": {"startX": 562, "startY": -5313, "endX": 440, "endY": -5191}}, "Thesead Suburbs": {"territory": "Thesead Suburbs", "guild": "IceBlue Team", "acquired": "2021-03-09 06:26:47", "attacker": null, "location": {"startX": 703, "startY": -5374, "endX": 810, "endY": -5216}}, "Corkus City": {"territory": "Corkus City", "guild": "Guardian of Wynn", "acquired": "2021-03-06 21:36:23", "attacker": null, "location": {"startX": -1557, "startY": -2835, "endX": -1680, "endY": -3010}}, "Corkus Statue": {"territory": "Corkus Statue", "guild": "Guardian of Wynn", "acquired": "2021-02-24 00:03:51", "attacker": null, "location": {"startX": -1322, "startY": -2917, "endX": -1393, "endY": -2836}}, "Wybel Island": {"territory": "Wybel Island", "guild": "Avicia", "acquired": "2021-03-08 23:16:36", "attacker": null, "location": {"startX": 1355, "startY": -4700, "endX": 1253, "endY": -4595}}, "Regular Island": {"territory": "Regular Island", "guild": "The Mage Legacy", "acquired": "2021-03-07 00:21:53", "attacker": null, "location": {"startX": 1202, "startY": -3764, "endX": 1458, "endY": -3597}}, "Forgotten Town": {"territory": "Forgotten Town", "guild": "Profession Heaven", "acquired": "2021-03-09 01:25:25", "attacker": null, "location": {"startX": 480, "startY": -493, "endX": 734, "endY": -355}}, "Azure Frontier": {"territory": "Azure Frontier", "guild": "Idiot Co", "acquired": "2021-03-10 19:11:02", "attacker": null, "location": {"startX": -894, "startY": -6164, "endX": -684, "endY": -6313}}, "Nivla Woods Exit": {"territory": "Nivla Woods Exit", "guild": "The Dark Phoenix", "acquired": "2021-03-10 18:07:02", "attacker": null, "location": {"startX": -175, "startY": -1630, "endX": -105, "endY": -1514}}, "Jungle Mid": {"territory": "Jungle Mid", "guild": "ShadowFall", "acquired": "2021-03-13 23:20:23", "attacker": null, "location": {"startX": -600, "startY": -610, "endX": -670, "endY": -780}}, "Nemract Plains East": {"territory": "Nemract Plains East", "guild": "Nerfuria", "acquired": "2021-03-10 16:31:10", "attacker": null, "location": {"startX": 151, "startY": -1870, "endX": 20, "endY": -1810}}, "Plains Lake": {"territory": "Plains Lake", "guild": "The Dark Phoenix", "acquired": "2021-03-12 08:15:41", "attacker": null, "location": {"startX": 395, "startY": -1365, "endX": 550, "endY": -1190}}, "Swamp Plains Basin": {"territory": "Swamp Plains Basin", "guild": "Eden", "acquired": "2021-03-07 14:32:35", "attacker": null, "location": {"startX": -1776, "startY": -5246, "endX": -1898, "endY": -5396}}, "Light Forest North Exit": {"territory": "Light Forest North Exit", "guild": "The Mage Legacy", "acquired": "2021-03-07 15:20:35", "attacker": null, "location": {"startX": -733, "startY": -4707, "endX": -654, "endY": -4848}}, "Fungal Grove": {"territory": "Fungal Grove", "guild": "Wheres The Finish", "acquired": "2021-03-07 13:06:35", "attacker": null, "location": {"startX": -489, "startY": -5279, "endX": -549, "endY": -5398}}, "Thanos": {"territory": "Thanos", "guild": "ChinaNumberOne", "acquired": "2021-03-12 06:00:56", "attacker": null, "location": {"startX": 51, "startY": -5189, "endX": 194, "endY": -5295}}, "Wizard Tower North": {"territory": "Wizard Tower North", "guild": "IceBlue Team", "acquired": "2021-03-09 06:27:42", "attacker": null, "location": {"startX": 438, "startY": -5037, "endX": 345, "endY": -4966}}, "Active Volcano": {"territory": "Active Volcano", "guild": "Avicia", "acquired": "2021-03-12 19:22:46", "attacker": null, "location": {"startX": 1233, "startY": -5553, "endX": 1379, "endY": -5369}}, "Kandon Ridge": {"territory": "Kandon Ridge", "guild": "Avicia", "acquired": "2021-03-04 20:55:51", "attacker": null, "location": {"startX": 885, "startY": -4640, "endX": 719, "endY": -4777}}, "Lost Atoll": {"territory": "Lost Atoll", "guild": "The Mage Legacy", "acquired": "2021-03-07 00:59:27", "attacker": null, "location": {"startX": -472, "startY": -3590, "endX": -688, "endY": -3385}}, "Coastal Trail": {"territory": "Coastal Trail", "guild": "ShadowFall", "acquired": "2021-03-14 18:31:08", "attacker": null, "location": {"startX": -747, "startY": -1946, "endX": -565, "endY": -2059}}, "Desert Mid-Lower": {"territory": "Desert Mid-Lower", "guild": "Paladins United", "acquired": "2021-03-14 18:22:47", "attacker": null, "location": {"startX": 1060, "startY": -1935, "endX": 1210, "endY": -1810}}, "Llevigar Plains East Upper": {"territory": "Llevigar Plains East Upper", "guild": "Eden", "acquired": "2021-03-07 17:25:11", "attacker": null, "location": {"startX": -2059, "startY": -4912, "endX": -1940, "endY": -5000}}, "Fortress North": {"territory": "Fortress North", "guild": "Eden", "acquired": "2021-03-07 15:02:00", "attacker": null, "location": {"startX": -1452, "startY": -5211, "endX": -1272, "endY": -5395}}, "Canyon Lower South East": {"territory": "Canyon Lower South East", "guild": "TheNoLifes", "acquired": "2021-03-09 01:35:04", "attacker": null, "location": {"startX": 265, "startY": -4521, "endX": 199, "endY": -4649}}, "Corkus Forest South": {"territory": "Corkus Forest South", "guild": "Guardian of Wynn", "acquired": "2021-02-23 23:41:42", "attacker": null, "location": {"startX": -1681, "startY": -2732, "endX": -1883, "endY": -2861}}, "Void Valley": {"territory": "Void Valley", "guild": "Profession Heaven", "acquired": "2021-02-21 05:15:32", "attacker": null, "location": {"startX": 1082, "startY": -1161, "endX": 1250, "endY": -1078}}, "Half Moon Island": {"territory": "Half Moon Island", "guild": "The Mage Legacy", "acquired": "2021-03-06 23:53:47", "attacker": null, "location": {"startX": 900, "startY": -2660, "endX": 1100, "endY": -2480}}, "Goblin Plains West": {"territory": "Goblin Plains West", "guild": "Eden", "acquired": "2021-03-07 15:22:57", "attacker": null, "location": {"startX": -1688, "startY": -4962, "endX": -1611, "endY": -4854}}, "Kandon Farm": {"territory": "Kandon Farm", "guild": "Avicia", "acquired": "2021-03-05 11:08:23", "attacker": null, "location": {"startX": 710, "startY": -4587, "endX": 614, "endY": -4682}}, "Gylia Lake North West": {"territory": "Gylia Lake North West", "guild": "ChinaNumberOne", "acquired": "2021-03-12 06:39:07", "attacker": null, "location": {"startX": -218, "startY": -5427, "endX": -130, "endY": -5273}}, "Santa's Hideout": {"territory": "Santa's Hideout", "guild": "The Mage Legacy", "acquired": "2021-03-07 00:09:02", "attacker": null, "location": {"startX": 1057, "startY": -3077, "endX": 1221, "endY": -3209}}, "Dead Island North East": {"territory": "Dead Island North East", "guild": "The Mage Legacy", "acquired": "2021-03-07 00:22:27", "attacker": null, "location": {"startX": 870, "startY": -3920, "endX": 1000, "endY": -4040}}}, "request": {"timestamp": 1615746940, "version": 1}} \ No newline at end of file diff --git a/terrs.py b/terrs.py new file mode 100644 index 0000000..d67a4cd --- /dev/null +++ b/terrs.py @@ -0,0 +1,53 @@ +import requests +import json +import time + +#used for requesting the api +'''response = requests.get("https://api.wynncraft.com/public_api.php?action=territoryList") +with open("terrs.json", "w") as outfile: + outfile.write(json.dumps(response.json()))''' + +#used for cleaning the data +'''with open("terrs.json", "r") as infile: + data = json.load(infile) + +data = data["territories"] +delkeys = ["territory","acquired","attacker"] + +for t in data: + for key in delkeys: + del data[t][key] + data[t]["neighbors"] = [] + + +with open("terrs_compress.json", "w") as outfile: + json.dump(data,outfile) +with open("terrs_clean.json", "w") as outfile: + json.dump(data,outfile,indent = 2)''' + +#used for pushing data to compress (edit in clean, move to compress) +'''with open("terrs.json", "r") as infile: + data = json.load(infile)["territories"]''' + +with open("terrs_clean.json", "r") as infile: + newdata = json.load(infile) + +'''for t in newdata: + del newdata[t]["attacker"] + del newdata[t]["acquired"]''' + + +'''response = requests.get("https://gist.githubusercontent.com/kristofbolyai/87ae828ecc740424c0f4b3749b2287ed/raw/0735f2e8bb2d2177ba0e7e96ade421621070a236/territories.json").json() +for t in data: + data[t]["neighbors"] = response[t]["Routes"] + data[t]["resources"] = response[t]["Resources"] + data[t]["storage"] = response[t]["Storage"] + data[t]["emeralds"] = response[t]["Emeralds"] + data[t]["doubleemeralds"] = response[t]["DoubleEmerald"] + data[t]["doubleresource"] = response[t]["DoubleResource"]''' + +with open("terrs_clean.json", "w") as outfile: + json.dump(newdata,outfile,indent=2) + +with open("terrs_compress.json", "w") as outfile: + json.dump(newdata,outfile) \ No newline at end of file diff --git a/terrs_clean.json b/terrs_clean.json new file mode 100644 index 0000000..02c66a1 --- /dev/null +++ b/terrs_clean.json @@ -0,0 +1,10727 @@ +{ + "Ragni": { + "territory": "Ragni", + "guild": "ShadowFall", + "location": { + "startX": -955, + "startY": -1415, + "endX": -756, + "endY": -1748 + }, + "neighbors": [ + "Ragni North Entrance", + "Pigmen Ravines Entrance", + "Ragni Main Entrance" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Emerald Trail": { + "territory": "Emerald Trail", + "guild": "ShadowFall", + "location": { + "startX": -615, + "startY": -1530, + "endX": -436, + "endY": -1652 + }, + "neighbors": [ + "Nivla Woods Entrance", + "Ragni Main Entrance", + "Maltic Plains" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Ragni North Entrance": { + "territory": "Ragni North Entrance", + "guild": "ShadowFall", + "location": { + "startX": -944, + "startY": -1761, + "endX": -818, + "endY": -1859 + }, + "neighbors": [ + "Katoa Ranch", + "Ragni", + "Ragni North Suburbs" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Ragni North Suburbs": { + "territory": "Ragni North Suburbs", + "guild": "ShadowFall", + "location": { + "startX": -817, + "startY": -1859, + "endX": -762, + "endY": -1761 + }, + "neighbors": [ + "Katoa Ranch", + "Ragni North Entrance", + "Ragni Plains" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Ragni Plains": { + "territory": "Ragni Plains", + "guild": "ShadowFall", + "location": { + "startX": -747, + "startY": -1776, + "endX": -605, + "endY": -1945 + }, + "neighbors": [ + "Maltic", + "Ragni East Suburbs", + "Ragni North Suburbs", + "Coastal Trail" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Maltic Coast": { + "territory": "Maltic Coast", + "guild": "Nerfuria", + "location": { + "startX": -564, + "startY": -2059, + "endX": -400, + "endY": -1946 + }, + "neighbors": [ + "North Farmers Valley", + "Maltic", + "Coastal Trail", + "South Farmers Valley" + ], + "resources": [ + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Maltic Plains": { + "territory": "Maltic Plains", + "guild": "HackForums", + "location": { + "startX": -564, + "startY": -1883, + "endX": -436, + "endY": -1653 + }, + "neighbors": [ + "Maltic", + "South Farmers Valley", + "Ragni East Suburbs", + "Emerald Trail", + "Plains" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Pigmen Ravines Entrance": { + "territory": "Pigmen Ravines Entrance", + "guild": "ShadowFall", + "location": { + "startX": -924, + "startY": -1398, + "endX": -784, + "endY": -1307 + }, + "neighbors": [ + "Ragni", + "South Pigmen Ravines", + "Pigmen Ravines" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "South Pigmen Ravines": { + "territory": "South Pigmen Ravines", + "guild": "ShadowFall", + "location": { + "startX": -898, + "startY": -1298, + "endX": -678, + "endY": -1221 + }, + "neighbors": [ + "Pigmen Ravines Entrance", + "Little Wood" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Time Valley": { + "territory": "Time Valley", + "guild": "ShadowFall", + "location": { + "startX": -563, + "startY": -1261, + "endX": -406, + "endY": -1006 + }, + "neighbors": [ + "Abandoned Farm", + "Little Wood", + "Elkurn Fields" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Sanctuary Bridge": { + "territory": "Sanctuary Bridge", + "guild": "The Aquarium", + "location": { + "startX": -324, + "startY": -1130, + "endX": -192, + "endY": -993 + }, + "neighbors": [ + "Time Valley", + "Nesaak Plains Upper North West" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Wood", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Elkurn Fields": { + "territory": "Elkurn Fields", + "guild": "ShadowFall", + "location": { + "startX": -357, + "startY": -1325, + "endX": -99, + "endY": -1141 + }, + "neighbors": [ + "Time Valley", + "Road to Elkurn", + "Elkurn", + "South Nivla Woods" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nivla Woods": { + "territory": "Nivla Woods", + "guild": "ShadowFall", + "location": { + "startX": -325, + "startY": -1624, + "endX": -196, + "endY": -1460 + }, + "neighbors": [ + "Nivla Woods Entrance", + "South Nivla Woods", + "Road to Time Valley", + "Nivla Woods Exit" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "South Nivla Woods": { + "territory": "South Nivla Woods", + "guild": "The Aquarium", + "location": { + "startX": -350, + "startY": -1440, + "endX": -99, + "endY": -1330 + }, + "neighbors": [ + "Road to Elkurn", + "Nivla Woods", + "Road to Time Valley", + "Elkurn Fields", + "Nivla Woods Exit" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Elkurn": { + "territory": "Elkurn", + "guild": "ShadowFall", + "location": { + "startX": -98, + "startY": -1250, + "endX": 62, + "endY": -1080 + }, + "neighbors": [ + "Road to Elkurn", + "Nesaak Plains Upper North West", + "Corrupted Road", + "Elkurn Fields" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Corrupted Road": { + "territory": "Corrupted Road", + "guild": "The Dark Phoenix", + "location": { + "startX": 22, + "startY": -1479, + "endX": 96, + "endY": -1261 + }, + "neighbors": [ + "Nether Plains Upper", + "Nether Gate", + "Elkurn", + "Detlas Far Suburbs" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Detlas Far Suburbs": { + "territory": "Detlas Far Suburbs", + "guild": "The Dark Phoenix", + "location": { + "startX": 29, + "startY": -1657, + "endX": 188, + "endY": -1500 + }, + "neighbors": [ + "Nivla Woods Edge", + "Nether Plains Upper", + "Corrupted Road", + "Detlas Trail West Plains", + "Detlas Suburbs" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Detlas Close Suburbs": { + "territory": "Detlas Close Suburbs", + "guild": "The Dark Phoenix", + "location": { + "startX": 300, + "startY": -1657, + "endX": 389, + "endY": -1500 + }, + "neighbors": [ + "Detlas", + "Nether Plains Upper", + "Detlas Suburbs", + "Detlas Trail East Plains" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "South Farmers Valley": { + "territory": "South Farmers Valley", + "guild": "Nerfuria", + "location": { + "startX": -472, + "startY": -1944, + "endX": -255, + "endY": -1887 + }, + "neighbors": [ + "Maltic", + "North Farmers Valley", + "Maltic Plains", + "Maltic Coast", + "Plains" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Arachnid Route": { + "territory": "Arachnid Route", + "guild": "Nerfuria", + "location": { + "startX": -261, + "startY": -1881, + "endX": -109, + "endY": -1808 + }, + "neighbors": [ + "North Nivla Woods", + "Nemract Plains West", + "Plains" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Tower of Ascension": { + "territory": "Tower of Ascension", + "guild": "Fuzzy Spiders", + "location": { + "startX": -400, + "startY": -450, + "endX": -315, + "endY": -330 + }, + "neighbors": [ + "Icy Descent" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Mage Island": { + "territory": "Mage Island", + "guild": "The Mage Legacy", + "location": { + "startX": 805, + "startY": -2960, + "endX": 983, + "endY": -2787 + }, + "neighbors": [ + "Durum Isles East", + "Durum Isles Upper", + "Half Moon Island", + "Santa's Hideout" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Twain Mansion": { + "territory": "Twain Mansion", + "guild": "GlowOfDust", + "location": { + "startX": 95, + "startY": -407, + "endX": 140, + "endY": -310 + }, + "neighbors": [ + "Twain Lake" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Fish" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Nesaak Plains South East": { + "territory": "Nesaak Plains South East", + "guild": "Fuzzy Spiders", + "location": { + "startX": 76, + "startY": -757, + "endX": 230, + "endY": -660 + }, + "neighbors": [ + "Bob's Tomb", + "Nesaak Village", + "Nesaak Plains South West" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nesaak Plains North East": { + "territory": "Nesaak Plains North East", + "guild": "Fuzzy Spiders", + "location": { + "startX": 110, + "startY": -873, + "endX": 240, + "endY": -1035 + }, + "neighbors": [ + "Nesaak Plains Lower North West", + "Bob's Tomb", + "Nesaak Plains Upper North West", + "Nesaak Village", + "Nesaak Transition" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nesaak Plains Upper North West": { + "territory": "Nesaak Plains Upper North West", + "guild": "Fuzzy Spiders", + "location": { + "startX": 70, + "startY": -950, + "endX": -140, + "endY": -1060 + }, + "neighbors": [ + "Elkurn", + "Sanctuary Bridge", + "Nesaak Plains Mid North West", + "Nesaak Plains North East", + "Nesaak Plains Lower North West" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nesaak Bridge Transition": { + "territory": "Nesaak Bridge Transition", + "guild": "Fuzzy Spiders", + "location": { + "startX": -115, + "startY": -630, + "endX": -240, + "endY": -780 + }, + "neighbors": [ + "Great Bridge Nesaak", + "Nesaak Plains South West" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Great Bridge Nesaak": { + "territory": "Great Bridge Nesaak", + "guild": "Fuzzy Spiders", + "location": { + "startX": -275, + "startY": -620, + "endX": -390, + "endY": -790 + }, + "neighbors": [ + "Great Bridge Jungle", + "Nesaak Bridge Transition" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Jungle Lower": { + "territory": "Jungle Lower", + "guild": "ShadowFall", + "location": { + "startX": -515, + "startY": -610, + "endX": -600, + "endY": -790 + }, + "neighbors": [ + "Jungle Mid", + "Dernel Jungle Lower", + "Great Bridge Jungle" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Jungle Upper": { + "territory": "Jungle Upper", + "guild": "ShadowFall", + "location": { + "startX": -671, + "startY": -779, + "endX": -810, + "endY": -630 + }, + "neighbors": [ + "Jungle Mid" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Temple of Legends": { + "territory": "Temple of Legends", + "guild": "ShadowFall", + "location": { + "startX": -631, + "startY": -973, + "endX": -745, + "endY": -1093 + }, + "neighbors": [ + "Jungle Lake", + "City of Troms" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Rymek East Lower": { + "territory": "Rymek East Lower", + "guild": "WrathOfTheFallen", + "location": { + "startX": 1210, + "startY": -1270, + "endX": 1400, + "endY": -1390 + }, + "neighbors": [ + "Rymek West Lower", + "Rymek East Mid" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Rymek East Upper": { + "territory": "Rymek East Upper", + "guild": "WrathOfTheFallen", + "location": { + "startX": 1479, + "startY": -1579, + "endX": 1210, + "endY": -1780 + }, + "neighbors": [ + "Rymek West Upper", + "Rymek East Mid", + "Desert East Lower" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Rymek West Mid": { + "territory": "Rymek West Mid", + "guild": "WrathOfTheFallen", + "location": { + "startX": 1211, + "startY": -1410, + "endX": 1000, + "endY": -1530 + }, + "neighbors": [ + "Rymek West Lower", + "Rymek West Upper", + "Rymek East Mid" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Desert East Upper": { + "territory": "Desert East Upper", + "guild": "WrathOfTheFallen", + "location": { + "startX": 1260, + "startY": -2170, + "endX": 1450, + "endY": -2370 + }, + "neighbors": [ + "Desert East Mid" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Desert East Lower": { + "territory": "Desert East Lower", + "guild": "Paladins United", + "location": { + "startX": 1450, + "startY": -2020, + "endX": 1270, + "endY": -1785 + }, + "neighbors": [ + "Rymek East Upper", + "Desert Mid-Lower", + "Desert East Mid" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Desert Mid-Upper": { + "territory": "Desert Mid-Upper", + "guild": "Aequitas", + "location": { + "startX": 1195, + "startY": -2120, + "endX": 1060, + "endY": -1935 + }, + "neighbors": [ + "Desert Upper", + "Desert Mid-Lower", + "Almuj City", + "Desert East Mid" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Desert Lower": { + "territory": "Desert Lower", + "guild": "Titans Valor", + "location": { + "startX": 1210, + "startY": -1810, + "endX": 1040, + "endY": -1680 + }, + "neighbors": [ + "Rymek West Upper", + "Desert Mid-Lower", + "Desert West Lower" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Mummy's Tomb": { + "territory": "Mummy's Tomb", + "guild": "Paladins United", + "location": { + "startX": 990, + "startY": -2270, + "endX": 1120, + "endY": -2400 + }, + "neighbors": [ + "Desert Upper" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": true + }, + "Desert West Lower": { + "territory": "Desert West Lower", + "guild": "Ultra Violet", + "location": { + "startX": 1040, + "startY": -1681, + "endX": 900, + "endY": -1870 + }, + "neighbors": [ + "Desert Lower", + "Almuj City", + "Desert Mid-Lower" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Savannah East Upper": { + "territory": "Savannah East Upper", + "guild": "Emorians", + "location": { + "startX": 750, + "startY": -2060, + "endX": 820, + "endY": -1895 + }, + "neighbors": [ + "Almuj City", + "Savannah East Lower", + "Savannah West Upper" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Savannah West Upper": { + "territory": "Savannah West Upper", + "guild": "Emorians", + "location": { + "startX": 750, + "startY": -2060, + "endX": 570, + "endY": -1870 + }, + "neighbors": [ + "Cathedral Harbour", + "Savannah West Lower", + "Bremminglar", + "Savannah East Upper" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Lion Lair": { + "territory": "Lion Lair", + "guild": "Emorians", + "location": { + "startX": 890, + "startY": -2140, + "endX": 790, + "endY": -2320 + }, + "neighbors": [ + "Bremminglar" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Plains Coast": { + "territory": "Plains Coast", + "guild": "Nerfuria", + "location": { + "startX": 5, + "startY": -2270, + "endX": -320, + "endY": -2090 + }, + "neighbors": [ + "North Farmers Valley", + "Nemract Town", + "Nemract Quarry" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nemract Plains West": { + "territory": "Nemract Plains West", + "guild": "Nerfuria", + "location": { + "startX": 5, + "startY": -1960, + "endX": -100, + "endY": -1810 + }, + "neighbors": [ + "Nivla Woods Edge", + "Nemract Road", + "Nemract Quarry", + "Arachnid Route" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Ancient Nemract": { + "territory": "Ancient Nemract", + "guild": "Nerfuria", + "location": { + "startX": 152, + "startY": -1832, + "endX": 290, + "endY": -1999 + }, + "neighbors": [ + "Cathedral Harbour", + "Nemract Road", + "Nemract Cathedral", + "Detlas Trail East Plains", + "Detlas Trail West Plains" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Cathedral Harbour": { + "territory": "Cathedral Harbour", + "guild": "Nerfuria", + "location": { + "startX": 385, + "startY": -2180, + "endX": 570, + "endY": -1950 + }, + "neighbors": [ + "Nemract Cathedral", + "Ancient Nemract", + "Durum Isles East", + "Durum Isles Lower", + "Savannah West Upper" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Rooster Island": { + "territory": "Rooster Island", + "guild": "The Mage Legacy", + "location": { + "startX": -128, + "startY": -2448, + "endX": -30, + "endY": -2538 + }, + "neighbors": [ + "Durum Isles Lower", + "The Bear Zoo", + "Nemract Town", + "Selchar" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Selchar": { + "territory": "Selchar", + "guild": "The Mage Legacy", + "location": { + "startX": -100, + "startY": -3070, + "endX": 210, + "endY": -3270 + }, + "neighbors": [ + "Durum Isles Upper", + "Durum Isles Lower", + "Durum Isles Center", + "Skiens Island", + "Rooster Island" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Durum Isles Upper": { + "territory": "Durum Isles Upper", + "guild": "The Mage Legacy", + "location": { + "startX": 537, + "startY": -2994, + "endX": 595, + "endY": -2924 + }, + "neighbors": [ + "Nodguj Nation", + "Durum Isles Center", + "Mage Island", + "Selchar" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Durum Isles Lower": { + "territory": "Durum Isles Lower", + "guild": "The Mage Legacy", + "location": { + "startX": 390, + "startY": -2851, + "endX": 347, + "endY": -2791 + }, + "neighbors": [ + "Rooster Island", + "Selchar", + "Durum Isles Center" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Skiens Island": { + "territory": "Skiens Island", + "guild": "The Mage Legacy", + "location": { + "startX": 527, + "startY": -3386, + "endX": 297, + "endY": -3644 + }, + "neighbors": [ + "Maro Peaks", + "Selchar", + "Dead Island South West", + "Nodguj Nation" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nodguj Nation": { + "territory": "Nodguj Nation", + "guild": "The Mage Legacy", + "location": { + "startX": 695, + "startY": -3210, + "endX": 880, + "endY": -3440 + }, + "neighbors": [ + "Dujgon Nation", + "Skiens Island", + "Mage Island", + "Icy Island", + "Santa's Hideout" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Dead Island South East": { + "territory": "Dead Island South East", + "guild": "The Mage Legacy", + "location": { + "startX": 870, + "startY": -3920, + "endX": 1000, + "endY": -3810 + }, + "neighbors": [ + "Dujgon Nation", + "Regular Island", + "Dead Island South West", + "Dead Island North East" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Dead Island South West": { + "territory": "Dead Island South West", + "guild": "The Mage Legacy", + "location": { + "startX": 870, + "startY": -3920, + "endX": 745, + "endY": -3810 + }, + "neighbors": [ + "Dead Island North West", + "Dujgon Nation", + "Dead Island South East", + "Skiens Island" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Volcano Upper": { + "territory": "Volcano Upper", + "guild": "The Mage Legacy", + "location": { + "startX": -929, + "startY": -3831, + "endX": -722, + "endY": -3530 + }, + "neighbors": [ + "Tree Island", + "Lost Atoll", + "Pirate Town", + "Volcano Lower", + "Light Peninsula" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Tree Island": { + "territory": "Tree Island", + "guild": "The Mage Legacy", + "location": { + "startX": -454, + "startY": -3905, + "endX": -323, + "endY": -3766 + }, + "neighbors": [ + "Volcano Upper", + "Lost Atoll", + "Light Peninsula" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Ternaves Plains Upper": { + "territory": "Ternaves Plains Upper", + "guild": "The Dark Phoenix", + "location": { + "startX": 770, + "startY": -1675, + "endX": 655, + "endY": -1430 + }, + "neighbors": [ + "Ternaves", + "Savannah West Lower", + "Detlas Savannah Transition", + "Ternaves Plains Lower" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Crops", + "Wood", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Mining Base Upper": { + "territory": "Mining Base Upper", + "guild": "The Dark Phoenix", + "location": { + "startX": 880, + "startY": -1330, + "endX": 670, + "endY": -1225 + }, + "neighbors": [ + "Mining Base Lower", + "Abandoned Pass", + "Ternaves Plains Lower" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nesaak Transition": { + "territory": "Nesaak Transition", + "guild": "Fuzzy Spiders", + "location": { + "startX": 330, + "startY": -1040, + "endX": 75, + "endY": -1145 + }, + "neighbors": [ + "Elkurn", + "Nether Plains Lower", + "Nesaak Plains North East", + "Desolate Valley" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nether Plains Lower": { + "territory": "Nether Plains Lower", + "guild": "The Dark Phoenix", + "location": { + "startX": 75, + "startY": -1145, + "endX": 325, + "endY": -1210 + }, + "neighbors": [ + "Nesaak Transition", + "Elkurn", + "Nether Gate", + "Desolate Valley" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Mine Base Plains": { + "territory": "Mine Base Plains", + "guild": "The Dark Phoenix", + "location": { + "startX": 550, + "startY": -1190, + "endX": 650, + "endY": -1430 + }, + "neighbors": [ + "Mining Base Lower", + "Mining Base Upper", + "The Silent Road", + "Ternaves Plains Lower", + "Plains Lake" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nether Plains Upper": { + "territory": "Nether Plains Upper", + "guild": "The Dark Phoenix", + "location": { + "startX": 115, + "startY": -1360, + "endX": 390, + "endY": -1495 + }, + "neighbors": [ + "Nether Gate", + "Detlas Close Suburbs", + "Detlas Suburbs", + "Corrupted Road", + "Detlas Far Suburbs", + "Plains Lake" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Detlas Trail West Plains": { + "territory": "Detlas Trail West Plains", + "guild": "The Dark Phoenix", + "location": { + "startX": 25, + "startY": -1660, + "endX": 200, + "endY": -1800 + }, + "neighbors": [ + "Ancient Nemract", + "Nemract Plains East", + "Detlas Far Suburbs", + "Detlas Suburbs" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Llevigar Gate East": { + "territory": "Llevigar Gate East", + "guild": "Eden", + "location": { + "startX": -1932, + "startY": -4648, + "endX": -2059, + "endY": -4746 + }, + "neighbors": [ + "Llevigar Farm Plains East", + "Orc Road", + "Llevigar", + "Llevigar Gate West" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Llevigar Farm Plains East": { + "territory": "Llevigar Farm Plains East", + "guild": "Eden", + "location": { + "startX": -2059, + "startY": -4747, + "endX": -1931, + "endY": -4828 + }, + "neighbors": [ + "Llevigar Plains East Lower", + "Llevigar Gate East", + "Llevigar Farm Plains West", + "Orc Road" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Hive": { + "territory": "Hive", + "guild": "IceBlue Team", + "location": { + "startX": 381, + "startY": -5413, + "endX": 286, + "endY": -5593 + }, + "neighbors": [ + "Hive South", + "Thanos Exit Upper" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Llevigar Plains East Lower": { + "territory": "Llevigar Plains East Lower", + "guild": "Eden", + "location": { + "startX": -2059, + "startY": -4831, + "endX": -1937, + "endY": -4909 + }, + "neighbors": [ + "Llevigar Plains West Lower", + "Llevigar Farm Plains East", + "Orc Lake", + "Llevigar Plains East Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Llevigar Plains West Upper": { + "territory": "Llevigar Plains West Upper", + "guild": "Eden", + "location": { + "startX": -2060, + "startY": -4912, + "endX": -2171, + "endY": -5000 + }, + "neighbors": [ + "Llevigar Plains West Lower", + "Llevigar Plains East Upper", + "Swamp West Lower" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Swamp West Lower": { + "territory": "Swamp West Lower", + "guild": "Eden", + "location": { + "startX": -2060, + "startY": -5003, + "endX": -2171, + "endY": -5075 + }, + "neighbors": [ + "Swamp East Lower", + "Llevigar Plains West Upper", + "Swamp West Mid" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": true + }, + "Swamp East Mid": { + "territory": "Swamp East Mid", + "guild": "Eden", + "location": { + "startX": -1955, + "startY": -5081, + "endX": -2059, + "endY": -5186 + }, + "neighbors": [ + "Swamp East Lower", + "Swamp Mountain Base", + "Swamp East Mid-Upper", + "Swamp West Mid" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Swamp West Mid-Upper": { + "territory": "Swamp West Mid-Upper", + "guild": "Eden", + "location": { + "startX": -2171, + "startY": -5190, + "endX": -2060, + "endY": -5309 + }, + "neighbors": [ + "Swamp East Mid-Upper", + "Swamp West Upper", + "Swamp West Mid" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Swamp West Upper": { + "territory": "Swamp West Upper", + "guild": "Eden", + "location": { + "startX": -2171, + "startY": -5312, + "endX": -2060, + "endY": -5419 + }, + "neighbors": [ + "Swamp Mountain Transition Mid-Upper", + "Swamp West Mid-Upper", + "Swamp East Upper", + "Swamp Mountain Transition Mid" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Swamp Dark Forest Transition Lower": { + "territory": "Swamp Dark Forest Transition Lower", + "guild": "Eden", + "location": { + "startX": -1519, + "startY": -5134, + "endX": -1631, + "endY": -5288 + }, + "neighbors": [ + "Swamp Dark Forest Transition Mid", + "Fortress South", + "Fortress North", + "Swamp Lower", + "Entrance to Olux", + "Forgotten Path" + ], + "resources": [ + "Ore" + ], + "storage": [], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Swamp Dark Forest Transition Upper": { + "territory": "Swamp Dark Forest Transition Upper", + "guild": "Eden", + "location": { + "startX": -1519, + "startY": -5492, + "endX": -1626, + "endY": -5607 + }, + "neighbors": [ + "Swamp Dark Forest Transition Mid", + "Taproot Descent", + "Olux" + ], + "resources": [ + "Ore" + ], + "storage": [], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Entrance to Olux": { + "territory": "Entrance to Olux", + "guild": "Eden", + "location": { + "startX": -1649, + "startY": -5246, + "endX": -1764, + "endY": -5396 + }, + "neighbors": [ + "Swamp Dark Forest Transition Mid", + "Swamp Plains Basin", + "Olux", + "Swamp Lower", + "Swamp Dark Forest Transition Lower" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Swamp Mountain Base": { + "territory": "Swamp Mountain Base", + "guild": "BRIS", + "location": { + "startX": -1776, + "startY": -5134, + "endX": -1898, + "endY": -5240 + }, + "neighbors": [ + "Swamp Plains Basin", + "Sunspark Camp", + "Swamp East Mid", + "Swamp Lower" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Swamp Mountain Transition Lower": { + "territory": "Swamp Mountain Transition Lower", + "guild": "Eden", + "location": { + "startX": -2173, + "startY": -5466, + "endX": -2128, + "endY": -5603 + }, + "neighbors": [ + "Swamp Mountain Transition Mid" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Swamp Mountain Transition Mid-Upper": { + "territory": "Swamp Mountain Transition Mid-Upper", + "guild": "Eden", + "location": { + "startX": -2065, + "startY": -5466, + "endX": -1982, + "endY": -5603 + }, + "neighbors": [ + "Swamp Mountain Transition Upper", + "Swamp Mountain Transition Mid", + "Swamp East Upper" + ], + "resources": [ + "Fish" + ], + "storage": [], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Quartz Mines South West": { + "territory": "Quartz Mines South West", + "guild": "Eden", + "location": { + "startX": -1776, + "startY": -4352, + "endX": -1609, + "endY": -4524 + }, + "neighbors": [ + "Llevigar", + "Quartz Mines South East", + "Quartz Mines North West" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Quartz Mines North West": { + "territory": "Quartz Mines North West", + "guild": "Eden", + "location": { + "startX": -1776, + "startY": -4664, + "endX": -1609, + "endY": -4526 + }, + "neighbors": [ + "Llevigar Farm", + "Loamsprout Camp", + "Quartz Mines North East", + "Quartz Mines South West" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Sunspark Camp": { + "territory": "Sunspark Camp", + "guild": "BRIS", + "location": { + "startX": -1930, + "startY": -5099, + "endX": -1816, + "endY": -4968 + }, + "neighbors": [ + "Swamp Mountain Base", + "Meteor Crater", + "Orc Lake", + "Llevigar Plains East Upper", + "Swamp East Lower" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Orc Road": { + "territory": "Orc Road", + "guild": "Eden", + "location": { + "startX": -1927, + "startY": -4852, + "endX": -1815, + "endY": -4700 + }, + "neighbors": [ + "Llevigar Farm Plains East", + "Orc Lake", + "Loamsprout Camp" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Sablestone Camp": { + "territory": "Sablestone Camp", + "guild": "BRIS", + "location": { + "startX": -1800, + "startY": -4962, + "endX": -1695, + "endY": -4854 + }, + "neighbors": [ + "Meteor Crater", + "Orc Lake", + "Goblin Plains West", + "Loamsprout Camp" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Iron Road": { + "territory": "Iron Road", + "guild": "BRIS", + "location": { + "startX": -1688, + "startY": -5099, + "endX": -1608, + "endY": -4969 + }, + "neighbors": [ + "Goblin Plains West", + "Meteor Crater", + "Swamp Lower", + "Forgotten Path" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Llevigar Farm": { + "territory": "Llevigar Farm", + "guild": "Eden", + "location": { + "startX": -1663, + "startY": -4849, + "endX": -1556, + "endY": -4714 + }, + "neighbors": [ + "Goblin Plains East", + "Pre-Light Forest Transition", + "Quartz Mines North East", + "Goblin Plains West", + "Quartz Mines North West", + "Loamsprout Camp" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Goblin Plains East": { + "territory": "Goblin Plains East", + "guild": "Eden", + "location": { + "startX": -1603, + "startY": -4963, + "endX": -1527, + "endY": -4853 + }, + "neighbors": [ + "Pre-Light Forest Transition", + "Goblin Plains West", + "Llevigar Farm", + "Forgotten Path" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Leadin Fortress": { + "territory": "Leadin Fortress", + "guild": "Eden", + "location": { + "startX": -1403, + "startY": -4869, + "endX": -1284, + "endY": -4748 + }, + "neighbors": [ + "Pre-Light Forest Transition", + "Road To Light Forest", + "Orc Battlegrounds" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Efilim Village": { + "territory": "Efilim Village", + "guild": "Wheres The Finish", + "location": { + "startX": -1020, + "startY": -4943, + "endX": -1134, + "endY": -5078 + }, + "neighbors": [ + "Efilim South Plains", + "Twisted Housing", + "Efilim East Plains" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Efilim East Plains": { + "territory": "Efilim East Plains", + "guild": "Wheres The Finish", + "location": { + "startX": -1014, + "startY": -4944, + "endX": -949, + "endY": -5079 + }, + "neighbors": [ + "Efilim South East Plains", + "Efilim Village" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Light Forest North Entrance": { + "territory": "Light Forest North Entrance", + "guild": "Wheres The Finish", + "location": { + "startX": -1134, + "startY": -4708, + "endX": -1030, + "endY": -4845 + }, + "neighbors": [ + "Efilim South Plains", + "Light Forest West Upper", + "Light Forest Entrance" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Light Forest South Entrance": { + "territory": "Light Forest South Entrance", + "guild": "The Mage Legacy", + "location": { + "startX": -1134, + "startY": -4548, + "endX": -1038, + "endY": -4426 + }, + "neighbors": [ + "Heavenly Ingress", + "Light Forest Entrance", + "Light Forest West Lower" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Light Forest South Exit": { + "territory": "Light Forest South Exit", + "guild": "The Mage Legacy", + "location": { + "startX": -646, + "startY": -4699, + "endX": -733, + "endY": -4559 + }, + "neighbors": [ + "Light Forest North Exit", + "Mantis Nest" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Light Forest West Lower": { + "territory": "Light Forest West Lower", + "guild": "The Mage Legacy", + "location": { + "startX": -1014, + "startY": -4428, + "endX": -929, + "endY": -4549 + }, + "neighbors": [ + "Light Forest West Mid", + "Light Forest South Entrance", + "Hobbit River" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Light Forest West Upper": { + "territory": "Light Forest West Upper", + "guild": "Wheres The Finish", + "location": { + "startX": -1014, + "startY": -4708, + "endX": -935, + "endY": -4845 + }, + "neighbors": [ + "Efilim South East Plains", + "Light Forest West Mid", + "Light Forest East Mid", + "Light Forest North Entrance" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Light Forest East Mid": { + "territory": "Light Forest East Mid", + "guild": "Wheres The Finish", + "location": { + "startX": -834, + "startY": -4839, + "endX": -926, + "endY": -4708 + }, + "neighbors": [ + "Light Forest West Upper", + "Light Forest Canyon", + "Light Forest East Lower" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Hobbit River": { + "territory": "Hobbit River", + "guild": "The Mage Legacy", + "location": { + "startX": -926, + "startY": -4550, + "endX": -806, + "endY": -4428 + }, + "neighbors": [ + "Aldorei Valley West Entrance", + "Light Forest East Lower", + "Light Forest West Lower", + "Light Peninsula" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Light Forest Canyon": { + "territory": "Light Forest Canyon", + "guild": "The Mage Legacy", + "location": { + "startX": -738, + "startY": -4708, + "endX": -818, + "endY": -4840 + }, + "neighbors": [ + "Light Forest East Mid", + "Light Forest North Exit", + "Mantis Nest" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Lone Farmstead": { + "territory": "Lone Farmstead", + "guild": "Wheres The Finish", + "location": { + "startX": -942, + "startY": -5227, + "endX": -1050, + "endY": -5116 + }, + "neighbors": [ + "Gelibord", + "Twisted Housing", + "Abandoned Manor" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Gelibord Corrupted Farm": { + "territory": "Gelibord Corrupted Farm", + "guild": "Eden", + "location": { + "startX": -1056, + "startY": -5355, + "endX": -1179, + "endY": -5448 + }, + "neighbors": [ + "Gelibord Castle", + "Gelibord", + "Twisted Housing", + "Taproot Descent" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Taproot Descent": { + "territory": "Taproot Descent", + "guild": "Eden", + "location": { + "startX": -1425, + "startY": -5407, + "endX": -1194, + "endY": -5589 + }, + "neighbors": [ + "Swamp Dark Forest Transition Mid", + "Gelibord Castle", + "Swamp Dark Forest Transition Upper", + "Fortress North", + "Gelibord Corrupted Farm" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Fortress South": { + "territory": "Fortress South", + "guild": "Eden", + "location": { + "startX": -1460, + "startY": -5025, + "endX": -1272, + "endY": -5210 + }, + "neighbors": [ + "Fortress North", + "Mansion of Insanity", + "Swamp Dark Forest Transition Lower", + "Orc Battlegrounds" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Twisted Housing": { + "territory": "Twisted Housing", + "guild": "Eden", + "location": { + "startX": -1133, + "startY": -5116, + "endX": -1053, + "endY": -5272 + }, + "neighbors": [ + "Gelibord", + "Gelibord Corrupted Farm", + "Efilim Village", + "Mansion of Insanity", + "Lone Farmstead" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Viscera Pits West": { + "territory": "Viscera Pits West", + "guild": "Wheres The Finish", + "location": { + "startX": -771, + "startY": -5504, + "endX": -899, + "endY": -5412 + }, + "neighbors": [ + "Viscera Pits East", + "Entrance to Kander", + "Lexdales Prison", + "Twisted Ridge" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Abandoned Manor": { + "territory": "Abandoned Manor", + "guild": "Wheres The Finish", + "location": { + "startX": -896, + "startY": -5232, + "endX": -802, + "endY": -5102 + }, + "neighbors": [ + "Lone Farmstead", + "Entrance to Kander", + "Mesquis Tower", + "Kander Mines" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Kander Mines": { + "territory": "Kander Mines", + "guild": "Wheres The Finish", + "location": { + "startX": -785, + "startY": -5229, + "endX": -725, + "endY": -5102 + }, + "neighbors": [ + "Abandoned Manor", + "Mesquis Tower", + "Dark Forest Village", + "Path to Talor" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Viscera Pits East": { + "territory": "Viscera Pits East", + "guild": "Wheres The Finish", + "location": { + "startX": -659, + "startY": -5424, + "endX": -766, + "endY": -5508 + }, + "neighbors": [ + "Viscera Pits West", + "Lexdale", + "Path to Talor" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Old Crossroads South": { + "territory": "Old Crossroads South", + "guild": "Wheres The Finish", + "location": { + "startX": -648, + "startY": -5311, + "endX": -567, + "endY": -5234 + }, + "neighbors": [ + "Cinfras Outskirts", + "Dark Forest Village", + "Old Crossroads North", + "Path to Talor", + "Fungal Grove" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Lexdale": { + "territory": "Lexdale", + "guild": "Wheres The Finish", + "location": { + "startX": -650, + "startY": -5511, + "endX": -562, + "endY": -5406 + }, + "neighbors": [ + "Decayed Basin", + "Viscera Pits East", + "Heart of Decay", + "Old Crossroads North" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Decayed Basin": { + "territory": "Decayed Basin", + "guild": "Wheres The Finish", + "location": { + "startX": -471, + "startY": -5405, + "endX": -549, + "endY": -5512 + }, + "neighbors": [ + "Mushroom Hill", + "Lexdale", + "Heart of Decay", + "Fungal Grove" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Cinfras Entrance": { + "territory": "Cinfras Entrance", + "guild": "Aequitas", + "location": { + "startX": -555, + "startY": -4996, + "endX": -717, + "endY": -4868 + }, + "neighbors": [ + "Light Forest North Exit", + "Mesquis Tower", + "Cinfras", + "Path to Cinfras" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Fallen Village": { + "territory": "Fallen Village", + "guild": "ChinaNumberOne", + "location": { + "startX": -288, + "startY": -5409, + "endX": -392, + "endY": -5294 + }, + "neighbors": [ + "Fungal Grove", + "Dark Forest Cinfras Transition", + "Gylia Lake North West", + "Mushroom Hill" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Guild Hall": { + "territory": "Guild Hall", + "guild": "Aequitas", + "location": { + "startX": -349, + "startY": -5093, + "endX": -137, + "endY": -4814 + }, + "neighbors": [ + "Cinfras" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Cinfras's Small Farm": { + "territory": "Cinfras's Small Farm", + "guild": "Aequitas", + "location": { + "startX": -224, + "startY": -4793, + "endX": -130, + "endY": -4643 + }, + "neighbors": [ + "Cinfras County Mid-Lower", + "Aldorei Lowlands", + "Aldorei Valley South Entrance", + "Cinfras County Lower" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Cinfras County Mid-Lower": { + "territory": "Cinfras County Mid-Lower", + "guild": "Aequitas", + "location": { + "startX": -127, + "startY": -4761, + "endX": 3, + "endY": -4895 + }, + "neighbors": [ + "Cinfras County Lower", + "Cinfras's Small Farm", + "Cinfras County Mid-Upper" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Cinfras County Upper": { + "territory": "Cinfras County Upper", + "guild": "Aequitas", + "location": { + "startX": -127, + "startY": -5155, + "endX": 3, + "endY": -5051 + }, + "neighbors": [ + "Path To Thanos", + "Gylia Lake South East", + "Cinfras County Mid-Upper" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Gylia Lake South West": { + "territory": "Gylia Lake South West", + "guild": "Aequitas", + "location": { + "startX": -130, + "startY": -5173, + "endX": -241, + "endY": -5271 + }, + "neighbors": [ + "Dark Forest Cinfras Transition", + "Gylia Lake North West", + "Gylia Lake South East" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Gylia Lake North East": { + "territory": "Gylia Lake North East", + "guild": "ChinaNumberOne", + "location": { + "startX": -128, + "startY": -5416, + "endX": 21, + "endY": -5273 + }, + "neighbors": [ + "Gylia Lake South East", + "Gylia Lake North West", + "Military Base", + "Gert Camp" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Jitak's Farm": { + "territory": "Jitak's Farm", + "guild": "ChinaNumberOne", + "location": { + "startX": -122, + "startY": -5430, + "endX": -218, + "endY": -5567 + }, + "neighbors": [ + "Gylia Lake North West", + "Gert Camp", + "Mushroom Hill" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Aldorei Valley Mid": { + "territory": "Aldorei Valley Mid", + "guild": "Aequitas", + "location": { + "startX": -322, + "startY": -4499, + "endX": -557, + "endY": -4395 + }, + "neighbors": [ + "Aldorei Valley Upper", + "Aldorei Valley Lower" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Aldorei's River": { + "territory": "Aldorei's River", + "guild": "Aequitas", + "location": { + "startX": -437, + "startY": -4656, + "endX": -338, + "endY": -4756 + }, + "neighbors": [ + "Aldorei Lowlands", + "Cinfras" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Aldorei's North Exit": { + "territory": "Aldorei's North Exit", + "guild": "Aequitas", + "location": { + "startX": -127, + "startY": -4639, + "endX": 3, + "endY": -4509 + }, + "neighbors": [ + "Path To The Arch", + "Aldorei Valley South Entrance", + "Cinfras County Lower" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Path To The Arch": { + "territory": "Path To The Arch", + "guild": "Aequitas", + "location": { + "startX": 35, + "startY": -4521, + "endX": 107, + "endY": -4641 + }, + "neighbors": [ + "Aldorei's Arch", + "Aldorei's North Exit", + "Ghostly Path" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Burning Farm": { + "territory": "Burning Farm", + "guild": "Aequitas", + "location": { + "startX": 107, + "startY": -4755, + "endX": 35, + "endY": -4857 + }, + "neighbors": [ + "Burning Airship", + "Ghostly Path" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Cinfras Thanos Transition": { + "territory": "Cinfras Thanos Transition", + "guild": "Aequitas", + "location": { + "startX": 98, + "startY": -4957, + "endX": 35, + "endY": -5046 + }, + "neighbors": [ + "Path To Thanos", + "Burning Airship", + "Cinfras County Mid-Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Path To Thanos": { + "territory": "Path To Thanos", + "guild": "Aequitas", + "location": { + "startX": 98, + "startY": -5049, + "endX": 35, + "endY": -5149 + }, + "neighbors": [ + "Cinfras Thanos Transition", + "Thanos" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Military Base": { + "territory": "Military Base", + "guild": "ChinaNumberOne", + "location": { + "startX": 104, + "startY": -5393, + "endX": 166, + "endY": -5518 + }, + "neighbors": [ + "Path To Military Base", + "Military Base Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Military Base Lower": { + "territory": "Military Base Lower", + "guild": "ChinaNumberOne", + "location": { + "startX": 244, + "startY": -5407, + "endX": 168, + "endY": -5315 + }, + "neighbors": [ + "Military Base Upper", + "Path To Ozoth's Spire Lower", + "Thanos Valley West" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Path To Ozoth's Spire Mid": { + "territory": "Path To Ozoth's Spire Mid", + "guild": "IceBlue Team", + "location": { + "startX": 199, + "startY": -5164, + "endX": 260, + "endY": -5042 + }, + "neighbors": [ + "Path To Ozoth's Spire Upper", + "Canyon Walk Way" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Bandit Cave Lower": { + "territory": "Bandit Cave Lower", + "guild": "IceBlue Team", + "location": { + "startX": 111, + "startY": -5043, + "endX": 194, + "endY": -4958 + }, + "neighbors": [ + "Path To Ozoth's Spire Upper", + "Canyon Valley South" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Canyon Entrance Waterfall": { + "territory": "Canyon Entrance Waterfall", + "guild": "IceBlue Team", + "location": { + "startX": 110, + "startY": -4869, + "endX": 194, + "endY": -4741 + }, + "neighbors": [ + "Canyon Path North West", + "Canyon Path North Mid" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Canyon Path South East": { + "territory": "Canyon Path South East", + "guild": "TheNoLifes", + "location": { + "startX": 194, + "startY": -4649, + "endX": 115, + "endY": -4521 + }, + "neighbors": [ + "Canyon Lower South East", + "Canyon Path North West" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Canyon Upper North West": { + "territory": "Canyon Upper North West", + "guild": "TheNoLifes", + "location": { + "startX": 200, + "startY": -4380, + "endX": 265, + "endY": -4518 + }, + "neighbors": [ + "Canyon Waterfall North", + "Aldorei's Arch" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Canyon Path South West": { + "territory": "Canyon Path South West", + "guild": "IceBlue Team", + "location": { + "startX": 265, + "startY": -4652, + "endX": 200, + "endY": -4741 + }, + "neighbors": [ + "Canyon Lower South East", + "Canyon Path North West" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Bandit Camp Exit": { + "territory": "Bandit Camp Exit", + "guild": "TheNoLifes", + "location": { + "startX": 264, + "startY": -4877, + "endX": 203, + "endY": -4971 + }, + "neighbors": [ + "Canyon Path North Mid", + "Canyon Valley South" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Thanos Valley West": { + "territory": "Thanos Valley West", + "guild": "ChinaNumberOne", + "location": { + "startX": 250, + "startY": -5401, + "endX": 311, + "endY": -5315 + }, + "neighbors": [ + "Military Base Lower" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Canyon Walk Way": { + "territory": "Canyon Walk Way", + "guild": "IceBlue Team", + "location": { + "startX": 271, + "startY": -5165, + "endX": 338, + "endY": -5041 + }, + "neighbors": [ + "Canyon Mountain East", + "Bandits Toll", + "Path To Ozoth's Spire Mid" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Canyon Mountain South": { + "territory": "Canyon Mountain South", + "guild": "TheNoLifes", + "location": { + "startX": 271, + "startY": -4946, + "endX": 337, + "endY": -4857 + }, + "neighbors": [ + "Canyon Waterfall Mid North", + "Krolton's Cave" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Canyon Fortress": { + "territory": "Canyon Fortress", + "guild": "TheNoLifes", + "location": { + "startX": 271, + "startY": -4739, + "endX": 338, + "endY": -4630 + }, + "neighbors": [ + "Canyon Waterfall Mid North", + "Valley of the Lost" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Canyon Dropoff": { + "territory": "Canyon Dropoff", + "guild": "TheNoLifes", + "location": { + "startX": 334, + "startY": -4518, + "endX": 269, + "endY": -4395 + }, + "neighbors": [ + "Cliff Side of the Lost", + "Mountain Path" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Bandits Toll": { + "territory": "Bandits Toll", + "guild": "IceBlue Team", + "location": { + "startX": 439, + "startY": -5038, + "endX": 345, + "endY": -5181 + }, + "neighbors": [ + "Canyon Walk Way", + "Wizard Tower North", + "Cliffside Valley", + "Thanos Exit Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Mountain Path": { + "territory": "Mountain Path", + "guild": "TheNoLifes", + "location": { + "startX": 334, + "startY": -4393, + "endX": 276, + "endY": -4314 + }, + "neighbors": [ + "Canyon Dropoff" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": true + }, + "Cliff Side of the Lost": { + "territory": "Cliff Side of the Lost", + "guild": "TheNoLifes", + "location": { + "startX": 340, + "startY": -4395, + "endX": 437, + "endY": -4508 + }, + "neighbors": [ + "Canyon Of The Lost", + "Valley of the Lost", + "Canyon Survivor", + "Canyon Dropoff", + "Mountain Edge" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Temple of the Lost East": { + "territory": "Temple of the Lost East", + "guild": "TheNoLifes", + "location": { + "startX": 440, + "startY": -4672, + "endX": 341, + "endY": -4838 + }, + "neighbors": [ + "Valley of the Lost", + "Krolton's Cave" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Hive South": { + "territory": "Hive South", + "guild": "IceBlue Team", + "location": { + "startX": 440, + "startY": -5315, + "endX": 560, + "endY": -5449 + }, + "neighbors": [ + "Chained House", + "Cherry Blossom Forest", + "Canyon High Path", + "Hive", + "Thanos Exit Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Cliffside Waterfall": { + "territory": "Cliffside Waterfall", + "guild": "IceBlue Team", + "location": { + "startX": 440, + "startY": -5183, + "endX": 563, + "endY": -5080 + }, + "neighbors": [ + "Canyon High Path" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Air Temple Lower": { + "territory": "Air Temple Lower", + "guild": "IceBlue Team", + "location": { + "startX": 445, + "startY": -4972, + "endX": 563, + "endY": -4835 + }, + "neighbors": [ + "Air Temple Upper", + "Krolton's Cave", + "Cliffside Valley" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Cliffside Lake": { + "territory": "Cliffside Lake", + "guild": "TheNoLifes", + "location": { + "startX": 445, + "startY": -4689, + "endX": 570, + "endY": -4568 + }, + "neighbors": [ + "Canyon Of The Lost", + "Cliffside Passage" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Kandon-Beda": { + "territory": "Kandon-Beda", + "guild": "TheNoLifes", + "location": { + "startX": 607, + "startY": -4579, + "endX": 760, + "endY": -4372 + }, + "neighbors": [ + "Canyon Of The Lost" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Cliffside Passage": { + "territory": "Cliffside Passage", + "guild": "TheNoLifes", + "location": { + "startX": 699, + "startY": -4817, + "endX": 572, + "endY": -4691 + }, + "neighbors": [ + "Cliffside Lake", + "Cliffside Passage North" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Entrance to Thesead North": { + "territory": "Entrance to Thesead North", + "guild": "TheNoLifes", + "location": { + "startX": 572, + "startY": -4935, + "endX": 700, + "endY": -5028 + }, + "neighbors": [ + "Entrance to Thesead South", + "Cliffside Passage North" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Chained House": { + "territory": "Chained House", + "guild": "IceBlue Team", + "location": { + "startX": 574, + "startY": -5375, + "endX": 699, + "endY": -5242 + }, + "neighbors": [ + "Cherry Blossom Forest", + "Entrance to Thesead South", + "Thesead Suburbs", + "Hive South" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Ranol's Farm": { + "territory": "Ranol's Farm", + "guild": "IceBlue Team", + "location": { + "startX": 810, + "startY": -5551, + "endX": 701, + "endY": -5377 + }, + "neighbors": [ + "Thesead Suburbs", + "Cherry Blossom Forest", + "Eltom" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Thesead": { + "territory": "Thesead", + "guild": "IceBlue Team", + "location": { + "startX": 747, + "startY": -5104, + "endX": 872, + "endY": -4964 + }, + "neighbors": [ + "Entrance to Thesead South", + "Thesead Suburbs" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Eltom": { + "territory": "Eltom", + "guild": "Avicia", + "location": { + "startX": 1029, + "startY": -5581, + "endX": 828, + "endY": -5376 + }, + "neighbors": [ + "Ranol's Farm", + "Entrance to Rodoroc" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Lava Lake": { + "territory": "Lava Lake", + "guild": "Avicia", + "location": { + "startX": 1531, + "startY": -5553, + "endX": 1387, + "endY": -5369 + }, + "neighbors": [ + "Active Volcano", + "Volcanic Slope", + "Molten Heights Portal" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Crater Descent": { + "territory": "Crater Descent", + "guild": "Avicia", + "location": { + "startX": 1383, + "startY": -5238, + "endX": 1230, + "endY": -5067 + }, + "neighbors": [ + "Molten Heights Portal", + "Lava Lake Bridge", + "Rodoroc" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Volcanic Slope": { + "territory": "Volcanic Slope", + "guild": "Avicia", + "location": { + "startX": 1531, + "startY": -5637, + "endX": 1221, + "endY": -5555 + }, + "neighbors": [ + "Lava Lake", + "Active Volcano" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Temple Island": { + "territory": "Temple Island", + "guild": "Avicia", + "location": { + "startX": 991, + "startY": -4643, + "endX": 1124, + "endY": -4750 + }, + "neighbors": [ + "Central Islands", + "Kandon Ridge", + "Swamp Island", + "Ahmsord", + "Snail Island" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Dernel Jungle Lower": { + "territory": "Dernel Jungle Lower", + "guild": "ShadowFall", + "location": { + "startX": -737, + "startY": -317, + "endX": -502, + "endY": -530 + }, + "neighbors": [ + "Jungle Lower", + "Dernel Jungle Mid" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Dernel Jungle Upper": { + "territory": "Dernel Jungle Upper", + "guild": "ShadowFall", + "location": { + "startX": -970, + "startY": -795, + "endX": -900, + "endY": -547 + }, + "neighbors": [ + "Dernel Jungle Mid" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": true + }, + "Corkus Castle": { + "territory": "Corkus Castle", + "guild": "Guardian of Wynn", + "location": { + "startX": -1555, + "startY": -2968, + "endX": -1452, + "endY": -2835 + }, + "neighbors": [ + "Corkus City" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Fallen Factory": { + "territory": "Fallen Factory", + "guild": "Guardian of Wynn", + "location": { + "startX": -1579, + "startY": -2662, + "endX": -1681, + "endY": -2518 + }, + "neighbors": [ + "Corkus City South", + "Corkus Sea Port", + "Factory Entrance", + "Ruined Houses" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Corkus City Mine": { + "territory": "Corkus City Mine", + "guild": "Guardian of Wynn", + "location": { + "startX": -1394, + "startY": -2750, + "endX": -1466, + "endY": -2831 + }, + "neighbors": [ + "Corkus Statue", + "Corkus Sea Cove", + "Road To Mine" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Factory Entrance": { + "territory": "Factory Entrance", + "guild": "Guardian of Wynn", + "location": { + "startX": -1683, + "startY": -2571, + "endX": -1798, + "endY": -2730 + }, + "neighbors": [ + "Corkus City South", + "Corkus Forest South", + "Fallen Factory", + "Ruined Houses" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Corkus Forest North": { + "territory": "Corkus Forest North", + "guild": "Guardian of Wynn", + "location": { + "startX": -1888, + "startY": -2862, + "endX": -1682, + "endY": -2995 + }, + "neighbors": [ + "Corkus City South", + "Corkus Forest South", + "Corkus City", + "Corkus Mountain" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Avos Workshop": { + "territory": "Avos Workshop", + "guild": "Guardian of Wynn", + "location": { + "startX": -1681, + "startY": -3178, + "endX": -1888, + "endY": -3375 + }, + "neighbors": [ + "Avos Temple" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Corkus Countryside": { + "territory": "Corkus Countryside", + "guild": "Guardian of Wynn", + "location": { + "startX": -1503, + "startY": -3191, + "endX": -1680, + "endY": -3012 + }, + "neighbors": [ + "Corkus Outskirts", + "Corkus Mountain", + "Corkus City", + "Avos Temple" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Ruined Houses": { + "territory": "Ruined Houses", + "guild": "Guardian of Wynn", + "location": { + "startX": -1684, + "startY": -2569, + "endX": -1793, + "endY": -2453 + }, + "neighbors": [ + "Corkus Sea Port", + "Fallen Factory", + "Factory Entrance" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Avos Temple": { + "territory": "Avos Temple", + "guild": "Guardian of Wynn", + "location": { + "startX": -1526, + "startY": -3225, + "endX": -1378, + "endY": -3426 + }, + "neighbors": [ + "Avos Workshop", + "Bloody Beach" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish", + "Ore", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Corkus Outskirts": { + "territory": "Corkus Outskirts", + "guild": "Guardian of Wynn", + "location": { + "startX": -1502, + "startY": -2976, + "endX": -1230, + "endY": -3224 + }, + "neighbors": [ + "Bloody Beach", + "Corkus Statue", + "Corkus Countryside" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Sky Castle": { + "territory": "Sky Castle", + "guild": "Avicia", + "location": { + "startX": 954, + "startY": -4425, + "endX": 854, + "endY": -4340 + }, + "neighbors": [ + "Path to Ahmsord Lower" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Path to Ahmsord Upper": { + "territory": "Path to Ahmsord Upper", + "guild": "Avicia", + "location": { + "startX": 885, + "startY": -4571, + "endX": 779, + "endY": -4639 + }, + "neighbors": [ + "Path to Ahmsord Lower", + "Kandon Ridge" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Old Coal Mine": { + "territory": "Old Coal Mine", + "guild": "Avicia", + "location": { + "startX": 719, + "startY": -4778, + "endX": 885, + "endY": -4900 + }, + "neighbors": [ + "Kandon Ridge" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Astraulus' Tower": { + "territory": "Astraulus' Tower", + "guild": "Avicia", + "location": { + "startX": 1102, + "startY": -5016, + "endX": 1250, + "endY": -4916 + }, + "neighbors": [ + "Dragonling Nests", + "Swamp Island" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Ahmsord Outskirts": { + "territory": "Ahmsord Outskirts", + "guild": "Avicia", + "location": { + "startX": 1336, + "startY": -4893, + "endX": 1179, + "endY": -4730 + }, + "neighbors": [ + "Wybel Island", + "Angel Refuge", + "Central Islands", + "Swamp Island" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Angel Refuge": { + "territory": "Angel Refuge", + "guild": "Avicia", + "location": { + "startX": 1354, + "startY": -4727, + "endX": 1484, + "endY": -4877 + }, + "neighbors": [ + "Ahmsord Outskirts", + "Molten Reach" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Central Islands": { + "territory": "Central Islands", + "guild": "Avicia", + "location": { + "startX": 1250, + "startY": -4718, + "endX": 1183, + "endY": -4535 + }, + "neighbors": [ + "Temple Island", + "Ahmsord Outskirts", + "Ahmsord", + "Wybel Island", + "Sky Island Ascent" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Sky Falls": { + "territory": "Sky Falls", + "guild": "Avicia", + "location": { + "startX": 1380, + "startY": -4458, + "endX": 1466, + "endY": -4653 + }, + "neighbors": [ + "Frozen Fort", + "Wybel Island", + "Sky Island Ascent" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Raider's Base Lower": { + "territory": "Raider's Base Lower", + "guild": "Avicia", + "location": { + "startX": 1558, + "startY": -4316, + "endX": 1305, + "endY": -4253 + }, + "neighbors": [ + "Raider's Base Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Jofash Docks": { + "territory": "Jofash Docks", + "guild": "Avicia", + "location": { + "startX": 1178, + "startY": -4175, + "endX": 1445, + "endY": -4012 + }, + "neighbors": [ + "Regular Island", + "Jofash Tunnel", + "Dead Island North East" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Lusuco": { + "territory": "Lusuco", + "guild": "Fuzzy Spiders", + "location": { + "startX": -267, + "startY": -348, + "endX": -91, + "endY": -250 + }, + "neighbors": [ + "Icy Descent" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Phinas Farm": { + "territory": "Phinas Farm", + "guild": "Guardian of Wynn", + "location": { + "startX": -1633, + "startY": -2162, + "endX": -1842, + "endY": -2058 + }, + "neighbors": [ + "Royal Gate", + "Lighthouse Plateau" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Cinfras Outskirts": { + "territory": "Cinfras Outskirts", + "guild": "Aequitas", + "location": { + "startX": -392, + "startY": -5116, + "endX": -534, + "endY": -5278 + }, + "neighbors": [ + "Dark Forest Cinfras Transition", + "Old Crossroads South", + "Dark Forest Village", + "Cinfras", + "Fungal Grove" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Llevigar": { + "territory": "Llevigar", + "guild": "Eden", + "location": { + "startX": -1800, + "startY": -4643, + "endX": -2171, + "endY": -4405 + }, + "neighbors": [ + "Quartz Mines South West", + "Llevigar Gate East", + "Llevigar Entrance" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Herb Cave": { + "territory": "Herb Cave", + "guild": "ShadowFall", + "location": { + "startX": -448, + "startY": -813, + "endX": -557, + "endY": -876 + }, + "neighbors": [ + "Great Bridge Jungle" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Icy Island": { + "territory": "Icy Island", + "guild": "The Mage Legacy", + "location": { + "startX": 1001, + "startY": -3274, + "endX": 1172, + "endY": -3430 + }, + "neighbors": [ + "Dujgon Nation", + "Regular Island", + "Nodguj Nation", + "Santa's Hideout" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Fleris Trail": { + "territory": "Fleris Trail", + "guild": "Eden", + "location": { + "startX": -1390, + "startY": -4594, + "endX": -1254, + "endY": -4351 + }, + "neighbors": [ + "Road To Light Forest" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": true + }, + "Abandoned Pass": { + "territory": "Abandoned Pass", + "guild": "The Dark Phoenix", + "location": { + "startX": 881, + "startY": -1225, + "endX": 1019, + "endY": -1380 + }, + "neighbors": [ + "Mining Base Upper", + "Ternaves Plains Lower" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Southern Outpost": { + "territory": "Southern Outpost", + "guild": "Guardian of Wynn", + "location": { + "startX": -1258, + "startY": -2204, + "endX": -1444, + "endY": -2306 + }, + "neighbors": [ + "Legendary Island", + "Lighthouse Plateau" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Corkus Sea Cove": { + "territory": "Corkus Sea Cove", + "guild": "Guardian of Wynn", + "location": { + "startX": -1578, + "startY": -2662, + "endX": -1330, + "endY": -2513 + }, + "neighbors": [ + "Fallen Factory", + "Corkus Sea Port", + "Corkus City Mine", + "Road To Mine" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "The Broken Road": { + "territory": "The Broken Road", + "guild": "Profession Heaven", + "location": { + "startX": 686, + "startY": -923, + "endX": 493, + "endY": -783 + }, + "neighbors": [ + "Worm Tunnel", + "The Silent Road" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Grey Ruins": { + "territory": "Grey Ruins", + "guild": "Profession Heaven", + "location": { + "startX": 683, + "startY": -619, + "endX": 477, + "endY": -515 + }, + "neighbors": [ + "Worm Tunnel", + "Forgotten Town" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Forest of Eyes": { + "territory": "Forest of Eyes", + "guild": "Profession Heaven", + "location": { + "startX": 813, + "startY": -333, + "endX": 1043, + "endY": -504 + }, + "neighbors": [ + "Forgotten Town", + "Sinister Forest" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Lutho": { + "territory": "Lutho", + "guild": "Profession Heaven", + "location": { + "startX": 936, + "startY": -654, + "endX": 1027, + "endY": -754 + }, + "neighbors": [ + "Sinister Forest", + "Paths of Sludge" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Toxic Drip": { + "territory": "Toxic Drip", + "guild": "Profession Heaven", + "location": { + "startX": 893, + "startY": -876, + "endX": 1086, + "endY": -992 + }, + "neighbors": [ + "Toxic Caves", + "Gateway to Nothing", + "Paths of Sludge" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Gateway to Nothing": { + "territory": "Gateway to Nothing", + "guild": "Profession Heaven", + "location": { + "startX": 1120, + "startY": -882, + "endX": 1244, + "endY": -1058 + }, + "neighbors": [ + "Void Valley", + "Final Step", + "Toxic Drip" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Final Step": { + "territory": "Final Step", + "guild": "Profession Heaven", + "location": { + "startX": 1388, + "startY": -869, + "endX": 1254, + "endY": -932 + }, + "neighbors": [ + "Bizarre Passage", + "Gateway to Nothing" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "The Gate": { + "territory": "The Gate", + "guild": "Profession Heaven", + "location": { + "startX": 1350, + "startY": -520, + "endX": 1265, + "endY": -410 + }, + "neighbors": [ + "Bizarre Passage" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": true + }, + "Luminous Plateau": { + "territory": "Luminous Plateau", + "guild": "Idiot Co", + "location": { + "startX": -894, + "startY": -5957, + "endX": -962, + "endY": -6066 + }, + "neighbors": [ + "Field of Life" + ], + "resources": [ + "Wood" + ], + "storage": [], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Primal Fen": { + "territory": "Primal Fen", + "guild": "Idiot Co", + "location": { + "startX": -894, + "startY": -6244, + "endX": -1026, + "endY": -6066 + }, + "neighbors": [ + "Field of Life" + ], + "resources": [ + "Ore" + ], + "storage": [], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Otherwordly Monolith": { + "territory": "Otherwordly Monolith", + "guild": "Idiot Co", + "location": { + "startX": -775, + "startY": -6164, + "endX": -662, + "endY": -6003 + }, + "neighbors": [ + "Azure Frontier", + "Path to Light" + ], + "resources": [ + "Fish" + ], + "storage": [], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nexus of Light": { + "territory": "Nexus of Light", + "guild": "Idiot Co", + "location": { + "startX": -645, + "startY": -6384, + "endX": -855, + "endY": -6561 + }, + "neighbors": [ + "Azure Frontier" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Nivla Woods Entrance": { + "territory": "Nivla Woods Entrance", + "guild": "HackForums", + "location": { + "startX": -435, + "startY": -1530, + "endX": -372, + "endY": -1652 + }, + "neighbors": [ + "Road to Time Valley", + "Emerald Trail", + "Plains", + "Nivla Woods" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Ragni East Suburbs": { + "territory": "Ragni East Suburbs", + "guild": "ShadowFall", + "location": { + "startX": -747, + "startY": -1653, + "endX": -616, + "endY": -1776 + }, + "neighbors": [ + "Ragni Main Entrance", + "Ragni Plains", + "Maltic Plains" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Maltic": { + "territory": "Maltic", + "guild": "ShadowFall", + "location": { + "startX": -604, + "startY": -1945, + "endX": -475, + "endY": -1884 + }, + "neighbors": [ + "Ragni Plains", + "Coastal Trail", + "Maltic Plains", + "Maltic Coast", + "South Farmers Valley" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Pigmen Ravines": { + "territory": "Pigmen Ravines", + "guild": "ShadowFall", + "location": { + "startX": -784, + "startY": -1398, + "endX": -617, + "endY": -1317 + }, + "neighbors": [ + "Pigmen Ravines Entrance", + "Abandoned Farm" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Abandoned Farm": { + "territory": "Abandoned Farm", + "guild": "ShadowFall", + "location": { + "startX": -577, + "startY": -1395, + "endX": -478, + "endY": -1335 + }, + "neighbors": [ + "Pigmen Ravines", + "Time Valley" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nemract Quarry": { + "territory": "Nemract Quarry", + "guild": "Nerfuria", + "location": { + "startX": -105, + "startY": -2069, + "endX": 20, + "endY": -1960 + }, + "neighbors": [ + "Plains Coast", + "Nemract Road", + "Nemract Plains West" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "North Nivla Woods": { + "territory": "North Nivla Woods", + "guild": "Nerfuria", + "location": { + "startX": -194, + "startY": -1632, + "endX": -86, + "endY": -1800 + }, + "neighbors": [ + "Nivla Woods Edge", + "Nivla Woods Exit", + "Plains" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nether Gate": { + "territory": "Nether Gate", + "guild": "The Dark Phoenix", + "location": { + "startX": 106, + "startY": -1341, + "endX": 342, + "endY": -1222 + }, + "neighbors": [ + "Nether Plains Upper", + "Corrupted Road", + "Nether Plains Lower", + "Plains Lake" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Detlas": { + "territory": "Detlas", + "guild": "The Dark Phoenix", + "location": { + "startX": 402, + "startY": -1657, + "endX": 536, + "endY": -1518 + }, + "neighbors": [ + "Detlas Savannah Transition", + "Detlas Close Suburbs", + "Detlas Trail East Plains" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Nivla Woods Edge": { + "territory": "Nivla Woods Edge", + "guild": "The Dark Phoenix", + "location": { + "startX": -74, + "startY": -1777, + "endX": -3, + "endY": -1485 + }, + "neighbors": [ + "North Nivla Woods", + "Nivla Woods Exit", + "Road to Elkurn", + "Detlas Far Suburbs" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Twain Lake": { + "territory": "Twain Lake", + "guild": "GlowOfDust", + "location": { + "startX": 0, + "startY": -330, + "endX": 80, + "endY": -530 + }, + "neighbors": [ + "Nesaak Plains South West", + "Twain Mansion" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Wood", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nesaak Plains South West": { + "territory": "Nesaak Plains South West", + "guild": "Fuzzy Spiders", + "location": { + "startX": 70, + "startY": -820, + "endX": -110, + "endY": -625 + }, + "neighbors": [ + "Nesaak Plains Lower North West", + "Twain Lake", + "Icy Descent", + "Nesaak Village", + "Nesaak Plains South East", + "Nesaak Bridge Transition" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nesaak Village": { + "territory": "Nesaak Village", + "guild": "Fuzzy Spiders", + "location": { + "startX": 75, + "startY": -850, + "endX": 160, + "endY": -760 + }, + "neighbors": [ + "Nesaak Plains Lower North West", + "Bob's Tomb", + "Nesaak Plains South East", + "Nesaak Plains North East", + "Nesaak Plains South West" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Great Bridge Jungle": { + "territory": "Great Bridge Jungle", + "guild": "ShadowFall", + "location": { + "startX": -395, + "startY": -790, + "endX": -515, + "endY": -610 + }, + "neighbors": [ + "Herb Cave", + "Great Bridge Nesaak", + "Jungle Lower" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Jungle Lake": { + "territory": "Jungle Lake", + "guild": "ShadowFall", + "location": { + "startX": -601, + "startY": -791, + "endX": -680, + "endY": -940 + }, + "neighbors": [ + "Jungle Mid", + "Temple of Legends", + "City of Troms" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Rymek East Mid": { + "territory": "Rymek East Mid", + "guild": "WrathOfTheFallen", + "location": { + "startX": 1211, + "startY": -1410, + "endX": 1480, + "endY": -1578 + }, + "neighbors": [ + "Rymek East Upper", + "Rymek East Lower", + "Rymek West Mid" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Rymek West Upper": { + "territory": "Rymek West Upper", + "guild": "WrathOfTheFallen", + "location": { + "startX": 1190, + "startY": -1665, + "endX": 975, + "endY": -1540 + }, + "neighbors": [ + "Desert Lower", + "Desert West Lower", + "Rymek East Upper", + "Rymek West Mid" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Desert Upper": { + "territory": "Desert Upper", + "guild": "Ultra Violet", + "location": { + "startX": 990, + "startY": -2270, + "endX": 1195, + "endY": -2120 + }, + "neighbors": [ + "Mummy's Tomb", + "Desert West Upper", + "Desert Mid-Upper" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Almuj City": { + "territory": "Almuj City", + "guild": "Ultra Violet", + "location": { + "startX": 1050, + "startY": -1900, + "endX": 840, + "endY": -2060 + }, + "neighbors": [ + "Savannah East Upper", + "Desert West Upper", + "Desert West Lower", + "Desert Mid-Upper", + "Desert Mid-Lower" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Savannah East Lower": { + "territory": "Savannah East Lower", + "guild": "Emorians", + "location": { + "startX": 775, + "startY": -1675, + "endX": 890, + "endY": -1860 + }, + "neighbors": [ + "Savannah West Lower", + "Ternaves", + "Savannah East Upper" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Bremminglar": { + "territory": "Bremminglar", + "guild": "Emorians", + "location": { + "startX": 760, + "startY": -2070, + "endX": 615, + "endY": -2120 + }, + "neighbors": [ + "Savannah West Upper", + "Lion Lair" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nemract Road": { + "territory": "Nemract Road", + "guild": "Nerfuria", + "location": { + "startX": 20, + "startY": -2065, + "endX": 151, + "endY": -1871 + }, + "neighbors": [ + "Nemract Town", + "Nemract Cathedral", + "Ancient Nemract", + "Nemract Plains East", + "Nemract Plains West", + "Nemract Quarry" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nemract Cathedral": { + "territory": "Nemract Cathedral", + "guild": "Nerfuria", + "location": { + "startX": 385, + "startY": -2180, + "endX": 270, + "endY": -2030 + }, + "neighbors": [ + "Nemract Road", + "Cathedral Harbour", + "Nemract Town", + "Ancient Nemract" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Zhight Island": { + "territory": "Zhight Island", + "guild": "The Mage Legacy", + "location": { + "startX": -727, + "startY": -2846, + "endX": -440, + "endY": -2629 + }, + "neighbors": [ + "Legendary Island", + "The Bear Zoo", + "Pirate Town" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Durum Isles East": { + "territory": "Durum Isles East", + "guild": "The Mage Legacy", + "location": { + "startX": 482, + "startY": -2841, + "endX": 548, + "endY": -2785 + }, + "neighbors": [ + "Durum Isles Center", + "Mage Island" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Dujgon Nation": { + "territory": "Dujgon Nation", + "guild": "The Mage Legacy", + "location": { + "startX": 1000, + "startY": -3550, + "endX": 925, + "endY": -3380 + }, + "neighbors": [ + "Dead Island South East", + "Regular Island", + "Icy Island", + "Dead Island South West", + "Nodguj Nation" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Dead Island North West": { + "territory": "Dead Island North West", + "guild": "The Mage Legacy", + "location": { + "startX": 870, + "startY": -3920, + "endX": 745, + "endY": -4040 + }, + "neighbors": [ + "Dead Island South West", + "Dead Island North East" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Volcano Lower": { + "territory": "Volcano Lower", + "guild": "Guardian of Wynn", + "location": { + "startX": -1164, + "startY": -3831, + "endX": -930, + "endY": -3530 + }, + "neighbors": [ + "Bloody Beach", + "Volcano Upper", + "Llevigar Entrance", + "Light Peninsula" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Ternaves Plains Lower": { + "territory": "Ternaves Plains Lower", + "guild": "The Dark Phoenix", + "location": { + "startX": 655, + "startY": -1430, + "endX": 880, + "endY": -1330 + }, + "neighbors": [ + "Abandoned Pass", + "Ternaves", + "Mining Base Upper", + "Ternaves Plains Upper", + "Mine Base Plains" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Desolate Valley": { + "territory": "Desolate Valley", + "guild": "Fuzzy Spiders", + "location": { + "startX": 330, + "startY": -1040, + "endX": 450, + "endY": -1170 + }, + "neighbors": [ + "Nether Plains Lower", + "Nesaak Transition", + "Plains Lake" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Detlas Savannah Transition": { + "territory": "Detlas Savannah Transition", + "guild": "The Dark Phoenix", + "location": { + "startX": 545, + "startY": -1520, + "endX": 650, + "endY": -1670 + }, + "neighbors": [ + "Detlas", + "Ternaves Plains Upper", + "Mine Base Plains", + "Savannah West Lower" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Llevigar Entrance": { + "territory": "Llevigar Entrance", + "guild": "Guardian of Wynn", + "location": { + "startX": -2048, + "startY": -4250, + "endX": -1932, + "endY": -4403 + }, + "neighbors": [ + "Llevigar" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Llevigar Farm Plains West": { + "territory": "Llevigar Farm Plains West", + "guild": "Eden", + "location": { + "startX": -2060, + "startY": -4746, + "endX": -2171, + "endY": -4828 + }, + "neighbors": [ + "Llevigar Gate West", + "Llevigar Farm Plains East", + "Llevigar Plains West Lower" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Llevigar Plains West Lower": { + "territory": "Llevigar Plains West Lower", + "guild": "Eden", + "location": { + "startX": -2060, + "startY": -4831, + "endX": -2171, + "endY": -4909 + }, + "neighbors": [ + "Llevigar Gate West", + "Llevigar Plains East Lower", + "Llevigar Farm Plains West", + "Llevigar Plains West Upper" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Swamp East Lower": { + "territory": "Swamp East Lower", + "guild": "Eden", + "location": { + "startX": -2059, + "startY": -5003, + "endX": -1956, + "endY": -5074 + }, + "neighbors": [ + "Sunspark Camp", + "Swamp West Lower", + "Swamp East Mid", + "Llevigar Plains East Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Swamp East Mid-Upper": { + "territory": "Swamp East Mid-Upper", + "guild": "Eden", + "location": { + "startX": -2059, + "startY": -5188, + "endX": -1955, + "endY": -5309 + }, + "neighbors": [ + "Swamp Plains Basin", + "Swamp East Mid", + "Swamp East Upper", + "Swamp West Mid-Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Swamp Dark Forest Transition Mid": { + "territory": "Swamp Dark Forest Transition Mid", + "guild": "Eden", + "location": { + "startX": -1519, + "startY": -5291, + "endX": -1626, + "endY": -5492 + }, + "neighbors": [ + "Swamp Dark Forest Transition Upper", + "Olux", + "Entrance to Olux", + "Taproot Descent", + "Swamp Dark Forest Transition Lower" + ], + "resources": [ + "Ore" + ], + "storage": [], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Olux": { + "territory": "Olux", + "guild": "Eden", + "location": { + "startX": -1810, + "startY": -5397, + "endX": -1668, + "endY": -5597 + }, + "neighbors": [ + "Swamp Dark Forest Transition Mid", + "Swamp Dark Forest Transition Upper", + "Entrance to Olux", + "Swamp Mountain Transition Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Swamp Mountain Transition Mid": { + "territory": "Swamp Mountain Transition Mid", + "guild": "Eden", + "location": { + "startX": -2127, + "startY": -5466, + "endX": -2066, + "endY": -5603 + }, + "neighbors": [ + "Swamp Mountain Transition Mid-Upper", + "Swamp Mountain Transition Lower", + "Swamp West Upper" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Quartz Mines South East": { + "territory": "Quartz Mines South East", + "guild": "Eden", + "location": { + "startX": -1391, + "startY": -4352, + "endX": -1607, + "endY": -4524 + }, + "neighbors": [ + "Quartz Mines South West", + "Quartz Mines North East" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Orc Lake": { + "territory": "Orc Lake", + "guild": "BRIS", + "location": { + "startX": -1933, + "startY": -4962, + "endX": -1816, + "endY": -4854 + }, + "neighbors": [ + "Llevigar Plains East Lower", + "Sunspark Camp", + "Llevigar Plains East Upper", + "Sablestone Camp", + "Orc Road" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Loamsprout Camp": { + "territory": "Loamsprout Camp", + "guild": "Eden", + "location": { + "startX": -1800, + "startY": -4852, + "endX": -1670, + "endY": -4684 + }, + "neighbors": [ + "Orc Road", + "Llevigar Farm", + "Quartz Mines North West", + "Sablestone Camp" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Forgotten Path": { + "territory": "Forgotten Path", + "guild": "Eden", + "location": { + "startX": -1603, + "startY": -4969, + "endX": -1529, + "endY": -5100 + }, + "neighbors": [ + "Goblin Plains East", + "Iron Road", + "Swamp Dark Forest Transition Lower" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Road To Light Forest": { + "territory": "Road To Light Forest", + "guild": "Eden", + "location": { + "startX": -1387, + "startY": -4595, + "endX": -1252, + "endY": -4713 + }, + "neighbors": [ + "Fleris Trail", + "Light Forest Entrance", + "Leadin Fortress" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Efilim South East Plains": { + "territory": "Efilim South East Plains", + "guild": "Wheres The Finish", + "location": { + "startX": -949, + "startY": -4942, + "endX": -1014, + "endY": -4847 + }, + "neighbors": [ + "Efilim East Plains", + "Light Forest East Upper", + "Efilim South Plains", + "Light Forest West Upper" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Aldorei Valley West Entrance": { + "territory": "Aldorei Valley West Entrance", + "guild": "The Mage Legacy", + "location": { + "startX": -736, + "startY": -4428, + "endX": -802, + "endY": -4553 + }, + "neighbors": [ + "Aldorei Valley Lower", + "Hobbit River", + "Mantis Nest" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Light Forest West Mid": { + "territory": "Light Forest West Mid", + "guild": "The Mage Legacy", + "location": { + "startX": -929, + "startY": -4552, + "endX": -1014, + "endY": -4706 + }, + "neighbors": [ + "Light Forest West Upper", + "Light Forest Entrance", + "Light Forest East Lower", + "Light Forest West Lower" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Light Forest East Lower": { + "territory": "Light Forest East Lower", + "guild": "The Mage Legacy", + "location": { + "startX": -926, + "startY": -4700, + "endX": -805, + "endY": -4552 + }, + "neighbors": [ + "Light Forest West Mid", + "Mantis Nest", + "Hobbit River", + "Light Forest East Mid" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Path to Cinfras": { + "territory": "Path to Cinfras", + "guild": "Wheres The Finish", + "location": { + "startX": -734, + "startY": -4842, + "endX": -818, + "endY": -4953 + }, + "neighbors": [ + "Cinfras Entrance", + "Light Forest East Upper" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Gelibord Castle": { + "territory": "Gelibord Castle", + "guild": "Eden", + "location": { + "startX": -1027, + "startY": -5470, + "endX": -1180, + "endY": -5600 + }, + "neighbors": [ + "Gelibord Corrupted Farm", + "Taproot Descent" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Mansion of Insanity": { + "territory": "Mansion of Insanity", + "guild": "Eden", + "location": { + "startX": -1237, + "startY": -5116, + "endX": -1144, + "endY": -5268 + }, + "neighbors": [ + "Fortress North", + "Fortress South", + "Twisted Housing" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Entrance to Kander": { + "territory": "Entrance to Kander", + "guild": "Wheres The Finish", + "location": { + "startX": -896, + "startY": -5408, + "endX": -792, + "endY": -5233 + }, + "neighbors": [ + "Abandoned Manor", + "Gelibord", + "Viscera Pits West", + "Path to Talor" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Path to Talor": { + "territory": "Path to Talor", + "guild": "Wheres The Finish", + "location": { + "startX": -653, + "startY": -5231, + "endX": -785, + "endY": -5401 + }, + "neighbors": [ + "Old Crossroads South", + "Entrance to Kander", + "Viscera Pits East", + "Dark Forest Village", + "Old Crossroads North", + "Kander Mines" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Old Crossroads North": { + "territory": "Old Crossroads North", + "guild": "Wheres The Finish", + "location": { + "startX": -648, + "startY": -5314, + "endX": -567, + "endY": -5400 + }, + "neighbors": [ + "Fungal Grove", + "Lexdale", + "Old Crossroads South", + "Path to Talor" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Heart of Decay": { + "territory": "Heart of Decay", + "guild": "Wheres The Finish", + "location": { + "startX": -598, + "startY": -5580, + "endX": -454, + "endY": -5518 + }, + "neighbors": [ + "Lexdale", + "Decayed Basin", + "Mushroom Hill" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Dark Forest Cinfras Transition": { + "territory": "Dark Forest Cinfras Transition", + "guild": "Aequitas", + "location": { + "startX": -290, + "startY": -5292, + "endX": -392, + "endY": -5116 + }, + "neighbors": [ + "Gylia Lake South West", + "Cinfras Outskirts", + "Fallen Village" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Cinfras County Lower": { + "territory": "Cinfras County Lower", + "guild": "Aequitas", + "location": { + "startX": 3, + "startY": -4760, + "endX": -127, + "endY": -4640 + }, + "neighbors": [ + "Cinfras County Mid-Lower", + "Aldorei's North Exit", + "Cinfras's Small Farm" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Gylia Lake South East": { + "territory": "Gylia Lake South East", + "guild": "Aequitas", + "location": { + "startX": 30, + "startY": -5157, + "endX": -127, + "endY": -5271 + }, + "neighbors": [ + "Gylia Lake South West", + "Cinfras County Upper", + "Gylia Lake North East", + "Thanos" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Gert Camp": { + "territory": "Gert Camp", + "guild": "ChinaNumberOne", + "location": { + "startX": 30, + "startY": -5447, + "endX": -83, + "endY": -5605 + }, + "neighbors": [ + "Gylia Lake North East", + "Jitak's Farm" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Aldorei Valley Upper": { + "territory": "Aldorei Valley Upper", + "guild": "Aequitas", + "location": { + "startX": -557, + "startY": -4501, + "endX": -322, + "endY": -4656 + }, + "neighbors": [ + "Aldorei Valley Mid", + "Aldorei's Waterfall" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Aldorei's Arch": { + "territory": "Aldorei's Arch", + "guild": "Aequitas", + "location": { + "startX": 33, + "startY": -4367, + "endX": 107, + "endY": -4519 + }, + "neighbors": [ + "Canyon Upper North West", + "Path To The Arch" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Burning Airship": { + "territory": "Burning Airship", + "guild": "Aequitas", + "location": { + "startX": 35, + "startY": -4859, + "endX": 107, + "endY": -4955 + }, + "neighbors": [ + "Burning Farm", + "Bandit Cave Upper", + "Cinfras Thanos Transition" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Path To Military Base": { + "territory": "Path To Military Base", + "guild": "ChinaNumberOne", + "location": { + "startX": 51, + "startY": -5297, + "endX": 166, + "endY": -5391 + }, + "neighbors": [ + "Thanos", + "Military Base" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Path To Ozoth's Spire Lower": { + "territory": "Path To Ozoth's Spire Lower", + "guild": "ChinaNumberOne", + "location": { + "startX": 260, + "startY": -5298, + "endX": 199, + "endY": -5169 + }, + "neighbors": [ + "Thanos", + "Military Base Lower" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Bandit Cave Upper": { + "territory": "Bandit Cave Upper", + "guild": "IceBlue Team", + "location": { + "startX": 194, + "startY": -4956, + "endX": 111, + "endY": -4872 + }, + "neighbors": [ + "Burning Airship" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Canyon Waterfall North": { + "territory": "Canyon Waterfall North", + "guild": "TheNoLifes", + "location": { + "startX": 115, + "startY": -4380, + "endX": 194, + "endY": -4518 + }, + "neighbors": [ + "Canyon Upper North West" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Canyon Path North Mid": { + "territory": "Canyon Path North Mid", + "guild": "TheNoLifes", + "location": { + "startX": 200, + "startY": -4743, + "endX": 264, + "endY": -4875 + }, + "neighbors": [ + "Canyon Entrance Waterfall", + "Canyon Waterfall Mid North", + "Bandit Camp Exit", + "Canyon Path South West" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Thanos Exit": { + "territory": "Thanos Exit", + "guild": "IceBlue Team", + "location": { + "startX": 338, + "startY": -5310, + "endX": 262, + "endY": -5168 + }, + "neighbors": [ + "Thanos Exit Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Canyon Waterfall Mid North": { + "territory": "Canyon Waterfall Mid North", + "guild": "TheNoLifes", + "location": { + "startX": 337, + "startY": -4855, + "endX": 271, + "endY": -4741 + }, + "neighbors": [ + "Canyon Path North Mid", + "Canyon Fortress", + "Canyon Mountain South" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Thanos Exit Upper": { + "territory": "Thanos Exit Upper", + "guild": "IceBlue Team", + "location": { + "startX": 347, + "startY": -5313, + "endX": 438, + "endY": -5183 + }, + "neighbors": [ + "Canyon High Path", + "Hive", + "Bandits Toll", + "Thanos Exit", + "Hive South" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Mountain Edge": { + "territory": "Mountain Edge", + "guild": "TheNoLifes", + "location": { + "startX": 437, + "startY": -4314, + "endX": 336, + "endY": -4392 + }, + "neighbors": [ + "Cliff Side of the Lost" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Krolton's Cave": { + "territory": "Krolton's Cave", + "guild": "IceBlue Team", + "location": { + "startX": 341, + "startY": -4841, + "endX": 438, + "endY": -4962 + }, + "neighbors": [ + "Wizard Tower North", + "Temple of the Lost East", + "Air Temple Lower", + "Canyon Mountain South" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Cliffside Valley": { + "territory": "Cliffside Valley", + "guild": "IceBlue Team", + "location": { + "startX": 563, + "startY": -5079, + "endX": 440, + "endY": -4975 + }, + "neighbors": [ + "Entrance to Thesead South", + "Bandits Toll", + "Air Temple Lower", + "Entrance to Thesead North" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Canyon Of The Lost": { + "territory": "Canyon Of The Lost", + "guild": "TheNoLifes", + "location": { + "startX": 443, + "startY": -4566, + "endX": 570, + "endY": -4392 + }, + "neighbors": [ + "Kandon-Beda", + "Cliff Side of the Lost", + "Cliffside Lake", + "Valley of the Lost" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Cliffside Passage North": { + "territory": "Cliffside Passage North", + "guild": "TheNoLifes", + "location": { + "startX": 572, + "startY": -4818, + "endX": 700, + "endY": -4933 + }, + "neighbors": [ + "Entrance to Thesead North", + "Cliffside Passage" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Cherry Blossom Forest": { + "territory": "Cherry Blossom Forest", + "guild": "IceBlue Team", + "location": { + "startX": 699, + "startY": -5378, + "endX": 575, + "endY": -5551 + }, + "neighbors": [ + "Ranol's Farm", + "Chained House", + "Hive South" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Entrance to Rodoroc": { + "territory": "Entrance to Rodoroc", + "guild": "Avicia", + "location": { + "startX": 854, + "startY": -5257, + "endX": 1113, + "endY": -5367 + }, + "neighbors": [ + "Thesead Suburbs", + "Eltom", + "Rodoroc" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Lava Lake Bridge": { + "territory": "Lava Lake Bridge", + "guild": "Avicia", + "location": { + "startX": 1230, + "startY": -5240, + "endX": 1379, + "endY": -5366 + }, + "neighbors": [ + "Active Volcano", + "Molten Heights Portal", + "Crater Descent" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Ahmsord": { + "territory": "Ahmsord", + "guild": "Avicia", + "location": { + "startX": 1163, + "startY": -4462, + "endX": 942, + "endY": -4604 + }, + "neighbors": [ + "Path to Ahmsord Lower", + "Temple Island", + "Path to Ahmsord Upper", + "Sky Island Ascent" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Dernel Jungle Mid": { + "territory": "Dernel Jungle Mid", + "guild": "ShadowFall", + "location": { + "startX": -744, + "startY": -528, + "endX": -965, + "endY": -264 + }, + "neighbors": [ + "Dernel Jungle Upper", + "Dernel Jungle Lower" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Corkus City South": { + "territory": "Corkus City South", + "guild": "Guardian of Wynn", + "location": { + "startX": -1559, + "startY": -2662, + "endX": -1679, + "endY": -2833 + }, + "neighbors": [ + "Corkus Forest South", + "Fallen Factory", + "Factory Entrance", + "Road To Mine", + "Corkus City" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Legendary Island": { + "territory": "Legendary Island", + "guild": "Guardian of Wynn", + "location": { + "startX": -1212, + "startY": -2576, + "endX": -1001, + "endY": -2342 + }, + "neighbors": [ + "Zhight Island", + "Southern Outpost" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Corkus Mountain": { + "territory": "Corkus Mountain", + "guild": "Guardian of Wynn", + "location": { + "startX": -1888, + "startY": -2997, + "endX": -1683, + "endY": -3175 + }, + "neighbors": [ + "Corkus Forest North", + "Corkus Countryside", + "Corkus Docks" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Corkus Sea Port": { + "territory": "Corkus Sea Port", + "guild": "Guardian of Wynn", + "location": { + "startX": -1680, + "startY": -2512, + "endX": -1437, + "endY": -2307 + }, + "neighbors": [ + "Fallen Factory", + "Lighthouse Plateau", + "Ruined Houses", + "Corkus Sea Cove" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Bloody Beach": { + "territory": "Bloody Beach", + "guild": "Guardian of Wynn", + "location": { + "startX": -1376, + "startY": -3225, + "endX": -1097, + "endY": -3426 + }, + "neighbors": [ + "Avos Temple", + "Corkus Countryside", + "Pirate Town", + "Volcano Lower", + "Corkus Outskirts" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Path to Ahmsord Lower": { + "territory": "Path to Ahmsord Lower", + "guild": "Avicia", + "location": { + "startX": 779, + "startY": -4480, + "endX": 885, + "endY": -4570 + }, + "neighbors": [ + "Sky Castle", + "Path to Ahmsord Upper", + "Ahmsord" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Dragonling Nests": { + "territory": "Dragonling Nests", + "guild": "Avicia", + "location": { + "startX": 925, + "startY": -4916, + "endX": 1101, + "endY": -5016 + }, + "neighbors": [ + "Astraulus' Tower", + "Snail Island" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": true + }, + "Swamp Island": { + "territory": "Swamp Island", + "guild": "Avicia", + "location": { + "startX": 1178, + "startY": -4754, + "endX": 1101, + "endY": -4915 + }, + "neighbors": [ + "Temple Island", + "Astraulus' Tower", + "Ahmsord Outskirts" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Sky Island Ascent": { + "territory": "Sky Island Ascent", + "guild": "Avicia", + "location": { + "startX": 1180, + "startY": -4524, + "endX": 1379, + "endY": -4355 + }, + "neighbors": [ + "Jofash Tunnel", + "Central Islands", + "Sky Falls", + "Raider's Base Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Jofash Tunnel": { + "territory": "Jofash Tunnel", + "guild": "Avicia", + "location": { + "startX": 1304, + "startY": -4354, + "endX": 1126, + "endY": -4176 + }, + "neighbors": [ + "Jofash Docks", + "Sky Island Ascent" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Icy Descent": { + "territory": "Icy Descent", + "guild": "Fuzzy Spiders", + "location": { + "startX": -311, + "startY": -358, + "endX": -104, + "endY": -496 + }, + "neighbors": [ + "Tower of Ascension", + "Lusuco" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Rodoroc": { + "territory": "Rodoroc", + "guild": "Avicia", + "location": { + "startX": 1200, + "startY": -5067, + "endX": 965, + "endY": -5238 + }, + "neighbors": [ + "Crater Descent" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Twisted Ridge": { + "territory": "Twisted Ridge", + "guild": "Wheres The Finish", + "location": { + "startX": -1020, + "startY": -5603, + "endX": -910, + "endY": -5343 + }, + "neighbors": [ + "Entrance to Kander", + "Viscera Pits West" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Orc Battlegrounds": { + "territory": "Orc Battlegrounds", + "guild": "Eden", + "location": { + "startX": -1460, + "startY": -5024, + "endX": -1282, + "endY": -4870 + }, + "neighbors": [ + "Leadin Fortress", + "Fortress South" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Lighthouse Plateau": { + "territory": "Lighthouse Plateau", + "guild": "Guardian of Wynn", + "location": { + "startX": -1633, + "startY": -2162, + "endX": -1445, + "endY": -2306 + }, + "neighbors": [ + "Corkus Sea Port", + "Phinas Farm", + "Southern Outpost" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Worm Tunnel": { + "territory": "Worm Tunnel", + "guild": "Profession Heaven", + "location": { + "startX": 641, + "startY": -767, + "endX": 543, + "endY": -640 + }, + "neighbors": [ + "The Broken Road", + "Grey Ruins" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Sinister Forest": { + "territory": "Sinister Forest", + "guild": "Profession Heaven", + "location": { + "startX": 815, + "startY": -506, + "endX": 1059, + "endY": -629 + }, + "neighbors": [ + "Forest of Eyes", + "Lutho" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Toxic Caves": { + "territory": "Toxic Caves", + "guild": "Profession Heaven", + "location": { + "startX": 1017, + "startY": -1146, + "endX": 844, + "endY": -993 + }, + "neighbors": [ + "Toxic Drip" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Bizarre Passage": { + "territory": "Bizarre Passage", + "guild": "Profession Heaven", + "location": { + "startX": 1187, + "startY": -680, + "endX": 1388, + "endY": -530 + }, + "neighbors": [ + "The Gate", + "Final Step" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Field of Life": { + "territory": "Field of Life", + "guild": "Idiot Co", + "location": { + "startX": -894, + "startY": -6010, + "endX": -827, + "endY": -6164 + }, + "neighbors": [ + "Heavenly Ingress", + "Luminous Plateau", + "Azure Frontier", + "Primal Fen" + ], + "resources": [ + "Wood" + ], + "storage": [], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Path to Light": { + "territory": "Path to Light", + "guild": "Idiot Co", + "location": { + "startX": -775, + "startY": -6164, + "endX": -827, + "endY": -6010 + }, + "neighbors": [ + "Azure Frontier", + "Otherwordly Monolith" + ], + "resources": [ + "Fish" + ], + "storage": [], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Katoa Ranch": { + "territory": "Katoa Ranch", + "guild": "ShadowFall", + "location": { + "startX": -914, + "startY": -1860, + "endX": -748, + "endY": -1955 + }, + "neighbors": [ + "Ragni North Entrance", + "Ragni North Suburbs" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": true + }, + "Plains": { + "territory": "Plains", + "guild": "ShadowFall", + "location": { + "startX": -435, + "startY": -1883, + "endX": -270, + "endY": -1653 + }, + "neighbors": [ + "Nivla Woods Entrance", + "North Nivla Woods", + "South Farmers Valley", + "Maltic Plains" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Road to Time Valley": { + "territory": "Road to Time Valley", + "guild": "ShadowFall", + "location": { + "startX": -461, + "startY": -1525, + "endX": -359, + "endY": -1412 + }, + "neighbors": [ + "South Nivla Woods", + "Nivla Woods Entrance", + "Nivla Woods" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Road to Elkurn": { + "territory": "Road to Elkurn", + "guild": "ShadowFall", + "location": { + "startX": -89, + "startY": -1481, + "endX": 2, + "endY": -1267 + }, + "neighbors": [ + "Elkurn", + "Elkurn Fields", + "South Nivla Woods" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "North Farmers Valley": { + "territory": "North Farmers Valley", + "guild": "Nerfuria", + "location": { + "startX": -348, + "startY": -2060, + "endX": -254, + "endY": -1954 + }, + "neighbors": [ + "Maltic Plains", + "Maltic Coast", + "South Farmers Valley" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Bob's Tomb": { + "territory": "Bob's Tomb", + "guild": "Fuzzy Spiders", + "location": { + "startX": 246, + "startY": -747, + "endX": 380, + "endY": -867 + }, + "neighbors": [ + "Nesaak Village", + "Nesaak Plains South East", + "Nesaak Plains North East" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nesaak Plains Mid North West": { + "territory": "Nesaak Plains Mid North West", + "guild": "Fuzzy Spiders", + "location": { + "startX": -140, + "startY": -860, + "endX": -180, + "endY": -980 + }, + "neighbors": [ + "Nesaak Plains Lower North West", + "Nesaak Plains Upper North West" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "City of Troms": { + "territory": "City of Troms", + "guild": "ShadowFall", + "location": { + "startX": -726, + "startY": -970, + "endX": -899, + "endY": -826 + }, + "neighbors": [ + "South Pigmen Ravines", + "Jungle Lake", + "Temple of Legends" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Desert East Mid": { + "territory": "Desert East Mid", + "guild": "WrathOfTheFallen", + "location": { + "startX": 1260, + "startY": -2170, + "endX": 1450, + "endY": -2020 + }, + "neighbors": [ + "Desert East Lower", + "Desert East Upper", + "Desert Mid-Upper" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Desert West Upper": { + "territory": "Desert West Upper", + "guild": "Ultra Violet", + "location": { + "startX": 990, + "startY": -2270, + "endX": 895, + "endY": -2140 + }, + "neighbors": [ + "Desert Upper", + "Almuj City" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nemract Town": { + "territory": "Nemract Town", + "guild": "Nerfuria", + "location": { + "startX": 10, + "startY": -2070, + "endX": 210, + "endY": -2270 + }, + "neighbors": [ + "Plains Coast", + "Nemract Road", + "Rooster Island", + "Nemract Cathedral" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "The Bear Zoo": { + "territory": "The Bear Zoo", + "guild": "The Mage Legacy", + "location": { + "startX": -409, + "startY": -2539, + "endX": -283, + "endY": -2414 + }, + "neighbors": [ + "Rooster Island", + "Zhight Island" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Pirate Town": { + "territory": "Pirate Town", + "guild": "The Mage Legacy", + "location": { + "startX": -750, + "startY": -3251, + "endX": -580, + "endY": -3006 + }, + "neighbors": [ + "Bloody Beach", + "Zhight Island", + "Lost Atoll" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Maro Peaks": { + "territory": "Maro Peaks", + "guild": "The Mage Legacy", + "location": { + "startX": -41, + "startY": -4174, + "endX": 453, + "endY": -3793 + }, + "neighbors": [ + "Skiens Island", + "Tree Island" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Mining Base Lower": { + "territory": "Mining Base Lower", + "guild": "The Dark Phoenix", + "location": { + "startX": 870, + "startY": -1130, + "endX": 670, + "endY": -1225 + }, + "neighbors": [ + "Mining Base Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Detlas Trail East Plains": { + "territory": "Detlas Trail East Plains", + "guild": "The Dark Phoenix", + "location": { + "startX": 200, + "startY": -1820, + "endX": 510, + "endY": -1675 + }, + "neighbors": [ + "Detlas", + "Cathedral Harbour", + "Ancient Nemract", + "Detlas Close Suburbs", + "Detlas Suburbs" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Cinfras": { + "territory": "Cinfras", + "guild": "Aequitas", + "location": { + "startX": -534, + "startY": -4807, + "endX": -375, + "endY": -5088 + }, + "neighbors": [ + "Cinfras Outskirts", + "Cinfras Entrance", + "Aldorei's River", + "Guild Hall" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Swamp West Mid": { + "territory": "Swamp West Mid", + "guild": "Eden", + "location": { + "startX": -2060, + "startY": -5082, + "endX": -2171, + "endY": -5186 + }, + "neighbors": [ + "Swamp West Lower", + "Swamp East Mid", + "Swamp West Mid-Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Swamp Lower": { + "territory": "Swamp Lower", + "guild": "BRIS", + "location": { + "startX": -1649, + "startY": -5134, + "endX": -1763, + "endY": -5241 + }, + "neighbors": [ + "Swamp Dark Forest Transition Lower", + "Swamp Mountain Base", + "Entrance to Olux", + "Iron Road" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Swamp Mountain Transition Upper": { + "territory": "Swamp Mountain Transition Upper", + "guild": "Eden", + "location": { + "startX": -1981, + "startY": -5466, + "endX": -1889, + "endY": -5603 + }, + "neighbors": [ + "Swamp Mountain Transition Mid-Upper", + "Swamp East Upper", + "Olux" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Meteor Crater": { + "territory": "Meteor Crater", + "guild": "BRIS", + "location": { + "startX": -1800, + "startY": -5099, + "endX": -1690, + "endY": -4969 + }, + "neighbors": [ + "Sunspark Camp", + "Iron Road", + "Sablestone Camp" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Pre-Light Forest Transition": { + "territory": "Pre-Light Forest Transition", + "guild": "Eden", + "location": { + "startX": -1553, + "startY": -4850, + "endX": -1476, + "endY": -4719 + }, + "neighbors": [ + "Llevigar Farm", + "Leadin Fortress", + "Quartz Mines North East", + "Goblin Plains East" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Light Forest Entrance": { + "territory": "Light Forest Entrance", + "guild": "The Mage Legacy", + "location": { + "startX": -1040, + "startY": -4706, + "endX": -1134, + "endY": -4552 + }, + "neighbors": [ + "Light Forest West Mid", + "Road To Light Forest", + "Light Forest South Entrance", + "Light Forest North Entrance" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Light Forest East Upper": { + "territory": "Light Forest East Upper", + "guild": "Wheres The Finish", + "location": { + "startX": -926, + "startY": -4842, + "endX": -831, + "endY": -4945 + }, + "neighbors": [ + "Efilim South East Plains", + "Path to Cinfras" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Gelibord": { + "territory": "Gelibord", + "guild": "Wheres The Finish", + "location": { + "startX": -1050, + "startY": -5244, + "endX": -958, + "endY": -5342 + }, + "neighbors": [ + "Lone Farmstead", + "Entrance to Kander", + "Gelibord Corrupted Farm", + "Twisted Housing" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Lexdales Prison": { + "territory": "Lexdales Prison", + "guild": "Wheres The Finish", + "location": { + "startX": -873, + "startY": -5518, + "endX": -772, + "endY": -5585 + }, + "neighbors": [ + "Twisted Ridge", + "Viscera Pits West" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": true + }, + "Dark Forest Village": { + "territory": "Dark Forest Village", + "guild": "Wheres The Finish", + "location": { + "startX": -723, + "startY": -5229, + "endX": -574, + "endY": -5147 + }, + "neighbors": [ + "Cinfras Outskirts", + "Old Crossroads South", + "Kander Mines", + "Path to Talor" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Mushroom Hill": { + "territory": "Mushroom Hill", + "guild": "ChinaNumberOne", + "location": { + "startX": -288, + "startY": -5411, + "endX": -392, + "endY": -5601 + }, + "neighbors": [ + "Decayed Basin", + "Fallen Village", + "Heart of Decay", + "Jitak's Farm" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Cinfras County Mid-Upper": { + "territory": "Cinfras County Mid-Upper", + "guild": "Aequitas", + "location": { + "startX": -127, + "startY": -4896, + "endX": 3, + "endY": -5050 + }, + "neighbors": [ + "Cinfras County Mid-Lower", + "Cinfras County Upper", + "Cinfras Thanos Transition" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Aldorei Valley Lower": { + "territory": "Aldorei Valley Lower", + "guild": "Aequitas", + "location": { + "startX": -714, + "startY": -4395, + "endX": -559, + "endY": -4499 + }, + "neighbors": [ + "Aldorei Valley Mid", + "Aldorei Valley West Entrance" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Ghostly Path": { + "territory": "Ghostly Path", + "guild": "Aequitas", + "location": { + "startX": 35, + "startY": -4643, + "endX": 107, + "endY": -4753 + }, + "neighbors": [ + "Path To The Arch", + "Burning Farm" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Military Base Upper": { + "territory": "Military Base Upper", + "guild": "ChinaNumberOne", + "location": { + "startX": 168, + "startY": -5408, + "endX": 250, + "endY": -5518 + }, + "neighbors": [ + "Military Base Lower", + "Military Base" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Canyon Path North West": { + "territory": "Canyon Path North West", + "guild": "TheNoLifes", + "location": { + "startX": 110, + "startY": -4736, + "endX": 194, + "endY": -4651 + }, + "neighbors": [ + "Canyon Entrance Waterfall", + "Canyon Path South East" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Canyon Valley South": { + "territory": "Canyon Valley South", + "guild": "IceBlue Team", + "location": { + "startX": 263, + "startY": -4973, + "endX": 199, + "endY": -5035 + }, + "neighbors": [ + "Canyon Mountain East", + "Bandit Cave Lower", + "Bandit Camp Exit" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Canyon Survivor": { + "territory": "Canyon Survivor", + "guild": "TheNoLifes", + "location": { + "startX": 338, + "startY": -4628, + "endX": 269, + "endY": -4522 + }, + "neighbors": [ + "Canyon Lower South East", + "Cliff Side of the Lost" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Valley of the Lost": { + "territory": "Valley of the Lost", + "guild": "TheNoLifes", + "location": { + "startX": 435, + "startY": -4511, + "endX": 341, + "endY": -4670 + }, + "neighbors": [ + "Canyon Of The Lost", + "Temple of the Lost East", + "Canyon Fortress" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Air Temple Upper": { + "territory": "Air Temple Upper", + "guild": "IceBlue Team", + "location": { + "startX": 570, + "startY": -4833, + "endX": 445, + "endY": -4692 + }, + "neighbors": [ + "Air Temple Lower" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Entrance to Thesead South": { + "territory": "Entrance to Thesead South", + "guild": "IceBlue Team", + "location": { + "startX": 700, + "startY": -5030, + "endX": 574, + "endY": -5181 + }, + "neighbors": [ + "Chained House", + "Entrance to Thesead North", + "Cliffside Valley", + "Thesead" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Molten Heights Portal": { + "territory": "Molten Heights Portal", + "guild": "Avicia", + "location": { + "startX": 1535, + "startY": -5067, + "endX": 1387, + "endY": -5366 + }, + "neighbors": [ + "Lava Lake", + "Crater Descent", + "Lava Lake Bridge" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Snail Island": { + "territory": "Snail Island", + "guild": "Avicia", + "location": { + "startX": 949, + "startY": -4885, + "endX": 1057, + "endY": -4804 + }, + "neighbors": [ + "Temple Island" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Road To Mine": { + "territory": "Road To Mine", + "guild": "Guardian of Wynn", + "location": { + "startX": -1467, + "startY": -2834, + "endX": -1557, + "endY": -2691 + }, + "neighbors": [ + "Corkus City Mine", + "Corkus Sea Cove", + "Corkus City South" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Corkus Docks": { + "territory": "Corkus Docks", + "guild": "Guardian of Wynn", + "location": { + "startX": -1891, + "startY": -2997, + "endX": -2022, + "endY": -3274 + }, + "neighbors": [ + "Corkus Mountain" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Frozen Fort": { + "territory": "Frozen Fort", + "guild": "The Mage Legacy", + "location": { + "startX": 1501, + "startY": -4513, + "endX": 1586, + "endY": -4789 + }, + "neighbors": [ + "Sky Falls" + ], + "resources": [ + "Crops" + ], + "storage": [], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Molten Reach": { + "territory": "Molten Reach", + "guild": "Avicia", + "location": { + "startX": 1251, + "startY": -4894, + "endX": 1500, + "endY": -4964 + }, + "neighbors": [ + "Molten Heights Portal", + "Angel Refuge" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Raider's Base Upper": { + "territory": "Raider's Base Upper", + "guild": "Avicia", + "location": { + "startX": 1380, + "startY": -4457, + "endX": 1551, + "endY": -4316 + }, + "neighbors": [ + "Raider's Base Lower", + "Sky Island Ascent" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Aldorei Lowlands": { + "territory": "Aldorei Lowlands", + "guild": "Aequitas", + "location": { + "startX": -337, + "startY": -4756, + "endX": -225, + "endY": -4657 + }, + "neighbors": [ + "Cinfras's Small Farm", + "Aldorei's River", + "Aldorei's Waterfall" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Royal Gate": { + "territory": "Royal Gate", + "guild": "Guardian of Wynn", + "location": { + "startX": -1822, + "startY": -1995, + "endX": -2015, + "endY": -1725 + }, + "neighbors": [ + "Phinas Farm" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": true + }, + "The Silent Road": { + "territory": "The Silent Road", + "guild": "Profession Heaven", + "location": { + "startX": 540, + "startY": -1088, + "endX": 704, + "endY": -961 + }, + "neighbors": [ + "Mine Base Plains", + "The Broken Road" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Paths of Sludge": { + "territory": "Paths of Sludge", + "guild": "Profession Heaven", + "location": { + "startX": 1040, + "startY": -767, + "endX": 892, + "endY": -870 + }, + "neighbors": [ + "Lutho", + "Toxic Drip" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Heavenly Ingress": { + "territory": "Heavenly Ingress", + "guild": "Idiot Co", + "location": { + "startX": -814, + "startY": -6015, + "endX": -894, + "endY": -5928 + }, + "neighbors": [ + "Field of Life", + "Light Forest South Entrance" + ], + "resources": [ + "Wood" + ], + "storage": [], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Light Peninsula": { + "territory": "Light Peninsula", + "guild": "The Mage Legacy", + "location": { + "startX": -951, + "startY": -4421, + "endX": -802, + "endY": -4108 + }, + "neighbors": [ + "Volcano Lower", + "Tree Island", + "Hobbit River", + "Volcano Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Ragni Main Entrance": { + "territory": "Ragni Main Entrance", + "guild": "ShadowFall", + "location": { + "startX": -747, + "startY": -1530, + "endX": -616, + "endY": -1652 + }, + "neighbors": [ + "Ragni East Suburbs", + "Ragni", + "Emerald Trail" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Little Wood": { + "territory": "Little Wood", + "guild": "ShadowFall", + "location": { + "startX": -812, + "startY": -1177, + "endX": -636, + "endY": -1094 + }, + "neighbors": [ + "Time Valley", + "South Pigmen Ravines" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Detlas Suburbs": { + "territory": "Detlas Suburbs", + "guild": "The Dark Phoenix", + "location": { + "startX": 188, + "startY": -1657, + "endX": 300, + "endY": -1500 + }, + "neighbors": [ + "Nether Plains Upper", + "Detlas Close Suburbs", + "Detlas Trail East Plains", + "Detlas Far Suburbs" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nesaak Plains Lower North West": { + "territory": "Nesaak Plains Lower North West", + "guild": "Fuzzy Spiders", + "location": { + "startX": 70, + "startY": -834, + "endX": -120, + "endY": -910 + }, + "neighbors": [ + "Nesaak Plains Upper North West", + "Nesaak Plains Mid North West", + "Nesaak Village", + "Nesaak Plains South West" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Rymek West Lower": { + "territory": "Rymek West Lower", + "guild": "WrathOfTheFallen", + "location": { + "startX": 1209, + "startY": -1269, + "endX": 1020, + "endY": -1380 + }, + "neighbors": [ + "Rymek East Lower", + "Rymek West Mid" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Savannah West Lower": { + "territory": "Savannah West Lower", + "guild": "The Dark Phoenix", + "location": { + "startX": 775, + "startY": -1675, + "endX": 630, + "endY": -1830 + }, + "neighbors": [ + "Ternaves Plains Upper", + "Savannah East Lower", + "Savannah West Upper" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Durum Isles Center": { + "territory": "Durum Isles Center", + "guild": "The Mage Legacy", + "location": { + "startX": 405, + "startY": -2846, + "endX": 504, + "endY": -2972 + }, + "neighbors": [ + "Durum Isles East", + "Selchar", + "Durum Isles Upper", + "Durum Isles Lower" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Ternaves": { + "territory": "Ternaves", + "guild": "The Dark Phoenix", + "location": { + "startX": 770, + "startY": -1675, + "endX": 880, + "endY": -1540 + }, + "neighbors": [ + "Savannah East Lower", + "Ternaves Plains Upper", + "Ternaves Plains Lower" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Llevigar Gate West": { + "territory": "Llevigar Gate West", + "guild": "Eden", + "location": { + "startX": -2060, + "startY": -4746, + "endX": -2171, + "endY": -4644 + }, + "neighbors": [ + "Llevigar Gate East", + "Llevigar Farm Plains West" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Swamp East Upper": { + "territory": "Swamp East Upper", + "guild": "Eden", + "location": { + "startX": -1955, + "startY": -5311, + "endX": -2059, + "endY": -5419 + }, + "neighbors": [ + "Swamp Mountain Transition Upper", + "Swamp Plains Basin", + "Swamp Mountain Transition Mid-Upper", + "Swamp East Mid-Upper", + "Swamp West Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Quartz Mines North East": { + "territory": "Quartz Mines North East", + "guild": "Eden", + "location": { + "startX": -1391, + "startY": -4664, + "endX": -1607, + "endY": -4526 + }, + "neighbors": [ + "Pre-Light Forest Transition", + "Llevigar Farm", + "Quartz Mines South East", + "Quartz Mines North West" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Efilim South Plains": { + "territory": "Efilim South Plains", + "guild": "Wheres The Finish", + "location": { + "startX": -1030, + "startY": -4940, + "endX": -1134, + "endY": -4847 + }, + "neighbors": [ + "Efilim South East Plains", + "Light Forest North Entrance", + "Efilim Village" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Mantis Nest": { + "territory": "Mantis Nest", + "guild": "The Mage Legacy", + "location": { + "startX": -736, + "startY": -4559, + "endX": -802, + "endY": -4698 + }, + "neighbors": [ + "Light Forest Canyon", + "Light Forest East Lower", + "Light Forest South Exit", + "Aldorei Valley Lower", + "Aldorei Valley West Entrance" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Mesquis Tower": { + "territory": "Mesquis Tower", + "guild": "Wheres The Finish", + "location": { + "startX": -834, + "startY": -5078, + "endX": -727, + "endY": -4999 + }, + "neighbors": [ + "Kander Mines", + "Abandoned Manor", + "Cinfras Entrance", + "Path to Cinfras" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Aldorei Valley South Entrance": { + "territory": "Aldorei Valley South Entrance", + "guild": "Aequitas", + "location": { + "startX": -130, + "startY": -4641, + "endX": -222, + "endY": -4509 + }, + "neighbors": [ + "Aldorei's North Exit", + "Aldorei's Waterfall", + "Cinfras's Small Farm" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Aldorei's Waterfall": { + "territory": "Aldorei's Waterfall", + "guild": "Aequitas", + "location": { + "startX": -237, + "startY": -4514, + "endX": -321, + "endY": -4648 + }, + "neighbors": [ + "Aldorei Valley South Entrance", + "Aldorei Valley Upper" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Path To Ozoth's Spire Upper": { + "territory": "Path To Ozoth's Spire Upper", + "guild": "IceBlue Team", + "location": { + "startX": 194, + "startY": -5165, + "endX": 111, + "endY": -5045 + }, + "neighbors": [ + "Path To Thanos", + "Cinfras Thanos Transition", + "Bandit Cave Lower", + "Path To Ozoth's Spire Mid" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Canyon Mountain East": { + "territory": "Canyon Mountain East", + "guild": "IceBlue Team", + "location": { + "startX": 271, + "startY": -5039, + "endX": 337, + "endY": -4948 + }, + "neighbors": [ + "Canyon Walk Way", + "Canyon Valley South" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": true + }, + "Canyon High Path": { + "territory": "Canyon High Path", + "guild": "IceBlue Team", + "location": { + "startX": 562, + "startY": -5313, + "endX": 440, + "endY": -5191 + }, + "neighbors": [ + "Hive South", + "Cliffside Waterfall", + "Thanos Exit Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Thesead Suburbs": { + "territory": "Thesead Suburbs", + "guild": "IceBlue Team", + "location": { + "startX": 703, + "startY": -5374, + "endX": 810, + "endY": -5216 + }, + "neighbors": [ + "Ranol's Farm", + "Entrance to Rodoroc", + "Chained House", + "Thesead" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Corkus City": { + "territory": "Corkus City", + "guild": "Guardian of Wynn", + "location": { + "startX": -1557, + "startY": -2835, + "endX": -1680, + "endY": -3010 + }, + "neighbors": [ + "Corkus Forest South", + "Corkus Forest North", + "Corkus Castle", + "Corkus City South", + "Corkus Countryside" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Corkus Statue": { + "territory": "Corkus Statue", + "guild": "Guardian of Wynn", + "location": { + "startX": -1322, + "startY": -2917, + "endX": -1393, + "endY": -2836 + }, + "neighbors": [ + "Corkus Outskirts", + "Corkus City Mine" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Wybel Island": { + "territory": "Wybel Island", + "guild": "Avicia", + "location": { + "startX": 1355, + "startY": -4700, + "endX": 1253, + "endY": -4595 + }, + "neighbors": [ + "Central Islands", + "Sky Falls", + "Ahmsord Outskirts" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Regular Island": { + "territory": "Regular Island", + "guild": "The Mage Legacy", + "location": { + "startX": 1202, + "startY": -3764, + "endX": 1458, + "endY": -3597 + }, + "neighbors": [ + "Dujgon Nation", + "Jofash Docks", + "Icy Island" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Forgotten Town": { + "territory": "Forgotten Town", + "guild": "Profession Heaven", + "location": { + "startX": 480, + "startY": -493, + "endX": 734, + "endY": -355 + }, + "neighbors": [ + "Forest of Eyes", + "Grey Ruins" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Azure Frontier": { + "territory": "Azure Frontier", + "guild": "Idiot Co", + "location": { + "startX": -894, + "startY": -6164, + "endX": -684, + "endY": -6313 + }, + "neighbors": [ + "Field of Life", + "Nexus of Light", + "Path to Light", + "Otherwordly Monolith" + ], + "resources": [ + "Fish" + ], + "storage": [], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nivla Woods Exit": { + "territory": "Nivla Woods Exit", + "guild": "The Dark Phoenix", + "location": { + "startX": -175, + "startY": -1630, + "endX": -105, + "endY": -1514 + }, + "neighbors": [ + "Nivla Woods Edge", + "Nivla Woods", + "North Nivla Woods", + "South Nivla Woods" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Jungle Mid": { + "territory": "Jungle Mid", + "guild": "ShadowFall", + "location": { + "startX": -600, + "startY": -610, + "endX": -670, + "endY": -780 + }, + "neighbors": [ + "Jungle Lake", + "Jungle Upper", + "Jungle Lower" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Nemract Plains East": { + "territory": "Nemract Plains East", + "guild": "Nerfuria", + "location": { + "startX": 151, + "startY": -1870, + "endX": 20, + "endY": -1810 + }, + "neighbors": [ + "Nemract Road", + "Detlas Trail West Plains" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Plains Lake": { + "territory": "Plains Lake", + "guild": "The Dark Phoenix", + "location": { + "startX": 395, + "startY": -1365, + "endX": 550, + "endY": -1190 + }, + "neighbors": [ + "Nether Plains Upper", + "Nether Gate", + "Mine Base Plains", + "Desolate Valley" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Swamp Plains Basin": { + "territory": "Swamp Plains Basin", + "guild": "Eden", + "location": { + "startX": -1776, + "startY": -5246, + "endX": -1898, + "endY": -5396 + }, + "neighbors": [ + "Swamp Mountain Base", + "Swamp East Upper", + "Entrance to Olux", + "Swamp East Mid-Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Light Forest North Exit": { + "territory": "Light Forest North Exit", + "guild": "The Mage Legacy", + "location": { + "startX": -733, + "startY": -4707, + "endX": -654, + "endY": -4848 + }, + "neighbors": [ + "Light Forest Canyon", + "Cinfras Entrance", + "Light Forest South Exit" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Fungal Grove": { + "territory": "Fungal Grove", + "guild": "Wheres The Finish", + "location": { + "startX": -489, + "startY": -5279, + "endX": -549, + "endY": -5398 + }, + "neighbors": [ + "Cinfras Outskirts", + "Old Crossroads South", + "Decayed Basin", + "Fallen Village", + "Old Crossroads North" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Thanos": { + "territory": "Thanos", + "guild": "ChinaNumberOne", + "location": { + "startX": 51, + "startY": -5189, + "endX": 194, + "endY": -5295 + }, + "neighbors": [ + "Gylia Lake South East", + "Path To Thanos", + "Path To Military Base", + "Path To Ozoth's Spire Lower" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": true, + "doubleresource": false + }, + "Wizard Tower North": { + "territory": "Wizard Tower North", + "guild": "IceBlue Team", + "location": { + "startX": 438, + "startY": -5037, + "endX": 345, + "endY": -4966 + }, + "neighbors": [ + "Krolton's Cave", + "Bandits Toll" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Active Volcano": { + "territory": "Active Volcano", + "guild": "Avicia", + "location": { + "startX": 1233, + "startY": -5553, + "endX": 1379, + "endY": -5369 + }, + "neighbors": [ + "Lava Lake", + "Lava Lake Bridge", + "Volcanic Slope" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Kandon Ridge": { + "territory": "Kandon Ridge", + "guild": "Avicia", + "location": { + "startX": 885, + "startY": -4640, + "endX": 719, + "endY": -4777 + }, + "neighbors": [ + "Path to Ahmsord Upper", + "Old Coal Mine", + "Kandon Farm" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Lost Atoll": { + "territory": "Lost Atoll", + "guild": "The Mage Legacy", + "location": { + "startX": -472, + "startY": -3590, + "endX": -688, + "endY": -3385 + }, + "neighbors": [ + "Tree Island", + "Volcano Upper", + "Pirate Town" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": true + }, + "Coastal Trail": { + "territory": "Coastal Trail", + "guild": "ShadowFall", + "location": { + "startX": -747, + "startY": -1946, + "endX": -565, + "endY": -2059 + }, + "neighbors": [ + "Ragni Plains", + "Maltic Coast" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood", + "Fish", + "Crops", + "Ore" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Desert Mid-Lower": { + "territory": "Desert Mid-Lower", + "guild": "Paladins United", + "location": { + "startX": 1060, + "startY": -1935, + "endX": 1210, + "endY": -1810 + }, + "neighbors": [ + "Desert Lower", + "Almuj City", + "Desert West Lower", + "Desert Mid-Upper", + "Desert East Lower" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Llevigar Plains East Upper": { + "territory": "Llevigar Plains East Upper", + "guild": "Eden", + "location": { + "startX": -2059, + "startY": -4912, + "endX": -1940, + "endY": -5000 + }, + "neighbors": [ + "Swamp East Lower", + "Llevigar Plains East Lower", + "Orc Lake", + "Sunspark Camp", + "Llevigar Plains West Upper" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Fortress North": { + "territory": "Fortress North", + "guild": "Eden", + "location": { + "startX": -1452, + "startY": -5211, + "endX": -1272, + "endY": -5395 + }, + "neighbors": [ + "Fortress South", + "Taproot Descent", + "Mansion of Insanity" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Canyon Lower South East": { + "territory": "Canyon Lower South East", + "guild": "TheNoLifes", + "location": { + "startX": 265, + "startY": -4521, + "endX": 199, + "endY": -4649 + }, + "neighbors": [ + "Canyon Survivor", + "Canyon Upper North West", + "Canyon Path South West", + "Canyon Path South East" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Corkus Forest South": { + "territory": "Corkus Forest South", + "guild": "Guardian of Wynn", + "location": { + "startX": -1681, + "startY": -2732, + "endX": -1883, + "endY": -2861 + }, + "neighbors": [ + "Corkus Forest North", + "Corkus City", + "Corkus City South", + "Factory Entrance" + ], + "resources": [ + "Wood" + ], + "storage": [ + "Emeralds", + "Wood" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Void Valley": { + "territory": "Void Valley", + "guild": "Profession Heaven", + "location": { + "startX": 1082, + "startY": -1161, + "endX": 1250, + "endY": -1078 + }, + "neighbors": [ + "Gateway to Nothing" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Ore", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Half Moon Island": { + "territory": "Half Moon Island", + "guild": "The Mage Legacy", + "location": { + "startX": 900, + "startY": -2660, + "endX": 1100, + "endY": -2480 + }, + "neighbors": [ + "Mage Island" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": true + }, + "Goblin Plains West": { + "territory": "Goblin Plains West", + "guild": "Eden", + "location": { + "startX": -1688, + "startY": -4962, + "endX": -1611, + "endY": -4854 + }, + "neighbors": [ + "Llevigar Farm", + "Goblin Plains East", + "Iron Road", + "Sablestone Camp" + ], + "resources": [ + "Ore" + ], + "storage": [ + "Emeralds", + "Ore", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Kandon Farm": { + "territory": "Kandon Farm", + "guild": "Avicia", + "location": { + "startX": 710, + "startY": -4587, + "endX": 614, + "endY": -4682 + }, + "neighbors": [ + "Kandon Ridge" + ], + "resources": [ + "Crops" + ], + "storage": [ + "Emeralds", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Gylia Lake North West": { + "territory": "Gylia Lake North West", + "guild": "ChinaNumberOne", + "location": { + "startX": -218, + "startY": -5427, + "endX": -130, + "endY": -5273 + }, + "neighbors": [ + "Gylia Lake South West", + "Fallen Village", + "Gylia Lake North East", + "Jitak's Farm" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Ore", + "Wood", + "Fish", + "Crops" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + }, + "Santa's Hideout": { + "territory": "Santa's Hideout", + "guild": "The Mage Legacy", + "location": { + "startX": 1057, + "startY": -3077, + "endX": 1221, + "endY": -3209 + }, + "neighbors": [ + "Mage Island", + "Icy Island" + ], + "resources": [ + "Ore", + "Wood", + "Fish", + "Crops" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": false, + "doubleemeralds": false, + "doubleresource": false + }, + "Dead Island North East": { + "territory": "Dead Island North East", + "guild": "The Mage Legacy", + "location": { + "startX": 870, + "startY": -3920, + "endX": 1000, + "endY": -4040 + }, + "neighbors": [ + "Dead Island North West", + "Dead Island South East", + "Jofash Docks" + ], + "resources": [ + "Fish" + ], + "storage": [ + "Emeralds", + "Fish" + ], + "emeralds": true, + "doubleemeralds": false, + "doubleresource": false + } +} \ No newline at end of file diff --git a/terrs_clean_backup.json b/terrs_clean_backup.json new file mode 100644 index 0000000..2b67dd0 --- /dev/null +++ b/terrs_clean_backup.json @@ -0,0 +1,4062 @@ +{ + "Ragni": { + "guild": "ShadowFall", + "location": { + "startX": -955, + "startY": -1415, + "endX": -756, + "endY": -1748 + }, + "neighbors": [] + }, + "Emerald Trail": { + "guild": "ShadowFall", + "location": { + "startX": -615, + "startY": -1530, + "endX": -436, + "endY": -1652 + }, + "neighbors": [] + }, + "Ragni North Entrance": { + "guild": "ShadowFall", + "location": { + "startX": -944, + "startY": -1761, + "endX": -818, + "endY": -1859 + }, + "neighbors": [] + }, + "Ragni North Suburbs": { + "guild": "ShadowFall", + "location": { + "startX": -817, + "startY": -1859, + "endX": -762, + "endY": -1761 + }, + "neighbors": [] + }, + "Ragni Plains": { + "guild": "ShadowFall", + "location": { + "startX": -747, + "startY": -1776, + "endX": -605, + "endY": -1945 + }, + "neighbors": [] + }, + "Maltic Coast": { + "guild": "Nerfuria", + "location": { + "startX": -564, + "startY": -2059, + "endX": -400, + "endY": -1946 + }, + "neighbors": [] + }, + "Maltic Plains": { + "guild": "HackForums", + "location": { + "startX": -564, + "startY": -1883, + "endX": -436, + "endY": -1653 + }, + "neighbors": [] + }, + "Pigmen Ravines Entrance": { + "guild": "ShadowFall", + "location": { + "startX": -924, + "startY": -1398, + "endX": -784, + "endY": -1307 + }, + "neighbors": [] + }, + "South Pigmen Ravines": { + "guild": "ShadowFall", + "location": { + "startX": -898, + "startY": -1298, + "endX": -678, + "endY": -1221 + }, + "neighbors": [] + }, + "Time Valley": { + "guild": "ShadowFall", + "location": { + "startX": -563, + "startY": -1261, + "endX": -406, + "endY": -1006 + }, + "neighbors": [] + }, + "Sanctuary Bridge": { + "guild": "The Aquarium", + "location": { + "startX": -324, + "startY": -1130, + "endX": -192, + "endY": -993 + }, + "neighbors": [] + }, + "Elkurn Fields": { + "guild": "ShadowFall", + "location": { + "startX": -357, + "startY": -1325, + "endX": -99, + "endY": -1141 + }, + "neighbors": [] + }, + "Nivla Woods": { + "guild": "ShadowFall", + "location": { + "startX": -325, + "startY": -1624, + "endX": -196, + "endY": -1460 + }, + "neighbors": [] + }, + "South Nivla Woods": { + "guild": "The Aquarium", + "location": { + "startX": -350, + "startY": -1440, + "endX": -99, + "endY": -1330 + }, + "neighbors": [] + }, + "Elkurn": { + "guild": "ShadowFall", + "location": { + "startX": -98, + "startY": -1250, + "endX": 62, + "endY": -1080 + }, + "neighbors": [] + }, + "Corrupted Road": { + "guild": "The Dark Phoenix", + "location": { + "startX": 22, + "startY": -1479, + "endX": 96, + "endY": -1261 + }, + "neighbors": [] + }, + "Detlas Far Suburbs": { + "guild": "The Dark Phoenix", + "location": { + "startX": 29, + "startY": -1657, + "endX": 188, + "endY": -1500 + }, + "neighbors": [] + }, + "Detlas Close Suburbs": { + "guild": "The Dark Phoenix", + "location": { + "startX": 300, + "startY": -1657, + "endX": 389, + "endY": -1500 + }, + "neighbors": [] + }, + "South Farmers Valley": { + "guild": "Nerfuria", + "location": { + "startX": -472, + "startY": -1944, + "endX": -255, + "endY": -1887 + }, + "neighbors": [] + }, + "Arachnid Route": { + "guild": "Nerfuria", + "location": { + "startX": -261, + "startY": -1881, + "endX": -109, + "endY": -1808 + }, + "neighbors": [] + }, + "Tower of Ascension": { + "guild": "Fuzzy Spiders", + "location": { + "startX": -400, + "startY": -450, + "endX": -315, + "endY": -330 + }, + "neighbors": [] + }, + "Mage Island": { + "guild": "The Mage Legacy", + "location": { + "startX": 805, + "startY": -2960, + "endX": 983, + "endY": -2787 + }, + "neighbors": [] + }, + "Twain Mansion": { + "guild": "GlowOfDust", + "location": { + "startX": 95, + "startY": -407, + "endX": 140, + "endY": -310 + }, + "neighbors": [] + }, + "Nesaak Plains South East": { + "guild": "Fuzzy Spiders", + "location": { + "startX": 76, + "startY": -757, + "endX": 230, + "endY": -660 + }, + "neighbors": [] + }, + "Nesaak Plains North East": { + "guild": "Fuzzy Spiders", + "location": { + "startX": 110, + "startY": -873, + "endX": 240, + "endY": -1035 + }, + "neighbors": [] + }, + "Nesaak Plains Upper North West": { + "guild": "Fuzzy Spiders", + "location": { + "startX": 70, + "startY": -950, + "endX": -140, + "endY": -1060 + }, + "neighbors": [] + }, + "Nesaak Bridge Transition": { + "guild": "Fuzzy Spiders", + "location": { + "startX": -115, + "startY": -630, + "endX": -240, + "endY": -780 + }, + "neighbors": [] + }, + "Great Bridge Nesaak": { + "guild": "Fuzzy Spiders", + "location": { + "startX": -275, + "startY": -620, + "endX": -390, + "endY": -790 + }, + "neighbors": [] + }, + "Jungle Lower": { + "guild": "ShadowFall", + "location": { + "startX": -515, + "startY": -610, + "endX": -600, + "endY": -790 + }, + "neighbors": [] + }, + "Jungle Upper": { + "guild": "ShadowFall", + "location": { + "startX": -671, + "startY": -779, + "endX": -810, + "endY": -630 + }, + "neighbors": [] + }, + "Temple of Legends": { + "guild": "ShadowFall", + "location": { + "startX": -631, + "startY": -973, + "endX": -745, + "endY": -1093 + }, + "neighbors": [] + }, + "Rymek East Lower": { + "guild": "WrathOfTheFallen", + "location": { + "startX": 1210, + "startY": -1270, + "endX": 1400, + "endY": -1390 + }, + "neighbors": [] + }, + "Rymek East Upper": { + "guild": "WrathOfTheFallen", + "location": { + "startX": 1479, + "startY": -1579, + "endX": 1210, + "endY": -1780 + }, + "neighbors": [] + }, + "Rymek West Mid": { + "guild": "WrathOfTheFallen", + "location": { + "startX": 1211, + "startY": -1410, + "endX": 1000, + "endY": -1530 + }, + "neighbors": [] + }, + "Desert East Upper": { + "guild": "WrathOfTheFallen", + "location": { + "startX": 1260, + "startY": -2170, + "endX": 1450, + "endY": -2370 + }, + "neighbors": [] + }, + "Desert East Lower": { + "guild": "Paladins United", + "location": { + "startX": 1450, + "startY": -2020, + "endX": 1270, + "endY": -1785 + }, + "neighbors": [] + }, + "Desert Mid-Upper": { + "guild": "Aequitas", + "location": { + "startX": 1195, + "startY": -2120, + "endX": 1060, + "endY": -1935 + }, + "neighbors": [] + }, + "Desert Lower": { + "guild": "Titans Valor", + "location": { + "startX": 1210, + "startY": -1810, + "endX": 1040, + "endY": -1680 + }, + "neighbors": [] + }, + "Mummy's Tomb": { + "guild": "Paladins United", + "location": { + "startX": 990, + "startY": -2270, + "endX": 1120, + "endY": -2400 + }, + "neighbors": [] + }, + "Desert West Lower": { + "guild": "Ultra Violet", + "location": { + "startX": 1040, + "startY": -1681, + "endX": 900, + "endY": -1870 + }, + "neighbors": [] + }, + "Savannah East Upper": { + "guild": "Emorians", + "location": { + "startX": 750, + "startY": -2060, + "endX": 820, + "endY": -1895 + }, + "neighbors": [] + }, + "Savannah West Upper": { + "guild": "Emorians", + "location": { + "startX": 750, + "startY": -2060, + "endX": 570, + "endY": -1870 + }, + "neighbors": [] + }, + "Lion Lair": { + "guild": "Emorians", + "location": { + "startX": 890, + "startY": -2140, + "endX": 790, + "endY": -2320 + }, + "neighbors": [] + }, + "Plains Coast": { + "guild": "Nerfuria", + "location": { + "startX": 5, + "startY": -2270, + "endX": -320, + "endY": -2090 + }, + "neighbors": [] + }, + "Nemract Plains West": { + "guild": "Nerfuria", + "location": { + "startX": 5, + "startY": -1960, + "endX": -100, + "endY": -1810 + }, + "neighbors": [] + }, + "Ancient Nemract": { + "guild": "Nerfuria", + "location": { + "startX": 152, + "startY": -1832, + "endX": 290, + "endY": -1999 + }, + "neighbors": [] + }, + "Cathedral Harbour": { + "guild": "Nerfuria", + "location": { + "startX": 385, + "startY": -2180, + "endX": 570, + "endY": -1950 + }, + "neighbors": [] + }, + "Rooster Island": { + "guild": "The Mage Legacy", + "location": { + "startX": -128, + "startY": -2448, + "endX": -30, + "endY": -2538 + }, + "neighbors": [] + }, + "Selchar": { + "guild": "The Mage Legacy", + "location": { + "startX": -100, + "startY": -3070, + "endX": 210, + "endY": -3270 + }, + "neighbors": [] + }, + "Durum Isles Upper": { + "guild": "The Mage Legacy", + "location": { + "startX": 537, + "startY": -2994, + "endX": 595, + "endY": -2924 + }, + "neighbors": [] + }, + "Durum Isles Lower": { + "guild": "The Mage Legacy", + "location": { + "startX": 390, + "startY": -2851, + "endX": 347, + "endY": -2791 + }, + "neighbors": [] + }, + "Skiens Island": { + "guild": "The Mage Legacy", + "location": { + "startX": 527, + "startY": -3386, + "endX": 297, + "endY": -3644 + }, + "neighbors": [] + }, + "Nodguj Nation": { + "guild": "The Mage Legacy", + "location": { + "startX": 695, + "startY": -3210, + "endX": 880, + "endY": -3440 + }, + "neighbors": [] + }, + "Dead Island South East": { + "guild": "The Mage Legacy", + "location": { + "startX": 870, + "startY": -3920, + "endX": 1000, + "endY": -3810 + }, + "neighbors": [] + }, + "Dead Island South West": { + "guild": "The Mage Legacy", + "location": { + "startX": 870, + "startY": -3920, + "endX": 745, + "endY": -3810 + }, + "neighbors": [] + }, + "Volcano Upper": { + "guild": "The Mage Legacy", + "location": { + "startX": -929, + "startY": -3831, + "endX": -722, + "endY": -3530 + }, + "neighbors": [] + }, + "Tree Island": { + "guild": "The Mage Legacy", + "location": { + "startX": -454, + "startY": -3905, + "endX": -323, + "endY": -3766 + }, + "neighbors": [] + }, + "Ternaves Plains Upper": { + "guild": "The Dark Phoenix", + "location": { + "startX": 770, + "startY": -1675, + "endX": 655, + "endY": -1430 + }, + "neighbors": [] + }, + "Mining Base Upper": { + "guild": "The Dark Phoenix", + "location": { + "startX": 880, + "startY": -1330, + "endX": 670, + "endY": -1225 + }, + "neighbors": [] + }, + "Nesaak Transition": { + "guild": "Fuzzy Spiders", + "location": { + "startX": 330, + "startY": -1040, + "endX": 75, + "endY": -1145 + }, + "neighbors": [] + }, + "Nether Plains Lower": { + "guild": "The Dark Phoenix", + "location": { + "startX": 75, + "startY": -1145, + "endX": 325, + "endY": -1210 + }, + "neighbors": [] + }, + "Mine Base Plains": { + "guild": "The Dark Phoenix", + "location": { + "startX": 550, + "startY": -1190, + "endX": 650, + "endY": -1430 + }, + "neighbors": [] + }, + "Nether Plains Upper": { + "guild": "The Dark Phoenix", + "location": { + "startX": 115, + "startY": -1360, + "endX": 390, + "endY": -1495 + }, + "neighbors": [] + }, + "Detlas Trail West Plains": { + "guild": "The Dark Phoenix", + "location": { + "startX": 25, + "startY": -1660, + "endX": 200, + "endY": -1800 + }, + "neighbors": [] + }, + "Llevigar Gate East": { + "guild": "Eden", + "location": { + "startX": -1932, + "startY": -4648, + "endX": -2059, + "endY": -4746 + }, + "neighbors": [] + }, + "Llevigar Farm Plains East": { + "guild": "Eden", + "location": { + "startX": -2059, + "startY": -4747, + "endX": -1931, + "endY": -4828 + }, + "neighbors": [] + }, + "Hive": { + "guild": "IceBlue Team", + "location": { + "startX": 381, + "startY": -5413, + "endX": 286, + "endY": -5593 + }, + "neighbors": [] + }, + "Llevigar Plains East Lower": { + "guild": "Eden", + "location": { + "startX": -2059, + "startY": -4831, + "endX": -1937, + "endY": -4909 + }, + "neighbors": [] + }, + "Llevigar Plains West Upper": { + "guild": "Eden", + "location": { + "startX": -2060, + "startY": -4912, + "endX": -2171, + "endY": -5000 + }, + "neighbors": [] + }, + "Swamp West Lower": { + "guild": "Eden", + "location": { + "startX": -2060, + "startY": -5003, + "endX": -2171, + "endY": -5075 + }, + "neighbors": [] + }, + "Swamp East Mid": { + "guild": "Eden", + "location": { + "startX": -1955, + "startY": -5081, + "endX": -2059, + "endY": -5186 + }, + "neighbors": [] + }, + "Swamp West Mid-Upper": { + "guild": "Eden", + "location": { + "startX": -2171, + "startY": -5190, + "endX": -2060, + "endY": -5309 + }, + "neighbors": [] + }, + "Swamp West Upper": { + "guild": "Eden", + "location": { + "startX": -2171, + "startY": -5312, + "endX": -2060, + "endY": -5419 + }, + "neighbors": [] + }, + "Swamp Dark Forest Transition Lower": { + "guild": "Eden", + "location": { + "startX": -1519, + "startY": -5134, + "endX": -1631, + "endY": -5288 + }, + "neighbors": [] + }, + "Swamp Dark Forest Transition Upper": { + "guild": "Eden", + "location": { + "startX": -1519, + "startY": -5492, + "endX": -1626, + "endY": -5607 + }, + "neighbors": [] + }, + "Entrance to Olux": { + "guild": "Eden", + "location": { + "startX": -1649, + "startY": -5246, + "endX": -1764, + "endY": -5396 + }, + "neighbors": [] + }, + "Swamp Mountain Base": { + "guild": "BRIS", + "location": { + "startX": -1776, + "startY": -5134, + "endX": -1898, + "endY": -5240 + }, + "neighbors": [] + }, + "Swamp Mountain Transition Lower": { + "guild": "Eden", + "location": { + "startX": -2173, + "startY": -5466, + "endX": -2128, + "endY": -5603 + }, + "neighbors": [] + }, + "Swamp Mountain Transition Mid-Upper": { + "guild": "Eden", + "location": { + "startX": -2065, + "startY": -5466, + "endX": -1982, + "endY": -5603 + }, + "neighbors": [] + }, + "Quartz Mines South West": { + "guild": "Eden", + "location": { + "startX": -1776, + "startY": -4352, + "endX": -1609, + "endY": -4524 + }, + "neighbors": [] + }, + "Quartz Mines North West": { + "guild": "Eden", + "location": { + "startX": -1776, + "startY": -4664, + "endX": -1609, + "endY": -4526 + }, + "neighbors": [] + }, + "Sunspark Camp": { + "guild": "BRIS", + "location": { + "startX": -1930, + "startY": -5099, + "endX": -1816, + "endY": -4968 + }, + "neighbors": [] + }, + "Orc Road": { + "guild": "Eden", + "location": { + "startX": -1927, + "startY": -4852, + "endX": -1815, + "endY": -4700 + }, + "neighbors": [] + }, + "Sablestone Camp": { + "guild": "BRIS", + "location": { + "startX": -1800, + "startY": -4962, + "endX": -1695, + "endY": -4854 + }, + "neighbors": [] + }, + "Iron Road": { + "guild": "BRIS", + "location": { + "startX": -1688, + "startY": -5099, + "endX": -1608, + "endY": -4969 + }, + "neighbors": [] + }, + "Llevigar Farm": { + "guild": "Eden", + "location": { + "startX": -1663, + "startY": -4849, + "endX": -1556, + "endY": -4714 + }, + "neighbors": [] + }, + "Goblin Plains East": { + "guild": "Eden", + "location": { + "startX": -1603, + "startY": -4963, + "endX": -1527, + "endY": -4853 + }, + "neighbors": [] + }, + "Leadin Fortress": { + "guild": "Eden", + "location": { + "startX": -1403, + "startY": -4869, + "endX": -1284, + "endY": -4748 + }, + "neighbors": [] + }, + "Efilim Village": { + "guild": "Wheres The Finish", + "location": { + "startX": -1020, + "startY": -4943, + "endX": -1134, + "endY": -5078 + }, + "neighbors": [] + }, + "Efilim East Plains": { + "guild": "Wheres The Finish", + "location": { + "startX": -1014, + "startY": -4944, + "endX": -949, + "endY": -5079 + }, + "neighbors": [] + }, + "Light Forest North Entrance": { + "guild": "Wheres The Finish", + "location": { + "startX": -1134, + "startY": -4708, + "endX": -1030, + "endY": -4845 + }, + "neighbors": [] + }, + "Light Forest South Entrance": { + "guild": "The Mage Legacy", + "location": { + "startX": -1134, + "startY": -4548, + "endX": -1038, + "endY": -4426 + }, + "neighbors": [] + }, + "Light Forest South Exit": { + "guild": "The Mage Legacy", + "location": { + "startX": -646, + "startY": -4699, + "endX": -733, + "endY": -4559 + }, + "neighbors": [] + }, + "Light Forest West Lower": { + "guild": "The Mage Legacy", + "location": { + "startX": -1014, + "startY": -4428, + "endX": -929, + "endY": -4549 + }, + "neighbors": [] + }, + "Light Forest West Upper": { + "guild": "Wheres The Finish", + "location": { + "startX": -1014, + "startY": -4708, + "endX": -935, + "endY": -4845 + }, + "neighbors": [] + }, + "Light Forest East Mid": { + "guild": "Wheres The Finish", + "location": { + "startX": -834, + "startY": -4839, + "endX": -926, + "endY": -4708 + }, + "neighbors": [] + }, + "Hobbit River": { + "guild": "The Mage Legacy", + "location": { + "startX": -926, + "startY": -4550, + "endX": -806, + "endY": -4428 + }, + "neighbors": [] + }, + "Light Forest Canyon": { + "guild": "The Mage Legacy", + "location": { + "startX": -738, + "startY": -4708, + "endX": -818, + "endY": -4840 + }, + "neighbors": [] + }, + "Lone Farmstead": { + "guild": "Wheres The Finish", + "location": { + "startX": -942, + "startY": -5227, + "endX": -1050, + "endY": -5116 + }, + "neighbors": [] + }, + "Gelibord Corrupted Farm": { + "guild": "Eden", + "location": { + "startX": -1056, + "startY": -5355, + "endX": -1179, + "endY": -5448 + }, + "neighbors": [] + }, + "Taproot Descent": { + "guild": "Eden", + "location": { + "startX": -1425, + "startY": -5407, + "endX": -1194, + "endY": -5589 + }, + "neighbors": [] + }, + "Fortress South": { + "guild": "Eden", + "location": { + "startX": -1460, + "startY": -5025, + "endX": -1272, + "endY": -5210 + }, + "neighbors": [] + }, + "Twisted Housing": { + "guild": "Eden", + "location": { + "startX": -1133, + "startY": -5116, + "endX": -1053, + "endY": -5272 + }, + "neighbors": [] + }, + "Viscera Pits West": { + "guild": "Wheres The Finish", + "location": { + "startX": -771, + "startY": -5504, + "endX": -899, + "endY": -5412 + }, + "neighbors": [] + }, + "Abandoned Manor": { + "guild": "Wheres The Finish", + "location": { + "startX": -896, + "startY": -5232, + "endX": -802, + "endY": -5102 + }, + "neighbors": [] + }, + "Kander Mines": { + "guild": "Wheres The Finish", + "location": { + "startX": -785, + "startY": -5229, + "endX": -725, + "endY": -5102 + }, + "neighbors": [] + }, + "Viscera Pits East": { + "guild": "Wheres The Finish", + "location": { + "startX": -659, + "startY": -5424, + "endX": -766, + "endY": -5508 + }, + "neighbors": [] + }, + "Old Crossroads South": { + "guild": "Wheres The Finish", + "location": { + "startX": -648, + "startY": -5311, + "endX": -567, + "endY": -5234 + }, + "neighbors": [] + }, + "Lexdale": { + "guild": "Wheres The Finish", + "location": { + "startX": -650, + "startY": -5511, + "endX": -562, + "endY": -5406 + }, + "neighbors": [] + }, + "Decayed Basin": { + "guild": "Wheres The Finish", + "location": { + "startX": -471, + "startY": -5405, + "endX": -549, + "endY": -5512 + }, + "neighbors": [] + }, + "Cinfras Entrance": { + "guild": "Aequitas", + "location": { + "startX": -555, + "startY": -4996, + "endX": -717, + "endY": -4868 + }, + "neighbors": [] + }, + "Fallen Village": { + "guild": "ChinaNumberOne", + "location": { + "startX": -288, + "startY": -5409, + "endX": -392, + "endY": -5294 + }, + "neighbors": [] + }, + "Guild Hall": { + "guild": "Aequitas", + "location": { + "startX": -349, + "startY": -5093, + "endX": -137, + "endY": -4814 + }, + "neighbors": [] + }, + "Cinfras's Small Farm": { + "guild": "Aequitas", + "location": { + "startX": -224, + "startY": -4793, + "endX": -130, + "endY": -4643 + }, + "neighbors": [] + }, + "Cinfras County Mid-Lower": { + "guild": "Aequitas", + "location": { + "startX": -127, + "startY": -4761, + "endX": 3, + "endY": -4895 + }, + "neighbors": [] + }, + "Cinfras County Upper": { + "guild": "Aequitas", + "location": { + "startX": -127, + "startY": -5155, + "endX": 3, + "endY": -5051 + }, + "neighbors": [] + }, + "Gylia Lake South West": { + "guild": "Aequitas", + "location": { + "startX": -130, + "startY": -5173, + "endX": -241, + "endY": -5271 + }, + "neighbors": [] + }, + "Gylia Lake North East": { + "guild": "ChinaNumberOne", + "location": { + "startX": -128, + "startY": -5416, + "endX": 21, + "endY": -5273 + }, + "neighbors": [] + }, + "Jitak's Farm": { + "guild": "ChinaNumberOne", + "location": { + "startX": -122, + "startY": -5430, + "endX": -218, + "endY": -5567 + }, + "neighbors": [] + }, + "Aldorei Valley Mid": { + "guild": "Aequitas", + "location": { + "startX": -322, + "startY": -4499, + "endX": -557, + "endY": -4395 + }, + "neighbors": [] + }, + "Aldorei's River": { + "guild": "Aequitas", + "location": { + "startX": -437, + "startY": -4656, + "endX": -338, + "endY": -4756 + }, + "neighbors": [] + }, + "Aldorei's North Exit": { + "guild": "Aequitas", + "location": { + "startX": -127, + "startY": -4639, + "endX": 3, + "endY": -4509 + }, + "neighbors": [] + }, + "Path To The Arch": { + "guild": "Aequitas", + "location": { + "startX": 35, + "startY": -4521, + "endX": 107, + "endY": -4641 + }, + "neighbors": [] + }, + "Burning Farm": { + "guild": "Aequitas", + "location": { + "startX": 107, + "startY": -4755, + "endX": 35, + "endY": -4857 + }, + "neighbors": [] + }, + "Cinfras Thanos Transition": { + "guild": "Aequitas", + "location": { + "startX": 98, + "startY": -4957, + "endX": 35, + "endY": -5046 + }, + "neighbors": [] + }, + "Path To Thanos": { + "guild": "Aequitas", + "location": { + "startX": 98, + "startY": -5049, + "endX": 35, + "endY": -5149 + }, + "neighbors": [] + }, + "Military Base": { + "guild": "ChinaNumberOne", + "location": { + "startX": 104, + "startY": -5393, + "endX": 166, + "endY": -5518 + }, + "neighbors": [] + }, + "Military Base Lower": { + "guild": "ChinaNumberOne", + "location": { + "startX": 244, + "startY": -5407, + "endX": 168, + "endY": -5315 + }, + "neighbors": [] + }, + "Path To Ozoth's Spire Mid": { + "guild": "IceBlue Team", + "location": { + "startX": 199, + "startY": -5164, + "endX": 260, + "endY": -5042 + }, + "neighbors": [] + }, + "Bandit Cave Lower": { + "guild": "IceBlue Team", + "location": { + "startX": 111, + "startY": -5043, + "endX": 194, + "endY": -4958 + }, + "neighbors": [] + }, + "Canyon Entrance Waterfall": { + "guild": "IceBlue Team", + "location": { + "startX": 110, + "startY": -4869, + "endX": 194, + "endY": -4741 + }, + "neighbors": [] + }, + "Canyon Path South East": { + "guild": "TheNoLifes", + "location": { + "startX": 194, + "startY": -4649, + "endX": 115, + "endY": -4521 + }, + "neighbors": [] + }, + "Canyon Upper North West": { + "guild": "TheNoLifes", + "location": { + "startX": 200, + "startY": -4380, + "endX": 265, + "endY": -4518 + }, + "neighbors": [] + }, + "Canyon Path South West": { + "guild": "IceBlue Team", + "location": { + "startX": 265, + "startY": -4652, + "endX": 200, + "endY": -4741 + }, + "neighbors": [] + }, + "Bandit Camp Exit": { + "guild": "TheNoLifes", + "location": { + "startX": 264, + "startY": -4877, + "endX": 203, + "endY": -4971 + }, + "neighbors": [] + }, + "Thanos Valley West": { + "guild": "ChinaNumberOne", + "location": { + "startX": 250, + "startY": -5401, + "endX": 311, + "endY": -5315 + }, + "neighbors": [] + }, + "Canyon Walk Way": { + "guild": "IceBlue Team", + "location": { + "startX": 271, + "startY": -5165, + "endX": 338, + "endY": -5041 + }, + "neighbors": [] + }, + "Canyon Mountain South": { + "guild": "TheNoLifes", + "location": { + "startX": 271, + "startY": -4946, + "endX": 337, + "endY": -4857 + }, + "neighbors": [] + }, + "Canyon Fortress": { + "guild": "TheNoLifes", + "location": { + "startX": 271, + "startY": -4739, + "endX": 338, + "endY": -4630 + }, + "neighbors": [] + }, + "Canyon Dropoff": { + "guild": "TheNoLifes", + "location": { + "startX": 334, + "startY": -4518, + "endX": 269, + "endY": -4395 + }, + "neighbors": [] + }, + "Bandits Toll": { + "guild": "IceBlue Team", + "location": { + "startX": 439, + "startY": -5038, + "endX": 345, + "endY": -5181 + }, + "neighbors": [] + }, + "Mountain Path": { + "guild": "TheNoLifes", + "location": { + "startX": 334, + "startY": -4393, + "endX": 276, + "endY": -4314 + }, + "neighbors": [] + }, + "Cliff Side of the Lost": { + "guild": "TheNoLifes", + "location": { + "startX": 340, + "startY": -4395, + "endX": 437, + "endY": -4508 + }, + "neighbors": [] + }, + "Temple of the Lost East": { + "guild": "TheNoLifes", + "location": { + "startX": 440, + "startY": -4672, + "endX": 341, + "endY": -4838 + }, + "neighbors": [] + }, + "Hive South": { + "guild": "IceBlue Team", + "location": { + "startX": 440, + "startY": -5315, + "endX": 560, + "endY": -5449 + }, + "neighbors": [] + }, + "Cliffside Waterfall": { + "guild": "IceBlue Team", + "location": { + "startX": 440, + "startY": -5183, + "endX": 563, + "endY": -5080 + }, + "neighbors": [] + }, + "Air Temple Lower": { + "guild": "IceBlue Team", + "location": { + "startX": 445, + "startY": -4972, + "endX": 563, + "endY": -4835 + }, + "neighbors": [] + }, + "Cliffside Lake": { + "guild": "TheNoLifes", + "location": { + "startX": 445, + "startY": -4689, + "endX": 570, + "endY": -4568 + }, + "neighbors": [] + }, + "Kandon-Beda": { + "guild": "TheNoLifes", + "location": { + "startX": 607, + "startY": -4579, + "endX": 760, + "endY": -4372 + }, + "neighbors": [] + }, + "Cliffside Passage": { + "guild": "TheNoLifes", + "location": { + "startX": 699, + "startY": -4817, + "endX": 572, + "endY": -4691 + }, + "neighbors": [] + }, + "Entrance to Thesead North": { + "guild": "TheNoLifes", + "location": { + "startX": 572, + "startY": -4935, + "endX": 700, + "endY": -5028 + }, + "neighbors": [] + }, + "Chained House": { + "guild": "IceBlue Team", + "location": { + "startX": 574, + "startY": -5375, + "endX": 699, + "endY": -5242 + }, + "neighbors": [] + }, + "Ranol's Farm": { + "guild": "IceBlue Team", + "location": { + "startX": 810, + "startY": -5551, + "endX": 701, + "endY": -5377 + }, + "neighbors": [] + }, + "Thesead": { + "guild": "IceBlue Team", + "location": { + "startX": 747, + "startY": -5104, + "endX": 872, + "endY": -4964 + }, + "neighbors": [] + }, + "Eltom": { + "guild": "Avicia", + "location": { + "startX": 1029, + "startY": -5581, + "endX": 828, + "endY": -5376 + }, + "neighbors": [] + }, + "Lava Lake": { + "guild": "Avicia", + "location": { + "startX": 1531, + "startY": -5553, + "endX": 1387, + "endY": -5369 + }, + "neighbors": [] + }, + "Crater Descent": { + "guild": "Avicia", + "location": { + "startX": 1383, + "startY": -5238, + "endX": 1230, + "endY": -5067 + }, + "neighbors": [] + }, + "Volcanic Slope": { + "guild": "Avicia", + "location": { + "startX": 1531, + "startY": -5637, + "endX": 1221, + "endY": -5555 + }, + "neighbors": [] + }, + "Temple Island": { + "guild": "Avicia", + "location": { + "startX": 991, + "startY": -4643, + "endX": 1124, + "endY": -4750 + }, + "neighbors": [] + }, + "Dernel Jungle Lower": { + "guild": "ShadowFall", + "location": { + "startX": -737, + "startY": -317, + "endX": -502, + "endY": -530 + }, + "neighbors": [] + }, + "Dernel Jungle Upper": { + "guild": "ShadowFall", + "location": { + "startX": -970, + "startY": -795, + "endX": -900, + "endY": -547 + }, + "neighbors": [] + }, + "Corkus Castle": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1555, + "startY": -2968, + "endX": -1452, + "endY": -2835 + }, + "neighbors": [] + }, + "Fallen Factory": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1579, + "startY": -2662, + "endX": -1681, + "endY": -2518 + }, + "neighbors": [] + }, + "Corkus City Mine": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1394, + "startY": -2750, + "endX": -1466, + "endY": -2831 + }, + "neighbors": [] + }, + "Factory Entrance": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1683, + "startY": -2571, + "endX": -1798, + "endY": -2730 + }, + "neighbors": [] + }, + "Corkus Forest North": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1888, + "startY": -2862, + "endX": -1682, + "endY": -2995 + }, + "neighbors": [] + }, + "Avos Workshop": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1681, + "startY": -3178, + "endX": -1888, + "endY": -3375 + }, + "neighbors": [] + }, + "Corkus Countryside": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1503, + "startY": -3191, + "endX": -1680, + "endY": -3012 + }, + "neighbors": [] + }, + "Ruined Houses": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1684, + "startY": -2569, + "endX": -1793, + "endY": -2453 + }, + "neighbors": [] + }, + "Avos Temple": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1526, + "startY": -3225, + "endX": -1378, + "endY": -3426 + }, + "neighbors": [] + }, + "Corkus Outskirts": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1502, + "startY": -2976, + "endX": -1230, + "endY": -3224 + }, + "neighbors": [] + }, + "Sky Castle": { + "guild": "Avicia", + "location": { + "startX": 954, + "startY": -4425, + "endX": 854, + "endY": -4340 + }, + "neighbors": [] + }, + "Path to Ahmsord Upper": { + "guild": "Avicia", + "location": { + "startX": 885, + "startY": -4571, + "endX": 779, + "endY": -4639 + }, + "neighbors": [] + }, + "Old Coal Mine": { + "guild": "Avicia", + "location": { + "startX": 719, + "startY": -4778, + "endX": 885, + "endY": -4900 + }, + "neighbors": [] + }, + "Astraulus' Tower": { + "guild": "Avicia", + "location": { + "startX": 1102, + "startY": -5016, + "endX": 1250, + "endY": -4916 + }, + "neighbors": [] + }, + "Ahmsord Outskirts": { + "guild": "Avicia", + "location": { + "startX": 1336, + "startY": -4893, + "endX": 1179, + "endY": -4730 + }, + "neighbors": [] + }, + "Angel Refuge": { + "guild": "Avicia", + "location": { + "startX": 1354, + "startY": -4727, + "endX": 1484, + "endY": -4877 + }, + "neighbors": [] + }, + "Central Islands": { + "guild": "Avicia", + "location": { + "startX": 1250, + "startY": -4718, + "endX": 1183, + "endY": -4535 + }, + "neighbors": [] + }, + "Sky Falls": { + "guild": "Avicia", + "location": { + "startX": 1380, + "startY": -4458, + "endX": 1466, + "endY": -4653 + }, + "neighbors": [] + }, + "Raider's Base Lower": { + "guild": "Avicia", + "location": { + "startX": 1558, + "startY": -4316, + "endX": 1305, + "endY": -4253 + }, + "neighbors": [] + }, + "Jofash Docks": { + "guild": "Avicia", + "location": { + "startX": 1178, + "startY": -4175, + "endX": 1445, + "endY": -4012 + }, + "neighbors": [] + }, + "Lusuco": { + "guild": "Fuzzy Spiders", + "location": { + "startX": -267, + "startY": -348, + "endX": -91, + "endY": -250 + }, + "neighbors": [] + }, + "Phinas Farm": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1633, + "startY": -2162, + "endX": -1842, + "endY": -2058 + }, + "neighbors": [] + }, + "Cinfras Outskirts": { + "guild": "Aequitas", + "location": { + "startX": -392, + "startY": -5116, + "endX": -534, + "endY": -5278 + }, + "neighbors": [] + }, + "Llevigar": { + "guild": "Eden", + "location": { + "startX": -1800, + "startY": -4643, + "endX": -2171, + "endY": -4405 + }, + "neighbors": [] + }, + "Herb Cave": { + "guild": "ShadowFall", + "location": { + "startX": -448, + "startY": -813, + "endX": -557, + "endY": -876 + }, + "neighbors": [] + }, + "Icy Island": { + "guild": "The Mage Legacy", + "location": { + "startX": 1001, + "startY": -3274, + "endX": 1172, + "endY": -3430 + }, + "neighbors": [] + }, + "Fleris Trail": { + "guild": "Eden", + "location": { + "startX": -1390, + "startY": -4594, + "endX": -1254, + "endY": -4351 + }, + "neighbors": [] + }, + "Abandoned Pass": { + "guild": "The Dark Phoenix", + "location": { + "startX": 881, + "startY": -1225, + "endX": 1019, + "endY": -1380 + }, + "neighbors": [] + }, + "Southern Outpost": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1258, + "startY": -2204, + "endX": -1444, + "endY": -2306 + }, + "neighbors": [] + }, + "Corkus Sea Cove": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1578, + "startY": -2662, + "endX": -1330, + "endY": -2513 + }, + "neighbors": [] + }, + "The Broken Road": { + "guild": "Profession Heaven", + "location": { + "startX": 686, + "startY": -923, + "endX": 493, + "endY": -783 + }, + "neighbors": [] + }, + "Grey Ruins": { + "guild": "Profession Heaven", + "location": { + "startX": 683, + "startY": -619, + "endX": 477, + "endY": -515 + }, + "neighbors": [] + }, + "Forest of Eyes": { + "guild": "Profession Heaven", + "location": { + "startX": 813, + "startY": -333, + "endX": 1043, + "endY": -504 + }, + "neighbors": [] + }, + "Lutho": { + "guild": "Profession Heaven", + "location": { + "startX": 936, + "startY": -654, + "endX": 1027, + "endY": -754 + }, + "neighbors": [] + }, + "Toxic Drip": { + "guild": "Profession Heaven", + "location": { + "startX": 893, + "startY": -876, + "endX": 1086, + "endY": -992 + }, + "neighbors": [] + }, + "Gateway to Nothing": { + "guild": "Profession Heaven", + "location": { + "startX": 1120, + "startY": -882, + "endX": 1244, + "endY": -1058 + }, + "neighbors": [] + }, + "Final Step": { + "guild": "Profession Heaven", + "location": { + "startX": 1388, + "startY": -869, + "endX": 1254, + "endY": -932 + }, + "neighbors": [] + }, + "The Gate": { + "guild": "Profession Heaven", + "location": { + "startX": 1350, + "startY": -520, + "endX": 1265, + "endY": -410 + }, + "neighbors": [] + }, + "Luminous Plateau": { + "guild": "Idiot Co", + "location": { + "startX": -894, + "startY": -5957, + "endX": -962, + "endY": -6066 + }, + "neighbors": [] + }, + "Primal Fen": { + "guild": "Idiot Co", + "location": { + "startX": -894, + "startY": -6244, + "endX": -1026, + "endY": -6066 + }, + "neighbors": [] + }, + "Otherwordly Monolith": { + "guild": "Idiot Co", + "location": { + "startX": -775, + "startY": -6164, + "endX": -662, + "endY": -6003 + }, + "neighbors": [] + }, + "Nexus of Light": { + "guild": "Idiot Co", + "location": { + "startX": -645, + "startY": -6384, + "endX": -855, + "endY": -6561 + }, + "neighbors": [] + }, + "Nivla Woods Entrance": { + "guild": "HackForums", + "location": { + "startX": -435, + "startY": -1530, + "endX": -372, + "endY": -1652 + }, + "neighbors": [] + }, + "Ragni East Suburbs": { + "guild": "ShadowFall", + "location": { + "startX": -747, + "startY": -1653, + "endX": -616, + "endY": -1776 + }, + "neighbors": [] + }, + "Maltic": { + "guild": "ShadowFall", + "location": { + "startX": -604, + "startY": -1945, + "endX": -475, + "endY": -1884 + }, + "neighbors": [] + }, + "Pigmen Ravines": { + "guild": "ShadowFall", + "location": { + "startX": -784, + "startY": -1398, + "endX": -617, + "endY": -1317 + }, + "neighbors": [] + }, + "Abandoned Farm": { + "guild": "ShadowFall", + "location": { + "startX": -577, + "startY": -1395, + "endX": -478, + "endY": -1335 + }, + "neighbors": [] + }, + "Nemract Quarry": { + "guild": "Nerfuria", + "location": { + "startX": -105, + "startY": -2069, + "endX": 20, + "endY": -1960 + }, + "neighbors": [] + }, + "North Nivla Woods": { + "guild": "Nerfuria", + "location": { + "startX": -194, + "startY": -1632, + "endX": -86, + "endY": -1800 + }, + "neighbors": [] + }, + "Nether Gate": { + "guild": "The Dark Phoenix", + "location": { + "startX": 106, + "startY": -1341, + "endX": 342, + "endY": -1222 + }, + "neighbors": [] + }, + "Detlas": { + "guild": "The Dark Phoenix", + "location": { + "startX": 402, + "startY": -1657, + "endX": 536, + "endY": -1518 + }, + "neighbors": [] + }, + "Nivla Woods Edge": { + "guild": "The Dark Phoenix", + "location": { + "startX": -74, + "startY": -1777, + "endX": -3, + "endY": -1485 + }, + "neighbors": [] + }, + "Twain Lake": { + "guild": "GlowOfDust", + "location": { + "startX": 0, + "startY": -330, + "endX": 80, + "endY": -530 + }, + "neighbors": [] + }, + "Nesaak Plains South West": { + "guild": "Fuzzy Spiders", + "location": { + "startX": 70, + "startY": -820, + "endX": -110, + "endY": -625 + }, + "neighbors": [] + }, + "Nesaak Village": { + "guild": "Fuzzy Spiders", + "location": { + "startX": 75, + "startY": -850, + "endX": 160, + "endY": -760 + }, + "neighbors": [] + }, + "Great Bridge Jungle": { + "guild": "ShadowFall", + "location": { + "startX": -395, + "startY": -790, + "endX": -515, + "endY": -610 + }, + "neighbors": [] + }, + "Jungle Lake": { + "guild": "ShadowFall", + "location": { + "startX": -601, + "startY": -791, + "endX": -680, + "endY": -940 + }, + "neighbors": [] + }, + "Rymek East Mid": { + "guild": "WrathOfTheFallen", + "location": { + "startX": 1211, + "startY": -1410, + "endX": 1480, + "endY": -1578 + }, + "neighbors": [] + }, + "Rymek West Upper": { + "guild": "WrathOfTheFallen", + "location": { + "startX": 1190, + "startY": -1665, + "endX": 975, + "endY": -1540 + }, + "neighbors": [] + }, + "Desert Upper": { + "guild": "Ultra Violet", + "location": { + "startX": 990, + "startY": -2270, + "endX": 1195, + "endY": -2120 + }, + "neighbors": [] + }, + "Almuj City": { + "guild": "Ultra Violet", + "location": { + "startX": 1050, + "startY": -1900, + "endX": 840, + "endY": -2060 + }, + "neighbors": [] + }, + "Savannah East Lower": { + "guild": "Emorians", + "location": { + "startX": 775, + "startY": -1675, + "endX": 890, + "endY": -1860 + }, + "neighbors": [] + }, + "Bremminglar": { + "guild": "Emorians", + "location": { + "startX": 760, + "startY": -2070, + "endX": 615, + "endY": -2120 + }, + "neighbors": [] + }, + "Nemract Road": { + "guild": "Nerfuria", + "location": { + "startX": 20, + "startY": -2065, + "endX": 151, + "endY": -1871 + }, + "neighbors": [] + }, + "Nemract Cathedral": { + "guild": "Nerfuria", + "location": { + "startX": 385, + "startY": -2180, + "endX": 270, + "endY": -2030 + }, + "neighbors": [] + }, + "Zhight Island": { + "guild": "The Mage Legacy", + "location": { + "startX": -727, + "startY": -2846, + "endX": -440, + "endY": -2629 + }, + "neighbors": [] + }, + "Durum Isles East": { + "guild": "The Mage Legacy", + "location": { + "startX": 482, + "startY": -2841, + "endX": 548, + "endY": -2785 + }, + "neighbors": [] + }, + "Dujgon Nation": { + "guild": "The Mage Legacy", + "location": { + "startX": 1000, + "startY": -3550, + "endX": 925, + "endY": -3380 + }, + "neighbors": [] + }, + "Dead Island North West": { + "guild": "The Mage Legacy", + "location": { + "startX": 870, + "startY": -3920, + "endX": 745, + "endY": -4040 + }, + "neighbors": [] + }, + "Volcano Lower": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1164, + "startY": -3831, + "endX": -930, + "endY": -3530 + }, + "neighbors": [] + }, + "Ternaves Plains Lower": { + "guild": "The Dark Phoenix", + "location": { + "startX": 655, + "startY": -1430, + "endX": 880, + "endY": -1330 + }, + "neighbors": [] + }, + "Desolate Valley": { + "guild": "Fuzzy Spiders", + "location": { + "startX": 330, + "startY": -1040, + "endX": 450, + "endY": -1170 + }, + "neighbors": [] + }, + "Detlas Savannah Transition": { + "guild": "The Dark Phoenix", + "location": { + "startX": 545, + "startY": -1520, + "endX": 650, + "endY": -1670 + }, + "neighbors": [] + }, + "Llevigar Entrance": { + "guild": "Guardian of Wynn", + "location": { + "startX": -2048, + "startY": -4250, + "endX": -1932, + "endY": -4403 + }, + "neighbors": [] + }, + "Llevigar Farm Plains West": { + "guild": "Eden", + "location": { + "startX": -2060, + "startY": -4746, + "endX": -2171, + "endY": -4828 + }, + "neighbors": [] + }, + "Llevigar Plains West Lower": { + "guild": "Eden", + "location": { + "startX": -2060, + "startY": -4831, + "endX": -2171, + "endY": -4909 + }, + "neighbors": [] + }, + "Swamp East Lower": { + "guild": "Eden", + "location": { + "startX": -2059, + "startY": -5003, + "endX": -1956, + "endY": -5074 + }, + "neighbors": [] + }, + "Swamp East Mid-Upper": { + "guild": "Eden", + "location": { + "startX": -2059, + "startY": -5188, + "endX": -1955, + "endY": -5309 + }, + "neighbors": [] + }, + "Swamp Dark Forest Transition Mid": { + "guild": "Eden", + "location": { + "startX": -1519, + "startY": -5291, + "endX": -1626, + "endY": -5492 + }, + "neighbors": [] + }, + "Olux": { + "guild": "Eden", + "location": { + "startX": -1810, + "startY": -5397, + "endX": -1668, + "endY": -5597 + }, + "neighbors": [] + }, + "Swamp Mountain Transition Mid": { + "guild": "Eden", + "location": { + "startX": -2127, + "startY": -5466, + "endX": -2066, + "endY": -5603 + }, + "neighbors": [] + }, + "Quartz Mines South East": { + "guild": "Eden", + "location": { + "startX": -1391, + "startY": -4352, + "endX": -1607, + "endY": -4524 + }, + "neighbors": [] + }, + "Orc Lake": { + "guild": "BRIS", + "location": { + "startX": -1933, + "startY": -4962, + "endX": -1816, + "endY": -4854 + }, + "neighbors": [] + }, + "Loamsprout Camp": { + "guild": "Eden", + "location": { + "startX": -1800, + "startY": -4852, + "endX": -1670, + "endY": -4684 + }, + "neighbors": [] + }, + "Forgotten Path": { + "guild": "Eden", + "location": { + "startX": -1603, + "startY": -4969, + "endX": -1529, + "endY": -5100 + }, + "neighbors": [] + }, + "Road To Light Forest": { + "guild": "Eden", + "location": { + "startX": -1387, + "startY": -4595, + "endX": -1252, + "endY": -4713 + }, + "neighbors": [] + }, + "Efilim South East Plains": { + "guild": "Wheres The Finish", + "location": { + "startX": -949, + "startY": -4942, + "endX": -1014, + "endY": -4847 + }, + "neighbors": [] + }, + "Aldorei Valley West Entrance": { + "guild": "The Mage Legacy", + "location": { + "startX": -736, + "startY": -4428, + "endX": -802, + "endY": -4553 + }, + "neighbors": [] + }, + "Light Forest West Mid": { + "guild": "The Mage Legacy", + "location": { + "startX": -929, + "startY": -4552, + "endX": -1014, + "endY": -4706 + }, + "neighbors": [] + }, + "Light Forest East Lower": { + "guild": "The Mage Legacy", + "location": { + "startX": -926, + "startY": -4700, + "endX": -805, + "endY": -4552 + }, + "neighbors": [] + }, + "Path to Cinfras": { + "guild": "Wheres The Finish", + "location": { + "startX": -734, + "startY": -4842, + "endX": -818, + "endY": -4953 + }, + "neighbors": [] + }, + "Gelibord Castle": { + "guild": "Eden", + "location": { + "startX": -1027, + "startY": -5470, + "endX": -1180, + "endY": -5600 + }, + "neighbors": [] + }, + "Mansion of Insanity": { + "guild": "Eden", + "location": { + "startX": -1237, + "startY": -5116, + "endX": -1144, + "endY": -5268 + }, + "neighbors": [] + }, + "Entrance to Kander": { + "guild": "Wheres The Finish", + "location": { + "startX": -896, + "startY": -5408, + "endX": -792, + "endY": -5233 + }, + "neighbors": [] + }, + "Path to Talor": { + "guild": "Wheres The Finish", + "location": { + "startX": -653, + "startY": -5231, + "endX": -785, + "endY": -5401 + }, + "neighbors": [] + }, + "Old Crossroads North": { + "guild": "Wheres The Finish", + "location": { + "startX": -648, + "startY": -5314, + "endX": -567, + "endY": -5400 + }, + "neighbors": [] + }, + "Heart of Decay": { + "guild": "Wheres The Finish", + "location": { + "startX": -598, + "startY": -5580, + "endX": -454, + "endY": -5518 + }, + "neighbors": [] + }, + "Dark Forest Cinfras Transition": { + "guild": "Aequitas", + "location": { + "startX": -290, + "startY": -5292, + "endX": -392, + "endY": -5116 + }, + "neighbors": [] + }, + "Cinfras County Lower": { + "guild": "Aequitas", + "location": { + "startX": 3, + "startY": -4760, + "endX": -127, + "endY": -4640 + }, + "neighbors": [] + }, + "Gylia Lake South East": { + "guild": "Aequitas", + "location": { + "startX": 30, + "startY": -5157, + "endX": -127, + "endY": -5271 + }, + "neighbors": [] + }, + "Gert Camp": { + "guild": "ChinaNumberOne", + "location": { + "startX": 30, + "startY": -5447, + "endX": -83, + "endY": -5605 + }, + "neighbors": [] + }, + "Aldorei Valley Upper": { + "guild": "Aequitas", + "location": { + "startX": -557, + "startY": -4501, + "endX": -322, + "endY": -4656 + }, + "neighbors": [] + }, + "Aldorei's Arch": { + "guild": "Aequitas", + "location": { + "startX": 33, + "startY": -4367, + "endX": 107, + "endY": -4519 + }, + "neighbors": [] + }, + "Burning Airship": { + "guild": "Aequitas", + "location": { + "startX": 35, + "startY": -4859, + "endX": 107, + "endY": -4955 + }, + "neighbors": [] + }, + "Path To Military Base": { + "guild": "ChinaNumberOne", + "location": { + "startX": 51, + "startY": -5297, + "endX": 166, + "endY": -5391 + }, + "neighbors": [] + }, + "Path To Ozoth's Spire Lower": { + "guild": "ChinaNumberOne", + "location": { + "startX": 260, + "startY": -5298, + "endX": 199, + "endY": -5169 + }, + "neighbors": [] + }, + "Bandit Cave Upper": { + "guild": "IceBlue Team", + "location": { + "startX": 194, + "startY": -4956, + "endX": 111, + "endY": -4872 + }, + "neighbors": [] + }, + "Canyon Waterfall North": { + "guild": "TheNoLifes", + "location": { + "startX": 115, + "startY": -4380, + "endX": 194, + "endY": -4518 + }, + "neighbors": [] + }, + "Canyon Path North Mid": { + "guild": "TheNoLifes", + "location": { + "startX": 200, + "startY": -4743, + "endX": 264, + "endY": -4875 + }, + "neighbors": [] + }, + "Thanos Exit": { + "guild": "IceBlue Team", + "location": { + "startX": 338, + "startY": -5310, + "endX": 262, + "endY": -5168 + }, + "neighbors": [] + }, + "Canyon Waterfall Mid North": { + "guild": "TheNoLifes", + "location": { + "startX": 337, + "startY": -4855, + "endX": 271, + "endY": -4741 + }, + "neighbors": [] + }, + "Thanos Exit Upper": { + "guild": "IceBlue Team", + "location": { + "startX": 347, + "startY": -5313, + "endX": 438, + "endY": -5183 + }, + "neighbors": [] + }, + "Mountain Edge": { + "guild": "TheNoLifes", + "location": { + "startX": 437, + "startY": -4314, + "endX": 336, + "endY": -4392 + }, + "neighbors": [] + }, + "Krolton's Cave": { + "guild": "IceBlue Team", + "location": { + "startX": 341, + "startY": -4841, + "endX": 438, + "endY": -4962 + }, + "neighbors": [] + }, + "Cliffside Valley": { + "guild": "IceBlue Team", + "location": { + "startX": 563, + "startY": -5079, + "endX": 440, + "endY": -4975 + }, + "neighbors": [] + }, + "Canyon Of The Lost": { + "guild": "TheNoLifes", + "location": { + "startX": 443, + "startY": -4566, + "endX": 570, + "endY": -4392 + }, + "neighbors": [] + }, + "Cliffside Passage North": { + "guild": "TheNoLifes", + "location": { + "startX": 572, + "startY": -4818, + "endX": 700, + "endY": -4933 + }, + "neighbors": [] + }, + "Cherry Blossom Forest": { + "guild": "IceBlue Team", + "location": { + "startX": 699, + "startY": -5378, + "endX": 575, + "endY": -5551 + }, + "neighbors": [] + }, + "Entrance to Rodoroc": { + "guild": "Avicia", + "location": { + "startX": 854, + "startY": -5257, + "endX": 1113, + "endY": -5367 + }, + "neighbors": [] + }, + "Lava Lake Bridge": { + "guild": "Avicia", + "location": { + "startX": 1230, + "startY": -5240, + "endX": 1379, + "endY": -5366 + }, + "neighbors": [] + }, + "Ahmsord": { + "guild": "Avicia", + "location": { + "startX": 1163, + "startY": -4462, + "endX": 942, + "endY": -4604 + }, + "neighbors": [] + }, + "Dernel Jungle Mid": { + "guild": "ShadowFall", + "location": { + "startX": -744, + "startY": -528, + "endX": -965, + "endY": -264 + }, + "neighbors": [] + }, + "Corkus City South": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1559, + "startY": -2662, + "endX": -1679, + "endY": -2833 + }, + "neighbors": [] + }, + "Legendary Island": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1212, + "startY": -2576, + "endX": -1001, + "endY": -2342 + }, + "neighbors": [] + }, + "Corkus Mountain": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1888, + "startY": -2997, + "endX": -1683, + "endY": -3175 + }, + "neighbors": [] + }, + "Corkus Sea Port": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1680, + "startY": -2512, + "endX": -1437, + "endY": -2307 + }, + "neighbors": [] + }, + "Bloody Beach": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1376, + "startY": -3225, + "endX": -1097, + "endY": -3426 + }, + "neighbors": [] + }, + "Path to Ahmsord Lower": { + "guild": "Avicia", + "location": { + "startX": 779, + "startY": -4480, + "endX": 885, + "endY": -4570 + }, + "neighbors": [] + }, + "Dragonling Nests": { + "guild": "Avicia", + "location": { + "startX": 925, + "startY": -4916, + "endX": 1101, + "endY": -5016 + }, + "neighbors": [] + }, + "Swamp Island": { + "guild": "Avicia", + "location": { + "startX": 1178, + "startY": -4754, + "endX": 1101, + "endY": -4915 + }, + "neighbors": [] + }, + "Sky Island Ascent": { + "guild": "Avicia", + "location": { + "startX": 1180, + "startY": -4524, + "endX": 1379, + "endY": -4355 + }, + "neighbors": [] + }, + "Jofash Tunnel": { + "guild": "Avicia", + "location": { + "startX": 1304, + "startY": -4354, + "endX": 1126, + "endY": -4176 + }, + "neighbors": [] + }, + "Icy Descent": { + "guild": "Fuzzy Spiders", + "location": { + "startX": -311, + "startY": -358, + "endX": -104, + "endY": -496 + }, + "neighbors": [] + }, + "Rodoroc": { + "guild": "Avicia", + "location": { + "startX": 1200, + "startY": -5067, + "endX": 965, + "endY": -5238 + }, + "neighbors": [] + }, + "Twisted Ridge": { + "guild": "Wheres The Finish", + "location": { + "startX": -1020, + "startY": -5603, + "endX": -910, + "endY": -5343 + }, + "neighbors": [] + }, + "Orc Battlegrounds": { + "guild": "Eden", + "location": { + "startX": -1460, + "startY": -5024, + "endX": -1282, + "endY": -4870 + }, + "neighbors": [] + }, + "Lighthouse Plateau": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1633, + "startY": -2162, + "endX": -1445, + "endY": -2306 + }, + "neighbors": [] + }, + "Worm Tunnel": { + "guild": "Profession Heaven", + "location": { + "startX": 641, + "startY": -767, + "endX": 543, + "endY": -640 + }, + "neighbors": [] + }, + "Sinister Forest": { + "guild": "Profession Heaven", + "location": { + "startX": 815, + "startY": -506, + "endX": 1059, + "endY": -629 + }, + "neighbors": [] + }, + "Toxic Caves": { + "guild": "Profession Heaven", + "location": { + "startX": 1017, + "startY": -1146, + "endX": 844, + "endY": -993 + }, + "neighbors": [] + }, + "Bizarre Passage": { + "guild": "Profession Heaven", + "location": { + "startX": 1187, + "startY": -680, + "endX": 1388, + "endY": -530 + }, + "neighbors": [] + }, + "Field of Life": { + "guild": "Idiot Co", + "location": { + "startX": -894, + "startY": -6010, + "endX": -827, + "endY": -6164 + }, + "neighbors": [] + }, + "Path to Light": { + "guild": "Idiot Co", + "location": { + "startX": -775, + "startY": -6164, + "endX": -827, + "endY": -6010 + }, + "neighbors": [] + }, + "Katoa Ranch": { + "guild": "ShadowFall", + "location": { + "startX": -914, + "startY": -1860, + "endX": -748, + "endY": -1955 + }, + "neighbors": [] + }, + "Plains": { + "guild": "ShadowFall", + "location": { + "startX": -435, + "startY": -1883, + "endX": -270, + "endY": -1653 + }, + "neighbors": [] + }, + "Road to Time Valley": { + "guild": "ShadowFall", + "location": { + "startX": -461, + "startY": -1525, + "endX": -359, + "endY": -1412 + }, + "neighbors": [] + }, + "Road to Elkurn": { + "guild": "ShadowFall", + "location": { + "startX": -89, + "startY": -1481, + "endX": 2, + "endY": -1267 + }, + "neighbors": [] + }, + "North Farmers Valley": { + "guild": "Nerfuria", + "location": { + "startX": -348, + "startY": -2060, + "endX": -254, + "endY": -1954 + }, + "neighbors": [] + }, + "Bob's Tomb": { + "guild": "Fuzzy Spiders", + "location": { + "startX": 246, + "startY": -747, + "endX": 380, + "endY": -867 + }, + "neighbors": [] + }, + "Nesaak Plains Mid North West": { + "guild": "Fuzzy Spiders", + "location": { + "startX": -140, + "startY": -860, + "endX": -180, + "endY": -980 + }, + "neighbors": [] + }, + "City of Troms": { + "guild": "ShadowFall", + "location": { + "startX": -726, + "startY": -970, + "endX": -899, + "endY": -826 + }, + "neighbors": [] + }, + "Desert East Mid": { + "guild": "WrathOfTheFallen", + "location": { + "startX": 1260, + "startY": -2170, + "endX": 1450, + "endY": -2020 + }, + "neighbors": [] + }, + "Desert West Upper": { + "guild": "Ultra Violet", + "location": { + "startX": 990, + "startY": -2270, + "endX": 895, + "endY": -2140 + }, + "neighbors": [] + }, + "Nemract Town": { + "guild": "Nerfuria", + "location": { + "startX": 10, + "startY": -2070, + "endX": 210, + "endY": -2270 + }, + "neighbors": [] + }, + "The Bear Zoo": { + "guild": "The Mage Legacy", + "location": { + "startX": -409, + "startY": -2539, + "endX": -283, + "endY": -2414 + }, + "neighbors": [] + }, + "Pirate Town": { + "guild": "The Mage Legacy", + "location": { + "startX": -750, + "startY": -3251, + "endX": -580, + "endY": -3006 + }, + "neighbors": [] + }, + "Maro Peaks": { + "guild": "The Mage Legacy", + "location": { + "startX": -41, + "startY": -4174, + "endX": 453, + "endY": -3793 + }, + "neighbors": [] + }, + "Mining Base Lower": { + "guild": "The Dark Phoenix", + "location": { + "startX": 870, + "startY": -1130, + "endX": 670, + "endY": -1225 + }, + "neighbors": [] + }, + "Detlas Trail East Plains": { + "guild": "The Dark Phoenix", + "location": { + "startX": 200, + "startY": -1820, + "endX": 510, + "endY": -1675 + }, + "neighbors": [] + }, + "Cinfras": { + "guild": "Aequitas", + "location": { + "startX": -534, + "startY": -4807, + "endX": -375, + "endY": -5088 + }, + "neighbors": [] + }, + "Swamp West Mid": { + "guild": "Eden", + "location": { + "startX": -2060, + "startY": -5082, + "endX": -2171, + "endY": -5186 + }, + "neighbors": [] + }, + "Swamp Lower": { + "guild": "BRIS", + "location": { + "startX": -1649, + "startY": -5134, + "endX": -1763, + "endY": -5241 + }, + "neighbors": [] + }, + "Swamp Mountain Transition Upper": { + "guild": "Eden", + "location": { + "startX": -1981, + "startY": -5466, + "endX": -1889, + "endY": -5603 + }, + "neighbors": [] + }, + "Meteor Crater": { + "guild": "BRIS", + "location": { + "startX": -1800, + "startY": -5099, + "endX": -1690, + "endY": -4969 + }, + "neighbors": [] + }, + "Pre-Light Forest Transition": { + "guild": "Eden", + "location": { + "startX": -1553, + "startY": -4850, + "endX": -1476, + "endY": -4719 + }, + "neighbors": [] + }, + "Light Forest Entrance": { + "guild": "The Mage Legacy", + "location": { + "startX": -1040, + "startY": -4706, + "endX": -1134, + "endY": -4552 + }, + "neighbors": [] + }, + "Light Forest East Upper": { + "guild": "Wheres The Finish", + "location": { + "startX": -926, + "startY": -4842, + "endX": -831, + "endY": -4945 + }, + "neighbors": [] + }, + "Gelibord": { + "guild": "Wheres The Finish", + "location": { + "startX": -1050, + "startY": -5244, + "endX": -958, + "endY": -5342 + }, + "neighbors": [] + }, + "Lexdales Prison": { + "guild": "Wheres The Finish", + "location": { + "startX": -873, + "startY": -5518, + "endX": -772, + "endY": -5585 + }, + "neighbors": [] + }, + "Dark Forest Village": { + "guild": "Wheres The Finish", + "location": { + "startX": -723, + "startY": -5229, + "endX": -574, + "endY": -5147 + }, + "neighbors": [] + }, + "Mushroom Hill": { + "guild": "ChinaNumberOne", + "location": { + "startX": -288, + "startY": -5411, + "endX": -392, + "endY": -5601 + }, + "neighbors": [] + }, + "Cinfras County Mid-Upper": { + "guild": "Aequitas", + "location": { + "startX": -127, + "startY": -4896, + "endX": 3, + "endY": -5050 + }, + "neighbors": [] + }, + "Aldorei Valley Lower": { + "guild": "Aequitas", + "location": { + "startX": -714, + "startY": -4395, + "endX": -559, + "endY": -4499 + }, + "neighbors": [] + }, + "Ghostly Path": { + "guild": "Aequitas", + "location": { + "startX": 35, + "startY": -4643, + "endX": 107, + "endY": -4753 + }, + "neighbors": [] + }, + "Military Base Upper": { + "guild": "ChinaNumberOne", + "location": { + "startX": 168, + "startY": -5408, + "endX": 250, + "endY": -5518 + }, + "neighbors": [] + }, + "Canyon Path North West": { + "guild": "TheNoLifes", + "location": { + "startX": 110, + "startY": -4736, + "endX": 194, + "endY": -4651 + }, + "neighbors": [] + }, + "Canyon Valley South": { + "guild": "IceBlue Team", + "location": { + "startX": 263, + "startY": -4973, + "endX": 199, + "endY": -5035 + }, + "neighbors": [] + }, + "Canyon Survivor": { + "guild": "TheNoLifes", + "location": { + "startX": 338, + "startY": -4628, + "endX": 269, + "endY": -4522 + }, + "neighbors": [] + }, + "Valley of the Lost": { + "guild": "TheNoLifes", + "location": { + "startX": 435, + "startY": -4511, + "endX": 341, + "endY": -4670 + }, + "neighbors": [] + }, + "Air Temple Upper": { + "guild": "IceBlue Team", + "location": { + "startX": 570, + "startY": -4833, + "endX": 445, + "endY": -4692 + }, + "neighbors": [] + }, + "Entrance to Thesead South": { + "guild": "IceBlue Team", + "location": { + "startX": 700, + "startY": -5030, + "endX": 574, + "endY": -5181 + }, + "neighbors": [] + }, + "Molten Heights Portal": { + "guild": "Avicia", + "location": { + "startX": 1535, + "startY": -5067, + "endX": 1387, + "endY": -5366 + }, + "neighbors": [] + }, + "Snail Island": { + "guild": "Avicia", + "location": { + "startX": 949, + "startY": -4885, + "endX": 1057, + "endY": -4804 + }, + "neighbors": [] + }, + "Road To Mine": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1467, + "startY": -2834, + "endX": -1557, + "endY": -2691 + }, + "neighbors": [] + }, + "Corkus Docks": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1891, + "startY": -2997, + "endX": -2022, + "endY": -3274 + }, + "neighbors": [] + }, + "Frozen Fort": { + "guild": "The Mage Legacy", + "location": { + "startX": 1501, + "startY": -4513, + "endX": 1586, + "endY": -4789 + }, + "neighbors": [] + }, + "Molten Reach": { + "guild": "Avicia", + "location": { + "startX": 1251, + "startY": -4894, + "endX": 1500, + "endY": -4964 + }, + "neighbors": [] + }, + "Raider's Base Upper": { + "guild": "Avicia", + "location": { + "startX": 1380, + "startY": -4457, + "endX": 1551, + "endY": -4316 + }, + "neighbors": [] + }, + "Aldorei Lowlands": { + "guild": "Aequitas", + "location": { + "startX": -337, + "startY": -4756, + "endX": -225, + "endY": -4657 + }, + "neighbors": [] + }, + "Royal Gate": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1822, + "startY": -1995, + "endX": -2015, + "endY": -1725 + }, + "neighbors": [] + }, + "The Silent Road": { + "guild": "Profession Heaven", + "location": { + "startX": 540, + "startY": -1088, + "endX": 704, + "endY": -961 + }, + "neighbors": [] + }, + "Paths of Sludge": { + "guild": "Profession Heaven", + "location": { + "startX": 1040, + "startY": -767, + "endX": 892, + "endY": -870 + }, + "neighbors": [] + }, + "Heavenly Ingress": { + "guild": "Idiot Co", + "location": { + "startX": -814, + "startY": -6015, + "endX": -894, + "endY": -5928 + }, + "neighbors": [] + }, + "Light Peninsula": { + "guild": "The Mage Legacy", + "location": { + "startX": -951, + "startY": -4421, + "endX": -802, + "endY": -4108 + }, + "neighbors": [] + }, + "Ragni Main Entrance": { + "guild": "ShadowFall", + "location": { + "startX": -747, + "startY": -1530, + "endX": -616, + "endY": -1652 + }, + "neighbors": [] + }, + "Little Wood": { + "guild": "ShadowFall", + "location": { + "startX": -812, + "startY": -1177, + "endX": -636, + "endY": -1094 + }, + "neighbors": [] + }, + "Detlas Suburbs": { + "guild": "The Dark Phoenix", + "location": { + "startX": 188, + "startY": -1657, + "endX": 300, + "endY": -1500 + }, + "neighbors": [] + }, + "Nesaak Plains Lower North West": { + "guild": "Fuzzy Spiders", + "location": { + "startX": 70, + "startY": -834, + "endX": -120, + "endY": -910 + }, + "neighbors": [] + }, + "Rymek West Lower": { + "guild": "WrathOfTheFallen", + "location": { + "startX": 1209, + "startY": -1269, + "endX": 1020, + "endY": -1380 + }, + "neighbors": [] + }, + "Savannah West Lower": { + "guild": "The Dark Phoenix", + "location": { + "startX": 775, + "startY": -1675, + "endX": 630, + "endY": -1830 + }, + "neighbors": [] + }, + "Durum Isles Center": { + "guild": "The Mage Legacy", + "location": { + "startX": 405, + "startY": -2846, + "endX": 504, + "endY": -2972 + }, + "neighbors": [] + }, + "Ternaves": { + "guild": "The Dark Phoenix", + "location": { + "startX": 770, + "startY": -1675, + "endX": 880, + "endY": -1540 + }, + "neighbors": [] + }, + "Llevigar Gate West": { + "guild": "Eden", + "location": { + "startX": -2060, + "startY": -4746, + "endX": -2171, + "endY": -4644 + }, + "neighbors": [] + }, + "Swamp East Upper": { + "guild": "Eden", + "location": { + "startX": -1955, + "startY": -5311, + "endX": -2059, + "endY": -5419 + }, + "neighbors": [] + }, + "Quartz Mines North East": { + "guild": "Eden", + "location": { + "startX": -1391, + "startY": -4664, + "endX": -1607, + "endY": -4526 + }, + "neighbors": [] + }, + "Efilim South Plains": { + "guild": "Wheres The Finish", + "location": { + "startX": -1030, + "startY": -4940, + "endX": -1134, + "endY": -4847 + }, + "neighbors": [] + }, + "Mantis Nest": { + "guild": "The Mage Legacy", + "location": { + "startX": -736, + "startY": -4559, + "endX": -802, + "endY": -4698 + }, + "neighbors": [] + }, + "Mesquis Tower": { + "guild": "Wheres The Finish", + "location": { + "startX": -834, + "startY": -5078, + "endX": -727, + "endY": -4999 + }, + "neighbors": [] + }, + "Aldorei Valley South Entrance": { + "guild": "Aequitas", + "location": { + "startX": -130, + "startY": -4641, + "endX": -222, + "endY": -4509 + }, + "neighbors": [] + }, + "Aldorei's Waterfall": { + "guild": "Aequitas", + "location": { + "startX": -237, + "startY": -4514, + "endX": -321, + "endY": -4648 + }, + "neighbors": [] + }, + "Path To Ozoth's Spire Upper": { + "guild": "IceBlue Team", + "location": { + "startX": 194, + "startY": -5165, + "endX": 111, + "endY": -5045 + }, + "neighbors": [] + }, + "Canyon Mountain East": { + "guild": "IceBlue Team", + "location": { + "startX": 271, + "startY": -5039, + "endX": 337, + "endY": -4948 + }, + "neighbors": [] + }, + "Canyon High Path": { + "guild": "IceBlue Team", + "location": { + "startX": 562, + "startY": -5313, + "endX": 440, + "endY": -5191 + }, + "neighbors": [] + }, + "Thesead Suburbs": { + "guild": "IceBlue Team", + "location": { + "startX": 703, + "startY": -5374, + "endX": 810, + "endY": -5216 + }, + "neighbors": [] + }, + "Corkus City": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1557, + "startY": -2835, + "endX": -1680, + "endY": -3010 + }, + "neighbors": [] + }, + "Corkus Statue": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1322, + "startY": -2917, + "endX": -1393, + "endY": -2836 + }, + "neighbors": [] + }, + "Wybel Island": { + "guild": "Avicia", + "location": { + "startX": 1355, + "startY": -4700, + "endX": 1253, + "endY": -4595 + }, + "neighbors": [] + }, + "Regular Island": { + "guild": "The Mage Legacy", + "location": { + "startX": 1202, + "startY": -3764, + "endX": 1458, + "endY": -3597 + }, + "neighbors": [] + }, + "Forgotten Town": { + "guild": "Profession Heaven", + "location": { + "startX": 480, + "startY": -493, + "endX": 734, + "endY": -355 + }, + "neighbors": [] + }, + "Azure Frontier": { + "guild": "Idiot Co", + "location": { + "startX": -894, + "startY": -6164, + "endX": -684, + "endY": -6313 + }, + "neighbors": [] + }, + "Nivla Woods Exit": { + "guild": "The Dark Phoenix", + "location": { + "startX": -175, + "startY": -1630, + "endX": -105, + "endY": -1514 + }, + "neighbors": [] + }, + "Jungle Mid": { + "guild": "ShadowFall", + "location": { + "startX": -600, + "startY": -610, + "endX": -670, + "endY": -780 + }, + "neighbors": [] + }, + "Nemract Plains East": { + "guild": "Nerfuria", + "location": { + "startX": 151, + "startY": -1870, + "endX": 20, + "endY": -1810 + }, + "neighbors": [] + }, + "Plains Lake": { + "guild": "The Dark Phoenix", + "location": { + "startX": 395, + "startY": -1365, + "endX": 550, + "endY": -1190 + }, + "neighbors": [] + }, + "Swamp Plains Basin": { + "guild": "Eden", + "location": { + "startX": -1776, + "startY": -5246, + "endX": -1898, + "endY": -5396 + }, + "neighbors": [] + }, + "Light Forest North Exit": { + "guild": "The Mage Legacy", + "location": { + "startX": -733, + "startY": -4707, + "endX": -654, + "endY": -4848 + }, + "neighbors": [] + }, + "Fungal Grove": { + "guild": "Wheres The Finish", + "location": { + "startX": -489, + "startY": -5279, + "endX": -549, + "endY": -5398 + }, + "neighbors": [] + }, + "Thanos": { + "guild": "ChinaNumberOne", + "location": { + "startX": 51, + "startY": -5189, + "endX": 194, + "endY": -5295 + }, + "neighbors": [] + }, + "Wizard Tower North": { + "guild": "IceBlue Team", + "location": { + "startX": 438, + "startY": -5037, + "endX": 345, + "endY": -4966 + }, + "neighbors": [] + }, + "Active Volcano": { + "guild": "Avicia", + "location": { + "startX": 1233, + "startY": -5553, + "endX": 1379, + "endY": -5369 + }, + "neighbors": [] + }, + "Kandon Ridge": { + "guild": "Avicia", + "location": { + "startX": 885, + "startY": -4640, + "endX": 719, + "endY": -4777 + }, + "neighbors": [] + }, + "Lost Atoll": { + "guild": "The Mage Legacy", + "location": { + "startX": -472, + "startY": -3590, + "endX": -688, + "endY": -3385 + }, + "neighbors": [] + }, + "Coastal Trail": { + "guild": "ShadowFall", + "location": { + "startX": -747, + "startY": -1946, + "endX": -565, + "endY": -2059 + }, + "neighbors": [] + }, + "Desert Mid-Lower": { + "guild": "Paladins United", + "location": { + "startX": 1060, + "startY": -1935, + "endX": 1210, + "endY": -1810 + }, + "neighbors": [] + }, + "Llevigar Plains East Upper": { + "guild": "Eden", + "location": { + "startX": -2059, + "startY": -4912, + "endX": -1940, + "endY": -5000 + }, + "neighbors": [] + }, + "Fortress North": { + "guild": "Eden", + "location": { + "startX": -1452, + "startY": -5211, + "endX": -1272, + "endY": -5395 + }, + "neighbors": [] + }, + "Canyon Lower South East": { + "guild": "TheNoLifes", + "location": { + "startX": 265, + "startY": -4521, + "endX": 199, + "endY": -4649 + }, + "neighbors": [] + }, + "Corkus Forest South": { + "guild": "Guardian of Wynn", + "location": { + "startX": -1681, + "startY": -2732, + "endX": -1883, + "endY": -2861 + }, + "neighbors": [] + }, + "Void Valley": { + "guild": "Profession Heaven", + "location": { + "startX": 1082, + "startY": -1161, + "endX": 1250, + "endY": -1078 + }, + "neighbors": [] + }, + "Half Moon Island": { + "guild": "The Mage Legacy", + "location": { + "startX": 900, + "startY": -2660, + "endX": 1100, + "endY": -2480 + }, + "neighbors": [] + }, + "Goblin Plains West": { + "guild": "Eden", + "location": { + "startX": -1688, + "startY": -4962, + "endX": -1611, + "endY": -4854 + }, + "neighbors": [] + }, + "Kandon Farm": { + "guild": "Avicia", + "location": { + "startX": 710, + "startY": -4587, + "endX": 614, + "endY": -4682 + }, + "neighbors": [] + }, + "Gylia Lake North West": { + "guild": "ChinaNumberOne", + "location": { + "startX": -218, + "startY": -5427, + "endX": -130, + "endY": -5273 + }, + "neighbors": [] + }, + "Santa's Hideout": { + "guild": "The Mage Legacy", + "location": { + "startX": 1057, + "startY": -3077, + "endX": 1221, + "endY": -3209 + }, + "neighbors": [] + }, + "Dead Island North East": { + "guild": "The Mage Legacy", + "location": { + "startX": 870, + "startY": -3920, + "endX": 1000, + "endY": -4040 + }, + "neighbors": [] + } + } \ No newline at end of file diff --git a/terrs_compress.json b/terrs_compress.json new file mode 100644 index 0000000..6285a3a --- /dev/null +++ b/terrs_compress.json @@ -0,0 +1 @@ +{"Ragni": {"territory": "Ragni", "guild": "ShadowFall", "location": {"startX": -955, "startY": -1415, "endX": -756, "endY": -1748}, "neighbors": ["Ragni North Entrance", "Pigmen Ravines Entrance", "Ragni Main Entrance"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Emerald Trail": {"territory": "Emerald Trail", "guild": "ShadowFall", "location": {"startX": -615, "startY": -1530, "endX": -436, "endY": -1652}, "neighbors": ["Nivla Woods Entrance", "Ragni Main Entrance", "Maltic Plains"], "resources": ["Crops"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Ragni North Entrance": {"territory": "Ragni North Entrance", "guild": "ShadowFall", "location": {"startX": -944, "startY": -1761, "endX": -818, "endY": -1859}, "neighbors": ["Katoa Ranch", "Ragni", "Ragni North Suburbs"], "resources": ["Crops"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Ragni North Suburbs": {"territory": "Ragni North Suburbs", "guild": "ShadowFall", "location": {"startX": -817, "startY": -1859, "endX": -762, "endY": -1761}, "neighbors": ["Katoa Ranch", "Ragni North Entrance", "Ragni Plains"], "resources": ["Crops"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Ragni Plains": {"territory": "Ragni Plains", "guild": "ShadowFall", "location": {"startX": -747, "startY": -1776, "endX": -605, "endY": -1945}, "neighbors": ["Maltic", "Ragni East Suburbs", "Ragni North Suburbs", "Coastal Trail"], "resources": ["Crops"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Maltic Coast": {"territory": "Maltic Coast", "guild": "Nerfuria", "location": {"startX": -564, "startY": -2059, "endX": -400, "endY": -1946}, "neighbors": ["North Farmers Valley", "Maltic", "Coastal Trail", "South Farmers Valley"], "resources": ["Fish", "Crops"], "storage": ["Emeralds", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Maltic Plains": {"territory": "Maltic Plains", "guild": "HackForums", "location": {"startX": -564, "startY": -1883, "endX": -436, "endY": -1653}, "neighbors": ["Maltic", "South Farmers Valley", "Ragni East Suburbs", "Emerald Trail", "Plains"], "resources": ["Crops"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Pigmen Ravines Entrance": {"territory": "Pigmen Ravines Entrance", "guild": "ShadowFall", "location": {"startX": -924, "startY": -1398, "endX": -784, "endY": -1307}, "neighbors": ["Ragni", "South Pigmen Ravines", "Pigmen Ravines"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "South Pigmen Ravines": {"territory": "South Pigmen Ravines", "guild": "ShadowFall", "location": {"startX": -898, "startY": -1298, "endX": -678, "endY": -1221}, "neighbors": ["Pigmen Ravines Entrance", "Little Wood"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Time Valley": {"territory": "Time Valley", "guild": "ShadowFall", "location": {"startX": -563, "startY": -1261, "endX": -406, "endY": -1006}, "neighbors": ["Abandoned Farm", "Little Wood", "Elkurn Fields"], "resources": ["Wood"], "storage": ["Emeralds", "Wood", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Sanctuary Bridge": {"territory": "Sanctuary Bridge", "guild": "The Aquarium", "location": {"startX": -324, "startY": -1130, "endX": -192, "endY": -993}, "neighbors": ["Time Valley", "Nesaak Plains Upper North West"], "resources": ["Fish"], "storage": ["Emeralds", "Wood", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Elkurn Fields": {"territory": "Elkurn Fields", "guild": "ShadowFall", "location": {"startX": -357, "startY": -1325, "endX": -99, "endY": -1141}, "neighbors": ["Time Valley", "Road to Elkurn", "Elkurn", "South Nivla Woods"], "resources": ["Crops"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nivla Woods": {"territory": "Nivla Woods", "guild": "ShadowFall", "location": {"startX": -325, "startY": -1624, "endX": -196, "endY": -1460}, "neighbors": ["Nivla Woods Entrance", "South Nivla Woods", "Road to Time Valley", "Nivla Woods Exit"], "resources": ["Wood"], "storage": ["Emeralds", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "South Nivla Woods": {"territory": "South Nivla Woods", "guild": "The Aquarium", "location": {"startX": -350, "startY": -1440, "endX": -99, "endY": -1330}, "neighbors": ["Road to Elkurn", "Nivla Woods", "Road to Time Valley", "Elkurn Fields", "Nivla Woods Exit"], "resources": ["Wood"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Elkurn": {"territory": "Elkurn", "guild": "ShadowFall", "location": {"startX": -98, "startY": -1250, "endX": 62, "endY": -1080}, "neighbors": ["Road to Elkurn", "Nesaak Plains Upper North West", "Corrupted Road", "Elkurn Fields"], "resources": ["Crops"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Corrupted Road": {"territory": "Corrupted Road", "guild": "The Dark Phoenix", "location": {"startX": 22, "startY": -1479, "endX": 96, "endY": -1261}, "neighbors": ["Nether Plains Upper", "Nether Gate", "Elkurn", "Detlas Far Suburbs"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Detlas Far Suburbs": {"territory": "Detlas Far Suburbs", "guild": "The Dark Phoenix", "location": {"startX": 29, "startY": -1657, "endX": 188, "endY": -1500}, "neighbors": ["Nivla Woods Edge", "Nether Plains Upper", "Corrupted Road", "Detlas Trail West Plains", "Detlas Suburbs"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Detlas Close Suburbs": {"territory": "Detlas Close Suburbs", "guild": "The Dark Phoenix", "location": {"startX": 300, "startY": -1657, "endX": 389, "endY": -1500}, "neighbors": ["Detlas", "Nether Plains Upper", "Detlas Suburbs", "Detlas Trail East Plains"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "South Farmers Valley": {"territory": "South Farmers Valley", "guild": "Nerfuria", "location": {"startX": -472, "startY": -1944, "endX": -255, "endY": -1887}, "neighbors": ["Maltic", "North Farmers Valley", "Maltic Plains", "Maltic Coast", "Plains"], "resources": ["Crops"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Arachnid Route": {"territory": "Arachnid Route", "guild": "Nerfuria", "location": {"startX": -261, "startY": -1881, "endX": -109, "endY": -1808}, "neighbors": ["North Nivla Woods", "Nemract Plains West", "Plains"], "resources": ["Wood"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Tower of Ascension": {"territory": "Tower of Ascension", "guild": "Fuzzy Spiders", "location": {"startX": -400, "startY": -450, "endX": -315, "endY": -330}, "neighbors": ["Icy Descent"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Wood"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Mage Island": {"territory": "Mage Island", "guild": "The Mage Legacy", "location": {"startX": 805, "startY": -2960, "endX": 983, "endY": -2787}, "neighbors": ["Durum Isles East", "Durum Isles Upper", "Half Moon Island", "Santa's Hideout"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Twain Mansion": {"territory": "Twain Mansion", "guild": "GlowOfDust", "location": {"startX": 95, "startY": -407, "endX": 140, "endY": -310}, "neighbors": ["Twain Lake"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Wood", "Fish"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Nesaak Plains South East": {"territory": "Nesaak Plains South East", "guild": "Fuzzy Spiders", "location": {"startX": 76, "startY": -757, "endX": 230, "endY": -660}, "neighbors": ["Bob's Tomb", "Nesaak Village", "Nesaak Plains South West"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nesaak Plains North East": {"territory": "Nesaak Plains North East", "guild": "Fuzzy Spiders", "location": {"startX": 110, "startY": -873, "endX": 240, "endY": -1035}, "neighbors": ["Nesaak Plains Lower North West", "Bob's Tomb", "Nesaak Plains Upper North West", "Nesaak Village", "Nesaak Transition"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nesaak Plains Upper North West": {"territory": "Nesaak Plains Upper North West", "guild": "Fuzzy Spiders", "location": {"startX": 70, "startY": -950, "endX": -140, "endY": -1060}, "neighbors": ["Elkurn", "Sanctuary Bridge", "Nesaak Plains Mid North West", "Nesaak Plains North East", "Nesaak Plains Lower North West"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nesaak Bridge Transition": {"territory": "Nesaak Bridge Transition", "guild": "Fuzzy Spiders", "location": {"startX": -115, "startY": -630, "endX": -240, "endY": -780}, "neighbors": ["Great Bridge Nesaak", "Nesaak Plains South West"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Great Bridge Nesaak": {"territory": "Great Bridge Nesaak", "guild": "Fuzzy Spiders", "location": {"startX": -275, "startY": -620, "endX": -390, "endY": -790}, "neighbors": ["Great Bridge Jungle", "Nesaak Bridge Transition"], "resources": ["Ore"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Jungle Lower": {"territory": "Jungle Lower", "guild": "ShadowFall", "location": {"startX": -515, "startY": -610, "endX": -600, "endY": -790}, "neighbors": ["Jungle Mid", "Dernel Jungle Lower", "Great Bridge Jungle"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Jungle Upper": {"territory": "Jungle Upper", "guild": "ShadowFall", "location": {"startX": -671, "startY": -779, "endX": -810, "endY": -630}, "neighbors": ["Jungle Mid"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Wood"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Temple of Legends": {"territory": "Temple of Legends", "guild": "ShadowFall", "location": {"startX": -631, "startY": -973, "endX": -745, "endY": -1093}, "neighbors": ["Jungle Lake", "City of Troms"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Rymek East Lower": {"territory": "Rymek East Lower", "guild": "WrathOfTheFallen", "location": {"startX": 1210, "startY": -1270, "endX": 1400, "endY": -1390}, "neighbors": ["Rymek West Lower", "Rymek East Mid"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Rymek East Upper": {"territory": "Rymek East Upper", "guild": "WrathOfTheFallen", "location": {"startX": 1479, "startY": -1579, "endX": 1210, "endY": -1780}, "neighbors": ["Rymek West Upper", "Rymek East Mid", "Desert East Lower"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Rymek West Mid": {"territory": "Rymek West Mid", "guild": "WrathOfTheFallen", "location": {"startX": 1211, "startY": -1410, "endX": 1000, "endY": -1530}, "neighbors": ["Rymek West Lower", "Rymek West Upper", "Rymek East Mid"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Crops"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Desert East Upper": {"territory": "Desert East Upper", "guild": "WrathOfTheFallen", "location": {"startX": 1260, "startY": -2170, "endX": 1450, "endY": -2370}, "neighbors": ["Desert East Mid"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Desert East Lower": {"territory": "Desert East Lower", "guild": "Paladins United", "location": {"startX": 1450, "startY": -2020, "endX": 1270, "endY": -1785}, "neighbors": ["Rymek East Upper", "Desert Mid-Lower", "Desert East Mid"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Desert Mid-Upper": {"territory": "Desert Mid-Upper", "guild": "Aequitas", "location": {"startX": 1195, "startY": -2120, "endX": 1060, "endY": -1935}, "neighbors": ["Desert Upper", "Desert Mid-Lower", "Almuj City", "Desert East Mid"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Desert Lower": {"territory": "Desert Lower", "guild": "Titans Valor", "location": {"startX": 1210, "startY": -1810, "endX": 1040, "endY": -1680}, "neighbors": ["Rymek West Upper", "Desert Mid-Lower", "Desert West Lower"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Mummy's Tomb": {"territory": "Mummy's Tomb", "guild": "Paladins United", "location": {"startX": 990, "startY": -2270, "endX": 1120, "endY": -2400}, "neighbors": ["Desert Upper"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": true}, "Desert West Lower": {"territory": "Desert West Lower", "guild": "Ultra Violet", "location": {"startX": 1040, "startY": -1681, "endX": 900, "endY": -1870}, "neighbors": ["Desert Lower", "Almuj City", "Desert Mid-Lower"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Savannah East Upper": {"territory": "Savannah East Upper", "guild": "Emorians", "location": {"startX": 750, "startY": -2060, "endX": 820, "endY": -1895}, "neighbors": ["Almuj City", "Savannah East Lower", "Savannah West Upper"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Savannah West Upper": {"territory": "Savannah West Upper", "guild": "Emorians", "location": {"startX": 750, "startY": -2060, "endX": 570, "endY": -1870}, "neighbors": ["Cathedral Harbour", "Savannah West Lower", "Bremminglar", "Savannah East Upper"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Lion Lair": {"territory": "Lion Lair", "guild": "Emorians", "location": {"startX": 890, "startY": -2140, "endX": 790, "endY": -2320}, "neighbors": ["Bremminglar"], "resources": ["Wood"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Plains Coast": {"territory": "Plains Coast", "guild": "Nerfuria", "location": {"startX": 5, "startY": -2270, "endX": -320, "endY": -2090}, "neighbors": ["North Farmers Valley", "Nemract Town", "Nemract Quarry"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nemract Plains West": {"territory": "Nemract Plains West", "guild": "Nerfuria", "location": {"startX": 5, "startY": -1960, "endX": -100, "endY": -1810}, "neighbors": ["Nivla Woods Edge", "Nemract Road", "Nemract Quarry", "Arachnid Route"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Ancient Nemract": {"territory": "Ancient Nemract", "guild": "Nerfuria", "location": {"startX": 152, "startY": -1832, "endX": 290, "endY": -1999}, "neighbors": ["Cathedral Harbour", "Nemract Road", "Nemract Cathedral", "Detlas Trail East Plains", "Detlas Trail West Plains"], "resources": ["Crops"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Cathedral Harbour": {"territory": "Cathedral Harbour", "guild": "Nerfuria", "location": {"startX": 385, "startY": -2180, "endX": 570, "endY": -1950}, "neighbors": ["Nemract Cathedral", "Ancient Nemract", "Durum Isles East", "Durum Isles Lower", "Savannah West Upper"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Rooster Island": {"territory": "Rooster Island", "guild": "The Mage Legacy", "location": {"startX": -128, "startY": -2448, "endX": -30, "endY": -2538}, "neighbors": ["Durum Isles Lower", "The Bear Zoo", "Nemract Town", "Selchar"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Selchar": {"territory": "Selchar", "guild": "The Mage Legacy", "location": {"startX": -100, "startY": -3070, "endX": 210, "endY": -3270}, "neighbors": ["Durum Isles Upper", "Durum Isles Lower", "Durum Isles Center", "Skiens Island", "Rooster Island"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Durum Isles Upper": {"territory": "Durum Isles Upper", "guild": "The Mage Legacy", "location": {"startX": 537, "startY": -2994, "endX": 595, "endY": -2924}, "neighbors": ["Nodguj Nation", "Durum Isles Center", "Mage Island", "Selchar"], "resources": ["Crops"], "storage": ["Emeralds", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Durum Isles Lower": {"territory": "Durum Isles Lower", "guild": "The Mage Legacy", "location": {"startX": 390, "startY": -2851, "endX": 347, "endY": -2791}, "neighbors": ["Rooster Island", "Selchar", "Durum Isles Center"], "resources": ["Wood"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Skiens Island": {"territory": "Skiens Island", "guild": "The Mage Legacy", "location": {"startX": 527, "startY": -3386, "endX": 297, "endY": -3644}, "neighbors": ["Maro Peaks", "Selchar", "Dead Island South West", "Nodguj Nation"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nodguj Nation": {"territory": "Nodguj Nation", "guild": "The Mage Legacy", "location": {"startX": 695, "startY": -3210, "endX": 880, "endY": -3440}, "neighbors": ["Dujgon Nation", "Skiens Island", "Mage Island", "Icy Island", "Santa's Hideout"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Dead Island South East": {"territory": "Dead Island South East", "guild": "The Mage Legacy", "location": {"startX": 870, "startY": -3920, "endX": 1000, "endY": -3810}, "neighbors": ["Dujgon Nation", "Regular Island", "Dead Island South West", "Dead Island North East"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Dead Island South West": {"territory": "Dead Island South West", "guild": "The Mage Legacy", "location": {"startX": 870, "startY": -3920, "endX": 745, "endY": -3810}, "neighbors": ["Dead Island North West", "Dujgon Nation", "Dead Island South East", "Skiens Island"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Volcano Upper": {"territory": "Volcano Upper", "guild": "The Mage Legacy", "location": {"startX": -929, "startY": -3831, "endX": -722, "endY": -3530}, "neighbors": ["Tree Island", "Lost Atoll", "Pirate Town", "Volcano Lower", "Light Peninsula"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Tree Island": {"territory": "Tree Island", "guild": "The Mage Legacy", "location": {"startX": -454, "startY": -3905, "endX": -323, "endY": -3766}, "neighbors": ["Volcano Upper", "Lost Atoll", "Light Peninsula"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Ternaves Plains Upper": {"territory": "Ternaves Plains Upper", "guild": "The Dark Phoenix", "location": {"startX": 770, "startY": -1675, "endX": 655, "endY": -1430}, "neighbors": ["Ternaves", "Savannah West Lower", "Detlas Savannah Transition", "Ternaves Plains Lower"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Crops", "Wood", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Mining Base Upper": {"territory": "Mining Base Upper", "guild": "The Dark Phoenix", "location": {"startX": 880, "startY": -1330, "endX": 670, "endY": -1225}, "neighbors": ["Mining Base Lower", "Abandoned Pass", "Ternaves Plains Lower"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nesaak Transition": {"territory": "Nesaak Transition", "guild": "Fuzzy Spiders", "location": {"startX": 330, "startY": -1040, "endX": 75, "endY": -1145}, "neighbors": ["Elkurn", "Nether Plains Lower", "Nesaak Plains North East", "Desolate Valley"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nether Plains Lower": {"territory": "Nether Plains Lower", "guild": "The Dark Phoenix", "location": {"startX": 75, "startY": -1145, "endX": 325, "endY": -1210}, "neighbors": ["Nesaak Transition", "Elkurn", "Nether Gate", "Desolate Valley"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Mine Base Plains": {"territory": "Mine Base Plains", "guild": "The Dark Phoenix", "location": {"startX": 550, "startY": -1190, "endX": 650, "endY": -1430}, "neighbors": ["Mining Base Lower", "Mining Base Upper", "The Silent Road", "Ternaves Plains Lower", "Plains Lake"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nether Plains Upper": {"territory": "Nether Plains Upper", "guild": "The Dark Phoenix", "location": {"startX": 115, "startY": -1360, "endX": 390, "endY": -1495}, "neighbors": ["Nether Gate", "Detlas Close Suburbs", "Detlas Suburbs", "Corrupted Road", "Detlas Far Suburbs", "Plains Lake"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Detlas Trail West Plains": {"territory": "Detlas Trail West Plains", "guild": "The Dark Phoenix", "location": {"startX": 25, "startY": -1660, "endX": 200, "endY": -1800}, "neighbors": ["Ancient Nemract", "Nemract Plains East", "Detlas Far Suburbs", "Detlas Suburbs"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Llevigar Gate East": {"territory": "Llevigar Gate East", "guild": "Eden", "location": {"startX": -1932, "startY": -4648, "endX": -2059, "endY": -4746}, "neighbors": ["Llevigar Farm Plains East", "Orc Road", "Llevigar", "Llevigar Gate West"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Llevigar Farm Plains East": {"territory": "Llevigar Farm Plains East", "guild": "Eden", "location": {"startX": -2059, "startY": -4747, "endX": -1931, "endY": -4828}, "neighbors": ["Llevigar Plains East Lower", "Llevigar Gate East", "Llevigar Farm Plains West", "Orc Road"], "resources": ["Crops"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Hive": {"territory": "Hive", "guild": "IceBlue Team", "location": {"startX": 381, "startY": -5413, "endX": 286, "endY": -5593}, "neighbors": ["Hive South", "Thanos Exit Upper"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Llevigar Plains East Lower": {"territory": "Llevigar Plains East Lower", "guild": "Eden", "location": {"startX": -2059, "startY": -4831, "endX": -1937, "endY": -4909}, "neighbors": ["Llevigar Plains West Lower", "Llevigar Farm Plains East", "Orc Lake", "Llevigar Plains East Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Llevigar Plains West Upper": {"territory": "Llevigar Plains West Upper", "guild": "Eden", "location": {"startX": -2060, "startY": -4912, "endX": -2171, "endY": -5000}, "neighbors": ["Llevigar Plains West Lower", "Llevigar Plains East Upper", "Swamp West Lower"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Swamp West Lower": {"territory": "Swamp West Lower", "guild": "Eden", "location": {"startX": -2060, "startY": -5003, "endX": -2171, "endY": -5075}, "neighbors": ["Swamp East Lower", "Llevigar Plains West Upper", "Swamp West Mid"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": true}, "Swamp East Mid": {"territory": "Swamp East Mid", "guild": "Eden", "location": {"startX": -1955, "startY": -5081, "endX": -2059, "endY": -5186}, "neighbors": ["Swamp East Lower", "Swamp Mountain Base", "Swamp East Mid-Upper", "Swamp West Mid"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Swamp West Mid-Upper": {"territory": "Swamp West Mid-Upper", "guild": "Eden", "location": {"startX": -2171, "startY": -5190, "endX": -2060, "endY": -5309}, "neighbors": ["Swamp East Mid-Upper", "Swamp West Upper", "Swamp West Mid"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Ore"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Swamp West Upper": {"territory": "Swamp West Upper", "guild": "Eden", "location": {"startX": -2171, "startY": -5312, "endX": -2060, "endY": -5419}, "neighbors": ["Swamp Mountain Transition Mid-Upper", "Swamp West Mid-Upper", "Swamp East Upper", "Swamp Mountain Transition Mid"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Swamp Dark Forest Transition Lower": {"territory": "Swamp Dark Forest Transition Lower", "guild": "Eden", "location": {"startX": -1519, "startY": -5134, "endX": -1631, "endY": -5288}, "neighbors": ["Swamp Dark Forest Transition Mid", "Fortress South", "Fortress North", "Swamp Lower", "Entrance to Olux", "Forgotten Path"], "resources": ["Ore"], "storage": [], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Swamp Dark Forest Transition Upper": {"territory": "Swamp Dark Forest Transition Upper", "guild": "Eden", "location": {"startX": -1519, "startY": -5492, "endX": -1626, "endY": -5607}, "neighbors": ["Swamp Dark Forest Transition Mid", "Taproot Descent", "Olux"], "resources": ["Ore"], "storage": [], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Entrance to Olux": {"territory": "Entrance to Olux", "guild": "Eden", "location": {"startX": -1649, "startY": -5246, "endX": -1764, "endY": -5396}, "neighbors": ["Swamp Dark Forest Transition Mid", "Swamp Plains Basin", "Olux", "Swamp Lower", "Swamp Dark Forest Transition Lower"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Swamp Mountain Base": {"territory": "Swamp Mountain Base", "guild": "BRIS", "location": {"startX": -1776, "startY": -5134, "endX": -1898, "endY": -5240}, "neighbors": ["Swamp Plains Basin", "Sunspark Camp", "Swamp East Mid", "Swamp Lower"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Swamp Mountain Transition Lower": {"territory": "Swamp Mountain Transition Lower", "guild": "Eden", "location": {"startX": -2173, "startY": -5466, "endX": -2128, "endY": -5603}, "neighbors": ["Swamp Mountain Transition Mid"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Swamp Mountain Transition Mid-Upper": {"territory": "Swamp Mountain Transition Mid-Upper", "guild": "Eden", "location": {"startX": -2065, "startY": -5466, "endX": -1982, "endY": -5603}, "neighbors": ["Swamp Mountain Transition Upper", "Swamp Mountain Transition Mid", "Swamp East Upper"], "resources": ["Fish"], "storage": [], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Quartz Mines South West": {"territory": "Quartz Mines South West", "guild": "Eden", "location": {"startX": -1776, "startY": -4352, "endX": -1609, "endY": -4524}, "neighbors": ["Llevigar", "Quartz Mines South East", "Quartz Mines North West"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Quartz Mines North West": {"territory": "Quartz Mines North West", "guild": "Eden", "location": {"startX": -1776, "startY": -4664, "endX": -1609, "endY": -4526}, "neighbors": ["Llevigar Farm", "Loamsprout Camp", "Quartz Mines North East", "Quartz Mines South West"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Sunspark Camp": {"territory": "Sunspark Camp", "guild": "BRIS", "location": {"startX": -1930, "startY": -5099, "endX": -1816, "endY": -4968}, "neighbors": ["Swamp Mountain Base", "Meteor Crater", "Orc Lake", "Llevigar Plains East Upper", "Swamp East Lower"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Orc Road": {"territory": "Orc Road", "guild": "Eden", "location": {"startX": -1927, "startY": -4852, "endX": -1815, "endY": -4700}, "neighbors": ["Llevigar Farm Plains East", "Orc Lake", "Loamsprout Camp"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Sablestone Camp": {"territory": "Sablestone Camp", "guild": "BRIS", "location": {"startX": -1800, "startY": -4962, "endX": -1695, "endY": -4854}, "neighbors": ["Meteor Crater", "Orc Lake", "Goblin Plains West", "Loamsprout Camp"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Iron Road": {"territory": "Iron Road", "guild": "BRIS", "location": {"startX": -1688, "startY": -5099, "endX": -1608, "endY": -4969}, "neighbors": ["Goblin Plains West", "Meteor Crater", "Swamp Lower", "Forgotten Path"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Llevigar Farm": {"territory": "Llevigar Farm", "guild": "Eden", "location": {"startX": -1663, "startY": -4849, "endX": -1556, "endY": -4714}, "neighbors": ["Goblin Plains East", "Pre-Light Forest Transition", "Quartz Mines North East", "Goblin Plains West", "Quartz Mines North West", "Loamsprout Camp"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Goblin Plains East": {"territory": "Goblin Plains East", "guild": "Eden", "location": {"startX": -1603, "startY": -4963, "endX": -1527, "endY": -4853}, "neighbors": ["Pre-Light Forest Transition", "Goblin Plains West", "Llevigar Farm", "Forgotten Path"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Leadin Fortress": {"territory": "Leadin Fortress", "guild": "Eden", "location": {"startX": -1403, "startY": -4869, "endX": -1284, "endY": -4748}, "neighbors": ["Pre-Light Forest Transition", "Road To Light Forest", "Orc Battlegrounds"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Efilim Village": {"territory": "Efilim Village", "guild": "Wheres The Finish", "location": {"startX": -1020, "startY": -4943, "endX": -1134, "endY": -5078}, "neighbors": ["Efilim South Plains", "Twisted Housing", "Efilim East Plains"], "resources": ["Ore"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Efilim East Plains": {"territory": "Efilim East Plains", "guild": "Wheres The Finish", "location": {"startX": -1014, "startY": -4944, "endX": -949, "endY": -5079}, "neighbors": ["Efilim South East Plains", "Efilim Village"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Light Forest North Entrance": {"territory": "Light Forest North Entrance", "guild": "Wheres The Finish", "location": {"startX": -1134, "startY": -4708, "endX": -1030, "endY": -4845}, "neighbors": ["Efilim South Plains", "Light Forest West Upper", "Light Forest Entrance"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Light Forest South Entrance": {"territory": "Light Forest South Entrance", "guild": "The Mage Legacy", "location": {"startX": -1134, "startY": -4548, "endX": -1038, "endY": -4426}, "neighbors": ["Heavenly Ingress", "Light Forest Entrance", "Light Forest West Lower"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Wood"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Light Forest South Exit": {"territory": "Light Forest South Exit", "guild": "The Mage Legacy", "location": {"startX": -646, "startY": -4699, "endX": -733, "endY": -4559}, "neighbors": ["Light Forest North Exit", "Mantis Nest"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Light Forest West Lower": {"territory": "Light Forest West Lower", "guild": "The Mage Legacy", "location": {"startX": -1014, "startY": -4428, "endX": -929, "endY": -4549}, "neighbors": ["Light Forest West Mid", "Light Forest South Entrance", "Hobbit River"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Light Forest West Upper": {"territory": "Light Forest West Upper", "guild": "Wheres The Finish", "location": {"startX": -1014, "startY": -4708, "endX": -935, "endY": -4845}, "neighbors": ["Efilim South East Plains", "Light Forest West Mid", "Light Forest East Mid", "Light Forest North Entrance"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Light Forest East Mid": {"territory": "Light Forest East Mid", "guild": "Wheres The Finish", "location": {"startX": -834, "startY": -4839, "endX": -926, "endY": -4708}, "neighbors": ["Light Forest West Upper", "Light Forest Canyon", "Light Forest East Lower"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Hobbit River": {"territory": "Hobbit River", "guild": "The Mage Legacy", "location": {"startX": -926, "startY": -4550, "endX": -806, "endY": -4428}, "neighbors": ["Aldorei Valley West Entrance", "Light Forest East Lower", "Light Forest West Lower", "Light Peninsula"], "resources": ["Ore"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Light Forest Canyon": {"territory": "Light Forest Canyon", "guild": "The Mage Legacy", "location": {"startX": -738, "startY": -4708, "endX": -818, "endY": -4840}, "neighbors": ["Light Forest East Mid", "Light Forest North Exit", "Mantis Nest"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Lone Farmstead": {"territory": "Lone Farmstead", "guild": "Wheres The Finish", "location": {"startX": -942, "startY": -5227, "endX": -1050, "endY": -5116}, "neighbors": ["Gelibord", "Twisted Housing", "Abandoned Manor"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Gelibord Corrupted Farm": {"territory": "Gelibord Corrupted Farm", "guild": "Eden", "location": {"startX": -1056, "startY": -5355, "endX": -1179, "endY": -5448}, "neighbors": ["Gelibord Castle", "Gelibord", "Twisted Housing", "Taproot Descent"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Taproot Descent": {"territory": "Taproot Descent", "guild": "Eden", "location": {"startX": -1425, "startY": -5407, "endX": -1194, "endY": -5589}, "neighbors": ["Swamp Dark Forest Transition Mid", "Gelibord Castle", "Swamp Dark Forest Transition Upper", "Fortress North", "Gelibord Corrupted Farm"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Fortress South": {"territory": "Fortress South", "guild": "Eden", "location": {"startX": -1460, "startY": -5025, "endX": -1272, "endY": -5210}, "neighbors": ["Fortress North", "Mansion of Insanity", "Swamp Dark Forest Transition Lower", "Orc Battlegrounds"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Twisted Housing": {"territory": "Twisted Housing", "guild": "Eden", "location": {"startX": -1133, "startY": -5116, "endX": -1053, "endY": -5272}, "neighbors": ["Gelibord", "Gelibord Corrupted Farm", "Efilim Village", "Mansion of Insanity", "Lone Farmstead"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Viscera Pits West": {"territory": "Viscera Pits West", "guild": "Wheres The Finish", "location": {"startX": -771, "startY": -5504, "endX": -899, "endY": -5412}, "neighbors": ["Viscera Pits East", "Entrance to Kander", "Lexdales Prison", "Twisted Ridge"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Abandoned Manor": {"territory": "Abandoned Manor", "guild": "Wheres The Finish", "location": {"startX": -896, "startY": -5232, "endX": -802, "endY": -5102}, "neighbors": ["Lone Farmstead", "Entrance to Kander", "Mesquis Tower", "Kander Mines"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Kander Mines": {"territory": "Kander Mines", "guild": "Wheres The Finish", "location": {"startX": -785, "startY": -5229, "endX": -725, "endY": -5102}, "neighbors": ["Abandoned Manor", "Mesquis Tower", "Dark Forest Village", "Path to Talor"], "resources": ["Wood"], "storage": ["Emeralds", "Wood", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Viscera Pits East": {"territory": "Viscera Pits East", "guild": "Wheres The Finish", "location": {"startX": -659, "startY": -5424, "endX": -766, "endY": -5508}, "neighbors": ["Viscera Pits West", "Lexdale", "Path to Talor"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Old Crossroads South": {"territory": "Old Crossroads South", "guild": "Wheres The Finish", "location": {"startX": -648, "startY": -5311, "endX": -567, "endY": -5234}, "neighbors": ["Cinfras Outskirts", "Dark Forest Village", "Old Crossroads North", "Path to Talor", "Fungal Grove"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Lexdale": {"territory": "Lexdale", "guild": "Wheres The Finish", "location": {"startX": -650, "startY": -5511, "endX": -562, "endY": -5406}, "neighbors": ["Decayed Basin", "Viscera Pits East", "Heart of Decay", "Old Crossroads North"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Decayed Basin": {"territory": "Decayed Basin", "guild": "Wheres The Finish", "location": {"startX": -471, "startY": -5405, "endX": -549, "endY": -5512}, "neighbors": ["Mushroom Hill", "Lexdale", "Heart of Decay", "Fungal Grove"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Cinfras Entrance": {"territory": "Cinfras Entrance", "guild": "Aequitas", "location": {"startX": -555, "startY": -4996, "endX": -717, "endY": -4868}, "neighbors": ["Light Forest North Exit", "Mesquis Tower", "Cinfras", "Path to Cinfras"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Fallen Village": {"territory": "Fallen Village", "guild": "ChinaNumberOne", "location": {"startX": -288, "startY": -5409, "endX": -392, "endY": -5294}, "neighbors": ["Fungal Grove", "Dark Forest Cinfras Transition", "Gylia Lake North West", "Mushroom Hill"], "resources": ["Wood"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Guild Hall": {"territory": "Guild Hall", "guild": "Aequitas", "location": {"startX": -349, "startY": -5093, "endX": -137, "endY": -4814}, "neighbors": ["Cinfras"], "resources": ["Ore"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Cinfras's Small Farm": {"territory": "Cinfras's Small Farm", "guild": "Aequitas", "location": {"startX": -224, "startY": -4793, "endX": -130, "endY": -4643}, "neighbors": ["Cinfras County Mid-Lower", "Aldorei Lowlands", "Aldorei Valley South Entrance", "Cinfras County Lower"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Cinfras County Mid-Lower": {"territory": "Cinfras County Mid-Lower", "guild": "Aequitas", "location": {"startX": -127, "startY": -4761, "endX": 3, "endY": -4895}, "neighbors": ["Cinfras County Lower", "Cinfras's Small Farm", "Cinfras County Mid-Upper"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Cinfras County Upper": {"territory": "Cinfras County Upper", "guild": "Aequitas", "location": {"startX": -127, "startY": -5155, "endX": 3, "endY": -5051}, "neighbors": ["Path To Thanos", "Gylia Lake South East", "Cinfras County Mid-Upper"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Gylia Lake South West": {"territory": "Gylia Lake South West", "guild": "Aequitas", "location": {"startX": -130, "startY": -5173, "endX": -241, "endY": -5271}, "neighbors": ["Dark Forest Cinfras Transition", "Gylia Lake North West", "Gylia Lake South East"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Gylia Lake North East": {"territory": "Gylia Lake North East", "guild": "ChinaNumberOne", "location": {"startX": -128, "startY": -5416, "endX": 21, "endY": -5273}, "neighbors": ["Gylia Lake South East", "Gylia Lake North West", "Military Base", "Gert Camp"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Jitak's Farm": {"territory": "Jitak's Farm", "guild": "ChinaNumberOne", "location": {"startX": -122, "startY": -5430, "endX": -218, "endY": -5567}, "neighbors": ["Gylia Lake North West", "Gert Camp", "Mushroom Hill"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Aldorei Valley Mid": {"territory": "Aldorei Valley Mid", "guild": "Aequitas", "location": {"startX": -322, "startY": -4499, "endX": -557, "endY": -4395}, "neighbors": ["Aldorei Valley Upper", "Aldorei Valley Lower"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Aldorei's River": {"territory": "Aldorei's River", "guild": "Aequitas", "location": {"startX": -437, "startY": -4656, "endX": -338, "endY": -4756}, "neighbors": ["Aldorei Lowlands", "Cinfras"], "resources": ["Wood"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Aldorei's North Exit": {"territory": "Aldorei's North Exit", "guild": "Aequitas", "location": {"startX": -127, "startY": -4639, "endX": 3, "endY": -4509}, "neighbors": ["Path To The Arch", "Aldorei Valley South Entrance", "Cinfras County Lower"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Path To The Arch": {"territory": "Path To The Arch", "guild": "Aequitas", "location": {"startX": 35, "startY": -4521, "endX": 107, "endY": -4641}, "neighbors": ["Aldorei's Arch", "Aldorei's North Exit", "Ghostly Path"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Burning Farm": {"territory": "Burning Farm", "guild": "Aequitas", "location": {"startX": 107, "startY": -4755, "endX": 35, "endY": -4857}, "neighbors": ["Burning Airship", "Ghostly Path"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Cinfras Thanos Transition": {"territory": "Cinfras Thanos Transition", "guild": "Aequitas", "location": {"startX": 98, "startY": -4957, "endX": 35, "endY": -5046}, "neighbors": ["Path To Thanos", "Burning Airship", "Cinfras County Mid-Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Path To Thanos": {"territory": "Path To Thanos", "guild": "Aequitas", "location": {"startX": 98, "startY": -5049, "endX": 35, "endY": -5149}, "neighbors": ["Cinfras Thanos Transition", "Thanos"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Military Base": {"territory": "Military Base", "guild": "ChinaNumberOne", "location": {"startX": 104, "startY": -5393, "endX": 166, "endY": -5518}, "neighbors": ["Path To Military Base", "Military Base Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Military Base Lower": {"territory": "Military Base Lower", "guild": "ChinaNumberOne", "location": {"startX": 244, "startY": -5407, "endX": 168, "endY": -5315}, "neighbors": ["Military Base Upper", "Path To Ozoth's Spire Lower", "Thanos Valley West"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Path To Ozoth's Spire Mid": {"territory": "Path To Ozoth's Spire Mid", "guild": "IceBlue Team", "location": {"startX": 199, "startY": -5164, "endX": 260, "endY": -5042}, "neighbors": ["Path To Ozoth's Spire Upper", "Canyon Walk Way"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Bandit Cave Lower": {"territory": "Bandit Cave Lower", "guild": "IceBlue Team", "location": {"startX": 111, "startY": -5043, "endX": 194, "endY": -4958}, "neighbors": ["Path To Ozoth's Spire Upper", "Canyon Valley South"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Canyon Entrance Waterfall": {"territory": "Canyon Entrance Waterfall", "guild": "IceBlue Team", "location": {"startX": 110, "startY": -4869, "endX": 194, "endY": -4741}, "neighbors": ["Canyon Path North West", "Canyon Path North Mid"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Canyon Path South East": {"territory": "Canyon Path South East", "guild": "TheNoLifes", "location": {"startX": 194, "startY": -4649, "endX": 115, "endY": -4521}, "neighbors": ["Canyon Lower South East", "Canyon Path North West"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Canyon Upper North West": {"territory": "Canyon Upper North West", "guild": "TheNoLifes", "location": {"startX": 200, "startY": -4380, "endX": 265, "endY": -4518}, "neighbors": ["Canyon Waterfall North", "Aldorei's Arch"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Canyon Path South West": {"territory": "Canyon Path South West", "guild": "IceBlue Team", "location": {"startX": 265, "startY": -4652, "endX": 200, "endY": -4741}, "neighbors": ["Canyon Lower South East", "Canyon Path North West"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Bandit Camp Exit": {"territory": "Bandit Camp Exit", "guild": "TheNoLifes", "location": {"startX": 264, "startY": -4877, "endX": 203, "endY": -4971}, "neighbors": ["Canyon Path North Mid", "Canyon Valley South"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Thanos Valley West": {"territory": "Thanos Valley West", "guild": "ChinaNumberOne", "location": {"startX": 250, "startY": -5401, "endX": 311, "endY": -5315}, "neighbors": ["Military Base Lower"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Canyon Walk Way": {"territory": "Canyon Walk Way", "guild": "IceBlue Team", "location": {"startX": 271, "startY": -5165, "endX": 338, "endY": -5041}, "neighbors": ["Canyon Mountain East", "Bandits Toll", "Path To Ozoth's Spire Mid"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Canyon Mountain South": {"territory": "Canyon Mountain South", "guild": "TheNoLifes", "location": {"startX": 271, "startY": -4946, "endX": 337, "endY": -4857}, "neighbors": ["Canyon Waterfall Mid North", "Krolton's Cave"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Canyon Fortress": {"territory": "Canyon Fortress", "guild": "TheNoLifes", "location": {"startX": 271, "startY": -4739, "endX": 338, "endY": -4630}, "neighbors": ["Canyon Waterfall Mid North", "Valley of the Lost"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Ore"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Canyon Dropoff": {"territory": "Canyon Dropoff", "guild": "TheNoLifes", "location": {"startX": 334, "startY": -4518, "endX": 269, "endY": -4395}, "neighbors": ["Cliff Side of the Lost", "Mountain Path"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Bandits Toll": {"territory": "Bandits Toll", "guild": "IceBlue Team", "location": {"startX": 439, "startY": -5038, "endX": 345, "endY": -5181}, "neighbors": ["Canyon Walk Way", "Wizard Tower North", "Cliffside Valley", "Thanos Exit Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Mountain Path": {"territory": "Mountain Path", "guild": "TheNoLifes", "location": {"startX": 334, "startY": -4393, "endX": 276, "endY": -4314}, "neighbors": ["Canyon Dropoff"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": true}, "Cliff Side of the Lost": {"territory": "Cliff Side of the Lost", "guild": "TheNoLifes", "location": {"startX": 340, "startY": -4395, "endX": 437, "endY": -4508}, "neighbors": ["Canyon Of The Lost", "Valley of the Lost", "Canyon Survivor", "Canyon Dropoff", "Mountain Edge"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Temple of the Lost East": {"territory": "Temple of the Lost East", "guild": "TheNoLifes", "location": {"startX": 440, "startY": -4672, "endX": 341, "endY": -4838}, "neighbors": ["Valley of the Lost", "Krolton's Cave"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Hive South": {"territory": "Hive South", "guild": "IceBlue Team", "location": {"startX": 440, "startY": -5315, "endX": 560, "endY": -5449}, "neighbors": ["Chained House", "Cherry Blossom Forest", "Canyon High Path", "Hive", "Thanos Exit Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Cliffside Waterfall": {"territory": "Cliffside Waterfall", "guild": "IceBlue Team", "location": {"startX": 440, "startY": -5183, "endX": 563, "endY": -5080}, "neighbors": ["Canyon High Path"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Air Temple Lower": {"territory": "Air Temple Lower", "guild": "IceBlue Team", "location": {"startX": 445, "startY": -4972, "endX": 563, "endY": -4835}, "neighbors": ["Air Temple Upper", "Krolton's Cave", "Cliffside Valley"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Cliffside Lake": {"territory": "Cliffside Lake", "guild": "TheNoLifes", "location": {"startX": 445, "startY": -4689, "endX": 570, "endY": -4568}, "neighbors": ["Canyon Of The Lost", "Cliffside Passage"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Kandon-Beda": {"territory": "Kandon-Beda", "guild": "TheNoLifes", "location": {"startX": 607, "startY": -4579, "endX": 760, "endY": -4372}, "neighbors": ["Canyon Of The Lost"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Cliffside Passage": {"territory": "Cliffside Passage", "guild": "TheNoLifes", "location": {"startX": 699, "startY": -4817, "endX": 572, "endY": -4691}, "neighbors": ["Cliffside Lake", "Cliffside Passage North"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Entrance to Thesead North": {"territory": "Entrance to Thesead North", "guild": "TheNoLifes", "location": {"startX": 572, "startY": -4935, "endX": 700, "endY": -5028}, "neighbors": ["Entrance to Thesead South", "Cliffside Passage North"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Chained House": {"territory": "Chained House", "guild": "IceBlue Team", "location": {"startX": 574, "startY": -5375, "endX": 699, "endY": -5242}, "neighbors": ["Cherry Blossom Forest", "Entrance to Thesead South", "Thesead Suburbs", "Hive South"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Ranol's Farm": {"territory": "Ranol's Farm", "guild": "IceBlue Team", "location": {"startX": 810, "startY": -5551, "endX": 701, "endY": -5377}, "neighbors": ["Thesead Suburbs", "Cherry Blossom Forest", "Eltom"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Thesead": {"territory": "Thesead", "guild": "IceBlue Team", "location": {"startX": 747, "startY": -5104, "endX": 872, "endY": -4964}, "neighbors": ["Entrance to Thesead South", "Thesead Suburbs"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Eltom": {"territory": "Eltom", "guild": "Avicia", "location": {"startX": 1029, "startY": -5581, "endX": 828, "endY": -5376}, "neighbors": ["Ranol's Farm", "Entrance to Rodoroc"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Lava Lake": {"territory": "Lava Lake", "guild": "Avicia", "location": {"startX": 1531, "startY": -5553, "endX": 1387, "endY": -5369}, "neighbors": ["Active Volcano", "Volcanic Slope", "Molten Heights Portal"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Crater Descent": {"territory": "Crater Descent", "guild": "Avicia", "location": {"startX": 1383, "startY": -5238, "endX": 1230, "endY": -5067}, "neighbors": ["Molten Heights Portal", "Lava Lake Bridge", "Rodoroc"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Volcanic Slope": {"territory": "Volcanic Slope", "guild": "Avicia", "location": {"startX": 1531, "startY": -5637, "endX": 1221, "endY": -5555}, "neighbors": ["Lava Lake", "Active Volcano"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Ore"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Temple Island": {"territory": "Temple Island", "guild": "Avicia", "location": {"startX": 991, "startY": -4643, "endX": 1124, "endY": -4750}, "neighbors": ["Central Islands", "Kandon Ridge", "Swamp Island", "Ahmsord", "Snail Island"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Dernel Jungle Lower": {"territory": "Dernel Jungle Lower", "guild": "ShadowFall", "location": {"startX": -737, "startY": -317, "endX": -502, "endY": -530}, "neighbors": ["Jungle Lower", "Dernel Jungle Mid"], "resources": ["Fish"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Dernel Jungle Upper": {"territory": "Dernel Jungle Upper", "guild": "ShadowFall", "location": {"startX": -970, "startY": -795, "endX": -900, "endY": -547}, "neighbors": ["Dernel Jungle Mid"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": true}, "Corkus Castle": {"territory": "Corkus Castle", "guild": "Guardian of Wynn", "location": {"startX": -1555, "startY": -2968, "endX": -1452, "endY": -2835}, "neighbors": ["Corkus City"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Fallen Factory": {"territory": "Fallen Factory", "guild": "Guardian of Wynn", "location": {"startX": -1579, "startY": -2662, "endX": -1681, "endY": -2518}, "neighbors": ["Corkus City South", "Corkus Sea Port", "Factory Entrance", "Ruined Houses"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Corkus City Mine": {"territory": "Corkus City Mine", "guild": "Guardian of Wynn", "location": {"startX": -1394, "startY": -2750, "endX": -1466, "endY": -2831}, "neighbors": ["Corkus Statue", "Corkus Sea Cove", "Road To Mine"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Factory Entrance": {"territory": "Factory Entrance", "guild": "Guardian of Wynn", "location": {"startX": -1683, "startY": -2571, "endX": -1798, "endY": -2730}, "neighbors": ["Corkus City South", "Corkus Forest South", "Fallen Factory", "Ruined Houses"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Corkus Forest North": {"territory": "Corkus Forest North", "guild": "Guardian of Wynn", "location": {"startX": -1888, "startY": -2862, "endX": -1682, "endY": -2995}, "neighbors": ["Corkus City South", "Corkus Forest South", "Corkus City", "Corkus Mountain"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Avos Workshop": {"territory": "Avos Workshop", "guild": "Guardian of Wynn", "location": {"startX": -1681, "startY": -3178, "endX": -1888, "endY": -3375}, "neighbors": ["Avos Temple"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Corkus Countryside": {"territory": "Corkus Countryside", "guild": "Guardian of Wynn", "location": {"startX": -1503, "startY": -3191, "endX": -1680, "endY": -3012}, "neighbors": ["Corkus Outskirts", "Corkus Mountain", "Corkus City", "Avos Temple"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Ruined Houses": {"territory": "Ruined Houses", "guild": "Guardian of Wynn", "location": {"startX": -1684, "startY": -2569, "endX": -1793, "endY": -2453}, "neighbors": ["Corkus Sea Port", "Fallen Factory", "Factory Entrance"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Avos Temple": {"territory": "Avos Temple", "guild": "Guardian of Wynn", "location": {"startX": -1526, "startY": -3225, "endX": -1378, "endY": -3426}, "neighbors": ["Avos Workshop", "Bloody Beach"], "resources": ["Fish"], "storage": ["Emeralds", "Fish", "Ore", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Corkus Outskirts": {"territory": "Corkus Outskirts", "guild": "Guardian of Wynn", "location": {"startX": -1502, "startY": -2976, "endX": -1230, "endY": -3224}, "neighbors": ["Bloody Beach", "Corkus Statue", "Corkus Countryside"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Sky Castle": {"territory": "Sky Castle", "guild": "Avicia", "location": {"startX": 954, "startY": -4425, "endX": 854, "endY": -4340}, "neighbors": ["Path to Ahmsord Lower"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Path to Ahmsord Upper": {"territory": "Path to Ahmsord Upper", "guild": "Avicia", "location": {"startX": 885, "startY": -4571, "endX": 779, "endY": -4639}, "neighbors": ["Path to Ahmsord Lower", "Kandon Ridge"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Old Coal Mine": {"territory": "Old Coal Mine", "guild": "Avicia", "location": {"startX": 719, "startY": -4778, "endX": 885, "endY": -4900}, "neighbors": ["Kandon Ridge"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Ore", "Wood"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Astraulus' Tower": {"territory": "Astraulus' Tower", "guild": "Avicia", "location": {"startX": 1102, "startY": -5016, "endX": 1250, "endY": -4916}, "neighbors": ["Dragonling Nests", "Swamp Island"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Ahmsord Outskirts": {"territory": "Ahmsord Outskirts", "guild": "Avicia", "location": {"startX": 1336, "startY": -4893, "endX": 1179, "endY": -4730}, "neighbors": ["Wybel Island", "Angel Refuge", "Central Islands", "Swamp Island"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Angel Refuge": {"territory": "Angel Refuge", "guild": "Avicia", "location": {"startX": 1354, "startY": -4727, "endX": 1484, "endY": -4877}, "neighbors": ["Ahmsord Outskirts", "Molten Reach"], "resources": ["Fish"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Central Islands": {"territory": "Central Islands", "guild": "Avicia", "location": {"startX": 1250, "startY": -4718, "endX": 1183, "endY": -4535}, "neighbors": ["Temple Island", "Ahmsord Outskirts", "Ahmsord", "Wybel Island", "Sky Island Ascent"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Sky Falls": {"territory": "Sky Falls", "guild": "Avicia", "location": {"startX": 1380, "startY": -4458, "endX": 1466, "endY": -4653}, "neighbors": ["Frozen Fort", "Wybel Island", "Sky Island Ascent"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Raider's Base Lower": {"territory": "Raider's Base Lower", "guild": "Avicia", "location": {"startX": 1558, "startY": -4316, "endX": 1305, "endY": -4253}, "neighbors": ["Raider's Base Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Jofash Docks": {"territory": "Jofash Docks", "guild": "Avicia", "location": {"startX": 1178, "startY": -4175, "endX": 1445, "endY": -4012}, "neighbors": ["Regular Island", "Jofash Tunnel", "Dead Island North East"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Lusuco": {"territory": "Lusuco", "guild": "Fuzzy Spiders", "location": {"startX": -267, "startY": -348, "endX": -91, "endY": -250}, "neighbors": ["Icy Descent"], "resources": ["Crops"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Phinas Farm": {"territory": "Phinas Farm", "guild": "Guardian of Wynn", "location": {"startX": -1633, "startY": -2162, "endX": -1842, "endY": -2058}, "neighbors": ["Royal Gate", "Lighthouse Plateau"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Cinfras Outskirts": {"territory": "Cinfras Outskirts", "guild": "Aequitas", "location": {"startX": -392, "startY": -5116, "endX": -534, "endY": -5278}, "neighbors": ["Dark Forest Cinfras Transition", "Old Crossroads South", "Dark Forest Village", "Cinfras", "Fungal Grove"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Llevigar": {"territory": "Llevigar", "guild": "Eden", "location": {"startX": -1800, "startY": -4643, "endX": -2171, "endY": -4405}, "neighbors": ["Quartz Mines South West", "Llevigar Gate East", "Llevigar Entrance"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Herb Cave": {"territory": "Herb Cave", "guild": "ShadowFall", "location": {"startX": -448, "startY": -813, "endX": -557, "endY": -876}, "neighbors": ["Great Bridge Jungle"], "resources": ["Crops"], "storage": ["Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Icy Island": {"territory": "Icy Island", "guild": "The Mage Legacy", "location": {"startX": 1001, "startY": -3274, "endX": 1172, "endY": -3430}, "neighbors": ["Dujgon Nation", "Regular Island", "Nodguj Nation", "Santa's Hideout"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Fleris Trail": {"territory": "Fleris Trail", "guild": "Eden", "location": {"startX": -1390, "startY": -4594, "endX": -1254, "endY": -4351}, "neighbors": ["Road To Light Forest"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": true}, "Abandoned Pass": {"territory": "Abandoned Pass", "guild": "The Dark Phoenix", "location": {"startX": 881, "startY": -1225, "endX": 1019, "endY": -1380}, "neighbors": ["Mining Base Upper", "Ternaves Plains Lower"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Southern Outpost": {"territory": "Southern Outpost", "guild": "Guardian of Wynn", "location": {"startX": -1258, "startY": -2204, "endX": -1444, "endY": -2306}, "neighbors": ["Legendary Island", "Lighthouse Plateau"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Corkus Sea Cove": {"territory": "Corkus Sea Cove", "guild": "Guardian of Wynn", "location": {"startX": -1578, "startY": -2662, "endX": -1330, "endY": -2513}, "neighbors": ["Fallen Factory", "Corkus Sea Port", "Corkus City Mine", "Road To Mine"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "The Broken Road": {"territory": "The Broken Road", "guild": "Profession Heaven", "location": {"startX": 686, "startY": -923, "endX": 493, "endY": -783}, "neighbors": ["Worm Tunnel", "The Silent Road"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Grey Ruins": {"territory": "Grey Ruins", "guild": "Profession Heaven", "location": {"startX": 683, "startY": -619, "endX": 477, "endY": -515}, "neighbors": ["Worm Tunnel", "Forgotten Town"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Forest of Eyes": {"territory": "Forest of Eyes", "guild": "Profession Heaven", "location": {"startX": 813, "startY": -333, "endX": 1043, "endY": -504}, "neighbors": ["Forgotten Town", "Sinister Forest"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Lutho": {"territory": "Lutho", "guild": "Profession Heaven", "location": {"startX": 936, "startY": -654, "endX": 1027, "endY": -754}, "neighbors": ["Sinister Forest", "Paths of Sludge"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Toxic Drip": {"territory": "Toxic Drip", "guild": "Profession Heaven", "location": {"startX": 893, "startY": -876, "endX": 1086, "endY": -992}, "neighbors": ["Toxic Caves", "Gateway to Nothing", "Paths of Sludge"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Gateway to Nothing": {"territory": "Gateway to Nothing", "guild": "Profession Heaven", "location": {"startX": 1120, "startY": -882, "endX": 1244, "endY": -1058}, "neighbors": ["Void Valley", "Final Step", "Toxic Drip"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Final Step": {"territory": "Final Step", "guild": "Profession Heaven", "location": {"startX": 1388, "startY": -869, "endX": 1254, "endY": -932}, "neighbors": ["Bizarre Passage", "Gateway to Nothing"], "resources": ["Crops"], "storage": ["Emeralds", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "The Gate": {"territory": "The Gate", "guild": "Profession Heaven", "location": {"startX": 1350, "startY": -520, "endX": 1265, "endY": -410}, "neighbors": ["Bizarre Passage"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": true}, "Luminous Plateau": {"territory": "Luminous Plateau", "guild": "Idiot Co", "location": {"startX": -894, "startY": -5957, "endX": -962, "endY": -6066}, "neighbors": ["Field of Life"], "resources": ["Wood"], "storage": [], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Primal Fen": {"territory": "Primal Fen", "guild": "Idiot Co", "location": {"startX": -894, "startY": -6244, "endX": -1026, "endY": -6066}, "neighbors": ["Field of Life"], "resources": ["Ore"], "storage": [], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Otherwordly Monolith": {"territory": "Otherwordly Monolith", "guild": "Idiot Co", "location": {"startX": -775, "startY": -6164, "endX": -662, "endY": -6003}, "neighbors": ["Azure Frontier", "Path to Light"], "resources": ["Fish"], "storage": [], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nexus of Light": {"territory": "Nexus of Light", "guild": "Idiot Co", "location": {"startX": -645, "startY": -6384, "endX": -855, "endY": -6561}, "neighbors": ["Azure Frontier"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": [], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Nivla Woods Entrance": {"territory": "Nivla Woods Entrance", "guild": "HackForums", "location": {"startX": -435, "startY": -1530, "endX": -372, "endY": -1652}, "neighbors": ["Road to Time Valley", "Emerald Trail", "Plains", "Nivla Woods"], "resources": ["Wood"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Ragni East Suburbs": {"territory": "Ragni East Suburbs", "guild": "ShadowFall", "location": {"startX": -747, "startY": -1653, "endX": -616, "endY": -1776}, "neighbors": ["Ragni Main Entrance", "Ragni Plains", "Maltic Plains"], "resources": ["Crops"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Maltic": {"territory": "Maltic", "guild": "ShadowFall", "location": {"startX": -604, "startY": -1945, "endX": -475, "endY": -1884}, "neighbors": ["Ragni Plains", "Coastal Trail", "Maltic Plains", "Maltic Coast", "South Farmers Valley"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Pigmen Ravines": {"territory": "Pigmen Ravines", "guild": "ShadowFall", "location": {"startX": -784, "startY": -1398, "endX": -617, "endY": -1317}, "neighbors": ["Pigmen Ravines Entrance", "Abandoned Farm"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Abandoned Farm": {"territory": "Abandoned Farm", "guild": "ShadowFall", "location": {"startX": -577, "startY": -1395, "endX": -478, "endY": -1335}, "neighbors": ["Pigmen Ravines", "Time Valley"], "resources": ["Crops"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nemract Quarry": {"territory": "Nemract Quarry", "guild": "Nerfuria", "location": {"startX": -105, "startY": -2069, "endX": 20, "endY": -1960}, "neighbors": ["Plains Coast", "Nemract Road", "Nemract Plains West"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "North Nivla Woods": {"territory": "North Nivla Woods", "guild": "Nerfuria", "location": {"startX": -194, "startY": -1632, "endX": -86, "endY": -1800}, "neighbors": ["Nivla Woods Edge", "Nivla Woods Exit", "Plains"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nether Gate": {"territory": "Nether Gate", "guild": "The Dark Phoenix", "location": {"startX": 106, "startY": -1341, "endX": 342, "endY": -1222}, "neighbors": ["Nether Plains Upper", "Corrupted Road", "Nether Plains Lower", "Plains Lake"], "resources": ["Crops"], "storage": ["Emeralds", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Detlas": {"territory": "Detlas", "guild": "The Dark Phoenix", "location": {"startX": 402, "startY": -1657, "endX": 536, "endY": -1518}, "neighbors": ["Detlas Savannah Transition", "Detlas Close Suburbs", "Detlas Trail East Plains"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Nivla Woods Edge": {"territory": "Nivla Woods Edge", "guild": "The Dark Phoenix", "location": {"startX": -74, "startY": -1777, "endX": -3, "endY": -1485}, "neighbors": ["North Nivla Woods", "Nivla Woods Exit", "Road to Elkurn", "Detlas Far Suburbs"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Twain Lake": {"territory": "Twain Lake", "guild": "GlowOfDust", "location": {"startX": 0, "startY": -330, "endX": 80, "endY": -530}, "neighbors": ["Nesaak Plains South West", "Twain Mansion"], "resources": ["Fish"], "storage": ["Emeralds", "Wood", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nesaak Plains South West": {"territory": "Nesaak Plains South West", "guild": "Fuzzy Spiders", "location": {"startX": 70, "startY": -820, "endX": -110, "endY": -625}, "neighbors": ["Nesaak Plains Lower North West", "Twain Lake", "Icy Descent", "Nesaak Village", "Nesaak Plains South East", "Nesaak Bridge Transition"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nesaak Village": {"territory": "Nesaak Village", "guild": "Fuzzy Spiders", "location": {"startX": 75, "startY": -850, "endX": 160, "endY": -760}, "neighbors": ["Nesaak Plains Lower North West", "Bob's Tomb", "Nesaak Plains South East", "Nesaak Plains North East", "Nesaak Plains South West"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Great Bridge Jungle": {"territory": "Great Bridge Jungle", "guild": "ShadowFall", "location": {"startX": -395, "startY": -790, "endX": -515, "endY": -610}, "neighbors": ["Herb Cave", "Great Bridge Nesaak", "Jungle Lower"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Jungle Lake": {"territory": "Jungle Lake", "guild": "ShadowFall", "location": {"startX": -601, "startY": -791, "endX": -680, "endY": -940}, "neighbors": ["Jungle Mid", "Temple of Legends", "City of Troms"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Rymek East Mid": {"territory": "Rymek East Mid", "guild": "WrathOfTheFallen", "location": {"startX": 1211, "startY": -1410, "endX": 1480, "endY": -1578}, "neighbors": ["Rymek East Upper", "Rymek East Lower", "Rymek West Mid"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Rymek West Upper": {"territory": "Rymek West Upper", "guild": "WrathOfTheFallen", "location": {"startX": 1190, "startY": -1665, "endX": 975, "endY": -1540}, "neighbors": ["Desert Lower", "Desert West Lower", "Rymek East Upper", "Rymek West Mid"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Desert Upper": {"territory": "Desert Upper", "guild": "Ultra Violet", "location": {"startX": 990, "startY": -2270, "endX": 1195, "endY": -2120}, "neighbors": ["Mummy's Tomb", "Desert West Upper", "Desert Mid-Upper"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Almuj City": {"territory": "Almuj City", "guild": "Ultra Violet", "location": {"startX": 1050, "startY": -1900, "endX": 840, "endY": -2060}, "neighbors": ["Savannah East Upper", "Desert West Upper", "Desert West Lower", "Desert Mid-Upper", "Desert Mid-Lower"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Savannah East Lower": {"territory": "Savannah East Lower", "guild": "Emorians", "location": {"startX": 775, "startY": -1675, "endX": 890, "endY": -1860}, "neighbors": ["Savannah West Lower", "Ternaves", "Savannah East Upper"], "resources": ["Wood"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Bremminglar": {"territory": "Bremminglar", "guild": "Emorians", "location": {"startX": 760, "startY": -2070, "endX": 615, "endY": -2120}, "neighbors": ["Savannah West Upper", "Lion Lair"], "resources": ["Ore"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nemract Road": {"territory": "Nemract Road", "guild": "Nerfuria", "location": {"startX": 20, "startY": -2065, "endX": 151, "endY": -1871}, "neighbors": ["Nemract Town", "Nemract Cathedral", "Ancient Nemract", "Nemract Plains East", "Nemract Plains West", "Nemract Quarry"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nemract Cathedral": {"territory": "Nemract Cathedral", "guild": "Nerfuria", "location": {"startX": 385, "startY": -2180, "endX": 270, "endY": -2030}, "neighbors": ["Nemract Road", "Cathedral Harbour", "Nemract Town", "Ancient Nemract"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Zhight Island": {"territory": "Zhight Island", "guild": "The Mage Legacy", "location": {"startX": -727, "startY": -2846, "endX": -440, "endY": -2629}, "neighbors": ["Legendary Island", "The Bear Zoo", "Pirate Town"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Durum Isles East": {"territory": "Durum Isles East", "guild": "The Mage Legacy", "location": {"startX": 482, "startY": -2841, "endX": 548, "endY": -2785}, "neighbors": ["Durum Isles Center", "Mage Island"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Dujgon Nation": {"territory": "Dujgon Nation", "guild": "The Mage Legacy", "location": {"startX": 1000, "startY": -3550, "endX": 925, "endY": -3380}, "neighbors": ["Dead Island South East", "Regular Island", "Icy Island", "Dead Island South West", "Nodguj Nation"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Dead Island North West": {"territory": "Dead Island North West", "guild": "The Mage Legacy", "location": {"startX": 870, "startY": -3920, "endX": 745, "endY": -4040}, "neighbors": ["Dead Island South West", "Dead Island North East"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Fish"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Volcano Lower": {"territory": "Volcano Lower", "guild": "Guardian of Wynn", "location": {"startX": -1164, "startY": -3831, "endX": -930, "endY": -3530}, "neighbors": ["Bloody Beach", "Volcano Upper", "Llevigar Entrance", "Light Peninsula"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Ternaves Plains Lower": {"territory": "Ternaves Plains Lower", "guild": "The Dark Phoenix", "location": {"startX": 655, "startY": -1430, "endX": 880, "endY": -1330}, "neighbors": ["Abandoned Pass", "Ternaves", "Mining Base Upper", "Ternaves Plains Upper", "Mine Base Plains"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Desolate Valley": {"territory": "Desolate Valley", "guild": "Fuzzy Spiders", "location": {"startX": 330, "startY": -1040, "endX": 450, "endY": -1170}, "neighbors": ["Nether Plains Lower", "Nesaak Transition", "Plains Lake"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Detlas Savannah Transition": {"territory": "Detlas Savannah Transition", "guild": "The Dark Phoenix", "location": {"startX": 545, "startY": -1520, "endX": 650, "endY": -1670}, "neighbors": ["Detlas", "Ternaves Plains Upper", "Mine Base Plains", "Savannah West Lower"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Llevigar Entrance": {"territory": "Llevigar Entrance", "guild": "Guardian of Wynn", "location": {"startX": -2048, "startY": -4250, "endX": -1932, "endY": -4403}, "neighbors": ["Llevigar"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Llevigar Farm Plains West": {"territory": "Llevigar Farm Plains West", "guild": "Eden", "location": {"startX": -2060, "startY": -4746, "endX": -2171, "endY": -4828}, "neighbors": ["Llevigar Gate West", "Llevigar Farm Plains East", "Llevigar Plains West Lower"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Llevigar Plains West Lower": {"territory": "Llevigar Plains West Lower", "guild": "Eden", "location": {"startX": -2060, "startY": -4831, "endX": -2171, "endY": -4909}, "neighbors": ["Llevigar Gate West", "Llevigar Plains East Lower", "Llevigar Farm Plains West", "Llevigar Plains West Upper"], "resources": ["Wood"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Swamp East Lower": {"territory": "Swamp East Lower", "guild": "Eden", "location": {"startX": -2059, "startY": -5003, "endX": -1956, "endY": -5074}, "neighbors": ["Sunspark Camp", "Swamp West Lower", "Swamp East Mid", "Llevigar Plains East Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Swamp East Mid-Upper": {"territory": "Swamp East Mid-Upper", "guild": "Eden", "location": {"startX": -2059, "startY": -5188, "endX": -1955, "endY": -5309}, "neighbors": ["Swamp Plains Basin", "Swamp East Mid", "Swamp East Upper", "Swamp West Mid-Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Swamp Dark Forest Transition Mid": {"territory": "Swamp Dark Forest Transition Mid", "guild": "Eden", "location": {"startX": -1519, "startY": -5291, "endX": -1626, "endY": -5492}, "neighbors": ["Swamp Dark Forest Transition Upper", "Olux", "Entrance to Olux", "Taproot Descent", "Swamp Dark Forest Transition Lower"], "resources": ["Ore"], "storage": [], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Olux": {"territory": "Olux", "guild": "Eden", "location": {"startX": -1810, "startY": -5397, "endX": -1668, "endY": -5597}, "neighbors": ["Swamp Dark Forest Transition Mid", "Swamp Dark Forest Transition Upper", "Entrance to Olux", "Swamp Mountain Transition Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Swamp Mountain Transition Mid": {"territory": "Swamp Mountain Transition Mid", "guild": "Eden", "location": {"startX": -2127, "startY": -5466, "endX": -2066, "endY": -5603}, "neighbors": ["Swamp Mountain Transition Mid-Upper", "Swamp Mountain Transition Lower", "Swamp West Upper"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Quartz Mines South East": {"territory": "Quartz Mines South East", "guild": "Eden", "location": {"startX": -1391, "startY": -4352, "endX": -1607, "endY": -4524}, "neighbors": ["Quartz Mines South West", "Quartz Mines North East"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Orc Lake": {"territory": "Orc Lake", "guild": "BRIS", "location": {"startX": -1933, "startY": -4962, "endX": -1816, "endY": -4854}, "neighbors": ["Llevigar Plains East Lower", "Sunspark Camp", "Llevigar Plains East Upper", "Sablestone Camp", "Orc Road"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Loamsprout Camp": {"territory": "Loamsprout Camp", "guild": "Eden", "location": {"startX": -1800, "startY": -4852, "endX": -1670, "endY": -4684}, "neighbors": ["Orc Road", "Llevigar Farm", "Quartz Mines North West", "Sablestone Camp"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Forgotten Path": {"territory": "Forgotten Path", "guild": "Eden", "location": {"startX": -1603, "startY": -4969, "endX": -1529, "endY": -5100}, "neighbors": ["Goblin Plains East", "Iron Road", "Swamp Dark Forest Transition Lower"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Road To Light Forest": {"territory": "Road To Light Forest", "guild": "Eden", "location": {"startX": -1387, "startY": -4595, "endX": -1252, "endY": -4713}, "neighbors": ["Fleris Trail", "Light Forest Entrance", "Leadin Fortress"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Efilim South East Plains": {"territory": "Efilim South East Plains", "guild": "Wheres The Finish", "location": {"startX": -949, "startY": -4942, "endX": -1014, "endY": -4847}, "neighbors": ["Efilim East Plains", "Light Forest East Upper", "Efilim South Plains", "Light Forest West Upper"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Aldorei Valley West Entrance": {"territory": "Aldorei Valley West Entrance", "guild": "The Mage Legacy", "location": {"startX": -736, "startY": -4428, "endX": -802, "endY": -4553}, "neighbors": ["Aldorei Valley Lower", "Hobbit River", "Mantis Nest"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Light Forest West Mid": {"territory": "Light Forest West Mid", "guild": "The Mage Legacy", "location": {"startX": -929, "startY": -4552, "endX": -1014, "endY": -4706}, "neighbors": ["Light Forest West Upper", "Light Forest Entrance", "Light Forest East Lower", "Light Forest West Lower"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Light Forest East Lower": {"territory": "Light Forest East Lower", "guild": "The Mage Legacy", "location": {"startX": -926, "startY": -4700, "endX": -805, "endY": -4552}, "neighbors": ["Light Forest West Mid", "Mantis Nest", "Hobbit River", "Light Forest East Mid"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Path to Cinfras": {"territory": "Path to Cinfras", "guild": "Wheres The Finish", "location": {"startX": -734, "startY": -4842, "endX": -818, "endY": -4953}, "neighbors": ["Cinfras Entrance", "Light Forest East Upper"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Gelibord Castle": {"territory": "Gelibord Castle", "guild": "Eden", "location": {"startX": -1027, "startY": -5470, "endX": -1180, "endY": -5600}, "neighbors": ["Gelibord Corrupted Farm", "Taproot Descent"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Mansion of Insanity": {"territory": "Mansion of Insanity", "guild": "Eden", "location": {"startX": -1237, "startY": -5116, "endX": -1144, "endY": -5268}, "neighbors": ["Fortress North", "Fortress South", "Twisted Housing"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Wood"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Entrance to Kander": {"territory": "Entrance to Kander", "guild": "Wheres The Finish", "location": {"startX": -896, "startY": -5408, "endX": -792, "endY": -5233}, "neighbors": ["Abandoned Manor", "Gelibord", "Viscera Pits West", "Path to Talor"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Path to Talor": {"territory": "Path to Talor", "guild": "Wheres The Finish", "location": {"startX": -653, "startY": -5231, "endX": -785, "endY": -5401}, "neighbors": ["Old Crossroads South", "Entrance to Kander", "Viscera Pits East", "Dark Forest Village", "Old Crossroads North", "Kander Mines"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Old Crossroads North": {"territory": "Old Crossroads North", "guild": "Wheres The Finish", "location": {"startX": -648, "startY": -5314, "endX": -567, "endY": -5400}, "neighbors": ["Fungal Grove", "Lexdale", "Old Crossroads South", "Path to Talor"], "resources": ["Crops"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Heart of Decay": {"territory": "Heart of Decay", "guild": "Wheres The Finish", "location": {"startX": -598, "startY": -5580, "endX": -454, "endY": -5518}, "neighbors": ["Lexdale", "Decayed Basin", "Mushroom Hill"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Dark Forest Cinfras Transition": {"territory": "Dark Forest Cinfras Transition", "guild": "Aequitas", "location": {"startX": -290, "startY": -5292, "endX": -392, "endY": -5116}, "neighbors": ["Gylia Lake South West", "Cinfras Outskirts", "Fallen Village"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Cinfras County Lower": {"territory": "Cinfras County Lower", "guild": "Aequitas", "location": {"startX": 3, "startY": -4760, "endX": -127, "endY": -4640}, "neighbors": ["Cinfras County Mid-Lower", "Aldorei's North Exit", "Cinfras's Small Farm"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Gylia Lake South East": {"territory": "Gylia Lake South East", "guild": "Aequitas", "location": {"startX": 30, "startY": -5157, "endX": -127, "endY": -5271}, "neighbors": ["Gylia Lake South West", "Cinfras County Upper", "Gylia Lake North East", "Thanos"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Gert Camp": {"territory": "Gert Camp", "guild": "ChinaNumberOne", "location": {"startX": 30, "startY": -5447, "endX": -83, "endY": -5605}, "neighbors": ["Gylia Lake North East", "Jitak's Farm"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Aldorei Valley Upper": {"territory": "Aldorei Valley Upper", "guild": "Aequitas", "location": {"startX": -557, "startY": -4501, "endX": -322, "endY": -4656}, "neighbors": ["Aldorei Valley Mid", "Aldorei's Waterfall"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Aldorei's Arch": {"territory": "Aldorei's Arch", "guild": "Aequitas", "location": {"startX": 33, "startY": -4367, "endX": 107, "endY": -4519}, "neighbors": ["Canyon Upper North West", "Path To The Arch"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Burning Airship": {"territory": "Burning Airship", "guild": "Aequitas", "location": {"startX": 35, "startY": -4859, "endX": 107, "endY": -4955}, "neighbors": ["Burning Farm", "Bandit Cave Upper", "Cinfras Thanos Transition"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Path To Military Base": {"territory": "Path To Military Base", "guild": "ChinaNumberOne", "location": {"startX": 51, "startY": -5297, "endX": 166, "endY": -5391}, "neighbors": ["Thanos", "Military Base"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Path To Ozoth's Spire Lower": {"territory": "Path To Ozoth's Spire Lower", "guild": "ChinaNumberOne", "location": {"startX": 260, "startY": -5298, "endX": 199, "endY": -5169}, "neighbors": ["Thanos", "Military Base Lower"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Bandit Cave Upper": {"territory": "Bandit Cave Upper", "guild": "IceBlue Team", "location": {"startX": 194, "startY": -4956, "endX": 111, "endY": -4872}, "neighbors": ["Burning Airship"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Canyon Waterfall North": {"territory": "Canyon Waterfall North", "guild": "TheNoLifes", "location": {"startX": 115, "startY": -4380, "endX": 194, "endY": -4518}, "neighbors": ["Canyon Upper North West"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Canyon Path North Mid": {"territory": "Canyon Path North Mid", "guild": "TheNoLifes", "location": {"startX": 200, "startY": -4743, "endX": 264, "endY": -4875}, "neighbors": ["Canyon Entrance Waterfall", "Canyon Waterfall Mid North", "Bandit Camp Exit", "Canyon Path South West"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Thanos Exit": {"territory": "Thanos Exit", "guild": "IceBlue Team", "location": {"startX": 338, "startY": -5310, "endX": 262, "endY": -5168}, "neighbors": ["Thanos Exit Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Canyon Waterfall Mid North": {"territory": "Canyon Waterfall Mid North", "guild": "TheNoLifes", "location": {"startX": 337, "startY": -4855, "endX": 271, "endY": -4741}, "neighbors": ["Canyon Path North Mid", "Canyon Fortress", "Canyon Mountain South"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Thanos Exit Upper": {"territory": "Thanos Exit Upper", "guild": "IceBlue Team", "location": {"startX": 347, "startY": -5313, "endX": 438, "endY": -5183}, "neighbors": ["Canyon High Path", "Hive", "Bandits Toll", "Thanos Exit", "Hive South"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Mountain Edge": {"territory": "Mountain Edge", "guild": "TheNoLifes", "location": {"startX": 437, "startY": -4314, "endX": 336, "endY": -4392}, "neighbors": ["Cliff Side of the Lost"], "resources": ["Wood"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Krolton's Cave": {"territory": "Krolton's Cave", "guild": "IceBlue Team", "location": {"startX": 341, "startY": -4841, "endX": 438, "endY": -4962}, "neighbors": ["Wizard Tower North", "Temple of the Lost East", "Air Temple Lower", "Canyon Mountain South"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Cliffside Valley": {"territory": "Cliffside Valley", "guild": "IceBlue Team", "location": {"startX": 563, "startY": -5079, "endX": 440, "endY": -4975}, "neighbors": ["Entrance to Thesead South", "Bandits Toll", "Air Temple Lower", "Entrance to Thesead North"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Canyon Of The Lost": {"territory": "Canyon Of The Lost", "guild": "TheNoLifes", "location": {"startX": 443, "startY": -4566, "endX": 570, "endY": -4392}, "neighbors": ["Kandon-Beda", "Cliff Side of the Lost", "Cliffside Lake", "Valley of the Lost"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Cliffside Passage North": {"territory": "Cliffside Passage North", "guild": "TheNoLifes", "location": {"startX": 572, "startY": -4818, "endX": 700, "endY": -4933}, "neighbors": ["Entrance to Thesead North", "Cliffside Passage"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Cherry Blossom Forest": {"territory": "Cherry Blossom Forest", "guild": "IceBlue Team", "location": {"startX": 699, "startY": -5378, "endX": 575, "endY": -5551}, "neighbors": ["Ranol's Farm", "Chained House", "Hive South"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Entrance to Rodoroc": {"territory": "Entrance to Rodoroc", "guild": "Avicia", "location": {"startX": 854, "startY": -5257, "endX": 1113, "endY": -5367}, "neighbors": ["Thesead Suburbs", "Eltom", "Rodoroc"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Lava Lake Bridge": {"territory": "Lava Lake Bridge", "guild": "Avicia", "location": {"startX": 1230, "startY": -5240, "endX": 1379, "endY": -5366}, "neighbors": ["Active Volcano", "Molten Heights Portal", "Crater Descent"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Ahmsord": {"territory": "Ahmsord", "guild": "Avicia", "location": {"startX": 1163, "startY": -4462, "endX": 942, "endY": -4604}, "neighbors": ["Path to Ahmsord Lower", "Temple Island", "Path to Ahmsord Upper", "Sky Island Ascent"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Dernel Jungle Mid": {"territory": "Dernel Jungle Mid", "guild": "ShadowFall", "location": {"startX": -744, "startY": -528, "endX": -965, "endY": -264}, "neighbors": ["Dernel Jungle Upper", "Dernel Jungle Lower"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Corkus City South": {"territory": "Corkus City South", "guild": "Guardian of Wynn", "location": {"startX": -1559, "startY": -2662, "endX": -1679, "endY": -2833}, "neighbors": ["Corkus Forest South", "Fallen Factory", "Factory Entrance", "Road To Mine", "Corkus City"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Legendary Island": {"territory": "Legendary Island", "guild": "Guardian of Wynn", "location": {"startX": -1212, "startY": -2576, "endX": -1001, "endY": -2342}, "neighbors": ["Zhight Island", "Southern Outpost"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Corkus Mountain": {"territory": "Corkus Mountain", "guild": "Guardian of Wynn", "location": {"startX": -1888, "startY": -2997, "endX": -1683, "endY": -3175}, "neighbors": ["Corkus Forest North", "Corkus Countryside", "Corkus Docks"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Corkus Sea Port": {"territory": "Corkus Sea Port", "guild": "Guardian of Wynn", "location": {"startX": -1680, "startY": -2512, "endX": -1437, "endY": -2307}, "neighbors": ["Fallen Factory", "Lighthouse Plateau", "Ruined Houses", "Corkus Sea Cove"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Bloody Beach": {"territory": "Bloody Beach", "guild": "Guardian of Wynn", "location": {"startX": -1376, "startY": -3225, "endX": -1097, "endY": -3426}, "neighbors": ["Avos Temple", "Corkus Countryside", "Pirate Town", "Volcano Lower", "Corkus Outskirts"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Path to Ahmsord Lower": {"territory": "Path to Ahmsord Lower", "guild": "Avicia", "location": {"startX": 779, "startY": -4480, "endX": 885, "endY": -4570}, "neighbors": ["Sky Castle", "Path to Ahmsord Upper", "Ahmsord"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Dragonling Nests": {"territory": "Dragonling Nests", "guild": "Avicia", "location": {"startX": 925, "startY": -4916, "endX": 1101, "endY": -5016}, "neighbors": ["Astraulus' Tower", "Snail Island"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": true}, "Swamp Island": {"territory": "Swamp Island", "guild": "Avicia", "location": {"startX": 1178, "startY": -4754, "endX": 1101, "endY": -4915}, "neighbors": ["Temple Island", "Astraulus' Tower", "Ahmsord Outskirts"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Sky Island Ascent": {"territory": "Sky Island Ascent", "guild": "Avicia", "location": {"startX": 1180, "startY": -4524, "endX": 1379, "endY": -4355}, "neighbors": ["Jofash Tunnel", "Central Islands", "Sky Falls", "Raider's Base Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Jofash Tunnel": {"territory": "Jofash Tunnel", "guild": "Avicia", "location": {"startX": 1304, "startY": -4354, "endX": 1126, "endY": -4176}, "neighbors": ["Jofash Docks", "Sky Island Ascent"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Icy Descent": {"territory": "Icy Descent", "guild": "Fuzzy Spiders", "location": {"startX": -311, "startY": -358, "endX": -104, "endY": -496}, "neighbors": ["Tower of Ascension", "Lusuco"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Rodoroc": {"territory": "Rodoroc", "guild": "Avicia", "location": {"startX": 1200, "startY": -5067, "endX": 965, "endY": -5238}, "neighbors": ["Crater Descent"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Twisted Ridge": {"territory": "Twisted Ridge", "guild": "Wheres The Finish", "location": {"startX": -1020, "startY": -5603, "endX": -910, "endY": -5343}, "neighbors": ["Entrance to Kander", "Viscera Pits West"], "resources": ["Fish"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Orc Battlegrounds": {"territory": "Orc Battlegrounds", "guild": "Eden", "location": {"startX": -1460, "startY": -5024, "endX": -1282, "endY": -4870}, "neighbors": ["Leadin Fortress", "Fortress South"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Lighthouse Plateau": {"territory": "Lighthouse Plateau", "guild": "Guardian of Wynn", "location": {"startX": -1633, "startY": -2162, "endX": -1445, "endY": -2306}, "neighbors": ["Corkus Sea Port", "Phinas Farm", "Southern Outpost"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Worm Tunnel": {"territory": "Worm Tunnel", "guild": "Profession Heaven", "location": {"startX": 641, "startY": -767, "endX": 543, "endY": -640}, "neighbors": ["The Broken Road", "Grey Ruins"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Sinister Forest": {"territory": "Sinister Forest", "guild": "Profession Heaven", "location": {"startX": 815, "startY": -506, "endX": 1059, "endY": -629}, "neighbors": ["Forest of Eyes", "Lutho"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Toxic Caves": {"territory": "Toxic Caves", "guild": "Profession Heaven", "location": {"startX": 1017, "startY": -1146, "endX": 844, "endY": -993}, "neighbors": ["Toxic Drip"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Bizarre Passage": {"territory": "Bizarre Passage", "guild": "Profession Heaven", "location": {"startX": 1187, "startY": -680, "endX": 1388, "endY": -530}, "neighbors": ["The Gate", "Final Step"], "resources": ["Crops"], "storage": ["Emeralds", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Field of Life": {"territory": "Field of Life", "guild": "Idiot Co", "location": {"startX": -894, "startY": -6010, "endX": -827, "endY": -6164}, "neighbors": ["Heavenly Ingress", "Luminous Plateau", "Azure Frontier", "Primal Fen"], "resources": ["Wood"], "storage": [], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Path to Light": {"territory": "Path to Light", "guild": "Idiot Co", "location": {"startX": -775, "startY": -6164, "endX": -827, "endY": -6010}, "neighbors": ["Azure Frontier", "Otherwordly Monolith"], "resources": ["Fish"], "storage": [], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Katoa Ranch": {"territory": "Katoa Ranch", "guild": "ShadowFall", "location": {"startX": -914, "startY": -1860, "endX": -748, "endY": -1955}, "neighbors": ["Ragni North Entrance", "Ragni North Suburbs"], "resources": ["Crops"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": true}, "Plains": {"territory": "Plains", "guild": "ShadowFall", "location": {"startX": -435, "startY": -1883, "endX": -270, "endY": -1653}, "neighbors": ["Nivla Woods Entrance", "North Nivla Woods", "South Farmers Valley", "Maltic Plains"], "resources": ["Fish"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Road to Time Valley": {"territory": "Road to Time Valley", "guild": "ShadowFall", "location": {"startX": -461, "startY": -1525, "endX": -359, "endY": -1412}, "neighbors": ["South Nivla Woods", "Nivla Woods Entrance", "Nivla Woods"], "resources": ["Wood"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Road to Elkurn": {"territory": "Road to Elkurn", "guild": "ShadowFall", "location": {"startX": -89, "startY": -1481, "endX": 2, "endY": -1267}, "neighbors": ["Elkurn", "Elkurn Fields", "South Nivla Woods"], "resources": ["Fish"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "North Farmers Valley": {"territory": "North Farmers Valley", "guild": "Nerfuria", "location": {"startX": -348, "startY": -2060, "endX": -254, "endY": -1954}, "neighbors": ["Maltic Plains", "Maltic Coast", "South Farmers Valley"], "resources": ["Crops"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Bob's Tomb": {"territory": "Bob's Tomb", "guild": "Fuzzy Spiders", "location": {"startX": 246, "startY": -747, "endX": 380, "endY": -867}, "neighbors": ["Nesaak Village", "Nesaak Plains South East", "Nesaak Plains North East"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nesaak Plains Mid North West": {"territory": "Nesaak Plains Mid North West", "guild": "Fuzzy Spiders", "location": {"startX": -140, "startY": -860, "endX": -180, "endY": -980}, "neighbors": ["Nesaak Plains Lower North West", "Nesaak Plains Upper North West"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "City of Troms": {"territory": "City of Troms", "guild": "ShadowFall", "location": {"startX": -726, "startY": -970, "endX": -899, "endY": -826}, "neighbors": ["South Pigmen Ravines", "Jungle Lake", "Temple of Legends"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Desert East Mid": {"territory": "Desert East Mid", "guild": "WrathOfTheFallen", "location": {"startX": 1260, "startY": -2170, "endX": 1450, "endY": -2020}, "neighbors": ["Desert East Lower", "Desert East Upper", "Desert Mid-Upper"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Desert West Upper": {"territory": "Desert West Upper", "guild": "Ultra Violet", "location": {"startX": 990, "startY": -2270, "endX": 895, "endY": -2140}, "neighbors": ["Desert Upper", "Almuj City"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nemract Town": {"territory": "Nemract Town", "guild": "Nerfuria", "location": {"startX": 10, "startY": -2070, "endX": 210, "endY": -2270}, "neighbors": ["Plains Coast", "Nemract Road", "Rooster Island", "Nemract Cathedral"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "The Bear Zoo": {"territory": "The Bear Zoo", "guild": "The Mage Legacy", "location": {"startX": -409, "startY": -2539, "endX": -283, "endY": -2414}, "neighbors": ["Rooster Island", "Zhight Island"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Pirate Town": {"territory": "Pirate Town", "guild": "The Mage Legacy", "location": {"startX": -750, "startY": -3251, "endX": -580, "endY": -3006}, "neighbors": ["Bloody Beach", "Zhight Island", "Lost Atoll"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Maro Peaks": {"territory": "Maro Peaks", "guild": "The Mage Legacy", "location": {"startX": -41, "startY": -4174, "endX": 453, "endY": -3793}, "neighbors": ["Skiens Island", "Tree Island"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Mining Base Lower": {"territory": "Mining Base Lower", "guild": "The Dark Phoenix", "location": {"startX": 870, "startY": -1130, "endX": 670, "endY": -1225}, "neighbors": ["Mining Base Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Detlas Trail East Plains": {"territory": "Detlas Trail East Plains", "guild": "The Dark Phoenix", "location": {"startX": 200, "startY": -1820, "endX": 510, "endY": -1675}, "neighbors": ["Detlas", "Cathedral Harbour", "Ancient Nemract", "Detlas Close Suburbs", "Detlas Suburbs"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Cinfras": {"territory": "Cinfras", "guild": "Aequitas", "location": {"startX": -534, "startY": -4807, "endX": -375, "endY": -5088}, "neighbors": ["Cinfras Outskirts", "Cinfras Entrance", "Aldorei's River", "Guild Hall"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Swamp West Mid": {"territory": "Swamp West Mid", "guild": "Eden", "location": {"startX": -2060, "startY": -5082, "endX": -2171, "endY": -5186}, "neighbors": ["Swamp West Lower", "Swamp East Mid", "Swamp West Mid-Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Swamp Lower": {"territory": "Swamp Lower", "guild": "BRIS", "location": {"startX": -1649, "startY": -5134, "endX": -1763, "endY": -5241}, "neighbors": ["Swamp Dark Forest Transition Lower", "Swamp Mountain Base", "Entrance to Olux", "Iron Road"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Swamp Mountain Transition Upper": {"territory": "Swamp Mountain Transition Upper", "guild": "Eden", "location": {"startX": -1981, "startY": -5466, "endX": -1889, "endY": -5603}, "neighbors": ["Swamp Mountain Transition Mid-Upper", "Swamp East Upper", "Olux"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Meteor Crater": {"territory": "Meteor Crater", "guild": "BRIS", "location": {"startX": -1800, "startY": -5099, "endX": -1690, "endY": -4969}, "neighbors": ["Sunspark Camp", "Iron Road", "Sablestone Camp"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Pre-Light Forest Transition": {"territory": "Pre-Light Forest Transition", "guild": "Eden", "location": {"startX": -1553, "startY": -4850, "endX": -1476, "endY": -4719}, "neighbors": ["Llevigar Farm", "Leadin Fortress", "Quartz Mines North East", "Goblin Plains East"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Light Forest Entrance": {"territory": "Light Forest Entrance", "guild": "The Mage Legacy", "location": {"startX": -1040, "startY": -4706, "endX": -1134, "endY": -4552}, "neighbors": ["Light Forest West Mid", "Road To Light Forest", "Light Forest South Entrance", "Light Forest North Entrance"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Light Forest East Upper": {"territory": "Light Forest East Upper", "guild": "Wheres The Finish", "location": {"startX": -926, "startY": -4842, "endX": -831, "endY": -4945}, "neighbors": ["Efilim South East Plains", "Path to Cinfras"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Gelibord": {"territory": "Gelibord", "guild": "Wheres The Finish", "location": {"startX": -1050, "startY": -5244, "endX": -958, "endY": -5342}, "neighbors": ["Lone Farmstead", "Entrance to Kander", "Gelibord Corrupted Farm", "Twisted Housing"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Lexdales Prison": {"territory": "Lexdales Prison", "guild": "Wheres The Finish", "location": {"startX": -873, "startY": -5518, "endX": -772, "endY": -5585}, "neighbors": ["Twisted Ridge", "Viscera Pits West"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": true}, "Dark Forest Village": {"territory": "Dark Forest Village", "guild": "Wheres The Finish", "location": {"startX": -723, "startY": -5229, "endX": -574, "endY": -5147}, "neighbors": ["Cinfras Outskirts", "Old Crossroads South", "Kander Mines", "Path to Talor"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Mushroom Hill": {"territory": "Mushroom Hill", "guild": "ChinaNumberOne", "location": {"startX": -288, "startY": -5411, "endX": -392, "endY": -5601}, "neighbors": ["Decayed Basin", "Fallen Village", "Heart of Decay", "Jitak's Farm"], "resources": ["Wood"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Cinfras County Mid-Upper": {"territory": "Cinfras County Mid-Upper", "guild": "Aequitas", "location": {"startX": -127, "startY": -4896, "endX": 3, "endY": -5050}, "neighbors": ["Cinfras County Mid-Lower", "Cinfras County Upper", "Cinfras Thanos Transition"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Aldorei Valley Lower": {"territory": "Aldorei Valley Lower", "guild": "Aequitas", "location": {"startX": -714, "startY": -4395, "endX": -559, "endY": -4499}, "neighbors": ["Aldorei Valley Mid", "Aldorei Valley West Entrance"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Ghostly Path": {"territory": "Ghostly Path", "guild": "Aequitas", "location": {"startX": 35, "startY": -4643, "endX": 107, "endY": -4753}, "neighbors": ["Path To The Arch", "Burning Farm"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Military Base Upper": {"territory": "Military Base Upper", "guild": "ChinaNumberOne", "location": {"startX": 168, "startY": -5408, "endX": 250, "endY": -5518}, "neighbors": ["Military Base Lower", "Military Base"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Canyon Path North West": {"territory": "Canyon Path North West", "guild": "TheNoLifes", "location": {"startX": 110, "startY": -4736, "endX": 194, "endY": -4651}, "neighbors": ["Canyon Entrance Waterfall", "Canyon Path South East"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Canyon Valley South": {"territory": "Canyon Valley South", "guild": "IceBlue Team", "location": {"startX": 263, "startY": -4973, "endX": 199, "endY": -5035}, "neighbors": ["Canyon Mountain East", "Bandit Cave Lower", "Bandit Camp Exit"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Canyon Survivor": {"territory": "Canyon Survivor", "guild": "TheNoLifes", "location": {"startX": 338, "startY": -4628, "endX": 269, "endY": -4522}, "neighbors": ["Canyon Lower South East", "Cliff Side of the Lost"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Valley of the Lost": {"territory": "Valley of the Lost", "guild": "TheNoLifes", "location": {"startX": 435, "startY": -4511, "endX": 341, "endY": -4670}, "neighbors": ["Canyon Of The Lost", "Temple of the Lost East", "Canyon Fortress"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Air Temple Upper": {"territory": "Air Temple Upper", "guild": "IceBlue Team", "location": {"startX": 570, "startY": -4833, "endX": 445, "endY": -4692}, "neighbors": ["Air Temple Lower"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Entrance to Thesead South": {"territory": "Entrance to Thesead South", "guild": "IceBlue Team", "location": {"startX": 700, "startY": -5030, "endX": 574, "endY": -5181}, "neighbors": ["Chained House", "Entrance to Thesead North", "Cliffside Valley", "Thesead"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Molten Heights Portal": {"territory": "Molten Heights Portal", "guild": "Avicia", "location": {"startX": 1535, "startY": -5067, "endX": 1387, "endY": -5366}, "neighbors": ["Lava Lake", "Crater Descent", "Lava Lake Bridge"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Snail Island": {"territory": "Snail Island", "guild": "Avicia", "location": {"startX": 949, "startY": -4885, "endX": 1057, "endY": -4804}, "neighbors": ["Temple Island"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Road To Mine": {"territory": "Road To Mine", "guild": "Guardian of Wynn", "location": {"startX": -1467, "startY": -2834, "endX": -1557, "endY": -2691}, "neighbors": ["Corkus City Mine", "Corkus Sea Cove", "Corkus City South"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Corkus Docks": {"territory": "Corkus Docks", "guild": "Guardian of Wynn", "location": {"startX": -1891, "startY": -2997, "endX": -2022, "endY": -3274}, "neighbors": ["Corkus Mountain"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Frozen Fort": {"territory": "Frozen Fort", "guild": "The Mage Legacy", "location": {"startX": 1501, "startY": -4513, "endX": 1586, "endY": -4789}, "neighbors": ["Sky Falls"], "resources": ["Crops"], "storage": [], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Molten Reach": {"territory": "Molten Reach", "guild": "Avicia", "location": {"startX": 1251, "startY": -4894, "endX": 1500, "endY": -4964}, "neighbors": ["Molten Heights Portal", "Angel Refuge"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Raider's Base Upper": {"territory": "Raider's Base Upper", "guild": "Avicia", "location": {"startX": 1380, "startY": -4457, "endX": 1551, "endY": -4316}, "neighbors": ["Raider's Base Lower", "Sky Island Ascent"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Aldorei Lowlands": {"territory": "Aldorei Lowlands", "guild": "Aequitas", "location": {"startX": -337, "startY": -4756, "endX": -225, "endY": -4657}, "neighbors": ["Cinfras's Small Farm", "Aldorei's River", "Aldorei's Waterfall"], "resources": ["Wood"], "storage": ["Emeralds", "Wood", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Royal Gate": {"territory": "Royal Gate", "guild": "Guardian of Wynn", "location": {"startX": -1822, "startY": -1995, "endX": -2015, "endY": -1725}, "neighbors": ["Phinas Farm"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": true}, "The Silent Road": {"territory": "The Silent Road", "guild": "Profession Heaven", "location": {"startX": 540, "startY": -1088, "endX": 704, "endY": -961}, "neighbors": ["Mine Base Plains", "The Broken Road"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Paths of Sludge": {"territory": "Paths of Sludge", "guild": "Profession Heaven", "location": {"startX": 1040, "startY": -767, "endX": 892, "endY": -870}, "neighbors": ["Lutho", "Toxic Drip"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Heavenly Ingress": {"territory": "Heavenly Ingress", "guild": "Idiot Co", "location": {"startX": -814, "startY": -6015, "endX": -894, "endY": -5928}, "neighbors": ["Field of Life", "Light Forest South Entrance"], "resources": ["Wood"], "storage": [], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Light Peninsula": {"territory": "Light Peninsula", "guild": "The Mage Legacy", "location": {"startX": -951, "startY": -4421, "endX": -802, "endY": -4108}, "neighbors": ["Volcano Lower", "Tree Island", "Hobbit River", "Volcano Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Ragni Main Entrance": {"territory": "Ragni Main Entrance", "guild": "ShadowFall", "location": {"startX": -747, "startY": -1530, "endX": -616, "endY": -1652}, "neighbors": ["Ragni East Suburbs", "Ragni", "Emerald Trail"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Little Wood": {"territory": "Little Wood", "guild": "ShadowFall", "location": {"startX": -812, "startY": -1177, "endX": -636, "endY": -1094}, "neighbors": ["Time Valley", "South Pigmen Ravines"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Detlas Suburbs": {"territory": "Detlas Suburbs", "guild": "The Dark Phoenix", "location": {"startX": 188, "startY": -1657, "endX": 300, "endY": -1500}, "neighbors": ["Nether Plains Upper", "Detlas Close Suburbs", "Detlas Trail East Plains", "Detlas Far Suburbs"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nesaak Plains Lower North West": {"territory": "Nesaak Plains Lower North West", "guild": "Fuzzy Spiders", "location": {"startX": 70, "startY": -834, "endX": -120, "endY": -910}, "neighbors": ["Nesaak Plains Upper North West", "Nesaak Plains Mid North West", "Nesaak Village", "Nesaak Plains South West"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Rymek West Lower": {"territory": "Rymek West Lower", "guild": "WrathOfTheFallen", "location": {"startX": 1209, "startY": -1269, "endX": 1020, "endY": -1380}, "neighbors": ["Rymek East Lower", "Rymek West Mid"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Savannah West Lower": {"territory": "Savannah West Lower", "guild": "The Dark Phoenix", "location": {"startX": 775, "startY": -1675, "endX": 630, "endY": -1830}, "neighbors": ["Ternaves Plains Upper", "Savannah East Lower", "Savannah West Upper"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Durum Isles Center": {"territory": "Durum Isles Center", "guild": "The Mage Legacy", "location": {"startX": 405, "startY": -2846, "endX": 504, "endY": -2972}, "neighbors": ["Durum Isles East", "Selchar", "Durum Isles Upper", "Durum Isles Lower"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Ternaves": {"territory": "Ternaves", "guild": "The Dark Phoenix", "location": {"startX": 770, "startY": -1675, "endX": 880, "endY": -1540}, "neighbors": ["Savannah East Lower", "Ternaves Plains Upper", "Ternaves Plains Lower"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Llevigar Gate West": {"territory": "Llevigar Gate West", "guild": "Eden", "location": {"startX": -2060, "startY": -4746, "endX": -2171, "endY": -4644}, "neighbors": ["Llevigar Gate East", "Llevigar Farm Plains West"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Swamp East Upper": {"territory": "Swamp East Upper", "guild": "Eden", "location": {"startX": -1955, "startY": -5311, "endX": -2059, "endY": -5419}, "neighbors": ["Swamp Mountain Transition Upper", "Swamp Plains Basin", "Swamp Mountain Transition Mid-Upper", "Swamp East Mid-Upper", "Swamp West Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Quartz Mines North East": {"territory": "Quartz Mines North East", "guild": "Eden", "location": {"startX": -1391, "startY": -4664, "endX": -1607, "endY": -4526}, "neighbors": ["Pre-Light Forest Transition", "Llevigar Farm", "Quartz Mines South East", "Quartz Mines North West"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Efilim South Plains": {"territory": "Efilim South Plains", "guild": "Wheres The Finish", "location": {"startX": -1030, "startY": -4940, "endX": -1134, "endY": -4847}, "neighbors": ["Efilim South East Plains", "Light Forest North Entrance", "Efilim Village"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Mantis Nest": {"territory": "Mantis Nest", "guild": "The Mage Legacy", "location": {"startX": -736, "startY": -4559, "endX": -802, "endY": -4698}, "neighbors": ["Light Forest Canyon", "Light Forest East Lower", "Light Forest South Exit", "Aldorei Valley Lower", "Aldorei Valley West Entrance"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Mesquis Tower": {"territory": "Mesquis Tower", "guild": "Wheres The Finish", "location": {"startX": -834, "startY": -5078, "endX": -727, "endY": -4999}, "neighbors": ["Kander Mines", "Abandoned Manor", "Cinfras Entrance", "Path to Cinfras"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Aldorei Valley South Entrance": {"territory": "Aldorei Valley South Entrance", "guild": "Aequitas", "location": {"startX": -130, "startY": -4641, "endX": -222, "endY": -4509}, "neighbors": ["Aldorei's North Exit", "Aldorei's Waterfall", "Cinfras's Small Farm"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Aldorei's Waterfall": {"territory": "Aldorei's Waterfall", "guild": "Aequitas", "location": {"startX": -237, "startY": -4514, "endX": -321, "endY": -4648}, "neighbors": ["Aldorei Valley South Entrance", "Aldorei Valley Upper"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Path To Ozoth's Spire Upper": {"territory": "Path To Ozoth's Spire Upper", "guild": "IceBlue Team", "location": {"startX": 194, "startY": -5165, "endX": 111, "endY": -5045}, "neighbors": ["Path To Thanos", "Cinfras Thanos Transition", "Bandit Cave Lower", "Path To Ozoth's Spire Mid"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Canyon Mountain East": {"territory": "Canyon Mountain East", "guild": "IceBlue Team", "location": {"startX": 271, "startY": -5039, "endX": 337, "endY": -4948}, "neighbors": ["Canyon Walk Way", "Canyon Valley South"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": true}, "Canyon High Path": {"territory": "Canyon High Path", "guild": "IceBlue Team", "location": {"startX": 562, "startY": -5313, "endX": 440, "endY": -5191}, "neighbors": ["Hive South", "Cliffside Waterfall", "Thanos Exit Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Thesead Suburbs": {"territory": "Thesead Suburbs", "guild": "IceBlue Team", "location": {"startX": 703, "startY": -5374, "endX": 810, "endY": -5216}, "neighbors": ["Ranol's Farm", "Entrance to Rodoroc", "Chained House", "Thesead"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Corkus City": {"territory": "Corkus City", "guild": "Guardian of Wynn", "location": {"startX": -1557, "startY": -2835, "endX": -1680, "endY": -3010}, "neighbors": ["Corkus Forest South", "Corkus Forest North", "Corkus Castle", "Corkus City South", "Corkus Countryside"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Corkus Statue": {"territory": "Corkus Statue", "guild": "Guardian of Wynn", "location": {"startX": -1322, "startY": -2917, "endX": -1393, "endY": -2836}, "neighbors": ["Corkus Outskirts", "Corkus City Mine"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Wybel Island": {"territory": "Wybel Island", "guild": "Avicia", "location": {"startX": 1355, "startY": -4700, "endX": 1253, "endY": -4595}, "neighbors": ["Central Islands", "Sky Falls", "Ahmsord Outskirts"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Regular Island": {"territory": "Regular Island", "guild": "The Mage Legacy", "location": {"startX": 1202, "startY": -3764, "endX": 1458, "endY": -3597}, "neighbors": ["Dujgon Nation", "Jofash Docks", "Icy Island"], "resources": ["Wood"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Forgotten Town": {"territory": "Forgotten Town", "guild": "Profession Heaven", "location": {"startX": 480, "startY": -493, "endX": 734, "endY": -355}, "neighbors": ["Forest of Eyes", "Grey Ruins"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Azure Frontier": {"territory": "Azure Frontier", "guild": "Idiot Co", "location": {"startX": -894, "startY": -6164, "endX": -684, "endY": -6313}, "neighbors": ["Field of Life", "Nexus of Light", "Path to Light", "Otherwordly Monolith"], "resources": ["Fish"], "storage": [], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nivla Woods Exit": {"territory": "Nivla Woods Exit", "guild": "The Dark Phoenix", "location": {"startX": -175, "startY": -1630, "endX": -105, "endY": -1514}, "neighbors": ["Nivla Woods Edge", "Nivla Woods", "North Nivla Woods", "South Nivla Woods"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Jungle Mid": {"territory": "Jungle Mid", "guild": "ShadowFall", "location": {"startX": -600, "startY": -610, "endX": -670, "endY": -780}, "neighbors": ["Jungle Lake", "Jungle Upper", "Jungle Lower"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Nemract Plains East": {"territory": "Nemract Plains East", "guild": "Nerfuria", "location": {"startX": 151, "startY": -1870, "endX": 20, "endY": -1810}, "neighbors": ["Nemract Road", "Detlas Trail West Plains"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Plains Lake": {"territory": "Plains Lake", "guild": "The Dark Phoenix", "location": {"startX": 395, "startY": -1365, "endX": 550, "endY": -1190}, "neighbors": ["Nether Plains Upper", "Nether Gate", "Mine Base Plains", "Desolate Valley"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Swamp Plains Basin": {"territory": "Swamp Plains Basin", "guild": "Eden", "location": {"startX": -1776, "startY": -5246, "endX": -1898, "endY": -5396}, "neighbors": ["Swamp Mountain Base", "Swamp East Upper", "Entrance to Olux", "Swamp East Mid-Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Light Forest North Exit": {"territory": "Light Forest North Exit", "guild": "The Mage Legacy", "location": {"startX": -733, "startY": -4707, "endX": -654, "endY": -4848}, "neighbors": ["Light Forest Canyon", "Cinfras Entrance", "Light Forest South Exit"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Fungal Grove": {"territory": "Fungal Grove", "guild": "Wheres The Finish", "location": {"startX": -489, "startY": -5279, "endX": -549, "endY": -5398}, "neighbors": ["Cinfras Outskirts", "Old Crossroads South", "Decayed Basin", "Fallen Village", "Old Crossroads North"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Thanos": {"territory": "Thanos", "guild": "ChinaNumberOne", "location": {"startX": 51, "startY": -5189, "endX": 194, "endY": -5295}, "neighbors": ["Gylia Lake South East", "Path To Thanos", "Path To Military Base", "Path To Ozoth's Spire Lower"], "resources": ["Ore"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": true, "doubleresource": false}, "Wizard Tower North": {"territory": "Wizard Tower North", "guild": "IceBlue Team", "location": {"startX": 438, "startY": -5037, "endX": 345, "endY": -4966}, "neighbors": ["Krolton's Cave", "Bandits Toll"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Active Volcano": {"territory": "Active Volcano", "guild": "Avicia", "location": {"startX": 1233, "startY": -5553, "endX": 1379, "endY": -5369}, "neighbors": ["Lava Lake", "Lava Lake Bridge", "Volcanic Slope"], "resources": ["Crops"], "storage": ["Emeralds", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Kandon Ridge": {"territory": "Kandon Ridge", "guild": "Avicia", "location": {"startX": 885, "startY": -4640, "endX": 719, "endY": -4777}, "neighbors": ["Path to Ahmsord Upper", "Old Coal Mine", "Kandon Farm"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Lost Atoll": {"territory": "Lost Atoll", "guild": "The Mage Legacy", "location": {"startX": -472, "startY": -3590, "endX": -688, "endY": -3385}, "neighbors": ["Tree Island", "Volcano Upper", "Pirate Town"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": true}, "Coastal Trail": {"territory": "Coastal Trail", "guild": "ShadowFall", "location": {"startX": -747, "startY": -1946, "endX": -565, "endY": -2059}, "neighbors": ["Ragni Plains", "Maltic Coast"], "resources": ["Wood"], "storage": ["Emeralds", "Wood", "Fish", "Crops", "Ore"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Desert Mid-Lower": {"territory": "Desert Mid-Lower", "guild": "Paladins United", "location": {"startX": 1060, "startY": -1935, "endX": 1210, "endY": -1810}, "neighbors": ["Desert Lower", "Almuj City", "Desert West Lower", "Desert Mid-Upper", "Desert East Lower"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Llevigar Plains East Upper": {"territory": "Llevigar Plains East Upper", "guild": "Eden", "location": {"startX": -2059, "startY": -4912, "endX": -1940, "endY": -5000}, "neighbors": ["Swamp East Lower", "Llevigar Plains East Lower", "Orc Lake", "Sunspark Camp", "Llevigar Plains West Upper"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Fortress North": {"territory": "Fortress North", "guild": "Eden", "location": {"startX": -1452, "startY": -5211, "endX": -1272, "endY": -5395}, "neighbors": ["Fortress South", "Taproot Descent", "Mansion of Insanity"], "resources": ["Wood"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Canyon Lower South East": {"territory": "Canyon Lower South East", "guild": "TheNoLifes", "location": {"startX": 265, "startY": -4521, "endX": 199, "endY": -4649}, "neighbors": ["Canyon Survivor", "Canyon Upper North West", "Canyon Path South West", "Canyon Path South East"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Corkus Forest South": {"territory": "Corkus Forest South", "guild": "Guardian of Wynn", "location": {"startX": -1681, "startY": -2732, "endX": -1883, "endY": -2861}, "neighbors": ["Corkus Forest North", "Corkus City", "Corkus City South", "Factory Entrance"], "resources": ["Wood"], "storage": ["Emeralds", "Wood"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Void Valley": {"territory": "Void Valley", "guild": "Profession Heaven", "location": {"startX": 1082, "startY": -1161, "endX": 1250, "endY": -1078}, "neighbors": ["Gateway to Nothing"], "resources": ["Crops"], "storage": ["Emeralds", "Ore", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Half Moon Island": {"territory": "Half Moon Island", "guild": "The Mage Legacy", "location": {"startX": 900, "startY": -2660, "endX": 1100, "endY": -2480}, "neighbors": ["Mage Island"], "resources": ["Crops"], "storage": ["Emeralds", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": true}, "Goblin Plains West": {"territory": "Goblin Plains West", "guild": "Eden", "location": {"startX": -1688, "startY": -4962, "endX": -1611, "endY": -4854}, "neighbors": ["Llevigar Farm", "Goblin Plains East", "Iron Road", "Sablestone Camp"], "resources": ["Ore"], "storage": ["Emeralds", "Ore", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Kandon Farm": {"territory": "Kandon Farm", "guild": "Avicia", "location": {"startX": 710, "startY": -4587, "endX": 614, "endY": -4682}, "neighbors": ["Kandon Ridge"], "resources": ["Crops"], "storage": ["Emeralds", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Gylia Lake North West": {"territory": "Gylia Lake North West", "guild": "ChinaNumberOne", "location": {"startX": -218, "startY": -5427, "endX": -130, "endY": -5273}, "neighbors": ["Gylia Lake South West", "Fallen Village", "Gylia Lake North East", "Jitak's Farm"], "resources": ["Fish"], "storage": ["Emeralds", "Ore", "Wood", "Fish", "Crops"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}, "Santa's Hideout": {"territory": "Santa's Hideout", "guild": "The Mage Legacy", "location": {"startX": 1057, "startY": -3077, "endX": 1221, "endY": -3209}, "neighbors": ["Mage Island", "Icy Island"], "resources": ["Ore", "Wood", "Fish", "Crops"], "storage": ["Emeralds", "Fish"], "emeralds": false, "doubleemeralds": false, "doubleresource": false}, "Dead Island North East": {"territory": "Dead Island North East", "guild": "The Mage Legacy", "location": {"startX": 870, "startY": -3920, "endX": 1000, "endY": -4040}, "neighbors": ["Dead Island North West", "Dead Island South East", "Jofash Docks"], "resources": ["Fish"], "storage": ["Emeralds", "Fish"], "emeralds": true, "doubleemeralds": false, "doubleresource": false}} \ No newline at end of file diff --git a/utils.js b/utils.js index b6bd50c..e97bc54 100644 --- a/utils.js +++ b/utils.js @@ -14,6 +14,7 @@ const attackSpeeds = ["SUPER_SLOW", "VERY_SLOW", "SLOW", "NORMAL", "FAST", "VERY const classes = ["Warrior", "Assassin", "Mage", "Archer", "Shaman"]; const tiers = ["Normal", "Unique", "Rare", "Legendary", "Fabled", "Mythic", "Set", "Crafted"] //I'm not sure why you would make a custom crafted but if you do you should be able to use it w/ the correct powder formula const types = armorTypes.concat(accessoryTypes).concat(weaponTypes).concat(consumableTypes).map(x => x.substring(0,1).toUpperCase() + x.substring(1)); +let itemTypes = armorTypes.concat(accessoryTypes).concat(weaponTypes); let elementIcons = ["\u2724","\u2726", "\u2749", "\u2739", "\u274b" ]; let skpReqs = skp_order.map(x => x + "Req"); @@ -235,3 +236,75 @@ function copyTextToClipboard(text) { }); } +/** Generates a random color using the #(R)(G)(B) format. Not written by wynnbuilder devs. + * + */ +function randomColor() { + var letters = '0123456789abcdef'; + var color = '#'; + for (var i = 0; i < 6; i++) { + color += letters[Math.floor(Math.random() * 16)]; + } + return color; +} + +/** Generates a random color, but lightning must be relatively high (>0.5). + * + * @returns a random color in RGB 6-bit form. + */ +function randomColorLight() { + return randomColorHSL([0,1],[0,1],[0.5,1]); +} + +/** Generates a random color given HSL restrictions. + * + * @returns a random color in RGB 6-bit form. + */ +function randomColorHSL(h,s,l) { + var letters = '0123456789abcdef'; + let h_var = h[0] + (h[1]-h[0])*Math.random(); //hue + let s_var = s[0] + (s[1]-s[0])*Math.random(); //saturation + let l_var = l[0] + (l[1]-l[0])*Math.random(); //lightness + let rgb = hslToRgb(h_var,s_var,l_var); + let color = "#"; + for (const c of rgb) { + color += letters[Math.floor(c/16)] + letters[c%16]; + } + return color; +} + +/** + * Converts an HSL color value to RGB. Conversion formula + * adapted from http://en.wikipedia.org/wiki/HSL_color_space. + * Assumes h, s, and l are contained in the set [0, 1] and + * returns r, g, and b in the set [0, 255]. Not written by wynnbuilder devs. + * + * @param {number} h The hue + * @param {number} s The saturation + * @param {number} l The lightness + * @return {Array} The RGB representation + */ + function hslToRgb(h, s, l){ + var r, g, b; + + if(s == 0){ + r = g = b = l; // achromatic + }else{ + var hue2rgb = function hue2rgb(p, q, t){ + if(t < 0) t += 1; + if(t > 1) t -= 1; + if(t < 1/6) return p + (q - p) * 6 * t; + if(t < 1/2) return q; + if(t < 2/3) return p + (q - p) * (2/3 - t) * 6; + return p; + } + + var q = l < 0.5 ? l * (1 + s) : l + s - l * s; + var p = 2 * l - q; + r = hue2rgb(p, q, h + 1/3); + g = hue2rgb(p, q, h); + b = hue2rgb(p, q, h - 1/3); + } + + return [Math.round(r * 255), Math.round(g * 255), Math.round(b * 255)]; +} \ No newline at end of file