Hanabi

May 11th, 2015
games, tech
At LEAF [1] I learned a new cooperative card game, Hanabi. In general, I don't like cooperative games (like Pandemic) because they tend to turn into the one or two best players telling everyone else what to do for the whole game. Hanabi solves this by restricting information, so each player has their own part of the puzzle, and everyone has to think for themself.

Each player has a hand of cards that faces outward, so everyone can see their hand but them. There's a restricted language for communicating with each other: you can tell someone which of their cards are of a given suit, or which cards are of a given rank. Like "this, this, and this are 3s". From this people figure out which of their cards to play, and the goal is to get 25 points by playing one of each of the cards. According to the person who taught me people rarely win outright, and instead generally you just try to get the highest score you can.

When we played we used the game language as it was intended, without any conventions, but it got me wondering what a professional team would do. How far in the direction of Bridge bidding would it go? For example, you could say "your 2s are ..." to mean "play the second card in your hand". The main complication is that you aren't allowed to say "you don't have any 2s"; if they don't have any of something you can't bring it up. Still, because we can use both color and number to tell them about cards this seems like it could go a long way.

I coded up a simple simulation of a two player game where the convention is basically:

  • If you've been told what to do, do that.
  • If your partner has a card they could play, map position in their hand to suit/number and tell them that if it's allowed. When you have multiple options pick the one that best maintains diversity.
  • Otherwise, discard the card you've had longest.
I ran 10k games and this averaged 19.6:

This isn't a great score, but there's lots of room to improve this convention:

  • You could reserve some values for telling your partner what to discard.
  • You could change the meaning of sayings as the game goes on, because earlier in the game there are more legal cards to play.
  • You could use multiple turns to tell someone what to do; the average game in my simulation ended with 25.7 extra information tokens, which is kind of ridiculous. [2]
The code is on github; if anyone has convention ideas that are easy


[1] I hadn't been for 8.5 years, which is rather a lot.

[2]

Comment via: google plus, facebook

Recent posts on blogs I like:

Book Review: The Myth of Sex Addiction

I. David Ley’s The Myth of Sex Addiction is a stupid, wrong book saved only by the fact that the people it’s arguing with are stupider and wronger. II. “Sex addiction” is a proposed mental health condition, not recognized by the DSM or the ICD, where a pe…

via Thing of Things March 7, 2024

Your wedding doesn’t have to be that great

Your future happiness does not depend on how gorgeous this one day is. The post Your wedding doesn’t have to be that great appeared first on Otherwise.

via Otherwise March 4, 2024

When Nurses Lie to You

When the nurse comes to give you the flu shot, they say it won't hurt at all, right? And you trust them. Then they give you the shot, and it hurts! They lied to you. A lot of nurses lie to children about shots and blood draws. Part of it is they probabl…

via Lily Wise's Blog Posts February 28, 2024

more     (via openring)