| /src/games/hack/ |
| def.objects.h | 211 ARMOR("ring mail", 15, 5, 7, 0), 296 #define RING(name,stone,spec) { name, stone, NULL, 0, 0,\ 299 RING("adornment", "engagement", 0), 300 RING("teleportation", "wooden", 0), 301 RING("regeneration", "black onyx", 0), 302 RING("searching", "topaz", 0), 303 RING("see invisible", "pearl", 0), 304 RING("stealth", "sapphire", 0), 305 RING("levitation", "moonstone", 0), 306 RING("poison resistance", "agate", 0) [all...] |
| /src/games/rogue/ |
| ring.c | 1 /* $NetBSD: ring.c,v 1.9 2008/01/14 03:50:02 dholland Exp $ */ 38 static char sccsid[] = "@(#)ring.c 8.1 (Berkeley) 5/31/93"; 40 __RCSID("$NetBSD: ring.c,v 1.9 2008/01/14 03:50:02 dholland Exp $"); 45 * ring.c 59 static const char no_ring[] = "there's no ring on that hand"; 78 object *ring; local 84 if ((ch = pack_letter("put on what?", RING)) == CANCEL) { 87 if (!(ring = get_letter_object(ch))) { 91 if (!(ring->what_is & RING)) { 152 object *ring; local 279 object *ring; local [all...] |
| pack.c | 406 if (obj->what_is & (ARMOR | RING)) { 446 ch = pack_letter("call what?", (SCROL | POTION | WAND | RING)); 455 if (!(obj->what_is & (SCROL | POTION | WAND | RING))) { 533 *mask = RING;
|
| object.c | 68 INIT_RINGS, /* left ring */ 69 INIT_RINGS, /* right ring */ 129 {300, "ring mail ", "", (UNIDENTIFIED)}, 341 case RING: 342 retstring = "ring "; 386 case RING: 414 what_is = RING; 784 obj->what_is = RING; 793 if (obj->what_is == RING) {
|
| inventory.c | 175 {'P', "P put on ring"}, 177 {'R', "R remove ring"}, 556 if (obj->what_is & (WEAPON | ARMOR | WAND | RING)) { 618 case RING: 737 case RING: 808 id = "ring";
|
| rogue.h | 69 #define RING ((unsigned short) 0200)
|
| score.c | 595 case RING:
|
| use.c | 386 if (obj->what_is & (SCROL | POTION | WEAPON | ARMOR | WAND | RING)) {
|
| room.c | 243 case RING:
|
| /src/games/battlestar/ |
| dayobjs.c | 136 {218, RING},
|
| command5.c | 342 !(obj == RING || obj == BRACELET)) 362 if (obj == RING || obj == BRACELET) {
|
| command2.c | 81 case RING:
|
| extern.h | 114 #define RING 44
|
| words.c | 97 { "ring", RING, OBJECT, NULL },
|