diff options
author | YamaArashi <shadow962@live.com> | 2015-10-12 16:14:45 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2015-10-12 16:14:45 -0700 |
commit | bfae72bf1debc2b570d1ec221ae07fddb0016a70 (patch) | |
tree | 42b155d79be7e282678ac76867ddff0dbc237826 /asm/macros.s | |
parent | 54183f2d079a9c52df2ae4396e04b3ac9dadb499 (diff) |
level up learnsets
Diffstat (limited to 'asm/macros.s')
-rw-r--r-- | asm/macros.s | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/asm/macros.s b/asm/macros.s index f2ef81a4f..807245d73 100644 --- a/asm/macros.s +++ b/asm/macros.s @@ -89,3 +89,7 @@ .macro ev_yield hp, attack, defense, speed, sp_attack, sp_defense .2byte (\sp_defense << 10) | (\sp_attack << 8) | (\speed << 6) | (\defense << 4) | (\attack << 2) | \hp .endm + + .macro level_up_move level, move + .2byte (\level << 9) | \move + .endm |