small data adjustments

This commit is contained in:
2024-10-21 23:08:04 +02:00
parent 5669a789bf
commit 71a4810f99
6 changed files with 27 additions and 5 deletions
+15
View File
@@ -1,6 +1,7 @@
/**
* @typedef {Object} CapitalData
* @property {string} name
* @property {string?} description
* @property {string?} url
* @property {{x:string,y:string}} position
*/
@@ -11,6 +12,7 @@
const capitals = [
{
name: "Lune",
description: "The capital of the Holy Empire Lubelius, home of God Luminous.",
position: { x: "900", y: "930" }
},
{
@@ -20,48 +22,61 @@ const capitals = [
},
{
name: "Imprerial Capital Nasca",
description: "The Imperial Capital of the Eastern Empire, formerly the Kingdom of Nasca.",
position: { x: "2070", y: "730" }
},
{
name: "Dwargon Gate",
description: "The great gate that acts as the entrance into all of Dwargon's underground cities.",
position: { x: "1840", y: "880" }
},
{
name: "Amrita",
description: "The capital of Jistav, formerly Clayman's base of operations.",
url: "https://tensura.fandom.com/wiki/Amrita",
position: { x: "2280", y: "1000" }
},
{
name: "City of the forgotten Dragon",
description: "The home of the Dragon Faithful, Milim's worshippers.",
url: "https://tensura.fandom.com/wiki/City_of_the_Forgotten_Dragon",
position: { x: "2070", y: "1240" }
},
{
name: "Laura",
description: "The former capital of the Beast Kingdom of Eurazania. It was reduced to rubble by Milim Nava.",
position: { x: "1960", y: "1325" }
},
{
name: "Jia",
description: "The capital of the Harpy Queendom of Fulbrosia.",
position: { x: "1670", y: "1480" }
},
{
name: "Elmine Sarion",
description: "The Imperial Capital of Sarion.",
position: { x: "1395", y: "1360" }
},
{
name: "Londo",
description: "The royal capital and sole city of the kingdom of Blumund.",
position: { x: "1500", y: "1050" }
},
{
name: "Marris",
description: "The Royal Capital of Falmuth.",
url: "https://tensura.fandom.com/wiki/Kingdom_of_Falmuth#Marris",
position: { x: "1455", y: "870" }
},
{
name: "Frost Palace",
description: "The home of Guy Crimson and his horde of daemons.",
url: "https://tensura.fandom.com/wiki/Frost_Palace",
position: { x: "1200", y: "320" }
},
{
name: "Golden City of El Dorado",
description: "The Kingdom of Demon Lord Leon.",
url: "https://tensura.fandom.com/wiki/Golden_City_of_El_Dorado",
position: { x: "800", y: "1565" }
},