text_constants.asm 357 B

123456789101112131415
  1. ; special text IDs
  2. TEXT_MON_FAINTED EQU $d0
  3. TEXT_BLACKED_OUT EQU $d1
  4. TEXT_REPEL_WORE_OFF EQU $d2
  5. TEXT_SAFARI_GAME_OVER EQU $d3
  6. ; PrintNumber
  7. BIT_MONEY_SIGN EQU 5
  8. BIT_LEFT_ALIGN EQU 6
  9. BIT_LEADING_ZEROES EQU 7
  10. MONEY_SIGN EQU (1 << BIT_MONEY_SIGN)
  11. LEFT_ALIGN EQU (1 << BIT_LEFT_ALIGN)
  12. LEADING_ZEROES EQU (1 << BIT_LEADING_ZEROES)