Symbol: makemon
games/hack/extern.h
215
struct monst *makemon(const struct permonst *, int, int);
games/hack/hack.bones.c
107
if (!(mtmp = makemon(PM_GHOST, u.ux, u.uy)))
games/hack/hack.dog.c
83
struct monst *mtmp = makemon(&li_dog, u.ux, u.uy);
games/hack/hack.main.c
373
(void) makemon((struct permonst *) 0, 0, 0);
games/hack/hack.makemon.c
172
(void) makemon(ptr, mm.x, mm.y);
games/hack/hack.makemon.c
269
return (makemon(ptr, x, y));
games/hack/hack.mhitu.c
137
(void) makemon(PM_DEMON, u.ux, u.uy);
games/hack/hack.mklev.c
165
makemon((struct permonst *) 0, somex(), somey());
games/hack/hack.mklev.c
823
if ((mtmp = makemon(PM_MIMIC, mx, my)) != NULL) {
games/hack/hack.mkmaze.c
101
if ((mtmp = makemon(&hell_hound, zx, zy)) != NULL)
games/hack/hack.mkmaze.c
103
if ((mtmp = makemon(PM_WIZARD, zx + 1, zy)) != NULL) {
games/hack/hack.mkmaze.c
137
(void) makemon(PM_MINOTAUR, mm.x, mm.y);
games/hack/hack.mkmaze.c
140
(void) makemon((struct permonst *) 0, mm.x, mm.y);
games/hack/hack.mkshop.c
182
if (!(shk = makemon(PM_SHK, sx, sy)))
games/hack/hack.mkshop.c
207
(mtmp = makemon(PM_MIMIC, sx, sy))) {
games/hack/hack.mkshop.c
250
mon = makemon(
games/hack/hack.mkshop.c
315
(void) makemon(PM_EEL, sx, sy);
games/hack/hack.potion.c
450
if (!(mtmp = makemon(PM_GHOST, u.ux, u.uy))) {
games/hack/hack.read.c
217
(void) makemon(confused ? PM_ACID_BLOB :
games/hack/hack.search.c
159
(void) makemon(PM_PIERCER, x, y);
games/hack/hack.search.c
95
(void) makemon(PM_PIERCER, zx, zy);
games/hack/hack.trap.c
129
if (makemon(PM_PIERCER, u.ux, u.uy)) {
games/hack/hack.unix.c
419
if (md = makemon(&pm_mail_daemon, u.ux, u.uy)) /* always succeeds */
games/hack/hack.vault.c
218
if (!(guard = makemon(&pm_guard, x, y)))
games/hack/hack.wizard.c
213
(void) makemon((struct permonst *) 0, u.ux, u.uy);
games/hack/hack.wizard.c
271
if ((mtmp2 = makemon(PM_WIZARD, mtmp->mx, mtmp->my)) != NULL) {
games/hack/hack.zap.c
239
(void) makemon((struct permonst *) 0, u.ux, u.uy);