initial commit

This commit is contained in:
2024-10-20 23:07:17 +02:00
commit 56bd7c6111
45 changed files with 1058 additions and 0 deletions
+68
View File
@@ -0,0 +1,68 @@
/**
* @typedef {Object} CapitalData
* @property {string} name
* @property {string?} url
* @property {{x:string,y:string}} position
*/
/**
* @type {[CapitalData]}
*/
const capitals = [
{
name: "Lune",
position: { x: "900", y: "930" }
},
{
name: "Rimuru City",
url: "https://tensura.fandom.com/wiki/Rimuru_City",
position: { x: "1670", y: "1120" }
},
{
name: "Imprerial Capital Nasca",
position: { x: "2070", y: "730" }
},
{
name: "Dwargon Gate",
position: { x: "1840", y: "880" }
},
{
name: "Amrita",
url: "https://tensura.fandom.com/wiki/Amrita",
position: { x: "2280", y: "1000" }
},
{
name: "City of the forgotten Dragon",
position: { x: "2070", y: "1240" }
},
{
name: "Laura",
position: { x: "1960", y: "1325" }
},
{
name: "Jia",
position: { x: "1670", y: "1480" }
},
{
name: "Elmine Sarion",
position: { x: "1395", y: "1360" }
},
{
name: "Londo",
position: { x: "1500", y: "1050" }
},
{
name: "Marris",
position: { x: "1455", y: "870" }
},
{
name: "Frost Palace",
url: "https://tensura.fandom.com/wiki/Frost_Palace",
position: { x: "1200", y: "320" }
},
{
name: "Golden City of El Dorado",
url: "https://tensura.fandom.com/wiki/Golden_City_of_El_Dorado",
position: { x: "800", y: "1565" }
},
]