mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-09-17 02:40:50 +12:00
IshiharaTeam
This commit is contained in:
parent
6b37623b1d
commit
2ed422c696
26
main.asm
26
main.asm
|
@ -15104,9 +15104,18 @@ Map0fFlyWarp: ; 64be (1:64be)
|
||||||
Map15FlyWarp: ; 64c4 (1:64c4)
|
Map15FlyWarp: ; 64c4 (1:64c4)
|
||||||
FLYWARP_DATA 10,20,11
|
FLYWARP_DATA 10,20,11
|
||||||
|
|
||||||
Func_64ca: ; 64ca (1:64ca)
|
; This function appears to never be used.
|
||||||
ld de, Unknown_64df
|
; It is likely a debugging feature to give the player Tsunekazu Ishihara's
|
||||||
.asm_64cd
|
; favorite Pokemon. This is indicated by the overpowered Exeggutor, which
|
||||||
|
; Ishihara (president of Creatures Inc.) said was his favorite Pokemon in an ABC
|
||||||
|
; interview on February 8, 2000.
|
||||||
|
; "Exeggutor is my favorite. That's because I was always using this character
|
||||||
|
; while I was debugging the program."
|
||||||
|
; http://www.ign.com/articles/2000/02/09/abc-news-pokamon-chat-transcript
|
||||||
|
|
||||||
|
SetIshiharaTeam: ; 64ca (1:64ca)
|
||||||
|
ld de, IshiharaTeam
|
||||||
|
.loop
|
||||||
ld a, [de]
|
ld a, [de]
|
||||||
cp $ff
|
cp $ff
|
||||||
ret z
|
ret z
|
||||||
|
@ -15116,10 +15125,15 @@ Func_64ca: ; 64ca (1:64ca)
|
||||||
ld [W_CURENEMYLVL], a
|
ld [W_CURENEMYLVL], a
|
||||||
inc de
|
inc de
|
||||||
call AddPokemonToParty
|
call AddPokemonToParty
|
||||||
jr .asm_64cd
|
jr .loop
|
||||||
|
|
||||||
Unknown_64df: ; 64df (1:64df)
|
IshiharaTeam: ; 64df (1:64df)
|
||||||
INCBIN "baserom.gbc",$64df,$64ea - $64df
|
db EXEGGUTOR,90
|
||||||
|
db MEW,20
|
||||||
|
db JOLTEON,56
|
||||||
|
db DUGTRIO,56
|
||||||
|
db ARTICUNO,57
|
||||||
|
db $FF
|
||||||
|
|
||||||
Func_64ea: ; 64ea (1:64ea)
|
Func_64ea: ; 64ea (1:64ea)
|
||||||
ret
|
ret
|
||||||
|
|
Loading…
Reference in a new issue