diff options
author | dannye <corrnondacqb@yahoo.com> | 2016-08-08 14:22:18 -0500 |
---|---|---|
committer | dannye <corrnondacqb@yahoo.com> | 2016-08-08 14:22:18 -0500 |
commit | 33ea880aa4f408624b967d4ab811c477e6a76784 (patch) | |
tree | 4498627a74bec31397c076c92d5db70c2565a450 /engine/evos_moves.asm | |
parent | c7ce0a95184784f029779426611324ff84f2ef12 (diff) |
Adding Glaceon test
An example to show adding a second new Pokemon and a new evolution item in pokered
Diffstat (limited to 'engine/evos_moves.asm')
-rwxr-xr-x | engine/evos_moves.asm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engine/evos_moves.asm b/engine/evos_moves.asm index f50f8081..27526bd1 100755 --- a/engine/evos_moves.asm +++ b/engine/evos_moves.asm @@ -207,7 +207,11 @@ Evolution_PartyMonLoop: ; loop over party mons ld [wd11e], a xor a ld [wMonDataLocation], a + ld a, [wcf91] + push af call LearnMoveFromLevelUp + pop af + ld [wcf91], a pop hl predef SetPartyMonTypes ld a, [wIsInBattle] |