pokecrystal-board/ram/wram.asm

2793 lines
52 KiB
NASM
Raw Normal View History

SECTION "Stack", WRAM0
2018-01-23 14:39:09 -08:00
wStackBottom::
2015-10-19 13:49:29 -07:00
ds $100 - 1
2018-01-23 14:39:09 -08:00
wStackTop::
ds 1
SECTION "Audio RAM", WRAM0
; nonzero if playing
2020-06-20 20:03:40 -07:00
wMusicPlaying:: db
2012-10-08 23:32:05 -07:00
wAudio::
; wChannel1 - wChannel8
for n, 1, NUM_CHANNELS + 1
wChannel{d:n}:: channel_struct wChannel{d:n}
endr
2020-06-20 20:03:40 -07:00
ds 1
wCurTrackDuty:: db
wCurTrackVolumeEnvelope:: db
2015-12-07 08:28:58 -08:00
wCurTrackFrequency:: dw
2019-04-19 08:35:27 -07:00
wUnusedBCDNumber:: db ; BCD value, dummied out
wCurNoteDuration:: db ; used in MusicE0 and LoadNote
2012-10-08 23:32:05 -07:00
2020-06-20 20:03:40 -07:00
wCurMusicByte:: db
wCurChannel:: db
wVolume::
; corresponds to rNR50
2012-10-08 23:32:05 -07:00
; 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)
db
2020-06-20 20:03:40 -07:00
wSoundOutput::
; corresponds to rNR51
2012-11-02 15:43:05 -07:00
; bit 4-7: ch1-4 so2 on/off
; bit 0-3: ch1-4 so1 on/off
db
2020-06-20 20:03:40 -07:00
wPitchSweep::
; corresponds to rNR10
; bit 7: unused
; bit 4-6: sweep time
; bit 3: sweep direction
; but 0-2: sweep shift
db
2020-06-20 20:03:40 -07:00
wMusicID:: dw
wMusicBank:: db
wNoiseSampleAddress:: dw
wNoiseSampleDelay:: db
ds 1
wMusicNoiseSampleSet:: db
wSFXNoiseSampleSet:: db
2012-10-08 23:32:05 -07:00
2020-06-20 20:03:40 -07:00
wLowHealthAlarm::
2012-12-14 00:00:10 -08:00
; bit 7: on/off
; bit 4: pitch
; bit 0-3: counter
db
2020-06-20 20:03:40 -07:00
wMusicFade::
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)
db
2020-06-20 20:03:40 -07:00
wMusicFadeCount:: db
wMusicFadeID:: dw
2013-02-23 13:47:39 -08:00
ds 5
2020-06-20 20:03:40 -07:00
wCryPitch:: dw
wCryLength:: dw
2020-06-20 20:03:40 -07:00
wLastVolume:: db
wUnusedMusicF9Flag:: db
2020-06-20 20:03:40 -07:00
wSFXPriority::
2012-11-02 15:43:05 -07:00
; if nonzero, turn off music when playing sfx
db
2012-11-02 15:43:05 -07:00
ds 1
2018-01-23 14:39:09 -08:00
wChannel1JumpCondition:: db
wChannel2JumpCondition:: db
wChannel3JumpCondition:: db
wChannel4JumpCondition:: db
2020-06-20 20:03:40 -07:00
wStereoPanningMask:: db
2020-06-20 20:03:40 -07:00
wCryTracks::
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
db
wSFXDuration:: db
2020-06-20 20:03:40 -07:00
wCurSFX::
2012-10-11 17:35:22 -07:00
; id of sfx currently playing
db
wAudioEnd::
2012-10-08 23:32:05 -07:00
2020-06-20 20:03:40 -07:00
wMapMusic:: db
wDontPlayMapMusicOnReload:: db
SECTION "WRAM", WRAM0
2020-06-20 20:03:40 -07:00
wLZAddress:: dw
wLZBank:: db
2014-07-18 05:33:27 -07:00
wBoxAlignment:: db
2020-06-20 20:03:40 -07:00
wInputType:: db
wAutoInputAddress:: dw
wAutoInputBank:: db
wAutoInputLength:: db
2012-10-08 23:32:05 -07:00
2018-09-15 17:15:55 -07:00
wDebugFlags:: db
2020-06-20 20:03:40 -07:00
wGameLogicPaused:: db
wSpriteUpdatesEnabled:: db
2017-12-09 12:28:03 -08:00
2023-08-17 04:51:29 -07:00
wDisplaySecondarySprites:: db
2017-12-09 12:28:03 -08:00
wMapTimeOfDay:: db
2017-12-09 12:28:03 -08:00
wPrinterConnectionOpen:: db
wPrinterOpcode:: db
2018-01-11 12:36:11 -08:00
wPrevDexEntry:: db
wDisableTextAcceleration:: db
wPrevLandmark:: db
2018-09-09 12:09:51 -07:00
wCurLandmark:: db
wLinkMode::
; a LINK_* value for the link type
2020-06-20 20:03:40 -07:00
db
wPlayerNextMovement:: db
wPlayerMovement:: db
2020-06-15 20:28:24 -07:00
wMovementObject::
2017-12-23 08:34:55 -08:00
db
2019-04-19 08:35:27 -07:00
wMovementDataBank:: db
wMovementDataAddress:: dw
2020-10-22 18:25:40 -07:00
wIndexedMovement2Pointer:: dw
2020-06-15 20:28:24 -07:00
wContinueReadingMovement:: db
2020-06-20 20:03:40 -07:00
UNION
wObjectPriorities:: ds NUM_OBJECT_STRUCTS
2015-11-14 11:41:47 -08:00
2020-06-20 20:03:40 -07:00
NEXTU
wMovementPointer:: dw
wTempObjectCopyMapObjectIndex:: db
wTempObjectCopySprite:: db
wTempObjectCopySpriteVTile:: db
wTempObjectCopyPalette:: db
wTempObjectCopyMovement:: db
wTempObjectCopyRange:: db
wTempObjectCopyX:: db
wTempObjectCopyY:: db
wTempObjectCopyRadius:: db
ENDU
2015-11-14 11:41:47 -08:00
2020-06-20 20:03:40 -07:00
wTileDown:: db
wTileUp:: db
wTileLeft:: db
wTileRight:: db
2012-11-23 18:19:02 -08:00
2020-06-20 20:03:40 -07:00
wTilePermissions::
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
db
2012-11-23 18:19:02 -08:00
SECTION "wSpriteAnims", WRAM0
2020-10-30 12:39:08 -07:00
wSpriteAnimData::
wSpriteAnimDict::
; wSpriteAnimDict pairs keys with values
2023-09-24 06:06:19 -07:00
; keys: SPRITE_ANIM_DICT_* indexes (taken from SpriteAnimObjects)
2020-10-30 12:39:08 -07:00
; values: vTiles0 offsets
ds NUM_SPRITEANIMDICT_ENTRIES * 2
wSpriteAnimationStructs::
; wSpriteAnim1 - wSpriteAnim10
for n, 1, NUM_SPRITE_ANIM_STRUCTS + 1
; field 0: index
2023-09-24 06:06:19 -07:00
; fields 1-3: loaded from SpriteAnimObjects
wSpriteAnim{d:n}:: sprite_anim_struct wSpriteAnim{d:n}
endr
wSpriteAnimationStructsEnd::
wSpriteAnimCount:: db
2018-09-09 12:09:51 -07:00
wCurSpriteOAMAddr:: db
2020-06-20 20:03:40 -07:00
wCurIcon:: db
wCurIconTile:: db
UNION
wSpriteAnimID::
wCurSpriteOAMFlags:: db
NEXTU
wSpriteAnimAddrBackup:: dw
ENDU
2018-09-09 12:09:51 -07:00
wCurAnimVTile:: db
wCurAnimXCoord:: db
wCurAnimYCoord:: db
wCurAnimXOffset:: db
wCurAnimYOffset:: db
wGlobalAnimYOffset:: db
wGlobalAnimXOffset:: db
2020-10-30 12:39:08 -07:00
wSpriteAnimDataEnd::
2015-11-12 21:49:27 -08:00
SECTION "Sprites", WRAM0
2012-12-14 00:00:10 -08:00
wShadowOAM::
; wShadowOAMSprite00 - wShadowOAMSprite39
for n, NUM_SPRITE_OAM_STRUCTS
wShadowOAMSprite{02d:n}:: sprite_oam_struct wShadowOAMSprite{02d:n}
endr
wShadowOAMEnd::
2012-12-14 00:00:10 -08:00
SECTION "Tilemap", WRAM0
2020-06-20 20:03:40 -07:00
wTilemap::
2012-12-14 00:00:10 -08:00
; 20x18 grid of 8x8 tiles
ds SCREEN_WIDTH * SCREEN_HEIGHT
wTilemapEnd::
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
; This union spans 480 bytes.
SECTION UNION "Miscellaneous", WRAM0
; surrounding tiles
2019-01-30 16:43:01 -08:00
; This buffer determines the size for the rest of the union;
; it uses exactly 480 bytes.
wSurroundingTiles:: ds SURROUNDING_WIDTH * SURROUNDING_HEIGHT
SECTION UNION "Miscellaneous", WRAM0
; box save buffer
2019-01-30 16:43:01 -08:00
; SaveBoxAddress uses this buffer in three steps because it
; needs more space than the buffer can hold.
wBoxPartialData:: ds 480
wBoxPartialDataEnd::
2017-12-09 11:22:58 -08:00
SECTION UNION "Miscellaneous", WRAM0
2017-12-09 11:22:58 -08:00
; battle data
2016-01-12 09:46:18 -08:00
wBattle::
2020-06-20 20:03:40 -07:00
wEnemyMoveStruct:: move_struct wEnemyMoveStruct
wPlayerMoveStruct:: move_struct wPlayerMoveStruct
2016-01-10 14:44:09 -08:00
wEnemyMonNickname:: ds MON_NAME_LENGTH
wBattleMonNickname:: ds MON_NAME_LENGTH
2020-06-20 20:03:40 -07:00
wBattleMon:: battle_struct wBattleMon
2020-06-20 20:03:40 -07:00
wWildMon:: db
2020-06-20 20:03:40 -07:00
wEnemyTrainerItem1:: db
wEnemyTrainerItem2:: db
wEnemyTrainerBaseReward:: db
wEnemyTrainerAIFlags:: ds 3
wOTClassName:: ds TRAINER_CLASS_NAME_LENGTH
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
wCurOTMon:: db
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.
2017-12-09 11:22:58 -08:00
db
2015-11-07 18:04:54 -08:00
2020-06-20 20:03:40 -07:00
wTypeModifier::
; >10: super-effective
; 10: normal
; <10: not very effective
2013-04-19 00:50:13 -07:00
; bit 7: stab
2017-12-09 11:22:58 -08:00
db
2020-06-20 20:03:40 -07:00
wCriticalHit::
; 0 if not critical
; 1 for a critical hit
; 2 for a OHKO
2017-12-09 11:22:58 -08:00
db
2020-06-20 20:03:40 -07:00
wAttackMissed::
; nonzero for a miss
2017-12-09 11:22:58 -08:00
db
wPlayerSubStatus1:: db
wPlayerSubStatus2:: db
wPlayerSubStatus3:: db
wPlayerSubStatus4:: db
wPlayerSubStatus5:: db
2012-12-14 00:00:10 -08:00
wEnemySubStatus1:: db
wEnemySubStatus2:: db
wEnemySubStatus3:: db
wEnemySubStatus4:: db
wEnemySubStatus5:: db
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
wPlayerRolloutCount:: db
wPlayerConfuseCount:: db
wPlayerToxicCount:: db
wPlayerDisableCount:: db
wPlayerEncoreCount:: db
wPlayerPerishCount:: db
wPlayerFuryCutterCount:: db
wPlayerProtectCount:: db
wEnemyRolloutCount:: db
wEnemyConfuseCount:: db
wEnemyToxicCount:: db
wEnemyDisableCount:: db
wEnemyEncoreCount:: db
wEnemyPerishCount:: db
wEnemyFuryCutterCount:: db
wEnemyProtectCount:: db
wPlayerDamageTaken:: dw
wEnemyDamageTaken:: dw
2020-06-20 20:03:40 -07:00
wBattleReward:: ds 3
wBattleAnimParam:: db
2020-06-20 20:03:40 -07:00
wBattleScriptBuffer:: ds 40
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
wBattleScriptBufferAddress:: dw
2017-12-09 11:22:58 -08:00
2020-06-20 20:03:40 -07:00
wTurnEnded:: db
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
wPlayerStats::
wPlayerAttack:: dw
2018-01-23 14:39:09 -08:00
wPlayerDefense:: dw
wPlayerSpeed:: dw
wPlayerSpAtk:: dw
wPlayerSpDef:: dw
2017-12-09 11:22:58 -08:00
2020-06-20 20:03:40 -07:00
wEnemyStats::
wEnemyAttack:: dw
2018-01-23 14:39:09 -08:00
wEnemyDefense:: dw
wEnemySpeed:: dw
wEnemySpAtk:: dw
wEnemySpDef:: dw
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
wPlayerStatLevels::
wPlayerAtkLevel:: db
wPlayerDefLevel:: db
wPlayerSpdLevel:: db
2020-06-20 20:03:40 -07:00
wPlayerSAtkLevel:: db
wPlayerSDefLevel:: db
wPlayerAccLevel:: db
wPlayerEvaLevel:: db
ds 1 ; NUM_LEVEL_STATS
2020-06-20 20:03:40 -07:00
wEnemyStatLevels::
wEnemyAtkLevel:: db
wEnemyDefLevel:: db
wEnemySpdLevel:: db
2020-06-20 20:03:40 -07:00
wEnemySAtkLevel:: db
wEnemySDefLevel:: db
wEnemyAccLevel:: db
wEnemyEvaLevel:: db
ds 1 ; NUM_LEVEL_STATS
2012-12-14 00:00:10 -08:00
wEnemyTurnsTaken:: db
2020-06-20 20:03:40 -07:00
wPlayerTurnsTaken:: db
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
wPlayerSubstituteHP:: db
wEnemySubstituteHP:: db
2020-06-20 20:03:40 -07:00
wUnusedPlayerLockedMove:: db
2020-06-20 20:03:40 -07:00
wCurPlayerMove:: db
wCurEnemyMove:: db
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
wLinkBattleRNCount::
2012-12-14 00:00:10 -08:00
; how far through the prng stream
2017-12-09 11:22:58 -08:00
db
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
wEnemyItemState:: db
2020-06-20 20:03:40 -07:00
wCurEnemyMoveNum:: db
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
wEnemyHPAtTimeOfPlayerSwitch:: dw
wPayDayCoins:: ds 3
wSafariMonAngerCount:: db ; unreferenced
2017-12-09 11:22:58 -08:00
wSafariMonEating:: db
2017-12-09 11:22:58 -08:00
wEnemyBackupDVs:: dw ; used when enemy is transformed
2020-06-20 20:03:40 -07:00
wAlreadyDisobeyed:: db
2020-06-20 20:03:40 -07:00
wDisabledMove:: db
wEnemyDisabledMove:: db
2017-12-09 11:22:58 -08:00
wWhichMonFaintedFirst:: db
2012-12-14 00:00:10 -08:00
; exists so you can't counter on switch
2020-06-20 20:03:40 -07:00
wLastPlayerCounterMove:: db
wLastEnemyCounterMove:: db
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
wEnemyMinimized:: db
2020-06-20 20:03:40 -07:00
wAlreadyFailed:: db
2020-06-20 20:03:40 -07:00
wBattleParticipantsIncludingFainted:: db
wBattleLowHealthAlarm:: db
wPlayerMinimized:: db
wPlayerScreens::
2013-05-02 22:29:57 -07:00
; bit
; 0 spikes
; 1
; 2 safeguard
; 3 light screen
; 4 reflect
; 5-7 unused
2017-12-09 11:22:58 -08:00
db
2013-04-19 23:57:11 -07:00
2020-06-20 20:03:40 -07:00
wEnemyScreens::
2018-01-23 14:39:09 -08:00
; see wPlayerScreens
2017-12-09 11:22:58 -08:00
db
2013-04-19 23:57:11 -07:00
2020-06-20 20:03:40 -07:00
wPlayerSafeguardCount:: db
wPlayerLightScreenCount:: db
wPlayerReflectCount:: db
2012-11-23 18:19:02 -08:00
2020-06-20 20:03:40 -07:00
wEnemySafeguardCount:: db
wEnemyLightScreenCount:: db
wEnemyReflectCount:: db
2017-12-09 11:22:58 -08:00
2020-06-20 20:03:40 -07:00
wBattleWeather::
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
2017-12-09 11:22:58 -08:00
db
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
wWeatherCount::
2012-12-14 00:00:10 -08:00
; # turns remaining
2017-12-09 11:22:58 -08:00
db
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
wLoweredStat:: db
wEffectFailed:: db
wFailedMessage:: db
wEnemyGoesFirst:: db
2017-12-09 11:22:58 -08:00
2020-06-20 20:03:40 -07:00
wPlayerIsSwitching:: db
wEnemyIsSwitching:: db
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
wPlayerUsedMoves::
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
2020-06-20 20:03:40 -07:00
wEnemyAISwitchScore:: db
wEnemySwitchMonParam:: db
wEnemySwitchMonIndex:: db
wTempLevel:: db
wLastPlayerMon:: db
wLastPlayerMove:: db
wLastEnemyMove:: db
2017-12-09 11:22:58 -08:00
2020-06-20 20:03:40 -07:00
wPlayerFutureSightCount:: db
wEnemyFutureSightCount:: db
2017-12-09 11:22:58 -08:00
2020-06-20 20:03:40 -07:00
wGivingExperienceToExpShareHolders:: db
2012-12-14 00:00:10 -08:00
wBackupEnemyMonBaseStats:: ds NUM_EXP_STATS
2020-06-20 20:03:40 -07:00
wBackupEnemyMonCatchRate:: db
wBackupEnemyMonBaseExp:: db
2017-12-09 11:22:58 -08:00
2020-06-20 20:03:40 -07:00
wPlayerFutureSightDamage:: dw
wEnemyFutureSightDamage:: dw
wPlayerRageCounter:: db
wEnemyRageCounter:: db
2017-12-09 11:22:58 -08:00
2020-06-20 20:03:40 -07:00
wBeatUpHitAtLeastOnce:: db
2017-12-09 11:22:58 -08:00
2020-06-20 20:03:40 -07:00
wPlayerTrappingMove:: db
wEnemyTrappingMove:: db
wPlayerWrapCount:: db
wEnemyWrapCount:: db
wPlayerCharging:: db
wEnemyCharging:: db
2017-12-09 11:22:58 -08:00
2020-06-20 20:03:40 -07:00
wBattleEnded:: db
2013-06-17 15:19:45 -07:00
2020-06-20 20:03:40 -07:00
wWildMonMoves:: ds NUM_MOVES
wWildMonPP:: ds NUM_MOVES
2017-12-09 11:22:58 -08:00
2020-06-20 20:03:40 -07:00
wAmuletCoin:: db
2017-12-09 11:22:58 -08:00
2020-06-20 20:03:40 -07:00
wSomeoneIsRampaging:: db
2017-12-09 11:22:58 -08:00
2020-06-20 20:03:40 -07:00
wPlayerJustGotFrozen:: db
wEnemyJustGotFrozen:: db
wBattleEnd::
2017-12-09 11:22:58 -08:00
SECTION UNION "Miscellaneous", WRAM0
; link patch lists
wPlayerPatchLists:: ds SERIAL_PATCH_LIST_LENGTH
wOTPatchLists:: ds SERIAL_PATCH_LIST_LENGTH
SECTION UNION "Miscellaneous", WRAM0
2020-06-20 20:03:40 -07:00
; This union spans 200 bytes.
UNION
; timeset temp storage
wTimeSetBuffer::
ds 20
2020-06-20 20:03:40 -07:00
wInitHourBuffer:: db
ds 9
2020-06-20 20:03:40 -07:00
wInitMinuteBuffer:: db
ds 19
wTimeSetBufferEnd::
2020-06-20 20:03:40 -07:00
NEXTU
; hall of fame temp struct
wHallOfFameTemp:: hall_of_fame wHallOfFameTemp
2020-10-23 13:04:15 -07:00
NEXTU
; debug mon color picker
wDebugMiddleColors::
wDebugLightColor:: ds 2
wDebugDarkColor:: ds 2
wDebugRedChannel:: db
wDebugGreenChannel:: db
wDebugBlueChannel:: db
NEXTU
; debug tileset color picker
wDebugPalette::
wDebugWhiteTileColor:: ds 2
wDebugLightTileColor:: ds 2
wDebugDarkTileColor:: ds 2
wDebugBlackTileColor:: ds 2
NEXTU
wUnknownGender:: db
wUnknownSpecies:: db
wUnknownReqGender:: db
wUnknownReqSpecies:: db
wUnknownMonSender:: ds NAME_LENGTH_JAPANESE - 1
wUnknownMon:: party_struct wUnknownMon
wUnknownMonOT:: ds NAME_LENGTH_JAPANESE - 1
wUnknownMonNick:: ds NAME_LENGTH_JAPANESE - 1
wUnknownMonMail:: mailmsg_jp wUnknownMonMail
2020-06-20 20:03:40 -07:00
ENDU
2020-06-20 20:03:40 -07:00
; This union spans 280 bytes.
UNION
; pokedex
2020-06-20 20:03:40 -07:00
wPokedexDataStart::
wPokedexOrder:: ds $100 ; >= NUM_POKEMON
wPokedexOrderEnd::
wDexListingScrollOffset:: db ; offset of the first displayed entry from the start
wDexListingCursor:: db ; Dex cursor
wDexListingEnd:: db ; Last mon to display
wDexListingHeight:: db ; number of entries displayed at once in the dex listing
wCurDexMode:: db ; Pokedex Mode
wDexSearchMonType1:: db ; first type to search
wDexSearchMonType2:: db ; second type to search
wDexSearchResultCount:: db
wDexArrowCursorPosIndex:: db
wDexArrowCursorDelayCounter:: db
wDexArrowCursorBlinkCounter:: db
wDexSearchSlowpokeFrame:: db
wUnlockedUnownMode:: db
wDexCurUnownIndex:: db
wDexUnownCount:: db
wDexConvertedMonType:: db ; mon type converted from dex search mon type
wDexListingScrollOffsetBackup:: db
wDexListingCursorBackup:: db
wBackupDexListingCursor:: db
wBackupDexListingPage:: db
wDexCurLocation:: db
wPokedexStatus:: db
wPokedexDataEnd::
2020-06-20 20:03:40 -07:00
NEXTU
; pokegear
wPokegearPhoneDisplayPosition:: db
2020-06-20 20:03:40 -07:00
wPokegearPhoneCursorPosition:: db
wPokegearPhoneScrollPosition:: db
wPokegearPhoneSelectedPerson:: db
wPokegearPhoneSubmenuCursor:: db
wPokegearMapCursorObjectPointer:: dw
wPokegearMapCursorLandmark:: db
wPokegearMapPlayerIconLandmark:: db
wPokegearRadioChannelBank:: db
wPokegearRadioChannelAddr:: dw
wPokegearRadioMusicPlaying:: db
NEXTU
; trade
2016-01-09 13:28:22 -08:00
wPlayerTrademon:: trademon wPlayerTrademon
wOTTrademon:: trademon wOTTrademon
2017-12-09 11:22:58 -08:00
wTradeAnimAddress:: dw
2016-01-09 13:28:22 -08:00
wLinkPlayer1Name:: ds NAME_LENGTH
wLinkPlayer2Name:: ds NAME_LENGTH
2017-12-09 11:22:58 -08:00
wLinkTradeSendmonSpecies:: db
wLinkTradeGetmonSpecies:: db
2015-11-29 18:34:59 -08:00
2020-06-20 20:03:40 -07:00
NEXTU
2016-01-09 20:41:03 -08:00
; naming screen
2020-06-20 20:03:40 -07:00
wNamingScreenDestinationPointer:: dw
wNamingScreenCurNameLength:: db
wNamingScreenMaxNameLength:: db
wNamingScreenType:: db
wNamingScreenCursorObjectPointer:: dw
wNamingScreenLastCharacter:: db
wNamingScreenStringEntryCoord:: dw
NEXTU
2017-12-09 11:22:58 -08:00
; slot machine
2020-06-20 20:03:40 -07:00
wSlots::
2016-01-09 13:28:22 -08:00
wReel1:: slot_reel wReel1
wReel2:: slot_reel wReel2
wReel3:: slot_reel wReel3
wReel1Stopped:: ds 3
wReel2Stopped:: ds 3
wReel3Stopped:: ds 3
2017-12-09 11:22:58 -08:00
wSlotBias:: db
wSlotBet:: db
wFirstTwoReelsMatching:: db
wFirstTwoReelsMatchingSevens:: db
wSlotMatched:: db
2018-09-09 12:09:51 -07:00
wCurReelStopped:: ds 3
2017-12-09 11:22:58 -08:00
wPayout:: dw
2018-09-09 12:09:51 -07:00
wCurReelXCoord:: db
wCurReelYCoord:: db
2017-12-09 11:22:58 -08:00
wSlotBuildingMatch:: db
2016-01-09 13:28:22 -08:00
wSlotsDataEnd::
wSlotsEnd::
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-09 11:22:58 -08:00
; card flip
wDeck:: ds 4 * 6
2016-01-09 13:28:22 -08:00
wDeckEnd::
2017-12-09 11:22:58 -08:00
wCardFlipNumCardsPlayed:: db
wCardFlipFaceUpCard:: db
wDiscardPile:: ds 4 * 6
2016-01-09 13:28:22 -08:00
wDiscardPileEnd::
; beta poker game
wBetaPokerSGBPals:: dw
wBetaPokerSGBAttr:: db
wBetaPokerSGBCol:: db
wBetaPokerSGBRow:: db
2020-06-20 20:03:40 -07:00
NEXTU
2020-11-08 16:32:57 -08:00
; unused memory game
wMemoryGameCards:: ds 9 * 5
wMemoryGameCardsEnd::
wMemoryGameLastCardPicked:: db
wMemoryGameCard1:: db
wMemoryGameCard2:: db
wMemoryGameCard1Location:: db
wMemoryGameCard2Location:: db
wMemoryGameNumberTriesRemaining:: db
wMemoryGameLastMatches:: ds 5
wMemoryGameCounter:: db
wMemoryGameNumCardsMatched:: db
NEXTU
; unown puzzle
wPuzzlePieces:: ds 6 * 6
2020-06-20 20:03:40 -07:00
ENDU
2015-08-19 21:14:15 -07:00
2023-08-29 09:33:20 -07:00
SECTION "Overworld HUD", WRAM0
2023-08-29 09:33:20 -07:00
wOverworldHUDTiles:: ds SCREEN_WIDTH
wOverworldHUDTilesEnd::
ds 4
2017-12-09 11:22:58 -08:00
SECTION UNION "Overworld Map", WRAM0
; overworld map blocks
2020-06-20 20:03:40 -07:00
wOverworldMapBlocks:: ds 1300
wOverworldMapBlocksEnd::
SECTION UNION "Overworld Map", WRAM0
2017-12-09 11:22:58 -08:00
; GB Printer data
wGameboyPrinterRAM::
2017-12-09 11:22:58 -08:00
wGameboyPrinter2bppSource:: ds 40 tiles
2016-05-11 14:16:03 -07:00
wGameboyPrinter2bppSourceEnd::
wUnusedGameboyPrinterSafeCancelFlag:: db
2017-12-09 11:22:58 -08:00
wPrinterRowIndex:: db
2016-06-06 15:23:00 -07:00
; Printer data
2017-12-09 12:28:03 -08:00
wPrinterData:: ds 4
2020-06-20 20:03:40 -07:00
wPrinterChecksum:: dw
2017-12-09 11:22:58 -08:00
wPrinterHandshake:: db
2016-05-11 14:16:03 -07:00
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)
2017-12-09 11:22:58 -08:00
db
2016-05-11 14:16:03 -07:00
2017-12-09 11:22:58 -08:00
wHandshakeFrameDelay:: db
wPrinterSerialFrameDelay:: db
2016-05-11 14:16:03 -07:00
wPrinterSendByteOffset:: dw
wPrinterSendByteCounter:: dw
; tilemap backup?
2020-06-20 20:03:40 -07:00
wPrinterTilemapBuffer:: ds SCREEN_HEIGHT * SCREEN_WIDTH
wPrinterStatus:: db
2019-05-11 10:01:59 -07:00
; High nibble is for margin before the image, low nibble is for after.
2020-06-20 20:03:40 -07:00
wPrinterMargins:: db
wPrinterExposureTime:: db
2016-05-11 14:16:03 -07:00
wGameboyPrinterRAMEnd::
SECTION UNION "Overworld Map", WRAM0
2017-12-09 11:22:58 -08:00
; bill's pc data
2019-04-19 15:55:04 -07:00
wBillsPCData::
wBillsPCPokemonList::
; (species, box number, list index) x30
2017-12-09 11:22:58 -08:00
ds 3 * 30
2019-04-19 15:55:04 -07:00
ds 720
wBillsPC_ScrollPosition:: db
wBillsPC_CursorPosition:: db
wBillsPC_NumMonsInBox:: db
wBillsPC_NumMonsOnScreen:: db
wBillsPC_LoadedBox:: db ; 0 if party, 1 - 14 if box, 15 if active box
wBillsPC_BackupScrollPosition:: db
wBillsPC_BackupCursorPosition:: db
wBillsPC_BackupLoadedBox:: db
wBillsPC_MonHasMail:: db
ds 5
wBillsPCDataEnd::
2015-12-16 09:32:08 -08:00
SECTION UNION "Overworld Map", WRAM0
; Hall of Fame data
wHallOfFamePokemonList:: hall_of_fame wHallOfFamePokemonList
SECTION UNION "Overworld Map", WRAM0
2020-10-23 13:04:15 -07:00
; debug color picker
wDebugOriginalColors:: ds 256 * 4
SECTION UNION "Overworld Map", WRAM0
2017-12-09 16:41:03 -08:00
; raw link data
wLinkData:: ds 1300
2017-12-09 16:41:03 -08:00
wLinkDataEnd::
SECTION UNION "Overworld Map", WRAM0
2017-12-09 16:41:03 -08:00
; link data members
wLinkPlayerName:: ds NAME_LENGTH
2019-04-19 15:55:04 -07:00
wLinkPartyCount:: db
wLinkPartySpecies:: ds PARTY_LENGTH
2019-04-19 15:55:04 -07:00
wLinkPartyEnd:: db ; older code doesn't check PartyCount
2020-06-20 20:03:40 -07:00
UNION
; link player data
wLinkPlayerData::
; wLinkPlayerPartyMon1 - wLinkPlayerPartyMon6
for n, 1, PARTY_LENGTH + 1
wLinkPlayerPartyMon{d:n}:: party_struct wLinkPlayerPartyMon{d:n}
endr
wLinkPlayerPartyMonOTs::
; wLinkPlayerPartyMon1OT - wLinkPlayerPartyMon6OT
for n, 1, PARTY_LENGTH + 1
wLinkPlayerPartyMon{d:n}OT:: ds NAME_LENGTH
endr
wLinkPlayerPartyMonNicknames::
; wLinkPlayerPartyMon1Nickname - wLinkPlayerPartyMon6Nickname
for n, 1, PARTY_LENGTH + 1
wLinkPlayerPartyMon{d:n}Nickname:: ds MON_NAME_LENGTH
endr
NEXTU
2017-12-09 11:22:58 -08:00
; time capsule party data
wTimeCapsulePlayerData::
; wTimeCapsulePartyMon1 - wTimeCapsulePartyMon6
for n, 1, PARTY_LENGTH + 1
wTimeCapsulePartyMon{d:n}:: red_party_struct wTimeCapsulePartyMon{d:n}
endr
wTimeCapsulePartyMonOTs::
; wTimeCapsulePartyMon1OT - wTimeCapsulePartyMon6OT
for n, 1, PARTY_LENGTH + 1
wTimeCapsulePartyMon{d:n}OT:: ds NAME_LENGTH
endr
wTimeCapsulePartyMonNicknames::
; wTimeCapsulePartyMon1Nickname - wTimeCapsulePartyMon6Nickname
for n, 1, PARTY_LENGTH + 1
wTimeCapsulePartyMon{d:n}Nickname:: ds MON_NAME_LENGTH
endr
2020-06-20 20:03:40 -07:00
ENDU
SECTION UNION "Overworld Map", WRAM0
; link data prep
ds 1000
wCurLinkOTPartyMonTypePointer:: dw
wLinkOTPartyMonTypes::
; wLinkOTPartyMon1Type - wLinkOTPartyMon6Type
for n, 1, PARTY_LENGTH + 1
wLinkOTPartyMon{d:n}Type:: dw
endr
SECTION UNION "Overworld Map", WRAM0
; link mail data
ds 500
wLinkPlayerMail::
wLinkPlayerMailPreamble:: ds SERIAL_MAIL_PREAMBLE_LENGTH
wLinkPlayerMailMessages:: ds (MAIL_MSG_LENGTH + 1) * PARTY_LENGTH
wLinkPlayerMailMetadata:: ds (MAIL_STRUCT_LENGTH - (MAIL_MSG_LENGTH + 1)) * PARTY_LENGTH
2023-03-31 04:13:52 -07:00
wLinkPlayerMailPatchSet:: ds 100 + SERIAL_PATCH_PREAMBLE_LENGTH
wLinkPlayerMailEnd::
ds 10
wLinkOTMail::
wLinkOTMailMessages:: ds (MAIL_MSG_LENGTH + 1) * PARTY_LENGTH
wLinkOTMailMetadata:: ds (MAIL_STRUCT_LENGTH - (MAIL_MSG_LENGTH + 1)) * PARTY_LENGTH
2023-03-31 04:13:52 -07:00
wLinkOTMailPatchSet:: ds 100 + SERIAL_PATCH_PREAMBLE_LENGTH
wLinkOTMailPadding:: ds SERIAL_MAIL_PREAMBLE_LENGTH
wLinkOTMailEnd::
ds 10
SECTION UNION "Overworld Map", WRAM0
; received link mail data
ds 500
wLinkReceivedMail:: ds MAIL_STRUCT_LENGTH * PARTY_LENGTH
wLinkReceivedMailEnd:: db
SECTION UNION "Overworld Map", WRAM0
ds $200
; blank credits tile buffer
wCreditsBlankFrame2bpp:: ds 4 * 4 tiles
wCreditsBlankFrame2bppEnd::
if DEF(_DEBUG)
SECTION UNION "Overworld Map", WRAM0
; debug room RTC values
wDebugRoomRTCSec:: db
wDebugRoomRTCMin:: db
wDebugRoomRTCHour:: db
wDebugRoomRTCDay:: dw
wDebugRoomRTCCurSec:: db
wDebugRoomRTCCurMin:: db
wDebugRoomRTCCurHour:: db
wDebugRoomRTCCurDay:: dw
; debug room paged values
wDebugRoomCurPage:: db
wDebugRoomCurValue:: db
wDebugRoomAFunction:: dw
wDebugRoomStartFunction:: dw
wDebugRoomSelectFunction:: dw
wDebugRoomAutoFunction:: dw
wDebugRoomPageCount:: db
wDebugRoomPagesPointer:: dw
wDebugRoomROMChecksum:: dw
wDebugRoomCurChecksumBank:: db
UNION
; debug room new item values
wDebugRoomItemID:: db
wDebugRoomItemQuantity:: db
NEXTU
; debug room new pokemon values
wDebugRoomMon:: box_struct wDebugRoomMon
wDebugRoomMonBox:: db
NEXTU
; debug room GB ID values
wDebugRoomGBID:: dw
ENDU
endc
2017-12-09 11:22:58 -08:00
SECTION "Video", WRAM0
2020-06-20 20:03:40 -07:00
UNION
; bg map
2023-08-29 09:33:20 -07:00
wBGMapBuffer:: ds 2 * SCREEN_WIDTH
wBGMapPalBuffer:: ds 2 * SCREEN_WIDTH
wBGMapBufferPointers:: ds 20 * 2
2018-01-23 14:39:09 -08:00
wBGMapBufferEnd::
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-09 16:41:03 -08:00
; credits
2020-04-17 07:52:59 -07:00
wCreditsPos:: dw
2018-01-23 14:39:09 -08:00
wCreditsTimer:: db
2020-06-20 20:03:40 -07:00
ENDU
2012-12-14 00:00:10 -08:00
wDefaultCGBLayout:: db
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
wPlayerHPPal:: db
wEnemyHPPal:: db
2015-12-22 19:19:33 -08:00
wHPPals:: ds PARTY_LENGTH
2017-12-09 16:41:03 -08:00
wCurHPPal:: db
wWhichPartyMonHPPal:: db
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
wAttrmap::
; 20x18 grid of bg tile attributes for 8x8 tiles
2012-12-14 00:00:10 -08:00
; read horizontally from the top row
; 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)
ds SCREEN_WIDTH * SCREEN_HEIGHT
wAttrmapEnd::
2017-12-09 16:41:03 -08:00
wTileAnimBuffer:: ds 1 tiles
2017-12-09 16:41:03 -08:00
; link data
UNION
2017-12-09 16:41:03 -08:00
wOtherPlayerLinkMode:: db
wOtherPlayerLinkAction:: db
ds 3
2017-12-09 16:41:03 -08:00
wPlayerLinkAction:: db
wUnusedLinkAction:: db
ds 3
NEXTU
wLinkReceivedSyncBuffer:: ds 5
wLinkPlayerSyncBuffer:: ds 5
ENDU
2020-06-20 20:03:40 -07:00
wLinkTimeoutFrames:: dw
wLinkByteTimeout:: dw
2020-06-20 20:03:40 -07:00
wMonType:: db
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
wCurSpecies:: db
2017-12-09 16:41:03 -08:00
wNamedObjectType:: db
2012-12-14 00:00:10 -08:00
wJumptableIndex:: db
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
UNION
; intro data
2017-12-09 16:41:03 -08:00
wIntroSceneFrameCounter:: db
2018-01-11 12:36:11 -08:00
wIntroSceneTimer:: db
2020-06-20 20:03:40 -07:00
NEXTU
; title data
wTitleScreenSelectedOption:: db
2017-12-09 16:41:03 -08:00
wTitleScreenTimer:: dw
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-09 16:41:03 -08:00
; credits data
wCreditsBorderFrame:: db
wCreditsBorderMon:: db
wCreditsLYOverride:: db
2020-06-20 20:03:40 -07:00
NEXTU
2018-01-11 12:36:11 -08:00
; pokedex
wPrevDexEntryJumptableIndex:: db
wPrevDexEntryBackup:: db
wUnusedPokedexByte:: db
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
NEXTU
2018-01-11 12:36:11 -08:00
; pokegear
wPokegearCard:: db
wPokegearMapRegion:: db
wUnusedPokegearByte:: db
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
NEXTU
2018-01-11 12:36:11 -08:00
; pack
wPackJumptableIndex:: db
2018-09-09 12:09:51 -07:00
wCurPocket:: db
2018-01-11 12:36:11 -08:00
wPackUsedItem:: db
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
NEXTU
; trainer card badges
wTrainerCardBadgeFrameCounter:: db
wTrainerCardBadgeTileID:: db
wTrainerCardBadgeAttributes:: db
2020-06-20 20:03:40 -07:00
NEXTU
; slot machine
wSlotsDelay:: db
wUnusedSlotReelIconDelay:: db
NEXTU
; card flip
2018-01-11 12:36:11 -08:00
wCardFlipCursorY:: db
wCardFlipCursorX:: db
wCardFlipWhichCard:: db
NEXTU
2020-11-08 16:32:57 -08:00
; unused memory game
wMemoryGameCardChoice:: db
2020-06-20 20:03:40 -07:00
NEXTU
2018-01-11 12:36:11 -08:00
; magnet train
wMagnetTrainOffset:: db
wMagnetTrainPosition:: db
wMagnetTrainWaitCounter:: db
2020-06-20 20:03:40 -07:00
NEXTU
2018-01-11 12:36:11 -08:00
; unown puzzle data
wHoldingUnownPuzzlePiece:: db
wUnownPuzzleCursorPosition:: db
wUnownPuzzleHeldPiece:: db
NEXTU
; battle transitions
wBattleTransitionCounter:: db
wBattleTransitionSineWaveOffset::
wBattleTransitionSpinQuadrant:: db
if DEF(_DEBUG)
2020-10-23 13:04:15 -07:00
NEXTU
; debug mon color picker
wDebugColorRGBJumptableIndex:: db
wDebugColorCurColor:: db
wDebugColorCurMon:: db
NEXTU
; debug tileset color picker
wDebugTilesetCurPalette:: db
wDebugTilesetRGBJumptableIndex:: db
wDebugTilesetCurColor:: db
endc
NEXTU
; stats screen
wStatsScreenFlags:: db
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-09 16:41:03 -08:00
; miscellaneous
2018-01-11 12:36:11 -08:00
wFrameCounter::
2017-12-09 16:41:03 -08:00
wMomBankDigitCursorPosition::
2018-01-11 12:36:11 -08:00
wNamingScreenLetterCase::
wHallOfFameMonCounter::
wTradeDialog::
2017-12-09 16:41:03 -08:00
db
wFrameCounter2::
2016-05-11 14:16:03 -07:00
wPrinterQueueLength::
wUnusedSGB1eColorOffset::
2017-12-09 16:41:03 -08:00
db
wUnusedTradeAnimPlayEvolutionMusic:: db
2020-06-20 20:03:40 -07:00
ENDU
2013-09-01 12:24:07 -07:00
2020-06-20 20:03:40 -07:00
wRequested2bppSize:: db
wRequested2bppSource:: dw
wRequested2bppDest:: dw
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
wRequested1bppSize:: db
wRequested1bppSource:: dw
wRequested1bppDest:: dw
wMenuMetadata::
2020-06-20 20:03:40 -07:00
wWindowStackPointer:: dw
wMenuJoypad:: db
wMenuSelection:: db
wMenuSelectionQuantity:: db
wWhichIndexSet:: db
wScrollingMenuCursorPosition:: db
wWindowStackSize:: db
2017-12-09 16:41:03 -08:00
ds 8
wMenuMetadataEnd::
2015-10-24 07:34:19 -07:00
; menu header
2020-06-20 20:03:40 -07:00
wMenuHeader::
2017-12-09 16:41:03 -08:00
wMenuFlags:: db
wMenuBorderTopCoord:: db
wMenuBorderLeftCoord:: db
wMenuBorderBottomCoord:: db
wMenuBorderRightCoord:: db
wMenuDataPointer:: dw
wMenuCursorPosition:: db
ds 1
2017-12-09 16:41:03 -08:00
wMenuDataBank:: db
ds 6
wMenuHeaderEnd::
wMenuData::
2020-06-20 20:03:40 -07:00
wMenuDataFlags:: db
2020-06-20 20:03:40 -07:00
UNION
; Vertical Menu/DoNthMenu/SetUpMenu
2020-06-20 20:03:40 -07:00
wMenuDataItems:: db
wMenuDataIndicesPointer:: dw
wMenuDataDisplayFunctionPointer:: dw
wMenuDataPointerTableAddr:: dw
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
NEXTU
; 2D Menu
2020-06-20 20:03:40 -07:00
wMenuData_2DMenuDimensions:: db
wMenuData_2DMenuSpacing:: db
wMenuData_2DMenuItemStringsBank:: db
wMenuData_2DMenuItemStringsAddr:: dw
wMenuData_2DMenuFunctionBank:: db
wMenuData_2DMenuFunctionAddr:: dw
NEXTU
; Scrolling Menu
2020-06-20 20:03:40 -07:00
wMenuData_ScrollingMenuHeight:: db
wMenuData_ScrollingMenuWidth:: db
wMenuData_ScrollingMenuItemFormat:: db
wMenuData_ItemsPointerBank:: db
wMenuData_ItemsPointerAddr:: dw
wMenuData_ScrollingMenuFunction1:: ds 3
wMenuData_ScrollingMenuFunction2:: ds 3
wMenuData_ScrollingMenuFunction3:: ds 3
2023-08-14 11:09:23 -07:00
NEXTU
; Board Menu
wBoardMenuCursorPosition:: db
2020-06-20 20:03:40 -07:00
ENDU
wMenuDataEnd::
wMoreMenuData::
2018-01-23 13:38:52 -08:00
w2DMenuData::
2020-06-20 20:03:40 -07:00
w2DMenuCursorInitY:: db
w2DMenuCursorInitX:: db
w2DMenuNumRows:: db
w2DMenuNumCols:: db
w2DMenuFlags1::
; bit 7: Disable checking of wMenuJoypadFilter
; bit 6: Enable sprite animations
; bit 5: Wrap around vertically
; bit 4: Wrap around horizontally
; bit 3: Set bit 7 in w2DMenuFlags2 and exit the loop if bit 5 is disabled and we tried to go too far down
; bit 2: Set bit 7 in w2DMenuFlags2 and exit the loop if bit 5 is disabled and we tried to go too far up
; bit 1: Set bit 7 in w2DMenuFlags2 and exit the loop if bit 4 is disabled and we tried to go too far left
; bit 0: Set bit 7 in w2DMenuFlags2 and exit the loop if bit 4 is disabled and we tried to go too far right
db
2020-06-20 20:03:40 -07:00
w2DMenuFlags2:: db
w2DMenuCursorOffsets:: db
wMenuJoypadFilter:: db
2018-01-23 13:38:52 -08:00
w2DMenuDataEnd::
2020-06-20 20:03:40 -07:00
wMenuCursorY:: db
wMenuCursorX:: db
wCursorOffCharacter:: db
wCursorCurrentTile:: dw
ds 3
wMoreMenuDataEnd::
2012-12-14 00:00:10 -08:00
2023-09-30 10:12:57 -07:00
wMenuReturn:: db
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
wPredefID:: db
wPredefHL:: dw
2020-06-20 20:03:40 -07:00
wPredefAddress:: dw
wFarCallBC:: dw
2017-12-09 16:41:03 -08:00
wGameTimer::
2018-01-23 09:40:29 -08:00
; bit 0: game timer paused
; bit 7: something mobile
2017-12-09 16:41:03 -08:00
db
2012-12-14 00:00:10 -08:00
wJoypadDisable::
2018-04-05 08:44:02 -07:00
; bits 4, 6, or 7 can be used to disable joypad input
; bit 4
; bit 6: ongoing mon faint animation
; bit 7: ongoing sgb data transfer
2017-12-09 16:41:03 -08:00
db
2020-06-20 20:03:40 -07:00
wInBattleTowerBattle::
2015-09-04 13:30:40 -07:00
; 0 not in BattleTower-Battle
; 1 BattleTower-Battle
2017-12-09 16:41:03 -08:00
db
2015-09-04 13:30:40 -07:00
2020-06-20 20:03:40 -07:00
wFXAnimID:: dw
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
wPlaceBallsX:: db
wPlaceBallsY:: db
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
wTileAnimationTimer:: db
2012-12-14 00:00:10 -08:00
2015-12-23 11:00:29 -08:00
; palette backups?
2017-12-09 16:41:03 -08:00
wBGP:: db
wOBP0:: db
wOBP1:: db
2015-12-23 11:00:29 -08:00
2017-12-09 16:41:03 -08:00
wNumHits:: db
; Time buffer, for counting the amount of time since
; an event began.
wSecondsSince:: db
wMinutesSince:: db
wHoursSince:: db
wDaysSince:: db
wText2bpp:: db
wWhichHUD::
; index to LoadHUD
db
2020-06-20 20:03:40 -07:00
wOptions::
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
; 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
2017-12-09 16:41:03 -08:00
db
wSaveFileExists:: db
2020-06-20 20:03:40 -07:00
wTextboxFrame::
2012-10-08 23:32:05 -07:00
; bits 0-2: textbox frame 0-7
2017-12-09 16:41:03 -08:00
db
2019-04-08 05:15:10 -07:00
wTextboxFlags::
2017-12-29 10:18:17 -08:00
; bit 0: 1-frame text delay
; bit 1: no text delay
; bit 2: 2bpp textbox (and text)
2017-12-29 10:18:17 -08:00
db
2020-06-20 20:03:40 -07:00
wGBPrinterBrightness::
2012-10-08 23:32:05 -07:00
; bit 0-6: brightness
; lightest: $00
; lighter: $20
; normal: $40 (default)
; darker: $60
; darkest: $7F
2017-12-09 16:41:03 -08:00
db
2020-06-20 20:03:40 -07:00
wOptions2::
2012-10-08 23:32:05 -07:00
; bit 1: menu account off/on
2017-12-09 16:41:03 -08:00
db
2018-01-23 14:39:09 -08:00
wOptionsEnd::
2015-08-19 21:14:15 -07:00
SECTION "WRAM 1", WRAMX
wGBCOnlyDecompressBuffer:: ; a $540-byte buffer that continues past this SECTION
2015-11-18 10:29:30 -08:00
wBetaTitleSequenceOpeningType::
; This selected the title screen animation (fire/notes) in pokegold-spaceworld.
db
2018-01-23 14:39:09 -08:00
wDefaultSpawnpoint:: db
2017-12-09 12:14:51 -08:00
SECTION UNION "Miscellaneous WRAM 1", WRAMX
; mon buffer
wBufferMonNickname:: ds MON_NAME_LENGTH
wBufferMonOT:: ds NAME_LENGTH
wBufferMon:: party_struct wBufferMon
ds 8
wMonOrItemNameBuffer:: ds NAME_LENGTH
ds NAME_LENGTH
2015-11-18 10:29:30 -08:00
SECTION UNION "Miscellaneous WRAM 1", WRAMX
2017-12-09 16:41:03 -08:00
; poke seer
wSeerAction:: db
2018-01-20 09:25:55 -08:00
wSeerNickname:: ds MON_NAME_LENGTH
2015-11-23 13:04:53 -08:00
wSeerCaughtLocation:: ds 17
wSeerTimeOfDay:: ds NAME_LENGTH
wSeerOT:: ds NAME_LENGTH
wSeerOTGrammar:: db
2015-11-23 13:04:53 -08:00
wSeerCaughtLevelString:: ds 4
2017-12-09 16:41:03 -08:00
wSeerCaughtLevel:: db
wSeerCaughtData:: db
wSeerCaughtGender:: db
2015-11-23 13:04:53 -08:00
SECTION UNION "Miscellaneous WRAM 1", WRAMX
; mail temp storage
wTempMail:: mailmsg wTempMail
2015-12-16 09:32:08 -08:00
SECTION UNION "Miscellaneous WRAM 1", WRAMX
2017-12-09 16:41:03 -08:00
; bug-catching contest
2015-12-18 17:07:09 -08:00
wBugContestResults::
bugcontestwinner wBugContestFirstPlace
bugcontestwinner wBugContestSecondPlace
bugcontestwinner wBugContestThirdPlace
wBugContestWinnersEnd::
bugcontestwinner wBugContestTemp
ds 4
2015-12-18 17:07:09 -08:00
wBugContestWinnerName:: ds NAME_LENGTH
SECTION UNION "Miscellaneous WRAM 1", WRAMX
2017-12-09 16:41:03 -08:00
; mart items
wMartItem1BCD:: ds 3
wMartItem2BCD:: ds 3
wMartItem3BCD:: ds 3
wMartItem4BCD:: ds 3
wMartItem5BCD:: ds 3
wMartItem6BCD:: ds 3
wMartItem7BCD:: ds 3
wMartItem8BCD:: ds 3
wMartItem9BCD:: ds 3
wMartItem10BCD:: ds 3
SECTION UNION "Miscellaneous WRAM 1", WRAMX
2017-12-09 16:41:03 -08:00
; town map data
wTownMapPlayerIconLandmark:: db
2017-12-09 16:41:03 -08:00
UNION
wTownMapCursorLandmark:: db
wTownMapCursorObjectPointer:: dw
2017-12-09 16:41:03 -08:00
NEXTU
wTownMapCursorCoordinates:: dw
wStartFlypoint:: db
wEndFlypoint:: db
2017-12-09 16:41:03 -08:00
ENDU
SECTION UNION "Miscellaneous WRAM 1", WRAMX
2017-12-09 16:41:03 -08:00
; phone call data
2018-01-23 14:39:09 -08:00
wPhoneScriptBank:: db
wPhoneCaller:: dw
SECTION UNION "Miscellaneous WRAM 1", WRAMX
2017-12-09 16:41:03 -08:00
; radio data
2018-09-09 12:09:51 -07:00
wCurRadioLine:: db
2017-12-09 16:41:03 -08:00
wNextRadioLine:: db
wRadioTextDelay:: db
wNumRadioLinesPrinted:: db
wOaksPKMNTalkSegmentCounter:: db
ds 5
wRadioText:: ds 2 * SCREEN_WIDTH
SECTION UNION "Miscellaneous WRAM 1", WRAMX
2017-12-09 16:41:03 -08:00
; lucky number show
2018-07-28 22:13:25 -07:00
wLuckyNumberDigitsBuffer:: ds 5
2017-12-09 16:41:03 -08:00
SECTION UNION "Miscellaneous WRAM 1", WRAMX
2017-12-09 16:41:03 -08:00
; movement buffer data
wMovementBufferCount:: db
wMovementBufferObject:: db
2017-12-09 16:41:03 -08:00
wUnusedMovementBufferBank:: db
wUnusedMovementBufferPointer:: dw
2018-01-23 14:39:09 -08:00
wMovementBuffer:: ds 55
2017-12-09 16:41:03 -08:00
SECTION UNION "Miscellaneous WRAM 1", WRAMX
2017-12-09 16:41:03 -08:00
; box printing
wWhichBoxMonToPrint:: db
wFinishedPrintingBox:: db
wAddrOfBoxToPrint:: dw
wBankOfBoxToPrint:: db
wWhichBoxToPrint:: db
SECTION UNION "Miscellaneous WRAM 1", WRAMX
; Unown printing
wPrintedUnownTileSource:: ds 1 tiles
wPrintedUnownTileDest:: ds 1 tiles
SECTION UNION "Miscellaneous WRAM 1", WRAMX
2017-12-09 16:41:03 -08:00
; trainer HUD data
ds 1
2017-12-09 16:41:03 -08:00
wPlaceBallsDirection:: db
2018-07-28 22:09:12 -07:00
wTrainerHUDTiles:: ds 4
2017-12-09 16:41:03 -08:00
SECTION UNION "Miscellaneous WRAM 1", WRAMX
; battle exp gain
wExperienceGained:: ds 3
SECTION UNION "Miscellaneous WRAM 1", WRAMX
2017-12-09 16:41:03 -08:00
; earthquake data buffer
wEarthquakeMovementDataBuffer:: ds 5
SECTION UNION "Miscellaneous WRAM 1", WRAMX
; switching items in pack
wSwitchItemBuffer:: ds 2 ; may store 1 or 2 bytes
SECTION UNION "Miscellaneous WRAM 1", WRAMX
; switching pokemon in party
2023-03-30 03:47:02 -07:00
; may store a name, partymon, or mail
wSwitchMonBuffer::
UNION
ds NAME_LENGTH
NEXTU
ds PARTYMON_STRUCT_LENGTH
NEXTU
ds MAIL_STRUCT_LENGTH
ENDU
SECTION UNION "Miscellaneous WRAM 1", WRAMX
; giving pokemon mail
wMonMailMessageBuffer:: ds MAIL_MSG_LENGTH + 1
SECTION UNION "Miscellaneous WRAM 1", WRAMX
; bill's pc
UNION
wBoxNameBuffer:: ds BOX_NAME_LENGTH
NEXTU
ds 1
wBillsPCTempListIndex:: db
wBillsPCTempBoxCount:: db
ENDU
SECTION UNION "Miscellaneous WRAM 1", WRAMX
; prof. oak's pc
wTempPokedexSeenCount:: db
wTempPokedexCaughtCount:: db
SECTION UNION "Miscellaneous WRAM 1", WRAMX
; player's room pc
UNION
wDecoNameBuffer:: ds ITEM_NAME_LENGTH
NEXTU
wNumOwnedDecoCategories:: db
wOwnedDecoCategories:: ds 16
ENDU
SECTION UNION "Miscellaneous WRAM 1", WRAMX
; trade
wCurTradePartyMon:: db
wCurOTTradePartyMon:: db
wBufferTrademonNickname:: ds MON_NAME_LENGTH
SECTION UNION "Miscellaneous WRAM 1", WRAMX
; link battle record data
wLinkBattleRecordBuffer::
wLinkBattleRecordName:: ds NAME_LENGTH
wLinkBattleRecordWins:: dw
wLinkBattleRecordLosses:: dw
wLinkBattleRecordDraws:: dw
SECTION UNION "Miscellaneous WRAM 1", WRAMX
2017-12-09 16:41:03 -08:00
; miscellaneous
wTempDayOfWeek::
wPrevPartyLevel::
wCurBeatUpPartyMon::
wUnownPuzzleCornerTile::
wKeepSevenBiasChance::
wPokeFluteCuredSleep::
wTempRestorePPItem::
2017-12-23 08:34:55 -08:00
wApricorns::
wSuicuneFrame::
2017-12-23 08:34:55 -08:00
db
2017-12-09 16:41:03 -08:00
SECTION UNION "Miscellaneous WRAM 1", WRAMX
2020-10-23 13:04:15 -07:00
; debug color picker
wDebugColorIsTrainer:: db
wDebugColorIsShiny:: db
wDebugColorCurTMHM:: db
SECTION UNION "Miscellaneous WRAM 1", WRAMX
; level selection menu
wLevelSelectionMenuCurrentPage:: db
wLevelSelectionMenuCurrentLandmark:: db
wLevelSelectionMenuLandmarkTransitionsPointer:: dw
wLevelSelectionMenuMovementStepsLeft:: db
wLevelSelectionMenuStandingStill:: db
SECTION UNION "Miscellaneous WRAM 1", WRAMX
; Every previous SECTION UNION takes up 60 or fewer bytes,
; except the initial "mon buffer" one.
ds 60
2020-06-20 20:03:40 -07:00
UNION
; trainer data
wSeenTrainerBank:: db
wSeenTrainerDistance:: db
wSeenTrainerDirection:: db
wTempTrainer::
wTempTrainerEventFlag:: dw
wTempTrainerClass:: db
wTempTrainerID:: db
wSeenTextPointer:: dw
wWinTextPointer:: dw
wLossTextPointer:: dw
wScriptAfterPointer:: dw
wRunningTrainerBattleScript:: db
wTempTrainerEnd::
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-09 16:41:03 -08:00
; menu items list
2018-01-23 14:39:09 -08:00
wMenuItemsList:: ds 16
wMenuItemsListEnd::
2013-05-03 12:40:45 -07:00
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-09 16:41:03 -08:00
; fruit tree data
2018-01-23 14:39:09 -08:00
wCurFruitTree:: db
wCurFruit:: db
2020-06-20 20:03:40 -07:00
NEXTU
; item ball data
wItemBallData::
wItemBallItemID:: db
wItemBallQuantity:: db
wItemBallDataEnd::
2020-06-20 20:03:40 -07:00
NEXTU
; hidden item data
wHiddenItemData::
wHiddenItemEvent:: dw
wHiddenItemID:: db
wHiddenItemDataEnd::
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-09 16:41:03 -08:00
; elevator data
wElevatorData::
2017-12-09 16:41:03 -08:00
wElevatorPointerBank:: db
2017-12-09 19:24:43 -08:00
wElevatorPointer:: dw
2017-12-09 16:41:03 -08:00
wElevatorOriginFloor:: db
wElevatorDataEnd::
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-09 16:41:03 -08:00
; coord event data
wCurCoordEvent::
wCurCoordEventSceneID:: db
2017-12-09 16:41:03 -08:00
wCurCoordEventMapY:: db
wCurCoordEventMapX:: db
ds 1
2017-12-09 16:41:03 -08:00
wCurCoordEventScriptAddr:: dw
2020-06-20 20:03:40 -07:00
NEXTU
; BG event data
wCurBGEvent::
wCurBGEventYCoord:: db
wCurBGEventXCoord:: db
wCurBGEventType:: db
wCurBGEventScriptAddr:: dw
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-09 16:41:03 -08:00
; mart data
wMartType:: db
2018-01-23 14:39:09 -08:00
wMartPointerBank:: db
wMartPointer:: dw
wMartJumptableIndex:: db
2017-12-09 16:41:03 -08:00
wBargainShopFlags:: db
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-09 16:41:03 -08:00
; player movement data
wCurInput::
wFacingTileID:: db
wWalkingIntoNPC:: db
wWalkingIntoLand:: db
wWalkingIntoEdgeWarp:: db
2018-01-23 14:39:09 -08:00
wMovementAnimation:: db
wWalkingDirection:: db
wFacingDirection:: db
wWalkingX:: db
wWalkingY:: db
wWalkingTile:: db
ds 6
2017-12-09 16:41:03 -08:00
wPlayerTurningDirection:: db
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-09 16:41:03 -08:00
; std script buffer
ds 1
2017-12-09 16:41:03 -08:00
wJumpStdScriptBuffer:: ds 3
2020-06-20 20:03:40 -07:00
NEXTU
; phone script data
wCheckedTime:: db
wPhoneListIndex:: db
wNumAvailableCallers:: db
wAvailableCallers:: ds CONTACT_LIST_SIZE
2020-06-20 20:03:40 -07:00
NEXTU
; phone caller contact
ds 1
wCallerContact:: ds PHONE_CONTACT_SIZE
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-09 16:41:03 -08:00
; backup menu data
ds 7
wMenuCursorPositionBackup:: db
2017-12-09 16:41:03 -08:00
wMenuScrollPositionBackup:: db
2020-06-20 20:03:40 -07:00
NEXTU
; poison step data
wPoisonStepData::
wPoisonStepFlagSum:: db
wPoisonStepPartyFlags:: ds PARTY_LENGTH
wPoisonStepDataEnd::
2020-06-20 20:03:40 -07:00
ENDU
SECTION "More WRAM 1", WRAMX
wStringBuffer1:: ds STRING_BUFFER_LENGTH
wStringBuffer2:: ds STRING_BUFFER_LENGTH
UNION
wStringBuffer3:: ds STRING_BUFFER_LENGTH
wStringBuffer4:: ds STRING_BUFFER_LENGTH
wStringBuffer5:: ds STRING_BUFFER_LENGTH
2012-12-14 00:00:10 -08:00
NEXTU
wTempSpaceStruct:: space_struct wTempSpace
wTempSpaceStructEnd::
wTempSpaceBranchStruct:: ds NUM_DIRECTIONS * 2
wTempSpaceBranchStructEnd::
wViewMapModeRange:: db
; if either displacement (abs) equals the range, player can't move further in that direction
wViewMapModeDisplacementY:: db
wViewMapModeDisplacementX:: db
; coords and map backup to know where to spawn after returning from View Map mode
wBeforeViewMapYCoord:: db
wBeforeViewMapXCoord:: db
wBeforeViewMapMapGroup:: db
wBeforeViewMapMapNumber:: db
ENDU
2023-08-14 11:09:23 -07:00
wBattleMenuCursorPosition::
wStartMenuLastCursorPosition::
wBoardMenuLastCursorPosition::
db
2022-05-06 10:09:51 -07:00
wCurBattleMon::
2022-02-22 06:48:29 -08:00
; index of the player's mon currently in battle (0-5)
db
2020-06-20 20:03:40 -07:00
wCurMoveNum:: db
2012-12-14 00:00:10 -08:00
2017-12-09 12:14:51 -08:00
wLastPocket:: db
2016-03-01 19:31:21 -08:00
2017-12-09 12:14:51 -08:00
wPCItemsCursor:: db
wPartyMenuCursor:: db
wItemsPocketCursor:: db
wKeyItemsPocketCursor:: db
wBallsPocketCursor:: db
wTMHMPocketCursor:: db
2016-03-01 19:31:21 -08:00
2017-12-09 12:14:51 -08:00
wPCItemsScrollPosition:: db
wItemsPocketScrollPosition:: db
wKeyItemsPocketScrollPosition:: db
wBallsPocketScrollPosition:: db
wTMHMPocketScrollPosition:: db
2016-03-01 19:31:21 -08:00
2015-11-18 20:16:25 -08:00
wSwitchMon::
2015-12-13 11:15:16 -08:00
wSwitchItem::
wSwappingMove::
2017-12-23 08:34:55 -08:00
db
2017-12-09 16:41:03 -08:00
2015-11-23 13:04:53 -08:00
wMenuScrollPosition:: ds 4
2017-12-09 16:41:03 -08:00
wQueuedScriptBank:: db
wQueuedScriptAddr:: dw
wNumMoves:: db
wFieldMoveSucceeded::
2015-12-13 11:15:16 -08:00
wItemEffectSucceeded::
wBattlePlayerAction::
2015-11-23 13:04:53 -08:00
; 0 - use move
; 1 - use item
; 2 - switch
2015-12-11 08:33:14 -08:00
wSolvedUnownPuzzle::
2020-06-20 20:03:40 -07:00
db
2012-10-08 23:32:05 -07:00
2020-06-20 20:03:40 -07:00
wVramState::
2012-10-08 23:32:05 -07:00
; bit 0: overworld sprite updating on/off
2021-03-11 14:43:20 -08:00
; bit 1: something to do with sprite updates
; bit 2: do not clear wShadowOAM during DoNextFrameForAllSprites
2012-10-08 23:32:05 -07:00
; bit 6: something to do with text
; bit 7: on when surf initiates
; flickers when climbing waterfall
2017-12-09 12:14:51 -08:00
db
2012-10-08 23:32:05 -07:00
2020-06-20 20:03:40 -07:00
wBattleResult::
2018-04-05 08:44:02 -07:00
; WIN, LOSE, or DRAW
; bit 6: caught celebi
; bit 7: box full
db
2020-06-20 20:03:40 -07:00
wUsingItemWithSelect:: db
2020-06-20 20:03:40 -07:00
UNION
2017-12-09 12:14:51 -08:00
; mart data
wCurMartCount:: db
wCurMartItems:: ds 15
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-09 12:14:51 -08:00
; elevator data
wCurElevatorCount:: db
wCurElevatorFloors:: ds 15
2017-12-09 12:14:51 -08:00
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-09 12:14:51 -08:00
; mailbox data
wCurMessageScrollPosition:: db
2017-12-09 12:14:51 -08:00
wCurMessageIndex:: db
wMailboxCount:: db
2015-11-18 10:01:55 -08:00
wMailboxItems:: ds MAILBOX_CAPACITY
2020-06-20 20:03:40 -07:00
ENDU
2017-12-09 12:14:51 -08:00
2020-06-20 20:03:40 -07:00
wListPointer:: dw
wUnusedNamesPointer:: dw
wItemAttributesPointer:: dw
2013-04-29 18:19:42 -07:00
2020-06-20 20:03:40 -07:00
wCurItem:: db
wCurItemQuantity::
2015-11-11 11:12:46 -08:00
wMartItemID::
2017-12-09 12:14:51 -08:00
db
2020-06-20 20:03:40 -07:00
wCurPartySpecies:: db
2012-10-08 23:32:05 -07:00
2020-06-20 20:03:40 -07:00
wCurPartyMon::
2022-02-22 06:48:29 -08:00
; index of mon's party location (0-5)
2017-12-09 12:14:51 -08:00
db
2012-10-08 23:32:05 -07:00
wWhichHPBar::
; 0: Enemy
; 1: Player
; 2: Party Menu
2017-12-09 12:14:51 -08:00
db
2015-11-08 07:59:28 -08:00
wPokemonWithdrawDepositParameter::
; 0: Take from PC
; 1: Put into PC
; 2: Take from Day-Care
; 3: Put into Day-Care
2017-12-09 12:14:51 -08:00
db
2013-04-12 14:21:22 -07:00
wItemQuantityChange:: db
wItemQuantity:: db
2013-04-12 14:21:22 -07:00
2020-06-20 20:03:40 -07:00
wTempMon:: party_struct wTempMon
2020-06-20 20:03:40 -07:00
wSpriteFlags:: db
2013-01-14 00:40:27 -08:00
2020-06-20 20:03:40 -07:00
wHandlePlayerStep:: db
2019-01-24 18:41:14 -08:00
2020-06-20 20:03:40 -07:00
wPartyMenuActionText:: db
2012-11-23 18:19:02 -08:00
wItemAttributeValue:: db
2012-11-23 18:19:02 -08:00
2020-06-20 20:03:40 -07:00
wCurPartyLevel:: db
2017-12-09 12:14:51 -08:00
wScrollingMenuListSize:: db
2015-11-12 08:10:19 -08:00
; used when following a map warp
2017-12-09 12:14:51 -08:00
wNextWarp:: db
wNextMapGroup:: db
wNextMapNumber:: db
wPrevWarp:: db
wPrevMapGroup:: db
wPrevMapNumber:: db
2015-11-12 08:10:19 -08:00
2017-12-09 12:14:51 -08:00
wPlayerBGMapOffsetX:: db ; used in FollowNotExact; unit is pixels
wPlayerBGMapOffsetY:: db ; used in FollowNotExact; unit is pixels
2015-11-12 21:49:27 -08:00
; Player movement
2020-06-20 20:03:40 -07:00
wPlayerStepVectorX:: db
wPlayerStepVectorY:: db
wPlayerStepFlags:: db
wPlayerStepDirection:: db
2020-06-20 20:03:40 -07:00
wBGMapAnchor:: dw
2013-05-13 12:37:14 -07:00
2020-06-20 20:03:40 -07:00
UNION
wUsedSprites:: ds SPRITE_GFX_LIST_CAPACITY * 2
2018-01-23 14:39:09 -08:00
wUsedSpritesEnd::
2015-11-09 13:41:09 -08:00
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-09 16:41:03 -08:00
wd173:: db ; related to command queue type 3
2020-06-20 20:03:40 -07:00
ENDU
2020-06-20 20:03:40 -07:00
wOverworldMapAnchor:: dw
wPlayerMetatileY:: db
wPlayerMetatileX:: db
2017-12-09 12:14:51 -08:00
wMapPartial::
2020-06-20 20:03:40 -07:00
wMapAttributesBank:: db
wMapTileset:: db
wEnvironment:: db
wMapAttributesPointer:: dw
wMapPartialEnd::
2013-07-19 22:25:20 -07:00
2020-06-20 20:03:40 -07:00
wMapAttributes::
wMapBorderBlock:: db
; width/height are in blocks (2x2 walkable tiles, 4x4 graphics tiles)
2020-06-20 20:03:40 -07:00
wMapHeight:: db
wMapWidth:: db
wMapBlocksBank:: db
wMapBlocksPointer:: dw
wMapScriptsBank:: db
wMapScriptsPointer:: dw
wMapEventsPointer:: dw
wMapSpacesPointer:: dw
; bit set
2020-06-20 20:03:40 -07:00
wMapConnections:: db
wMapAttributesEnd::
2017-12-09 12:14:51 -08:00
2020-06-20 20:03:40 -07:00
wNorthMapConnection:: map_connection_struct wNorth
wSouthMapConnection:: map_connection_struct wSouth
wWestMapConnection:: map_connection_struct wWest
wEastMapConnection:: map_connection_struct wEast
2018-01-23 14:39:09 -08:00
wTileset::
2020-06-20 20:03:40 -07:00
wTilesetBank:: db
wTilesetAddress:: dw
wTilesetBlocksBank:: db
wTilesetBlocksAddress:: dw
wTilesetCollisionBank:: db
wTilesetCollisionAddress:: dw
wTilesetAnim:: dw ; bank 3f
wTilesetPalettes:: dw ; bank 3f
wTilesetVariableSpaces:: db
2018-01-23 14:39:09 -08:00
wTilesetEnd::
assert wTilesetEnd - wTileset == TILESET_LENGTH
2017-12-09 12:14:51 -08:00
2020-06-20 20:03:40 -07:00
wEvolvableFlags:: flag_array PARTY_LENGTH
2013-04-19 00:48:07 -07:00
2020-06-20 20:03:40 -07:00
wForceEvolution:: db
2020-06-20 20:03:40 -07:00
UNION
; general-purpose HP buffers
wHPBuffer1:: dw
wHPBuffer2:: dw
wHPBuffer3:: dw
2020-06-20 20:03:40 -07:00
NEXTU
; HP bar animations
2020-06-20 20:03:40 -07:00
wCurHPAnimMaxHP:: dw
wCurHPAnimOldHP:: dw
wCurHPAnimNewHP:: dw
wCurHPAnimPal:: db
wCurHPBarPixels:: db
wNewHPBarPixels:: db
wCurHPAnimDeltaHP:: dw
wCurHPAnimLowHP:: db
wCurHPAnimHighHP:: db
2020-11-03 16:53:07 -08:00
NEXTU
2020-11-03 19:45:12 -08:00
; move AI
2020-11-03 16:53:07 -08:00
wEnemyAIMoveScores:: ds NUM_MOVES
2020-11-03 19:45:12 -08:00
NEXTU
; switch AI
wEnemyEffectivenessVsPlayerMons:: flag_array PARTY_LENGTH
wPlayerEffectivenessVsEnemyMons:: flag_array PARTY_LENGTH
2020-11-03 16:53:07 -08:00
NEXTU
; battle HUD
wBattleHUDTiles:: ds PARTY_LENGTH
2020-11-03 19:45:12 -08:00
NEXTU
; thrown ball data
wFinalCatchRate:: db
wThrownBallWobbleCount:: db
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-09 16:41:03 -08:00
; evolution data
2020-06-20 20:03:40 -07:00
wEvolutionOldSpecies:: db
wEvolutionNewSpecies:: db
2020-11-03 16:53:07 -08:00
wEvolutionPicOffset:: db
wEvolutionCanceled:: db
NEXTU
; experience
wExpToNextLevel:: ds 3
2020-11-03 19:45:12 -08:00
NEXTU
; PP Up
wPPUpPPBuffer:: ds NUM_MOVES
2020-11-03 16:53:07 -08:00
NEXTU
; lucky number show
wMonIDDigitsBuffer:: ds 5
NEXTU
; mon submenu
wMonSubmenuCount:: db
wMonSubmenuItems:: ds NUM_MONMENU_ITEMS + 1
2020-11-03 19:45:12 -08:00
NEXTU
; field move data
wFieldMoveData::
wFieldMoveJumptableIndex:: db
wEscapeRopeOrDigType::
wSurfingPlayerState::
wFishingRodUsed:: db
wCutWhirlpoolOverworldBlockAddr:: dw
wCutWhirlpoolReplacementBlock:: db
wCutWhirlpoolAnimationType::
wStrengthSpecies::
wFishingResult:: db
wFieldMoveDataEnd::
NEXTU
; hidden items
wCurMapScriptBank:: db
wRemainingBGEventCount:: db
wBottomRightYCoord:: db
wBottomRightXCoord:: db
2020-11-03 16:53:07 -08:00
NEXTU
; heal machine anim
wHealMachineAnimType:: db
wHealMachineTempOBP1:: db
wHealMachineAnimState:: db
NEXTU
; decorations
wCurDecoration:: db
wSelectedDecorationSide:: db
wSelectedDecoration:: db
wOtherDecoration:: db
wChangedDecorations:: db
wCurDecorationCategory:: db
NEXTU
; withdraw/deposit items
wPCItemQuantityChange:: db
2020-11-03 16:53:07 -08:00
wPCItemQuantity:: db
NEXTU
; mail
wCurMailAuthorID:: dw
wCurMailIndex:: db
NEXTU
; kurt
wKurtApricornCount:: db
wKurtApricornItems:: ds 10
NEXTU
; tree mons
wTreeMonCoordScore:: db
wTreeMonOTIDScore:: db
2020-11-01 10:42:12 -08:00
NEXTU
; link
wLinkBattleRNPreamble:: ds SERIAL_RN_PREAMBLE_LENGTH
wLinkBattleRNs:: ds SERIAL_RNS_LENGTH
2020-06-20 20:03:40 -07:00
NEXTU
2020-11-03 16:53:07 -08:00
; miscellaneous bytes
wSkipMovesBeforeLevelUp::
wRegisteredPhoneNumbers::
wListMovesLineSpacing:: db
wSwitchMonTo:: db
wSwitchMonFrom:: db
2018-01-23 14:39:09 -08:00
wCurEnemyItem:: db
2020-11-03 16:53:07 -08:00
NEXTU
; miscellaneous words
wBuySellItemPrice::
wMagikarpLength:: dw
2020-06-20 20:03:40 -07:00
ENDU
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
wTempEnemyMonSpecies:: db
wTempBattleMonSpecies:: db
2013-04-29 12:42:31 -07:00
2023-03-30 12:23:46 -07:00
UNION
wOTLinkBattleRNData:: ds SERIAL_RN_PREAMBLE_LENGTH + SERIAL_RNS_LENGTH
NEXTU
2020-06-20 20:03:40 -07:00
wEnemyMon:: battle_struct wEnemyMon
wEnemyMonBaseStats:: ds NUM_EXP_STATS
2020-06-20 20:03:40 -07:00
wEnemyMonCatchRate:: db
wEnemyMonBaseExp:: db
2018-01-23 14:39:09 -08:00
wEnemyMonEnd::
2023-03-30 12:23:46 -07:00
ENDU
2020-06-20 20:03:40 -07:00
wBattleMode::
2012-12-14 00:00:10 -08:00
; 0: overworld
; 1: wild battle
2012-11-23 18:19:02 -08:00
; 2: trainer battle
2017-12-09 12:14:51 -08:00
db
2018-01-23 14:39:09 -08:00
wTempWildMonSpecies:: db
2020-06-20 20:03:40 -07:00
wOtherTrainerClass::
; class (Youngster, Bug Catcher, etc.) of opposing trainer
; 0 if opponent is a wild Pokémon, not a trainer
2017-12-09 12:14:51 -08:00
db
2017-12-09 12:14:51 -08:00
; BATTLETYPE_* values
2020-06-20 20:03:40 -07:00
wBattleType:: db
2020-06-20 20:03:40 -07:00
wOtherTrainerID::
; which trainer of the class that you're fighting
; (Joey, Mikey, Albert, etc.)
2017-12-09 12:14:51 -08:00
db
2017-12-09 12:14:51 -08:00
wForcedSwitch:: db
2020-06-20 20:03:40 -07:00
wTrainerClass:: db
2012-11-23 18:19:02 -08:00
2020-06-20 20:03:40 -07:00
wUnownLetter:: db
2012-11-23 18:19:02 -08:00
2017-12-09 12:14:51 -08:00
wMoveSelectionMenuType:: db
2012-11-23 18:19:02 -08:00
; corresponds to the data/pokemon/base_stats/*.asm contents
2020-06-20 20:03:40 -07:00
wCurBaseData::
wBaseDexNo:: db
wBaseStats::
wBaseHP:: db
wBaseAttack:: db
wBaseDefense:: db
wBaseSpeed:: db
wBaseSpecialAttack:: db
wBaseSpecialDefense:: db
wBaseType::
wBaseType1:: db
wBaseType2:: db
wBaseCatchRate:: db
wBaseExp:: db
wBaseItems::
wBaseItem1:: db
wBaseItem2:: db
wBaseGender:: db
wBaseUnknown1:: db
wBaseEggSteps:: db
wBaseUnknown2:: db
wBasePicSize:: db
wBaseUnusedFrontpic:: dw
wBaseUnusedBackpic:: dw
wBaseGrowthRate:: db
wBaseEggGroups:: db
wBaseTMHM:: flag_array NUM_TM_HM_TUTOR
2018-01-23 14:39:09 -08:00
wCurBaseDataEnd::
assert wCurBaseDataEnd - wCurBaseData == BASE_DATA_SIZE
2018-01-23 14:39:09 -08:00
2020-06-20 20:03:40 -07:00
wCurDamage:: dw
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
wMornEncounterRate:: db
wDayEncounterRate:: db
wNiteEncounterRate:: db
2023-07-31 03:27:53 -07:00
wEveEncounterRate:: db
2020-06-20 20:03:40 -07:00
wWaterEncounterRate:: db
2016-01-04 05:43:55 -08:00
wListMoves_MoveIndicesBuffer:: ds NUM_MOVES
2017-12-09 12:14:51 -08:00
wPutativeTMHMMove:: db
wInitListType:: db
wBattleHasJustStarted:: db
wNamedObjectIndex::
wTextDecimalByte::
wTempByteValue::
wNumSetBits::
2015-11-06 17:55:16 -08:00
wTypeMatchup::
wCurType::
wTempSpecies::
wTempIconSpecies::
wTempTMHM::
wTempPP::
wNextBoxOrPartyIndex::
wChosenCableClubRoom::
wBreedingCompatibility::
wMoveGrammar::
wApplyStatLevelMultipliersToEnemy::
wUsePPUp::
2017-12-23 08:34:55 -08:00
db
2017-12-09 12:14:51 -08:00
wFailedToFlee:: db
wNumFleeAttempts:: db
wMonTriedToEvolve:: db
2020-06-20 20:03:40 -07:00
wTimeOfDay:: db
2017-12-09 11:22:58 -08:00
SECTION "Enemy Party", WRAMX
2017-12-09 11:22:58 -08:00
2020-06-20 20:03:40 -07:00
UNION
2017-12-23 08:34:55 -08:00
wPokedexShowPointerAddr:: dw
wPokedexShowPointerBank:: db
2019-04-19 08:35:27 -07:00
2020-06-20 20:03:40 -07:00
NEXTU
2019-04-19 08:35:27 -07:00
wUnusedEggHatchFlag:: db
2015-12-02 14:59:05 -08:00
2020-06-20 20:03:40 -07:00
NEXTU
; enemy party
wOTPartyData::
2020-06-20 20:03:40 -07:00
wOTPlayerName:: ds NAME_LENGTH
wOTPlayerID:: dw
wOTPartyCount:: db
wOTPartySpecies:: ds PARTY_LENGTH
Merge branch 'master' of https://github.com/pret/pokecrystal # Conflicts: # audio/engine.asm # constants/gfx_constants.asm # constants/map_data_constants.asm # constants/pokemon_data_constants.asm # constants/sprite_constants.asm # constants/wram_constants.asm # data/maps/data.asm # engine/battle/ai/scoring.asm # engine/battle/core.asm # engine/battle/effect_commands.asm # engine/battle/misc.asm # engine/battle_anims/getpokeballwobble.asm # engine/breeding.asm # engine/buy_sell_toss.asm # engine/decorations.asm # engine/events/battle_tower/battle_tower.asm # engine/events/battle_tower/rules.asm # engine/events/buena.asm # engine/events/bug_contest/contest_2.asm # engine/events/daycare.asm # engine/events/dratini.asm # engine/events/halloffame.asm # engine/events/happiness_egg.asm # engine/events/kurt.asm # engine/events/lucky_number.asm # engine/events/magnet_train.asm # engine/events/overworld.asm # engine/events/pokerus/pokerus.asm # engine/events/print_unown.asm # engine/events/print_unown_2.asm # engine/events/unown_walls.asm # engine/item_effects.asm # engine/link.asm # engine/mon_menu.asm # engine/player_object.asm # engine/routines/playslowcry.asm # engine/scripting.asm # engine/search.asm # engine/search2.asm # engine/specials.asm # engine/start_menu.asm # engine/timeset.asm # home/battle_vars.asm # home/map.asm # maps/GoldenrodUndergroundSwitchRoomEntrances.asm # maps/IlexForest.asm # maps/KrissHouse2F.asm # maps/Route39Barn.asm # mobile/mobile_12_2.asm # mobile/mobile_40.asm # mobile/mobile_5f.asm # wram.asm
2018-02-03 15:21:53 -08:00
wOTPartyEnd:: db ; older code doesn't check PartyCount
2020-06-20 20:03:40 -07:00
ENDU
2020-06-20 20:03:40 -07:00
UNION
2017-12-09 16:41:03 -08:00
; ot party mons
2018-01-23 14:39:09 -08:00
wOTPartyMons::
; wOTPartyMon1 - wOTPartyMon6
for n, 1, PARTY_LENGTH + 1
wOTPartyMon{d:n}:: party_struct wOTPartyMon{d:n}
endr
2018-01-23 14:39:09 -08:00
wOTPartyMonOTs::
; wOTPartyMon1OT - wOTPartyMon6OT
for n, 1, PARTY_LENGTH + 1
wOTPartyMon{d:n}OT:: ds NAME_LENGTH
endr
wOTPartyMonNicknames::
; wOTPartyMon1Nickname - wOTPartyMon6Nickname
for n, 1, PARTY_LENGTH + 1
wOTPartyMon{d:n}Nickname:: ds MON_NAME_LENGTH
endr
2018-01-23 14:39:09 -08:00
wOTPartyDataEnd::
2017-12-23 08:34:55 -08:00
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-23 08:34:55 -08:00
; catch tutorial dude pack
wDudeNumItems:: db
wDudeItems:: ds 2 * 4 + 1
2017-12-23 08:34:55 -08:00
2020-06-20 20:03:40 -07:00
wDudeNumKeyItems:: db
wDudeKeyItems:: ds 18 + 1
2017-12-23 08:34:55 -08:00
2020-06-20 20:03:40 -07:00
wDudeNumBalls:: db
wDudeBalls:: ds 2 * 4 + 1
2020-06-20 20:03:40 -07:00
ENDU
2020-06-20 20:03:40 -07:00
wBattleAction:: db
2020-06-20 20:03:40 -07:00
wLinkBattleSentAction:: db
; wMapStatus ~ wMapStatusEnd is cleared in StartMap
2020-06-20 20:03:40 -07:00
wMapStatus:: db
2020-06-20 20:03:40 -07:00
wMapEventStatus:: db
2013-12-27 02:56:23 -08:00
2020-06-20 20:03:40 -07:00
wScriptFlags::
2021-06-08 17:35:04 -07:00
; bit 3: run deferred script
2017-12-09 16:41:03 -08:00
db
2020-06-20 20:03:40 -07:00
wScriptFlags2::
; bit 0: count steps
; bit 1: coord events
; bit 2: warps and connections
; bit 3: wild encounters
; bit 4: space effects
2017-12-09 16:41:03 -08:00
db
2013-02-28 13:45:34 -08:00
2020-06-20 20:03:40 -07:00
wScriptMode:: db
wScriptRunning:: db
wScriptBank:: db
wScriptPos:: dw
2012-11-23 18:19:02 -08:00
2017-12-09 16:41:03 -08:00
wScriptStackSize:: db
wScriptStack:: ds 3 * 5
2020-06-20 20:03:40 -07:00
wScriptDelay:: db
2013-07-04 02:37:20 -07:00
2021-06-08 17:35:04 -07:00
wDeferredScriptBank::
2017-12-23 08:34:55 -08:00
wScriptTextBank::
2020-06-20 20:03:40 -07:00
db
2021-06-08 17:35:04 -07:00
wDeferredScriptAddr::
2017-12-23 08:34:55 -08:00
wScriptTextAddr::
2020-06-20 20:03:40 -07:00
dw
2020-06-20 20:03:40 -07:00
wWildEncounterCooldown:: db
2020-10-04 16:43:28 -07:00
wXYComparePointer:: dw
2020-08-21 13:03:15 -07:00
wBattleScriptFlags:: db
2020-06-20 20:03:40 -07:00
wPlayerSpriteSetupFlags::
2018-01-23 14:39:09 -08:00
; bit 7: if set, cancel wPlayerAction
2018-01-22 11:34:55 -08:00
; bit 6: RefreshMapSprites doesn't reload player sprite
2016-01-04 05:43:55 -08:00
; bit 5: if set, set facing according to bits 0-1
2018-01-22 11:34:55 -08:00
; bit 2: female player has been transformed into male
2016-01-04 05:43:55 -08:00
; bits 0-1: direction facing
2017-12-09 16:41:03 -08:00
db
2020-08-21 13:03:15 -07:00
2020-06-20 20:03:40 -07:00
wMapReentryScriptQueueFlag:: db
wMapReentryScriptBank:: db
wMapReentryScriptAddress:: dw
2020-06-20 20:03:40 -07:00
wTimeCyclesSinceLastCall:: db
wReceiveCallDelay_MinsRemaining:: db
wReceiveCallDelay_StartTime:: ds 2 ; hour, min
2020-06-20 20:03:40 -07:00
wBugContestMinsRemaining:: db
wBugContestSecsRemaining:: db
; TurnData ~ wTurnDataEnd is cleared at the beginning of BoardMenuScript (i.e. on turn begin)
wTurnData::
wDieRoll:: db
wSpacesLeft:: db
wTurnDataEnd::
wMapStatusEnd::
wGameData::
2015-08-19 21:14:15 -07:00
wPlayerData::
wPlayerID:: dw
2013-07-21 02:53:04 -07:00
2020-06-20 20:03:40 -07:00
wPlayerName:: ds NAME_LENGTH
wMomsName:: ds NAME_LENGTH
wRivalName:: ds NAME_LENGTH
wRedsName:: ds NAME_LENGTH
wGreensName:: ds NAME_LENGTH
2013-05-12 17:36:40 -07:00
wPlayerGender::
; bit 0:
; 0 male
; 1 female
db
2017-12-09 16:41:03 -08:00
wSavedAtLeastOnce:: db
wSaveFileInOverworld:: db
2012-07-04 20:42:39 -07:00
2012-11-23 18:19:02 -08:00
; init time set at newgame
wStartDay:: db
wStartHour:: db
2020-06-20 20:03:40 -07:00
wStartMinute:: db
wStartSecond:: db
2012-11-23 18:19:02 -08:00
wGameTime:: ; used only for BANK(wGameTime)
2020-06-20 20:03:40 -07:00
wGameTimeCap:: db
wGameTimeHours:: dw
wGameTimeMinutes:: db
wGameTimeSeconds:: db
wGameTimeFrames:: db
2012-12-14 00:00:10 -08:00
2020-06-20 20:03:40 -07:00
wCurDay:: db
2012-11-23 18:19:02 -08:00
2017-12-09 16:41:03 -08:00
wObjectFollow_Leader:: db
wObjectFollow_Follower:: db
wCenteredObject:: db
wFollowerMovementQueueLength:: db
2015-12-29 10:15:58 -08:00
wFollowMovementQueue:: ds 5
2013-07-22 00:00:07 -07:00
2020-06-20 20:03:40 -07:00
wObjectStructs::
wPlayerStruct:: object_struct wPlayer ; player is object struct 0
; wObjectStruct1 - wObjectStruct12
for n, 1, NUM_OBJECT_STRUCTS
wObject{d:n}Struct:: object_struct wObject{d:n}
endr
2015-11-18 20:16:25 -08:00
wCmdQueue:: ds CMDQUEUE_CAPACITY * CMDQUEUE_ENTRY_SIZE
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
wMapObjects::
wPlayerObject:: map_object wPlayer ; player is map object 0
; wMap1Object - wMap15Object
for n, 1, NUM_OBJECTS
wMap{d:n}Object:: map_object wMap{d:n}
endr
2013-07-04 01:11:28 -07:00
2020-06-20 20:03:40 -07:00
wObjectMasks:: ds NUM_OBJECTS
2013-07-04 01:11:28 -07:00
2020-06-20 20:03:40 -07:00
wVariableSprites:: ds $100 - SPRITE_VARS
2013-07-07 22:35:41 -07:00
2020-06-20 20:03:40 -07:00
wTimeOfDayPal:: db
wTimeOfDayPalFlags:: db
2017-12-09 16:41:03 -08:00
wTimeOfDayPalset:: db
2020-06-20 20:03:40 -07:00
wCurTimeOfDay:: db
2017-12-09 16:41:03 -08:00
wSecretID:: dw
2020-06-20 20:03:40 -07:00
wStatusFlags::
2018-01-22 10:57:44 -08:00
; bit 0: pokedex
; bit 1: unown dex
2018-01-22 12:40:43 -08:00
; bit 2: flash
; bit 3: caught pokerus
2018-01-22 10:57:44 -08:00
; bit 4: rocket signal
; bit 5: wild encounters on/off
; bit 6: hall of fame
; bit 7: bug contest on
2017-12-09 16:41:03 -08:00
db
2020-06-20 20:03:40 -07:00
wStatusFlags2::
2018-01-22 10:57:44 -08:00
; bit 0: rockets
2018-01-22 12:40:43 -08:00
; bit 1: safari game (unused)
2018-01-22 10:57:44 -08:00
; bit 2: bug contest timer
; bit 3: unused
; bit 4: bike shop call
2018-01-22 12:40:43 -08:00
; bit 5: can use sweet scent
; bit 6: reached goldenrod
2018-01-22 10:57:44 -08:00
; bit 7: rockets in mahogany
2017-12-09 16:41:03 -08:00
db
2012-09-11 19:37:03 -07:00
wCoins:: ds 3
wMomsCoins:: ds 3
2018-01-22 10:57:44 -08:00
wMomSavingCoins::
; bit 0: saving some coins
; bit 1: saving half coins (unused)
; bit 2: saving all coins (unused)
2018-01-22 10:57:44 -08:00
; bit 7: active
db
2013-08-30 14:48:59 -07:00
wChips:: dw
wBadges::
2020-06-20 20:03:40 -07:00
wJohtoBadges:: flag_array NUM_JOHTO_BADGES
wKantoBadges:: flag_array NUM_KANTO_BADGES
2020-06-20 20:03:40 -07:00
wTMsHMs:: ds NUM_TMS + NUM_HMS
2012-09-11 19:37:03 -07:00
2020-06-20 20:03:40 -07:00
wNumItems:: db
wItems:: ds MAX_ITEMS * 2 + 1
2012-09-11 19:37:03 -07:00
2020-06-20 20:03:40 -07:00
wNumKeyItems:: db
wKeyItems:: ds MAX_KEY_ITEMS + 1
2013-07-02 20:01:34 -07:00
2020-06-20 20:03:40 -07:00
wNumBalls:: db
wBalls:: ds MAX_BALLS * 2 + 1
2013-08-29 21:07:51 -07:00
2019-03-18 08:43:58 -07:00
wNumPCItems:: db
2020-06-20 20:03:40 -07:00
wPCItems:: ds MAX_PC_ITEMS * 2 + 1
2013-08-29 21:07:51 -07:00
2017-12-09 16:41:03 -08:00
wPokegearFlags::
2016-01-09 20:41:03 -08:00
; bit 0: map
; bit 1: radio
; bit 2: phone
; bit 3: expn
; bit 7: on/off
2017-12-09 16:41:03 -08:00
db
wRadioTuningKnob:: db
wLastDexMode:: db
2020-06-20 20:03:40 -07:00
wWhichRegisteredItem:: db
wRegisteredItem:: db
2013-07-02 20:01:34 -07:00
2020-06-20 20:03:40 -07:00
wPlayerState:: db
2012-09-11 19:37:03 -07:00
2020-09-12 10:11:08 -07:00
wHallOfFameCount:: db
2020-06-20 20:03:40 -07:00
wTradeFlags:: flag_array NUM_NPC_TRADES
2020-06-20 20:03:40 -07:00
wMooMooBerries:: db
wUndergroundSwitchPositions:: db
wFarfetchdPosition:: db
2023-08-20 16:45:06 -07:00
wUnlockedLevels:: flag_array NUM_LANDMARKS
wUnlockedTechniques:: flag_array NUM_TECHNIQUES
; map scene ids (data/maps/scenes.asm:MapScenes)
; wPokecenter2FSceneID:: db
2014-03-03 19:46:04 -08:00
2020-06-20 20:03:40 -07:00
wEventFlags:: flag_array NUM_EVENTS
2012-06-05 21:49:44 -07:00
2020-06-20 20:03:40 -07:00
wCurBox:: db
2014-04-12 12:45:19 -07:00
2020-06-20 20:03:40 -07:00
wBoxNames:: ds BOX_NAME_LENGTH * NUM_BOXES
2020-06-20 20:03:40 -07:00
wCelebiEvent::
2018-01-22 11:34:55 -08:00
; bit 2: forest is restless
db
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
wBikeFlags::
2016-01-04 05:43:55 -08:00
; bit 0: using strength
; bit 1: always on bike
; bit 2: downhill
2017-12-09 16:41:03 -08:00
db
2020-06-20 20:03:40 -07:00
wCurMapSceneScriptPointer:: dw
wCurCaller:: dw
wCurMapWarpCount:: db
wCurMapWarpsPointer:: dw
wCurMapCoordEventCount:: db
wCurMapCoordEventsPointer:: dw
wCurMapBGEventCount:: db
wCurMapBGEventsPointer:: dw
wCurMapObjectEventCount:: db
wCurMapObjectEventsPointer:: dw
wCurMapSceneScriptCount:: db
wCurMapSceneScriptsPointer:: dw
wCurMapCallbackCount:: db
wCurMapCallbacksPointer:: dw
2017-12-09 16:41:03 -08:00
2013-05-29 15:56:09 -07:00
; Sprite id of each decoration
2020-06-20 20:03:40 -07:00
wDecoBed:: db
wDecoCarpet:: db
wDecoPlant:: db
wDecoPoster:: db
wDecoConsole:: db
wDecoLeftOrnament:: db
wDecoRightOrnament:: db
wDecoBigDoll:: db
2013-05-29 15:56:09 -07:00
; Items bought from Mom
2020-06-20 20:03:40 -07:00
wWhichMomItem:: db
wWhichMomItemSet:: db
wMomItemTriggerBalance:: ds 3
2020-06-20 20:03:40 -07:00
wDailyResetTimer:: dw
wDailyFlags1:: db
wDailyFlags2:: db
wSwarmFlags:: db
2020-06-20 20:03:40 -07:00
wFruitTreeFlags:: flag_array NUM_FRUIT_TREES
2013-05-03 12:40:45 -07:00
wLuckyNumberDayTimer:: dw
2020-06-20 20:03:40 -07:00
wSpecialPhoneCallID:: db
wBugContestStartTime:: ds 3 ; hour, min, sec
2017-12-09 16:41:03 -08:00
wBuenasPassword:: db
wBlueCardBalance:: db
2020-06-20 20:03:40 -07:00
wYanmaMapGroup:: db
2017-12-09 16:41:03 -08:00
wYanmaMapNumber:: db
2019-04-19 08:35:27 -07:00
2020-06-20 20:03:40 -07:00
wStepCount:: db
wPoisonStepCount:: db
2017-12-09 16:41:03 -08:00
wHappinessStepCount:: db
2015-11-08 10:27:26 -08:00
wParkBallsRemaining::
2020-06-20 20:03:40 -07:00
wSafariBallsRemaining:: db
wSafariTimeRemaining:: dw
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
wPhoneList:: ds CONTACT_LIST_SIZE + 1
2020-06-20 20:03:40 -07:00
wLuckyNumberShowFlag:: db
wLuckyIDNumber:: dw
2017-12-09 16:41:03 -08:00
wRepelEffect:: db ; If a Repel is in use, it contains the nr of steps it's still active
wBikeStep:: dw
wKurtApricornQuantity:: db
2015-08-19 21:14:15 -07:00
wPlayerDataEnd::
2018-09-09 12:09:51 -07:00
wCurMapData::
2015-08-19 21:14:15 -07:00
2020-06-20 20:03:40 -07:00
wVisitedSpawns:: flag_array NUM_SPAWNS
2017-12-09 16:41:03 -08:00
2020-06-20 20:03:40 -07:00
wDigWarpNumber:: db
wDigMapGroup:: db
wDigMapNumber:: db
2013-02-03 21:22:53 -08:00
; used on maps like second floor pokécenter, which are reused, so we know which
; map to return to
2020-06-20 20:03:40 -07:00
wBackupWarpNumber:: db
wBackupMapGroup:: db
wBackupMapNumber:: db
2017-12-09 16:41:03 -08:00
wLastSpawnMapGroup:: db
wLastSpawnMapNumber:: db
2020-06-20 20:03:40 -07:00
wWarpNumber:: db
wMapGroup:: db
wMapNumber:: db
wYCoord:: db
wXCoord:: db
wScreenSave:: ds SCREEN_META_WIDTH * SCREEN_META_HEIGHT
wCurTurn:: db
wCurSpace:: db
wCurSpaceStruct:: space_struct wCurSpace
wCurSpaceStructEnd::
2018-09-09 12:09:51 -07:00
wCurMapDataEnd::
2015-08-19 21:14:15 -07:00
SECTION "Party", WRAMX
2015-08-19 21:14:15 -07:00
wPokemonData::
2020-06-20 20:03:40 -07:00
wPartyCount:: db
wPartySpecies:: ds PARTY_LENGTH
wPartyEnd:: db ; older code doesn't check wPartyCount
2018-01-23 14:39:09 -08:00
wPartyMons::
; wPartyMon1 - wPartyMon6
for n, 1, PARTY_LENGTH + 1
wPartyMon{d:n}:: party_struct wPartyMon{d:n}
endr
2012-03-20 21:23:40 -07:00
wPartyMonOTs::
; wPartyMon1OT - wPartyMon6OT
for n, 1, PARTY_LENGTH + 1
wPartyMon{d:n}OT:: ds NAME_LENGTH
endr
wPartyMonNicknames::
; wPartyMon1Nickname - wPartyMon6Nickname
for n, 1, PARTY_LENGTH + 1
wPartyMon{d:n}Nickname:: ds MON_NAME_LENGTH
endr
2018-01-23 14:39:09 -08:00
wPartyMonNicknamesEnd::
2012-10-08 23:40:36 -07:00
2020-06-20 20:03:40 -07:00
wPokedexCaught:: flag_array NUM_POKEMON
2018-01-23 14:39:09 -08:00
wEndPokedexCaught::
2020-06-20 20:03:40 -07:00
wPokedexSeen:: flag_array NUM_POKEMON
2018-01-23 14:39:09 -08:00
wEndPokedexSeen::
2020-06-20 20:03:40 -07:00
wUnownDex:: ds NUM_UNOWN
wUnlockedUnowns:: db
2017-12-09 16:41:03 -08:00
wFirstUnownSeen:: db
2020-06-20 20:03:40 -07:00
wDayCareMan::
2012-10-08 23:40:36 -07:00
; bit 7: active
2018-01-22 10:18:23 -08:00
; bit 6: egg ready
; bit 5: monsters are compatible
; bit 0: monster 1 in day-care
2017-12-09 16:41:03 -08:00
db
2012-10-08 23:40:36 -07:00
wBreedMon1Nickname:: ds MON_NAME_LENGTH
wBreedMon1OT:: ds NAME_LENGTH
wBreedMon1:: box_struct wBreedMon1
2012-10-08 23:40:36 -07:00
2020-06-20 20:03:40 -07:00
wDayCareLady::
2012-10-08 23:40:36 -07:00
; bit 7: active
; bit 0: monster 2 in day-care
2017-12-09 16:41:03 -08:00
db
2012-10-08 23:40:36 -07:00
2020-06-20 20:03:40 -07:00
wStepsToEgg::
2017-12-09 16:41:03 -08:00
db
2020-06-20 20:03:40 -07:00
wBreedMotherOrNonDitto::
2012-10-08 23:40:36 -07:00
; z: yes
; nz: no
2017-12-09 16:41:03 -08:00
db
2012-10-08 23:40:36 -07:00
wBreedMon2Nickname:: ds MON_NAME_LENGTH
wBreedMon2OT:: ds NAME_LENGTH
wBreedMon2:: box_struct wBreedMon2
2012-10-08 23:40:36 -07:00
wEggMonNickname:: ds MON_NAME_LENGTH
wEggMonOT:: ds NAME_LENGTH
wEggMon:: box_struct wEggMon
2012-11-23 18:19:02 -08:00
2017-12-09 16:41:03 -08:00
wBugContestSecondPartySpecies:: db
2020-06-20 20:03:40 -07:00
wContestMon:: party_struct wContestMon
2017-12-09 16:41:03 -08:00
wDunsparceMapGroup:: db
wDunsparceMapNumber:: db
wFishingSwarmFlag:: db
2020-06-20 20:03:40 -07:00
wRoamMon1:: roam_struct wRoamMon1
wRoamMon2:: roam_struct wRoamMon2
wRoamMon3:: roam_struct wRoamMon3
2018-09-09 12:09:51 -07:00
wRoamMons_CurMapNumber:: db
wRoamMons_CurMapGroup:: db
2017-12-09 16:41:03 -08:00
wRoamMons_LastMapNumber:: db
wRoamMons_LastMapGroup:: db
2017-12-09 16:41:03 -08:00
wBestMagikarpLengthFeet:: db
wBestMagikarpLengthInches:: db
wMagikarpRecordHoldersName:: ds NAME_LENGTH
2015-08-19 21:14:15 -07:00
wPokemonDataEnd::
wGameDataEnd::
2015-08-19 21:14:15 -07:00
2017-12-09 11:22:58 -08:00
SECTION "Pic Animations", WRAMX
2015-02-10 15:14:21 -08:00
wTempTilemap::
2015-09-09 16:27:07 -07:00
; 20x18 grid of 8x8 tiles
ds SCREEN_WIDTH * SCREEN_HEIGHT
2017-12-09 11:22:58 -08:00
; PokeAnim data
wPokeAnimStruct::
2017-12-09 11:22:58 -08:00
wPokeAnimSceneIndex:: db
wPokeAnimPointer:: dw
wPokeAnimSpecies:: db
wPokeAnimUnownLetter:: db
wPokeAnimSpeciesOrUnown:: db
wPokeAnimGraphicStartTile:: db
wPokeAnimCoord:: dw
wPokeAnimFrontpicHeight:: db
wPokeAnimIdleFlag:: db
2017-12-09 11:22:58 -08:00
wPokeAnimSpeed:: db
wPokeAnimPointerBank:: db
wPokeAnimPointerAddr:: dw
wPokeAnimFramesBank:: db
wPokeAnimFramesAddr:: dw
wPokeAnimBitmaskBank:: db
wPokeAnimBitmaskAddr:: dw
wPokeAnimFrame:: db
wPokeAnimJumptableIndex:: db
wPokeAnimRepeatTimer:: db
wPokeAnimCurBitmask:: db
wPokeAnimWaitCounter:: db
wPokeAnimCommand:: db
wPokeAnimParameter:: db
ds 1
wPokeAnimBitmaskCurCol:: db
wPokeAnimBitmaskCurRow:: db
wPokeAnimBitmaskCurBit:: db
wPokeAnimBitmaskBuffer:: ds 7
ds 2
2015-11-07 06:48:32 -08:00
wPokeAnimStructEnd::
2015-02-10 15:14:21 -08:00
SECTION "GBC Video", WRAMX, ALIGN[8]
2017-12-09 11:22:58 -08:00
; eight 4-color palettes each
wGBCPalettes:: ; used only for BANK(wGBCPalettes)
2020-06-20 20:03:40 -07:00
wBGPals1:: ds 8 palettes
wOBPals1:: ds 8 palettes
wBGPals2:: ds 8 palettes
wOBPals2:: ds 8 palettes
align 8
2020-06-20 20:03:40 -07:00
wLYOverrides:: ds SCREEN_HEIGHT_PX
wLYOverridesEnd::
2013-08-22 01:16:41 -07:00
wMagnetTrain:: ; used only for BANK(wMagnetTrain)
2017-12-09 11:22:58 -08:00
wMagnetTrainDirection:: db
wMagnetTrainInitPosition:: db
wMagnetTrainHoldPosition:: db
wMagnetTrainFinalPosition:: db
wMagnetTrainPlayerSpriteInitX:: db
; Used by FadeInPalettesFromWhite
wBGPalsRegularWhiteColors:: ds 8 * PAL_COLOR_SIZE
ds 91
2013-12-08 13:22:35 -08:00
align 8
2020-06-20 20:03:40 -07:00
wLYOverridesBackup:: ds SCREEN_HEIGHT_PX
2018-01-23 14:39:09 -08:00
wLYOverridesBackupEnd::
2013-12-08 13:22:35 -08:00
SECTION "Battle Animations", WRAMX
2020-10-30 12:39:08 -07:00
wBattleAnimTileDict::
; wBattleAnimTileDict pairs keys with values
2023-09-24 06:06:19 -07:00
; keys: BATTLE_ANIM_GFX_* indexes (taken from anim_*gfx arguments)
2020-10-30 12:39:08 -07:00
; values: vTiles0 offsets
ds NUM_BATTLEANIMTILEDICT_ENTRIES * 2
2013-12-17 20:32:46 -08:00
2020-06-20 20:03:40 -07:00
wActiveAnimObjects::
; wAnimObject1 - wAnimObject10
2023-09-24 06:06:19 -07:00
for n, 1, NUM_BATTLE_ANIM_STRUCTS + 1
wAnimObject{d:n}:: battle_anim_struct wAnimObject{d:n}
endr
2018-01-23 14:39:09 -08:00
2020-06-20 20:03:40 -07:00
wActiveBGEffects::
; wBGEffect1 - wBGEffect5
for n, 1, NUM_BG_EFFECTS + 1
wBGEffect{d:n}:: battle_bg_effect wBGEffect{d:n}
endr
2013-12-09 13:20:19 -08:00
2020-06-20 20:03:40 -07:00
wLastAnimObjectIndex:: db
2013-12-08 13:22:35 -08:00
2020-06-20 20:03:40 -07:00
wBattleAnimFlags:: db
wBattleAnimAddress:: dw
wBattleAnimDelay:: db
wBattleAnimParent:: dw
wBattleAnimLoops:: db
wBattleAnimVar:: db
wBattleAnimByte:: db
wBattleAnimOAMPointerLo:: db
2020-06-20 20:03:40 -07:00
UNION
wBattleObjectTempID:: db
wBattleObjectTempXCoord:: db
wBattleObjectTempYCoord:: db
wBattleObjectTempParam:: db
2020-11-09 12:05:14 -08:00
NEXTU
wBattleBGEffectTempID:: db
wBattleBGEffectTempJumptableIndex:: db
wBattleBGEffectTempTurn:: db
wBattleBGEffectTempParam:: db
2020-06-20 20:03:40 -07:00
NEXTU
wBattleAnimTempOAMFlags:: db
wBattleAnimTempFixY:: db
wBattleAnimTempTileID:: db
wBattleAnimTempXCoord:: db
wBattleAnimTempYCoord:: db
wBattleAnimTempXOffset:: db
wBattleAnimTempYOffset:: db
wBattleAnimTempFrameOAMFlags:: db
wBattleAnimTempPalette:: db
2020-11-09 12:05:14 -08:00
NEXTU
wBattleAnimGFXTempTileID::
wBattleAnimGFXTempPicHeight:: db
NEXTU
wBattleSineWaveTempProgress:: db
wBattleSineWaveTempOffset:: db
wBattleSineWaveTempAmplitude:: db
wBattleSineWaveTempTimer:: db
NEXTU
wBattlePicResizeTempBaseTileID:: db
wBattlePicResizeTempPointer:: dw
2020-06-20 20:03:40 -07:00
ENDU
2020-06-20 20:03:40 -07:00
UNION
2020-11-03 16:53:07 -08:00
ds 50
2015-11-09 13:41:09 -08:00
wBattleAnimEnd::
2020-06-20 20:03:40 -07:00
NEXTU
wSurfWaveBGEffect:: ds $40
wSurfWaveBGEffectEnd::
2020-06-20 20:03:40 -07:00
ENDU
2017-12-09 16:41:03 -08:00
SECTION "Scratch RAM", WRAMX
2015-02-10 15:14:41 -08:00
2020-06-20 20:03:40 -07:00
UNION
wScratchTilemap:: ds BG_MAP_WIDTH * BG_MAP_HEIGHT
wScratchAttrmap:: ds BG_MAP_WIDTH * BG_MAP_HEIGHT
2017-12-09 11:22:58 -08:00
2020-06-20 20:03:40 -07:00
NEXTU
2017-12-09 11:22:58 -08:00
wDecompressScratch:: ds $80 tiles
wDecompressEnemyFrontpic:: ds $80 tiles
2020-06-20 20:03:40 -07:00
NEXTU
; unidentified uses
w6_d000:: ds $1000
2020-06-20 20:03:40 -07:00
ENDU
2015-02-10 15:14:41 -08:00
SECTION "Stack RAM", WRAMX
2017-12-09 11:22:58 -08:00
2015-12-15 15:59:49 -08:00
wWindowStack:: ds $1000 - 1
wWindowStackBottom:: ds 1