mirror of
https://github.com/chase-manning/pokemon-js.git
synced 2025-11-14 22:28:06 +00:00
🚀 add mt moon 3f map
This commit is contained in:
parent
4ff90e594a
commit
32c7fbf33a
3 changed files with 5 additions and 0 deletions
2
TODO.md
2
TODO.md
|
|
@ -3,6 +3,8 @@
|
|||
- Implement moon stone
|
||||
- Map 2f is only half done, finish that
|
||||
- Add support for invisible items
|
||||
- Stop manual encounters after defeated trainer
|
||||
- Outros aren't playing
|
||||
|
||||
===========
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ import route3 from "./route-3";
|
|||
import route3PokemonCenter from "./route-3-pokemon-center";
|
||||
import mtMoon1f from "./mt-moon-1f";
|
||||
import mtMoon2f from "./mt-moon-2f";
|
||||
import mtMoon3f from "./mt-moon-3f";
|
||||
|
||||
const mapData: Record<string, MapType> = {
|
||||
[MapId.PalletTown]: palletTown,
|
||||
|
|
@ -61,6 +62,7 @@ const mapData: Record<string, MapType> = {
|
|||
[MapId.Route3PokemonCenter]: route3PokemonCenter,
|
||||
[MapId.MtMoon1f]: mtMoon1f,
|
||||
[MapId.MtMoon2f]: mtMoon2f,
|
||||
[MapId.MtMoon3f]: mtMoon3f,
|
||||
};
|
||||
|
||||
export default mapData;
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ export enum MapId {
|
|||
Route3PokemonCenter = "route-3-pokemon-center",
|
||||
MtMoon1f = "mt-moon-1f",
|
||||
MtMoon2f = "mt-moon-2f",
|
||||
MtMoon3f = "mt-moon-3f",
|
||||
}
|
||||
|
||||
export interface PokemonMinimalType {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue