mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
Define RANDY_OT_ID
This commit is contained in:
parent
f6ecb681d5
commit
0ae5e9b398
@ -67,6 +67,7 @@ GiveShuckle:
|
||||
|
||||
SpecialShuckleOT:
|
||||
db "MANIA@"
|
||||
|
||||
SpecialShuckleNick:
|
||||
db "SHUCKIE@"
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
RANDY_OT_ID EQU 01001
|
||||
|
||||
TryAddMonToParty:
|
||||
; Check if to copy wild mon or generate a new one
|
||||
; Whose is it?
|
||||
@ -1724,9 +1726,9 @@ GivePoke::
|
||||
ld hl, wPartyMon1ID
|
||||
ld bc, PARTYMON_STRUCT_LENGTH
|
||||
call AddNTimes
|
||||
ld a, HIGH(01001)
|
||||
ld a, HIGH(RANDY_OT_ID)
|
||||
ld [hli], a
|
||||
ld [hl], LOW(01001)
|
||||
ld [hl], LOW(RANDY_OT_ID)
|
||||
pop bc
|
||||
farcall SetGiftPartyMonCaughtData
|
||||
jr .skip_nickname
|
||||
|
Loading…
Reference in New Issue
Block a user