When the game involves scores (not just win/lose), use minimax: I find the largest my score, you find the largest yours. Since your gain is my loss, you reducing my outcome is the same as you finding the largest yours. The trick: track the score difference. Let = best (my score opponent's score) from this state.
When I move, I pick the max. When opponent moves, they pick the min (which flips signs). Result: means I win, means I lose, means tie.