chore(release): 0.2.5
[risinglegends.git] / src / shared / map.ts
1 export type City = {
2   id: number;
3   name: string;
4 }
5
6 export type LocationType = 'SERVICES' | 'STORES' | 'EXPLORE';
7
8 export type Location = {
9   id: number;
10   name: string;
11   city_id: number;
12   type: LocationType,
13   display_order: number;
14   event_name: string;
15 }
16
17 export type Path = {
18   starting_city: number;
19   ending_city: number;
20   starting_city_name: string;
21   ending_city_name: string;
22   distance: number;
23 }
24
25 export type TravelDTO = {
26   things: any[],
27   nextAction: number,
28   walkingText: string,
29   closestTown: number;
30 }
31
32 export const STEP_DELAY = 3000;