-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
119 lines (119 loc) · 3.34 KB
/
db.json
File metadata and controls
119 lines (119 loc) · 3.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"spaceShips": [
{
"id": 1,
"es_name": "Halcón Milenario",
"en_name": "Millennium Falcon",
"es_manufacturer": "Corporación Corelliana de Ingeniería",
"en_manufacturer": "Corellian Engineering Corporation",
"es_model": "Carguero ligero YT-1300f/YT-1300p",
"en_model": "Light freighter YT-1300f/YT-1300p",
"es_type": "Carguero ligero",
"en_type": "Light freighter",
"img": "/assets/ships/Halcon-Milenario.jpg"
},
{
"id": 2,
"es_name": "Cazador de Cabezas Z-95",
"en_name": "Headhunter Z-95",
"es_manufacturer": "Corporación Incom",
"en_manufacturer": "Incom Corporation",
"es_model": "Cazador de Cabezas Z-95",
"en_model": "Headhunter Z-95",
"es_type": "Star hunting",
"en_type": "Caza estelar",
"img": "/assets/ships/caza_cabezas.jpg"
},
{
"es_name": "Caza TIE",
"en_name": "Caza TIE",
"es_manufacturer": "Sistemas de Flota Sienar",
"en_manufacturer": "Sienar Fleet Systems",
"es_model": "Caza estelar Motor de Iones Gemelos/LN",
"en_model": "Starfighter Twin Ion Engine/LN",
"es_type": "Caza",
"en_type": "Starfighter",
"img": "https://cdn.hobbyconsolas.com/sites/navi.axelspringer.es/public/styles/1200/public/media/image/2021/04/cazas-tie-star-wars-2299707.jpg?itok=gb68lsMb",
"id": 3
}
],
"planets": [
{
"id": 1,
"name": "Coruscant",
"suns": "Corcuscant Prime",
"coords": "L-9",
"es_type": "Terrestre",
"en_type": "Terrestrial",
"es_atmosphere": "Respirable",
"en_atmosphere": "Breathable",
"es_weather": "Templado",
"en_weather": "Tempering",
"es_gravity": "Estandar",
"en_gravity": "Standard",
"img": "/assets/planets/Coruscant.jpg"
},
{
"id": 2,
"name": "Tatooine",
"suns": "Tatto 1 & Tatto 2",
"coords": "X-3",
"es_type": "Desertico",
"en_type": "Desertic",
"es_atmosphere": "Respirable",
"en_atmosphere": "Breathable",
"es_weather": "Calido",
"en_weather": "Warm",
"es_gravity": "Estandar",
"en_gravity": "Standard",
"img": "/assets/planets/Tatooine.jpg"
},
{
"name": "Manolo",
"suns": "Manolo Prime",
"coords": "M-axolo-2",
"es_type": "Oceanico",
"en_type": "Oceanic",
"es_atmosphere": "Respirable",
"en_atmosphere": "Breathable",
"es_weather": "Terrible",
"en_weather": "Terrible",
"es_gravity": "Estandar",
"en_gravity": "Standard",
"img": "https://static.nationalgeographic.es/files/styles/image_3200/public/940.jpg?w=1900&h=1427",
"id": 3
}
],
"smugglers": [
{
"id": 1,
"name": "Han Solo",
"home_planet": "Cornelia",
"specie": "Humano",
"genre": 0,
"img": "/assets/smugglers/Han_Solo.jpg",
"spaceship": 1,
"planet": 2
},
{
"id": 2,
"name": "Mara Jade",
"home_planet": "Coruscant",
"specie": "Humano",
"genre": 1,
"img": "/assets/smugglers/Mara_Jade_Sable.jpg",
"spaceship": 2,
"planet": 1
},
{
"id": 3,
"name": "Chewbacca",
"home_planet": "Kashyyyk",
"specie": "Wookiee",
"genre": 0,
"img": "/assets/smugglers/Cheewaca.jpg",
"spaceship": 1,
"planet": 1
}
]
}