🚀 add mt moon 3f map

This commit is contained in:
Chase Manning 2023-10-10 11:29:01 +01:00
commit 32c7fbf33a
3 changed files with 5 additions and 0 deletions

View file

@ -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
===========

View file

@ -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;

View file

@ -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 {