Home | History | Annotate | Download | only in larn

Lines Matching refs:sphere

314 			lprintf("\nThe %s dispels the sphere!", monster[tmp].name);
315 rmsphere(cc, dd); /* delete the sphere */
397 * This function works on the sphere linked list, first duplicating the list
398 * (the act of moving changes the list), then processing each sphere in order
410 struct sphere *sp, *sp2;
411 struct sphere sph[SPHMAX];
413 /* first duplicate sphere list */
414 for (sp = 0, x = 0, sp2 = spheres; sp2; sp2 = sp2->p) /* look through sphere
427 for (sp = sph; sp; sp = sp->p) { /* look through sphere list */
432 if (--(sp->lifetime) < 0) { /* has sphere run out of gas? */
433 rmsphere(x, y); /* delete sphere */
437 * sphere */