summaryrefslogtreecommitdiff
path: root/engine/mail.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2018-02-03 18:21:53 -0500
committerRangi <remy.oukaour+rangi42@gmail.com>2018-02-03 19:42:56 -0500
commit32ed487a476e01759d3d9dbc818d8566ae2c9cb7 (patch)
tree669e90b56d36f17efff5f673235193f5298c0ceb /engine/mail.asm
parent6ff2cb20e67db2054486fc5dc48eb9263298d4ad (diff)
parentb35eb72290b964b98844afbe741bb7ede34b9ef3 (diff)
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
Diffstat (limited to 'engine/mail.asm')
-rwxr-xr-xengine/mail.asm50
1 files changed, 25 insertions, 25 deletions
diff --git a/engine/mail.asm b/engine/mail.asm
index b0da3580e..f03a64bd4 100755
--- a/engine/mail.asm
+++ b/engine/mail.asm
@@ -12,7 +12,7 @@ SendMailToPC: ; 4456e
call AddNTimes
ld d, h
ld e, l
- ld a, [CurPartyMon]
+ ld a, [wCurPartyMon]
ld bc, MAIL_STRUCT_LENGTH
ld hl, sPartyMail
call AddNTimes
@@ -92,7 +92,7 @@ MoveMailFromPCToParty: ; 44607
ld hl, sMailbox
call AddNTimes
push hl
- ld a, [CurPartyMon]
+ ld a, [wCurPartyMon]
ld bc, MAIL_STRUCT_LENGTH
ld hl, sPartyMail
call AddNTimes
@@ -106,8 +106,8 @@ MoveMailFromPCToParty: ; 44607
ld de, PARTYMON_STRUCT_LENGTH - MON_MOVES
add hl, de
ld d, [hl]
- ld a, [CurPartyMon]
- ld hl, PartyMon1Item
+ ld a, [wCurPartyMon]
+ ld hl, wPartyMon1Item
ld bc, PARTYMON_STRUCT_LENGTH
call AddNTimes
ld [hl], d
@@ -131,8 +131,8 @@ CheckPokeItem:: ; 44654
ld a, POKEMAIL_REFUSED
jr c, .pop_return
- ld a, [CurPartyMon]
- ld hl, PartyMon1Item
+ ld a, [wCurPartyMon]
+ ld hl, wPartyMon1Item
ld bc, PARTYMON_STRUCT_LENGTH
call AddNTimes
ld d, [hl]
@@ -142,7 +142,7 @@ CheckPokeItem:: ; 44654
ld a, BANK(sPartyMail)
call GetSRAMBank
- ld a, [CurPartyMon]
+ ld a, [wCurPartyMon]
ld hl, sPartyMail
ld bc, MAIL_STRUCT_LENGTH
call AddNTimes
@@ -189,17 +189,17 @@ CheckPokeItem:: ; 44654
pop bc
.return
- ld [ScriptVar], a
+ ld [wScriptVar], a
ret
; 446cc
GivePokeItem:: ; 446cc
- ld a, [PartyCount]
+ ld a, [wPartyCount]
dec a
push af
push bc
- ld hl, PartyMon1Item
+ ld hl, wPartyMon1Item
ld bc, PARTYMON_STRUCT_LENGTH
call AddNTimes
pop bc
@@ -219,13 +219,13 @@ GivePokeItem:: ; 446cc
call CopyBytes
pop af
push af
- ld hl, PartyMonOT
+ ld hl, wPartyMonOT
ld bc, NAME_LENGTH
call AddNTimes
ld bc, NAME_LENGTH - 1
call CopyBytes
pop af
- ld hl, PartyMon1ID
+ ld hl, wPartyMon1ID
ld bc, PARTYMON_STRUCT_LENGTH
call AddNTimes
ld a, [hli]
@@ -234,7 +234,7 @@ GivePokeItem:: ; 446cc
ld a, [hl]
ld [de], a
inc de
- ld a, [CurPartySpecies]
+ ld a, [wCurPartySpecies]
ld [de], a
inc de
pop bc
@@ -287,11 +287,11 @@ DeletePartyMonMail: ; 44765 (11:4765)
IsAnyMonHoldingMail: ; 44781
- ld a, [PartyCount]
+ ld a, [wPartyCount]
and a
jr z, .no_mons
ld e, a
- ld hl, PartyMon1Item
+ ld hl, wPartyMon1Item
.loop
ld d, [hl]
push hl
@@ -362,7 +362,7 @@ MailboxPC_GetMailAuthor: ; 0x447da
call AddNTimes
ld a, BANK(sMailboxCount)
call GetSRAMBank
- ld de, StringBuffer2
+ ld de, wStringBuffer2
push de
ld bc, NAME_LENGTH - 1
call CopyBytes
@@ -375,7 +375,7 @@ MailboxPC_GetMailAuthor: ; 0x447da
MailboxPC_PrintMailAuthor: ; 0x447fb
push de
- ld a, [MenuSelection]
+ ld a, [wMenuSelection]
call MailboxPC_GetMailAuthor
pop hl
jp PlaceString
@@ -439,7 +439,7 @@ MailboxPC: ; 0x44806
.ReadMail: ; 0x44869
call FadeToMenu
- ld a, [MenuSelection]
+ ld a, [wMenuSelection]
dec a
ld b, a
call ReadMailMessage
@@ -452,19 +452,19 @@ MailboxPC: ; 0x44806
call YesNoBox
call ExitMenu
ret c
- ld a, [MenuSelection]
+ ld a, [wMenuSelection]
dec a
call .GetMailType
ld a, 1
ld [wItemQuantityChangeBuffer], a
- ld hl, NumItems
+ ld hl, wNumItems
call ReceiveItem
jr c, .put_in_bag
ld hl, .PackFullText
jp MenuTextBoxBackup
.put_in_bag
- ld a, [MenuSelection]
+ ld a, [wMenuSelection]
dec a
ld b, a
call DeleteMailFromPC
@@ -493,14 +493,14 @@ MailboxPC: ; 0x44806
ld bc, MAIL_STRUCT_LENGTH
call AddNTimes
ld a, [hl]
- ld [CurItem], a
+ ld [wCurItem], a
jp CloseSRAM
; 0x448d2
.AttachMail: ; 0x448d2
call FadeToMenu
xor a
- ld [PartyMenuActionText], a
+ ld [wPartyMenuActionText], a
call ClearBGPalettes
.try_again
farcall LoadPartyMenuGFX
@@ -513,7 +513,7 @@ MailboxPC: ; 0x44806
call DelayFrame
farcall PartyMenuSelect
jr c, .exit2
- ld a, [CurPartySpecies]
+ ld a, [wCurPartySpecies]
cp EGG
jr z, .egg
ld a, MON_ITEM
@@ -531,7 +531,7 @@ MailboxPC: ; 0x44806
jr .try_again
.attach_mail
- ld a, [MenuSelection]
+ ld a, [wMenuSelection]
dec a
ld b, a
call MoveMailFromPCToParty