HomeSort by: relevance | last modified time | path
    Searched defs:chance (Results 1 - 3 of 3) sorted by relevancy

  /src/games/monop/
spec.c 109 * draw chance card
112 chance(void) function in typeref:typename:void
  /src/games/backgammon/backgammon/
move.c 64 static int ch; /* chance of being hit */
68 static int frc; /* chance to free comp's men */
69 static int frp; /* chance to free pl's men */
72 static int chance; /* chance of being hit */ variable in typeref:typename:int
79 static int oldfrc; /* chance to free comp's men */
80 static int oldfrp; /* chance to free pl's men */
474 chance = ch;
531 if (abs(chance - ch) + 25 * n > rnum(150))
532 return (n ? (n < 0) : (ch < chance));
    [all...]
  /src/games/wump/
wump.c 408 int chance, next, roomcnt; local in function:shoot
470 chance = random() % 10;
471 if (roomcnt == 3 && chance < 2) {
476 } else if (roomcnt == 4 && chance < 6) {

Completed in 34 milliseconds