9-hole Golf
My family enjoys playing the card game 9-hole Golf because it's an easy, low-key game that winds up being a lot of fun.
In February of 2024 I got COVID and manically coded an online version of the game while quarantining from my wife. It's live at golf.kimmerman.com.
How to Play
The objective of the game is to get the lowest cumulative score over the course of 9 independent holes.
Requirements
- 2-4 players
-
1 deck of playing cards
- 52 cards, no jokers
-
10-60 minutes
- 2-player, online games can be completed in 10 minutes
- 4-player, "analog" games with a physical deck take an hour or more
Setup
Choose one player to deal the first hole (the dealer changes to the next player with each hole) and one player to keep score (unless you're playing online, where scorekeeping is automated!).
Gameplay
Gameplay on a hole begins by the dealer shuffling the deck and dealing 6 cards to each player. Then, the dealer places the remaining deck in the middle of the table, face down. Finally, the dealer draws the top card from the deck and places it face up next to the deck, which forms the discard pile.
Each player then organizes their cards into a 3x2 grid:
On their first turn (or anytime before), a player must begin by flipping over any 2 of their cards. For example:
Then, they can either draw a card from the deck or take the card from the discard pile. They can then swap this card with any of their cards (either face up or facedown), in which case the card from their hand is put face up on the discard pile. Or, if they had drawn a card from the deck, they can simply discard it without swapping with anything in their hand.
Simple enough, but how do you decide what to do? Your objective is to get the lowest cumulative score over the course of the 9 holes, and you do so by matching cards in each column. When two cards in a column match, they cancel out and the score for that column is 0. Otherwise, the values of the cards are added together.
For example, here the middle column has a score of 0 (the two 6s cancel out), whereas the rightmost column has a score of 13 (4 + 9).
Cards have the following values:
- A = 1
- 2 = -2
- 3 through 10 = their numeric value
- J = 10
- Q = 10
- K = 0
This hand would have a score of 2: 0 for the first column (the -2s cancel out) plus 4 for the second column (1 + 3) plus -2 for the third column (0 + -2):
Gameplay continues until one person has no more face down cards. That is called going out. After this, the other players have one more turn. If they still have face down cards after their turn, they must be flipped over so that the hole can be scored.
There are a few more rules that make this game very interesting.
Firstly, if a player goes out but then someone beats their score (i.e. they get a lower score), then the player who went out gets a +10 point penalty. When this happens, we say that the player went out and got busted.
Secondly, if any player has four of the same card, no matter where they are arranged in their hand, all other players get a +10 point penalty. This is called getting a four of a kind. Any number of players can get a four of a kind in a given hole.
Finally, if the players go through the entire deck, then the dealer shuffles the discard pile to replace the deck, while preserving the top card of the discard pile. After this happens, any player can choose to go out on their turn by flipping over their last face down card instead of by drawing a card or taking a card from the discard pile.
When the hole is over, everyone's scores are calculated, penalties are added on, and they are written on the scorecard. Each player's current score is their cumulative score for the completed holes.
Gameplay continues in this fashion, with dealing passing clockwise, until 9 holes have been played.
The winner is whoever has the lowest score at the end of 9 holes!
List of Rules
- Turn Order — Players take turns in a clockwise fashion.
- Dealing — Each hole, the person after the previous dealer (clockwise) becomes the new dealer.
- Flipping Face Down Cards — Face down cards can only be flipped in the following scenarios:
- The player has not made their first turn (in which case they must flip over any two of their face down cards)
- The deck has been exhausted and reshuffled, and the player whose turn it is only has one face down card
- The player has taken their last turn and they still have face down cards
- Going Out — When a player flips over their last face down card, then they have gone out and the remaining players get one more turn.
- Penalty: Went Out Got Busted — If a player goes out and another player gets a lower score, the player that went out gets a +10 point penalty. If another player ties their score, no penalty is levied.
- Penalty: Four of a Kind — If a player has four of a card, in any arrangement, then all other players receive a +10 point penalty.
History
I started playing this game with my grandma back around 2013. We used to play with 2 decks, but with the jokers from 4 decks. In this format, 2s were worth 2, jokers were worth -2, and everything else was the same. This was fun, but more chance-based and not as competitive because keeping track of cards that had appeared wasn't as effective a strategy.
In the early 2020s we started playing with our close friends Leo and Alyson after learning that they played with their friends and family. But there were several differences in their gameplay: they only played with one deck, there was no penalty for going out and getting beaten, and when one person went out the hole ended and everyone had to flip over their unflipped cards. We combined rules, and at some point included the rule that having a four of a kind meant everyone else gets a 10 point penalty.
On 2024-07-02 we added the rule that allows someone to flip over their last card to go out, but only if the deck has been exhausted and reshuffled.
Implementation Details
The visuals of the Online Golf Game is made using HTML and CSS, and interactivity is added usin Javascript. The code on both the browser and server is written in Typescript, and both environments share types and functions. The browser code is bundled using Webpack. The game uses WebSockets for real-time communication. Its only dependences are WebSockets and Express.