Initial commit for Location Code refactor

This commit is contained in:
danielyxie
2019-03-27 01:31:47 -07:00
parent b4057fcb26
commit 75bc34208c
13 changed files with 541 additions and 117 deletions
+5 -12
View File
@@ -1,14 +1,7 @@
import { IMap } from "../types";
/**
* Display Location Content when visiting somewhere in the World
* Map of all Cities in the game
* Key = City Name, Value = City object
*/
// tslint:disable-next-line:variable-name
export const Cities: IMap<string> = {
Aevum: "Aevum",
Chongqing: "Chongqing",
Ishima: "Ishima",
NewTokyo: "New Tokyo",
Sector12: "Sector-12",
Volhaven: "Volhaven",
};
export interface IMetadata = {
name: string;
}