mirror of
https://github.com/chase-manning/pokemon-js.git
synced 2025-10-22 03:36:53 +00:00
🚀 add pewter city map
This commit is contained in:
parent
0928823e77
commit
3cabbdb2db
3 changed files with 9 additions and 1 deletions
|
@ -16,6 +16,7 @@ import viridianCityGym from "./viridian-city-gym";
|
|||
import viridianCityNpcHouse from "./viridian-city-npc-house";
|
||||
import viridianCityPokeMart from "./viridian-city-poke-mart";
|
||||
import viridianCityPokemonCenter from "./viridian-city-pokemon-center";
|
||||
import pewterCity from "./pewter-city";
|
||||
|
||||
const mapData: Record<string, MapType> = {
|
||||
[MapId.PalletTown]: palletTown,
|
||||
|
@ -35,6 +36,7 @@ const mapData: Record<string, MapType> = {
|
|||
[MapId.Route2]: route2,
|
||||
[MapId.Route2Gate]: route2Gate,
|
||||
[MapId.ViridianForrest]: viridianForrest,
|
||||
[MapId.PewterCity]: pewterCity,
|
||||
};
|
||||
|
||||
export default mapData;
|
||||
|
|
|
@ -20,6 +20,7 @@ export enum MapId {
|
|||
Route2 = "route-2",
|
||||
Route2Gate = "route-2-gate",
|
||||
ViridianForrest = "viridian-forrest",
|
||||
PewterCity = "pewter-city",
|
||||
}
|
||||
|
||||
export interface PokemonMinimalType {
|
||||
|
|
|
@ -170,7 +170,12 @@ const viridianForrest: MapType = {
|
|||
2: ["LEAVING VIRIDIAN FOREST", "PEWTER CITY AHEAD"],
|
||||
},
|
||||
},
|
||||
maps: {},
|
||||
maps: {
|
||||
0: {
|
||||
1: MapId.PewterCity,
|
||||
2: MapId.PewterCity,
|
||||
},
|
||||
},
|
||||
exits: {
|
||||
47: [15, 16, 17, 18],
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue