added cities

This commit is contained in:
2024-10-23 23:26:58 +02:00
parent 6d69193be0
commit d95ea6d26a
13 changed files with 195 additions and 20 deletions
+76
View File
@@ -0,0 +1,76 @@
/**
* @typedef {Object} CityData
* @property {string} name
* @property {string?} description
* @property {CityImage?} image
* @property {string?} url
* @property {{x:string,y:string}} position
*/
/**
* @typedef {Object} CityImage
* @property {string} url
* @property {string} name
* @property {string} credit
*/
/**
* @type {[CapitalData]}
*/
export const cities = [
{
name: "Tengu Village",
description: "The village of the Tengu tribe, located in the Khusha Mountains.",
image: {
url: "img/locations/tengu_village.webp",
name: "Tengu Village from Episode 64",
credit: "Screenshot from Tensei Shitara Slime Datta Ken, Episode 64."
},
position: { x: "1638", y: "1252" }
},
{
name: "Ogre Village",
description: "The site of the former Ogre Village, prior to it being destroyed in the Orc War.",
image: {
url: "img/locations/ogre_village.webp",
name: "Ogre Village from Episode 1",
credit: "Screenshot from Tensei Shitara Slime Datta Ken, Episode 1. Sourced from the Tensei Shitara Slime Datta Ken Wiki"
},
position: { x: "1780", y: "1190" }
},
{
name: "Treant Village",
description: "The former location of the Treant Village, prior to them moving to Floor 95 of the Dungeon.",
position: { x: "1957", y: "1100" }
},
{
name: "Gozu and Mezu Villages",
description: "The homeland of both the Gozu and the Mezu tribes, which has been ravaged by their conflict for the last century.",
position: { x: "1990", y: "1020" }
},
{
name: "Migam Earldom",
description: "The territory of the noble house of Migam, in charge of the nation's border with the Jura Forest.",
image: {
url: "img/locations/migam_domain.webp",
name: "Migam Earldom from Episode 57",
credit: "Screenshot from Tensei Shitara Slime Datta Ken, Episode 57. Sourced from the Tensei Shitara Slime Datta Ken Wiki"
},
position: { x: "1540", y: "930" }
},
{
name: "Muller March",
description: "The territory of the noble house of muller, distant relatives of the Blumund royal family.",
position: { x: "1465", y: "980" }
},
{
name: "Guratol County",
description: "A small territory ruled by Count Guratol with his wife Ulamuth Guratol.",
image: {
url: "img/locations/guratol_county.webp",
name: "Guratol County",
credit: "Screenshot from Tensei Shitara Slime Datta Ken. Sourced from the Tensei Shitara Slime Datta Ken Wiki"
},
position: { x: "1224", y: "1010" }
},
];
+2 -1
View File
@@ -1,3 +1,4 @@
export * from "./pois.js";
export * from "./nations.js";
export * from "./capitals.js";
export * from "./capitals.js";
export * from "./cities.js";
+10 -10
View File
@@ -27,7 +27,7 @@ export const pois = [
credit: "Screenshot from Tensei Shitara Slime Datta Ken. Sourced from the Tensei Shitara Slime Datta Ken Wiki"
},
url: "https://tensura.fandom.com/wiki/Sealed_Cave",
position: { x: "1680", y: "1080" }
position: { x: "1660", y: "1060" }
},
{
name: "Lake Siss",
@@ -38,7 +38,7 @@ export const pois = [
credit: "Screenshot from Tensei Shitara Slime Datta Ken. Sourced from the Tensei Shitara Slime Datta Ken Wiki"
},
url: "https://tensura.fandom.com/wiki/Lake%20Siss",
position: { x: "1850", y: "1121" }
position: { x: "1835", y: "1100" }
},
{
name: "Khusha Mountains",
@@ -49,18 +49,18 @@ export const pois = [
credit: "Screenshot from Tensei Shitara Slime Datta Ken, Episode 64. Sourced from the Tensei Shitara Slime Datta Ken Wiki"
},
url: "https://tensura.fandom.com/wiki/Khusha%20Mountains",
position: { x: "1618", y: "1240" }
position: { x: "1600", y: "1180" }
},
{
name: "Scroching God Mountain",
description: "The holy mountain where the scorch dragon Velgrynd is said to reside.",
url: "https://tensura.fandom.com/wiki/Scorching%20God%20Mountain",
position: { x: "2111", y: "700" }
position: { x: "2088", y: "680" }
},
{
name: "Dragon's Den",
description: "At the peak of the tallest mountain, the Great Canaat Mountains, lies the Dragon's Den where the Dragon Lords reside.",
position: { x: "1740", y: "665" }
position: { x: "1720", y: "650" }
},
{
name: "Charybdis Cave",
@@ -70,30 +70,30 @@ export const pois = [
name: "Charybdis Cave from Episode 18",
credit: "Screenshot from Tensei Shitara Slime Datta Ken, Episode 18. Sourced from the Tensei Shitara Slime Datta Ken Wiki"
},
position: { x: "1956", y: "1010" }
position: { x: "1925", y: "990" }
},
{
name: "Divine Tree",
description: "The Divine Tree, a sacred relic designed to maintain the world. It is home to Elmine, Sarion's Capital.",
url: "https://tensura.fandom.com/wiki/Divine%20Tree",
position: { x: "1420", y: "1450" }
position: { x: "1402", y: "1435" }
},
{
name: "Ulgr Nature Park",
description: "A nature preserve that was formerly home to the Dwelling of the Spirits.",
position: { x: "1480", y: "1520" }
position: { x: "1460", y: "1500" }
},
{
name: "Heaven Tower",
description: "The entrance to the Star Palace.",
url: "https://tensura.fandom.com/wiki/Heaven%20Tower",
position: { x: "350", y: "1205" }
position: { x: "330", y: "1170" }
},
{
name: "Magic Tower",
description: "The scholarly facility created by the Trinity Wisemen.",
url: "https://tensura.fandom.com/wiki/Magic%20Tower",
position: { x: "1165", y: "1375" }
position: { x: "1138", y: "1355" }
},
{
name: "Barren Lands",