git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4128 c06c8d41-db1a-0410-9941-cceddc491573
7NO6F3QTNUCRN4ZXR3JB2PKQWVBWYSH6SDJDHKMSFKKUZSYWOFTQC // lose some cards, but keep at least twoif ( cards_in_deck(deck) > 2 ){const int num_lost = std::min(cards_in_deck(deck)-2, random2(2) + 1);for ( int i = 0; i < num_lost; ++i )_deck_lose_card(deck);if ( num_lost == 1 )mpr("A card falls out of the deck.");else if ( num_lost > 1 )mpr("Some cards fall out of the deck.");}