diff options
author | YamaArashi <shadow962@live.com> | 2016-09-17 17:37:32 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-09-17 17:37:32 -0700 |
commit | 6f1ac06e03cd046f61fb2370ff7379a29932bbb1 (patch) | |
tree | e67b9ff28af5ade3175a7df976b459cfb0d5d5ac /engine/test_battle.asm | |
parent | 46a94c63fc287e7290502776d02648476bc44171 (diff) |
pull some bank 1 code out of main.asm
Diffstat (limited to 'engine/test_battle.asm')
-rw-r--r-- | engine/test_battle.asm | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/engine/test_battle.asm b/engine/test_battle.asm new file mode 100644 index 00000000..d9dcf1fa --- /dev/null +++ b/engine/test_battle.asm @@ -0,0 +1,45 @@ +TestBattle: + ret + +.loop + call GBPalNormal + + ; Don't mess around + ; with obedience. + ld a, %10000000 ; EARTHBADGE + ld [wObtainedBadges], a + + ld hl, wFlags_D733 + set BIT_TEST_BATTLE, [hl] + + ; Reset the party. + ld hl, wPartyCount + xor a + ld [hli], a + dec a + ld [hl], a + + ; Give the player a + ; level 20 Rhydon. + ld a, RHYDON + ld [wcf91], a + ld a, 20 + ld [wCurEnemyLVL], a + xor a + ld [wMonDataLocation], a + ld [wCurMap], a + call AddPartyMon + + ; Fight against a + ; level 20 Rhydon. + ld a, RHYDON + ld [wCurOpponent], a + + predef InitOpponent + + ; When the battle ends, + ; do it all again. + ld a, 1 + ld [wUpdateSpritesEnabled], a + ld [H_AUTOBGTRANSFERENABLED], a + jr .loop |