| 1539 | } |
| 1540 | |
| 1541 | int |
| 1542 | mbirth_limit(int mndx) |
| 1543 | { |
| 1544 | /* There is an implicit limit of 4 for "high priest of <deity>", |
| 1545 | * but aligned priests can grow into high priests, thus they aren't |
| 1546 | * really limited to 4, so leave the default amount in place for them. |
| 1547 | */ |
| 1548 | |
| 1549 | /* assert(MAXMONNO < 255); */ |
| 1550 | return (mndx == PM_NAZGUL ? 9 : mndx == PM_ERINYS ? 3 : MAXMONNO); |
| 1551 | } |
| 1552 | |
| 1553 | /* used for wand/scroll/spell of create monster */ |
| 1554 | /* returns TRUE iff you know monsters have been created */ |
no outgoing calls
no test coverage detected