diff options
-rw-r--r-- | Physical-Special-split.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Physical-Special-split.md b/Physical-Special-split.md index 6ee4747..3410b98 100644 --- a/Physical-Special-split.md +++ b/Physical-Special-split.md @@ -441,6 +441,18 @@ Edit [engine/pokemon/mon_menu.asm](../blob/master/engine/pokemon/mon_menu.asm) ( + db "│ └@" ``` +```diff +.moving_move + ld a, " " + hlcoord 1, 11 +- ld bc, 5 ++ ld bc, 8 + call ByteFill + hlcoord 1, 12 + lb bc, 5, SCREEN_WIDTH - 2 + call ClearBox +``` + Again, instead of printing "TYPE/" in the move property box, we print the move's category. There's no room for the "/" after the category, so here it goes before the type. Now we're done! |