diff options
author | pikalaxalt <PikalaxALT@gmail.com> | 2016-06-24 19:49:55 -0400 |
---|---|---|
committer | pikalaxalt <PikalaxALT@gmail.com> | 2016-06-24 19:49:55 -0400 |
commit | dcda0bae06ec186eb29dc7a4332962864c69cc4d (patch) | |
tree | 8f9e4fe26c0b4b0769becd7a45c56218b1b443f5 /wram.asm | |
parent | 2d117385b1f021729ba03cb6f44c1ef470b34f65 (diff) |
engine/pack.asm
Diffstat (limited to 'wram.asm')
-rw-r--r-- | wram.asm | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -3869,6 +3869,24 @@ wOTPartyCount:: ds 1 ; dd55 wOTPartySpecies:: ds PARTY_LENGTH ; dd56 wOTPartySpeciesEnd:: ds 1 ; dd5c +; The tutorial pack uses the OT party space. +; It's placed here rather than at wOTPartyCount +; to avoid confusing the game. +wDudePack:: +wDudeNumItems:: ds 1 ; dd5d +wDudeItems:: ds 2 * 4 ; dd5e +wDudeItemsEnd:: ds 1 ; dd66 + +wDudeNumKeyItems:: ds 1 ; dd67 +wDudeKeyItems:: ds 18 ; dd68 +wDudeKeyItemsEnd:: ds 1 ; dd7a + +wDudeNumBalls:: ds 1 ; dd7b +wDudeBalls:: ds 2 * 4 ; dd7c +wDudeBallsEnd:: ds 1 ; dd84 +wDudePackEnd:: + ds wDudePack - @ + wOTPartyMons:: wOTPartyMon1:: party_struct wOTPartyMon1 ; dd5d wOTPartyMon2:: party_struct wOTPartyMon2 ; dd8d |