mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-03-21 17:45:52 -05:00
Some checks failed
CI / build (push) Has been cancelled
* Sporadic constantifying and function naming * Added bank 14 * Delete .DS_Store files * Delete EOL whitespace * Use Tab indents instead of four spaces * Identify some routines * Identify more stuff * Identified party and box structs * Identified wBattleMon and wEnemyMon structs * Macro'd landmarks, cleaned up comments --------- Co-authored-by: vulcandth <vulcandth@gmail.com>
26 lines
594 B
NASM
26 lines
594 B
NASM
; Fly point indexes (see data/flypoint)
|
|
const_def
|
|
|
|
const FLY_POINT_SILENT_HILL ; 0
|
|
const FLY_POINT_OLD ; 1
|
|
const FLY_POINT_WEST ; 2
|
|
const FLY_POINT_HAITEKU ; 3
|
|
const FLY_POINT_FONTO ; 4
|
|
const FLY_POINT_BAADON ; 5
|
|
const FLY_POINT_NEWTYPE ; 6
|
|
const FLY_POINT_SUGAR ; 7
|
|
const FLY_POINT_BULL_FOREST ; 8
|
|
const FLY_POINT_STAND ; 9
|
|
const FLY_POINT_KANTO ; 10
|
|
const FLY_POINT_PRINCE ; 11
|
|
const FLY_POINT_MT_FUJI ; 12
|
|
const FLY_POINT_SOUTH ; 13
|
|
const FLY_POINT_NORTH ; 14
|
|
|
|
; Unused?
|
|
|
|
const FLY_POINT_ROUTE_15 ; 15
|
|
const FLY_POINT_ROUTE_18 ; 16
|
|
|
|
DEF FLY_POINT_N_A EQU $FF
|