Prev: 70b6 Up: Map Next: 70c2
70ba: Gets the remaining lives for player 2.
Used for displaying the player lives in the status bar.
Output
A Is the number of lives remaining
70ba ld a,($5dd1) Current player number
70bd and a
70be jr z,$70b6 If not current player, use inactive player
70c0 jr $70b2 else get current player lives
Prev: 70b6 Up: Map Next: 70c2