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, substack

Recent posts on blogs I like:

Ozy and Vasili Review Lilo and Stitch

Sometimes my seven-year-old, Vasili, wants to see some godawful movie that makes me want to melt my eyeballs out of my head.

via Thing of Things June 27, 2025

Elixir's Last Dance

On May 18th, the contra dance band Elixir had their last gig ever. The dance was packed: there were three hundred people. It was the only dance BIDA has ever done where they sold tickets. People flew from across the country just to hear Elixir play one la…

via Lily Wise's Blog Posts June 5, 2025

Workshop House case study

Lauren Hoffman interviewed me about Workshop House and wrote this post about a community I’m working on building in DC.

via Home April 30, 2025

more     (via openring)