Science · Code · Curiosity
Gloomhaven stamina
Introduction
Gloomhaven is a popular, co-operative dungeon crawler board game in which you play as a group of mercenaries living in the town of Gloomhaven, fighting monsters for money and glory. One mechanic that made the game so popular is its combat system, where your hand of cards represents your stamina. Over the course of the game you lose cards, reducing the actions you can take, until eventually you don’t have enough cards and your character is exhausted. In order to succeed in Gloomhaven, you need to know how to manage your cards. This article will explore how the number of cards you currently have determines the number of turns you have left.
For the impatient, I’ve written a simple trick below, showing how to calculate the number of turns you have left before you exhaust. For the interested, I’ve written the rest of this article explaining how I figured out the trick and going into a lot more detail.
Combat
I’ll briefly explain the combat rules in Gloomhaven and some terminology. If you’re already familiar with the rules you can skip to the ‘Some questions’ section.
Players start the game with a hand of cards that determine the actions their character can take during a turn. The exact number of cards a player has depends on their character, but it is normally between 8 and 12.
The game consists of a number of rounds. At the start of each round, players pick two cards from their hand to play. During each round, each player (and any enemies) take a turn, in which they will take some actions like moving or attacking. At the end of a player’s turn, the two cards they picked are either discarded or lost (they can also remain active, but we’ll ignore that for now).
When a player has less than two cards in their hand, they will be unable to pick two for that round, so must rest. Players can either short rest or long rest, but for our purposes the result is essentially the same. To rest, one card from the discard pile is put in the lost pile and the rest of the discarded cards are returned to the player’s hand. If the player still has less than two cards in their hand, they are exhausted and out of the game.
Some questions
- Given a hand of n cards, what’s the maximum number of turns a player can have before becoming exhausted?
- How many turns will a player lose if they make an action that loses a card?
- Is it better to lose cards early or late in the game?
- Players can rest even if they have two or more cards in their hand - how does this affect the number of turns they have.
How many turns do I get?
Let’s assume a player starts with a hand of ten cards, and every turn they discard two cards (rather than lose any). After five turns their hand will be empty and they must rest. In resting, they lose one of their discarded cards and return the remaining nine to their hand. Now they can take another four turns before their hand contains just one card and they must rest again. So they lose another card and get a hand of eight.
[Graph of cards in hand, discarded, or lost over time]
The table below shows the number of cards in a player’s hand and the number of turns before they must rest. I’ve included hands of one and zero cards for completeness.
| Cards in hand | Turns before resting |
|---|---|
| 10 | 5 |
| 9 | 4 |
| 8 | 4 |
| 7 | 3 |
| 6 | 3 |
| 5 | 2 |
| 4 | 2 |
| 3 | 1 |
| 2 | 1 |
| 1 | 0 |
| 0 | 0 |
To find the total number of turns a player has before becoming exhausted when starting with 10 cards we sum all the turns in this table, which equals 25. More generally, when a player has n cards, the number of turns they have is the sum of all the rows for n cards and below.
Leave a comment
Comments are moderated and will appear after approval.