ftp.nice.ch/pub/next/games/card/NEXTVegas3.0.src.tar.gz#/NEXTVegas/VideoPoker/prop.h

This is prop.h in view mode; [Download] [Up]

/*
struct proposition
{
	int		type;
	char 	*name;
	char	*description;
	int		payoff;
};
*/

static struct proposition prop[] = {
{CS_JACKSORBETTER, "Jacks or Better", "Any pair of Jacks, Queens, Kings, or Aces", 1},
{CS_TWOPAIR, "Two Pairs", "Two pairs of equal value cards", 2},
{CS_THREEOFKIND, "Three of a Kind", "Any three cards of equal value", 3},
{CS_STRAIGHT, "Straight", "Any five cards in consecutive order, not of the same suit", 4},
{CS_FLUSH, "Flush", "Any five cards of the same suit", 6},
{CS_FULLHOUSE, "Full House", "Five cards that include a pair and a three of a kind", 9},
{CS_FOUROFKIND, "Four of a Kind", "Four cards of the same value", 25},
{CS_STRAIGHTFLUSH, "Straight Flush", "Five cards in consecutive order and of the same suit", 50},
{CS_ROYALFLUSH, "Royal Flush", "Only the 10, Jack, Queen, and King of the same suit", 250}
};

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.