import random
# Boxing punches: 1–6
PUNCHES = [1, 2, 3, 4, 5, 6]
def combo_easy():
"""
Easy mode:
- 1 to 3 punches
- Slower, simple combos
"""
length = random.randint(1, 3)
return [random.choice(PUNCHES) for _ in range(length)]
def combo_mid():
"""
Mid...