Update universe json with real data

This commit is contained in:
2025-06-14 02:04:05 +02:00
parent 74c223d11b
commit f657ca6990
3 changed files with 876 additions and 147 deletions

View File

@@ -1,125 +0,0 @@
export const galaxyData = {
regions: [
{ id: 'outer-ring', name: 'Outer Ring' },
{ id: 'syndicate', name: 'Syndicate' },
{ id: 'fountain', name: 'Fountain' },
{ id: 'cloud-ring', name: 'Cloud Ring' },
{ id: 'fade', name: 'Fade' },
{ id: 'pure-blind', name: 'Pure Blind' },
{ id: 'deklein', name: 'Deklein' },
{ id: 'branch', name: 'Branch' },
{ id: 'tenal', name: 'Tenal' },
{ id: 'venal', name: 'Venal' },
{ id: 'tribute', name: 'Tribute' },
{ id: 'vale-of-silent', name: 'Vale of the Silent' },
{ id: 'geminate', name: 'Geminate' },
{ id: 'the-citadel', name: 'The Citadel' },
{ id: 'the-forge', name: 'The Forge' },
{ id: 'lonetrek', name: 'Lonetrek' }
],
nodePositions: {
'outer-ring': { x: 150, y: 200 },
'syndicate': { x: 250, y: 350 },
'fountain': { x: 120, y: 400 },
'cloud-ring': { x: 320, y: 220 },
'fade': { x: 450, y: 180 },
'pure-blind': { x: 480, y: 250 },
'deklein': { x: 450, y: 130 },
'branch': { x: 550, y: 100 },
'tenal': { x: 650, y: 120 },
'venal': { x: 580, y: 170 },
'tribute': { x: 580, y: 220 },
'vale-of-silent': { x: 680, y: 260 },
'geminate': { x: 720, y: 320 },
'the-citadel': { x: 560, y: 370 },
'the-forge': { x: 660, y: 370 },
'lonetrek': { x: 580, y: 290 }
},
connections: [
{ from: 'outer-ring', to: 'syndicate' },
{ from: 'outer-ring', to: 'fountain' },
{ from: 'syndicate', to: 'cloud-ring' },
{ from: 'cloud-ring', to: 'fade' },
{ from: 'cloud-ring', to: 'pure-blind' },
{ from: 'fade', to: 'pure-blind' },
{ from: 'fade', to: 'deklein' },
{ from: 'deklein', to: 'branch' },
{ from: 'branch', to: 'tenal' },
{ from: 'tenal', to: 'venal' },
{ from: 'venal', to: 'tribute' },
{ from: 'pure-blind', to: 'tribute' },
{ from: 'tribute', to: 'vale-of-silent' },
{ from: 'vale-of-silent', to: 'geminate' },
{ from: 'tribute', to: 'lonetrek' },
{ from: 'lonetrek', to: 'the-citadel' },
{ from: 'lonetrek', to: 'the-forge' },
{ from: 'the-citadel', to: 'the-forge' },
{ from: 'geminate', to: 'the-forge' }
]
};
export const regionData: Record<string, any> = {
'the-forge': {
name: 'The Forge',
systems: [
{ id: 'jita', name: 'Jita' },
{ id: 'perimeter', name: 'Perimeter' },
{ id: 'sobaseki', name: 'Sobaseki' },
{ id: 'urlen', name: 'Urlen' },
{ id: 'maurasi', name: 'Maurasi' },
{ id: 'kimotoro', name: 'Kimotoro' },
{ id: 'new-caldari', name: 'New Caldari' },
{ id: 'outuni', name: 'Outuni' }
],
nodePositions: {
'jita': { x: 600, y: 400 },
'perimeter': { x: 550, y: 350 },
'sobaseki': { x: 650, y: 350 },
'urlen': { x: 500, y: 400 },
'maurasi': { x: 700, y: 400 },
'kimotoro': { x: 600, y: 300 },
'new-caldari': { x: 600, y: 500 },
'outuni': { x: 550, y: 450 }
},
connections: [
{ from: 'jita', to: 'perimeter' },
{ from: 'jita', to: 'sobaseki' },
{ from: 'jita', to: 'urlen' },
{ from: 'jita', to: 'maurasi' },
{ from: 'jita', to: 'kimotoro' },
{ from: 'jita', to: 'new-caldari' },
{ from: 'perimeter', to: 'kimotoro' },
{ from: 'perimeter', to: 'outuni' },
{ from: 'sobaseki', to: 'maurasi' },
{ from: 'new-caldari', to: 'outuni' }
]
},
'syndicate': {
name: 'Syndicate',
systems: [
{ id: 'poitot', name: 'Poitot' },
{ id: '6-cz49', name: '6-CZ49' },
{ id: 'x-7omm', name: 'X-7OMM' },
{ id: 'pc9-ay', name: 'PC9-AY' },
{ id: 'mj-5f9', name: 'MJ-5F9' },
{ id: 'f-88pk', name: 'F-88PK' }
],
nodePositions: {
'poitot': { x: 600, y: 400 },
'6-cz49': { x: 500, y: 350 },
'x-7omm': { x: 700, y: 350 },
'pc9-ay': { x: 550, y: 300 },
'mj-5f9': { x: 650, y: 300 },
'f-88pk': { x: 600, y: 250 }
},
connections: [
{ from: 'poitot', to: '6-cz49' },
{ from: 'poitot', to: 'x-7omm' },
{ from: '6-cz49', to: 'pc9-ay' },
{ from: 'x-7omm', to: 'mj-5f9' },
{ from: 'pc9-ay', to: 'f-88pk' },
{ from: 'mj-5f9', to: 'f-88pk' }
]
}
};