Home | History | Annotate | Download | only in larn

Lines Matching refs:gold

72  * dropgold(amount) 	Function to drop some gold around player
1206 amt = monster[monst].gold;
1328 * dropgold(amount) Function to drop some gold around player
1331 * Enter with the number of gold pieces to drop
1490 * 8 leprechaun steal gold
1604 if (c[GOLD]) {
1606 if (c[GOLD] > 32767)
1607 c[GOLD] >>= 1;
1609 c[GOLD] -= rnd((int) (1 + (c[GOLD] >> 1)));
1610 if (c[GOLD] < 0)
1611 c[GOLD] = 0;
1613 p = "\nThe %s couldn't find any gold to steal";