Symbol: makemon
games/hack/extern.h
215
struct monst *makemon(const struct permonst *, int, int);
games/hack/hack.bones.c
112
if (!(mtmp = makemon(PM_GHOST, u.ux, u.uy)))
games/hack/hack.dog.c
88
struct monst *mtmp = makemon(&li_dog, u.ux, u.uy);
games/hack/hack.main.c
378
(void) makemon((struct permonst *) 0, 0, 0);
games/hack/hack.makemon.c
177
(void) makemon(ptr, mm.x, mm.y);
games/hack/hack.makemon.c
274
return (makemon(ptr, x, y));
games/hack/hack.mhitu.c
142
(void) makemon(PM_DEMON, u.ux, u.uy);
games/hack/hack.mklev.c
170
makemon((struct permonst *) 0, somex(), somey());
games/hack/hack.mklev.c
828
if ((mtmp = makemon(PM_MIMIC, mx, my)) != NULL) {
games/hack/hack.mkmaze.c
106
if ((mtmp = makemon(&hell_hound, zx, zy)) != NULL)
games/hack/hack.mkmaze.c
108
if ((mtmp = makemon(PM_WIZARD, zx + 1, zy)) != NULL) {
games/hack/hack.mkmaze.c
142
(void) makemon(PM_MINOTAUR, mm.x, mm.y);
games/hack/hack.mkmaze.c
145
(void) makemon((struct permonst *) 0, mm.x, mm.y);
games/hack/hack.mkshop.c
187
if (!(shk = makemon(PM_SHK, sx, sy)))
games/hack/hack.mkshop.c
212
(mtmp = makemon(PM_MIMIC, sx, sy))) {
games/hack/hack.mkshop.c
255
mon = makemon(
games/hack/hack.mkshop.c
320
(void) makemon(PM_EEL, sx, sy);
games/hack/hack.potion.c
455
if (!(mtmp = makemon(PM_GHOST, u.ux, u.uy))) {
games/hack/hack.read.c
222
(void) makemon(confused ? PM_ACID_BLOB :
games/hack/hack.search.c
100
(void) makemon(PM_PIERCER, zx, zy);
games/hack/hack.search.c
164
(void) makemon(PM_PIERCER, x, y);
games/hack/hack.trap.c
134
if (makemon(PM_PIERCER, u.ux, u.uy)) {
games/hack/hack.unix.c
424
if (md = makemon(&pm_mail_daemon, u.ux, u.uy)) /* always succeeds */
games/hack/hack.vault.c
223
if (!(guard = makemon(&pm_guard, x, y)))
games/hack/hack.wizard.c
218
(void) makemon((struct permonst *) 0, u.ux, u.uy);
games/hack/hack.wizard.c
276
if ((mtmp2 = makemon(PM_WIZARD, mtmp->mx, mtmp->my)) != NULL) {
games/hack/hack.zap.c
244
(void) makemon((struct permonst *) 0, u.ux, u.uy);