diff options
author | libjet <libj3t@gmail.com> | 2020-02-18 16:37:51 +0000 |
---|---|---|
committer | libjet <libj3t@gmail.com> | 2020-02-18 16:37:51 +0000 |
commit | 76b10c0a49ee07470a326804588217b1c7b9b59b (patch) | |
tree | fe2ca6a78b39d24b85cb8762f360a00d7a79aca2 /constants | |
parent | 0a998a5dde8c419eca48a3b2519209f1b3b80733 (diff) |
Add copy_name.asm
Diffstat (limited to 'constants')
-rw-r--r-- | constants/wram_constants.asm | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/constants/wram_constants.asm b/constants/wram_constants.asm index 656d2ef5..77fd516b 100644 --- a/constants/wram_constants.asm +++ b/constants/wram_constants.asm @@ -1,12 +1,18 @@ ; InputType: ; c2c7 AUTO_INPUT EQU $ff -; MonType: ; cf5f -PARTYMON EQU 0 -OTPARTYMON EQU 1 -BOXMON EQU 2 -TEMPMON EQU 3 -WILDMON EQU 4 +; wDebugFlags:: ; c2cc + const_def + const DEBUG_BATTLE_F + const DEBUG_FIELD_F + +; wMonType:: ; cf5f + const_def + const PARTYMON ; 0 + const OTPARTYMON ; 1 + const BOXMON ; 2 + const TEMPMON ; 3 + const WILDMON ; 4 ; wOptions: ; cfcc FAST_TEXT EQU 0 |