| 1543 | }; |
| 1544 | |
| 1545 | const char * |
| 1546 | currency(long amount) |
| 1547 | { |
| 1548 | const char *res; |
| 1549 | |
| 1550 | res = Hallucination ? ROLL_FROM(currencies) : "zorkmid"; |
| 1551 | if (amount != 1L) |
| 1552 | res = makeplural(res); |
| 1553 | return res; |
| 1554 | } |
| 1555 | |
| 1556 | struct obj * |
| 1557 | u_carried_gloves(void) |
no test coverage detected