-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nuzlocke: add MapToLocationIndex (no use yet)
- Loading branch information
Showing
5 changed files
with
137 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
PalletTown_LOCATION EQU $00 | ||
ViridianCity_LOCATION EQU $01 | ||
PewterCity_LOCATION EQU $02 | ||
CeruleanCity_LOCATION EQU $03 | ||
LavenderTown_LOCATION EQU $04 | ||
VermilionCity_LOCATION EQU $05 | ||
CeladonCity_LOCATION EQU $06 | ||
FuchsiaCity_LOCATION EQU $07 | ||
CinnabarIsland_LOCATION EQU $08 | ||
IndigoPlateau_LOCATION EQU $09 | ||
SaffronCity_LOCATION EQU $0a | ||
Route1_LOCATION EQU $0b | ||
Route2_LOCATION EQU $0c | ||
Route3_LOCATION EQU $0d | ||
Route4_LOCATION EQU $0e | ||
Route5_LOCATION EQU $0f | ||
Route6_LOCATION EQU $10 | ||
Route7_LOCATION EQU $11 | ||
Route8_LOCATION EQU $12 | ||
Route9_LOCATION EQU $13 | ||
Route10_LOCATION EQU $14 | ||
Route11_LOCATION EQU $15 | ||
Route12_LOCATION EQU $16 | ||
Route13_LOCATION EQU $17 | ||
Route14_LOCATION EQU $18 | ||
Route15_LOCATION EQU $19 | ||
Route16_LOCATION EQU $1a | ||
Route17_LOCATION EQU $1b | ||
Route18_LOCATION EQU $1c | ||
Route19_LOCATION EQU $1d | ||
Route20_LOCATION EQU $1e | ||
Route21_LOCATION EQU $1f | ||
Route22_LOCATION EQU $20 | ||
Route23_LOCATION EQU $21 | ||
Route24_LOCATION EQU $22 | ||
Route25_LOCATION EQU $23 | ||
ViridianForest_LOCATION EQU $24 | ||
MountMoon_LOCATION EQU $25 | ||
RockTunnel_LOCATION EQU $26 | ||
SeaCottage_LOCATION EQU $27 | ||
SSAnne_LOCATION EQU $28 | ||
PokemonLeague_LOCATION EQU $29 | ||
UndergroundPath_LOCATION EQU $2a | ||
PokemonTower_LOCATION EQU $2b | ||
SeafoamIslands_LOCATION EQU $2c | ||
VictoryRoad_LOCATION EQU $2d | ||
DiglettsCave_LOCATION EQU $2e | ||
RocketHQ_LOCATION EQU $2f | ||
SilphCo_LOCATION EQU $30 | ||
PokemonMansion_LOCATION EQU $31 | ||
SafariZone_LOCATION EQU $32 | ||
CeruleanCave_LOCATION EQU $33 | ||
PowerPlant_LOCATION EQU $34 | ||
|
||
NUM_LOCATIONS EQU $35 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters