2013-10-10 00:24:02 -07:00
|
|
|
INCLUDE "includes.asm"
|
2016-01-07 15:45:32 -08:00
|
|
|
INCLUDE "macros/wram.asm"
|
2015-10-17 09:58:26 -07:00
|
|
|
INCLUDE "vram.asm"
|
2014-03-04 18:41:30 -08:00
|
|
|
|
2017-03-24 04:51:03 -07:00
|
|
|
SECTION "Stack", WRAM0
|
2015-02-08 00:03:32 -08:00
|
|
|
wc000::
|
2015-10-16 10:35:43 -07:00
|
|
|
StackBottom::
|
2015-10-19 13:49:29 -07:00
|
|
|
ds $100 - 1
|
2014-09-19 12:44:48 -07:00
|
|
|
Stack::
|
2015-10-16 10:35:43 -07:00
|
|
|
StackTop::
|
2014-09-19 12:44:48 -07:00
|
|
|
ds 1
|
2014-03-04 18:41:30 -08:00
|
|
|
|
|
|
|
|
2017-03-24 04:51:03 -07:00
|
|
|
SECTION "Audio", WRAM0
|
2016-01-17 21:39:01 -08:00
|
|
|
wMusic::
|
2014-03-04 18:41:30 -08:00
|
|
|
MusicPlaying:: ; c100
|
|
|
|
; nonzero if playing
|
|
|
|
ds 1
|
2012-10-08 23:32:05 -07:00
|
|
|
|
2014-03-04 18:41:30 -08:00
|
|
|
Channels::
|
2014-06-12 19:32:58 -07:00
|
|
|
Channel1:: channel_struct Channel1 ; c101
|
|
|
|
Channel2:: channel_struct Channel2 ; c133
|
|
|
|
Channel3:: channel_struct Channel3 ; c165
|
|
|
|
Channel4:: channel_struct Channel4 ; c197
|
2012-10-08 23:32:05 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
SFXChannels::
|
2014-06-12 19:32:58 -07:00
|
|
|
Channel5:: channel_struct Channel5 ; c1c9
|
|
|
|
Channel6:: channel_struct Channel6 ; c1fb
|
|
|
|
Channel7:: channel_struct Channel7 ; c22d
|
|
|
|
Channel8:: channel_struct Channel8 ; c25f
|
|
|
|
|
|
|
|
ds 1 ; c291
|
2015-12-07 08:28:58 -08:00
|
|
|
wCurTrackDuty:: ds 1
|
|
|
|
wCurTrackIntensity:: ds 1
|
|
|
|
wCurTrackFrequency:: dw
|
2016-01-17 21:39:01 -08:00
|
|
|
wc296:: ds 1 ; BCD value, dummied out
|
2016-05-10 11:33:24 -07:00
|
|
|
wCurNoteDuration:: ds 1 ; used in MusicE0 and LoadNote
|
2012-10-08 23:32:05 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
CurMusicByte:: ; c298
|
2012-11-02 15:43:05 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
CurChannel:: ; c299
|
2012-11-02 15:43:05 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
Volume:: ; c29a
|
2012-10-08 23:32:05 -07:00
|
|
|
; corresponds to $ff24
|
|
|
|
; Channel control / ON-OFF / Volume (R/W)
|
|
|
|
; bit 7 - Vin->SO2 ON/OFF
|
|
|
|
; bit 6-4 - SO2 output level (volume) (# 0-7)
|
|
|
|
; bit 3 - Vin->SO1 ON/OFF
|
|
|
|
; bit 2-0 - SO1 output level (volume) (# 0-7)
|
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
SoundOutput:: ; c29b
|
2012-11-02 15:43:05 -07:00
|
|
|
; corresponds to $ff25
|
|
|
|
; bit 4-7: ch1-4 so2 on/off
|
|
|
|
; bit 0-3: ch1-4 so1 on/off
|
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
SoundInput:: ; c29c
|
2012-11-02 15:43:05 -07:00
|
|
|
; corresponds to $ff26
|
|
|
|
; bit 7: global on/off
|
|
|
|
; bit 0: ch1 on/off
|
|
|
|
; bit 1: ch2 on/off
|
|
|
|
; bit 2: ch3 on/off
|
|
|
|
; bit 3: ch4 on/off
|
|
|
|
ds 1
|
2012-10-08 23:32:05 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
MusicID::
|
|
|
|
MusicIDLo:: ; c29d
|
2012-10-08 23:32:05 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
MusicIDHi:: ; c29e
|
2012-10-08 23:32:05 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
MusicBank:: ; c29f
|
2012-10-08 23:32:05 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
NoiseSampleAddress::
|
|
|
|
NoiseSampleAddressLo:: ; c2a0
|
2012-11-02 15:43:05 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
NoiseSampleAddressHi:: ; c2a1
|
2012-11-02 15:43:05 -07:00
|
|
|
ds 1
|
2015-12-07 08:28:58 -08:00
|
|
|
wNoiseSampleDelay:: ; noise delay? ; c2a2
|
2012-11-02 15:43:05 -07:00
|
|
|
ds 1
|
|
|
|
; c2a3
|
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
MusicNoiseSampleSet:: ; c2a4
|
2012-11-02 15:43:05 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
SFXNoiseSampleSet:: ; c2a5
|
2012-11-02 15:43:05 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
Danger:: ; c2a6
|
2012-12-14 00:00:10 -08:00
|
|
|
; bit 7: on/off
|
|
|
|
; bit 4: pitch
|
|
|
|
; bit 0-3: counter
|
2012-11-02 15:43:05 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
MusicFade:: ; c2a7
|
2012-11-02 15:43:05 -07:00
|
|
|
; fades volume over x frames
|
|
|
|
; bit 7: fade in/out
|
|
|
|
; bit 0-5: number of frames for each volume level
|
|
|
|
; $00 = none (default)
|
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
MusicFadeCount:: ; c2a8
|
2012-11-02 15:43:05 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
MusicFadeID::
|
2015-02-08 00:03:32 -08:00
|
|
|
wc2a9::
|
2014-02-01 17:26:39 -08:00
|
|
|
MusicFadeIDLo:: ; c2a9
|
2012-11-02 15:43:05 -07:00
|
|
|
ds 1
|
2015-02-08 00:03:32 -08:00
|
|
|
wc2aa::
|
2014-02-01 17:26:39 -08:00
|
|
|
MusicFadeIDHi:: ; c2aa
|
2012-11-02 15:43:05 -07:00
|
|
|
ds 1
|
2013-02-23 13:47:39 -08:00
|
|
|
ds 5
|
2014-02-01 17:26:39 -08:00
|
|
|
CryPitch:: ; c2b0
|
2014-07-18 09:50:31 -07:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
CryLength:: ; c2b2
|
2013-02-23 13:47:39 -08:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
LastVolume:: ; c2b4
|
2012-11-02 15:43:05 -07:00
|
|
|
ds 1
|
2015-02-08 00:03:32 -08:00
|
|
|
wc2b5:: ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
SFXPriority:: ; c2b6
|
2012-11-02 15:43:05 -07:00
|
|
|
; if nonzero, turn off music when playing sfx
|
|
|
|
ds 1
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 1
|
2015-12-07 15:33:04 -08:00
|
|
|
Channel1JumpCondition:: ds 1
|
|
|
|
Channel2JumpCondition:: ds 1
|
|
|
|
Channel3JumpCondition:: ds 1
|
|
|
|
Channel4JumpCondition:: ds 1
|
2016-03-01 19:31:21 -08:00
|
|
|
wStereoPanningMask:: ds 1 ; c2bc
|
2014-02-01 17:26:39 -08:00
|
|
|
CryTracks:: ; c2bd
|
2012-11-02 15:43:05 -07:00
|
|
|
; plays only in left or right track depending on what side the monster is on
|
|
|
|
; both tracks active outside of battle
|
|
|
|
ds 1
|
2015-12-23 14:10:50 -08:00
|
|
|
wSFXDuration:: ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
CurSFX:: ; c2bf
|
2012-10-11 17:35:22 -07:00
|
|
|
; id of sfx currently playing
|
|
|
|
ds 1
|
2016-03-01 19:31:21 -08:00
|
|
|
ChannelsEnd::
|
2014-05-21 13:21:46 -07:00
|
|
|
wMapMusic:: ; c2c0
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2012-10-08 23:32:05 -07:00
|
|
|
|
2015-12-26 15:11:55 -08:00
|
|
|
wDontPlayMapMusicOnReload:: ds 1
|
2016-01-17 21:39:01 -08:00
|
|
|
wMusicEnd::
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2017-03-24 04:51:03 -07:00
|
|
|
SECTION "WRAM", WRAM0
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2014-07-18 05:33:27 -07:00
|
|
|
wLZAddress:: dw ; c2c2
|
|
|
|
wLZBank:: db ; c2c4
|
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 1
|
2014-07-18 05:33:27 -07:00
|
|
|
|
2015-12-19 11:48:30 -08:00
|
|
|
wBoxAlignment:: ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
InputType:: ; c2c7
|
2012-12-23 00:21:19 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
AutoInputAddress:: ; c2c8
|
2012-12-23 00:21:19 -08:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
AutoInputBank:: ; c2ca
|
2012-12-23 00:21:19 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
AutoInputLength:: ; c2cb
|
2012-12-23 00:21:19 -08:00
|
|
|
ds 1
|
2012-10-08 23:32:05 -07:00
|
|
|
|
2015-12-26 15:11:55 -08:00
|
|
|
wMonStatusFlags:: ds 1
|
2016-05-08 11:11:24 -07:00
|
|
|
wGameLogicPaused:: ds 1 ; c2cd
|
2015-11-25 07:16:29 -08:00
|
|
|
wSpriteUpdatesEnabled:: ds 1
|
2015-02-10 15:14:21 -08:00
|
|
|
wc2cf:: ds 1
|
2015-12-14 17:06:41 -08:00
|
|
|
wMapTimeOfDay:: ds 1
|
|
|
|
ds 3
|
2016-05-11 14:16:03 -07:00
|
|
|
wPrinterConnectionOpen:: ds 1
|
|
|
|
wPrinterOpcode:: ds 1
|
2015-11-29 18:34:59 -08:00
|
|
|
wLastDexEntry:: ds 1
|
2016-05-05 12:07:37 -07:00
|
|
|
wDisableTextAcceleration:: ds 1
|
2015-11-10 08:05:26 -08:00
|
|
|
wPreviousLandmark:: ds 1
|
|
|
|
wCurrentLandmark:: ds 1
|
|
|
|
wLandmarkSignTimer:: ds 2
|
2015-10-19 07:23:58 -07:00
|
|
|
wLinkMode:: ; c2dc
|
2012-12-23 00:21:19 -08:00
|
|
|
; 0 not in link battle
|
|
|
|
; 1 link battle
|
|
|
|
; 4 mobile battle
|
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
ScriptVar:: ; c2dd
|
2012-12-23 00:21:19 -08:00
|
|
|
ds 1
|
2012-09-10 20:36:50 -07:00
|
|
|
|
2015-12-29 10:15:58 -08:00
|
|
|
wPlayerNextMovement:: ds 1
|
|
|
|
wPlayerMovement:: ds 1
|
2015-11-13 15:59:49 -08:00
|
|
|
ds 2
|
2015-12-29 10:15:58 -08:00
|
|
|
wc2e2::
|
2015-11-02 08:15:32 -08:00
|
|
|
wMovementPerson:: ds 1
|
2015-11-11 20:38:57 -08:00
|
|
|
wMovementDataPointer:: ds 3 ; dba
|
2015-02-08 00:03:32 -08:00
|
|
|
wc2e6:: ds 4
|
2015-12-29 10:15:58 -08:00
|
|
|
wMovementByteWasControlSwitch:: ds 1
|
2015-11-11 20:38:57 -08:00
|
|
|
wMovementPointer:: ds 2 ; c2eb
|
2015-11-02 08:15:32 -08:00
|
|
|
ds 3
|
2015-11-14 11:41:47 -08:00
|
|
|
|
|
|
|
wTempObjectCopyMapObjectIndex:: ds 1 ; c2f0
|
|
|
|
wTempObjectCopySprite:: ds 1 ; c2f1
|
|
|
|
wTempObjectCopySpriteVTile:: ds 1 ; c2f2
|
|
|
|
wTempObjectCopyPalette:: ds 1 ; c2f3
|
|
|
|
wTempObjectCopyMovement:: ds 1 ; c2f4
|
|
|
|
wTempObjectCopyRange:: ds 1 ; c2f5
|
|
|
|
wTempObjectCopyX:: ds 1 ; c2f6
|
|
|
|
wTempObjectCopyY:: ds 1 ; c2f7
|
|
|
|
wTempObjectCopyRadius:: ds 1 ; c2f8
|
|
|
|
|
2015-11-11 20:38:57 -08:00
|
|
|
ds 1
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
TileDown:: ; c2fa
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
TileUp:: ; c2fb
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
TileLeft:: ; c2fc
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
TileRight:: ; c2fd
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
TilePermissions:: ; c2fe
|
2012-11-23 18:19:02 -08:00
|
|
|
; set if tile behavior prevents
|
|
|
|
; you from walking in that direction
|
|
|
|
; bit 3: down
|
|
|
|
; bit 2: up
|
|
|
|
; bit 1: left
|
|
|
|
; bit 0: right
|
|
|
|
ds 1
|
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 1
|
2015-11-11 11:12:46 -08:00
|
|
|
|
2015-12-04 05:46:11 -08:00
|
|
|
SECTION "wSpriteAnims", WRAM0 [$c300]
|
2015-11-11 11:12:46 -08:00
|
|
|
; wc300 - wc313 is a 10x2 dictionary.
|
2015-12-05 12:38:25 -08:00
|
|
|
; keys: taken from third column of SpriteAnimSeqData
|
2015-12-04 05:46:11 -08:00
|
|
|
; values: VTiles
|
2015-11-19 15:07:20 -08:00
|
|
|
wSpriteAnimDict:: ds 10 * 2
|
|
|
|
ds wSpriteAnimDict - @
|
2015-02-08 00:03:32 -08:00
|
|
|
wc300:: ds 1
|
|
|
|
wc301:: ds 1
|
|
|
|
wc302:: ds 1
|
|
|
|
wc303:: ds 2
|
|
|
|
wc305:: ds 1
|
|
|
|
wc306:: ds 1
|
|
|
|
wc307:: ds 1
|
|
|
|
wc308:: ds 1
|
|
|
|
wc309:: ds 1
|
|
|
|
wc30a:: ds 1
|
|
|
|
wc30b:: ds 1
|
|
|
|
wc30c:: ds 1
|
|
|
|
wc30d:: ds 1
|
|
|
|
wc30e:: ds 1
|
|
|
|
wc30f:: ds 1
|
|
|
|
wc310:: ds 1
|
|
|
|
wc311:: ds 1
|
|
|
|
wc312:: ds 1
|
|
|
|
wc313:: ds 1
|
2015-11-13 07:48:49 -08:00
|
|
|
wSpriteAnimationStructs::
|
2015-11-11 11:12:46 -08:00
|
|
|
; Field 0: Index
|
2015-12-05 12:38:25 -08:00
|
|
|
; Fields 1-3: Loaded from SpriteAnimSeqData
|
2015-11-13 07:48:49 -08:00
|
|
|
wc314::
|
|
|
|
SpriteAnim1:: sprite_anim_struct SpriteAnim1
|
|
|
|
wc324::
|
|
|
|
SpriteAnim2:: sprite_anim_struct SpriteAnim2
|
|
|
|
wc334::
|
|
|
|
SpriteAnim3:: sprite_anim_struct SpriteAnim3
|
|
|
|
wc344::
|
|
|
|
SpriteAnim4:: sprite_anim_struct SpriteAnim4
|
|
|
|
wc354::
|
|
|
|
SpriteAnim5:: sprite_anim_struct SpriteAnim5
|
|
|
|
wc364::
|
|
|
|
SpriteAnim6:: sprite_anim_struct SpriteAnim6
|
|
|
|
wc374::
|
|
|
|
SpriteAnim7:: sprite_anim_struct SpriteAnim7
|
|
|
|
wc384::
|
|
|
|
SpriteAnim8:: sprite_anim_struct SpriteAnim8
|
|
|
|
wc394::
|
|
|
|
SpriteAnim9:: sprite_anim_struct SpriteAnim9
|
|
|
|
wc3a4::
|
|
|
|
SpriteAnim10:: sprite_anim_struct SpriteAnim10
|
|
|
|
wSpriteAnimationStructsEnd::
|
2015-11-12 21:49:27 -08:00
|
|
|
ds -8
|
|
|
|
wc3ac:: ds 8 ; c3ac
|
2015-12-10 19:26:31 -08:00
|
|
|
wSpriteAnimCount:: ds 1
|
2015-12-05 12:38:25 -08:00
|
|
|
wCurrSpriteOAMAddr:: ds 1
|
2013-02-04 01:27:56 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
CurIcon:: ; c3b6
|
2013-02-04 01:27:56 -08:00
|
|
|
ds 1
|
2012-06-05 21:26:18 -07:00
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
|
2015-12-04 05:46:11 -08:00
|
|
|
wCurIconTile:: ds 1
|
|
|
|
wSpriteAnimAddrBackup::
|
|
|
|
wSpriteAnimIDBuffer::
|
|
|
|
wCurrSpriteAddSubFlags::
|
|
|
|
ds 2
|
2015-12-02 10:24:18 -08:00
|
|
|
wCurrAnimVTile:: ds 1
|
|
|
|
wCurrAnimXCoord:: ds 1
|
|
|
|
wCurrAnimYCoord:: ds 1
|
|
|
|
wCurrAnimXOffset:: ds 1
|
|
|
|
wCurrAnimYOffset:: ds 1
|
2015-12-02 14:59:05 -08:00
|
|
|
wGlobalAnimYOffset:: ds 1
|
|
|
|
wGlobalAnimXOffset:: ds 1
|
2015-11-19 15:07:20 -08:00
|
|
|
wSpriteAnimsEnd::
|
2015-11-12 21:49:27 -08:00
|
|
|
|
2016-01-10 14:44:09 -08:00
|
|
|
ds 11
|
2015-02-08 00:03:32 -08:00
|
|
|
wc3cc:: ds 1
|
|
|
|
wc3cd:: ds 31
|
|
|
|
wc3ec:: ds 1
|
|
|
|
wc3ed:: ds 1
|
|
|
|
wc3ee:: ds 1
|
|
|
|
wc3ef:: ds 1
|
|
|
|
wc3f0:: ds 1
|
|
|
|
wc3f1:: ds 1
|
|
|
|
wc3f2:: ds 1
|
|
|
|
wc3f3:: ds 1
|
|
|
|
wc3f4:: ds 1
|
|
|
|
wc3f5:: ds 1
|
|
|
|
wc3f6:: ds 1
|
|
|
|
wc3f7:: ds 1
|
|
|
|
wc3f8:: ds 1
|
|
|
|
wc3f9:: ds 1
|
|
|
|
wc3fa:: ds 1
|
|
|
|
wc3fb:: ds 1
|
|
|
|
wc3fc:: ds 4
|
2014-09-19 12:44:48 -07:00
|
|
|
|
|
|
|
|
|
|
|
SECTION "Sprites", WRAM0 [$c400]
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Sprites:: ; c400
|
2012-12-14 00:00:10 -08:00
|
|
|
; 4 bytes per sprite
|
|
|
|
; 40 sprites
|
|
|
|
; struct:
|
2014-09-19 12:44:48 -07:00
|
|
|
; y (px)
|
|
|
|
; x (px)
|
2012-12-14 00:00:10 -08:00
|
|
|
; tile id
|
|
|
|
; attributes:
|
|
|
|
; bit 7: priority
|
|
|
|
; bit 6: y flip
|
|
|
|
; bit 5: x flip
|
|
|
|
; bit 4: pal # (non-cgb)
|
|
|
|
; bit 3: vram bank (cgb only)
|
|
|
|
; bit 2-0: pal # (cgb only)
|
2014-06-12 18:32:42 -07:00
|
|
|
ds 4 * 40
|
2014-02-01 17:26:39 -08:00
|
|
|
SpritesEnd::
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2017-03-24 04:51:03 -07:00
|
|
|
SECTION "Tilemap", WRAM0
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
TileMap:: ; c4a0
|
2012-12-14 00:00:10 -08:00
|
|
|
; 20x18 grid of 8x8 tiles
|
2014-06-12 18:32:42 -07:00
|
|
|
ds SCREEN_WIDTH * SCREEN_HEIGHT
|
2014-02-01 17:26:39 -08:00
|
|
|
TileMapEnd::
|
2012-12-14 00:00:10 -08:00
|
|
|
|
|
|
|
|
2017-03-24 04:51:03 -07:00
|
|
|
SECTION "Battle", WRAM0
|
2016-01-12 09:46:18 -08:00
|
|
|
wc608::
|
2015-11-25 07:16:29 -08:00
|
|
|
wOddEgg:: party_struct OddEgg
|
2015-11-01 15:13:31 -08:00
|
|
|
wOddEggName:: ds PKMN_NAME_LENGTH
|
|
|
|
wOddEggOTName:: ds PKMN_NAME_LENGTH
|
2016-01-12 09:46:18 -08:00
|
|
|
ds wc608 - @
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2015-11-07 11:38:52 -08:00
|
|
|
wBT_OTTemp:: battle_tower_struct wBT_OTTemp
|
2016-01-12 09:46:18 -08:00
|
|
|
ds wc608 - @
|
2015-11-07 11:38:52 -08:00
|
|
|
|
2015-12-05 05:08:01 -08:00
|
|
|
hall_of_fame wHallOfFameTemp
|
2016-01-12 09:46:18 -08:00
|
|
|
ds wc608 - @
|
2015-11-26 18:05:32 -08:00
|
|
|
|
2015-12-14 08:12:18 -08:00
|
|
|
wMisc:: ; ds (SCREEN_WIDTH + 4) * (SCREEN_HEIGHT + 2)
|
2016-01-12 09:46:18 -08:00
|
|
|
ds 10
|
2016-01-10 14:44:09 -08:00
|
|
|
wc612::
|
2016-05-08 11:11:24 -07:00
|
|
|
ds 6
|
|
|
|
wc618::
|
|
|
|
ds 4
|
2016-01-10 14:44:09 -08:00
|
|
|
wInitHourBuffer:: ; c61c
|
|
|
|
ds 10
|
|
|
|
wc626::
|
|
|
|
ds wc608 - @
|
2012-06-05 21:26:18 -07:00
|
|
|
|
2016-01-12 09:46:18 -08:00
|
|
|
wBattle::
|
|
|
|
wEnemyMoveStruct:: move_struct wEnemyMoveStruct ; c608
|
|
|
|
wPlayerMoveStruct:: move_struct wPlayerMoveStruct ; c60f
|
2016-01-10 14:44:09 -08:00
|
|
|
|
2014-06-12 19:32:58 -07:00
|
|
|
EnemyMonNick:: ds PKMN_NAME_LENGTH ; c616
|
|
|
|
BattleMonNick:: ds PKMN_NAME_LENGTH ; c621
|
2013-03-26 02:22:22 -07:00
|
|
|
|
2014-06-12 18:32:42 -07:00
|
|
|
BattleMon:: battle_struct BattleMon ; c62c
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2015-12-07 08:28:58 -08:00
|
|
|
ds 2
|
2013-09-07 19:47:58 -07:00
|
|
|
|
2016-01-27 09:25:12 -08:00
|
|
|
wWildMon:: ds 1 ; c64e
|
2015-11-06 11:45:10 -08:00
|
|
|
ds 1
|
2016-01-27 09:25:12 -08:00
|
|
|
wEnemyTrainerItem1:: ds 1 ; c650
|
|
|
|
wEnemyTrainerItem2:: ds 1 ; c651
|
|
|
|
wEnemyTrainerBaseReward:: ds 1 ; c652
|
|
|
|
wEnemyTrainerAIFlags:: ds 3 ; c653
|
2016-01-17 21:39:01 -08:00
|
|
|
OTClassName:: ds NAME_LENGTH ; c656
|
2014-06-12 19:32:58 -07:00
|
|
|
|
|
|
|
ds 2
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
CurOTMon:: ; c663
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2015-11-07 18:04:54 -08:00
|
|
|
wBattleParticipantsNotFainted::
|
|
|
|
; Bit array. Bits 0 - 5 correspond to party members 1 - 6.
|
|
|
|
; Bit set if the mon appears in battle.
|
|
|
|
; Bit cleared if the mon faints.
|
|
|
|
; Backed up if the enemy switches.
|
|
|
|
; All bits cleared if the enemy faints.
|
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
TypeModifier:: ; c665
|
2013-03-26 02:22:22 -07:00
|
|
|
; >10: super-effective
|
|
|
|
; 10: normal
|
|
|
|
; <10: not very effective
|
2013-04-19 00:50:13 -07:00
|
|
|
; bit 7: stab
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
CriticalHit:: ; c666
|
2015-12-26 15:11:55 -08:00
|
|
|
; 0 if not critical
|
|
|
|
; 1 for a critical hit
|
|
|
|
; 2 for a OHKO
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
AttackMissed:: ; c667
|
2013-03-26 02:22:22 -07:00
|
|
|
; nonzero for a miss
|
|
|
|
ds 1
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerSubStatus1:: ; c668
|
2012-12-14 00:00:10 -08:00
|
|
|
; bit
|
|
|
|
; 7 attract
|
2016-10-28 16:57:58 -07:00
|
|
|
; 6 rollout
|
2012-12-14 00:00:10 -08:00
|
|
|
; 5 endure
|
|
|
|
; 4 perish song
|
2013-05-02 22:29:57 -07:00
|
|
|
; 3 identified
|
2012-12-14 00:00:10 -08:00
|
|
|
; 2 protect
|
|
|
|
; 1 curse
|
|
|
|
; 0 nightmare
|
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerSubStatus2:: ; c669
|
2013-03-26 02:22:22 -07:00
|
|
|
; bit
|
|
|
|
; 7
|
|
|
|
; 6
|
|
|
|
; 5
|
|
|
|
; 4
|
|
|
|
; 3
|
|
|
|
; 2
|
|
|
|
; 1
|
2013-03-26 22:52:04 -07:00
|
|
|
; 0 curled
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerSubStatus3:: ; c66a
|
2012-12-14 00:00:10 -08:00
|
|
|
; bit
|
2013-05-02 22:29:57 -07:00
|
|
|
; 7 confused
|
2013-03-26 02:22:22 -07:00
|
|
|
; 6 flying
|
|
|
|
; 5 underground
|
2012-12-14 00:00:10 -08:00
|
|
|
; 4 charged
|
2013-03-26 02:22:22 -07:00
|
|
|
; 3 flinch
|
2012-12-14 00:00:10 -08:00
|
|
|
; 2
|
|
|
|
; 1 rollout
|
|
|
|
; 0 bide
|
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerSubStatus4:: ; c66b
|
2012-12-14 00:00:10 -08:00
|
|
|
; bit
|
|
|
|
; 7 leech seed
|
2013-03-26 22:52:04 -07:00
|
|
|
; 6 rage
|
2012-12-14 00:00:10 -08:00
|
|
|
; 5 recharge
|
|
|
|
; 4 substitute
|
|
|
|
; 3
|
2013-03-26 02:22:22 -07:00
|
|
|
; 2 focus energy
|
2013-05-02 22:29:57 -07:00
|
|
|
; 1 mist
|
2016-10-28 16:57:58 -07:00
|
|
|
; 0 x accuracy
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerSubStatus5:: ; c66c
|
2013-03-26 02:22:22 -07:00
|
|
|
; bit
|
2013-05-02 23:42:25 -07:00
|
|
|
; 7 cant run
|
2013-03-26 22:52:04 -07:00
|
|
|
; 6 destiny bond
|
2013-03-26 02:22:22 -07:00
|
|
|
; 5 lock-on
|
2015-11-08 07:59:28 -08:00
|
|
|
; 4 encore
|
|
|
|
; 3 transformed
|
2013-03-26 02:22:22 -07:00
|
|
|
; 2
|
|
|
|
; 1
|
2013-05-02 22:29:57 -07:00
|
|
|
; 0 toxic
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemySubStatus1:: ; c66d
|
2012-12-14 00:00:10 -08:00
|
|
|
; see PlayerSubStatus1
|
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemySubStatus2:: ; c66e
|
2012-12-14 00:00:10 -08:00
|
|
|
; see PlayerSubStatus2
|
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemySubStatus3:: ; c66f
|
2012-12-14 00:00:10 -08:00
|
|
|
; see PlayerSubStatus3
|
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemySubStatus4:: ; c670
|
2012-12-14 00:00:10 -08:00
|
|
|
; see PlayerSubStatus4
|
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemySubStatus5:: ; c671
|
2012-12-14 00:00:10 -08:00
|
|
|
; see PlayerSubStatus5
|
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerRolloutCount:: ; c672
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerConfuseCount:: ; c673
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2014-06-17 12:52:32 -07:00
|
|
|
PlayerToxicCount:: ; c674
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerDisableCount:: ; c675
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerEncoreCount:: ; c676
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerPerishCount:: ; c677
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerFuryCutterCount:: ; c678
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerProtectCount:: ; c679
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyRolloutCount:: ; c67a
|
2013-04-19 00:50:13 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyConfuseCount:: ; c67b
|
2013-04-19 00:50:13 -07:00
|
|
|
ds 1
|
2014-06-17 12:52:32 -07:00
|
|
|
EnemyToxicCount:: ; c67c
|
2013-04-19 00:50:13 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyDisableCount:: ; c67d
|
2013-04-19 00:50:13 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyEncoreCount:: ; c67e
|
2013-04-19 00:50:13 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyPerishCount:: ; c67f
|
2013-04-19 00:50:13 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyFuryCutterCount:: ; c680
|
2013-04-19 00:50:13 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyProtectCount:: ; c681
|
2013-05-02 22:29:57 -07:00
|
|
|
ds 1
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerDamageTaken:: ; c682
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyDamageTaken:: ; c684
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 2
|
|
|
|
|
2016-01-12 09:46:18 -08:00
|
|
|
wBattleReward:: ds 3 ; c686
|
2015-12-23 17:46:23 -08:00
|
|
|
wBattleAnimParam::
|
2015-11-06 19:36:06 -08:00
|
|
|
wKickCounter::
|
2016-01-12 09:46:18 -08:00
|
|
|
wPresentPower:: ds 1 ; c689
|
2014-02-01 17:26:39 -08:00
|
|
|
BattleScriptBuffer:: ; c68a
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 40
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
BattleScriptBufferLoc:: ; c6b2
|
2013-03-22 01:08:47 -07:00
|
|
|
ds 2
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2016-01-12 09:46:18 -08:00
|
|
|
wTurnEnded:: ds 1 ; c6b4
|
2015-11-09 13:41:09 -08:00
|
|
|
ds 1
|
2013-06-13 13:10:39 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerStats:: ; c6b6
|
2016-05-15 18:50:31 -07:00
|
|
|
PlayerAttack:: ds 2
|
|
|
|
PlayerDefense:: ds 2
|
|
|
|
PlayerSpeed:: ds 2
|
|
|
|
PlayerSpAtk:: ds 2
|
|
|
|
PlayerSpDef:: ds 2
|
2013-06-13 13:10:39 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyStats:: ; c6c1
|
2016-05-15 18:50:31 -07:00
|
|
|
EnemyAttack:: ds 2
|
|
|
|
EnemyDefense:: ds 2
|
|
|
|
EnemySpeed:: ds 2
|
|
|
|
EnemySpAtk:: ds 2
|
|
|
|
EnemySpDef:: ds 2
|
2013-06-13 13:10:39 -07:00
|
|
|
ds 1
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerStatLevels:: ; c6cc
|
2012-12-14 00:00:10 -08:00
|
|
|
; 07 neutral
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerAtkLevel:: ; c6cc
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerDefLevel:: ; c6cd
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerSpdLevel:: ; c6ce
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerSAtkLevel:: ; c6cf
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2015-11-22 21:21:21 -08:00
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
wc6d0::
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerSDefLevel:: ; c6d0
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerAccLevel:: ; c6d1
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerEvaLevel:: ; c6d2
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
|
|
|
; c6d3
|
2016-01-09 20:41:03 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerStatLevelsEnd::
|
2013-03-26 02:22:22 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyStatLevels:: ; c6d4
|
2012-12-14 00:00:10 -08:00
|
|
|
; 07 neutral
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyAtkLevel:: ; c6d4
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyDefLevel:: ; c6d5
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemySpdLevel:: ; c6d6
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemySAtkLevel:: ; c6d7
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemySDefLevel:: ; c6d8
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyAccLevel:: ; c6d9
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyEvaLevel:: ; c6da
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2016-01-09 20:41:03 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyTurnsTaken:: ; c6dc
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerTurnsTaken:: ; c6dd
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
|
|
|
|
2014-06-10 23:08:07 -07:00
|
|
|
ds 1
|
|
|
|
|
|
|
|
PlayerSubstituteHP:: ; c6df
|
|
|
|
ds 1
|
|
|
|
EnemySubstituteHP:: ; c6e0
|
|
|
|
ds 1
|
|
|
|
|
2016-01-12 09:46:18 -08:00
|
|
|
wUnusedPlayerLockedMove:: ds 1 ; c6e1
|
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
CurPlayerMove:: ; c6e3
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
CurEnemyMove:: ; c6e4
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
LinkBattleRNCount:: ; c6e5
|
2012-12-14 00:00:10 -08:00
|
|
|
; how far through the prng stream
|
|
|
|
ds 1
|
|
|
|
|
2016-01-12 09:46:18 -08:00
|
|
|
wEnemyItemState:: ds 1 ; c6e6
|
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
CurEnemyMoveNum:: ; c6e9
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
|
|
|
|
2016-01-12 09:46:18 -08:00
|
|
|
wEnemyHPAtTimeOfPlayerSwitch:: ds 2 ; c6ea
|
2014-06-13 21:18:14 -07:00
|
|
|
wPayDayMoney:: ds 3 ; c6ec
|
|
|
|
|
2015-11-10 13:53:37 -08:00
|
|
|
wSafariMonAngerCount:: ds 1
|
2016-01-10 14:44:09 -08:00
|
|
|
wSafariMonEating:: ds 2
|
2015-11-06 19:36:06 -08:00
|
|
|
wEnemyBackupDVs:: ; used when enemy is transformed
|
2016-01-10 14:44:09 -08:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
AlreadyDisobeyed:: ; c6f4
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
DisabledMove:: ; c6f5
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyDisabledMove:: ; c6f6
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2016-01-12 09:46:18 -08:00
|
|
|
wWhichMonFaintedFirst:: ds 1
|
2012-12-14 00:00:10 -08:00
|
|
|
|
|
|
|
; exists so you can't counter on switch
|
2014-02-01 17:26:39 -08:00
|
|
|
LastEnemyCounterMove:: ; c6f8
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
LastPlayerCounterMove:: ; c6f9
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
|
|
|
|
2015-11-10 13:53:37 -08:00
|
|
|
wEnemyMinimized:: ds 1 ; c6fa
|
2013-03-27 15:50:10 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
AlreadyFailed:: ; c6fb
|
2013-03-27 15:50:10 -07:00
|
|
|
ds 1
|
|
|
|
|
2016-01-12 09:46:18 -08:00
|
|
|
wBattleParticipantsIncludingFainted:: ds 1 ; c6fc
|
|
|
|
wDanger:: ds 1 ; c6fd
|
2015-11-10 13:53:37 -08:00
|
|
|
wPlayerMinimized:: ds 1 ; c6fe
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerScreens:: ; c6ff
|
2013-05-02 22:29:57 -07:00
|
|
|
; bit
|
|
|
|
; 4 reflect
|
|
|
|
; 3 light screen
|
2013-05-06 08:41:12 -07:00
|
|
|
; 2 safeguard
|
2013-05-02 22:29:57 -07:00
|
|
|
; 0 spikes
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 1
|
2013-04-19 23:57:11 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyScreens:: ; c700
|
2013-05-02 22:29:57 -07:00
|
|
|
; see PlayerScreens
|
2013-04-19 23:57:11 -07:00
|
|
|
ds 1
|
|
|
|
|
2014-06-10 23:08:07 -07:00
|
|
|
PlayerSafeguardCount:: ; c701
|
2013-04-19 23:57:11 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerLightScreenCount:: ; c702
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerReflectCount:: ; c703
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 1
|
|
|
|
|
2016-01-12 09:46:18 -08:00
|
|
|
ds 1
|
2014-06-10 23:08:07 -07:00
|
|
|
EnemySafeguardCount:: ; c705
|
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyLightScreenCount:: ; c706
|
2013-04-27 14:12:23 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyReflectCount:: ; c707
|
2013-04-27 14:12:23 -07:00
|
|
|
ds 1
|
2016-01-12 09:46:18 -08:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
Weather:: ; c70a
|
2012-12-14 00:00:10 -08:00
|
|
|
; 00 normal
|
|
|
|
; 01 rain
|
|
|
|
; 02 sun
|
|
|
|
; 03 sandstorm
|
|
|
|
; 04 rain stopped
|
|
|
|
; 05 sunliight faded
|
|
|
|
; 06 sandstorm subsided
|
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
WeatherCount:: ; c70b
|
2012-12-14 00:00:10 -08:00
|
|
|
; # turns remaining
|
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
LoweredStat:: ; c70c
|
2013-06-13 13:10:39 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EffectFailed:: ; c70d
|
2013-06-13 13:10:39 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
FailedMessage:: ; c70e
|
2013-06-13 13:10:39 -07:00
|
|
|
ds 1
|
2016-01-12 09:46:18 -08:00
|
|
|
wEnemyGoesFirst:: ; c70f
|
2015-12-10 19:26:31 -08:00
|
|
|
ds 1
|
2014-06-12 18:32:42 -07:00
|
|
|
wPlayerIsSwitching:: ds 1 ; c710
|
|
|
|
wEnemyIsSwitching:: ds 1 ; c711
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerUsedMoves:: ; c712
|
2012-12-14 00:00:10 -08:00
|
|
|
; add a move that has been used once by the player
|
|
|
|
; added in order of use
|
2015-02-11 14:17:45 -08:00
|
|
|
ds NUM_MOVES
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2016-01-12 09:46:18 -08:00
|
|
|
wEnemyAISwitchScore:: ds 1 ; c716
|
|
|
|
wEnemySwitchMonParam:: ds 1 ; c717
|
|
|
|
wEnemySwitchMonIndex:: ds 1 ; c718
|
|
|
|
wTempLevel:: ds 1 ; c719
|
|
|
|
LastPlayerMon:: ds 1 ; c71a
|
2014-02-01 17:26:39 -08:00
|
|
|
LastPlayerMove:: ; c71b
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
LastEnemyMove:: ; c71c
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
|
|
|
|
2016-01-12 09:46:18 -08:00
|
|
|
wPlayerFutureSightCount:: ds 1 ; c71d
|
|
|
|
wEnemyFutureSightCount:: ds 1 ; c71e
|
|
|
|
wGivingExperienceToExpShareHolders:: ds 1 ; c71f
|
|
|
|
wBackupEnemyMonBaseStats:: ds 5 ; c720
|
|
|
|
wBackupEnemyMonCatchRate:: db ; c725
|
|
|
|
wBackupEnemyMonBaseExp:: db ; c726
|
|
|
|
wPlayerFutureSightDamage:: ds 2 ; c727
|
|
|
|
wEnemyFutureSightDamage:: ds 2 ; c729
|
|
|
|
wPlayerRageCounter:: ds 1 ; c72b
|
|
|
|
wEnemyRageCounter:: ds 1 ; c72c
|
|
|
|
wBeatUpHitAtLeastOnce:: ds 1 ; c72d
|
|
|
|
wPlayerTrappingMove:: ds 1 ; c72e
|
|
|
|
wEnemyTrappingMove:: ds 1 ; c72f
|
|
|
|
wPlayerWrapCount:: ds 1 ; c730
|
|
|
|
wEnemyWrapCount:: ds 1 ; c731
|
|
|
|
wPlayerCharging:: ds 1 ; c732
|
|
|
|
wEnemyCharging:: ds 1 ; c733
|
2014-02-01 17:26:39 -08:00
|
|
|
BattleEnded:: ; c734
|
2013-06-17 15:19:45 -07:00
|
|
|
ds 1
|
|
|
|
|
2016-01-12 09:46:18 -08:00
|
|
|
wWildMonMoves:: ds NUM_MOVES ; c735
|
|
|
|
wWildMonPP:: ds NUM_MOVES ; c739
|
|
|
|
wAmuletCoin:: ds 1 ; c73a
|
|
|
|
wSomeoneIsRampaging:: ds 1 ; c73b
|
|
|
|
wPlayerJustGotFrozen:: ds 1 ; c73c
|
|
|
|
wEnemyJustGotFrozen:: ds 1 ; c73d
|
2014-06-12 18:32:42 -07:00
|
|
|
wBattleEnd::
|
2016-01-09 13:28:22 -08:00
|
|
|
; Battle RAM
|
2013-06-17 15:19:45 -07:00
|
|
|
|
2016-01-09 13:28:22 -08:00
|
|
|
; c741
|
|
|
|
ds wc6d0 - @
|
|
|
|
wTrademons::
|
|
|
|
wPlayerTrademon:: trademon wPlayerTrademon
|
|
|
|
wOTTrademon:: trademon wOTTrademon
|
|
|
|
wTrademonsEnd::
|
2016-01-12 09:46:18 -08:00
|
|
|
wTradeAnimPointer::
|
2016-01-09 13:28:22 -08:00
|
|
|
ds 2
|
|
|
|
wLinkPlayer1Name:: ds NAME_LENGTH
|
|
|
|
wLinkPlayer2Name:: ds NAME_LENGTH
|
|
|
|
wLinkTradeSendmonSpecies:: ds 1
|
|
|
|
wLinkTradeGetmonSpecies:: ds 1
|
2015-02-08 00:03:32 -08:00
|
|
|
wc74e:: ds 107
|
|
|
|
wc7b9:: ds 1
|
|
|
|
wc7ba:: ds 1
|
2015-12-04 05:46:11 -08:00
|
|
|
wc7bb:: ds 2
|
|
|
|
wc7bd::
|
|
|
|
ds wc6d0 - @
|
2015-11-29 18:34:59 -08:00
|
|
|
|
2016-01-09 20:41:03 -08:00
|
|
|
; naming screen
|
2016-01-09 13:28:22 -08:00
|
|
|
wNamingScreenDestinationPointer:: ds 2 ; c6d0
|
|
|
|
wNamingScreenCurrNameLength:: ds 1 ; c6d2
|
|
|
|
wNamingScreenMaxNameLength:: ds 1 ; c6d3
|
|
|
|
wNamingScreenType:: ds 1 ; c6d4
|
|
|
|
wNamingScreenCursorObjectPointer:: ds 2 ; c6d5
|
|
|
|
wNamingScreenLastCharacter:: ds 1 ; c6d7
|
|
|
|
wNamingScreenStringEntryCoord:: ds 2 ; c6d8
|
|
|
|
ds wc6d0 - @
|
|
|
|
|
2016-01-09 20:41:03 -08:00
|
|
|
; pokegear
|
|
|
|
wPokegearPhoneLoadNameBuffer:: ds 1 ; c6d0
|
|
|
|
wPokegearPhoneCursorPosition:: ds 1 ; c6d1
|
|
|
|
wPokegearPhoneScrollPosition:: ds 1 ; c6d2
|
|
|
|
wPokegearPhoneSelectedPerson:: ds 1 ; c6d3
|
|
|
|
wPokegearPhoneSubmenuCursor:: ds 1 ; c6d4
|
|
|
|
wPokegearMapCursorObjectPointer:: ds 2 ; c6d5
|
2016-01-12 09:46:18 -08:00
|
|
|
wPokegearMapCursorLandmark:: ds 1 ; c6d7
|
|
|
|
wPokegearMapPlayerIconLandmark:: ds 1 ; c6d8
|
2016-01-09 20:41:03 -08:00
|
|
|
wPokegearRadioChannelBank:: ds 1 ; c6d9
|
|
|
|
wPokegearRadioChannelAddr:: ds 2 ; c6da
|
|
|
|
wPokegearRadioMusicPlaying:: ds 1 ; c6dc
|
|
|
|
ds wc6d0 - @
|
|
|
|
|
2016-01-09 13:28:22 -08:00
|
|
|
wSlots::
|
2016-01-09 20:41:03 -08:00
|
|
|
; Slot Machine
|
2016-01-09 13:28:22 -08:00
|
|
|
; c6d0
|
|
|
|
wReel1:: slot_reel wReel1
|
|
|
|
wReel2:: slot_reel wReel2
|
|
|
|
wReel3:: slot_reel wReel3
|
|
|
|
; c700
|
|
|
|
wReel1Stopped:: ds 3
|
|
|
|
wReel2Stopped:: ds 3
|
|
|
|
wReel3Stopped:: ds 3
|
|
|
|
wSlotBias:: ds 1
|
|
|
|
wSlotBet:: ds 1
|
|
|
|
wFirstTwoReelsMatching:: ds 1
|
|
|
|
wFirstTwoReelsMatchingSevens:: ds 1
|
|
|
|
wSlotMatched:: ds 1
|
|
|
|
wCurrReelStopped:: ds 3
|
|
|
|
wPayout:: ds 2
|
|
|
|
wCurrReelXCoord:: ds 1
|
|
|
|
wCurrReelYCoord:: ds 1
|
|
|
|
ds 2
|
|
|
|
wSlotBuildingMatch:: ds 1
|
|
|
|
wSlotsDataEnd::
|
|
|
|
ds 28
|
|
|
|
wSlotsEnd::
|
|
|
|
ds wSlots - @
|
|
|
|
|
|
|
|
; Card Flip
|
|
|
|
; c6d0
|
|
|
|
wCardFlip::
|
|
|
|
wDeck:: ds 24
|
|
|
|
wDeckEnd::
|
|
|
|
; c6e8
|
|
|
|
wCardFlipNumCardsPlayed:: ds 1
|
|
|
|
wCardFlipFaceUpCard:: ds 1
|
|
|
|
wDiscardPile:: ds 24
|
|
|
|
wDiscardPileEnd::
|
|
|
|
wCardFlipEnd::
|
|
|
|
ds wCardFlip - @
|
|
|
|
|
|
|
|
; Dummy Game
|
|
|
|
; c6d0
|
|
|
|
wDummyGame::
|
|
|
|
wDummyGameCards:: ds 9 * 5
|
|
|
|
wDummyGameCardsEnd::
|
|
|
|
wDummyGameLastCardPicked:: ds 1 ; c6fd
|
|
|
|
wDummyGameCard1:: ds 1 ; c6fe
|
|
|
|
wDummyGameCard2:: ds 1 ; c6ff
|
|
|
|
wDummyGameCard1Location:: ds 1 ; c700
|
|
|
|
wDummyGameCard2Location:: ds 1 ; c701
|
|
|
|
wDummyGameNumberTriesRemaining:: ds 1 ; c702
|
|
|
|
wDummyGameLastMatches:: ds 5 ; c703
|
|
|
|
wDummyGameCounter:: ds 1 ; c708
|
|
|
|
wDummyGameNumCardsMatched:: ds 1 ; c709
|
|
|
|
wDummyGameEnd::
|
|
|
|
ds wDummyGame - @
|
|
|
|
; Unown Puzzle
|
|
|
|
wUnownPuzzle::
|
|
|
|
wPuzzlePieces::
|
|
|
|
ds 6 * 6
|
|
|
|
wUnownPuzzleEnd::
|
|
|
|
|
|
|
|
ds wc6d0 - @
|
|
|
|
|
2015-11-29 18:34:59 -08:00
|
|
|
wPokedexDataStart::
|
|
|
|
wPokedexOrder:: ds NUM_POKEMON +- 1
|
|
|
|
wPokedexOrderEnd:: ds 6
|
|
|
|
wPokedexMetadata::
|
2016-01-09 17:51:14 -08:00
|
|
|
wDexListingScrollOffset:: ; offset of the first displayed entry from the start
|
|
|
|
wc7d0:: ds 1
|
2015-11-29 18:34:59 -08:00
|
|
|
wDexListingCursor::
|
|
|
|
wc7d1:: ds 1 ; Dex cursor
|
|
|
|
wDexListingEnd::
|
|
|
|
wc7d2:: ds 1 ; Last mon to display
|
2016-01-09 17:51:14 -08:00
|
|
|
wDexListingHeight:: ; number of entries displayed at once in the dex listing
|
|
|
|
wc7d3:: ds 1
|
2015-11-29 18:34:59 -08:00
|
|
|
wCurrentDexMode:: ; Pokedex Mode
|
2015-11-12 21:49:27 -08:00
|
|
|
wc7d4:: ds 1 ; Index of the topmost visible item in a scrolling menu
|
2016-01-09 17:51:14 -08:00
|
|
|
wDexSearchMonType1:: ds 1 ; first type to search
|
|
|
|
wDexSearchMonType2:: ds 1 ; second type to search
|
|
|
|
wDexSearchResultCount:: ds 1
|
|
|
|
wDexArrowCursorPosIndex:: ds 1
|
|
|
|
wDexArrowCursorDelayCounter:: ds 1
|
|
|
|
wDexArrowCursorBlinkCounter:: ds 1
|
2015-11-28 12:13:40 -08:00
|
|
|
wDexSearchSlowpokeFrame:: ds 1
|
2015-11-29 18:34:59 -08:00
|
|
|
wUnlockedUnownMode:: ds 1
|
2016-01-09 19:46:41 -08:00
|
|
|
wDexCurrentUnownIndex:: ds 1
|
|
|
|
wDexUnownCount:: ds 1
|
2016-01-09 17:51:14 -08:00
|
|
|
wDexConvertedMonType:: ds 1 ; mon type converted from dex search mon type
|
2016-05-17 05:40:42 -07:00
|
|
|
wDexListingScrollOffsetBackup:: ds 1
|
|
|
|
wDexListingCursorBackup:: ds 1
|
2015-11-29 18:34:59 -08:00
|
|
|
wBackupDexListingCursor::
|
2015-02-08 00:03:32 -08:00
|
|
|
wc7e2:: ds 1
|
2015-11-29 18:34:59 -08:00
|
|
|
wBackupDexListingPage::
|
2015-02-08 00:03:32 -08:00
|
|
|
wc7e3:: ds 1
|
2015-11-29 18:34:59 -08:00
|
|
|
wDexCurrentLocation::
|
2015-02-14 00:51:34 -08:00
|
|
|
wc7e4:: ds 1
|
|
|
|
IF DEF(CRYSTAL11)
|
|
|
|
wPokedexStatus::
|
2015-11-12 21:49:27 -08:00
|
|
|
ELSE
|
|
|
|
wPokedexDataEnd::
|
2015-02-14 00:51:34 -08:00
|
|
|
ENDC
|
2015-11-12 21:49:27 -08:00
|
|
|
ds 1
|
|
|
|
IF DEF(CRYSTAL11)
|
|
|
|
wPokedexDataEnd::
|
|
|
|
ENDC
|
|
|
|
ds 2
|
2015-08-19 21:14:15 -07:00
|
|
|
|
|
|
|
wMiscEnd::
|
|
|
|
|
2016-05-17 05:40:42 -07:00
|
|
|
wc7e8:: ds 24 ; ????
|
2014-09-19 12:44:48 -07:00
|
|
|
|
|
|
|
SECTION "Overworld Map", WRAM0 [$c800]
|
2015-02-08 00:03:32 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
OverworldMap:: ; c800
|
2015-11-15 12:53:49 -08:00
|
|
|
ds 1300
|
|
|
|
OverworldMapEnd::
|
|
|
|
ds OverworldMap - @
|
2015-02-08 00:03:32 -08:00
|
|
|
|
2016-05-11 14:16:03 -07:00
|
|
|
wGameboyPrinterRAM::
|
|
|
|
wGameboyPrinterScreen:: ds SCREEN_HEIGHT * SCREEN_WIDTH ; c800
|
|
|
|
wGameboyPrinterScreenEnd:: ; c968
|
|
|
|
ds wGameboyPrinterScreen - @
|
|
|
|
wGameboyPrinter2bppSource::
|
|
|
|
ds 40 tiles
|
|
|
|
wGameboyPrinter2bppSourceEnd::
|
|
|
|
wca80:: ds 1
|
|
|
|
wPrinterRowIndex:: ds 1
|
2016-06-06 15:23:00 -07:00
|
|
|
|
|
|
|
; Printer data header
|
2016-05-11 14:16:03 -07:00
|
|
|
wca82:: ds 1
|
|
|
|
wca83:: ds 1
|
|
|
|
wca84:: ds 1
|
|
|
|
wca85:: ds 1
|
|
|
|
wPrinterChecksum:: dw ; ca86
|
|
|
|
wPrinterHandshake:: ds 1
|
|
|
|
wPrinterStatusFlags::
|
|
|
|
; bit 7: set if error 1 (battery low)
|
|
|
|
; bit 6: set if error 4 (too hot or cold)
|
|
|
|
; bit 5: set if error 3 (paper jammed or empty)
|
|
|
|
; if this and the previous byte are both $ff: error 2 (connection error)
|
|
|
|
ds 1
|
|
|
|
|
|
|
|
wHandshakeFrameDelay:: ds 1
|
|
|
|
wPrinterSerialFrameDelay:: ds 1
|
|
|
|
wPrinterSendByteOffset:: dw
|
|
|
|
wPrinterSendByteCounter:: dw
|
|
|
|
|
|
|
|
; tilemap backup?
|
|
|
|
wPrinterTileMapBuffer:: ds SCREEN_HEIGHT * SCREEN_WIDTH ; ca90
|
|
|
|
wPrinterTileMapBufferEnd::
|
|
|
|
wPrinterStatus:: ds 1 ; cbf8
|
|
|
|
ds 1
|
|
|
|
wcbfa:: ds 1
|
|
|
|
wGBPrinterSettings:: ds 1
|
|
|
|
ds 16
|
|
|
|
wGameboyPrinterRAMEnd::
|
|
|
|
ds wGameboyPrinterRAM - @
|
|
|
|
|
2016-05-08 11:11:24 -07:00
|
|
|
wBillsPCPokemonList:: ; c800
|
2015-12-16 09:32:08 -08:00
|
|
|
; Pokemon, box number, list index
|
|
|
|
|
2015-12-14 17:06:41 -08:00
|
|
|
wMysteryGiftPartyTemp:: ; ds PARTY_LENGTH * (1 + 1 + NUM_MOVES)
|
|
|
|
wMysteryGiftStaging::
|
|
|
|
|
2015-12-20 09:54:08 -08:00
|
|
|
wLinkData:: ; ds $514
|
|
|
|
wLinkPlayerName:: ds NAME_LENGTH
|
|
|
|
wLinkPartyCount:: ds 1
|
|
|
|
wLinkPartySpecies:: ds PARTY_LENGTH
|
|
|
|
wLinkPartySpeciesEnd:: ds 1
|
|
|
|
|
|
|
|
wTimeCapsulePlayerData::
|
|
|
|
wTimeCapsulePartyMon1:: red_party_struct wTimeCapsulePartyMon1
|
|
|
|
wTimeCapsulePartyMon2:: red_party_struct wTimeCapsulePartyMon2
|
|
|
|
wTimeCapsulePartyMon3:: red_party_struct wTimeCapsulePartyMon3
|
|
|
|
wTimeCapsulePartyMon4:: red_party_struct wTimeCapsulePartyMon4
|
|
|
|
wTimeCapsulePartyMon5:: red_party_struct wTimeCapsulePartyMon5
|
|
|
|
wTimeCapsulePartyMon6:: red_party_struct wTimeCapsulePartyMon6
|
|
|
|
wTimeCapsulePartyMonOTNames:: ds PARTY_LENGTH * NAME_LENGTH
|
|
|
|
wTimeCapsulePartyMonNicks:: ds PARTY_LENGTH * PKMN_NAME_LENGTH
|
|
|
|
wTimeCapsulePlayerDataEnd::
|
|
|
|
ds wTimeCapsulePlayerData - @
|
|
|
|
|
|
|
|
wLinkPlayerData::
|
|
|
|
wLinkPlayerPartyMon1:: party_struct wLinkPlayerPartyMon1
|
|
|
|
wLinkPlayerPartyMon2:: party_struct wLinkPlayerPartyMon2
|
|
|
|
wLinkPlayerPartyMon3:: party_struct wLinkPlayerPartyMon3
|
|
|
|
wLinkPlayerPartyMon4:: party_struct wLinkPlayerPartyMon4
|
|
|
|
wLinkPlayerPartyMon5:: party_struct wLinkPlayerPartyMon5
|
|
|
|
wLinkPlayerPartyMon6:: party_struct wLinkPlayerPartyMon6
|
|
|
|
wLinkPlayerPartyMonOTNames:: ds PARTY_LENGTH * NAME_LENGTH
|
|
|
|
wLinkPlayerPartyMonNicks:: ds PARTY_LENGTH * PKMN_NAME_LENGTH
|
2015-12-21 11:10:16 -08:00
|
|
|
wLinkPlayerDataEnd::
|
|
|
|
ds $35d
|
2015-12-20 09:54:08 -08:00
|
|
|
|
|
|
|
wLinkDataEnd::
|
|
|
|
ds wLinkData - @
|
|
|
|
|
2015-11-15 12:53:49 -08:00
|
|
|
wc800:: ds 1
|
2015-02-08 00:03:32 -08:00
|
|
|
wc801:: ds 1
|
|
|
|
wc802:: ds 1
|
|
|
|
wc803:: ds 4
|
2015-12-06 19:36:09 -08:00
|
|
|
wc807:: ds 7
|
2015-12-14 17:06:41 -08:00
|
|
|
wc80e:: ds 1
|
2015-12-06 19:36:09 -08:00
|
|
|
wc80f:: ds 1
|
|
|
|
wc810:: ds 1
|
|
|
|
wc811:: ds 1
|
|
|
|
wc812:: ds 1
|
|
|
|
wc813:: ds 1
|
|
|
|
wc814:: ds 4
|
2015-02-08 00:03:32 -08:00
|
|
|
wc818:: ds 8
|
|
|
|
wc820:: ds 1
|
|
|
|
wc821:: ds 15
|
|
|
|
wc830:: ds 16
|
|
|
|
wc840:: ds 16
|
2015-11-22 21:21:21 -08:00
|
|
|
wMysteryGiftTrainerData:: ds (1 + 1 + NUM_MOVES) * PARTY_LENGTH + 2
|
2015-12-06 19:36:09 -08:00
|
|
|
wMysteryGiftTrainerDataEnd::
|
2015-11-22 21:21:21 -08:00
|
|
|
ds wMysteryGiftTrainerData - @
|
2015-02-08 00:03:32 -08:00
|
|
|
wc850:: ds 16
|
|
|
|
wc860:: ds 16
|
|
|
|
wc870:: ds 16
|
|
|
|
wc880:: ds 16
|
|
|
|
wc890:: ds 16
|
|
|
|
wc8a0:: ds 16
|
|
|
|
wc8b0:: ds 16
|
|
|
|
wc8c0:: ds 16
|
|
|
|
wc8d0:: ds 16
|
|
|
|
wc8e0:: ds 16
|
|
|
|
wc8f0:: ds 16
|
2015-12-14 17:06:41 -08:00
|
|
|
|
|
|
|
wMysteryGiftPartnerData::
|
2015-02-08 00:03:32 -08:00
|
|
|
wc900:: ds 1
|
2015-11-22 21:21:21 -08:00
|
|
|
wMysteryGiftPartnerID:: ds 2
|
|
|
|
wMysteryGiftPartnerName:: ds NAME_LENGTH
|
2015-12-14 17:06:41 -08:00
|
|
|
wMysteryGiftPartnerDexCaught:: ds 1
|
|
|
|
wc90f::
|
|
|
|
wMysteryGiftPartnerSentDeco:: ds 1
|
|
|
|
wMysteryGiftPartnerWhichItem:: ds 1
|
|
|
|
wMysteryGiftPartnerWhichDeco:: ds 1
|
2015-12-26 15:11:55 -08:00
|
|
|
wMysteryGiftPartnerBackupItem:: ds 2
|
2015-12-14 17:06:41 -08:00
|
|
|
wMysteryGiftPartnerDataEnd::
|
|
|
|
ds 12
|
2015-02-08 00:03:32 -08:00
|
|
|
wc920:: ds 16
|
|
|
|
wc930:: ds 16
|
|
|
|
wc940:: ds 16
|
2015-12-14 17:06:41 -08:00
|
|
|
wMysteryGiftPlayerData::
|
|
|
|
wc950:: ds 1
|
|
|
|
wMysteryGiftPlayerID:: ds 2
|
|
|
|
wMysteryGiftPlayerName:: ds NAME_LENGTH
|
|
|
|
wMysteryGiftPlayerDexCaught:: ds 1
|
|
|
|
wMysteryGiftPlayerSentDeco:: ds 1
|
|
|
|
wMysteryGiftPlayerWhichItem:: ds 1
|
|
|
|
wMysteryGiftPlayerWhichDeco:: ds 1
|
|
|
|
wMysteryGiftPlayerBackupItem:: ds 2
|
|
|
|
wMysteryGiftPlayerDataEnd::
|
|
|
|
|
2015-12-06 19:36:09 -08:00
|
|
|
wc964:: ds 12
|
2015-02-08 00:03:32 -08:00
|
|
|
wc970:: ds 16
|
|
|
|
wc980:: ds 16
|
|
|
|
wc990:: ds 16
|
|
|
|
wc9a0:: ds 16
|
|
|
|
wc9b0:: ds 16
|
|
|
|
wc9c0:: ds 16
|
|
|
|
wc9d0:: ds 16
|
|
|
|
wc9e0:: ds 16
|
|
|
|
wc9f0:: ds 4
|
|
|
|
wc9f4:: ds 5
|
|
|
|
wc9f9:: ds 7
|
2015-12-14 17:06:41 -08:00
|
|
|
|
|
|
|
wCreditsFaux2bpp::
|
2015-02-08 00:03:32 -08:00
|
|
|
wca00:: ds 1
|
|
|
|
wca01:: ds 1
|
|
|
|
wca02:: ds 14
|
|
|
|
wca10:: ds 16
|
|
|
|
wca20:: ds 16
|
|
|
|
wca30:: ds 16
|
|
|
|
wca40:: ds 16
|
|
|
|
wca50:: ds 16
|
|
|
|
wca60:: ds 16
|
|
|
|
wca70:: ds 16
|
2015-11-05 11:06:03 -08:00
|
|
|
|
2016-05-11 14:16:03 -07:00
|
|
|
ds 35
|
2015-11-05 11:06:03 -08:00
|
|
|
|
2016-05-11 14:16:03 -07:00
|
|
|
wcaa3:: ds 2 ; caa3
|
|
|
|
wcaa5:: ds 16
|
2015-02-08 00:03:32 -08:00
|
|
|
wcab5:: ds 10
|
2016-05-11 14:16:03 -07:00
|
|
|
wcabf:: ds 10
|
|
|
|
wcac9:: ds 63
|
2015-02-08 00:03:32 -08:00
|
|
|
wcb08:: ds 6
|
|
|
|
wcb0e:: ds 5
|
|
|
|
wcb13:: ds 9
|
|
|
|
wcb1c:: ds 14
|
2015-12-16 09:32:08 -08:00
|
|
|
wBillsPC_ScrollPosition:: ds 1
|
|
|
|
wBillsPC_CursorPosition:: ds 1
|
|
|
|
wBillsPC_NumMonsInBox:: ds 1
|
|
|
|
wBillsPC_NumMonsOnScreen:: ds 1
|
|
|
|
wBillsPC_LoadedBox:: ds 1 ; 0 if party, 1 - 14 if box, 15 if active box
|
|
|
|
wBillsPC_BackupScrollPosition:: ds 1
|
|
|
|
wBillsPC_BackupCursorPosition:: ds 1
|
|
|
|
wBillsPC_BackupLoadedBox:: ds 1
|
|
|
|
wBillsPC_MonHasMail:: ds 1
|
|
|
|
ds 18
|
2015-02-08 00:03:32 -08:00
|
|
|
wcb45:: ds 20
|
|
|
|
wcb59:: ds 20
|
|
|
|
wcb6d:: ds 1
|
|
|
|
wcb6e:: ds 22
|
|
|
|
wcb84:: ds 100
|
2015-12-21 11:10:16 -08:00
|
|
|
wcbe8:: dw
|
|
|
|
wLinkOTPartyMonTypes::
|
|
|
|
ds 2 * PARTY_LENGTH
|
2016-05-11 14:16:03 -07:00
|
|
|
ds 84
|
2015-11-05 11:06:03 -08:00
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
wcc4a:: ds 22
|
|
|
|
wcc60:: ds 1
|
|
|
|
wcc61:: ds 1
|
|
|
|
wcc62:: ds 2
|
|
|
|
wcc64:: ds 1
|
|
|
|
wcc65:: ds 57
|
|
|
|
wcc9e:: ds 22
|
|
|
|
wccb4:: ds 1
|
|
|
|
wccb5:: ds 3
|
|
|
|
wccb8:: ds 1
|
|
|
|
wccb9:: ds 1
|
2015-11-15 12:53:49 -08:00
|
|
|
wccba:: ds 102
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2017-03-24 04:51:03 -07:00
|
|
|
SECTION "Video", WRAM0
|
2014-02-01 17:26:39 -08:00
|
|
|
CreditsPos::
|
2015-12-25 20:34:33 -08:00
|
|
|
BGMapBuffer::
|
|
|
|
wMobileMonSpeciesPointerBuffer:: dw
|
|
|
|
wMobileMonStructurePointerBuffer:: dw
|
|
|
|
wMobileMonOTNamePointerBuffer:: dw
|
|
|
|
wMobileMonNicknamePointerBuffer:: dw
|
|
|
|
wMobileMonMailPointerBuffer:: dw
|
|
|
|
ds CreditsPos - @
|
|
|
|
|
2015-12-26 08:31:56 -08:00
|
|
|
wcd20:: ds 1
|
2015-02-08 00:03:32 -08:00
|
|
|
wcd21:: ds 1
|
|
|
|
wcd22::
|
2014-02-01 17:26:39 -08:00
|
|
|
CreditsTimer:: ; cd22
|
2013-02-25 21:47:46 -08:00
|
|
|
ds 1
|
2015-02-08 00:03:32 -08:00
|
|
|
|
|
|
|
wcd23:: ds 1
|
|
|
|
wcd24:: ds 1
|
2016-05-05 12:07:37 -07:00
|
|
|
wMobileCommsJumptableIndex:: ds 1 ; cd25
|
2015-02-08 00:03:32 -08:00
|
|
|
wcd26:: ds 1
|
|
|
|
wcd27:: ds 1
|
|
|
|
wcd28:: ds 1
|
|
|
|
wcd29:: ds 1
|
2015-12-25 20:34:33 -08:00
|
|
|
wMobileMonSpeciesBuffer::
|
2015-02-08 00:03:32 -08:00
|
|
|
wcd2a:: ds 1
|
2015-12-25 20:34:33 -08:00
|
|
|
wTempOddEggNickname::
|
2015-02-08 00:03:32 -08:00
|
|
|
wcd2b:: ds 1
|
|
|
|
wcd2c:: ds 1
|
|
|
|
wcd2d:: ds 1
|
|
|
|
wcd2e:: ds 1
|
|
|
|
wcd2f:: ds 1
|
|
|
|
wcd30:: ds 1
|
|
|
|
wcd31:: ds 1
|
|
|
|
wcd32:: ds 1
|
|
|
|
wcd33:: ds 1
|
|
|
|
wcd34:: ds 1
|
|
|
|
wcd35:: ds 1
|
2016-05-08 11:11:24 -07:00
|
|
|
|
|
|
|
; current time for link/mobile?
|
|
|
|
wcd36:: ds 1 ; hours
|
|
|
|
wcd37:: ds 1 ; mins
|
|
|
|
wcd38:: ds 1 ; secs
|
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
wcd39:: ds 1
|
|
|
|
wcd3a:: ds 1
|
|
|
|
wcd3b:: ds 1
|
|
|
|
wcd3c:: ds 1
|
|
|
|
wcd3d:: ds 1
|
|
|
|
wcd3e:: ds 1
|
|
|
|
wcd3f:: ds 1
|
|
|
|
wcd40:: ds 1
|
|
|
|
wcd41:: ds 1
|
|
|
|
wcd42:: ds 1
|
|
|
|
wcd43:: ds 1
|
2016-05-08 11:11:24 -07:00
|
|
|
|
|
|
|
; some sort of timer in link battles
|
|
|
|
wMobileInactivityTimerMinutes:: ds 1 ; mins
|
|
|
|
wMobileInactivityTimerSeconds:: ds 1 ; secs
|
|
|
|
wMobileInactivityTimerFrames:: ds 1 ; frames
|
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
wcd47:: ds 1
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
BGMapPalBuffer:: ; cd48
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 1 ; 40
|
|
|
|
|
2015-12-08 13:06:13 -08:00
|
|
|
wBTTempOTSprite::
|
2015-02-08 00:03:32 -08:00
|
|
|
wcd49:: ds 1
|
|
|
|
wcd4a:: ds 1
|
|
|
|
wcd4b:: ds 1
|
2016-05-14 13:37:12 -07:00
|
|
|
wEZChatCursorXCoord::
|
2015-02-08 00:03:32 -08:00
|
|
|
wcd4c:: ds 1
|
2016-05-14 13:37:12 -07:00
|
|
|
wEZChatCursorYCoord::
|
2015-02-08 00:03:32 -08:00
|
|
|
wcd4d:: ds 1
|
|
|
|
wcd4e:: ds 1
|
|
|
|
wcd4f:: ds 1
|
|
|
|
wcd50:: ds 1
|
|
|
|
wcd51:: ds 1
|
|
|
|
wcd52:: ds 1
|
2016-05-08 11:11:24 -07:00
|
|
|
wMobileOpponentBattleMessage:: ; dc $c
|
2015-02-08 00:03:32 -08:00
|
|
|
wcd53:: ds 1
|
|
|
|
wcd54:: ds 1
|
|
|
|
wcd55:: ds 1
|
|
|
|
wcd56:: ds 1
|
|
|
|
wcd57:: ds 1
|
|
|
|
wcd58:: ds 1
|
|
|
|
wcd59:: ds 1
|
|
|
|
wcd5a:: ds 1
|
|
|
|
wcd5b:: ds 1
|
|
|
|
wcd5c:: ds 1
|
|
|
|
wcd5d:: ds 1
|
|
|
|
wcd5e:: ds 1
|
|
|
|
wcd5f:: ds 1
|
|
|
|
wcd60:: ds 2
|
|
|
|
wcd62:: ds 1
|
|
|
|
wcd63:: ds 1
|
|
|
|
wcd64:: ds 1
|
|
|
|
wcd65:: ds 1
|
|
|
|
wcd66:: ds 1
|
|
|
|
wcd67:: ds 1
|
|
|
|
wcd68:: ds 1
|
|
|
|
wcd69:: ds 1
|
|
|
|
wcd6a:: ds 1
|
|
|
|
wcd6b:: ds 1
|
|
|
|
wcd6c:: ds 1
|
|
|
|
wcd6d:: ds 1
|
|
|
|
wcd6e:: ds 1
|
|
|
|
wcd6f:: ds 1
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
BGMapBufferPtrs:: ; cd70
|
2012-12-14 00:00:10 -08:00
|
|
|
; 20 bg map addresses (16x8 tiles)
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 1 ; 40
|
|
|
|
|
|
|
|
wcd71:: ds 1
|
|
|
|
wcd72:: ds 1
|
|
|
|
wcd73:: ds 1
|
|
|
|
wcd74:: ds 1
|
2016-05-05 12:07:37 -07:00
|
|
|
wOTMonSelection:: ds 2 ; ds 3
|
2015-02-08 00:03:32 -08:00
|
|
|
wcd77:: ds 1
|
|
|
|
wcd78:: ds 1
|
|
|
|
wcd79:: ds 1
|
|
|
|
wcd7a:: ds 2
|
|
|
|
wcd7c:: ds 3
|
|
|
|
wcd7f:: ds 1
|
|
|
|
wcd80:: ds 1
|
|
|
|
wcd81:: ds 1
|
|
|
|
wcd82:: ds 1
|
|
|
|
wcd83:: ds 1
|
|
|
|
wcd84:: ds 1
|
|
|
|
wcd85:: ds 4
|
|
|
|
wcd89:: ds 1
|
|
|
|
wcd8a:: ds 1
|
|
|
|
wcd8b:: ds 1
|
|
|
|
wcd8c:: ds 1
|
|
|
|
wcd8d:: ds 11
|
2016-06-06 15:23:00 -07:00
|
|
|
BGMapBufferEnd::
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
SGBPredef:: ; cd98
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerHPPal:: ; cd99
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyHPPal:: ; cd9a
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2015-12-22 19:19:33 -08:00
|
|
|
wHPPals:: ds PARTY_LENGTH
|
2015-02-08 00:03:32 -08:00
|
|
|
wcda1:: ds 8
|
2015-12-22 15:03:00 -08:00
|
|
|
wSGBPals:: ds 48 ; cda9
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
AttrMap:: ; cdd9
|
2016-05-08 11:11:24 -07:00
|
|
|
; 20x18 grid of bg tile attributes for 8x8 tiles
|
2012-12-14 00:00:10 -08:00
|
|
|
; read horizontally from the top row
|
2016-05-08 11:11:24 -07:00
|
|
|
; bit 7: priority
|
|
|
|
; bit 6: y flip
|
|
|
|
; bit 5: x flip
|
|
|
|
; bit 4: pal # (non-cgb)
|
|
|
|
; bit 3: vram bank (cgb only)
|
|
|
|
; bit 2-0: pal # (cgb only)
|
2014-06-12 18:32:42 -07:00
|
|
|
ds SCREEN_WIDTH * SCREEN_HEIGHT
|
2014-06-16 22:52:59 -07:00
|
|
|
AttrMapEnd::
|
2015-12-23 11:00:29 -08:00
|
|
|
ds 1
|
2015-02-08 00:03:32 -08:00
|
|
|
wcf42:: ds 2
|
|
|
|
wcf44:: ds 1
|
2015-12-23 11:00:29 -08:00
|
|
|
wcf45::
|
|
|
|
ds AttrMapEnd - @
|
|
|
|
wTileAnimBuffer::
|
|
|
|
ds $10
|
2015-11-23 13:04:53 -08:00
|
|
|
; addresses dealing with serial comms
|
|
|
|
wOtherPlayerLinkMode:: ds 1
|
|
|
|
wOtherPlayerLinkAction:: ds 4
|
|
|
|
wPlayerLinkAction:: ds 1
|
2015-02-08 00:03:32 -08:00
|
|
|
wcf57:: ds 4
|
2016-05-15 18:50:31 -07:00
|
|
|
wLinkTimeoutFrames:: dw ; cf5b
|
2015-02-08 00:03:32 -08:00
|
|
|
wcf5d:: ds 2
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
MonType:: ; cf5f
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
CurSpecies:: ; cf60
|
2015-11-05 11:06:03 -08:00
|
|
|
CurMove::
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
|
|
|
|
2015-10-19 13:49:29 -07:00
|
|
|
wNamedObjectTypeBuffer:: ds 1
|
|
|
|
ds 1
|
2015-11-07 11:38:52 -08:00
|
|
|
wJumptableIndex::
|
2015-12-08 13:06:13 -08:00
|
|
|
wBattleTowerBattleEnded::
|
2015-11-07 11:38:52 -08:00
|
|
|
wcf63:: ds 1
|
2015-08-31 21:26:31 -07:00
|
|
|
wNrOfBeatenBattleTowerTrainers::
|
2015-10-11 09:15:03 -07:00
|
|
|
wMomBankDigitCursorPosition::
|
2015-10-17 09:58:26 -07:00
|
|
|
wIntroSceneFrameCounter::
|
2015-12-11 08:33:14 -08:00
|
|
|
wHoldingUnownPuzzlePiece::
|
2015-12-11 13:59:40 -08:00
|
|
|
wCardFlipCursorY::
|
2015-12-24 11:07:33 -08:00
|
|
|
wCreditsBorderFrame::
|
2016-01-09 19:03:38 -08:00
|
|
|
wDexEntryPrevJumptableIndex::
|
2015-02-08 00:03:32 -08:00
|
|
|
wcf64:: ds 1
|
2015-02-14 00:51:34 -08:00
|
|
|
IF !DEF(CRYSTAL11)
|
2015-02-14 00:40:38 -08:00
|
|
|
wPokedexStatus::
|
2015-02-14 00:51:34 -08:00
|
|
|
ENDC
|
2015-12-24 11:07:33 -08:00
|
|
|
wCreditsBorderMon::
|
2015-10-17 09:58:26 -07:00
|
|
|
wTitleScreenTimerLo::
|
2015-12-11 08:33:14 -08:00
|
|
|
wUnownPuzzleCursorPosition::
|
2015-12-11 13:59:40 -08:00
|
|
|
wCardFlipCursorX::
|
2015-12-24 11:07:33 -08:00
|
|
|
wCurrPocket::
|
2016-05-11 14:16:03 -07:00
|
|
|
wPrinterQueueLength::
|
2015-02-08 00:03:32 -08:00
|
|
|
wcf65:: ds 1
|
2015-12-24 11:07:33 -08:00
|
|
|
wCreditsLYOverride::
|
2015-10-17 09:58:26 -07:00
|
|
|
wTitleScreenTimerHi::
|
2015-12-11 08:33:14 -08:00
|
|
|
wUnownPuzzleHeldPiece::
|
2015-12-11 13:59:40 -08:00
|
|
|
wCardFlipWhichCard::
|
2015-02-08 00:03:32 -08:00
|
|
|
wcf66:: ds 1
|
2013-09-01 12:24:07 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Requested2bpp:: ; cf67
|
2015-12-02 14:59:05 -08:00
|
|
|
Requested2bppSize::
|
2013-09-01 12:24:07 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
Requested2bppSource:: ; cf68
|
2013-09-01 12:24:07 -07:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
Requested2bppDest:: ; cf6a
|
2013-09-01 12:24:07 -07:00
|
|
|
ds 2
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Requested1bpp:: ; cf6c
|
2015-12-02 14:59:05 -08:00
|
|
|
Requested1bppSize::
|
2013-09-01 12:24:07 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
Requested1bppSource:: ; cf6d
|
2013-09-01 12:24:07 -07:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
Requested1bppDest:: ; cf6f
|
2013-09-01 12:24:07 -07:00
|
|
|
ds 2
|
|
|
|
|
2015-12-15 15:59:49 -08:00
|
|
|
wWindowStackPointer:: dw ; cf71
|
|
|
|
wMenuJoypad:: ds 1 ; cf73
|
|
|
|
MenuSelection:: ds 1 ; cf74
|
2015-12-17 19:31:16 -08:00
|
|
|
MenuSelectionQuantity:: ds 1 ; cf75
|
2016-03-01 19:31:21 -08:00
|
|
|
wWhichIndexSet:: ds 1 ; cf76
|
|
|
|
wScrollingMenuCursorPosition:: ds 1 ; cf77
|
|
|
|
wWindowStackSize:: ds 9 ; cf78
|
2015-10-24 07:34:19 -07:00
|
|
|
|
2015-11-10 13:53:37 -08:00
|
|
|
; menu data header
|
|
|
|
wMenuDataHeader:: ; cf81
|
|
|
|
wMenuFlags:: ds 1
|
2015-10-24 07:34:19 -07:00
|
|
|
wMenuBorderTopCoord:: ds 1
|
|
|
|
wMenuBorderLeftCoord:: ds 1
|
|
|
|
wMenuBorderBottomCoord:: ds 1
|
|
|
|
wMenuBorderRightCoord:: ds 1
|
2015-11-10 13:53:37 -08:00
|
|
|
wMenuData2Pointer:: ds 2
|
2015-11-01 09:44:30 -08:00
|
|
|
wMenuCursorBuffer:: ds 2
|
2015-11-10 13:53:37 -08:00
|
|
|
; end menu data header
|
|
|
|
wMenuDataBank:: ds 1 ; menu data bank?
|
|
|
|
ds 6
|
|
|
|
wMenuDataHeaderEnd::
|
|
|
|
|
|
|
|
wMenuData2::
|
|
|
|
wMenuData2Flags:: ds 1 ; cf91
|
|
|
|
; bit 7: When set, start printing text one tile to the right of the border
|
2015-12-20 09:54:08 -08:00
|
|
|
; In scrolling menus, SELECT is functional
|
2015-11-10 13:53:37 -08:00
|
|
|
; bit 6: When set, start printing text one tile below the border
|
2015-12-20 09:54:08 -08:00
|
|
|
; In scrolling menus, START is functional
|
2015-11-10 13:53:37 -08:00
|
|
|
; bit 5: ????
|
|
|
|
; bit 4: ????
|
|
|
|
; bit 3: ????
|
|
|
|
; bit 2: ????
|
2015-12-15 15:59:49 -08:00
|
|
|
; bit 1: Enable Select button
|
|
|
|
; bit 0: Disable B button
|
2015-10-24 07:34:19 -07:00
|
|
|
|
2015-12-17 19:31:16 -08:00
|
|
|
wMenuData2_ScrollingMenuHeight::
|
2015-12-23 11:00:29 -08:00
|
|
|
wMenuData2Items::
|
|
|
|
ds 1 ; cf92
|
2015-12-13 11:15:16 -08:00
|
|
|
wMenuData2IndicesPointer::
|
2015-12-15 15:59:49 -08:00
|
|
|
wMenuData2Spacing::
|
2015-12-17 19:31:16 -08:00
|
|
|
wMenuData2_ScrollingMenuWidth::
|
2015-12-23 11:00:29 -08:00
|
|
|
ds 1 ; cf93
|
2015-12-15 15:59:49 -08:00
|
|
|
wMenuData2_2DMenuItemStringsBank::
|
2015-12-17 19:31:16 -08:00
|
|
|
wMenuData2_ScrollingMenuSpacing::
|
2015-12-23 11:00:29 -08:00
|
|
|
ds 1 ; cf94
|
2015-12-15 15:59:49 -08:00
|
|
|
wMenuData2_2DMenuItemStringsAddr::
|
2015-12-13 11:15:16 -08:00
|
|
|
wMenuData2DisplayFunctionPointer::
|
2015-12-17 19:31:16 -08:00
|
|
|
wMenuData2_ItemsPointerBank::
|
2015-12-23 11:00:29 -08:00
|
|
|
ds 1 ; cf95
|
2015-12-17 19:31:16 -08:00
|
|
|
wMenuData2_ItemsPointerAddr::
|
2015-12-23 11:00:29 -08:00
|
|
|
ds 1 ; cf96
|
2015-12-13 11:15:16 -08:00
|
|
|
wMenuData2PointerTableAddr::
|
2015-12-15 15:59:49 -08:00
|
|
|
wMenuData2_2DMenuFunctionBank::
|
2015-12-23 11:00:29 -08:00
|
|
|
ds 1 ; cf97
|
2015-12-15 15:59:49 -08:00
|
|
|
wMenuData2_2DMenuFunctionAddr::
|
2015-12-17 19:31:16 -08:00
|
|
|
wMenuData2_ScrollingMenuFunction1::
|
2015-12-23 11:00:29 -08:00
|
|
|
ds 3 ; cf98
|
2015-12-17 19:31:16 -08:00
|
|
|
wMenuData2_ScrollingMenuFunction2::
|
2015-12-23 11:00:29 -08:00
|
|
|
ds 3 ; cf9b
|
2015-12-17 19:31:16 -08:00
|
|
|
wMenuData2_ScrollingMenuFunction3::
|
2015-12-23 11:00:29 -08:00
|
|
|
ds 3 ; cf9e
|
2015-11-10 13:53:37 -08:00
|
|
|
wMenuData2End::
|
2015-12-19 11:48:30 -08:00
|
|
|
|
2015-11-18 20:16:25 -08:00
|
|
|
wMenuData3::
|
2015-12-23 11:00:29 -08:00
|
|
|
w2DMenuCursorInitY:: ds 1 ; cfa1
|
|
|
|
w2DMenuCursorInitX:: ds 1 ; cfa2
|
|
|
|
w2DMenuNumRows:: ds 1 ; cfa3
|
|
|
|
w2DMenuNumCols:: ds 1 ; cfa4
|
|
|
|
w2DMenuFlags1:: ds 1 ; cfa5
|
|
|
|
w2DMenuFlags2:: ds 1 ; cfa6
|
|
|
|
w2DMenuCursorOffsets:: ds 1 ; cfa7
|
|
|
|
wMenuJoypadFilter:: ds 1 ; cfa8
|
2015-11-18 20:16:25 -08:00
|
|
|
wMenuData3End::
|
2015-12-19 11:48:30 -08:00
|
|
|
|
2015-12-23 11:00:29 -08:00
|
|
|
wMenuCursorY:: ds 1 ; cfa9
|
|
|
|
wMenuCursorX:: ds 1 ; cfaa
|
|
|
|
wCursorOffCharacter:: ds 1 ; cfab
|
2015-12-21 11:10:16 -08:00
|
|
|
wCursorCurrentTile:: ds 2 ; cfac
|
2015-12-15 15:59:49 -08:00
|
|
|
ds 3
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
OverworldDelay:: ; cfb1
|
2013-07-19 22:25:20 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
TextDelayFrames:: ; cfb2
|
2012-12-23 00:21:19 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
VBlankOccurred:: ; cfb3
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PredefID:: ; cfb4
|
2013-09-04 01:04:11 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PredefTemp:: ; cfb5
|
2013-09-04 01:04:11 -07:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
PredefAddress:: ; cfb7
|
2013-09-04 01:04:11 -07:00
|
|
|
ds 2
|
2015-11-03 19:35:36 -08:00
|
|
|
wFarCallBCBuffer:: ; cfb9
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 2
|
2012-12-23 00:21:19 -08:00
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
wcfbb:: ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
GameTimerPause:: ; cfbc
|
2012-12-23 00:21:19 -08:00
|
|
|
; bit 0
|
|
|
|
ds 1
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 1
|
|
|
|
|
2015-12-22 19:19:33 -08:00
|
|
|
wcfbe::
|
|
|
|
; SGB flags?
|
|
|
|
ds 2
|
2015-09-04 13:30:40 -07:00
|
|
|
|
|
|
|
InBattleTowerBattle:: ; cfc0
|
|
|
|
; 0 not in BattleTower-Battle
|
|
|
|
; 1 BattleTower-Battle
|
|
|
|
ds 1
|
|
|
|
|
|
|
|
ds 1
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
FXAnimID::
|
|
|
|
FXAnimIDLo:: ; cfc2
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
FXAnimIDHi:: ; cfc3
|
2015-12-24 11:07:33 -08:00
|
|
|
ds 1
|
|
|
|
wPlaceBallsX:: ; cfc4
|
|
|
|
ds 1
|
|
|
|
wPlaceBallsY:: ; cfc5
|
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
TileAnimationTimer:: ; cfc6
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
|
|
|
|
2015-12-23 11:00:29 -08:00
|
|
|
; palette backups?
|
|
|
|
wBGP:: ds 1
|
|
|
|
wOBP0:: ds 1
|
|
|
|
wOBP1:: ds 1
|
|
|
|
|
|
|
|
wNumHits:: ds 2
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Options:: ; cfcc
|
2012-10-08 23:32:05 -07:00
|
|
|
; bit 0-2: number of frames to delay when printing text
|
|
|
|
; fast 1; mid 3; slow 5
|
2012-12-23 00:21:19 -08:00
|
|
|
; bit 3: ?
|
|
|
|
; bit 4: no text delay
|
2012-10-08 23:32:05 -07:00
|
|
|
; bit 5: stereo off/on
|
|
|
|
; bit 6: battle style shift/set
|
|
|
|
; bit 7: battle scene off/on
|
|
|
|
ds 1
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2015-11-17 20:29:14 -08:00
|
|
|
wSaveFileExists:: ds 1
|
2012-10-08 23:32:05 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
TextBoxFrame:: ; cfce
|
2012-10-08 23:32:05 -07:00
|
|
|
; bits 0-2: textbox frame 0-7
|
|
|
|
ds 1
|
2015-11-28 12:13:40 -08:00
|
|
|
TextBoxFlags::
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 1
|
2012-10-08 23:32:05 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
GBPrinter:: ; cfd0
|
2012-10-08 23:32:05 -07:00
|
|
|
; bit 0-6: brightness
|
|
|
|
; lightest: $00
|
|
|
|
; lighter: $20
|
|
|
|
; normal: $40 (default)
|
|
|
|
; darker: $60
|
|
|
|
; darkest: $7F
|
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Options2:: ; cfd1
|
2012-10-08 23:32:05 -07:00
|
|
|
; bit 1: menu account off/on
|
|
|
|
ds 1
|
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 2
|
2015-07-20 00:51:52 -07:00
|
|
|
OptionsEnd::
|
2015-08-19 21:14:15 -07:00
|
|
|
|
2015-10-24 07:34:19 -07:00
|
|
|
; Time buffer, for counting the amount of time since
|
|
|
|
; an event began.
|
|
|
|
|
|
|
|
wSecondsSince:: ds 1
|
|
|
|
wMinutesSince:: ds 1
|
|
|
|
wHoursSince:: ds 1
|
|
|
|
wDaysSince:: ds 1
|
2015-02-08 00:03:32 -08:00
|
|
|
|
2016-01-07 15:45:32 -08:00
|
|
|
wRAM0End:: ; cfd8
|
2013-07-02 11:10:49 -07:00
|
|
|
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2017-03-24 04:51:03 -07:00
|
|
|
SECTION "WRAM 1", WRAMX, BANK [1]
|
2013-07-02 11:10:49 -07:00
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
wd000:: ds 1
|
2015-11-10 13:53:37 -08:00
|
|
|
DefaultSpawnpoint::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd001:: ds 1
|
2015-11-18 10:29:30 -08:00
|
|
|
|
2015-12-16 09:32:08 -08:00
|
|
|
; d002
|
2015-11-18 10:29:30 -08:00
|
|
|
wTempMail:: mailmsg wTempMail
|
|
|
|
ds wTempMail - @
|
|
|
|
|
2015-11-23 13:04:53 -08:00
|
|
|
wSeerAction:: ds 1
|
|
|
|
wSeerNickname:: ds PKMN_NAME_LENGTH
|
|
|
|
wSeerCaughtLocation:: ds 17
|
|
|
|
wSeerTimeOfDay:: ds NAME_LENGTH
|
|
|
|
wSeerOTName:: ds NAME_LENGTH
|
|
|
|
wSeerOTNameGrammar:: ds 1
|
|
|
|
wSeerCaughtLevelString:: ds 4
|
|
|
|
wSeerCaughtLevel:: ds 1
|
|
|
|
wSeerCaughtData:: ds 1
|
|
|
|
wSeerCaughtGender:: ds 1
|
|
|
|
ds wSeerAction - @
|
|
|
|
|
2016-05-04 19:34:09 -07:00
|
|
|
wBufferMonNick:: ds PKMN_NAME_LENGTH ; d002
|
|
|
|
wBufferMonOT:: ds NAME_LENGTH ; d00d
|
|
|
|
wBufferMon:: party_struct wBufferMon ; d018
|
2015-12-18 17:07:09 -08:00
|
|
|
ds 8
|
|
|
|
wMonOrItemNameBuffer::
|
2015-12-16 09:32:08 -08:00
|
|
|
ds wBufferMonNick - @
|
|
|
|
|
2015-12-18 17:07:09 -08:00
|
|
|
wBugContestResults::
|
|
|
|
bugcontestwinner wBugContestFirstPlace
|
|
|
|
bugcontestwinner wBugContestSecondPlace
|
|
|
|
bugcontestwinner wBugContestThirdPlace
|
|
|
|
wBugContestWinnersEnd::
|
|
|
|
bugcontestwinner wBugContestTemp
|
|
|
|
ds 4
|
|
|
|
wBugContestWinnerName:: ds NAME_LENGTH
|
|
|
|
|
|
|
|
ds wBugContestResults - @
|
2015-12-16 09:32:08 -08:00
|
|
|
|
2015-12-18 17:07:09 -08:00
|
|
|
wd002::
|
|
|
|
wTempDayOfWeek::
|
|
|
|
wApricorns::
|
2015-07-15 12:48:44 -07:00
|
|
|
PhoneScriptBank::
|
2015-10-10 14:03:04 -07:00
|
|
|
LuckyNumberDigit1Buffer::
|
2015-11-09 20:01:45 -08:00
|
|
|
wCurrentRadioLine::
|
|
|
|
wMovementBufferCount::
|
2015-11-11 11:12:46 -08:00
|
|
|
wMartItem1BCD::
|
2016-05-11 14:16:03 -07:00
|
|
|
wWhichBoxMonToPrint::
|
2013-02-03 21:22:53 -08:00
|
|
|
ds 1
|
2015-07-15 12:48:44 -07:00
|
|
|
wd003::
|
2015-10-10 14:03:04 -07:00
|
|
|
LuckyNumberDigit2Buffer::
|
2015-07-15 12:48:44 -07:00
|
|
|
PhoneCallerLo::
|
2015-11-09 20:01:45 -08:00
|
|
|
wNextRadioLine::
|
|
|
|
wMovementBufferPerson::
|
2015-12-24 11:07:33 -08:00
|
|
|
wPlaceBallsDirection::
|
2016-05-11 14:16:03 -07:00
|
|
|
wFinishedPrintingBox::
|
2015-07-15 12:48:44 -07:00
|
|
|
ds 1
|
|
|
|
wd004::
|
2015-10-10 14:03:04 -07:00
|
|
|
LuckyNumberDigit3Buffer::
|
2015-07-15 12:48:44 -07:00
|
|
|
PhoneCallerHi::
|
2015-11-09 20:01:45 -08:00
|
|
|
wRadioTextDelay::
|
2015-12-24 11:07:33 -08:00
|
|
|
wTrainerHUDTiles::
|
2016-05-11 14:16:03 -07:00
|
|
|
wAddrOfBoxToPrint::
|
2015-07-15 12:48:44 -07:00
|
|
|
ds 1
|
2015-02-08 00:03:32 -08:00
|
|
|
wd005::
|
2015-10-10 14:03:04 -07:00
|
|
|
LuckyNumberDigit4Buffer::
|
2014-02-01 17:26:39 -08:00
|
|
|
StartFlypoint:: ; d005
|
2015-11-09 20:01:45 -08:00
|
|
|
wNumRadioLinesPrinted::
|
2015-11-11 11:12:46 -08:00
|
|
|
wMartItem2BCD::
|
2013-02-03 21:22:53 -08:00
|
|
|
ds 1
|
2015-02-08 00:03:32 -08:00
|
|
|
wd006::
|
2015-11-23 18:19:53 -08:00
|
|
|
wMobileParticipant1Nickname::
|
2015-10-10 14:03:04 -07:00
|
|
|
LuckyNumberDigit5Buffer::
|
2014-02-01 17:26:39 -08:00
|
|
|
EndFlypoint:: ; d006
|
2015-11-09 20:01:45 -08:00
|
|
|
wOaksPkmnTalkSegmentCounter::
|
2016-05-11 14:16:03 -07:00
|
|
|
wBankOfBoxToPrint::
|
2013-02-03 21:22:53 -08:00
|
|
|
ds 1
|
2013-06-26 21:34:49 -07:00
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
wd007::
|
2016-05-11 14:16:03 -07:00
|
|
|
wWhichBoxToPrint::
|
2014-02-01 17:26:39 -08:00
|
|
|
MovementBuffer:: ; d007
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 1
|
2013-06-26 21:34:49 -07:00
|
|
|
|
2015-11-11 11:12:46 -08:00
|
|
|
wMartItem3BCD::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd008:: ds 2
|
|
|
|
wd00a:: ds 1
|
2015-11-11 11:12:46 -08:00
|
|
|
wMartItem4BCD::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd00b:: ds 1
|
2015-11-09 20:01:45 -08:00
|
|
|
|
|
|
|
wRadioText:: ds 2 * SCREEN_WIDTH
|
|
|
|
wRadioTextEnd::
|
|
|
|
ds wRadioText - @
|
|
|
|
|
2015-11-23 18:19:53 -08:00
|
|
|
wMobileParticipant2Nickname::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd00c:: ds 1
|
|
|
|
wd00d:: ds 1
|
2015-11-11 11:12:46 -08:00
|
|
|
wMartItem5BCD::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd00e:: ds 1
|
|
|
|
wd00f:: ds 1
|
|
|
|
wd010:: ds 1
|
2015-11-11 11:12:46 -08:00
|
|
|
wMartItem6BCD::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd011:: ds 1
|
2015-11-23 18:19:53 -08:00
|
|
|
wMobileParticipant3Nickname::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd012:: ds 1
|
|
|
|
wd013:: ds 1
|
2015-11-11 11:12:46 -08:00
|
|
|
wMartItem7BCD::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd014:: ds 2
|
|
|
|
wd016:: ds 1
|
2015-11-11 11:12:46 -08:00
|
|
|
wMartItem8BCD::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd017:: ds 1
|
2015-11-11 20:38:57 -08:00
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
wd018:: ds 1
|
|
|
|
wd019:: ds 1
|
2015-11-11 11:12:46 -08:00
|
|
|
wMartItem9BCD::
|
|
|
|
wd01a:: ds 3
|
|
|
|
wMartItem10BCD:: ds 2
|
2015-02-10 14:16:31 -08:00
|
|
|
wd01f:: ds 1
|
2015-11-11 11:12:46 -08:00
|
|
|
wMartItemBCDEnd::
|
2015-12-19 11:48:30 -08:00
|
|
|
ds 13
|
2015-02-08 00:03:32 -08:00
|
|
|
wd02d:: ds 1
|
|
|
|
wd02e:: ds 1
|
|
|
|
wd02f:: ds 1
|
|
|
|
wd030:: ds 1
|
|
|
|
wd031:: ds 1
|
|
|
|
wd032:: ds 1
|
|
|
|
wd033:: ds 1
|
|
|
|
wd034:: ds 2
|
|
|
|
wd036:: ds 2
|
2015-02-10 15:14:21 -08:00
|
|
|
wd038:: ds 3
|
|
|
|
wd03b:: ds 3
|
2013-05-03 12:40:45 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
MenuItemsList::
|
|
|
|
CurFruitTree::
|
|
|
|
CurInput::
|
2015-12-17 14:51:32 -08:00
|
|
|
wElevatorPointerBank::
|
2016-01-06 04:44:50 -08:00
|
|
|
wCurCoordEventTriggerID::
|
|
|
|
wCurSignpostYCoord::
|
2014-02-01 17:26:39 -08:00
|
|
|
EngineBuffer1:: ; d03e
|
2013-05-03 12:40:45 -07:00
|
|
|
ds 1
|
2015-11-11 20:38:57 -08:00
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
wd03f::
|
2015-11-11 13:11:08 -08:00
|
|
|
wJumpStdScriptBuffer::
|
2014-02-01 17:26:39 -08:00
|
|
|
CurFruit:: ; d03f
|
2015-07-17 14:17:10 -07:00
|
|
|
MartPointerBank::
|
2015-12-17 14:51:32 -08:00
|
|
|
wElevatorPointerLo::
|
2016-01-06 04:44:50 -08:00
|
|
|
wCurCoordEventMapY::
|
|
|
|
wCurSignpostXCoord::
|
2015-10-24 07:34:19 -07:00
|
|
|
EngineBuffer2::
|
2013-05-03 12:40:45 -07:00
|
|
|
ds 1
|
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
wd040::
|
2015-12-17 14:51:32 -08:00
|
|
|
wElevatorPointerHi::
|
2014-02-01 17:26:39 -08:00
|
|
|
MartPointer:: ; d040
|
2016-01-06 04:44:50 -08:00
|
|
|
wCurCoordEventMapX::
|
|
|
|
wCurSignpostType::
|
2015-10-24 07:34:19 -07:00
|
|
|
EngineBuffer3::
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 1
|
2013-06-26 21:34:49 -07:00
|
|
|
|
2015-10-24 07:34:19 -07:00
|
|
|
wd041::
|
2015-12-17 14:51:32 -08:00
|
|
|
wElevatorOriginFloor::
|
2015-11-15 11:59:38 -08:00
|
|
|
wTempTrainerHeader::
|
2015-11-09 20:01:45 -08:00
|
|
|
wTempTrainerEventFlagLo::
|
2016-01-06 04:44:50 -08:00
|
|
|
wCurSignpostScriptAddr::
|
|
|
|
EngineBuffer4::
|
2015-10-24 07:34:19 -07:00
|
|
|
ds 1
|
2015-11-09 20:01:45 -08:00
|
|
|
|
|
|
|
wTempTrainerEventFlagHi::
|
2014-02-01 17:26:39 -08:00
|
|
|
MovementAnimation:: ; d042
|
2016-01-06 04:44:50 -08:00
|
|
|
wCurCoordEventScriptAddr::
|
2015-11-13 15:59:49 -08:00
|
|
|
EngineBuffer5::
|
2013-06-26 21:34:49 -07:00
|
|
|
ds 1
|
2013-07-02 11:10:49 -07:00
|
|
|
|
2015-11-09 20:01:45 -08:00
|
|
|
wTempTrainerClass::
|
2014-02-01 17:26:39 -08:00
|
|
|
WalkingDirection:: ; d043
|
2015-11-11 11:12:46 -08:00
|
|
|
wBargainShopFlags::
|
2013-06-26 21:34:49 -07:00
|
|
|
ds 1
|
2013-07-02 11:10:49 -07:00
|
|
|
|
2015-11-09 20:01:45 -08:00
|
|
|
wTempTrainerID::
|
2014-02-01 17:26:39 -08:00
|
|
|
FacingDirection:: ; d044
|
2013-06-26 21:34:49 -07:00
|
|
|
ds 1
|
2013-07-02 11:10:49 -07:00
|
|
|
|
2015-11-09 20:01:45 -08:00
|
|
|
wSeenTextPointer::
|
2015-11-11 11:12:46 -08:00
|
|
|
WalkingX::
|
|
|
|
wd045:: ; d045
|
2013-06-26 21:34:49 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
WalkingY:: ; d046
|
2013-06-26 21:34:49 -07:00
|
|
|
ds 1
|
2015-11-09 20:01:45 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
WalkingTile:: ; d047
|
2015-07-18 20:45:39 -07:00
|
|
|
wWinTextPointer::
|
2013-06-26 21:34:49 -07:00
|
|
|
ds 1
|
|
|
|
|
2015-12-18 17:07:09 -08:00
|
|
|
wPhoneScriptPointer:: ds 1
|
2015-07-18 20:45:39 -07:00
|
|
|
wLossTextPointer:: ds 2
|
2015-12-18 17:07:09 -08:00
|
|
|
wScriptAfterPointer:: ds 2
|
2015-11-25 07:16:29 -08:00
|
|
|
wRunningTrainerBattleScript:: ds 1
|
2015-10-16 10:35:43 -07:00
|
|
|
MenuItemsListEnd::
|
2015-11-15 11:59:38 -08:00
|
|
|
wTempTrainerHeaderEnd::
|
2016-05-14 10:46:14 -07:00
|
|
|
wPlayerTurningDirection:: ; d04e
|
|
|
|
ds 24
|
|
|
|
wTMHMMoveNameBackup:: ds MOVE_NAME_LENGTH ; d066
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
StringBuffer1:: ; d073
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 19
|
2015-02-08 00:03:32 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
StringBuffer2:: ; d086
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 19
|
2015-02-08 00:03:32 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
StringBuffer3:: ; d099
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 19
|
2015-02-08 00:03:32 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
StringBuffer4:: ; d0ac
|
2013-05-21 16:03:31 -07:00
|
|
|
ds 19
|
2015-02-08 00:03:32 -08:00
|
|
|
|
2014-02-24 18:35:29 -08:00
|
|
|
StringBuffer5:: ; d0bf
|
|
|
|
ds 19
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
wd0d2:: ds 2
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
CurBattleMon:: ; d0d4
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
CurMoveNum:: ; d0d5
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
|
|
|
|
2015-11-23 13:04:53 -08:00
|
|
|
wLastPocket:: ds 1
|
2016-03-01 19:31:21 -08:00
|
|
|
|
|
|
|
wPCItemsCursor:: ds 1
|
2015-12-17 14:51:32 -08:00
|
|
|
wPartyMenuCursor:: ds 1
|
2015-10-24 16:49:19 -07:00
|
|
|
wItemsPocketCursor:: ds 1
|
|
|
|
wKeyItemsPocketCursor:: ds 1
|
|
|
|
wBallsPocketCursor:: ds 1
|
|
|
|
wTMHMPocketCursor:: ds 1
|
2016-03-01 19:31:21 -08:00
|
|
|
|
|
|
|
wPCItemsScrollPosition:: ds 1
|
|
|
|
wPartyMenuScrollPosition:: ds 1 ; unused
|
2015-11-23 13:04:53 -08:00
|
|
|
wItemsPocketScrollPosition:: ds 1
|
|
|
|
wKeyItemsPocketScrollPosition:: ds 1
|
|
|
|
wBallsPocketScrollPosition:: ds 1
|
|
|
|
wTMHMPocketScrollPosition:: ds 1
|
2016-03-01 19:31:21 -08:00
|
|
|
|
2015-11-05 11:06:03 -08:00
|
|
|
wMoveSwapBuffer::
|
2015-11-18 20:16:25 -08:00
|
|
|
wSwitchMon::
|
2015-12-13 11:15:16 -08:00
|
|
|
wSwitchItem::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd0e3:: ds 1
|
2015-11-23 13:04:53 -08:00
|
|
|
wMenuScrollPosition:: ds 4
|
2015-11-01 09:44:30 -08:00
|
|
|
wQueuedScriptBank:: ds 1
|
|
|
|
wQueuedScriptAddr:: ds 2
|
2015-12-04 05:46:11 -08:00
|
|
|
wNumMoves::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd0eb:: ds 1
|
2015-11-18 15:35:44 -08:00
|
|
|
wFieldMoveSucceeded::
|
2015-12-13 11:15:16 -08:00
|
|
|
wItemEffectSucceeded::
|
2015-11-23 13:04:53 -08:00
|
|
|
wPlayerAction::
|
|
|
|
; 0 - use move
|
|
|
|
; 1 - use item
|
|
|
|
; 2 - switch
|
2015-12-11 08:33:14 -08:00
|
|
|
wSolvedUnownPuzzle::
|
2015-12-17 14:51:32 -08:00
|
|
|
ds 1 ; d0ec
|
2012-10-08 23:32:05 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
VramState:: ; d0ed
|
2012-10-08 23:32:05 -07:00
|
|
|
; bit 0: overworld sprite updating on/off
|
|
|
|
; bit 6: something to do with text
|
|
|
|
; bit 7: on when surf initiates
|
|
|
|
; flickers when climbing waterfall
|
|
|
|
ds 1
|
|
|
|
|
2016-03-01 19:31:21 -08:00
|
|
|
wBattleResult:: ds 1 ; d0ee
|
|
|
|
wUsingItemWithSelect:: ds 1 ; d0ef
|
|
|
|
CurMart:: ds 16 ; d0f0
|
2015-12-17 14:51:32 -08:00
|
|
|
CurMartEnd::
|
2015-11-18 10:01:55 -08:00
|
|
|
ds CurMart - @
|
2015-12-17 14:51:32 -08:00
|
|
|
CurElevator:: ds 1
|
2015-11-18 10:01:55 -08:00
|
|
|
wd0f1::
|
2015-12-17 14:51:32 -08:00
|
|
|
CurElevatorFloors::
|
2015-11-18 10:01:55 -08:00
|
|
|
wCurMessageIndex:: ds 1
|
|
|
|
wd0f2::
|
|
|
|
wMailboxCount:: ds 1
|
|
|
|
wMailboxItems:: ds MAILBOX_CAPACITY
|
2016-03-01 19:31:21 -08:00
|
|
|
wMailboxEnd:: ds 1 ; d0fe
|
2015-11-18 10:01:55 -08:00
|
|
|
ds 2
|
2015-02-08 00:03:32 -08:00
|
|
|
|
2016-06-13 19:53:33 -07:00
|
|
|
wListPointer:: dw ; d100
|
|
|
|
wUnusedD102:: dw ; d102
|
|
|
|
wItemAttributesPtr:: dw ; d104
|
2013-04-29 18:19:42 -07:00
|
|
|
|
2016-03-01 19:31:21 -08:00
|
|
|
CurItem:: ds 1 ; d106
|
2015-12-17 19:31:16 -08:00
|
|
|
CurItemQuantity:: ; d107
|
2015-11-11 11:12:46 -08:00
|
|
|
wMartItemID::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd107:: ds 1
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
CurPartySpecies:: ; d108
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 1
|
2012-10-08 23:32:05 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
CurPartyMon:: ; d109
|
2012-11-23 18:19:02 -08:00
|
|
|
; contains which monster in a party
|
2012-10-08 23:32:05 -07:00
|
|
|
; is being dealt with at the moment
|
|
|
|
; 0-5
|
|
|
|
ds 1
|
|
|
|
|
2015-12-26 15:11:55 -08:00
|
|
|
wWhichHPBar::
|
|
|
|
; 0: Enemy
|
|
|
|
; 1: Player
|
2016-03-08 16:54:06 -08:00
|
|
|
; 2: Party Menu
|
2015-12-26 15:11:55 -08:00
|
|
|
ds 1
|
2015-11-08 07:59:28 -08:00
|
|
|
wPokemonWithdrawDepositParameter::
|
|
|
|
; 0: Take from PC
|
|
|
|
; 1: Put into PC
|
|
|
|
; 2: Take from Daycare
|
|
|
|
; 3: Put into Daycare
|
2015-02-08 00:03:32 -08:00
|
|
|
wd10b:: ds 1
|
2015-11-01 15:13:31 -08:00
|
|
|
wItemQuantityChangeBuffer:: ds 1
|
|
|
|
wItemQuantityBuffer:: ds 1
|
2013-04-12 14:21:22 -07:00
|
|
|
|
2016-01-04 05:43:55 -08:00
|
|
|
TempMon:: ; d10e
|
2014-06-10 23:08:07 -07:00
|
|
|
party_struct TempMon
|
2013-04-12 14:21:22 -07:00
|
|
|
|
2016-01-17 21:39:01 -08:00
|
|
|
wSpriteFlags:: ds 1 ; d13e
|
2015-02-08 00:03:32 -08:00
|
|
|
|
2016-01-17 21:39:01 -08:00
|
|
|
wHandlePlayerStep:: ds 2 ; d13f
|
2013-01-14 00:40:27 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PartyMenuActionText:: ; d141
|
2013-07-01 19:55:13 -07:00
|
|
|
ds 1
|
2015-02-08 00:03:32 -08:00
|
|
|
|
2015-12-02 10:24:18 -08:00
|
|
|
wItemAttributeParamBuffer:: ; d142
|
2015-10-24 07:34:19 -07:00
|
|
|
ds 1
|
2012-11-23 18:19:02 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
CurPartyLevel:: ; d143
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 1
|
|
|
|
|
2015-12-17 19:31:16 -08:00
|
|
|
wScrollingMenuListSize:: ds 2
|
2015-11-12 08:10:19 -08:00
|
|
|
|
|
|
|
; used when following a map warp
|
2015-11-29 18:34:59 -08:00
|
|
|
; d146
|
|
|
|
wNextWarp:: ds 1
|
|
|
|
wNextMapGroup:: ds 1
|
|
|
|
wNextMapNumber:: ds 1
|
|
|
|
wPrevWarp:: ds 1
|
|
|
|
wPrevMapGroup:: ds 1
|
|
|
|
wPrevMapNumber:: ds 1
|
|
|
|
; d14c
|
2015-11-12 08:10:19 -08:00
|
|
|
|
2016-05-04 19:34:09 -07:00
|
|
|
wPlayerBGMapOffsetX:: ds 1 ; used in FollowNotExact; unit is pixels
|
|
|
|
wPlayerBGMapOffsetY:: ds 1 ; used in FollowNotExact; unit is pixels
|
2015-11-14 20:02:38 -08:00
|
|
|
|
2015-11-12 21:49:27 -08:00
|
|
|
; Player movement
|
2015-12-24 19:58:42 -08:00
|
|
|
wPlayerStepVectorX:: ds 1 ; d14e
|
|
|
|
wPlayerStepVectorY:: ds 1 ; d14f
|
|
|
|
wPlayerStepFlags:: ds 1 ; d150
|
|
|
|
; bit 7: Start step
|
|
|
|
; bit 6: Stop step
|
|
|
|
; bit 5: Doing step
|
|
|
|
; bit 4: In midair
|
|
|
|
; bits 0-3: unused
|
|
|
|
wPlayerStepDirection:: ds 1 ; d151
|
|
|
|
|
|
|
|
wBGMapAnchor:: ds 2 ; d152
|
2013-05-13 12:37:14 -07:00
|
|
|
|
2015-11-14 11:41:47 -08:00
|
|
|
UsedSprites:: ds 64 ; d154
|
2015-11-09 13:41:09 -08:00
|
|
|
UsedSpritesEnd::
|
|
|
|
ds UsedSprites - @
|
|
|
|
|
|
|
|
wd154:: ; d154
|
2015-02-10 14:16:31 -08:00
|
|
|
ds 31 ; 64
|
2015-02-08 00:03:32 -08:00
|
|
|
|
2016-05-17 05:40:42 -07:00
|
|
|
wd173:: ds 1 ; related to command queue type 3
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 13
|
|
|
|
wd181:: ds 1
|
|
|
|
wd182:: ds 1
|
|
|
|
ds 14
|
2013-07-07 22:35:41 -07:00
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
wd191:: ds 1
|
|
|
|
wd192:: ds 1
|
|
|
|
wd193:: ds 1
|
2016-01-27 09:25:12 -08:00
|
|
|
wOverworldMapAnchor:: dw ; d194
|
|
|
|
wMetatileStandingY:: ds 1 ; d196
|
|
|
|
wMetatileStandingX:: ds 1 ; d197
|
|
|
|
wSecondMapHeaderBank:: ds 1 ; d198
|
|
|
|
wTileset:: ds 1 ; d199
|
2015-12-22 15:03:00 -08:00
|
|
|
wPermission:: ds 1 ; d19a
|
|
|
|
wSecondMapHeaderAddr:: dw ; d19b
|
2013-07-19 22:25:20 -07:00
|
|
|
|
2014-09-19 12:44:48 -07:00
|
|
|
; width/height are in blocks (2x2 walkable tiles, 4x4 graphics tiles)
|
2014-02-01 17:26:39 -08:00
|
|
|
MapHeader:: ; d19d
|
|
|
|
MapBorderBlock:: ; d19d
|
2013-10-04 19:03:34 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
MapHeight:: ; d19e
|
2013-10-04 19:03:34 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
MapWidth:: ; d19f
|
2013-10-04 19:03:34 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
MapBlockDataBank:: ; d1a0
|
2013-10-04 19:03:34 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
MapBlockDataPointer:: ; d1a1
|
2013-10-04 19:03:34 -07:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
MapScriptHeaderBank:: ; d1a3
|
2013-10-04 19:03:34 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
MapScriptHeaderPointer:: ; d1a4
|
2013-10-04 19:03:34 -07:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
MapEventHeaderPointer:: ; d1a6
|
2013-10-04 19:03:34 -07:00
|
|
|
ds 2
|
|
|
|
; bit set
|
2014-02-01 17:26:39 -08:00
|
|
|
MapConnections:: ; d1a8
|
2013-07-19 22:25:20 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
NorthMapConnection:: ; d1a9
|
|
|
|
NorthConnectedMapGroup:: ; d1a9
|
2013-05-13 12:37:14 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
NorthConnectedMapNumber:: ; d1aa
|
2013-05-13 12:37:14 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
NorthConnectionStripPointer:: ; d1ab
|
2013-05-13 12:37:14 -07:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
NorthConnectionStripLocation:: ; d1ad
|
2013-05-13 12:37:14 -07:00
|
|
|
ds 2
|
2015-11-02 09:54:27 -08:00
|
|
|
NorthConnectionStripLength:: ; d1af
|
2013-05-13 12:37:14 -07:00
|
|
|
ds 1
|
2015-11-02 09:54:27 -08:00
|
|
|
NorthConnectedMapWidth:: ; d1b0
|
2013-05-13 12:37:14 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
NorthConnectionStripYOffset:: ; d1b1
|
2013-05-13 12:37:14 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
NorthConnectionStripXOffset:: ; d1b2
|
2013-05-13 12:37:14 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
NorthConnectionWindow:: ; d1b3
|
2013-05-13 12:37:14 -07:00
|
|
|
ds 2
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
SouthMapConnection:: ; d1b5
|
|
|
|
SouthConnectedMapGroup:: ; d1b5
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
SouthConnectedMapNumber:: ; d1b6
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
SouthConnectionStripPointer:: ; d1b7
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
SouthConnectionStripLocation:: ; d1b9
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 2
|
2015-11-02 09:54:27 -08:00
|
|
|
SouthConnectionStripLength:: ; d1bb
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2015-11-02 09:54:27 -08:00
|
|
|
SouthConnectedMapWidth:: ; d1bc
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
SouthConnectionStripYOffset:: ; d1bd
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
SouthConnectionStripXOffset:: ; d1be
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
SouthConnectionWindow:: ; d1bf
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 2
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
WestMapConnection:: ; d1c1
|
|
|
|
WestConnectedMapGroup:: ; d1c1
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
WestConnectedMapNumber:: ; d1c2
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
WestConnectionStripPointer:: ; d1c3
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
WestConnectionStripLocation:: ; d1c5
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
WestConnectionStripLength:: ; d1c7
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
WestConnectedMapWidth:: ; d1c8
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
WestConnectionStripYOffset:: ; d1c9
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
WestConnectionStripXOffset:: ; d1ca
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
WestConnectionWindow:: ; d1cb
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 2
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
EastMapConnection:: ; d1cd
|
|
|
|
EastConnectedMapGroup:: ; d1cd
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EastConnectedMapNumber:: ; d1ce
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EastConnectionStripPointer:: ; d1cf
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
EastConnectionStripLocation:: ; d1d1
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
EastConnectionStripLength:: ; d1d3
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EastConnectedMapWidth:: ; d1d4
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EastConnectionStripYOffset:: ; d1d5
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EastConnectionStripXOffset:: ; d1d6
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
EastConnectionWindow:: ; d1d7
|
2013-05-13 15:40:33 -07:00
|
|
|
ds 2
|
2013-05-13 12:37:14 -07:00
|
|
|
|
2012-12-14 00:00:10 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
TilesetHeader::
|
|
|
|
TilesetBank:: ; d1d9
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
TilesetAddress:: ; d1da
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
TilesetBlocksBank:: ; d1dc
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
TilesetBlocksAddress:: ; d1dd
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
TilesetCollisionBank:: ; d1df
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
TilesetCollisionAddress:: ; d1e0
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
TilesetAnim:: ; d1e2
|
2012-12-14 00:00:10 -08:00
|
|
|
; bank 3f
|
|
|
|
ds 2
|
|
|
|
; unused ; d1e4
|
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
TilesetPalettes:: ; d1e6
|
2012-12-14 00:00:10 -08:00
|
|
|
; bank 3f
|
|
|
|
ds 2
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
EvolvableFlags:: ; d1e8
|
2014-06-12 18:32:42 -07:00
|
|
|
flag_array PARTY_LENGTH
|
2013-04-19 00:48:07 -07:00
|
|
|
|
2016-05-16 06:36:24 -07:00
|
|
|
wForceEvolution:: db ; d1e9
|
|
|
|
|
|
|
|
; HP bar animations
|
|
|
|
wCurHPAnimMaxHP:: dw ; d1ea
|
|
|
|
wCurHPAnimOldHP:: dw ; d1ec
|
|
|
|
wCurHPAnimNewHP:: dw ; d1ee
|
|
|
|
wCurHPAnimPal:: db ; d1f0
|
|
|
|
wCurHPBarPixels:: db ; d1f1
|
|
|
|
wNewHPBarPixels:: db ; d1f2
|
|
|
|
wCurHPAnimDeltaHP:: dw ; d1f3
|
|
|
|
wCurHPAnimLowHP:: db ; d1f5
|
|
|
|
wCurHPAnimHighHP:: db ; d1f6
|
|
|
|
ds wCurHPAnimMaxHP - @
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
MagikarpLength::
|
2016-05-16 12:46:13 -07:00
|
|
|
wEvolutionOldSpecies::
|
2014-02-01 17:26:39 -08:00
|
|
|
Buffer1:: ; d1ea
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
MovementType::
|
2016-05-16 12:46:13 -07:00
|
|
|
wEvolutionNewSpecies::
|
2014-02-01 17:26:39 -08:00
|
|
|
Buffer2:: ; d1eb
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 1
|
2016-05-16 12:46:13 -07:00
|
|
|
wEvolutionPicOffset::
|
2015-10-10 14:03:04 -07:00
|
|
|
Buffer3::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd1ec:: ds 1
|
2016-05-16 12:46:13 -07:00
|
|
|
wEvolutionCanceled::
|
2015-10-10 14:03:04 -07:00
|
|
|
Buffer4::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd1ed:: ds 1
|
2015-10-10 14:03:04 -07:00
|
|
|
Buffer5::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd1ee:: ds 1
|
2015-11-07 05:05:57 -08:00
|
|
|
Buffer6::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd1ef:: ds 1
|
|
|
|
wd1f0:: ds 1
|
2016-05-16 06:36:24 -07:00
|
|
|
CurEnemyItem::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd1f1:: ds 1
|
|
|
|
wd1f2:: ds 1
|
|
|
|
wd1f3:: ds 1
|
|
|
|
wd1f4:: ds 1
|
|
|
|
wd1f5:: ds 1
|
2016-05-16 06:36:24 -07:00
|
|
|
wd1f6::
|
|
|
|
ds 4
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
LinkBattleRNs:: ; d1fa
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 10
|
|
|
|
|
2014-06-12 18:32:42 -07:00
|
|
|
TempEnemyMonSpecies:: ds 1 ; d204
|
|
|
|
TempBattleMonSpecies:: ds 1 ; d205
|
2013-04-29 12:42:31 -07:00
|
|
|
|
2014-06-12 18:32:42 -07:00
|
|
|
EnemyMon:: battle_struct EnemyMon ; d206
|
|
|
|
EnemyMonBaseStats:: ds 5 ; d226
|
|
|
|
EnemyMonCatchRate:: db ; d22b
|
|
|
|
EnemyMonBaseExp:: db ; d22c
|
2014-02-01 17:26:39 -08:00
|
|
|
EnemyMonEnd::
|
2013-03-26 02:22:22 -07:00
|
|
|
|
2012-11-23 18:19:02 -08:00
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
wBattleMode:: ; d22d
|
2012-12-14 00:00:10 -08:00
|
|
|
; 0: overworld
|
|
|
|
; 1: wild battle
|
2012-11-23 18:19:02 -08:00
|
|
|
; 2: trainer battle
|
|
|
|
ds 1
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2015-07-23 00:41:52 -07:00
|
|
|
TempWildMonSpecies:: ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
OtherTrainerClass:: ; d22f
|
2012-09-10 20:20:58 -07:00
|
|
|
; class (Youngster, Bug Catcher, etc.) of opposing trainer
|
|
|
|
; 0 if opponent is a wild Pokémon, not a trainer
|
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
BattleType:: ; d230
|
2012-11-23 18:19:02 -08:00
|
|
|
; $00 normal
|
2015-09-09 16:27:07 -07:00
|
|
|
; $01 can lose
|
|
|
|
; $02 debug
|
|
|
|
; $03 dude/tutorial
|
2012-11-23 18:19:02 -08:00
|
|
|
; $04 fishing
|
|
|
|
; $05 roaming
|
2015-09-09 16:27:07 -07:00
|
|
|
; $06 contest
|
2012-11-23 18:19:02 -08:00
|
|
|
; $07 shiny
|
|
|
|
; $08 headbutt/rock smash
|
2015-09-09 16:27:07 -07:00
|
|
|
; $09 trap
|
2012-11-23 18:19:02 -08:00
|
|
|
; $0a force Item1
|
2015-09-09 16:27:07 -07:00
|
|
|
; $0b celebi
|
2012-11-23 18:19:02 -08:00
|
|
|
; $0c suicune
|
2012-09-10 20:20:58 -07:00
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
OtherTrainerID:: ; d231
|
2012-09-10 20:20:58 -07:00
|
|
|
; which trainer of the class that you're fighting
|
|
|
|
; (Joey, Mikey, Albert, etc.)
|
|
|
|
ds 1
|
|
|
|
|
2015-11-08 16:09:36 -08:00
|
|
|
wForcedSwitch:: ds 1
|
2013-05-03 23:14:02 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
TrainerClass:: ; d233
|
2013-05-03 23:14:02 -07:00
|
|
|
ds 1
|
2012-11-23 18:19:02 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
UnownLetter:: ; d234
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 1
|
|
|
|
|
2015-11-23 13:04:53 -08:00
|
|
|
wMoveSelectionMenuType:: ds 1
|
2012-11-23 18:19:02 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
CurBaseData:: ; d236
|
|
|
|
BaseDexNo:: ; d236
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseStats:: ; d237
|
|
|
|
BaseHP:: ; d237
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseAttack:: ; d238
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseDefense:: ; d239
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseSpeed:: ; d23a
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseSpecialAttack:: ; d23b
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseSpecialDefense:: ; d23c
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseType:: ; d23d
|
|
|
|
BaseType1:: ; d23d
|
2013-04-29 12:42:31 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseType2:: ; d23e
|
2013-04-29 12:42:31 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseCatchRate:: ; d23f
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseExp:: ; d240
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseItems:: ; d241
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseGender:: ; d243
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseUnknown1:: ; d244
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseEggSteps:: ; d245
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseUnknown2:: ; d246
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BasePicSize:: ; d247
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BasePadding:: ; d248
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 4
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseGrowthRate:: ; d24c
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseEggGroups:: ; d24d
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BaseTMHM:: ; d24e
|
2013-04-29 11:04:25 -07:00
|
|
|
ds 8
|
|
|
|
|
2012-11-23 18:19:02 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
CurDamage:: ; d256
|
2013-03-26 02:22:22 -07:00
|
|
|
ds 2
|
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 2
|
2016-01-04 05:43:55 -08:00
|
|
|
wMornEncounterRate:: ds 1 ; d25a
|
|
|
|
wDayEncounterRate:: ds 1 ; d25b
|
|
|
|
wNiteEncounterRate:: ds 1 ; d25c
|
|
|
|
wWaterEncounterRate:: ds 1 ; d25d
|
|
|
|
wListMoves_MoveIndicesBuffer:: ds NUM_MOVES
|
2015-12-02 10:24:18 -08:00
|
|
|
wPutativeTMHMMove:: ds 1
|
2016-06-13 19:53:33 -07:00
|
|
|
wInitListType:: ds 1
|
2016-08-07 15:14:20 -07:00
|
|
|
wBattleHasJustStarted:: ds 1
|
2015-10-10 14:03:04 -07:00
|
|
|
wFoundMatchingIDInParty::
|
2015-10-07 10:19:41 -07:00
|
|
|
wNamedObjectIndexBuffer::
|
2015-10-12 09:33:24 -07:00
|
|
|
wCurTMHM::
|
2015-11-06 17:55:16 -08:00
|
|
|
wTypeMatchup::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd265:: ds 1
|
2015-11-23 13:04:53 -08:00
|
|
|
wFailedToFlee:: ds 1
|
|
|
|
wNumFleeAttempts:: ds 1
|
|
|
|
wMonTriedToEvolve:: ds 1
|
2012-09-10 20:20:58 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
TimeOfDay:: ; d269
|
2012-09-10 20:20:58 -07:00
|
|
|
ds 1
|
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 1
|
2015-12-02 14:59:05 -08:00
|
|
|
|
2017-03-24 04:51:03 -07:00
|
|
|
SECTION "Enemy Party", WRAMX, BANK [1]
|
2015-11-09 20:01:45 -08:00
|
|
|
wPokedexShowPointerAddr::
|
2015-02-08 00:03:32 -08:00
|
|
|
wd26b:: ds 1
|
|
|
|
wd26c:: ds 1
|
2015-11-09 20:01:45 -08:00
|
|
|
wPokedexShowPointerBank::
|
|
|
|
wd26d:: ds 1
|
|
|
|
ds 3
|
2015-02-08 00:03:32 -08:00
|
|
|
wd271:: ds 5
|
2015-11-28 12:13:40 -08:00
|
|
|
ds wd26b - @
|
2014-06-12 18:32:42 -07:00
|
|
|
|
2015-12-02 14:59:05 -08:00
|
|
|
|
|
|
|
; SECTION "Enemy Party", WRAMX, BANK [1]
|
2016-01-12 21:39:41 -08:00
|
|
|
OTPlayerName:: ds NAME_LENGTH ; d26b
|
|
|
|
OTPlayerID:: ds 2 ; d276
|
2015-11-28 12:13:40 -08:00
|
|
|
ds 8
|
2014-06-12 18:32:42 -07:00
|
|
|
OTPartyCount:: ds 1 ; d280
|
2014-06-12 19:32:58 -07:00
|
|
|
OTPartySpecies:: ds PARTY_LENGTH ; d281
|
2014-06-12 18:32:42 -07:00
|
|
|
OTPartyEnd:: ds 1
|
|
|
|
|
2015-12-13 11:15:16 -08:00
|
|
|
wDudeBag:: ; d288
|
|
|
|
wDudeNumItems:: ds 1
|
|
|
|
wDudeItems:: ds 2 * 4
|
|
|
|
wDudeItemsEnd:: ds 1
|
|
|
|
|
|
|
|
wDudeNumKeyItems:: ds 1 ; d292
|
|
|
|
wDudeKeyItems:: ds 18
|
|
|
|
wDudeKeyItemsEnd:: ds 1
|
|
|
|
|
|
|
|
wDudeNumBalls:: ds 1 ; d2a6
|
2016-01-12 09:46:18 -08:00
|
|
|
wDudeBalls:: ds 2 * 4 ; d2a7
|
|
|
|
wDudeBallsEnd:: ds 1 ; d2af
|
2015-12-13 11:15:16 -08:00
|
|
|
wDudeBagEnd::
|
|
|
|
ds wDudeBag - @
|
|
|
|
|
2014-06-14 22:33:23 -07:00
|
|
|
OTPartyMons::
|
2014-06-12 18:32:42 -07:00
|
|
|
OTPartyMon1:: party_struct OTPartyMon1 ; d288
|
|
|
|
OTPartyMon2:: party_struct OTPartyMon2 ; d2b8
|
|
|
|
OTPartyMon3:: party_struct OTPartyMon3 ; d2e8
|
|
|
|
OTPartyMon4:: party_struct OTPartyMon4 ; d318
|
|
|
|
OTPartyMon5:: party_struct OTPartyMon5 ; d348
|
|
|
|
OTPartyMon6:: party_struct OTPartyMon6 ; d378
|
2014-06-14 22:33:23 -07:00
|
|
|
OTPartyMonsEnd::
|
2014-06-12 18:32:42 -07:00
|
|
|
|
2014-06-12 19:32:58 -07:00
|
|
|
OTPartyMonOT:: ds NAME_LENGTH * PARTY_LENGTH ; d3a8
|
|
|
|
OTPartyMonNicknames:: ds PKMN_NAME_LENGTH * PARTY_LENGTH ; d3ea
|
2016-01-04 05:43:55 -08:00
|
|
|
OTPartyDataEnd::
|
2014-06-13 21:18:14 -07:00
|
|
|
ds 4
|
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
wd430::
|
2014-06-13 21:18:14 -07:00
|
|
|
wBattleAction:: ds 1 ; d430
|
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
wd431:: ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
MapStatus:: ; d432
|
2013-12-27 02:56:23 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
MapEventStatus:: ; d433
|
2015-11-02 09:54:27 -08:00
|
|
|
; 0: do map events
|
|
|
|
; 1: do background events
|
2013-12-27 02:56:23 -08:00
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
ScriptFlags:: ; d434
|
2015-11-28 12:13:40 -08:00
|
|
|
; bit 3: priority jump
|
2013-07-04 02:37:20 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
ScriptFlags2:: ; d435
|
2013-07-19 22:25:20 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
ScriptFlags3:: ; d436
|
2015-11-13 15:59:49 -08:00
|
|
|
; bit 0: count steps
|
|
|
|
; bit 1: xy triggers
|
|
|
|
; bit 2: warps and connections
|
|
|
|
; bit 4: wild encounters
|
|
|
|
; bit 5: unknown
|
2013-07-19 22:25:20 -07:00
|
|
|
ds 1
|
2013-02-28 13:45:34 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
ScriptMode:: ; d437
|
2013-07-04 02:37:20 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
ScriptRunning:: ; d438
|
2013-07-04 01:11:28 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
ScriptBank:: ; d439
|
2013-02-28 13:45:34 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
ScriptPos:: ; d43a
|
2013-02-28 13:45:34 -08:00
|
|
|
ds 2
|
2012-11-23 18:19:02 -08:00
|
|
|
|
2015-11-16 08:53:26 -08:00
|
|
|
wScriptStackSize:: ds 1
|
2015-12-01 18:54:11 -08:00
|
|
|
wScriptStack:: ds 3 * 5
|
2015-11-16 08:53:26 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
ScriptDelay:: ; d44d
|
2013-07-04 02:37:20 -07:00
|
|
|
ds 1
|
|
|
|
|
2015-11-28 12:13:40 -08:00
|
|
|
wPriorityScriptBank::
|
|
|
|
wScriptTextBank::
|
2016-01-12 09:46:18 -08:00
|
|
|
ds 1 ; d44e
|
2015-11-28 12:13:40 -08:00
|
|
|
wPriorityScriptAddr::
|
2016-01-12 09:46:18 -08:00
|
|
|
wScriptTextAddr:: ds 2 ; d44f
|
|
|
|
ds 1
|
2016-01-27 09:25:12 -08:00
|
|
|
wWildEncounterCooldown:: ds 1 ; d452
|
|
|
|
wXYComparePointer:: ds 2 ; d453
|
2015-02-10 14:16:31 -08:00
|
|
|
ds 4
|
2015-02-08 00:03:32 -08:00
|
|
|
|
2016-01-27 09:25:12 -08:00
|
|
|
wBattleScriptFlags:: ds 2 ; d459
|
|
|
|
wPlayerSpriteSetupFlags:: ds 1 ; d45b
|
2016-01-04 05:43:55 -08:00
|
|
|
; bit 7: if set, cancel PlayerAction
|
|
|
|
; bit 5: if set, set facing according to bits 0-1
|
|
|
|
; bits 0-1: direction facing
|
2016-01-27 09:25:12 -08:00
|
|
|
wMapReentryScriptQueueFlag:: ds 1 ; d45c MemScriptFlag
|
|
|
|
wMapReentryScriptBank:: ds 1 ; d45d MemScriptBank
|
|
|
|
wMapReentryScriptAddress:: ds 2 ; d45e MemScriptAddr
|
2015-10-24 07:34:19 -07:00
|
|
|
ds 4 ; ?????????????
|
2016-01-27 09:25:12 -08:00
|
|
|
wTimeCyclesSinceLastCall:: ds 1 ; d464
|
|
|
|
wReceiveCallDelay_MinsRemaining:: ds 1 ; d465
|
|
|
|
wReceiveCallDelay_StartTime:: ds 3 ; d466
|
2015-10-24 07:34:19 -07:00
|
|
|
ds 3
|
2016-01-27 09:25:12 -08:00
|
|
|
wBugContestMinsRemaining:: ds 1 ; d46c
|
|
|
|
wBugContestSecsRemaining:: ds 1 ; d46d
|
2015-12-17 12:14:51 -08:00
|
|
|
ds 2
|
|
|
|
wMapStatusEnd:: ds 2 ; d470
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2015-08-19 21:14:15 -07:00
|
|
|
wCrystalData::
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerGender:: ; d472
|
2013-02-03 21:22:53 -08:00
|
|
|
; bit 0:
|
|
|
|
; 0 male
|
|
|
|
; 1 female
|
|
|
|
ds 1
|
2015-02-08 00:03:32 -08:00
|
|
|
wd473:: ds 1
|
|
|
|
wd474:: ds 1
|
|
|
|
wd475:: ds 1
|
|
|
|
wd476:: ds 1
|
|
|
|
wd477:: ds 1
|
|
|
|
wd478:: ds 1
|
2015-08-19 21:14:15 -07:00
|
|
|
wCrystalDataEnd::
|
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
wd479:: ds 2
|
|
|
|
|
2015-10-13 11:29:34 -07:00
|
|
|
wGameData::
|
2015-08-19 21:14:15 -07:00
|
|
|
wPlayerData::
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerID:: ; d47b
|
2012-07-04 20:42:39 -07:00
|
|
|
ds 2
|
2013-07-21 02:53:04 -07:00
|
|
|
|
2014-06-12 19:32:58 -07:00
|
|
|
PlayerName:: ds NAME_LENGTH ; d47d
|
|
|
|
MomsName:: ds NAME_LENGTH ; d488
|
|
|
|
RivalName:: ds NAME_LENGTH ; d493
|
|
|
|
RedsName:: ds NAME_LENGTH ; d49e
|
|
|
|
GreensName:: ds NAME_LENGTH ; d4a9
|
2013-05-12 17:36:40 -07:00
|
|
|
|
2015-10-16 10:35:43 -07:00
|
|
|
wSavedAtLeastOnce:: ds 1
|
2015-10-07 10:19:41 -07:00
|
|
|
wSpawnAfterChampion:: ds 1
|
2012-07-04 20:42:39 -07:00
|
|
|
|
2012-11-23 18:19:02 -08:00
|
|
|
; init time set at newgame
|
2014-02-01 17:26:39 -08:00
|
|
|
StartDay:: ; d4b6
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
StartHour:: ; d4b7
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
StartMinute:: ; d4b8
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
StartSecond:: ; d4b9
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 1
|
|
|
|
|
2014-07-24 10:45:30 -07:00
|
|
|
wRTC:: ; d4ba
|
|
|
|
ds 8
|
|
|
|
wDST:: ; d4c2
|
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
GameTimeCap:: ; d4c3
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
GameTimeHours:: ; d4c4
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
GameTimeMinutes:: ; d4c6
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
GameTimeSeconds:: ; d4c7
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
GameTimeFrames:: ; d4c8
|
2012-12-14 00:00:10 -08:00
|
|
|
ds 1
|
|
|
|
|
|
|
|
ds 2
|
2012-11-23 18:19:02 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
CurDay:: ; d4cb
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 1
|
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 1
|
2015-11-02 08:15:32 -08:00
|
|
|
wObjectFollow_Leader:: ds 1
|
|
|
|
wObjectFollow_Follower:: ds 1
|
2015-11-16 08:53:26 -08:00
|
|
|
wCenteredObject:: ds 1
|
2015-12-29 10:15:58 -08:00
|
|
|
wFollowerMovementQueueLength:: ds 1
|
|
|
|
wFollowMovementQueue:: ds 5
|
2013-07-22 00:00:07 -07:00
|
|
|
|
2015-11-13 15:59:49 -08:00
|
|
|
ObjectStructs:: ; d4d6
|
2015-11-02 08:15:32 -08:00
|
|
|
object_struct Player
|
|
|
|
object_struct Object1
|
|
|
|
object_struct Object2
|
|
|
|
object_struct Object3
|
|
|
|
object_struct Object4
|
|
|
|
object_struct Object5
|
|
|
|
object_struct Object6
|
|
|
|
object_struct Object7
|
|
|
|
object_struct Object8
|
|
|
|
object_struct Object9
|
|
|
|
object_struct Object10
|
|
|
|
object_struct Object11
|
|
|
|
object_struct Object12
|
2015-11-18 20:16:25 -08:00
|
|
|
ObjectStructsEnd:: ; d6de
|
2013-06-26 21:34:49 -07:00
|
|
|
|
2015-11-18 20:16:25 -08:00
|
|
|
wCmdQueue:: ds CMDQUEUE_CAPACITY * CMDQUEUE_ENTRY_SIZE
|
|
|
|
ds $28
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2015-11-15 11:59:38 -08:00
|
|
|
MapObjects:: ; d71e
|
2015-11-04 17:20:14 -08:00
|
|
|
map_object Player
|
|
|
|
map_object Map1
|
|
|
|
map_object Map2
|
|
|
|
map_object Map3
|
|
|
|
map_object Map4
|
|
|
|
map_object Map5
|
|
|
|
map_object Map6
|
|
|
|
map_object Map7
|
|
|
|
map_object Map8
|
|
|
|
map_object Map9
|
|
|
|
map_object Map10
|
|
|
|
map_object Map11
|
|
|
|
map_object Map12
|
|
|
|
map_object Map13
|
|
|
|
map_object Map14
|
|
|
|
map_object Map15
|
2015-11-15 11:59:38 -08:00
|
|
|
MapObjectsEnd::
|
2013-07-04 01:11:28 -07:00
|
|
|
|
2015-11-01 18:17:46 -08:00
|
|
|
wObjectMasks:: ds NUM_OBJECTS ; d81e
|
2013-07-04 01:11:28 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
VariableSprites:: ; d82e
|
2013-07-07 22:35:41 -07:00
|
|
|
ds $10
|
|
|
|
|
2015-11-10 08:05:26 -08:00
|
|
|
wEnteredMapFromContinue:: ds 1 ; d83e
|
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
TimeOfDayPal:: ; d841
|
2012-12-23 00:21:19 -08:00
|
|
|
ds 1
|
|
|
|
ds 4
|
|
|
|
; d846
|
2015-12-14 08:12:18 -08:00
|
|
|
wTimeOfDayPalFlags:: ds 1
|
|
|
|
wTimeOfDayPalset:: ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
CurTimeOfDay:: ; d848
|
2012-12-23 00:21:19 -08:00
|
|
|
ds 1
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 1
|
2013-07-01 19:55:13 -07:00
|
|
|
|
2016-01-12 09:46:18 -08:00
|
|
|
wSecretID:: ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
StatusFlags:: ; d84c
|
2015-11-12 21:49:27 -08:00
|
|
|
; 0 - pokedex
|
|
|
|
; 1 - unown dex
|
2016-04-10 11:42:14 -07:00
|
|
|
; 2 -
|
2015-11-12 21:49:27 -08:00
|
|
|
; 3 - pokerus
|
|
|
|
; 4 - rocket signal
|
|
|
|
; 5 - wild encounters on/off
|
|
|
|
; 6 - hall of fame
|
|
|
|
; 7 - bug contest on
|
2013-07-01 19:55:13 -07:00
|
|
|
ds 1
|
2015-11-15 11:59:38 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
StatusFlags2:: ; d84d
|
2015-11-12 21:49:27 -08:00
|
|
|
; 0 - rockets
|
2016-04-10 11:42:14 -07:00
|
|
|
; 1 -
|
2015-11-12 21:49:27 -08:00
|
|
|
; 2 - bug contest timer
|
2016-04-10 11:42:14 -07:00
|
|
|
; 3 -
|
2015-11-12 21:49:27 -08:00
|
|
|
; 4 - bike shop call
|
|
|
|
; 5 - pokerus
|
|
|
|
; 6 - berry juice?
|
|
|
|
; 7 - rockets in mahogany
|
2013-07-01 19:55:13 -07:00
|
|
|
ds 1
|
2012-12-23 00:21:19 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Money:: ; d84e
|
2012-09-11 19:37:03 -07:00
|
|
|
ds 3
|
|
|
|
|
2014-06-10 23:08:07 -07:00
|
|
|
wMomsMoney:: ; d851
|
|
|
|
ds 3
|
|
|
|
wMomSavingMoney:: ; d854
|
|
|
|
ds 1
|
2013-08-30 14:48:59 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Coins:: ; d855
|
2013-08-30 14:48:59 -07:00
|
|
|
ds 2
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Badges::
|
|
|
|
JohtoBadges:: ; d857
|
2014-06-13 22:53:20 -07:00
|
|
|
flag_array 8
|
2014-02-01 17:26:39 -08:00
|
|
|
KantoBadges:: ; d858
|
2014-06-13 22:53:20 -07:00
|
|
|
flag_array 8
|
2014-09-19 12:44:48 -07:00
|
|
|
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
TMsHMs:: ; d859
|
2014-09-19 12:44:48 -07:00
|
|
|
ds NUM_TMS + NUM_HMS
|
2014-02-01 17:26:39 -08:00
|
|
|
TMsHMsEnd::
|
2012-09-11 19:37:03 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
NumItems:: ; d892
|
2012-09-11 19:37:03 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
Items:: ; d893
|
2014-09-19 12:44:48 -07:00
|
|
|
ds MAX_ITEMS * 2 + 1
|
2014-02-01 17:26:39 -08:00
|
|
|
ItemsEnd::
|
2012-09-11 19:37:03 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
NumKeyItems:: ; d8bc
|
2012-09-11 19:37:03 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
KeyItems:: ; d8bd
|
2014-09-19 12:44:48 -07:00
|
|
|
ds MAX_KEY_ITEMS + 1
|
2014-02-01 17:26:39 -08:00
|
|
|
KeyItemsEnd::
|
2013-07-02 20:01:34 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
NumBalls:: ; d8d7
|
2012-09-11 19:37:03 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
Balls:: ; d8d8
|
2014-09-19 12:44:48 -07:00
|
|
|
ds MAX_BALLS * 2 + 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BallsEnd::
|
2013-08-29 21:07:51 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PCItems:: ; d8f1
|
2014-09-19 12:44:48 -07:00
|
|
|
ds MAX_PC_ITEMS * 2 + 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PCItemsEnd::
|
2013-08-29 21:07:51 -07:00
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 1
|
2013-08-29 21:07:51 -07:00
|
|
|
|
2015-05-18 02:15:45 -07:00
|
|
|
wPokegearFlags:: ds 1
|
2016-01-09 20:41:03 -08:00
|
|
|
; bit 0: map
|
|
|
|
; bit 1: radio
|
|
|
|
; bit 2: phone
|
|
|
|
; bit 3: expn
|
|
|
|
; bit 7: on/off
|
2015-10-09 20:09:03 -07:00
|
|
|
wRadioTuningKnob:: ds 1
|
2015-11-29 18:34:59 -08:00
|
|
|
wLastDexMode:: ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
WhichRegisteredItem:: ; d95b
|
2013-07-02 20:01:34 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
RegisteredItem:: ; d95c
|
2013-07-02 20:01:34 -07:00
|
|
|
ds 1
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PlayerState:: ; d95d
|
2012-09-23 09:50:44 -07:00
|
|
|
ds 1
|
2012-09-11 19:37:03 -07:00
|
|
|
|
2015-11-16 18:46:36 -08:00
|
|
|
wHallOfFameCount:: ds 2
|
2016-01-12 09:46:18 -08:00
|
|
|
wTradeFlags:: flag_array 6 ; d960
|
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
MooMooBerries:: ; d962
|
2012-07-04 23:19:52 -07:00
|
|
|
ds 1 ; how many berries fed to MooMoo
|
2014-02-01 17:26:39 -08:00
|
|
|
UndergroundSwitchPositions:: ; d963
|
2012-07-04 23:19:52 -07:00
|
|
|
ds 1 ; which positions the switches are in
|
2014-02-01 17:26:39 -08:00
|
|
|
FarfetchdPosition:: ; d964
|
2012-07-04 23:19:52 -07:00
|
|
|
ds 1 ; which position the ilex farfetch'd is in
|
|
|
|
|
2014-09-19 12:44:48 -07:00
|
|
|
ds 13
|
|
|
|
|
|
|
|
|
2015-08-19 21:14:15 -07:00
|
|
|
;SECTION "Map Triggers", WRAMX, BANK [1]
|
2014-03-03 19:46:04 -08:00
|
|
|
|
|
|
|
wPokecenter2FTrigger:: ds 1 ; d972
|
|
|
|
wTradeCenterTrigger:: ds 1 ; d973
|
|
|
|
wColosseumTrigger:: ds 1 ; d974
|
|
|
|
wTimeCapsuleTrigger:: ds 1 ; d975
|
|
|
|
wPowerPlantTrigger:: ds 1 ; d976
|
|
|
|
wCeruleanGymTrigger:: ds 1 ; d977
|
|
|
|
wRoute25Trigger:: ds 1 ; d978
|
|
|
|
wTrainerHouseB1FTrigger:: ds 1 ; d979
|
|
|
|
wVictoryRoadGateTrigger:: ds 1 ; d97a
|
|
|
|
wSaffronTrainStationTrigger:: ds 1 ; d97b
|
|
|
|
wRoute16GateTrigger:: ds 1 ; d97c
|
|
|
|
wRoute1718GateTrigger:: ds 1 ; d97d
|
|
|
|
wIndigoPlateauPokecenter1FTrigger:: ds 1 ; d97e
|
|
|
|
wWillsRoomTrigger:: ds 1 ; d97f
|
|
|
|
wKogasRoomTrigger:: ds 1 ; d980
|
|
|
|
wBrunosRoomTrigger:: ds 1 ; d981
|
|
|
|
wKarensRoomTrigger:: ds 1 ; d982
|
|
|
|
wLancesRoomTrigger:: ds 1 ; d983
|
|
|
|
wHallOfFameTrigger:: ds 1 ; d984
|
|
|
|
wRoute27Trigger:: ds 1 ; d985
|
|
|
|
wNewBarkTownTrigger:: ds 1 ; d986
|
|
|
|
wElmsLabTrigger:: ds 1 ; d987
|
|
|
|
wKrissHouse1FTrigger:: ds 1 ; d988
|
|
|
|
wRoute29Trigger:: ds 1 ; d989
|
|
|
|
wCherrygroveCityTrigger:: ds 1 ; d98a
|
|
|
|
wMrPokemonsHouseTrigger:: ds 1 ; d98b
|
|
|
|
wRoute32Trigger:: ds 1 ; d98c
|
|
|
|
wRoute35NationalParkGateTrigger:: ds 1 ; d98d
|
|
|
|
wRoute36Trigger:: ds 1 ; d98e
|
|
|
|
wRoute36NationalParkGateTrigger:: ds 1 ; d98f
|
|
|
|
wAzaleaTownTrigger:: ds 1 ; d990
|
|
|
|
wGoldenrodGymTrigger:: ds 1 ; d991
|
|
|
|
wGoldenrodMagnetTrainStationTrigger:: ds 1 ; d992
|
|
|
|
wGoldenrodPokecenter1FTrigger:: ds 1 ; d993
|
|
|
|
wOlivineCityTrigger:: ds 1 ; d994
|
|
|
|
wRoute34Trigger:: ds 1 ; d995
|
|
|
|
wRoute34IlexForestGateTrigger:: ds 1 ; d996
|
|
|
|
wEcruteakHouseTrigger:: ds 1 ; d997
|
|
|
|
wWiseTriosRoomTrigger:: ds 1 ; d998
|
|
|
|
wEcruteakPokecenter1FTrigger:: ds 1 ; d999
|
|
|
|
wEcruteakGymTrigger:: ds 1 ; d99a
|
|
|
|
wMahoganyTownTrigger:: ds 1 ; d99b
|
|
|
|
wRoute42Trigger:: ds 1 ; d99c
|
|
|
|
wCianwoodCityTrigger:: ds 1 ; d99d
|
|
|
|
wBattleTower1FTrigger:: ds 1 ; d99e
|
|
|
|
wBattleTowerBattleRoomTrigger:: ds 1 ; d99f
|
|
|
|
wBattleTowerElevatorTrigger:: ds 1 ; d9a0
|
|
|
|
wBattleTowerHallwayTrigger:: ds 1 ; d9a1
|
|
|
|
wBattleTowerOutsideTrigger:: ds 1 ; d9a2
|
|
|
|
wRoute43GateTrigger:: ds 1 ; d9a3
|
|
|
|
wMountMoonTrigger:: ds 1 ; d9a4
|
|
|
|
wSproutTower3FTrigger:: ds 1 ; d9a5
|
|
|
|
wTinTower1FTrigger:: ds 1 ; d9a6
|
|
|
|
wBurnedTower1FTrigger:: ds 1 ; d9a7
|
|
|
|
wBurnedTowerB1FTrigger:: ds 1 ; d9a8
|
|
|
|
wRadioTower5FTrigger:: ds 1 ; d9a9
|
|
|
|
wRuinsOfAlphOutsideTrigger:: ds 1 ; d9aa
|
|
|
|
wRuinsOfAlphResearchCenterTrigger:: ds 1 ; d9ab
|
|
|
|
wRuinsOfAlphHoOhChamberTrigger:: ds 1 ; d9ac
|
|
|
|
wRuinsOfAlphKabutoChamberTrigger:: ds 1 ; d9ad
|
|
|
|
wRuinsOfAlphOmanyteChamberTrigger:: ds 1 ; d9ae
|
|
|
|
wRuinsOfAlphAerodactylChamberTrigger:: ds 1 ; d9af
|
|
|
|
wRuinsOfAlphInnerChamberTrigger:: ds 1 ; d9b0
|
|
|
|
wMahoganyMart1FTrigger:: ds 1 ; d9b1
|
|
|
|
wTeamRocketBaseB1FTrigger:: ds 1 ; d9b2
|
|
|
|
wTeamRocketBaseB2FTrigger:: ds 1 ; d9b3
|
|
|
|
wTeamRocketBaseB3FTrigger:: ds 1 ; d9b4
|
|
|
|
wUndergroundPathSwitchRoomEntrancesTrigger:: ds 1 ; d9b5
|
|
|
|
wSilverCaveRoom3Trigger:: ds 1 ; d9b6
|
|
|
|
wVictoryRoadTrigger:: ds 1 ; d9b7
|
|
|
|
wDragonsDenB1FTrigger:: ds 1 ; d9b8
|
|
|
|
wDragonShrineTrigger:: ds 1 ; d9b9
|
|
|
|
wOlivinePortTrigger:: ds 1 ; d9ba
|
|
|
|
wVermilionPortTrigger:: ds 1 ; d9bb
|
|
|
|
wFastShip1FTrigger:: ds 1 ; d9bc
|
|
|
|
wFastShipB1FTrigger:: ds 1 ; d9bd
|
|
|
|
wMountMoonSquareTrigger:: ds 1 ; d9be
|
|
|
|
wMobileTradeRoomMobileTrigger:: ds 1 ; d9bf
|
|
|
|
wMobileBattleRoomTrigger:: ds 1 ; d9c0
|
|
|
|
|
2014-09-19 12:44:48 -07:00
|
|
|
ds 49
|
2014-03-03 19:46:04 -08:00
|
|
|
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2015-08-19 21:14:15 -07:00
|
|
|
;SECTION "Events", WRAMX, BANK [1]
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2016-01-12 09:46:18 -08:00
|
|
|
wJackFightCount:: ds 1 ; d9f2
|
|
|
|
wBeverlyFightCount:: ds 1 ; unused
|
2015-07-10 13:04:00 -07:00
|
|
|
wHueyFightCount:: ds 1
|
|
|
|
wGavenFightCount:: ds 1
|
|
|
|
wBethFightCount:: ds 1
|
|
|
|
wJoseFightCount:: ds 1
|
|
|
|
wReenaFightCount:: ds 1
|
|
|
|
wJoeyFightCount:: ds 1
|
|
|
|
wWadeFightCount:: ds 1
|
|
|
|
wRalphFightCount:: ds 1
|
|
|
|
wLizFightCount:: ds 1
|
|
|
|
wAnthonyFightCount:: ds 1
|
|
|
|
wToddFightCount:: ds 1
|
|
|
|
wGinaFightCount:: ds 1
|
2016-01-12 09:46:18 -08:00
|
|
|
wIrwinFightCount:: ds 1 ; unused
|
2015-07-10 13:04:00 -07:00
|
|
|
wArnieFightCount:: ds 1
|
|
|
|
wAlanFightCount:: ds 1
|
|
|
|
wDanaFightCount:: ds 1
|
|
|
|
wChadFightCount:: ds 1
|
2016-01-12 09:46:18 -08:00
|
|
|
wDerekFightCount:: ds 1 ; unused
|
2015-07-10 13:04:00 -07:00
|
|
|
wTullyFightCount:: ds 1
|
|
|
|
wBrentFightCount:: ds 1
|
|
|
|
wTiffanyFightCount:: ds 1
|
|
|
|
wVanceFightCount:: ds 1
|
|
|
|
wWiltonFightCount:: ds 1
|
2016-01-12 09:46:18 -08:00
|
|
|
wKenjiFightCount:: ds 1 ; unused
|
2015-07-10 13:04:00 -07:00
|
|
|
wParryFightCount:: ds 1
|
|
|
|
wErinFightCount:: ds 1
|
2016-01-12 09:46:18 -08:00
|
|
|
; da0e
|
2015-02-10 15:37:24 -08:00
|
|
|
ds 100
|
2012-06-05 21:49:44 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
EventFlags:: ; da72
|
2015-07-12 21:16:35 -07:00
|
|
|
flag_array NUM_EVENTS
|
2013-08-23 12:00:07 -07:00
|
|
|
; db6c
|
2012-06-05 21:49:44 -07:00
|
|
|
|
2014-09-19 12:44:48 -07:00
|
|
|
ds 6
|
2014-04-12 12:45:19 -07:00
|
|
|
|
|
|
|
wCurBox:: ; db72
|
|
|
|
ds 1
|
|
|
|
|
|
|
|
ds 2
|
|
|
|
|
2012-04-18 21:18:36 -07:00
|
|
|
; 8 chars + $50
|
2015-11-04 11:02:11 -08:00
|
|
|
wBoxNames:: ds BOX_NAME_LENGTH * NUM_BOXES ; db75
|
2012-04-18 21:18:36 -07:00
|
|
|
|
2015-10-24 07:34:19 -07:00
|
|
|
wCelebiEvent:: ds 1
|
2015-02-10 14:16:31 -08:00
|
|
|
ds 1
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
BikeFlags:: ; dbf5
|
2016-01-04 05:43:55 -08:00
|
|
|
; bit 0: using strength
|
2013-06-26 21:34:49 -07:00
|
|
|
; bit 1: always on bike
|
|
|
|
; bit 2: downhill
|
|
|
|
ds 1
|
|
|
|
|
2015-07-16 15:10:10 -07:00
|
|
|
ds 1
|
2016-01-12 09:46:18 -08:00
|
|
|
wCurrentMapTriggerPointer:: ds 2 ; dbf7
|
|
|
|
|
|
|
|
wCurrentCaller:: ds 2 ; dbf9
|
|
|
|
wCurrMapWarpCount:: ds 1 ; dbfb
|
|
|
|
wCurrMapWarpHeaderPointer:: ds 2 ; dbfc
|
|
|
|
wCurrentMapXYTriggerCount:: ds 1 ; dbfe
|
|
|
|
wCurrentMapXYTriggerHeaderPointer:: ds 2 ; dbff
|
|
|
|
wCurrentMapSignpostCount:: ds 1 ; dc01
|
|
|
|
wCurrentMapSignpostHeaderPointer:: ds 2 ; dc02
|
|
|
|
wCurrentMapPersonEventCount:: ds 1 ; dc04
|
|
|
|
wCurrentMapPersonEventHeaderPointer:: ds 2 ; dc05
|
|
|
|
wCurrMapTriggerCount:: ds 1 ; dc07
|
|
|
|
wCurrMapTriggerHeaderPointer:: ds 2 ; dc08
|
|
|
|
wCurrMapCallbackCount:: ds 1 ; dc0a
|
|
|
|
wCurrMapCallbackHeaderPointer:: ds 2 ; dc0b
|
|
|
|
ds 2
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2013-05-29 15:56:09 -07:00
|
|
|
; Sprite id of each decoration
|
2014-02-01 17:26:39 -08:00
|
|
|
Bed:: ; dc0f
|
2013-05-29 15:56:09 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
Carpet:: ; dc10
|
2013-05-29 15:56:09 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
Plant:: ; dc11
|
2013-05-29 15:56:09 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
Poster:: ; dc12
|
2013-05-29 15:56:09 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
Console:: ; dc13
|
2013-05-29 15:56:09 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
LeftOrnament:: ; dc14
|
2013-05-29 15:56:09 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
RightOrnament:: ; dc15
|
2013-05-29 15:56:09 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BigDoll:: ; dc16
|
2013-05-29 15:56:09 -07:00
|
|
|
ds 1
|
|
|
|
|
2015-12-26 15:11:55 -08:00
|
|
|
; Items bought from Mom
|
2016-01-12 09:46:18 -08:00
|
|
|
wWhichMomItem:: ds 1 ; dc17
|
|
|
|
wWhichMomItemSet:: ds 1 ; dc18
|
|
|
|
MomItemTriggerBalance:: ds 3 ; dc19
|
2015-12-26 15:11:55 -08:00
|
|
|
|
2016-05-04 08:46:23 -07:00
|
|
|
wDailyResetTimer:: ds 2 ; dc1c
|
2015-07-20 00:51:52 -07:00
|
|
|
DailyFlags:: ds 1
|
|
|
|
WeeklyFlags:: ds 1
|
|
|
|
SwarmFlags:: ds 1
|
2016-01-12 09:46:18 -08:00
|
|
|
ds 2
|
2015-10-24 07:34:19 -07:00
|
|
|
wStartDay:: ds 1
|
2016-01-12 09:46:18 -08:00
|
|
|
ds 3
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2016-01-12 09:46:18 -08:00
|
|
|
FruitTreeFlags:: flag_array NUM_FRUIT_TREES ; dc27
|
2013-05-03 12:40:45 -07:00
|
|
|
|
2016-01-12 09:46:18 -08:00
|
|
|
ds 2
|
2015-02-08 00:03:32 -08:00
|
|
|
|
2016-05-04 08:46:23 -07:00
|
|
|
wLuckyNumberDayBuffer:: ds 2 ; dc2d
|
2015-10-10 14:03:04 -07:00
|
|
|
ds 2
|
2016-05-04 08:46:23 -07:00
|
|
|
wSpecialPhoneCallID:: ds 1 ; dc31
|
2016-01-10 14:44:09 -08:00
|
|
|
ds 3
|
2016-01-27 09:25:12 -08:00
|
|
|
wBugContestStartTime:: ds 4 ; day, hour, min, sec ; dc35
|
2016-01-12 09:46:18 -08:00
|
|
|
wUnusedTwoDayTimerOn:: ds 1 ; dc39
|
2015-10-24 07:34:19 -07:00
|
|
|
wUnusedTwoDayTimer:: ds 1
|
|
|
|
wUnusedTwoDayTimerStartDate:: ds 1
|
|
|
|
ds 4
|
2016-01-12 09:46:18 -08:00
|
|
|
wMobileOrCable_LastSelection:: ds 1
|
2015-02-08 00:03:32 -08:00
|
|
|
wdc41:: ds 1
|
|
|
|
wdc42:: ds 8
|
2015-10-24 07:34:19 -07:00
|
|
|
wBuenasPassword:: ds 1
|
|
|
|
wBlueCardBalance:: ds 1
|
2015-07-25 11:25:37 -07:00
|
|
|
wDailyRematchFlags:: ds 4
|
|
|
|
wDailyPhoneItemFlags:: ds 4
|
|
|
|
wDailyPhoneTimeOfDayFlags:: ds 4
|
2015-12-01 12:35:28 -08:00
|
|
|
wKenjiBreakTimer:: ds 2 ; Kenji
|
2015-12-16 18:57:42 -08:00
|
|
|
wYanmaMapGroup:: ds 1 ; dc5a
|
2015-12-09 08:38:40 -08:00
|
|
|
wYanmaMapNumber:: ds 1
|
2016-05-05 12:07:37 -07:00
|
|
|
wPlayerMonSelection:: ds 3
|
2015-02-08 00:03:32 -08:00
|
|
|
wdc5f:: ds 1
|
|
|
|
wdc60:: ds 19
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
StepCount:: ; dc73
|
2013-03-22 01:08:47 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
PoisonStepCount:: ; dc74
|
2013-03-22 01:08:47 -07:00
|
|
|
ds 1
|
2013-02-03 21:22:53 -08:00
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 2
|
2016-01-06 13:59:56 -08:00
|
|
|
wHappinessStepCount:: ds 1
|
|
|
|
ds 1
|
2015-11-08 10:27:26 -08:00
|
|
|
wParkBallsRemaining::
|
2016-01-06 13:59:56 -08:00
|
|
|
wSafariBallsRemaining:: ds 1 ; dc79
|
|
|
|
wSafariTimeRemaining:: ds 2 ; dc7a
|
|
|
|
wPhoneList:: ds CONTACT_LIST_SIZE ; dc7c
|
2016-01-12 09:46:18 -08:00
|
|
|
; dc86
|
2015-10-24 07:34:19 -07:00
|
|
|
ds 23
|
2015-10-19 07:25:15 -07:00
|
|
|
wLuckyNumberShowFlag:: ds 2 ; dc9d
|
|
|
|
wLuckyIDNumber:: ds 2 ; dc9f
|
2015-10-25 19:26:53 -07:00
|
|
|
wRepelEffect:: ds 1 ; If a Repel is in use, it contains the nr of steps it's still active
|
2015-10-24 07:34:19 -07:00
|
|
|
wBikeStep:: ds 2
|
|
|
|
wKurtApricornQuantity:: ds 1
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2015-08-19 21:14:15 -07:00
|
|
|
wPlayerDataEnd::
|
|
|
|
|
|
|
|
|
|
|
|
wMapData::
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
VisitedSpawns:: ; dca5
|
2015-11-29 18:34:59 -08:00
|
|
|
flag_array NUM_SPAWNS
|
2013-02-03 21:22:53 -08:00
|
|
|
|
2016-03-01 19:31:21 -08:00
|
|
|
wDigWarp:: ds 1 ; dcaa
|
|
|
|
wDigMapGroup:: ds 1 ; dcab
|
|
|
|
wDigMapNumber:: ds 1 ; dcac
|
2012-09-10 20:20:58 -07:00
|
|
|
; used on maps like second floor pokécenter, which are reused, so we know which
|
|
|
|
; map to return to
|
2016-03-01 19:31:21 -08:00
|
|
|
BackupWarpNumber:: ; dcad
|
2015-11-12 08:10:19 -08:00
|
|
|
ds 1
|
2016-03-01 19:31:21 -08:00
|
|
|
BackupMapGroup:: ; dcae
|
2012-09-10 20:20:58 -07:00
|
|
|
ds 1
|
2016-03-01 19:31:21 -08:00
|
|
|
BackupMapNumber:: ; dcaf
|
2012-09-10 20:20:58 -07:00
|
|
|
ds 1
|
|
|
|
|
2015-02-08 00:03:32 -08:00
|
|
|
ds 3
|
|
|
|
|
2015-11-29 18:34:59 -08:00
|
|
|
wLastSpawnMapGroup:: ds 1
|
|
|
|
wLastSpawnMapNumber:: ds 1
|
2012-07-04 21:13:23 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
WarpNumber:: ; dcb4
|
2012-07-04 21:13:23 -07:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
MapGroup:: ; dcb5
|
2012-07-04 21:13:23 -07:00
|
|
|
ds 1 ; map group of current map
|
2014-02-01 17:26:39 -08:00
|
|
|
MapNumber:: ; dcb6
|
2012-07-04 21:13:23 -07:00
|
|
|
ds 1 ; map number of current map
|
2014-02-01 17:26:39 -08:00
|
|
|
YCoord:: ; dcb7
|
2012-07-04 21:13:23 -07:00
|
|
|
ds 1 ; current y coordinate relative to top-left corner of current map
|
2014-02-01 17:26:39 -08:00
|
|
|
XCoord:: ; dcb8
|
2012-07-04 21:13:23 -07:00
|
|
|
ds 1 ; current x coordinate relative to top-left corner of current map
|
2015-12-14 08:12:18 -08:00
|
|
|
wScreenSave:: ds 6 * 5
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2015-08-19 21:14:15 -07:00
|
|
|
wMapDataEnd::
|
|
|
|
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2017-03-24 04:51:03 -07:00
|
|
|
SECTION "Party", WRAMX, BANK [1]
|
2012-04-18 21:18:36 -07:00
|
|
|
|
2015-08-19 21:14:15 -07:00
|
|
|
wPokemonData::
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PartyCount:: ; dcd7
|
2012-03-20 21:23:40 -07:00
|
|
|
ds 1 ; number of Pokémon in party
|
2014-02-01 17:26:39 -08:00
|
|
|
PartySpecies:: ; dcd8
|
2014-06-12 19:32:58 -07:00
|
|
|
ds PARTY_LENGTH ; species of each Pokémon in party
|
2014-02-01 17:26:39 -08:00
|
|
|
PartyEnd:: ; dcde
|
2015-12-26 08:31:56 -08:00
|
|
|
ds 1 ; legacy scripts don't check PartyCount
|
2016-04-10 11:42:14 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PartyMons::
|
2014-06-12 18:32:42 -07:00
|
|
|
PartyMon1:: party_struct PartyMon1 ; dcdf
|
|
|
|
PartyMon2:: party_struct PartyMon2 ; dd0f
|
|
|
|
PartyMon3:: party_struct PartyMon3 ; dd3f
|
|
|
|
PartyMon4:: party_struct PartyMon4 ; dd6f
|
|
|
|
PartyMon5:: party_struct PartyMon5 ; dd9f
|
|
|
|
PartyMon6:: party_struct PartyMon6 ; ddcf
|
2012-03-20 21:23:40 -07:00
|
|
|
|
2014-06-12 19:32:58 -07:00
|
|
|
PartyMonOT:: ds NAME_LENGTH * PARTY_LENGTH ; ddff
|
2014-06-12 18:32:42 -07:00
|
|
|
|
2014-06-12 19:32:58 -07:00
|
|
|
PartyMonNicknames:: ds PKMN_NAME_LENGTH * PARTY_LENGTH ; de41
|
2014-02-01 17:26:39 -08:00
|
|
|
PartyMonNicknamesEnd::
|
2012-10-08 23:40:36 -07:00
|
|
|
|
2014-06-12 18:32:42 -07:00
|
|
|
|
2014-09-19 12:44:48 -07:00
|
|
|
ds 22
|
|
|
|
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PokedexCaught:: ; de99
|
2014-06-12 19:32:58 -07:00
|
|
|
flag_array NUM_POKEMON
|
2014-02-01 17:26:39 -08:00
|
|
|
EndPokedexCaught::
|
2014-06-12 18:32:42 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PokedexSeen:: ; deb9
|
2014-06-12 19:32:58 -07:00
|
|
|
flag_array NUM_POKEMON
|
2014-02-01 17:26:39 -08:00
|
|
|
EndPokedexSeen::
|
2014-06-12 18:32:42 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
UnownDex:: ; ded9
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 26
|
2014-02-01 17:26:39 -08:00
|
|
|
UnlockedUnowns:: ; def3
|
2012-11-23 18:19:02 -08:00
|
|
|
ds 1
|
|
|
|
|
2015-11-29 18:34:59 -08:00
|
|
|
wFirstUnownSeen:: ds 1
|
2014-06-12 18:32:42 -07:00
|
|
|
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2014-06-12 18:32:42 -07:00
|
|
|
wDaycareMan:: ; def5
|
2012-10-08 23:40:36 -07:00
|
|
|
; bit 7: active
|
|
|
|
; bit 6: monsters are compatible
|
2012-10-09 01:43:45 -07:00
|
|
|
; bit 5: egg ready
|
2012-10-08 23:40:36 -07:00
|
|
|
; bit 0: monster 1 in daycare
|
|
|
|
ds 1
|
|
|
|
|
2014-06-12 18:32:42 -07:00
|
|
|
wBreedMon1::
|
2014-06-12 19:32:58 -07:00
|
|
|
wBreedMon1Nick:: ds PKMN_NAME_LENGTH ; def6
|
|
|
|
wBreedMon1OT:: ds NAME_LENGTH ; df01
|
2014-06-12 18:32:42 -07:00
|
|
|
wBreedMon1Stats:: box_struct wBreedMon1 ; df0c
|
2012-10-08 23:40:36 -07:00
|
|
|
|
2014-06-12 18:32:42 -07:00
|
|
|
wDaycareLady:: ; df2c
|
2012-10-08 23:40:36 -07:00
|
|
|
; bit 7: active
|
|
|
|
; bit 0: monster 2 in daycare
|
|
|
|
ds 1
|
|
|
|
|
2014-06-12 18:32:42 -07:00
|
|
|
wStepsToEgg:: ; df2d
|
2012-10-08 23:40:36 -07:00
|
|
|
ds 1
|
2015-12-18 17:07:09 -08:00
|
|
|
wBreedMotherOrNonDitto:: ; df2e
|
2012-10-08 23:40:36 -07:00
|
|
|
; z: yes
|
|
|
|
; nz: no
|
|
|
|
ds 1
|
|
|
|
|
2014-06-12 18:32:42 -07:00
|
|
|
wBreedMon2::
|
2014-06-12 19:32:58 -07:00
|
|
|
wBreedMon2Nick:: ds PKMN_NAME_LENGTH ; df2f
|
|
|
|
wBreedMon2OT:: ds NAME_LENGTH ; df3a
|
2014-06-12 18:32:42 -07:00
|
|
|
wBreedMon2Stats:: box_struct wBreedMon2 ; df45
|
2012-10-08 23:40:36 -07:00
|
|
|
|
2014-06-12 18:32:42 -07:00
|
|
|
wEggNick:: ds PKMN_NAME_LENGTH ; df65
|
|
|
|
wEggOT:: ds NAME_LENGTH ; df70
|
2014-06-12 19:32:58 -07:00
|
|
|
wEggMon:: box_struct wEggMon ; df7b
|
2012-11-23 18:19:02 -08:00
|
|
|
|
2015-11-11 13:11:08 -08:00
|
|
|
wBugContestSecondPartySpecies:: ds 1
|
2014-06-12 18:32:42 -07:00
|
|
|
wContestMon:: party_struct wContestMon ; df9c
|
2014-02-22 18:57:28 -08:00
|
|
|
|
2015-12-09 08:38:40 -08:00
|
|
|
wDunsparceMapGroup:: ds 1
|
|
|
|
wDunsparceMapNumber:: ds 1
|
2015-10-16 10:35:43 -07:00
|
|
|
wFishingSwarmFlag:: ds 1
|
2014-02-22 18:57:28 -08:00
|
|
|
|
2014-06-12 18:32:42 -07:00
|
|
|
wRoamMon1:: roam_struct wRoamMon1 ; dfcf
|
|
|
|
wRoamMon2:: roam_struct wRoamMon2 ; dfd6
|
|
|
|
wRoamMon3:: roam_struct wRoamMon3 ; dfdd
|
2013-07-02 11:10:49 -07:00
|
|
|
|
2015-12-09 08:38:40 -08:00
|
|
|
wRoamMons_CurrentMapNumber:: ds 1
|
|
|
|
wRoamMons_CurrentMapGroup:: ds 1
|
|
|
|
wRoamMons_LastMapNumber:: ds 1
|
|
|
|
wRoamMons_LastMapGroup:: ds 1
|
2015-10-11 09:15:03 -07:00
|
|
|
wBestMagikarpLengthFeet:: ds 1
|
|
|
|
wBestMagikarpLengthInches:: ds 1
|
2015-10-13 08:37:10 -07:00
|
|
|
wMagikarpRecordHoldersName:: ds NAME_LENGTH
|
2016-01-12 09:46:18 -08:00
|
|
|
; dff5
|
2015-08-19 21:14:15 -07:00
|
|
|
wPokemonDataEnd::
|
2015-10-13 11:29:34 -07:00
|
|
|
wGameDataEnd::
|
2015-08-19 21:14:15 -07:00
|
|
|
|
2017-03-24 04:51:03 -07:00
|
|
|
SECTION "Pic Animations", WRAMX, BANK [2]
|
2015-02-10 15:14:21 -08:00
|
|
|
|
2015-11-07 06:48:32 -08:00
|
|
|
TempTileMap::
|
2015-09-09 16:27:07 -07:00
|
|
|
; 20x18 grid of 8x8 tiles
|
|
|
|
ds SCREEN_WIDTH * SCREEN_HEIGHT ; $168 = 360
|
2015-11-07 06:48:32 -08:00
|
|
|
; PokeAnim Header
|
|
|
|
wPokeAnimSceneIndex:: ds 1
|
|
|
|
wPokeAnimPointer:: ds 2
|
|
|
|
wPokeAnimSpecies:: ds 1
|
|
|
|
wPokeAnimUnownLetter:: ds 1
|
|
|
|
wPokeAnimSpeciesOrUnown:: ds 1
|
2016-05-15 20:56:09 -07:00
|
|
|
wPokeAnimGraphicStartTile:: ds 1
|
2015-11-07 06:48:32 -08:00
|
|
|
wPokeAnimCoord:: ds 2
|
|
|
|
wPokeAnimFrontpicHeight:: ds 1
|
|
|
|
; PokeAnim Data
|
2015-12-17 10:49:26 -08:00
|
|
|
wPokeAnimExtraFlag:: ds 1
|
2016-05-15 20:56:09 -07:00
|
|
|
wPokeAnimSpeed:: ds 1
|
2015-12-17 10:49:26 -08:00
|
|
|
wPokeAnimPointerBank:: ds 1
|
|
|
|
wPokeAnimPointerAddr:: ds 2
|
|
|
|
wPokeAnimFramesBank:: ds 1
|
|
|
|
wPokeAnimFramesAddr:: ds 2
|
|
|
|
wPokeAnimBitmaskBank:: ds 1
|
|
|
|
wPokeAnimBitmaskAddr:: ds 2
|
2016-05-15 20:56:09 -07:00
|
|
|
wPokeAnimFrame:: ds 1
|
|
|
|
wPokeAnimJumptableIndex:: ds 1
|
2015-12-17 10:49:26 -08:00
|
|
|
wPokeAnimRepeatTimer:: ds 1
|
2016-05-15 20:56:09 -07:00
|
|
|
wPokeAnimCurBitmask:: ds 1
|
2015-11-07 06:48:32 -08:00
|
|
|
wPokeAnimWaitCounter:: ds 1
|
2016-05-15 20:56:09 -07:00
|
|
|
wPokeAnimCommand:: ds 1
|
|
|
|
wPokeAnimParameter:: ds 1
|
|
|
|
ds 1
|
|
|
|
wPokeAnimBitmaskCurCol:: ds 1
|
|
|
|
wPokeAnimBitmaskCurRow:: ds 1
|
|
|
|
wPokeAnimBitmaskCurBit:: ds 1
|
|
|
|
wPokeAnimBitmaskBuffer:: ds 7
|
|
|
|
ds 2
|
2015-11-07 06:48:32 -08:00
|
|
|
wPokeAnimStructEnd::
|
2015-02-10 15:14:21 -08:00
|
|
|
|
2013-07-02 11:10:49 -07:00
|
|
|
|
2017-03-24 04:51:03 -07:00
|
|
|
SECTION "Battle Tower", WRAMX, BANK [3]
|
2015-02-10 15:37:24 -08:00
|
|
|
|
2015-12-26 08:31:56 -08:00
|
|
|
w3_d000:: ds 1 ; d000
|
|
|
|
w3_d001:: ds 1
|
|
|
|
w3_d002::
|
|
|
|
ds $7e
|
2015-11-10 20:23:28 -08:00
|
|
|
w3_d080::
|
|
|
|
ds $10
|
2015-11-03 16:43:47 -08:00
|
|
|
w3_d090::
|
|
|
|
ds $70
|
2015-08-19 22:42:59 -07:00
|
|
|
|
2015-08-31 21:26:31 -07:00
|
|
|
w3_d100:: ; BattleTower OpponentTrainer-Data (length = 0xe0 = $a + $1 + 3*$3b + $24)
|
2015-11-07 11:38:52 -08:00
|
|
|
BT_OTTrainer:: battle_tower_struct BT_OT
|
2016-04-10 11:42:14 -07:00
|
|
|
; d1e0
|
2015-09-04 13:30:40 -07:00
|
|
|
ds $20
|
2015-11-18 07:42:42 -08:00
|
|
|
; d200
|
2015-11-24 12:18:44 -08:00
|
|
|
BT_TrainerTextIndex:: ds 2
|
|
|
|
w3_d202:: battle_tower_struct w3_d202
|
|
|
|
w3_d2e2:: battle_tower_struct w3_d2e2
|
|
|
|
w3_d3c2:: battle_tower_struct w3_d3c2
|
|
|
|
w3_d4a2:: battle_tower_struct w3_d4a2
|
|
|
|
w3_d582:: battle_tower_struct w3_d582
|
|
|
|
w3_d662:: battle_tower_struct w3_d662
|
|
|
|
w3_d742:: battle_tower_struct w3_d742
|
|
|
|
; d822
|
|
|
|
ds -$22
|
2015-02-10 15:37:24 -08:00
|
|
|
|
2015-08-31 21:26:31 -07:00
|
|
|
wBTChoiceOfLvlGroup::
|
2016-05-05 12:07:37 -07:00
|
|
|
w3_d800:: ; ds BG_MAP_WIDTH * SCREEN_HEIGHT ($240)
|
2016-01-04 05:43:55 -08:00
|
|
|
ds $69
|
2015-12-26 08:31:56 -08:00
|
|
|
w3_d869:: ds $17
|
|
|
|
w3_d880:: ds 1
|
|
|
|
w3_d881:: ds 1
|
|
|
|
w3_d882:: ds 1
|
|
|
|
w3_d883:: ds 7
|
|
|
|
w3_d88a:: ds 5
|
|
|
|
w3_d88f:: ds 5
|
|
|
|
w3_d894:: ds 1
|
|
|
|
w3_d895:: ds 11
|
|
|
|
w3_d8a0:: ds 1
|
|
|
|
w3_d8a1:: ds 1
|
|
|
|
w3_d8a2:: ds 1
|
2016-01-04 05:43:55 -08:00
|
|
|
w3_d8a3:: ds $19d
|
|
|
|
w3_da40:: ds $1c0
|
|
|
|
|
|
|
|
w3_dc00:: ds SCREEN_WIDTH * SCREEN_HEIGHT
|
|
|
|
w3_dd68:: ds SCREEN_WIDTH * SCREEN_HEIGHT
|
|
|
|
ds $11c
|
2015-12-26 08:31:56 -08:00
|
|
|
w3_dfec:: ds $10
|
2015-11-25 07:16:29 -08:00
|
|
|
w3_dffc:: ds 4
|
2015-02-10 15:37:24 -08:00
|
|
|
|
2017-03-24 04:51:03 -07:00
|
|
|
SECTION "GBC Video", WRAMX, BANK [5]
|
2013-07-02 11:10:49 -07:00
|
|
|
|
|
|
|
; 8 4-color palettes
|
2015-11-20 12:15:32 -08:00
|
|
|
UnknBGPals:: ds 8 palettes ; d000
|
|
|
|
UnknOBPals:: ds 8 palettes ; d040
|
|
|
|
BGPals:: ds 8 palettes ; d080
|
|
|
|
OBPals:: ds 8 palettes ; d0c0
|
2013-07-02 11:10:49 -07:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
LYOverrides:: ; d100
|
2014-06-12 19:32:58 -07:00
|
|
|
ds SCREEN_HEIGHT_PX
|
2015-11-09 13:41:09 -08:00
|
|
|
LYOverridesEnd:: ; d190
|
2013-08-22 01:16:41 -07:00
|
|
|
|
2015-07-25 11:25:37 -07:00
|
|
|
ds 1
|
2015-12-18 17:07:09 -08:00
|
|
|
wMagnetTrainDirection:: ds 1
|
|
|
|
wMagnetTrainInitPosition:: ds 1
|
|
|
|
wMagnetTrainHoldPosition:: ds 1
|
|
|
|
wMagnetTrainFinalPosition:: ds 1
|
|
|
|
wMagnetTrainPlayerSpriteInitX:: ds 1
|
2016-05-05 12:07:37 -07:00
|
|
|
ds 106
|
2013-12-08 13:22:35 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
LYOverridesBackup:: ; d200
|
2014-06-12 19:32:58 -07:00
|
|
|
ds SCREEN_HEIGHT_PX
|
2014-02-01 17:26:39 -08:00
|
|
|
LYOverridesBackupEnd::
|
2013-12-08 13:22:35 -08:00
|
|
|
|
|
|
|
|
2015-12-04 11:33:29 -08:00
|
|
|
SECTION "Battle Animations", WRAMX [$d300], BANK [5]
|
2014-09-19 12:44:48 -07:00
|
|
|
|
2015-12-23 11:00:29 -08:00
|
|
|
wBattleAnimTileDict:: ds 10
|
2013-12-17 20:32:46 -08:00
|
|
|
|
2015-12-04 11:33:29 -08:00
|
|
|
ActiveAnimObjects:: ; d30a
|
|
|
|
AnimObject01:: battle_anim_struct AnimObject01
|
|
|
|
AnimObject02:: battle_anim_struct AnimObject02
|
|
|
|
AnimObject03:: battle_anim_struct AnimObject03
|
|
|
|
AnimObject04:: battle_anim_struct AnimObject04
|
|
|
|
AnimObject05:: battle_anim_struct AnimObject05
|
|
|
|
AnimObject06:: battle_anim_struct AnimObject06
|
|
|
|
AnimObject07:: battle_anim_struct AnimObject07
|
|
|
|
AnimObject08:: battle_anim_struct AnimObject08
|
|
|
|
AnimObject09:: battle_anim_struct AnimObject09
|
|
|
|
AnimObject10:: battle_anim_struct AnimObject10
|
|
|
|
ActiveAnimObjectsEnd:: ; d3aa
|
2013-12-09 13:20:19 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
ActiveBGEffects:: ; d3fa
|
2015-12-23 17:46:23 -08:00
|
|
|
BGEffect1:: battle_bg_effect BGEffect1
|
|
|
|
BGEffect2:: battle_bg_effect BGEffect2
|
|
|
|
BGEffect3:: battle_bg_effect BGEffect3
|
|
|
|
BGEffect4:: battle_bg_effect BGEffect4
|
|
|
|
BGEffect5:: battle_bg_effect BGEffect5
|
|
|
|
ActiveBGEffectsEnd::
|
2013-12-09 13:20:19 -08:00
|
|
|
|
2015-12-23 17:46:23 -08:00
|
|
|
wNumActiveBattleAnims:: ds 1 ; d40e
|
2013-12-08 13:22:35 -08:00
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
BattleAnimFlags:: ; d40f
|
2013-12-17 20:32:46 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BattleAnimAddress:: ; d410
|
2013-12-08 13:22:35 -08:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
BattleAnimDuration:: ; d412
|
2013-12-08 13:22:35 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BattleAnimParent:: ; d413
|
2013-12-08 13:22:35 -08:00
|
|
|
ds 2
|
2014-02-01 17:26:39 -08:00
|
|
|
BattleAnimLoops:: ; d415
|
2013-12-17 20:32:46 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BattleAnimVar:: ; d416
|
2013-12-08 13:22:35 -08:00
|
|
|
ds 1
|
2014-02-01 17:26:39 -08:00
|
|
|
BattleAnimByte:: ; d417
|
2013-12-08 13:22:35 -08:00
|
|
|
ds 1
|
2015-12-23 17:46:23 -08:00
|
|
|
wBattleAnimOAMPointerLo:: ds 1 ; d418
|
2014-02-01 17:26:39 -08:00
|
|
|
BattleAnimTemps:: ; d419
|
2015-12-23 19:51:50 -08:00
|
|
|
wBattleAnimTempOAMFlags::
|
|
|
|
wBattleAnimTemp0:: ds 1
|
|
|
|
wBattleAnimTemp1:: ds 1
|
|
|
|
wBattleAnimTempTileID::
|
|
|
|
wBattleAnimTemp2:: ds 1
|
|
|
|
wBattleAnimTempXCoord::
|
|
|
|
wBattleAnimTemp3:: ds 1
|
|
|
|
wBattleAnimTempYCoord::
|
|
|
|
wBattleAnimTemp4:: ds 1
|
|
|
|
wBattleAnimTempXOffset::
|
|
|
|
wBattleAnimTemp5:: ds 1
|
|
|
|
wBattleAnimTempYOffset::
|
|
|
|
wBattleAnimTemp6:: ds 1
|
|
|
|
wBattleAnimTemp7:: ds 1
|
|
|
|
wBattleAnimTempPalette::
|
|
|
|
wBattleAnimTemp8:: ds 1
|
|
|
|
|
|
|
|
wSurfWaveBGEffect:: ds $40
|
|
|
|
wSurfWaveBGEffectEnd::
|
|
|
|
ds -$e
|
2015-11-09 13:41:09 -08:00
|
|
|
wBattleAnimEnd::
|
2015-11-10 20:23:28 -08:00
|
|
|
|
|
|
|
SECTION "WRAM 5 MOBILE", WRAMX [$d800], BANK [5]
|
|
|
|
w5_d800:: ds $200
|
|
|
|
w5_da00:: ds $200
|
|
|
|
w5_dc00:: ds $d
|
|
|
|
w5_dc0d:: ds 4
|
|
|
|
w5_dc11:: ds 9
|
2016-05-08 11:11:24 -07:00
|
|
|
w5_MobileOpponentBattleMessages:: ds $c ; dc1a
|
|
|
|
w5_MobileOpponentBattleStartMessage:: ds $c ; dc26
|
|
|
|
w5_MobileOpponentBattleWinMessage:: ds $c ; dc32
|
|
|
|
w5_MobileOpponentBattleLossMessage:: ds $c ; dc3e
|
2013-08-22 01:16:41 -07:00
|
|
|
|
2017-03-24 04:51:03 -07:00
|
|
|
SECTION "WRAM 6", WRAMX, BANK [6]
|
2015-02-10 15:14:41 -08:00
|
|
|
|
2016-05-04 19:34:09 -07:00
|
|
|
wDecompressScratch::
|
|
|
|
wScratchTileMap::
|
|
|
|
ds BG_MAP_WIDTH * BG_MAP_HEIGHT
|
|
|
|
wScratchAttrMap:: ds $200
|
2015-11-19 20:38:16 -08:00
|
|
|
w6_d600:: ds $200
|
|
|
|
w6_d800::
|
2015-02-10 15:14:41 -08:00
|
|
|
|
2015-10-04 11:14:51 -07:00
|
|
|
INCLUDE "sram.asm"
|
2015-10-17 17:49:34 -07:00
|
|
|
|
2017-03-24 04:51:03 -07:00
|
|
|
SECTION "WRAM 7", WRAMX, BANK [7]
|
2015-12-15 15:59:49 -08:00
|
|
|
wWindowStack:: ds $1000 - 1
|
|
|
|
wWindowStackBottom:: ds 1
|