# Series (Sequence-style) — Quick Rules

**Goal**
- Make a sequence of **5 chips in a row** (horizontal / vertical / diagonal).
- In **2‑player** games you need **2 sequences** to win.
- In **3–4 player** games you need **1 sequence** to win.

**Setup**
- The board is a 10×10 grid.
- The **4 corners are free** (treated as already owned for making sequences).

**On your turn**
1) Choose a card from your hand.
2) Place a chip on a square that matches that card.

**Jacks**
- **Two‑eyed jacks (wild):** place a chip on *any empty* square.
- **One‑eyed jacks (remove):** remove an **opponent** chip from the board.
  - You can’t remove your own chip.
  - You can’t remove from a free corner.

**Notes**
- Practice supports **2–4 players** (extra seats are CPU for now).
- This is a “Sequence-style” ruleset with a **generated board mapping** (not the classic Sequence layout).

---

If you want the full spec (engine details + edge cases), see `docs/SERIES_RULES_SPEC.md` in the repo.
