mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-11-11 07:44:47 +13:00
Function that copies the attack data to memory.
hg-commit-id: d2b2f3874e47
This commit is contained in:
parent
74b45506df
commit
6dae2db72a
19
pokered.asm
19
pokered.asm
|
|
@ -3239,7 +3239,24 @@ db SUBSTITUTE ,$4F,$00,NORMAL,$FF,10
|
|||
db STRUGGLE ,$30,$32,NORMAL,$FF,10
|
||||
; trainer data: from 5C53 to 652E
|
||||
|
||||
INCBIN "baserom.gbc",$383DE,$39C53 - $383DE
|
||||
INCBIN "baserom.gbc",$383DE,$39884 - $383DE
|
||||
|
||||
ReadAttack: ; 5884
|
||||
push hl
|
||||
push de
|
||||
push bc
|
||||
dec a
|
||||
ld hl,Attacks
|
||||
ld bc,6
|
||||
call AddNTimes
|
||||
ld de,$CFCC
|
||||
call CopyData
|
||||
pop bc
|
||||
pop de
|
||||
pop hl
|
||||
ret
|
||||
|
||||
INCBIN "baserom.gbc",$3989B,$39C53 - $3989B
|
||||
ReadTrainer: ; 5C53
|
||||
|
||||
; don't change any moves in a link battle
|
||||
|
|
|
|||
Loading…
Reference in a new issue