diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-02 23:30:21 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-02 23:30:21 -0400 |
commit | f275790aec4a796ed969b099364abfdf25385967 (patch) | |
tree | c56edfd01a61e9aa0e3c3ee8a046e66b5a1984e4 /engine/debug/test_battle.asm | |
parent | 5559d51c863b6fb529ea0494d857950a36fe85b7 (diff) |
Add subdirectories to engine/ similar to pokecrystal
Diffstat (limited to 'engine/debug/test_battle.asm')
-rw-r--r-- | engine/debug/test_battle.asm | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/engine/debug/test_battle.asm b/engine/debug/test_battle.asm new file mode 100644 index 00000000..d9dcf1fa --- /dev/null +++ b/engine/debug/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 |