# Service Evaluation

## **Realistic Criteria:** 0 to 100 pts

* Percentage of points won on the 1st serve ⇒ **+0 to 70 points**
* Percentage of points won on the 2nd serve ⇒ **+0 to 30 points**

## **Arcade Criteria:** -24 to 29 pts

* **+3 pts:** If the player hits more aces than their opponent
* **+2 pts:** Per ace (up to 12x, max 24 points)
* **-2 pts:** Per double fault (up to 12x, max -24 points)

```plaintext
Example

Realistic Criteria
- 75% points won on 1st serve ⇒ 75% * 70 = +52.5 points
- 60% points won on 2nd serve ⇒ 60% * 30 = +18 points

Arcade Criteria
- 3 aces ⇒ 3 * 2 = +6 points
- 2 double faults = 2 * (-2) = -4 points
- More aces than opponent = +3 points

Total = 52,5 + 18 + 6 + - 4 + 3 = 75.5
SERVICE SCORE = 75.5
```
