_GivePokemon:: ; returns success in carry ; and whether the mon was added to the party in [wAddedToParty] call EnableAutoTextBoxDrawing xor a ld [wAddedToParty], a ld a, [wPartyCount] cp PARTY_LENGTH jr c, .addToParty ld a, [wBoxCount] cp MONS_PER_BOX jr nc, .boxFull ; add to box xor a ld [wEnemyBattleStatus3], a ld a, [wCurPartySpecies] ld [wEnemyMonSpecies2], a callfar LoadEnemyMonData call SetPokedexOwnedFlag callfar SendNewMonToBox ld hl, wStringBuffer ld a, [wCurrentBoxNum] and BOX_NUM_MASK cp 9 jr c, .singleDigitBoxNum sub 9 ld [hl], '1' inc hl add '0' jr .next .singleDigitBoxNum add '1' .next ld [hli], a ld [hl], '@' ld hl, SentToBoxText call PrintText scf ret .boxFull ld hl, BoxIsFullText call PrintText and a ret .addToParty call SetPokedexOwnedFlag ld hl, UnknownTerminator_f6794 call PrintText call AddPartyMon ld a, 1 ld [wDoNotWaitForButtonPressAfterDisplayingText], a ld [wAddedToParty], a scf ret SetPokedexOwnedFlag: ld a, [wCurPartySpecies] push af ld [wPokedexNum], a predef IndexToPokedex ld a, [wPokedexNum] dec a ld c, a ld hl, wPokedexOwned ld b, FLAG_SET predef FlagActionPredef pop af ld [wNamedObjectIndex], a call GetMonName ld hl, GotMonText jp PrintText UnknownTerminator_f6794: text_end GotMonText: text_far _GotMonText sound_get_item_1 text_end SentToBoxText: text_far _SentToBoxText text_end BoxIsFullText: text_far _BoxIsFullText text_end