2023-06-13 02:43:52 +02:00
|
|
|
export interface NameIdentifierHash {
|
|
|
|
name: string
|
|
|
|
identifier: string
|
|
|
|
}
|
2023-06-23 01:39:47 +02:00
|
|
|
|
|
|
|
export interface Area {
|
|
|
|
name: string
|
|
|
|
identifier: string
|
|
|
|
can_explore: boolean
|
|
|
|
}
|
|
|
|
|
2023-06-13 02:43:52 +02:00
|
|
|
export interface Location {
|
|
|
|
location: NameIdentifierHash
|
2023-06-23 01:39:47 +02:00
|
|
|
area: Area
|
2023-06-13 02:43:52 +02:00
|
|
|
super_area: NameIdentifierHash
|
|
|
|
planet: NameIdentifierHash
|
|
|
|
}
|